diff -Nru libreoffice-7.4.6/avmedia/source/gstreamer/gstplayer.cxx libreoffice-7.4.7/avmedia/source/gstreamer/gstplayer.cxx --- libreoffice-7.4.6/avmedia/source/gstreamer/gstplayer.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/avmedia/source/gstreamer/gstplayer.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -25,7 +25,6 @@ #include #include #include -#include #include #include #include @@ -99,7 +98,7 @@ DECL_STATIC_LINK(MissingPluginInstaller, launchUi, void*, void); - std::mutex mutex_; + osl::Mutex mutex_; std::set reported_; std::map>> queued_; rtl::Reference currentThread_; @@ -111,7 +110,7 @@ MissingPluginInstaller::~MissingPluginInstaller() { - std::unique_lock g(mutex_); + osl::MutexGuard g(mutex_); SAL_WARN_IF(currentThread_.is(), "avmedia.gstreamer", "unjoined thread"); inCleanUp_ = true; } @@ -139,7 +138,7 @@ rtl::Reference join; rtl::Reference launch; { - std::unique_lock g(mutex_); + osl::MutexGuard g(mutex_); if (reported_.find(detStr) != reported_.end()) { return; } @@ -184,7 +183,7 @@ void MissingPluginInstaller::detach(Player const * source) { rtl::Reference join; { - std::unique_lock g(mutex_); + osl::MutexGuard g(mutex_); if (inCleanUp_) { // Guard against ~MissingPluginInstaller with erroneously un-joined // currentThread_ (thus non-empty currentSources_) calling @@ -256,7 +255,7 @@ for (;;) { std::vector details; { - std::unique_lock g(inst.mutex_); + osl::MutexGuard g(inst.mutex_); assert(!inst.currentDetails_.empty()); details.swap(inst.currentDetails_); } @@ -269,7 +268,7 @@ args.push_back(nullptr); gst_install_plugins_sync(args.data(), nullptr); { - std::unique_lock g(inst.mutex_); + osl::MutexGuard g(inst.mutex_); if (inst.queued_.empty() || inst.launchNewThread_) { inst.launchNewThread_ = true; break; diff -Nru libreoffice-7.4.6/ChangeLog libreoffice-7.4.7/ChangeLog --- libreoffice-7.4.6/ChangeLog 2023-03-03 17:00:57.000000000 +0000 +++ libreoffice-7.4.7/ChangeLog 2023-05-03 15:29:36.000000000 +0000 @@ -1,63 +1,1602 @@ -2023-03-03 Christian Lohmaier [5b1f5509c2decdade7fda905e3e1429a67acd63d] +2023-05-03 Christian Lohmaier [723314e595e8007d3cf785c16538505a1c878ca5] - Version 7.4.6.2, tag libreoffice-7.4.6.2 + Version 7.4.7.2, tag libreoffice-7.4.7.2 -2023-03-03 Christian Lohmaier [d2141244d23edfb0583337a472778f51d8e48391] +2023-05-03 Christian Lohmaier [7a9c1520028da5d6a726f0ec3322109481855310] - bump product version to 7.4.6.2 + bump product version to 7.4.7.2 - Change-Id: Ib58e3d944bc92b5bdf9faa72c6be3dabb3c7e7fa + Change-Id: Idd5b19ebb2f6d782815d6358f4bded9ef6621821 -2023-03-03 Christian Lohmaier [02f44a22e18f10cf297beded7018570dd12d97b4] +2023-05-03 Caolán McNamara [c5fee0075ade1e9f0d8a0441e9ce80a983b411ae] + + assume IFrame script/macro support isn't needed + + seems undocumented at least + + Change-Id: I316e4f4f25ddb7cf6b7bac4d856a721b987207a3 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151108 + Reviewed-by: Xisco Fauli + Reviewed-by: Christian Lohmaier + Tested-by: Michael Stahl + Reviewed-by: Michael Stahl + +2023-05-03 Caolán McNamara [8b35b17ffaab23d72ddec2d9f41be0e30fcaa6c4] + + put floating frames under managed links control + + like we do for sections and ole objects that link to their content + + individual commits in trunk are: + + extract a OCommonEmbeddedObject::SetInplaceActiveState for reuse + + no behaviour change intended + + Change-Id: Ia1d12aa5c9afdc1347f6d4364bc6a0b7f41ee168 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150341 + Tested-by: Caolán McNamara + Reviewed-by: Caolán McNamara + (cherry picked from commit 183e34a3f8c429c0698951e24c17844e416a3825) + + use parent window as dialog parent + + it makes no odds, but is more convenient for upcoming modification + + Change-Id: Ibc5333b137d2da089b3b701ff615c6ddf43063d0 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150342 + Tested-by: Caolán McNamara + Reviewed-by: Caolán McNamara + (cherry picked from commit f93edf343658abd489bde3639d2ffaefd50c0f99) + + adjust IFrameObject so it could reuse mxFrame for a reload of content + + Change-Id: I7eec3132a23faafd9a2878215a0a117a67bc9bf2 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150343 + Tested-by: Caolán McNamara + Reviewed-by: Caolán McNamara + (cherry picked from commit 3a727d26fd9eb6fa140bc3f5cadf3db079d42206) + + query getUserAllowsLinkUpdate for the case of content in a floating frame + + similarly to how it works for the more common "normal" embedded objects + + Change-Id: I83e38dfa2f84907c2de9680e91f779d34864a9ad + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149971 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 52aa46468531918eabfa2031dedf50377ae72cf7) + + add a route to get writer Floating Frame links under 'manage links' + + Change-Id: If90ff71d6a96342574799312f764badaf97980eb + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150349 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 8b8a2844addbd262befb1a2d193dfb590dfa20be) + + allow SvxOle2Shape::resetModifiedState to survive having no SdrObject + + Change-Id: Iea059262c124e3f44249e49b4189732310d28156 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150538 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 02379929bd0e1d1676635f0ca1920422702ebb7c) + + create the FloatingFrameShape in a separate step to inserting it + + this is derived from the path taken by the AddShape(const OUString&) + function for this case. No change in behavior is intended. + + Change-Id: Id09ae0c65a55a37743ad7c184070fb8dd97d8a7f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150526 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit bafec47847a0b9697b3bbe9358e53f8118af3024) + + add a route to get calc Floating Frame links under 'manage links' + + much harder than writer because the organization and ordering + of properties and object activation etc is different. + + This ended up ugly, but functions. + + We set FrameURL before AddShape, we have to do it again later because it + gets cleared when the SdrOle2Obj is attached to the XShape. But we want + FrameURL to exist when AddShape triggers SetPersistName which itself + triggers SdrOle2Obj::CheckFileLink_Impl and at that point we want to + know what URL will end up being used. So bodge this by setting FrameURL + to the temp pre-SdrOle2Obj attached properties and we can smuggle it + eventually into SdrOle2Obj::SetPersistName at the right point after + PersistName is set but before SdrOle2Obj::CheckFileLink_Impl is called + in order to inform the link manager that this is an IFrame that links to + a URL + + Change-Id: I67fc199fef9e67fa12ca7873f0fe12137aa16d8f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150539 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 07179a5a5bd00f34acfa8a3f260dd834ae003c63) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150755 + Reviewed-by: Michael Stahl + (cherry picked from commit b91ea614c0b753ab3d378acd0e2db8262e9dbd72) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151107 + Reviewed-by: Xisco Fauli + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier + +2023-05-03 Christian Lohmaier [47f11a35839e9e2a48c531759062caed294c021b] update credits - Change-Id: I6d5a9f661041361e7c516887a298c84ac71e14ff - (cherry picked from commit 7545f47eb93373324eed35a7253e55448bbbdfbd) - (cherry picked from commit b9d88aa83709708dc43c606e1357965e7ea993fc) + Change-Id: I3243e55b996f8a647fbe060f83a76d3ee416e6b9 + (cherry picked from commit f1fd3e32508ee3e8aca6f90724e7af8664652e41) + (cherry picked from commit f8ba7c6f77497e2dc7bfef8378511e2074ce01f9) -2023-03-03 Kohei Yoshida [cc66f335931b9cf088805bfc4cab25bb8cc4ee44] +2023-05-03 Christian Lohmaier [fe511b7ff2cad30f8a889cc79510d4808714fd26] - tdf#153669: Track formulas that stopped listening ... + Update git submodules - ... then have them start listening again after the copy from - clipboard is complete. Note that in case the pasted cells - are formula cells, those will be handled together as well. + * Update translations from branch 'libreoffice-7-4-7' + to 3446fe8d0d839dc721237de12d294794e285ea1a + - update translations for 7.4.7 rc2 + + and force-fix errors using pocheck + + Change-Id: I5489943fe7ad1c7ca848e29853183cc47e64c297 + (cherry picked from commit 91b3354f452db7b03a84fb9ad22d89ca90851baa) + +2023-05-03 Miklos Vajna [b1afbfadd86e9e60238d7ab15621282637328fc6] + + sw: fix crash in OutHTML_SwFormatField() - Change-Id: Ia4be814b888734267a39f7c89435011968570b7f - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147940 + Crashreport signature: + + program/libswlo.so + SwDocShell::GetView() + sw/inc/docsh.hxx:222 + program/libswlo.so + OutHTML_SwFormatField(Writer&, SfxPoolItem const&) + sw/source/filter/html/htmlfldw.cxx:549 + ... + program/libswlo.so + SwTransferable::WriteObject(tools::SvRef&, void*, unsigned int, com::sun::star::datatransfer::DataFlavor const&) + sw/source/uibase/dochdl/swdtflvr.cxx:? + + I.e. clipboard documents don't have a doc shell, handle that. + + Change-Id: I48b22087f759a11b4aa46b83b310f4a661e1fbc4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150897 Tested-by: Jenkins - Reviewed-by: Kohei Yoshida - (cherry picked from commit e83c243018c1c7f6662f9a8ecdc731c5c071ea31) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147912 - (cherry picked from commit 33b6c065a1629afd36c9ae0fe5daa18b972620e5) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147983 - (cherry picked from commit 268ab12ef987f0c1d34db78060ac6b80f25d9408) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148106 + Reviewed-by: Miklos Vajna + (cherry picked from commit 5951e37eb24e09d3c24cb4cab4b0f3da41e3dfff) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150914 + Reviewed-by: Xisco Fauli + (cherry picked from commit 69d843df91fb02812f2c76e4951f61915706a44c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150917 + Reviewed-by: Christian Lohmaier + Tested-by: Michael Stahl + Reviewed-by: Michael Stahl + +2023-05-03 Eike Rathke [4a1fad2147186f6b150cd10519dda541a4d2e6c0] + + Resolves: tdf#119659 Check found position for result vector + + Change-Id: Idc454462c47b6c7b7b7cb6c86b08650d059221c7 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151186 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 6b6b83b43fcae13e30a9ca67b421187a5e0d7142) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151192 + Reviewed-by: Xisco Fauli + Reviewed-by: Christian Lohmaier + Tested-by: Michael Stahl + Reviewed-by: Michael Stahl + +2023-05-03 Caolán McNamara [1ad4505728f1dca5bd52e70f70b50fa257cecd78] + + set Referer on loading IFrames + + so tools, options, security, options, + "block any links from document not..." + applies to their contents. + + Change-Id: I04839aea6b07a4a76ac147a85045939ccd9c3c79 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150221 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150722 Reviewed-by: Xisco Fauli Tested-by: Christian Lohmaier Reviewed-by: Christian Lohmaier + Reviewed-by: Michael Stahl -2023-03-03 Christian Lohmaier [77632da1f5908894084c4113f464f462e663191c] +2023-05-03 Patrick Luby [807710d6cffe1a2b40a8937c0df43a8ac1034120] - fix openssl build on aarch64 - _umul128 is not available on non x64 + tdf#154546 skip dispatch when presenter controller is not set - adding upstream patch that uses __umulh as a fallback + mpPresenterController is sometimes unset and this will cause a + crash when pressing the presenter console's Exchange button. - Change-Id: Ib95de30d3f7208c38421df0c63eb1ceafccd9354 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146839 + Change-Id: Ibfc866d573ce0c535df5c8fdbd6d358353784854 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150456 Tested-by: Jenkins + Reviewed-by: Noel Grandin + Reviewed-by: Patrick Luby + (cherry picked from commit 6f4fb52116c08b0c6247dc4828442f4e3644e9eb) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150775 + (cherry picked from commit 14c4b0d11211cc27fb3a0cae246d8e971d6d8f9a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150793 + Reviewed-by: Xisco Fauli + (cherry picked from commit 98470b6785578b417e9c4d5ea565f412135eeba8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150912 Reviewed-by: Christian Lohmaier - (cherry picked from commit 821f4d6f0987450233e4f63e01f89484ec737258) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147228 + Tested-by: Adolfo Jayme Barrientos + Reviewed-by: Adolfo Jayme Barrientos + +2023-05-03 Caolán McNamara [5d05bddf9e33eb6ec028119e3d872864b3426ef6] + + Resolves: tdf#154912 make double-click to expand rows the same as arrow expand + + the arrow case does the necessary removal of the "dummy" entry which is + necessary to get the treeview to indicate it has children, while the + double click case skipped that step, so rearrange so both behave the + same. + + Change-Id: I6161d786cd58b0eea53152074dff2b035c621e7f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150622 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + (cherry picked from commit 310a23fd4dde657038efb1e3fbb9db9e0cdbca3b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150630 + Reviewed-by: Xisco Fauli + (cherry picked from commit 4d544878164e888e62a931b3d841d7cf561c7ce1) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150714 + Reviewed-by: Caolán McNamara + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier + +2023-05-03 Noel Grandin [81fef0001acb152bd21b0ec7ea6ac44ae0d287d0] + + tdf#153190 Compressing tool calculates compression rate wrong on large images + + calculation used sal_Int32, which overflowed on large values, rather use + floating point to do the calculation + + Change-Id: I15974c5bf785a800a8f71711acfa9895361bad7d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150683 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit b167bc073b6b83110242bfbace107f6978e5bca7) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150628 + Reviewed-by: Xisco Fauli + (cherry picked from commit b09fdbb1250791b98e3da9edf16b4869bbdb0c94) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150633 + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier + +2023-05-03 Tünde Tóth [203ad95d0a7a0c8224ce58c0c3e90b417ae06de9] + + tdf#152577 sc DBData: fix regression of database ranges + + Regression from commit 0c0444c44107f1a18f23dd0833d462d8dbf56569 + "tdf#126926 sc DBData: delete the database range". + + Change-Id: I04923decdc768770f98763e60cd295400d15c769 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151065 + Tested-by: Jenkins + Tested-by: László Németh + Reviewed-by: László Németh + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151121 + (cherry picked from commit f56008e837fc966219cbf2279cb2bbbdb47fad5d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151122 + Reviewed-by: Eike Rathke + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier + +2023-05-03 Caolán McNamara [5dada649f669cf283b544880ba9835f6dfade945] + + tdf#154629 inspector sidebar panel use-after-free on switch to print preview + + Change-Id: I5489cd18213d82ae4174ca8d9d00f1da5aa1091d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150078 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150691 + Reviewed-by: Caolán McNamara + (cherry picked from commit 1d62ae793d3690a7cafa5d28a431a43273b526d3) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150724 Reviewed-by: Michael Stahl - (cherry picked from commit b22446cc1788c1861ea5a8cc5b227f983ea71f8f) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147361 + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier + +2023-05-02 Michael Stahl [8c749403156fa0af6d6b61a40aaf438ff3671b90] + + Fix tdf#155004: ucb: webdav-curl: carry over Class1 bit only if set + + With d6182cb6704c06f33d284874b9fe96c85cce5bf5 there are cases when a + webdav server inadvertendly releases the lock. Lets apply the fix only + if the Class1 flag is actually set. + + Change-Id: I85e5253c7df0980f373d2dea788c331b81ed4a82 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150552 + Tested-by: László Németh + Reviewed-by: László Németh + Tested-by: Jenkins + (cherry picked from commit 5e8c27e2dbb47a207364f3c44b5ea8e7ec3be73a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150929 + Reviewed-by: Xisco Fauli + (cherry picked from commit d14d54c7895c4e4f66ae6ebb4b34a51f2e6f6a5e) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151017 + Reviewed-by: Thorsten Behrens + Tested-by: Xisco Fauli + +2023-05-02 Julien Nabet [471ff2b0218df3e9b922de1ec28934dd53c77b90] + + tdf#154946: Draw/Impress Standard toolbar missing many icons + + Regression from 4cd7489f5898394730b794bdecbc29800cf23627^!/ + "Resolves tdf#143055 - Make Snap-to-grid easier to access + Added to page context menu, standard toolbar, and line & filling + toolbar" + + Change-Id: I3d7040f59a3c422e7f596fcd96cde88466bc2a79 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150727 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit c07a8ef4eb4609f431e9c9610437edf6dd333679) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150731 Reviewed-by: Caolán McNamara - Reviewed-by: Stephan Bergmann - Tested-by: Stephan Bergmann + Reviewed-by: Eike Rathke + Tested-by: Xisco Fauli + +2023-04-27 Bartosz Kosiorek [cd94594b24c48602a1eef6af8d98cbf5a6467e3a] + + tdf#154789 EMF+ Performance boost of the EmfPlusRecordTypeDrawBeziers + + There is several benefits of such performance optimization: + 1. We are drawing single curve instead of hundreds of small curves. + In the loop we are creating single Polygon and outside + of the loop we are invoking EMFPPlusDrawPolygon drawing method only + once. As https://bugs.documentfoundation.org/attachment.cgi?id=186725 + image is using single EmfPlusRecordTypeDrawBeziers EMF+ record with + hundreds of curves, with using single EMFPPlusDrawPolygon call, + there is no lnger need for individual line creation (e.g. line + color, weight, line caps, line joints, line dashes, etc.) + + - The PDF export performance without optimizations of the https://bugs.documentfoundation.org/attachment.cgi?id=186725: + + time ./instdir/program/soffice --headless --convert-to "pdf:writer_pdf_Export" --outdir ~ ~/Pobrane/problem.docx + real 24m18,471s + user 2m56,004s + sys 1m37,816 + + - The PDF export performance with optimizations: + + real 0m37,527s + user 0m37,004s + sys 0m0,531s + + - With Libreoffice 7.5.2 from Ubuntu 22.04, the conversion was + crashed. + + 2. The PDF export for document: https://bugs.documentfoundation.org/attachment.cgi?id=186725 + was not working correctly for me. The original image is containing + chart. Without optimization, the exported chart was empty. + Current export is working correctly, and graph is visible. + + 3. The standard opening of the document from https://bugs.documentfoundation.org/attachment.cgi?id=186725 + is now much faster. The zooming in, move image operations are also + noticible faster. + + 4. Implementation is according to [MS-EMFPLUS] documentation of the + EmfPlusDrawBeziers, which states: + "The ending coordinate of one Bezier curve is the starting coordinate of the + next. The control points are used for producing the Bezier effect." + + Change-Id: Ic77d4c20a462587bb5da4a4df757e30c5ca04fc9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150821 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + Reviewed-by: Bartosz Kosiorek + (cherry picked from commit ce008fa9d8f2752bdfeaeff763aafc774a4b4fb2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150789 + Reviewed-by: Ilmari Lauhakangas + Reviewed-by: Xisco Fauli + (cherry picked from commit a30b9314fb011736ccd12c8d3d29514c172a5b17) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151029 + Tested-by: Bartosz Kosiorek + +2023-04-27 Eike Rathke [d65a5e8d758e6a955076e6d34a57b4b8cd33a0f6] + + Resolves: tdf#151958 Disable binary search on sorted cache for current releases + + Temporary measure until the actual cause is fixed. + The by string query of binary search on sorted cache is broken for + mixed types like here the numeric date cells and text cells. + + Change-Id: Icfe0b0c30987fcefdd6ed11066ea9113f3b4dabe + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151074 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 9a555d79b3b00793edf1d51a8a7c76b723cc436d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151026 + Reviewed-by: Adolfo Jayme Barrientos + Reviewed-by: Xisco Fauli + Reviewed-by: Caolán McNamara + Tested-by: Caolán McNamara + +2023-04-26 Christian Lohmaier [6d28341279dc39e00eaa1bde926433434d8578b3] + + update credits + + Change-Id: I934d635e0d241b9884017e4a22ba99e9d1459783 + (cherry picked from commit b79a82886dd8431ff79f148bd8bde8b11e04863a) + (cherry picked from commit 603f915294a10f11b4199dfd28704a77f4e05abd) + +2023-04-24 Caolán McNamara [8484b7a1a5ad33da84ba536ce4ca0bbe1e7f2e75] + + Resolves: tdf#154623 KEY_DECIMAL == GDK_KEY_KP_Decimal or GDK_KEY_KP_Separator + + Change-Id: Iade6d3f93ff7f9dcc35c5a04e21617df06955527 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150623 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + (cherry picked from commit 50253a2cb2e1b604f0d5bfb5be1d6f91eaa0bc8b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150625 + Reviewed-by: Xisco Fauli + (cherry picked from commit f186dd4946c87ff2252d3cc330d564f0b92b32d6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150629 + Reviewed-by: Eike Rathke + Reviewed-by: Caolán McNamara + Tested-by: Caolán McNamara + +2023-04-19 Christian Lohmaier [0f2335fe5c44c02b7d2d0e4fecc9ca93278aafb3] + + bump product version to 7.4.7.1.0+ + + Change-Id: I454e21908e44ad9c9cc55b4031a9d27dbf943622 + +2023-04-19 Christian Lohmaier [bb916f83963f1172c79be7fa2abe6f92739309e9] + + Branch libreoffice-7-4-7 + + This is 'libreoffice-7-4-7' - the stable branch for the 7.4.7 release. + Only very safe changes, reviewed by three people are allowed. + + If you want to commit more complicated fix for the next 7.4.x release, + please use the 'libreoffice-7-4' branch. + + If you want to build something cool, unstable, and risky, use master. + +2023-04-19 Caolán McNamara [c38d91abf7e719e61a51798a7abddc81ba9ff9a9] + + tdf#153784 account for initial vertical offset when toggled into multiline + + Initially there is 1 line and the edit is vertically centered in the + toolbar + + Later, if expanded then the vertical position of the edit will remain at + that initial position, so when calculating the overall size of the + expanded toolbar we have to include that initial offset in order to not + make the edit overlap the RESIZE_HOTSPOT_HEIGHT area so that dragging to + resize is still possible. + + also includes: + + rhbz#2162658 backtrace showing endlessly recursive ScInputWindow::Resize + + Change-Id: I2d10fd1ebfb1c25cf213ebb68e7d34e39fadde13 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145894 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 13b2bd1006182637b189bcfa77acfaf03ae028f0) + + tdf#151682 Fix gap above input bar + + Remove vertical offset, looks like it's not needed anymore. + + Change-Id: If0f7f7dce7a7e4249036930b60fe353890b495fc + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146179 + Tested-by: Jenkins + Reviewed-by: Samuel Mehrbrodt + (cherry picked from commit f7544650cc4e31da67873898e2d587afa846b9b4) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146199 + Reviewed-by: Kohei Yoshida + (cherry picked from commit 9739a874b64e770728d62713b070f37de4ec8328) + + Change-Id: Ic99e1cf4f3b1ca53c5d6feaa50d8bfac030f8124 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148069 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148075 + Reviewed-by: Christian Lohmaier + +2023-04-19 Taichi Haradaguchi <20001722@ymail.ne.jp> [36ed20e4216c618519423ed38e8ad4fbeb4ae265] + + Upgrade Harfbuzz to 7.1.0 + + * Fixes CVE-2022-33068, CVE-2023-25193. + * Update URL in README. + + Change-Id: Id234c2b459c40ddac340731b44889b104e03a1e8 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148954 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + +2023-04-19 Christian Lohmaier [cd151f2fa36a37de9438346cc2fdb956599fd848] + + Update git submodules + + * Update translations from branch 'libreoffice-7-4' + to 3a484968d782509bdad7b7c02b4cb000a34c0b81 + - update translations for 7.4.7 rc1 + + and force-fix errorrs using pocheck + + Change-Id: Ia5e3cceaa9ba0fe6f5f502efdf440ccd3aefa462 + +2023-04-19 Xisco Fauli [751d34ee3a8b01f4c3912f586e4480680fd48222] + + sfx2: fix crash in StyleList::CustomRenderHdl + + GetFamilyItem() might return nullptr + See https://crashreport.libreoffice.org/stats/signature/StyleList::CustomRenderHdl(std::tuple%3COutputDevice%20&,tools::Rectangle%20const%20&,bool,rtl::OUString%20const%20&%3E) + + Change-Id: I099f045232aac710c4f26148de5e798d00ecc7ec + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150602 + Reviewed-by: Caolán McNamara + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150617 + +2023-04-19 Michael Stahl [f2ed38c23d04d61f135560b67f24805da3e40be9] + + libxml2: upgrade to release 2.10.4 + + Fixes CVE-2023-29469 and CVE-2023-28484. + + Also: SAX2: Ignore namespaces in HTML documents + + which is probably the reason why one test fails, so switch it to parsing + XML: + + HTML parser error : Tag reqif-xhtml:div invalid + + HTML parser error : Tag reqif-xhtml:table invalid + + ... + reqif-table.xhtml: + C:/cygwin/home/tdf/jenkins/workspace/gerrit_windows/test/source/xmltesttools.cxx:195:testReqIfTable::Import_Export + equality assertion failed + - Expected: 1 + - Actual : 0 + - In , XPath '/html/body/div/table/tr/th' number of nodes is incorrect + + Change-Id: Icc161b39515c996193366bc777a67eca79e4e892 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150544 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit b28fd940ca46828be624679863364b4db89dd38c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150616 + Reviewed-by: Xisco Fauli + +2023-04-19 Caolán McNamara [803221accbab3e3e9e5d22f0bcd14bcc3783680d] + + backport writer sidebar "check SfxViewFrame::Current()" + + for crash seen in the wild as: + https://crashreport.libreoffice.org/stats/crash_details/0f7afb28-ef99-4182-a260-98d8a5653890 + + Change-Id: I06dfecc6a072ec1de17d66e7c8fd5a81375b0839 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150573 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2023-04-19 Xisco Fauli [a23922ecc0072aa52bd2143113ad971b6aef467a] + + sw: fix divide by 0 in SwFlyFrame::CalcRel + + https: //crashreport.libreoffice.org/stats/signature/SwFlyFrame::CalcRel(SwFormatFrameSize%20const%20&) + Change-Id: If7a1919a2829bbec3292b3aa5f7f719c5ba0beef + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150579 + Tested-by: Jenkins + Tested-by: Caolán McNamara + Reviewed-by: Caolán McNamara + (cherry picked from commit 6f36e44f248c8e3705779d6692daaf79865a1378) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150567 + Reviewed-by: Michael Stahl -2023-03-03 Samuel Mehrbrodt [08413b735862418dfcb130700b843ced5691e35f] +2023-04-19 Xisco Fauli [99f43923b66a98b75c78a50577f19293aa480998] + + sw: fix divide by 0 + + See https://crashreport.libreoffice.org/stats/signature/operator/(Fraction%20const%20&,Fraction%20const%20&) + + Change-Id: Ia93e2969d6eb0bde71c8419f2aa90bb7aa231f61 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150553 + Reviewed-by: Caolán McNamara + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit d01dae0cbabc27f2ff2a242316206067cff73cf8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150563 + Reviewed-by: Michael Stahl + +2023-04-19 Xisco Fauli [6fca3652db1dce0c9221fa112b134eeb0451b3ad] + + formula: fix crash in FormulaDlg_Impl::UpdateSelection + + m_pFuncDesc can be nullptr + + See https://crashreport.libreoffice.org/stats/signature/formula::FormulaDlg_Impl::UpdateSelection() + + Change-Id: If8a95bef8b0a8a03ffe63041409ee7c1cf322b0f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150550 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 2d62a54d151f32007c1cb1c7f729b777dbdb73cc) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150560 + +2023-04-18 Attila Bakos (NISZ) [4304ac507781a258c8e72390a90a9672b840546a] + + tdf#154481 sw DOCX import: fix page loss and freezing at ODT export + + Disable TOC creation in case when field context stack + is empty but TOC creation is in progress in textboxes. + Before if TOC creation failed because it is already + existed, the TOC creation member (mbStartTOC) kept + true resulting in broken textbox handling. + + Textbox and TOC import use the same text append + stack but the TOC was not removed from the stack + so content have been written into the TOC instead + of the textbox, resulting page loss, and because + of the broken structure, freezing at further ODT export. + + Change-Id: If27aa477c49f276d4e538b6e125798d89f0ac423 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150099 + Tested-by: László Németh + Reviewed-by: László Németh + (cherry picked from commit 94de79e7d3c980b576192d2f264bee658716163a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150319 + Tested-by: Jenkins + +2023-04-18 Caolán McNamara [bdd0cd702f37ff979b55a955905f9beb28f82ba1] + + Resolves: tdf#146068 don't crash when MA(central) lacks data + + Change-Id: I2c9b78f4d1a963bb71abb21068e61e6983ade777 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150501 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-04-18 László Németh [0f976c3b5608ec77dc3ad539e9a8d83b2e423a60] + + tdf#150149 sw: fix table header in multi-column sections + + Disabling long repeating table header on pages resulted + lost table header within multi-column sections. To fix this, + revert commit f7e071a00542c414a7e9d7bcf4434d908f225e59 + for tables in sections. + + Regression from commit f7e071a00542c414a7e9d7bcf4434d908f225e59 + "tdf#88496 DOCX: disable long repeating table header". + + Change-Id: Idb7b9ea014be5430a185489cf449463f534c1916 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150393 + Tested-by: Jenkins + Reviewed-by: László Németh + (cherry picked from commit a36fda0d7c70ffd344f9636ca436e77e41dc01f1) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150325 + Tested-by: László Németh + +2023-04-18 Mike Kaganski [73e4009dc2a645b1bf9f06ce34711e135c147082] + + tdf#154016: use ScopedVclPtr + + A regression crash from commit d79c527c2a599c7821d27cf03b95cb79e2abe685 + (Use IconView in SmElementsControl, 2022-06-01). Without disposeAndClear, + the VirtualDevices leak; and on Windows this quickly leads to GDI handle + 10 000 limit killing the process (which is good, helping to track this + kind of issues). + + Change-Id: I28e1ffbeb425fae3fdbd76b7873fef5c929b8e11 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150523 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + (cherry picked from commit c11463cdc5415707d05ab6da08736ff7212db4a0) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150511 + Reviewed-by: Adolfo Jayme Barrientos + +2023-04-17 Caolán McNamara [3fbb307b970f41605a80c6ea3cbea0c9af9eb638] + + tdf#151560 don't crash on loading dubious fods + + Change-Id: Ib41b3a95dd3829e8d3eca61621257fdd416bd8dc + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150499 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-04-17 Caolán McNamara [a6cd712ddeb1fc3a9cc5568d5e2f4eac9f8fcc2f] + + Resolves: tdf#153958 Hyphenation crashes with -Alte... + + nPos2 is 0 due to the -, so aLeft is empty, nPos is set to 0 + then incremented to 1, aLeft.replaceFirst is run after its end pos + so crashes/asserts. Presumably we can do nothing meaningful here + so skip if nPos2 is 0 + + Change-Id: I09754c4b2567fe5c1b4c36de0b36ee99f575244d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150327 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + (cherry picked from commit 7584e403d57097ed4cc2d827d68895ec35cf805f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150331 + Reviewed-by: Michael Stahl + +2023-04-17 Caolán McNamara [c59204ebc40950147926cc241c3292321abbf444] + + tdf#137542 don't crash at least + + doesn't address the underlying issue though + + Change-Id: I7f5a5dba01c399ec78eceaab6ea85fc0b8897927 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150497 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2023-04-17 Caolán McNamara [d9cf8459ef49f3011de3003538b503d0be06dc17] + + Resolves: tdf#152619 crash inspecting uninserted XFieldMaster + + Change-Id: I765dd5d7e1ed2c1749841491a50216a6afe903c1 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150351 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 5464a1dad69c52d011b194baf7d543ce8dd27748) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150321 + Reviewed-by: Michael Stahl + (cherry picked from commit 71c7c3dddb1291e262b1f8132b75e95fc6f9fa02) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150333 + Reviewed-by: Xisco Fauli + +2023-04-17 Noel Grandin [aaa077ccf4600f582cd33b7510f0d911bf5845d6] + + tdf#154501 - Fileopen PPTX: Table with rotated text wrong + + regression from + + commit eec42f0dbcc79a4c9f456ce97fa1066b8031ea28 + Author: Noel Grandin + Date: Sun Aug 15 17:35:58 2021 +0200 + pass OutlinerParaObject around by value + + where some of code I converted needed to be mutating the + OutlinerParaObject that something else held, rather than mutating + a local copy. + + Change-Id: Ib91dddb3fc0d4190868f9fd59becb0d366af5e19 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150376 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit ad97694737c99889bc0eb21efccb83768d510361) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150330 + Reviewed-by: Xisco Fauli + +2023-04-13 Julien Nabet [7583dbe23f7620d23328db4a9c9cdd4b0d24df7d] + + tdf#154658: XML Form Document: Fields doesnt calculate any more + + Regression from 73334560b2dd2d60ac58d2cc2b1a5295490b03e1 + author Julien Nabet 2021-11-07 15:40:37 +0100 + committer Julien Nabet 2021-11-07 21:58:53 +0100 + commit 73334560b2dd2d60ac58d2cc2b1a5295490b03e1 (patch) + tree b5bc4f69dd8ed455c78ea05ab1c5e2f3c25b909e + parent 6be03ac71e0d4927612b4a57ead3d0b245c29c77 (diff) + Replace some macros in forms part 16 + + A big thank you to Raal for having spotted this! + + Change-Id: Ib6f1878897b16b43df287702f82835824c1f766d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150174 + Reviewed-by: Julien Nabet + Tested-by: Jenkins + (cherry picked from commit 26012007e4d20f47697d1336b725e60541df794a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150314 + Reviewed-by: Michael Stahl + +2023-04-10 László Németh [6e6398764945045876176262f54dac6785890385] + + tdf#154599 sw: fix crash at drag & drop table columns + + New code path for (tracked) row deletion resulted broken + column deletion, by deleting more columns at their + drag & drop, than needed. + + Regression from commit 5e8aa259e48d5602b932353bb146ebb523982cf2 + "tdf#146967 sw table: fix freezing in Hide Changes mode". + + Change-Id: Ib649f5b534a588d192d27757e30c8f81087beb0a + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150132 + Tested-by: Jenkins + Reviewed-by: László Németh + (cherry picked from commit 491e84eb7c6d92c44ab7fa62912452f7789bb8c8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150146 + Reviewed-by: Xisco Fauli + +2023-04-09 Jaume Pujantell [4300ea07cfa664a1de9509cb9cd83c7ae46afe87] + + tdf#149064 ensure interaction handler is present when transfering with webDAV + + Change-Id: I7a31f708e6fe01f07c7187aacd4657b5c6156c82 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149722 + Tested-by: Jenkins + Reviewed-by: Andras Timar + (cherry picked from commit 50848b06ea58a147f5b89f057880266518ce79e7) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149697 + Reviewed-by: Xisco Fauli + (cherry picked from commit 439d8466c10473d1f3859ffa6c87fef6209e93eb) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150141 + Reviewed-by: Adolfo Jayme Barrientos + +2023-04-07 Xisco Fauli [2a7bc316c9b49e5b26fad88998c5160aa9c80c61] + + sd: fix crash in DrawViewShell::ExecCtrl + + See https://crashreport.libreoffice.org/stats/signature/sd::DrawViewShell::ExecCtrl(SfxRequest%20&) + + I believe this crash is triggered with some basic code while + slideshow is running. + Anyway, if I delete the previous SlideShow::IsRunning(GetViewShellBase()) + check, launch Impress and add a new slide, LibreOfice also crashes. + + Change-Id: Iba40f37485a4a6815729a1a26c380b6c3fdedfd4 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150097 + Reviewed-by: Caolán McNamara + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit 6a1425c4c9595ed82629d846c9b69ed9942b2c0b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150080 + +2023-04-07 Laurent Balland [40beefc591d8417f1291834fe66a348678241820] + + tdf#153887 Fraction number format: avoid 0/0 + + If round value is an integer and there is no integer part in the number + format, then nDiv was wrongly forced to 0. + Add corresponding unit tests. + + Change-Id: Ib69393eca8f6c2bdda0eacfc83637ab0c971ff2d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149118 + Tested-by: Jenkins + Reviewed-by: Eike Rathke + (cherry picked from commit dc9b8c31aaf72812dc205f610638098898a4cde7) + (cherry picked from commit 96fb093856dd84fdab6b8989884e5632139dec07) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150093 + Reviewed-by: Xisco Fauli + +2023-04-06 Xisco Fauli [41d79e41ba74d170ff27190a96f1f643cb07cdf5] + + oox: fix crash in lcl_GetGluePointId by removing unused code + + See + https://crashreport.libreoffice.org/stats/signature/oox::drawingml::lcl_GetGluePointId + + Change-Id: I7737568b12a18a2195f24f023917d30dd838ea12 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150064 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + Reviewed-by: Xisco Fauli + (cherry picked from commit aa1008e29bcfbee2397f72971d2de745fad8e98a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150077 + +2023-04-06 Stephan Bergmann [33a5eba5ba8750f3c6f3c1bc5c2f3c603c4e331f] + + Fix typos in XML that broke three implementation elements + + The typos all originated with d2140a6320cd1cf4dea29b174cdb3bcb5261056b + "i18npool: create instances with uno constructors", causing three intended + constructor attributes to rather be plain character data. (Which apparently + went unnoticed so far, in part because the Parser class in + cppuhelper/source/servicemanager.cxx silently ignores any unexpected character + data via xmlreader::XmlReader::Text::NONE.) + + Change-Id: Ia8fdbc09c67d10530b4d86dbbbde2b6b84038e66 + (cherry picked from commit e20d25bd6488dd5a6a73f1dd976bddf847dfcf9a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150073 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2023-04-06 Stephan Bergmann [a3e75275034905d6371136b30ab4a04367a20548] + + tdf#151971: Fix used implementation names of transliteration services + + ...after 04af4e4f55f3ef319a78edd4d0109e2e7eba90b6 "[API CHANGE] Fix all bad + UNOIDL identifiers across offapi" had changed the spelling (character case) of + some of the css.i18n.TransliterationModules[New] enum values involved here, so + that the TmItem1 macro generated broken TMList::implName values now. (Which in + turn caused TransliterationImpl::loadBody to throw "unsatisfied query for + interface of type com.sun.star.i18n.XExtendedTransliteration!" + css::uno::RuntimeExceptions, which remained uncaught.) + + Also add a test verifying that loading all those transliteration services no + longer fails throwing exceptions. Which lead to two open TODOs: For one, the + value of maxCascade in i18npool/inc/transliterationImpl.hxx might come from a + time when there were fewer TransliterationModules[New] enum values and might no + longer be appropriate. This would need some further investigation. But for + another, there are two transliteration services that cannot currently be + instantiated. That looks like a regression that should be fixed in a follow-up + commit. + + Change-Id: Icfca3e841360d4b471013e2c96d6868a75a21a1c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150018 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit 456a146b9eb643655ae2bd336740e8c5536913aa) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149982 + Reviewed-by: Xisco Fauli + +2023-04-05 Caolán McNamara [fe09be20ad4eb17cdbd09cff29de78b55a4135c7] + + fix crash seen when experimenting with tdf#129547 + + Change-Id: I0b26a7f683f91d3307856f86c5a437fde1155451 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149331 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 936f2e6924e405433770b98f32a615508fd0670d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149434 + Reviewed-by: Xisco Fauli + (cherry picked from commit 98465ee3f987c43bdb0a615ca81ffbbac6bf479f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149515 + +2023-03-31 Taichi Haradaguchi <20001722@ymail.ne.jp> [36034a942ad90e9bde04b5d4172e5541bbc58563] + + fix poppler build + + * Update POPPLER_VERSION in poppler-config.patch.1 + + Change-Id: Iba770e6a3036a091925997025d4528f1d855da5d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149795 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2023-03-30 László Németh [4c05f5b45ce8449adee81aeac355fae652b97786] + + tdf#147892 DOCX: fix corrupt export at para marker revision history + + OOXML export of tracked deletion of tracked paragraph insertion + resulted invalid document.xml, because change tracking history of + paragraph markers isn't supported by OOXML. Export the tracked deletion + of the last run of paragraphs without history (tracked insertion). + This way w:p/w:pPr/w:rPr contains only w:del or w:ins, not both of them + (with broken tag order). + + Note: it's possible to optimize the fix to keep the change + tracking history of the characters of the last run of the paragraph, + except the paragraph marker. + + Regression from commit eeee19b3fcf8b0374c361c7f6c285fd5c89b5a2f + "tdf#142387 DOCX track changes: export w:del in w:ins". + + Minimal unit test document was created by Miklós Vajna. + + Change-Id: I425f4d63c8c6ac29ccd807c1574748c7b9b39e80 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146782 + Tested-by: László Németh + Reviewed-by: László Németh + (cherry-picked from commit 382892341a63e400f221e1a533fd5a5d6b4d9d70) + + Conflicts: + sw/source/filter/ww8/docxattributeoutput.cxx + + Change-Id: I0e29195512d8786ac5f6a145ed88a9261f1c456e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149763 + Reviewed-by: Stéphane Guillou + Tested-by: Jenkins + Reviewed-by: László Németh + Tested-by: László Németh + +2023-03-28 Taichi Haradaguchi <20001722@ymail.ne.jp> [ec41a4fc73ea690e758224b6c81e35b923736f2a] + + [1.1.1] external/openssl: add patch for CVE-2023-0464 + + this issue should be fixed in release 1.1.1u + + Severity: Low + Security Advisary: https://www.openssl.org/news/secadv/20230322.txt + + Change-Id: I470c72b516b2d1ba0086610bb470b1a98e2df8b3 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149640 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2023-03-27 Jim Raykowski [9c6bf935cd447922f8e6c974d545832d03779b12] + + tdf#126632 tdf#152908 Resize the notebook bar on context change + + For other than gtk vcl backend the tabbed compact toolbar tabs do not + repaint correctly when the 'Table' tab is active and the cursor is move + outside of the table. This patch adds a Resize after the context is set + to make the tabs always show as expected. + + Change-Id: Iedf8a6eea52c3c55e9c1266b7aa79bc0f34deb22 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149593 + Tested-by: Jenkins + Reviewed-by: Jim Raykowski + (cherry picked from commit e0daa98a802cc1f84ceb0f306f5d15fecabd62c1) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149599 + Reviewed-by: Xisco Fauli + (cherry picked from commit b2575b26f403e97b5a1e85559d1506a0f60b3903) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149604 + Reviewed-by: Adolfo Jayme Barrientos + +2023-03-26 Xisco Fauli [a3d1ace9e8a36820acef3b9d2a02e4b3c304d455] + + tdf#149485: Revert "tdf#142450 add code to store showing whitespace" + + This reverts commit 5b07acbf3345918f450fccf7ee243ad5bcb3fd67. + + The reverted commit claims that + "This option is stored at the document level like the other + layout options." + which is not true. The option is saved in the user profile, + which makes other documents to look wrong. + Reverting for now until it's implemented at document level + as the commit suggests + + Change-Id: I2ae0daeb410090949f1b6cfc8245b711fe518216 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149541 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit 3795729fd0f4bc4769d69b45d3536c7b01692b92) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149521 + Reviewed-by: Caolán McNamara + +2023-03-25 Xisco Fauli [7f2155e6a20d9a3de8d3d3d53661f6891aebda67] + + sw: check GetActiveView() + + See https://crashreport.libreoffice.org/stats/signature/SwView::GetDocShell() + + Change-Id: I90ebbff5082f1f9cae7fa3b940cbb9796d6c6dd3 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149223 + Reviewed-by: Caolán McNamara + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149320 + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149503 + +2023-03-24 Christian Lohmaier [d4319f43ee5280c692a6c190651a6a7109e4f35c] + + update credits + + Change-Id: Iea1190aa7e0b9d81a8cf73ebbafd318e73fca757 + (cherry picked from commit 9469044db420f280bf60765e0d94bc7d94e6641e) + +2023-03-24 Stephan Bergmann [4107bb21a3e9734f4c12832d1fd465075bec16cb] + + rhbz#2171265 Filter out all non *.rdb files + + In that rhbz issue ("Libreoffice cannot start"), it looks like some junk file + named /usr/lib64/libreoffice/program/services/services.rdb;63ddcd86 caused + soffice.bin to crash early, without any information (cf. + a1faf14f74a62ea76141115538d7d30d90c9eeb6 "rhbz#2171265 Report fatal + InitApplicationServiceManager failures more reliably"). So, following up on + b8c7548527f5fc14fe8fcbe74a749c7e3c10d385 "ignore backup files in services/ + directory to avoid debugging grief", extend the set of ignored files to anything + starting with "." or not ending in ".rdb" (in any case). + + Change-Id: I154750465d2128b3ff6493f4ab606072dda61503 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149328 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit feb8b04a0ee86b0146a17393da220ae188babda8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149436 + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149499 + +2023-03-24 Stephan Bergmann [35a46563b9cfe87a76ad5e637d77c37e4286bb62] + + rhbz#2171265 Report fatal InitApplicationServiceManager failures more reliably + + For example, when initialization of the UNO type manager failed, any code run + between this SetBootstrapError and the HandleBootstrapErrors in Desktop::Main + which would need the type manager (e.g., to set a css::uno::Any) would have + caused a crash, so would have failed to print to std::cerr the sought-after + css::uno::Exception message. The mis-initialized process would most definitely + crash sooner or later anyway, so there's no harm in a controlled std::abort() + here (if that is even reached, and the process doesn't already crash in + HandleBootstrapErrors, after it has printed the relevant information to + std::cerr). + + Change-Id: Ic5889aedec0908fa4b1e2966eb188508d0f92d26 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149323 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit a1faf14f74a62ea76141115538d7d30d90c9eeb6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149440 + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149498 + +2023-03-22 Michael Stahl [5987e002772fa6b58fb7de25290396161fd2683c] + + Revert "avmedia : use std::mutex instead of osl::Mutex" + + This reverts commit 477fa6c3cb92f578032dee60482718efdb8f44f2. + + MissingPluginInstaller requires a recursive lock: + + Thread 2 (Thread 0x7f8e73d69700 (LWP 29931)): + 0 __lll_lock_wait () at /lib64/libpthread.so.0 + ... + 5 std::unique_lock::lock() (this=0x7f8e73d65a88) at /opt/rh/devtoolset-7/root/usr/lib/gcc/x86_64-redhat-linux/7/../../../../include/c++/7/bits/std_mutex.h:267 + 6 std::unique_lock::unique_lock(std::mutex&) (this=0x7f8e73d65a88, __m=...) at /opt/rh/devtoolset-7/root/usr/lib/gcc/x86_64-redhat-linux/7/../../../../include/c++/7/bits/std_mutex.h:197 + 7 avmedia::gstreamer::(anonymous namespace)::MissingPluginInstaller::detach(avmedia::gstreamer::Player const*) (this=0x7f8e644c6be0 ::get()::instance>, source=0x75d2fa0) at avmedia/source/gstreamer/gstplayer.cxx:187 + 8 avmedia::gstreamer::Player::disposing() (this=0x75d2fa0) at avmedia/source/gstreamer/gstplayer.cxx:334 + 9 cppu::WeakComponentImplHelperBase::dispose() (this=0x75d2fa0) at cppuhelper/source/implbase.cxx:104 + 10 cppu::PartialWeakComponentImplHelper::dispose() (this=0x75d2fa0) at include/cppuhelper/compbase.hxx:90 + 11 cppu::WeakComponentImplHelperBase::release() (this=0x75d2fa0) at cppuhelper/source/implbase.cxx:79 + 13 rtl::Reference::~Reference() (this=0x7f8e7c028f20) at include/rtl/ref.hxx:129 + ... + 21 std::__debug::set, std::less >, std::allocator > >::clear() (this=0x7f8e644c6cd8 ::get()::instance+248>) at /opt/rh/devtoolset-7/root/usr/lib/gcc/x86_64-redhat-linux/7/../../../../include/c++/7/debug/set.h:426 + 22 avmedia::gstreamer::(anonymous namespace)::MissingPluginInstaller::report(rtl::Reference const&, _GstMessage*) (this=0x7f8e644c6be0 ::get()::instance>, source=..., message=0x7cdb400) at avmedia/source/gstreamer/gstplayer.cxx:156 + 23 avmedia::gstreamer::Player::processSyncMessage(_GstMessage*) (this=0x75abfe0, message=0x7cdb400) at avmedia/source/gstreamer/gstplayer.cxx:536 + 24 avmedia::gstreamer::pipeline_bus_sync_handler(_GstBus*, _GstMessage*, void*) (message=0x7cdb400, data=0x75abfe0) at avmedia/source/gstreamer/gstplayer.cxx:382 + 25 gst_bus_post () at /lib64/libgstreamer-1.0.so.0 + + Change-Id: Ia8e7fef4d4cee2dde7189702af6dddf883b6cceb + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149233 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 621143588b3cb438baf27fb6893ab02e7b06f9dd) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149298 + Reviewed-by: Noel Grandin + +2023-03-22 László Németh [12c776fd07933a306467f0b412cbf5eedc06a6d3] + + tdf#153255 DOCX import: fix footnote order + + Simple unit test for tdf#152203 allowed to create + bad ordering algorithm by accident without noticing + the problem, which caused problem for most of the DOCX + files, where serialization in footnotes.xml doesn't follow + the order of the footnotes. + + Regression from commit 9b39ce0e66acfe812e1d50e530dc2ccdef3e1357 + "tdf#76260 DOCX import: fix slow footnote import". + + Follow-up to commit 09ae3c01940bbc25ffde51963683b04e3cb4bb6a + "tdf#152203 DOCX import: fix mixed footnotes/endnotes". + + Change-Id: I0628d96e3b8ad4df38d26e9288b47d39b958c441 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149176 + Tested-by: Jenkins + Reviewed-by: László Németh + (cherry picked from commit ed0372bac123b402fe3cd694a455e8328117752d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149243 + Reviewed-by: Xisco Fauli + +2023-03-22 Michael Stahl [f2d935242665774f080bb13a2814988ad615f6e1] + + curl: upgrade to release 8.0.1 + + Apparently 8.0.0 had a serious regression. + + Change-Id: Icc761f5e5e01b5d9bebecc13f7cba608f5834f54 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149204 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit e5005c76bd60a004f6025728e794ba3e4d0dfff1) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149112 + Tested-by: László Németh + Reviewed-by: Xisco Fauli + +2023-03-22 Michael Stahl [383128f262ea7fef7b6e372dc364a32d6cb0a7da] + + curl: upgrade to release 8.0.0 + + Fixes CVE-2023-27535. + + Also hopefully fixes excessive storage consumption during build: + o build: drop the use of XC_AMEND_DISTCLEAN [62] + + Change-Id: I8792e95bc7634ee496488e80fec5a1310b24a31c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149153 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit bbe0d0534abe6480c4502ce8fb543a736d3399d8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149105 + Reviewed-by: Xisco Fauli + (cherry picked from commit 38b54a4d86e05bbbbdbf2a38771395579d1b005a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149108 + Tested-by: Xisco Fauli + +2023-03-22 Caolán McNamara [9374b5049ee4fb425b350489272b9354075240dc] + + crashreporting: CreateEmbeddedObject might fail + + Change-Id: I0e1ccbea92343d18e5ff3a9af1f54ed5e0dd796b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149113 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit fa1760d0c7ac8b9fb2e88f7d6d7f9de14479cbf6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149245 + +2023-03-21 Caolán McNamara [9cb9bda78a7e47c4948e6ef2702f07460b22050a] + + tdf#154232 signal_drag_begin callback can delete current GtkTargetList + + so fetch the up to date one on calling gtk_drag_begin_with_coordinates + + ==3221972== Invalid read of size 8 + ==3221972== at 0x23F281DA: gtk_drag_begin_internal (gtkdnd.c:1801) + ==3221972== by 0x23F2886F: gtk_drag_begin_with_coordinates (gtkdnd.c:1995) + ==3221972== by 0x23845075: (anonymous namespace)::GtkInstanceWidget::signal_motion(_GdkEventMotion const*) (gtkinst.cxx:3139) + ==3221972== by 0x23844F09: (anonymous namespace)::GtkInstanceWidget::signalMotion(_GtkWidget*, _GdkEventMotion*, void*) (gtkinst.cxx:3130) + ==3221972== by 0x23C0FC56: _gtk_marshal_BOOLEAN__BOXED (gtkmarshalers.c:84) + ==3221972== by 0x1378C05F: g_closure_invoke (gclosure.c:832) + ==3221972== by 0x137B8F65: signal_emit_unlocked_R.isra.0 (gsignal.c:3796) + ==3221972== by 0x137A8ED5: g_signal_emit_valist (gsignal.c:3559) + ==3221972== by 0x137A96F2: g_signal_emit (gsignal.c:3606) + ==3221972== by 0x23EF1073: gtk_widget_event_internal.part.0.lto_priv.0 (gtkwidget.c:7812) + ==3221972== by 0x23D825AD: UnknownInlinedFun (gtkmain.c:2588) + ==3221972== by 0x23D825AD: propagate_event.lto_priv.0 (gtkmain.c:2691) + ==3221972== by 0x23D83320: UnknownInlinedFun (gtkmain.c:1921) + ==3221972== by 0x23D83320: gtk_main_do_event (gtkmain.c:1691) + ==3221972== Address 0x2c7d8070 is 0 bytes inside a block of size 16 free'd + ==3221972== at 0x48460E4: free (vg_replace_malloc.c:884) + ==3221972== by 0x1383388C: g_free (gmem.c:229) + ==3221972== by 0x1384E093: g_slice_free1 (gslice.c:1185) + ==3221972== by 0x23CD7A08: gtk_drag_source_set (gtkdragsource.c:162) + ==3221972== by 0x23ED1EAB: gtk_tree_view_enable_model_drag_source (gtktreeview.c:14303) + ==3221972== by 0x23877F41: (anonymous namespace)::GtkInstanceTreeView::drag_source_set(std::__debug::vector<_GtkTargetEntry, std::allocator<_GtkTargetEntry> > const&, GdkDragAction) (gtkinst.cxx:16279) + ==3221972== by 0x238440B3: (anonymous namespace)::GtkInstanceWidget::do_enable_drag_source(rtl::Reference const&, unsigned char) (gtkinst.cxx:2707) + ==3221972== by 0x23877E99: (anonymous namespace)::GtkInstanceTreeView::enable_drag_source(rtl::Reference&, unsigned char) (gtkinst.cxx:16270) + ==3221972== by 0x36AAE6D2: SwContentTree::DragBeginHdl(bool&) (content.cxx:1227) + ==3221972== by 0x36AAE2CE: SwContentTree::LinkStubDragBeginHdl(void*, bool&) (content.cxx:1180) + ==3221972== by 0x238D38DA: Link::Call(bool&) const (link.hxx:111) + ==3221972== by 0x23878D2D: (anonymous namespace)::GtkInstanceTreeView::do_signal_drag_begin(bool&) (gtkinst.cxx:16520) + + Change-Id: Idffa33c6a549bf17a92eb56760ddfb7d5424b7ba + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149101 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + +2023-03-20 Christian Lohmaier [11450879d5729515578b0107476b3a5fb05e3218] + + Update git submodules + + * Update translations from branch 'libreoffice-7-4' + to c95ce4d9b66b58b9cf329b7bc71f036ed703c303 + - update translations for 7-4 + + and force-fix errors using pocheck + + Change-Id: I909a60defa5948ee9530cc82f982e265e90641a4 + +2023-03-18 Xisco Fauli [1b93a30a113e45cbf67b0683e233568e40446deb] + + sw: fix null dereference + + See https://crashreport.libreoffice.org/stats/signature/SfxDispatcher::ExecuteList(unsigned%20short,SfxCallMode,std::initializer_list%3CSfxPoolItem%20const%20*%3E,std::initializer_list%3CSfxPoolItem%20const%20*%3E) + + Change-Id: I7f5471f003798f260d9d015782bd2a798baa22d2 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148999 + Reviewed-by: Caolán McNamara + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit 11ce7e810ef5ba540afe676d58575fabf4ab386d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149019 + +2023-03-18 Michael Stahl [efaa03c3eeb60bc8b5d2e08d3e5ded2c003f2087] + + xmloff: ODF export: produce alt text and description for MediaShape + + ... and others where it was inexplicably missing (PluginShape, + AppletShape, FrameShape). + + Change-Id: Idf1c44488370a81bc90fb316ab6056994d782a1c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148917 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 9070c1b0404fb72d2553f6fa8f702e70c0abb269) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148960 + Reviewed-by: Caolán McNamara + +2023-03-14 Caolán McNamara [246596fb206fd05d8420834730ff87051a155ab3] + + tdf#132847 emit NotifyScrolled on use of end/home to scroll to end/start + + Change-Id: I8d4366b6ad667f28ff35f18fef13f2e0f3e9b194 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148758 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-03-13 László Németh [fde4c9c8dfdcde2f2c60e746ebc881851e270967] + + tdf#153819 sw: fix crashing MakeFramesForAdjacentContentNode() + + In Hide Changes mode, copying cells before a tracked deleted + table crashed in SwTableNode::MakeFramesForAdjacentContentNode(). + + Regression from commit 794fd10af7361d5a64a0f8bfbe5c8b5f308617a5 + "tdf#147347 sw: hide deleted table at deletion in Hide Changes". + + Change-Id: I3ac070d35006e61b01a065359431e302e6974e17 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148344 + Tested-by: Jenkins + Reviewed-by: László Németh + (cherry picked from commit 317ed3e81a5aa7826176a5122c2d8ea76aa0fb37) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148323 + Tested-by: László Németh + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148640 + +2023-03-12 Caolán McNamara [15189c9cefccb1d7ed9026cfd62ca9745427d387] + + Resolves: tdf#154087 update scrollbar range when search criteria change + + Change-Id: Iaf5f20c8952b15f3dcccb65277dadb171a705605 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148616 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2023-03-11 Caolán McNamara [b414cb574d0641d387a8c6190112746929e88d52] + + Resolves: tdf#132847 large scrolls that cause page up/down are still "scrolls" + + and should emit NotifyScrolled even if the scroll is large enough that + the call to internal "scroll" optimization is omitted. + + (and like cursor up/down call NotifyScrolled after ShowCursor) + + Change-Id: Ie605bde8ce8312b2ff2be9fb471e2f7516b355d9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148623 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2023-03-09 László Németh [5a1ecea15e05158eb4c67ddcc0fedbf965304b87] + + tdf#136904 tdf#116084 tdf#121176 sw: fix Undo & anonymized w:del in w:ins + + Undo/Redo crash resulted by the workaround for anonymized + w:del in w:ins. Anonymized (no time stamp) redlines + are loaded with Epoch time (1970-01-01) since + commit 2c51746997478ad5d0e7cc64aa6489769c473d43 + "tdf#146171 DOCX: fix loss of change tracking, if no date", + so it's possible to fix the original DOCX import problem + using this value: don't combine anonymized deletion + inside/over anonymized insertion, and remove all the + workaround, keeping only their adjusted unit tests, + and add new tests for the export fixed finally, which + keeps anonymized w:del in anonymized w:ins. + + Revert commit 2de1fd7d8b8bd42c66190140cc4506df0c3367f1 + "tdf#125187 DOCX track changes: fix w:del within w:ins", + commit df4f405a153603551f67e289bbaccf9ac39b923c + "tdf#121176 DOCX track changes: same size w:del in w:ins" and + commit 7a810d6a9fb79a24d00e5dbd8e1223e6f8b09677 + "tdf#116084 DOCX track changes: fix w:del within w:ins". + + Regression from commit 2de1fd7d8b8bd42c66190140cc4506df0c3367f1 + "tdf#125187 DOCX track changes: fix w:del within w:ins". + + See also commit 64dcedcf7c073d1819794d68a33651b14877e1b5 + "tdf#147760 tdf#142902 DOCX export: anonymize date and moveFromRangeStart". + + Change-Id: Id6e41187e7f94154389f24dd525067ac47ec7e58 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148479 + Tested-by: Jenkins + Reviewed-by: László Németh + (cherry picked from commit 8f26482986fd9af5eac4efd44ec56fd994ec69f1) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148498 + Reviewed-by: Michael Stahl + +2023-03-08 Miklos Vajna [1ec152e4f725207f9e067777b49ed689e5f1b8ec] + + sw: fix crash in GetUpperSpaceAmountConsideredForPrevFrameAndPageGrid() + + Crashreport signature: + + program/libswlo.so + SwFlowFrame::GetUpperSpaceAmountConsideredForPrevFrameAndPageGrid() const + sw/source/core/layout/flowfrm.cxx:1741 + program/libswlo.so + objectpositioning::SwAnchoredObjectPosition::GetTopForObjPos(SwFrame const&, SwRectFnCollection* const&, bool) const + include/svl/itemset.hxx:101 + program/libswlo.so + objectpositioning::SwToContentAnchoredObjectPosition::CalcPosition() + sw/source/core/objectpositioning/tocntntanchoredobjectposition.cxx:1020 + program/libswlo.so + SwAnchoredDrawObject::MakeObjPosAnchoredAtPara() + sw/source/core/layout/anchoreddrawobject.cxx:424 + + Change-Id: If162602f6a1cc2108c0de385652e93e23be920be + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148396 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2023-03-08 Michael Weghorn [0d60b7914f4026cedf3455b79636fa108b05d432] + + tdf#154039 wina11y: Increase refcount for returned COM interface + + The reference counter for the IUnknown interface + of the COM object needs to be increased in + `CMAccessible::get_accSelection` as well, + not just in the called `CEnumVariant::Next`, + because calling VariantClear` on the temporary + variant afterwards decreases the ref count again. + + Regression from + + commit 00c0ee8cf0fac0c933c5ae600e99a64b1c7d4397 + Author: Michael Weghorn + Date: Mon Jan 31 07:41:14 2022 +0000 + + tdf#147083 wina11y: Return a11y object instead of child ID + + Change-Id: Id968c3d80b38961b836fbb1a9bd6dfeefdff813f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148393 + Tested-by: Jenkins + Reviewed-by: Michael Weghorn + (cherry picked from commit 38e2dde00da0207c5f7157bb427a006d32dfeb5b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148400 + Reviewed-by: Michael Stahl + +2023-03-08 Caolán McNamara [63643ca0d3195069a65dbb37bc85ba2d49d337e5] + + ofz#56734 Abrt + + Change-Id: I0426c0d3a56789b2f2d24fc87ed9e88653700ca5 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148320 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + +2023-03-07 Caolán McNamara [0c1c25a97dff15ace8e9fe1fe91ab1de8adaa41b] + + tdf#154042 Use an initial height of one row for toolbar layout + + so the Toolbar positions this in the same place regardless of how many + rows it eventually shows + + Change-Id: I7ec31e50557a099962fb051a1948781ef9abdfb6 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148403 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2023-03-07 László Németh [03fe458efe59a810f885817abf2a574c0dda1dc2] + + tdf#153642 ucb: fix broken save with cached DAVOptions + + Trying to save a document within the lifetime of the + cached connection, e.g. re-save within a few seconds after + the first and successful save failed with an error message + in the case of Vibe 4.0.6 WebDAV server. Waiting 5-10 seconds + after the last try was the only workaround to re-save the + document. + + Details: aDAVOptionsException in Content::getPropertyValues() + removed the isClass1 bit of the cached DAVOptions of the + same TargetURL (note: of the folder of the WebDAV document). + This disabled the DAV detection part of Content::getResourceType(), + and later the correct HTTP redirect for the DAV connection. + Fix this by keeping the cached bit in that case, too, when the + added connection has a different lifetime, than the cached one. + + Follow-up to commit 30ca48f4dc0e65a3798e6b21574bc80f6d4953fa + "tdf#152493 ucb WebDAV: fix upload using HTTP 1.0 fallback". + + Change-Id: I5d4578232581a4df654f76198fdddf096cba5267 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147570 + Tested-by: László Németh + Reviewed-by: László Németh + (cherry picked from commit d6182cb6704c06f33d284874b9fe96c85cce5bf5) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147606 + Tested-by: Jenkins + +2023-03-07 Caolán McNamara [36ed3cff62624b30e7cccdd0a4941c4bcb3a3ba6] + + eFormat modified inside GetDateArea, but change not propogated to the caller + + regression from: + + commit 6e7e19d9c300dbdd279789b09f94781e946fad52 + Date: Wed Jul 15 12:10:32 2020 +0100 + + weld DateControl + + Change-Id: I74bc01383f04fd4e54a45058fbbc3bc082eef0e5 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148322 + Reviewed-by: Noel Grandin + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2023-03-07 Samuel Mehrbrodt [b19e0a6676b800b9d3c362c722913f1362113006] + + Check iframe target for allowed document URLs + + Change-Id: I00e4192becbc160282a43ab89dcd269f3d1012d8 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147919 + Tested-by: Jenkins + Reviewed-by: Samuel Mehrbrodt + (cherry picked from commit 288c0920a8475f9f2c537212e04aa7649192ad8c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148229 + Reviewed-by: Caolán McNamara + +2023-03-06 László Németh [d93c8a047fbb7ace91761bdf8b7b818b5f62aff1] + + tdf#153891 DOCX import: crash fix at missing cell properties + + Regression from commit 81ce88aa80f8e7cde4fdc5b211e9500a3599643c + "tdf#132514 DOCX import: fix lost table style with footer". + + Note: no crash without this fix by removing styles.xml from + the test document. + + Change-Id: I7fd7edfc8f62e6b17c0c8f7a3bdec7d986ba57eb + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148053 + Tested-by: Jenkins + Reviewed-by: László Németh + (cherry picked from commit e34074feeb1b918ab9f26a18c5fdb0b1f2e35f94) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148105 + Reviewed-by: Xisco Fauli + (cherry picked from commit 2a7ec5f17e01041418262dcb0229fe537fa8139f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148109 + +2023-03-04 Eike Rathke [6e0c8a3dbdb83b634a30dad018e1ff5f9959d055] + + Resolves: tdf#153924 handle non-numeric and error values in rank array + + ... of LARGE()/SMALL() instead of yielding error value for all result + elements. + + Fallout from + + commit e4c2d0bb57ab8ea8f5c400d103d01376b8140f22 + CommitDate: Fri Nov 30 22:14:17 2018 +0100 + + i#32345 Support a matrix of rank argument for LARGE()/SMALL() + + that in ScInterpreter::GetTopNumberArray() required the entire + rank array would have to be numeric, which with an empty cell or + string it isn't. + + Change-Id: Ieaa1a68bb8f98614119550b1442665b6fbb4817a + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148178 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 019e751c71dcb2d34c6fd8bb9dda267c6ba2b48e) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148218 + Reviewed-by: Caolán McNamara + +2023-03-03 Christian Lohmaier [b9d88aa83709708dc43c606e1357965e7ea993fc] + + update credits + + Change-Id: I6d5a9f661041361e7c516887a298c84ac71e14ff + (cherry picked from commit 7545f47eb93373324eed35a7253e55448bbbdfbd) + +2023-03-02 Christian Lohmaier [5c69a59f3809b8d720f27247f3e5b2b2b84adf31] + + Update git submodules + + * Update translations from branch 'libreoffice-7-4' + to d3fef19e637f36da1a7b7b431d5e38324675621b + - update translations for 7.4.6 rc2 + + and force-fix errors using pocheck + + Change-Id: I5de070e4831b68bc2923e4c779024974116a0ce4 + +2023-03-02 Samuel Mehrbrodt [50dc5454840e2d47e3e5fee4b17e7280ea074863] Fix viewsettings count @@ -70,69 +1609,21 @@ (cherry picked from commit 31a503a0a10aea0489ac2ebe5abd745f37e6402b) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148094 Reviewed-by: Michael Stahl - (cherry picked from commit 50dc5454840e2d47e3e5fee4b17e7280ea074863) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148096 - Reviewed-by: Xisco Fauli - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier - -2023-03-03 Xisco Fauli [ab8757de11e0dfb6d8286d11282dfa47b411ed95] - - check GetActiveWrtShell() and CheckAndGetWrtShell() - - See https://crashreport.libreoffice.org/stats/signature/SwModule::ApplyItemSet(unsigned%20short,SfxItemSet%20const%20&) - Change-Id: I7c719c5fe4cda9f6571592c30f39bd440053dbe9 - - Change-Id: Iaa4448dccd1a0ec1aefa539e476b5046ed50f7b7 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147203 - Tested-by: Jenkins - Reviewed-by: Caolán McNamara - (cherry picked from commit e790bcace8109cbcce618f92e12afcb7dbc629f9) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147237 - Reviewed-by: Michael Stahl - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier -2023-03-03 Xisco Fauli [3430bc1f144658a74e7d44757afaa6703208abae] +2023-03-02 Caolán McNamara [dbe36c47aa685ccdcfd05e5116348ace7b3bd68f] - check GetFEShell() - - Similar to 24889135773204c6e3002dcb417c75ff1a99ccd0 - "check GetEditShell()" + Related: tdf#153784 margin_bottom is a cnp nonsense, should be margin_end - These two crash reports might be related: - - https://crashreport.libreoffice.org/stats/signature/SwView::GetDocShell() - - https://crashreport.libreoffice.org/stats/signature/SwFEShell::UpdateTableStyleFormatting(SwTableNode%20*,bool,rtl::OUString%20const%20*) - - Change-Id: I7ce286f7be933b34af270abd11a4c9c4c58fe4a8 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147117 - Tested-by: Jenkins + Change-Id: Id14f63a8bfb64622e505903820b7f081c368389c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147924 + Tested-by: Caolán McNamara Reviewed-by: Caolán McNamara - (cherry picked from commit 8a0be96c7ccbd433b5cba5d9d814178cf8a5d026) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147119 - Reviewed-by: Michael Stahl - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier - -2023-03-03 Taichi Haradaguchi <20001722@ymail.ne.jp> [bfcc3ab17beb1448ffcc239f3a48bdf1c956b557] - - curl: upgrade to release 7.88.1 - - Fixes CVE-2023-23916, 2 CVEs that probably don't affect LO. - - Reference: https://curl.se/docs/security.html - - Change-Id: If9b3fc7c5ce66bfe1027caff39ea2c1cf55df7ad - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147977 + (cherry picked from commit 3b279889daa9c37fe91663d16dd2d8c5938cc0d5) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147992 Tested-by: Jenkins Reviewed-by: Michael Stahl - (cherry picked from commit 6074d16b8c631e679a67364837d4ca9799731152) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147987 - Reviewed-by: Xisco Fauli - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier -2023-03-03 Taichi Haradaguchi <20001722@ymail.ne.jp> [dee00d72806a3093870c977e4050049fa59f032a] +2023-03-01 Taichi Haradaguchi <20001722@ymail.ne.jp> [98483f4e7850c9bf977a20450a94c1fd144f4402] postgresql: upgrade to release 13.10 @@ -144,53 +1635,51 @@ Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147982 Reviewed-by: Michael Stahl Tested-by: Jenkins - (cherry picked from commit 98483f4e7850c9bf977a20450a94c1fd144f4402) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147989 - Reviewed-by: Xisco Fauli - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier -2023-03-03 Xisco Fauli [2372305ed7bfc6466c99ba800d3a104696b9dd31] +2023-03-01 Kohei Yoshida [268ab12ef987f0c1d34db78060ac6b80f25d9408] - sc: fix divide by zero in ScGridWindow::DrawPagePreview + tdf#153669: Track formulas that stopped listening ... - Seen in https://crashreport.libreoffice.org/stats/signature/ScGridWindow::DrawPagePreview(short,long,short,long,OutputDevice%20&) + ... then have them start listening again after the copy from + clipboard is complete. Note that in case the pasted cells + are formula cells, those will be handled together as well. - Change-Id: Iff64d0fe84c7d53b18db38598709ac47475a6715 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147236 + Change-Id: Ia4be814b888734267a39f7c89435011968570b7f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147940 + Tested-by: Jenkins + Reviewed-by: Kohei Yoshida + (cherry picked from commit e83c243018c1c7f6662f9a8ecdc731c5c071ea31) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147912 + (cherry picked from commit 33b6c065a1629afd36c9ae0fe5daa18b972620e5) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147983 + +2023-03-01 Taichi Haradaguchi <20001722@ymail.ne.jp> [6074d16b8c631e679a67364837d4ca9799731152] + + curl: upgrade to release 7.88.1 + + Fixes CVE-2023-23916, 2 CVEs that probably don't affect LO. + + Reference: https://curl.se/docs/security.html + + Change-Id: If9b3fc7c5ce66bfe1027caff39ea2c1cf55df7ad + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147977 Tested-by: Jenkins - Reviewed-by: Caolán McNamara - (cherry picked from commit 146b95e138ff38aee755f4954f3305c48e2c3963) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147363 Reviewed-by: Michael Stahl - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier -2023-03-02 Christian Lohmaier [a8ebc3bfa914d3086930e56a40795ed9b3e04c5b] +2023-02-28 Olivier Hallot [0b3ae028f967dcf99a73e3814a3068ef78dba4be] Update git submodules - * Update translations from branch 'libreoffice-7-4-6' - to e360c51e49f59f9b44a28705781d434d5d5fdaea - - update translations for 7.4.6 rc2 - - and force-fix errors using pocheck + * Update helpcontent2 from branch 'libreoffice-7-4' + to 1cc8b46fcaf00a436d8a4bd9d1b07a848d9e6eff + - tdf#149056 Bad Help link for Address book wizard - Change-Id: I5de070e4831b68bc2923e4c779024974116a0ce4 - (cherry picked from commit d3fef19e637f36da1a7b7b431d5e38324675621b) + Change-Id: I3093fb88733b444b9a074d43d9971ad92ce384e2 + Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147064 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos -2023-03-02 Caolán McNamara [e73cdcf9e4881ccfebb2dfa35556d9b2a2adcf37] - - Resolves: tdf#153763 first/last buttons in tabbar not responding - - Change-Id: Id6e70eca7c2d523643d9e38e8c7402879464bf5a - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147293 - Reviewed-by: Adolfo Jayme Barrientos - Reviewed-by: Michael Stahl - Tested-by: Xisco Fauli - Reviewed-by: Xisco Fauli - -2023-02-28 Eike Rathke [ef9af49e1060bfb2a15db81ba10703ebd520bbf6] +2023-02-27 Eike Rathke [da8ca6920b78addc827171f53a42abdd59da9f9c] Always push a result, even if it's only an error @@ -210,51 +1699,82 @@ Reviewed-by: Eike Rathke Tested-by: Jenkins (cherry picked from commit 64914560e279c71ff1233f4bab851e2a292797e6) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147901 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147900 Reviewed-by: Caolán McNamara - Reviewed-by: Michael Stahl - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier + Tested-by: Caolán McNamara -2023-02-28 Michael Stahl [8a3811fab79e2e84dd97c9af885bfba7072dcb8a] +2023-02-27 Caolán McNamara [0dec4da8a3441353afa65de81f30d316e6500606] - nss: upgrade to release 3.88.1 + RES_LR_SPACE should fall through to default not RES_BACKGROUND - Fixes CVE-2023-0767 CVE-2022-3479 + due to - Change-Id: I688dc7d0785ed3344c33e331c7e9ef37baa720ee - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147387 + commit 29dfcc7521311e547fc069466cc3edc9fcbdbe03 + Date: Mon Nov 23 16:17:37 2015 +0100 + + tdf#94088 add import of HTML inline graphics + + splitting the condition that used to fall through to default handling + with an unrelated RES_BACKGROUND case instead + + Change-Id: I26a077c755f214cf35582ec146fcf34f87cc4494 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147690 Tested-by: Jenkins Reviewed-by: Michael Stahl - (cherry picked from commit 538975a0e511ad79a7dd3c71300b993d1554cd03) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147360 - Reviewed-by: Caolán McNamara - (cherry picked from commit 389cdfa04fbf7bffde6af9e6c87325579e3e136a) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147372 - Reviewed-by: Xisco Fauli - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier -2023-02-28 Eike Rathke [ae2832fb74d9318a5ed4185114351b564cb39c28] +2023-02-27 Caolán McNamara [ae2480960e3f37c06bfb5b61e480aba62c23c065] - Stack check safety belt before fishing in muddy waters - - Have it hit hard in debug builds. + Resolves: tdf#153763 first/last buttons in tabbar not responding - Change-Id: I9ea54844a0661fd7a75616a2876983a74b2d5bad - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147205 - Reviewed-by: Eike Rathke + Change-Id: Id6e70eca7c2d523643d9e38e8c7402879464bf5a + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147292 Tested-by: Jenkins - (cherry picked from commit 9d91fbba6f374fa1c10b38eae003da89bd4e6d4b) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147245 - Reviewed-by: Caolán McNamara - (cherry picked from commit 166a07062dd4ffedca6106f439a6fcddaeee5eb5) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147435 Reviewed-by: Michael Stahl - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier -2023-02-27 László Németh [8872ae3f6e86aca7f6ecc156caa3a1a8694deb6d] +2023-02-23 Tünde Tóth [47c465cb049ad8055dbd13a793afa958194185c6] + + tdf#153179 ODP export regression: fix lost shape at missing object + + If the object is missing, it's still possible to keep its shape + by exporting its preview graphic, as before the regression. + + Regression from commit adc042f95d3dbd65b778260025d59283146916e5 + "tdf#124333 PPTX import: fix Z-order of embedded OLE objects". + + See also commit 907da02bf8b33c080538731864225b3c44251328 + "tdf#152436 PPTX export regression: fix lost shape at missing object" + + Change-Id: I614730435a857c6cdf01d4cdfc525fc452dffa29 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146247 + Tested-by: Jenkins + Tested-by: László Németh + Reviewed-by: László Németh + (cherry picked from commit da725dfe07f2cf10349772d1667591c4d6a6fe8a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146990 + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146991 + +2023-02-23 Samuel Mehrbrodt [0239c7746ded2a91dab2e2815bb1ff68bf203fca] + + tdf#153640 Fix changing chart background color back to None + + Change-Id: I653028d6016ca0caa72cb2a877cd23592c322a18 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147351 + Tested-by: Jenkins + Reviewed-by: Samuel Mehrbrodt + (cherry picked from commit a2732de4bd080e3ed8894ba3618f48bc4c6d9abe) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147446 + Reviewed-by: Xisco Fauli + +2023-02-22 Christian Lohmaier [be0393c1d24abe0c126ed55f65f2d8cf0416612e] + + update credits + + Change-Id: Ic974dbd48cb9b1b2e417430325e4611a66d1aa7c + (cherry picked from commit 1e12a4cc980ebabadde592d3159b93cc12e733a7) + +2023-02-22 László Németh [6c81e52f26f8bad39c741083fad6f21126ace53c] tdf#132714 sw: fix crash at table row deletion associated to a chart @@ -279,47 +1799,66 @@ Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147251 Tested-by: Jenkins Reviewed-by: Xisco Fauli - (cherry picked from commit 6c81e52f26f8bad39c741083fad6f21126ace53c) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147436 + +2023-02-21 Michael Stahl [389cdfa04fbf7bffde6af9e6c87325579e3e136a] + + nss: upgrade to release 3.88.1 + + Fixes CVE-2023-0767 CVE-2022-3479 + + Change-Id: I688dc7d0785ed3344c33e331c7e9ef37baa720ee + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147387 + Tested-by: Jenkins Reviewed-by: Michael Stahl + (cherry picked from commit 538975a0e511ad79a7dd3c71300b993d1554cd03) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147360 Reviewed-by: Caolán McNamara - Tested-by: Caolán McNamara -2023-02-22 Christian Lohmaier [fddf968de9981ee485371252c2005c7c95b86431] +2023-02-20 Xisco Fauli [146b95e138ff38aee755f4954f3305c48e2c3963] - update credits + sc: fix divide by zero in ScGridWindow::DrawPagePreview - Change-Id: Ic974dbd48cb9b1b2e417430325e4611a66d1aa7c - (cherry picked from commit 1e12a4cc980ebabadde592d3159b93cc12e733a7) - (cherry picked from commit be0393c1d24abe0c126ed55f65f2d8cf0416612e) + Seen in https://crashreport.libreoffice.org/stats/signature/ScGridWindow::DrawPagePreview(short,long,short,long,OutputDevice%20&) + + Change-Id: Iff64d0fe84c7d53b18db38598709ac47475a6715 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147236 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara -2023-02-22 Eike Rathke [48ce354351d58f4a63c45d0c56156ff1268bd050] +2023-02-20 Christian Lohmaier [b22446cc1788c1861ea5a8cc5b227f983ea71f8f] - Obtain actual 0-parameter count for OR(), AND() and 1-parameter functions + fix openssl build on aarch64 - _umul128 is not available on non x64 - OR and AND for legacy infix notation are classified as binary - operators but in fact are functions with parameter count. In case - no argument is supplied, GetByte() returns 0 and for that case the - implicit binary operator 2 parameters were wrongly assumed. - Similar for functions expecting 1 parameter, without argument 1 - was assumed. For "real" unary and binary operators the compiler - already checks parameters. Omit OR and AND and 1-parameter - functions from this implicit assumption and return the actual 0 - count. + adding upstream patch that uses __umulh as a fallback - Change-Id: Ie05398c112a98021ac2875cf7b6de994aee9d882 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147173 - Reviewed-by: Eike Rathke + Change-Id: Ib95de30d3f7208c38421df0c63eb1ceafccd9354 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146839 Tested-by: Jenkins - (cherry picked from commit e7ce9bddadb2db222eaa5f594ef1de2e36d57e5c) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147129 + Reviewed-by: Christian Lohmaier + (cherry picked from commit 821f4d6f0987450233e4f63e01f89484ec737258) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147228 + Reviewed-by: Michael Stahl + +2023-02-20 Xisco Fauli [c0181b2f26b784d8317f51a77a9dfade16913ad1] + + check SmGetActiveView() + + it might be null + + See https://crashreport.libreoffice.org/stats/signature/SmPrintOptionsTabPage::~SmPrintOptionsTabPage() + + Change-Id: I7bc17da230784e6e3fc9c0b33848423ac113ab29 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147221 Reviewed-by: Caolán McNamara - (cherry picked from commit d6599a2af131994487d2d9223a4fd32a8c3ddc49) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147132 + Tested-by: Jenkins Reviewed-by: Xisco Fauli - Tested-by: Caolán McNamara + (cherry picked from commit a7fd1e067eb2af0ef329719c4c7dbb32cc5926b2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147246 + (cherry picked from commit b905b793be520b9fdece8d12614566be82ce3c92) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147312 + Reviewed-by: Michael Stahl -2023-02-20 Mike Kaganski [ef029c7eb79f6d696e6afeb07456cae3fceaf51e] +2023-02-20 Mike Kaganski [acd44070a5fae1bbeec063acc8a68463d914529d] tdf#153724: make sure to retrieve the variable value before checking the type @@ -343,29 +1882,76 @@ Reviewed-by: Mike Kaganski Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147298 Reviewed-by: Xisco Fauli - (cherry picked from commit acd44070a5fae1bbeec063acc8a68463d914529d) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147284 + +2023-02-17 Eike Rathke [166a07062dd4ffedca6106f439a6fcddaeee5eb5] + + Stack check safety belt before fishing in muddy waters + + Have it hit hard in debug builds. + + Change-Id: I9ea54844a0661fd7a75616a2876983a74b2d5bad + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147205 Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 9d91fbba6f374fa1c10b38eae003da89bd4e6d4b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147245 Reviewed-by: Caolán McNamara - Tested-by: Caolán McNamara -2023-02-15 Christian Lohmaier [614c2888ab8edffac4b210265c0fa64313e651a3] +2023-02-17 Xisco Fauli [e790bcace8109cbcce618f92e12afcb7dbc629f9] - bump product version to 7.4.6.1.0+ + check GetActiveWrtShell() and CheckAndGetWrtShell() + + See https://crashreport.libreoffice.org/stats/signature/SwModule::ApplyItemSet(unsigned%20short,SfxItemSet%20const%20&) + Change-Id: I7c719c5fe4cda9f6571592c30f39bd440053dbe9 - Change-Id: I1c94f4ae0a6ac86715562c2bcb1392c408abb963 + Change-Id: Iaa4448dccd1a0ec1aefa539e476b5046ed50f7b7 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147203 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara -2023-02-15 Christian Lohmaier [90932e1a2eb284ce9a7ee2f30a5f60b2d9bf1d0d] +2023-02-17 Eike Rathke [d6599a2af131994487d2d9223a4fd32a8c3ddc49] - Branch libreoffice-7-4-6 + Obtain actual 0-parameter count for OR(), AND() and 1-parameter functions - This is 'libreoffice-7-4-6' - the stable branch for the 7.4.6 release. - Only very safe changes, reviewed by three people are allowed. + OR and AND for legacy infix notation are classified as binary + operators but in fact are functions with parameter count. In case + no argument is supplied, GetByte() returns 0 and for that case the + implicit binary operator 2 parameters were wrongly assumed. + Similar for functions expecting 1 parameter, without argument 1 + was assumed. For "real" unary and binary operators the compiler + already checks parameters. Omit OR and AND and 1-parameter + functions from this implicit assumption and return the actual 0 + count. - If you want to commit more complicated fix for the next 7.4.x release, - please use the 'libreoffice-7-4' branch. + Change-Id: Ie05398c112a98021ac2875cf7b6de994aee9d882 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147173 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit e7ce9bddadb2db222eaa5f594ef1de2e36d57e5c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147129 + Reviewed-by: Caolán McNamara + +2023-02-16 Xisco Fauli [8a0be96c7ccbd433b5cba5d9d814178cf8a5d026] + + check GetFEShell() - If you want to build something cool, unstable, and risky, use master. + Similar to 24889135773204c6e3002dcb417c75ff1a99ccd0 + "check GetEditShell()" + + These two crash reports might be related: + - https://crashreport.libreoffice.org/stats/signature/SwView::GetDocShell() + - https://crashreport.libreoffice.org/stats/signature/SwFEShell::UpdateTableStyleFormatting(SwTableNode%20*,bool,rtl::OUString%20const%20*) + + Change-Id: I7ce286f7be933b34af270abd11a4c9c4c58fe4a8 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147117 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2023-02-15 Christian Lohmaier [d858559ca667d625e2fe2d29d7dfbc8e77df50dc] + + bump product version to 7.4.7.0.0+ + + Change-Id: Iab4bc373d660ba3d4baf896645b4be8f5e29d72e 2023-02-15 Miklos Vajna [68f7599f6e7a8a8d1f209bc44e4cf28c7672825b] diff -Nru libreoffice-7.4.6/chart2/source/controller/sidebar/ChartAreaPanel.cxx libreoffice-7.4.7/chart2/source/controller/sidebar/ChartAreaPanel.cxx --- libreoffice-7.4.6/chart2/source/controller/sidebar/ChartAreaPanel.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/chart2/source/controller/sidebar/ChartAreaPanel.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -408,9 +408,10 @@ xPropSet->setPropertyValue("FillBitmapName", aBitmap); } -void ChartAreaPanel::setFillUseBackground(const XFillStyleItem* /*pStyleItem*/, +void ChartAreaPanel::setFillUseBackground(const XFillStyleItem* pStyleItem, const XFillUseSlideBackgroundItem& /*rItem*/) { + setFillStyle(*pStyleItem); } void ChartAreaPanel::updateData() diff -Nru libreoffice-7.4.6/chart2/source/tools/MovingAverageRegressionCurveCalculator.cxx libreoffice-7.4.7/chart2/source/tools/MovingAverageRegressionCurveCalculator.cxx --- libreoffice-7.4.6/chart2/source/tools/MovingAverageRegressionCurveCalculator.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/chart2/source/tools/MovingAverageRegressionCurveCalculator.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -84,6 +84,8 @@ RegressionCalculationHelper::tDoubleVectorPair aValues) { const size_t aSize = aValues.first.size(); + if (aSize == 0) + return; for (size_t i = mPeriod - 1; i < aSize; ++i) { double yAvg = 0.0; diff -Nru libreoffice-7.4.6/configure libreoffice-7.4.7/configure --- libreoffice-7.4.6/configure 2023-03-03 17:00:59.000000000 +0000 +++ libreoffice-7.4.7/configure 2023-05-03 15:29:39.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.4.6.2. +# Generated by GNU Autoconf 2.70 for LibreOffice 7.4.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.4.6.2' -PACKAGE_STRING='LibreOffice 7.4.6.2' +PACKAGE_VERSION='7.4.7.2' +PACKAGE_STRING='LibreOffice 7.4.7.2' PACKAGE_BUGREPORT='' PACKAGE_URL='http://documentfoundation.org/' @@ -2537,7 +2537,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.4.6.2 to adapt to many kinds of systems. +\`configure' configures LibreOffice 7.4.7.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -2607,7 +2607,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of LibreOffice 7.4.6.2:";; + short | recursive ) echo "Configuration of LibreOffice 7.4.7.2:";; esac cat <<\_ACEOF @@ -3015,7 +3015,7 @@ Define the product name. Default is LibreOffice. --with-package-version='3.1.4.5' Define the package version. Default is - 7.4.6.2. Use only if you distribute an + 7.4.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 @@ -3816,7 +3816,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -LibreOffice configure 7.4.6.2 +LibreOffice configure 7.4.7.2 generated by GNU Autoconf 2.70 Copyright (C) 2020 Free Software Foundation, Inc. @@ -4564,7 +4564,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.4.6.2, which was +It was created by LibreOffice $as_me 7.4.7.2, which was generated by GNU Autoconf 2.70. Invocation command line was $ $0$ac_configure_args_raw @@ -47039,7 +47039,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.4.6.2, which was +This file was extended by LibreOffice $as_me 7.4.7.2, which was generated by GNU Autoconf 2.70. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -47108,7 +47108,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -LibreOffice config.status 7.4.6.2 +LibreOffice config.status 7.4.7.2 configured by $0, generated by GNU Autoconf 2.70, with options \\"\$ac_cs_config\\" diff -Nru libreoffice-7.4.6/configure.ac libreoffice-7.4.7/configure.ac --- libreoffice-7.4.6/configure.ac 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/configure.ac 2023-05-03 15:22:13.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.4.6.2],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[7.4.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 diff -Nru libreoffice-7.4.6/cppuhelper/source/paths.cxx libreoffice-7.4.7/cppuhelper/source/paths.cxx --- libreoffice-7.4.6/cppuhelper/source/paths.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/cppuhelper/source/paths.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -99,9 +99,11 @@ "Cannot stat in directory"); } if (stat.getFileType() != osl::FileStatus::Directory) { //TODO: symlinks - // Ignore backup files: + // Ignore backup and spurious junk files: OUString name(stat.getFileName()); - if (!(name.match(".") || name.endsWith("~"))) { + if (name.match(".") || !name.endsWithIgnoreAsciiCase(u".rdb")) { + SAL_WARN("cppuhelper", "ignoring <" << stat.getFileURL() << ">"); + } else { *url = stat.getFileURL(); return true; } diff -Nru libreoffice-7.4.6/cui/source/dialogs/cuicharmap.cxx libreoffice-7.4.7/cui/source/dialogs/cuicharmap.cxx --- libreoffice-7.4.6/cui/source/dialogs/cuicharmap.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/cui/source/dialogs/cuicharmap.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -885,6 +885,8 @@ if(!sName.isEmpty() && sName.toAsciiLowerCase().indexOf(aKeyword.toAsciiLowerCase()) >= 0) m_xSearchSet->AppendCharToList(sChar); } + + m_xSearchSet->UpdateScrollRange(); } else { diff -Nru libreoffice-7.4.6/cui/source/dialogs/hyphen.cxx libreoffice-7.4.7/cui/source/dialogs/hyphen.cxx --- libreoffice-7.4.6/cui/source/dialogs/hyphen.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/cui/source/dialogs/hyphen.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -161,7 +161,7 @@ // 2) remove all hyphenation positions from the start that are not considered by the core const std::u16string_view aSearchRange( aTxt.subView( 0, nPos1 ) ); size_t nPos2 = aSearchRange.rfind( '-' ); // the '-' position the core will use by default - if (nPos2 != std::u16string_view::npos ) + if (nPos2 != std::u16string_view::npos && nPos2 != 0) { OUString aLeft( aSearchRange.substr( 0, nPos2 ) ); nPos = 0; diff -Nru libreoffice-7.4.6/cui/uiconfig/ui/specialcharacters.ui libreoffice-7.4.7/cui/uiconfig/ui/specialcharacters.ui --- libreoffice-7.4.6/cui/uiconfig/ui/specialcharacters.ui 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/cui/uiconfig/ui/specialcharacters.ui 2023-05-03 15:22:13.000000000 +0000 @@ -1,5 +1,5 @@ - + @@ -855,6 +855,8 @@ True True True + never + always in diff -Nru libreoffice-7.4.6/debian/changelog libreoffice-7.4.7/debian/changelog --- libreoffice-7.4.6/debian/changelog 2023-03-09 13:07:05.000000000 +0000 +++ libreoffice-7.4.7/debian/changelog 2023-05-03 17:17:57.000000000 +0000 @@ -1,9 +1,26 @@ -libreoffice (1:7.4.6-0ubuntu0.22.10.1~bpo22.04.1) jammy-backports; urgency=medium +libreoffice (1:7.4.7-0ubuntu0.22.10.1~bpo22.04.1) jammy-backports; urgency=medium - * Backport from kinetic (LP: #2009944) + * Backport from kinetic (LP: #2018714) * Use internal graphite and harfbuzz to meat upstream requirements - -- Rico Tzschichholz Thu, 09 Mar 2023 14:07:05 +0100 + -- Rico Tzschichholz Wed, 03 May 2023 19:17:57 +0200 + +libreoffice (1:7.4.7-0ubuntu0.22.10.1) kinetic; urgency=medium + + * New upstream release (LP: #2018600) + + [ Rico Tzschichholz ] + * Install all yaru icon variants + * Bump yaru source to "2023-03-31" + + [ Rene Engelhard ] + * debian/rules, debian/tests/*: don't fail if ulimit -c unlimited fails + (like in ci.d.n infrastructure after the bookworm upgrade...) + * debian/control.postgresql.in: + - depend on libreoffice-core-nogui | libreoffice-core (like the other + -sdbc-*) + + -- Rico Tzschichholz Wed, 03 May 2023 19:17:57 +0200 libreoffice (1:7.4.6-0ubuntu0.22.10.1) kinetic; urgency=medium @@ -520,6 +537,8 @@ libreoffice (1:7.3.1-1) unstable; urgency=medium * LibreOffice 7.3.1 final release + - fixes CVE-2022-38745: "Empty entry in Java class path risks arbitrary + code execution" -- Rene Engelhard Thu, 03 Mar 2022 17:24:16 +0000 diff -Nru libreoffice-7.4.6/debian/control libreoffice-7.4.7/debian/control --- libreoffice-7.4.6/debian/control 2023-03-09 13:07:05.000000000 +0000 +++ libreoffice-7.4.7/debian/control 2023-05-03 17:17:57.000000000 +0000 @@ -5083,7 +5083,7 @@ Section: misc Architecture: amd64 arm64 armhf ppc64el s390x Depends: libreoffice-common (>= 1:7.0.0~alpha), - libreoffice-core, + libreoffice-core-nogui | libreoffice-core, ${misc:Depends}, ${shlibs:Depends} Suggests: postgresql (>= 8.4) diff -Nru libreoffice-7.4.6/debian/control.postgresql.in libreoffice-7.4.7/debian/control.postgresql.in --- libreoffice-7.4.6/debian/control.postgresql.in 2023-03-06 15:22:49.000000000 +0000 +++ libreoffice-7.4.7/debian/control.postgresql.in 2023-05-03 17:17:57.000000000 +0000 @@ -1,7 +1,7 @@ Package: libreoffice-sdbc-postgresql Section: misc Architecture: %OOO_BASE_ARCHS% -Depends: libreoffice-core, +Depends: libreoffice-core-nogui | libreoffice-core, libreoffice-common (>= 1:7.0.0~alpha), ${misc:Depends}, ${shlibs:Depends} diff -Nru libreoffice-7.4.6/debian/patches/add-yaru-theme.diff libreoffice-7.4.7/debian/patches/add-yaru-theme.diff --- libreoffice-7.4.6/debian/patches/add-yaru-theme.diff 2023-03-09 13:07:05.000000000 +0000 +++ libreoffice-7.4.7/debian/patches/add-yaru-theme.diff 2023-05-03 17:17:57.000000000 +0000 @@ -2,20 +2,11 @@ index 0ffa7979dc39..888906096e94 100644 --- a/configure.ac +++ b/configure.ac -@@ -11957,14 +11957,14 @@ dnl =================================================================== - AC_MSG_CHECKING([which themes to include]) - # if none given use default subset of available themes - if test "x$with_theme" = "x" -o "x$with_theme" = "xyes"; then -- with_theme="breeze breeze_dark breeze_dark_svg breeze_svg colibre colibre_svg colibre_dark colibre_dark_svg elementary elementary_svg karasa_jaga karasa_jaga_svg sifr sifr_svg sifr_dark sifr_dark_svg sukapura sukapura_svg" -+ with_theme="breeze breeze_dark breeze_dark_svg breeze_svg colibre colibre_svg colibre_dark colibre_dark_svg elementary elementary_svg karasa_jaga karasa_jaga_svg sifr sifr_svg sifr_dark sifr_dark_svg sukapura sukapura_svg yaru yaru_svg yaru_mate yaru_mate_svg" - fi - - WITH_THEMES="" - if test "x$with_theme" != "xno"; then +@@ -13268,6 +13268,7 @@ if test "x$with_theme" != "xno"; then for theme in $with_theme; do case $theme in -- breeze|breeze_dark|breeze_dark_svg|breeze_svg|colibre|colibre_svg|colibre_dark|colibre_dark_svg|elementary|elementary_svg|karasa_jaga|karasa_jaga_svg|sifr|sifr_svg|sifr_dark|sifr_dark_svg|sukapura|sukapura_svg) real_theme="$theme" ;; -+ breeze|breeze_dark|breeze_dark_svg|breeze_svg|colibre|colibre_svg|colibre_dark|colibre_dark_svg|elementary|elementary_svg|karasa_jaga|karasa_jaga_svg|sifr|sifr_svg|sifr_dark|sifr_dark_svg|sukapura|sukapura_svg|yaru|yaru_svg|yaru_mate|yaru_mate_svg) real_theme="$theme" ;; + breeze|breeze_dark|breeze_dark_svg|breeze_svg|colibre|colibre_svg|colibre_dark|colibre_dark_svg|elementary|elementary_svg|karasa_jaga|karasa_jaga_svg|sifr|sifr_svg|sifr_dark|sifr_dark_svg|sukapura|sukapura_svg) real_theme="$theme" ;; ++ yaru*) real_theme="$theme" ;; default) real_theme=colibre ;; *) AC_MSG_ERROR([Unknown value for --with-theme: $theme]) ;; esac diff -Nru libreoffice-7.4.6/debian/rules libreoffice-7.4.7/debian/rules --- libreoffice-7.4.6/debian/rules 2023-03-09 13:07:05.000000000 +0000 +++ libreoffice-7.4.7/debian/rules 2023-05-03 17:17:57.000000000 +0000 @@ -74,20 +74,23 @@ 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.4.6.2 +lo_sources_ver=7.4.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-4-6 +GIT_BRANCH=libreoffice-7-4-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-09-04 +YARU_GIT_TAG=2023-03-31 endif +YARU_ACCENTS = bark blue magenta olive prussiangreen purple red sage viridian mate +YARU_IMAGES = yaru yaru_svg $(foreach y, $(YARU_ACCENTS),yaru_$(y) yaru_$(y)_svg) + ######### # Default package configuration # @@ -338,9 +341,8 @@ SYSTEM_STUFF += dragonbox SYSTEM_STUFF += libfixmath DEFAULT_IMAGE=colibre -IMAGES:=$(DEFAULT_IMAGE) colibre_dark colibre_svg colibre_dark_svg sifr sifr_dark sifr_dark_svg breeze breeze_dark breeze_dark_svg breeze_svg elementary elementary_svg karasa_jaga sukapura sukapura_svg yaru yaru_svg yaru_mate yaru_mate_svg -# FIXME -IMAGES_PACKAGES=$(subst _,-,$(filter-out yaru_mate,$(filter-out yaru_mate_svg,$(filter-out yaru_svg,$(filter-out colibre_dark,$(filter-out colibre_svg,$(filter-out colibre_dark_svg,$(filter-out sukapura_svg,$(filter-out sifr_dark_svg,$(filter-out breeze_dark_svg,$(filter-out sifr_dark,$(filter-out breeze_dark,$(filter-out breeze_svg,$(filter-out elementary_svg,$(IMAGES))))))))))))))) +IMAGES:=$(DEFAULT_IMAGE) colibre_dark colibre_svg colibre_dark_svg sifr sifr_dark sifr_dark_svg breeze breeze_dark breeze_dark_svg breeze_svg elementary elementary_svg karasa_jaga sukapura sukapura_svg +IMAGES += $(YARU_IMAGES) CONFIGURE_FLAGS_INDEP += --with-theme="$(IMAGES)" ENABLE_MARIADB=y ifeq "$(ENABLE_MARIADB)" "y" @@ -1861,10 +1863,7 @@ endif # Ubuntu yaru icon theme links - rm -f icon-themes/yaru - rm -f icon-themes/yaru_svg - rm -f icon-themes/yaru_mate - rm -f icon-themes/yaru_mate_svg + rm -f $(foreach y,$(YARU_IMAGES),icon-themes/$(y)) rm -f download.list @@ -2162,8 +2161,10 @@ # Ubuntu yaru icon theme links ln -srf yaru/build/default/png icon-themes/yaru ln -srf yaru/build/default/svg icon-themes/yaru_svg - ln -srf yaru/build/mate/png icon-themes/yaru_mate - ln -srf yaru/build/mate/svg icon-themes/yaru_mate_svg + for a in $(YARU_ACCENTS) ; do \ + ln -srf yaru/build/$$a/png icon-themes/yaru_$$a; \ + ln -srf yaru/build/$$a/svg icon-themes/yaru_$$a\_svg; \ + done touch $@ @@ -2338,7 +2339,7 @@ unset DISPLAY; \ unset CONNECTIVITY_TEST_MYSQL_DRIVER; \ export PARALLELISM=1; \ - if [ -x /usr/bin/gdb ]; then ulimit -c unlimited; fi && \ + if [ -x /usr/bin/gdb ]; then ulimit -c unlimited || true; fi && \ $(TEST_TIMEOUT) $(MAKE) -k check || $(TEST_TIMEOUT) $(MAKE) check && \ rm -rf $$t endif @@ -3491,20 +3492,16 @@ set -e; \ for i in $(IMAGES); do \ z=images_$$i.zip; p=$$i; \ - if [ "$$i" = "colibre_dark" ]; then p=colibre; fi; \ - if [ "$$i" = "colibre_dark_svg" ]; then p=colibre; fi; \ - if [ "$$i" = "colibre_svg" ]; then p=colibre; fi; \ - if [ "$$i" = "breeze_dark" ]; then p=breeze; fi; \ - if [ "$$i" = "breeze_dark_svg" ]; then p=breeze; fi; \ - if [ "$$i" = "breeze_svg" ]; then p=breeze; fi; \ - if [ "$$i" = "elementary_svg" ]; then p=elementary; fi; \ - if [ "$$i" = "sifr_dark" ]; then p=sifr; fi; \ - if [ "$$i" = "sifr_dark_svg" ]; then p=sifr; fi; \ - if [ "$$i" = "karasa_jaga" ]; then p=karasa-jaga; fi; \ - if [ "$$i" = "sukapura_svg" ]; then p=sukapura; fi; \ - if [ "$$i" = "yaru_svg" ]; then p=yaru; fi; \ - if [ "$$i" = "yaru_mate" ]; then p=yaru; fi; \ - if [ "$$i" = "yaru_mate_svg" ]; then p=yaru; fi; \ + case "$$i" in \ + breeze*) p=breeze; ;; \ + colibre*) p=colibre; ;; \ + elementary*) p=elementary; ;; \ + karasa_jaga*) p=karasa-jaga; ;; \ + sifr*) p=sifr; ;; \ + sukapura*) p=sukapura; ;; \ + yaru*) p=yaru; ;; \ + *) ;; \ + esac; \ mkdir -p $(PKGDIR)-style-$$p/$(shell echo $(OODIR) | sed -e s/lib/share/)/share/config; \ mv $(PKGDIR)-common/$(OODIR)/share/config/$$z \ $(PKGDIR)-style-$$p/$(shell echo $(OODIR) | sed -e s/lib/share/)/share/config/; \ diff -Nru libreoffice-7.4.6/debian/tests/cppunit-connectivity-mysql libreoffice-7.4.7/debian/tests/cppunit-connectivity-mysql --- libreoffice-7.4.6/debian/tests/cppunit-connectivity-mysql 2023-03-06 15:24:45.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/cppunit-connectivity-mysql 2023-05-03 17:17:57.000000000 +0000 @@ -46,7 +46,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true echo "====== Resetting $db_user password ======" $db_safe_command --skip-grant-tables & diff -Nru libreoffice-7.4.6/debian/tests/cppunit-subsequentcheck libreoffice-7.4.7/debian/tests/cppunit-subsequentcheck --- libreoffice-7.4.6/debian/tests/cppunit-subsequentcheck 2023-03-06 15:24:45.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/cppunit-subsequentcheck 2023-05-03 17:17:57.000000000 +0000 @@ -30,7 +30,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true echo echo "====== Starting subsequentcheck with ${CHECK_PARALLELISM} job ======" diff -Nru libreoffice-7.4.6/debian/tests/junit-subsequentcheck libreoffice-7.4.7/debian/tests/junit-subsequentcheck --- libreoffice-7.4.6/debian/tests/junit-subsequentcheck 2023-03-06 15:24:45.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/junit-subsequentcheck 2023-05-03 17:17:57.000000000 +0000 @@ -45,7 +45,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true OOO_TEST_SOFFICE="${1:-path:/usr/lib/libreoffice/program/soffice}" diff -Nru libreoffice-7.4.6/debian/tests/slowcheck libreoffice-7.4.7/debian/tests/slowcheck --- libreoffice-7.4.6/debian/tests/slowcheck 2023-03-06 15:24:45.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/slowcheck 2023-05-03 17:17:57.000000000 +0000 @@ -30,7 +30,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true echo echo "====== Starting slowcheck with ${CHECK_PARALLELISM} job ======" diff -Nru libreoffice-7.4.6/debian/tests/smoketest libreoffice-7.4.7/debian/tests/smoketest --- libreoffice-7.4.6/debian/tests/smoketest 2023-03-06 15:24:45.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/smoketest 2023-05-03 17:17:57.000000000 +0000 @@ -36,7 +36,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true OOO_TEST_SOFFICE="${1:-path:/usr/lib/libreoffice/program/soffice}" diff -Nru libreoffice-7.4.6/debian/tests/testtools-bridgetest libreoffice-7.4.7/debian/tests/testtools-bridgetest --- libreoffice-7.4.6/debian/tests/testtools-bridgetest 2023-03-06 15:24:45.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/testtools-bridgetest 2023-05-03 17:17:57.000000000 +0000 @@ -32,7 +32,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true if [ ! -f config_host.mk ]; then # this normally shouldn't be needed but otherwise it wants a automatic diff -Nru libreoffice-7.4.6/debian/tests/uicheck-cui libreoffice-7.4.7/debian/tests/uicheck-cui --- libreoffice-7.4.6/debian/tests/uicheck-cui 2023-03-06 15:24:45.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/uicheck-cui 2023-05-03 17:17:57.000000000 +0000 @@ -38,7 +38,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true echo echo "====== Generating en_US.UTF-8 locale ======" diff -Nru libreoffice-7.4.6/debian/tests/uicheck-sc libreoffice-7.4.7/debian/tests/uicheck-sc --- libreoffice-7.4.6/debian/tests/uicheck-sc 2023-03-09 13:07:05.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/uicheck-sc 2023-05-03 17:17:57.000000000 +0000 @@ -40,7 +40,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true echo echo "====== Generating en_US.UTF-8 locale ======" diff -Nru libreoffice-7.4.6/debian/tests/uicheck-sd libreoffice-7.4.7/debian/tests/uicheck-sd --- libreoffice-7.4.6/debian/tests/uicheck-sd 2023-03-09 13:07:05.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/uicheck-sd 2023-05-03 17:17:57.000000000 +0000 @@ -40,7 +40,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true echo echo "====== Generating en_US.UTF-8 locale ======" diff -Nru libreoffice-7.4.6/debian/tests/uicheck-sfx2 libreoffice-7.4.7/debian/tests/uicheck-sfx2 --- libreoffice-7.4.6/debian/tests/uicheck-sfx2 2023-03-06 15:24:45.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/uicheck-sfx2 2023-05-03 17:17:57.000000000 +0000 @@ -38,7 +38,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true echo echo "====== Generating en_US.UTF-8 locale ======" diff -Nru libreoffice-7.4.6/debian/tests/uicheck-svx libreoffice-7.4.7/debian/tests/uicheck-svx --- libreoffice-7.4.6/debian/tests/uicheck-svx 2023-03-06 15:24:45.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/uicheck-svx 2023-05-03 17:17:57.000000000 +0000 @@ -38,7 +38,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true echo echo "====== Generating en_US.UTF-8 locale ======" diff -Nru libreoffice-7.4.6/debian/tests/uicheck-sw libreoffice-7.4.7/debian/tests/uicheck-sw --- libreoffice-7.4.6/debian/tests/uicheck-sw 2023-03-09 13:07:05.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/uicheck-sw 2023-05-03 17:17:57.000000000 +0000 @@ -40,7 +40,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true echo echo "====== Generating en_US.UTF-8 locale ======" diff -Nru libreoffice-7.4.6/debian/tests/uicheck-uitest libreoffice-7.4.7/debian/tests/uicheck-uitest --- libreoffice-7.4.6/debian/tests/uicheck-uitest 2023-03-06 15:24:45.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/uicheck-uitest 2023-05-03 17:17:57.000000000 +0000 @@ -38,7 +38,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true echo echo "====== Generating en_US.UTF-8 locale ======" diff -Nru libreoffice-7.4.6/debian/tests/uicheck-writerperfect libreoffice-7.4.7/debian/tests/uicheck-writerperfect --- libreoffice-7.4.6/debian/tests/uicheck-writerperfect 2023-03-06 15:24:45.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/uicheck-writerperfect 2023-05-03 17:17:57.000000000 +0000 @@ -38,7 +38,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true echo echo "====== Generating en_US.UTF-8 locale ======" diff -Nru libreoffice-7.4.6/debian/tests/unitcheck libreoffice-7.4.7/debian/tests/unitcheck --- libreoffice-7.4.6/debian/tests/unitcheck 2023-03-06 15:24:45.000000000 +0000 +++ libreoffice-7.4.7/debian/tests/unitcheck 2023-05-03 17:17:57.000000000 +0000 @@ -36,7 +36,7 @@ echo echo "====== Enabling core dumps ======" # yes, we want core dumps and stack traces -ulimit -c unlimited +ulimit -c unlimited || true echo echo "====== Starting unitcheck with ${CHECK_PARALLELISM} job ======" diff -Nru libreoffice-7.4.6/desktop/source/app/app.cxx libreoffice-7.4.7/desktop/source/app/app.cxx --- libreoffice-7.4.6/desktop/source/app/app.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/desktop/source/app/app.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -28,6 +28,7 @@ #include +#include #include #include @@ -455,7 +456,8 @@ } catch (css::uno::Exception & e) { - SetBootstrapError( BE_UNO_SERVICEMANAGER, e.Message ); + HandleBootstrapErrors( BE_UNO_SERVICEMANAGER, e.Message ); + std::abort(); } // Check whether safe mode is enabled diff -Nru libreoffice-7.4.6/download.lst libreoffice-7.4.7/download.lst --- libreoffice-7.4.6/download.lst 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/download.lst 2023-05-03 15:22:13.000000000 +0000 @@ -75,8 +75,8 @@ # three static lines # so that git cherry-pick # will not run into conflicts -CURL_SHA256SUM := 1dae31b2a7c1fe269de99c0c31bb488346aab3459b5ffca909d6938249ae415f -CURL_TARBALL := curl-7.88.1.tar.xz +CURL_SHA256SUM := 0a381cd82f4d00a9a334438b8ca239afea5bfefcfa9a1025f2bf118e79e0b5f0 +CURL_TARBALL := curl-8.0.1.tar.xz # three static lines # so that git cherry-pick # will not run into conflicts @@ -238,8 +238,8 @@ # three static lines # so that git cherry-pick # will not run into conflicts -HARFBUZZ_SHA256SUM := a49628f4c4c8e6d8df95ef44935a93446cf2e46366915b0e3ca30df21fffb530 -HARFBUZZ_TARBALL := harfbuzz-4.3.0.tar.xz +HARFBUZZ_SHA256SUM := f135a61cd464c9ed6bc9823764c188f276c3850a8dc904628de2a87966b7077b +HARFBUZZ_TARBALL := harfbuzz-7.1.0.tar.xz # three static lines # so that git cherry-pick # will not run into conflicts @@ -360,8 +360,8 @@ # three static lines # so that git cherry-pick # will not run into conflicts -LIBXML_SHA256SUM := 5d2cc3d78bec3dbe212a9d7fa629ada25a7da928af432c93060ff5c17ee28a9c -LIBXML_VERSION_MICRO := 3 +LIBXML_SHA256SUM := ed0c91c5845008f1936739e4eee2035531c1c94742c6541f44ee66d885948d45 +LIBXML_VERSION_MICRO := 4 LIBXML_TARBALL := libxml2-2.10.$(LIBXML_VERSION_MICRO).tar.xz # three static lines # so that git cherry-pick diff -Nru libreoffice-7.4.6/drawinglayer/source/tools/emfphelperdata.cxx libreoffice-7.4.7/drawinglayer/source/tools/emfphelperdata.cxx --- libreoffice-7.4.6/drawinglayer/source/tools/emfphelperdata.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/drawinglayer/source/tools/emfphelperdata.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1343,11 +1343,15 @@ rMS.ReadUInt32(aCount); SAL_INFO("drawinglayer.emf", "EMF+\t DrawBeziers slot: " << (flags & 0xff)); SAL_INFO("drawinglayer.emf", "EMF+\t Number of points: " << aCount); - SAL_WARN_IF((aCount - 1) % 3 != 0, "drawinglayer.emf", "EMF+\t Bezier Draw not support number of points other than 4, 7, 10, 13, 16..."); + SAL_WARN_IF((aCount - 1) % 3 != 0, "drawinglayer.emf", + "EMF+\t Bezier Draw not support number of points other than 4, 7, " + "10, 13, 16..."); if (aCount < 4) { - SAL_WARN("drawinglayer.emf", "EMF+\t Bezier Draw does not support less than 4 points. Number of points: " << aCount); + SAL_WARN("drawinglayer.emf", "EMF+\t Bezier Draw does not support less " + "than 4 points. Number of points: " + << aCount); break; } @@ -1355,29 +1359,26 @@ // We need to add first starting point aStartPoint = Map(x1, y1); aPolygon.append(aStartPoint); - + SAL_INFO("drawinglayer.emf", + "EMF+\t Bezier starting point: " << x1 << "," << y1); for (sal_uInt32 i = 4; i <= aCount; i += 3) { ReadPoint(rMS, x2, y2, flags); ReadPoint(rMS, x3, y3, flags); ReadPoint(rMS, x4, y4, flags); - SAL_INFO("drawinglayer.emf", "EMF+\t Bezier points: " << x1 << "," << y1 << " " << x2 << "," << y2 << " " << x3 << "," << y3 << " " << x4 << "," << y4); + SAL_INFO("drawinglayer.emf", + "EMF+\t Bezier points: " << x2 << "," << y2 << " " << x3 << "," + << y3 << " " << x4 << "," << y4); - aStartPoint = Map(x1, y1); aControlPointA = Map(x2, y2); aControlPointB = Map(x3, y3); aEndPoint = Map(x4, y4); - - ::basegfx::B2DCubicBezier cubicBezier(aStartPoint, aControlPointA, aControlPointB, aEndPoint); - cubicBezier.adaptiveSubdivideByDistance(aPolygon, 10.0); - - EMFPPlusDrawPolygon(::basegfx::B2DPolyPolygon(aPolygon), flags & 0xff); - + aPolygon.appendBezierSegment(aControlPointA, aControlPointB, aEndPoint); // The ending coordinate of one Bezier curve is the starting coordinate of the next. - x1 = x4; - y1 = y4; + aStartPoint = aEndPoint; } + EMFPPlusDrawPolygon(::basegfx::B2DPolyPolygon(aPolygon), flags & 0xff); break; } case EmfPlusRecordTypeDrawClosedCurve: diff -Nru libreoffice-7.4.6/embeddedobj/source/commonembedding/embedobj.cxx libreoffice-7.4.7/embeddedobj/source/commonembedding/embedobj.cxx --- libreoffice-7.4.6/embeddedobj/source/commonembedding/embedobj.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/embeddedobj/source/commonembedding/embedobj.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -216,6 +216,37 @@ rGuard.reset(); } +void OCommonEmbeddedObject::SetInplaceActiveState() +{ + if ( !m_xClientSite.is() ) + throw embed::WrongStateException( "client site not set, yet", *this ); + + uno::Reference< embed::XInplaceClient > xInplaceClient( m_xClientSite, uno::UNO_QUERY ); + if ( !xInplaceClient.is() || !xInplaceClient->canInplaceActivate() ) + throw embed::WrongStateException(); //TODO: can't activate inplace + xInplaceClient->activatingInplace(); + + uno::Reference< embed::XWindowSupplier > xClientWindowSupplier( xInplaceClient, uno::UNO_QUERY_THROW ); + + m_xClientWindow = xClientWindowSupplier->getWindow(); + m_aOwnRectangle = xInplaceClient->getPlacement(); + m_aClipRectangle = xInplaceClient->getClipRectangle(); + awt::Rectangle aRectangleToShow = GetRectangleInterception( m_aOwnRectangle, m_aClipRectangle ); + + // create own window based on the client window + // place and resize the window according to the rectangles + uno::Reference< awt::XWindowPeer > xClientWindowPeer( m_xClientWindow, uno::UNO_QUERY_THROW ); + + // dispatch provider may not be provided + uno::Reference< frame::XDispatchProvider > xContainerDP = xInplaceClient->getInplaceDispatchProvider(); + bool bOk = m_xDocHolder->ShowInplace( xClientWindowPeer, aRectangleToShow, xContainerDP ); + m_nObjectState = embed::EmbedStates::INPLACE_ACTIVE; + if ( !bOk ) + { + SwitchStateTo_Impl( embed::EmbedStates::RUNNING ); + throw embed::WrongStateException(); //TODO: can't activate inplace + } +} void OCommonEmbeddedObject::SwitchStateTo_Impl( sal_Int32 nNextState ) { @@ -289,34 +320,7 @@ { if ( nNextState == embed::EmbedStates::INPLACE_ACTIVE ) { - if ( !m_xClientSite.is() ) - throw embed::WrongStateException( "client site not set, yet", *this ); - - uno::Reference< embed::XInplaceClient > xInplaceClient( m_xClientSite, uno::UNO_QUERY ); - if ( !xInplaceClient.is() || !xInplaceClient->canInplaceActivate() ) - throw embed::WrongStateException(); //TODO: can't activate inplace - xInplaceClient->activatingInplace(); - - uno::Reference< embed::XWindowSupplier > xClientWindowSupplier( xInplaceClient, uno::UNO_QUERY_THROW ); - - m_xClientWindow = xClientWindowSupplier->getWindow(); - m_aOwnRectangle = xInplaceClient->getPlacement(); - m_aClipRectangle = xInplaceClient->getClipRectangle(); - awt::Rectangle aRectangleToShow = GetRectangleInterception( m_aOwnRectangle, m_aClipRectangle ); - - // create own window based on the client window - // place and resize the window according to the rectangles - uno::Reference< awt::XWindowPeer > xClientWindowPeer( m_xClientWindow, uno::UNO_QUERY_THROW ); - - // dispatch provider may not be provided - uno::Reference< frame::XDispatchProvider > xContainerDP = xInplaceClient->getInplaceDispatchProvider(); - bool bOk = m_xDocHolder->ShowInplace( xClientWindowPeer, aRectangleToShow, xContainerDP ); - m_nObjectState = nNextState; - if ( !bOk ) - { - SwitchStateTo_Impl( embed::EmbedStates::RUNNING ); - throw embed::WrongStateException(); //TODO: can't activate inplace - } + SetInplaceActiveState(); } else if ( nNextState == embed::EmbedStates::ACTIVE ) { diff -Nru libreoffice-7.4.6/embeddedobj/source/commonembedding/specialobject.cxx libreoffice-7.4.7/embeddedobj/source/commonembedding/specialobject.cxx --- libreoffice-7.4.6/embeddedobj/source/commonembedding/specialobject.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/embeddedobj/source/commonembedding/specialobject.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -48,6 +48,7 @@ uno::Any aReturn = ::cppu::queryInterface( rType, static_cast< embed::XEmbeddedObject* >( this ), static_cast< embed::XInplaceObject* >( this ), + static_cast< embed::XCommonEmbedPersist* >( static_cast< embed::XEmbedPersist* >( this ) ), static_cast< embed::XVisualObject* >( this ), static_cast< embed::XClassifiedObject* >( this ), static_cast< embed::XComponentSupplier* >( this ), @@ -163,6 +164,14 @@ OCommonEmbeddedObject::doVerb( nVerbID ); } +void SAL_CALL OSpecialEmbeddedObject::reload( + const uno::Sequence< beans::PropertyValue >&, + const uno::Sequence< beans::PropertyValue >&) +{ + // Allow IFrames to reload their content + SetInplaceActiveState(); +} + OUString SAL_CALL OSpecialEmbeddedObject::getImplementationName() { return "com.sun.star.comp.embed.OSpecialEmbeddedObject"; diff -Nru libreoffice-7.4.6/embeddedobj/source/inc/commonembobj.hxx libreoffice-7.4.7/embeddedobj/source/inc/commonembobj.hxx --- libreoffice-7.4.6/embeddedobj/source/inc/commonembobj.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/embeddedobj/source/inc/commonembobj.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -251,6 +251,9 @@ const css::uno::Sequence< css::beans::PropertyValue >& lArguments, const css::uno::Sequence< css::beans::PropertyValue >& lObjArgs ); +protected: + void SetInplaceActiveState(); + public: OCommonEmbeddedObject( const css::uno::Reference< css::uno::XComponentContext >& rxContext, diff -Nru libreoffice-7.4.6/embeddedobj/source/inc/specialobject.hxx libreoffice-7.4.7/embeddedobj/source/inc/specialobject.hxx --- libreoffice-7.4.6/embeddedobj/source/inc/specialobject.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/embeddedobj/source/inc/specialobject.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -48,6 +48,12 @@ virtual void SAL_CALL doVerb( sal_Int32 nVerbID ) override; +// XCommonEmbedPersist + + virtual void SAL_CALL reload( + const css::uno::Sequence< css::beans::PropertyValue >& lArguments, + const css::uno::Sequence< css::beans::PropertyValue >& lObjArgs ) override; + // XServiceInfo OUString SAL_CALL getImplementationName() override; sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override; Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/emfio/qa/cppunit/emf/data/TestEmfPlusDrawBeziers.emf and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/emfio/qa/cppunit/emf/data/TestEmfPlusDrawBeziers.emf differ diff -Nru libreoffice-7.4.6/emfio/qa/cppunit/emf/EmfImportTest.cxx libreoffice-7.4.7/emfio/qa/cppunit/emf/EmfImportTest.cxx --- libreoffice-7.4.6/emfio/qa/cppunit/emf/EmfImportTest.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/emfio/qa/cppunit/emf/EmfImportTest.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -50,6 +50,7 @@ void TestDrawStringAlign(); void TestDrawStringTransparent(); void TestDrawStringWithBrush(); + void TestEmfPlusDrawBeziers(); void TestDrawLine(); void TestDrawLineWithCaps(); void TestDrawLineWithDash(); @@ -102,6 +103,7 @@ CPPUNIT_TEST(TestDrawStringAlign); CPPUNIT_TEST(TestDrawStringTransparent); CPPUNIT_TEST(TestDrawStringWithBrush); + CPPUNIT_TEST(TestEmfPlusDrawBeziers); CPPUNIT_TEST(TestDrawLine); CPPUNIT_TEST(TestDrawLineWithCaps); CPPUNIT_TEST(TestDrawLineWithDash); @@ -386,6 +388,34 @@ "TIMES NEW ROMAN"); } +void Test::TestEmfPlusDrawBeziers() +{ + // tdf#107019 tdf#154789 EMF+ records: DrawBeziers + // Check if DrawBeziers is displayed correctly and text is rotated + Primitive2DSequence aSequence + = parseEmf(u"emfio/qa/cppunit/emf/data/TestEmfPlusDrawBeziers.emf"); + CPPUNIT_ASSERT_EQUAL(1, static_cast(aSequence.getLength())); + drawinglayer::Primitive2dXmlDump dumper; + xmlDocUniquePtr pDocument = dumper.dumpAndParse(Primitive2DContainer(aSequence)); + CPPUNIT_ASSERT(pDocument); + + assertXPath(pDocument, aXPathPrefix + "polypolygoncolor", 4); + assertXPath(pDocument, aXPathPrefix + "polypolygoncolor[1]", "color", "#000000"); + + assertXPath(pDocument, aXPathPrefix + "polygonstrokearrow", 9); + assertXPath(pDocument, aXPathPrefix + "polygonstrokearrow[9]/line", "color", "#00ff00"); + + assertXPath(pDocument, aXPathPrefix + "transform", 5); + assertXPath(pDocument, aXPathPrefix + "transform[1]/textsimpleportion", "fontcolor", "#000000"); + assertXPath(pDocument, aXPathPrefix + "transform[1]/textsimpleportion", "text", "% Efficiency"); + assertXPath(pDocument, aXPathPrefix + "transform[1]", "xy11", "0"); + assertXPath(pDocument, aXPathPrefix + "transform[1]", "xy12", "4"); + assertXPath(pDocument, aXPathPrefix + "transform[1]", "xy13", "800"); + assertXPath(pDocument, aXPathPrefix + "transform[1]", "xy21", "-4"); + assertXPath(pDocument, aXPathPrefix + "transform[1]", "xy22", "0"); + assertXPath(pDocument, aXPathPrefix + "transform[1]", "xy23", "3195"); +} + void Test::TestDrawLine() { // EMF+ with records: DrawLine diff -Nru libreoffice-7.4.6/external/harfbuzz/62e803b36173fd096d7ad460dd1d1db9be542593.patch.1 libreoffice-7.4.7/external/harfbuzz/62e803b36173fd096d7ad460dd1d1db9be542593.patch.1 --- libreoffice-7.4.6/external/harfbuzz/62e803b36173fd096d7ad460dd1d1db9be542593.patch.1 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/external/harfbuzz/62e803b36173fd096d7ad460dd1d1db9be542593.patch.1 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -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.4.6/external/harfbuzz/negativeadvance.patch libreoffice-7.4.7/external/harfbuzz/negativeadvance.patch --- libreoffice-7.4.6/external/harfbuzz/negativeadvance.patch 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/external/harfbuzz/negativeadvance.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- src/hb-graphite2.cc -+++ src/hb-graphite2.cc -@@ -223,7 +223,7 @@ - unsigned int base_glyph; - unsigned int num_glyphs; - unsigned int cluster; -- unsigned int advance; -+ int advance; - }; - - hb_bool_t diff -Nru libreoffice-7.4.6/external/harfbuzz/README libreoffice-7.4.7/external/harfbuzz/README --- libreoffice-7.4.6/external/harfbuzz/README 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/external/harfbuzz/README 2023-05-03 15:22:13.000000000 +0000 @@ -1 +1 @@ -HarfBuzz is an OpenType text shaping engine. From [http://harfbuzz.org/]. +HarfBuzz is an OpenType text shaping engine. From [https://harfbuzz.github.io/]. diff -Nru libreoffice-7.4.6/external/harfbuzz/UnpackedTarball_harfbuzz.mk libreoffice-7.4.7/external/harfbuzz/UnpackedTarball_harfbuzz.mk --- libreoffice-7.4.6/external/harfbuzz/UnpackedTarball_harfbuzz.mk 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/external/harfbuzz/UnpackedTarball_harfbuzz.mk 2023-05-03 15:22:13.000000000 +0000 @@ -15,12 +15,7 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,harfbuzz,0)) -# * external/harfbuzz/negativeadvance.patch sent upstram as -# "hb_graphite2_cluster_t::advance can apparently -# 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.4.6/external/openssl/0001-x509-excessive-resource-use-verifying-policy-constra.patch.1 libreoffice-7.4.7/external/openssl/0001-x509-excessive-resource-use-verifying-policy-constra.patch.1 --- libreoffice-7.4.6/external/openssl/0001-x509-excessive-resource-use-verifying-policy-constra.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/external/openssl/0001-x509-excessive-resource-use-verifying-policy-constra.patch.1 2023-05-03 15:22:13.000000000 +0000 @@ -0,0 +1,222 @@ +From 879f7080d7e141f415c79eaa3a8ac4a3dad0348b Mon Sep 17 00:00:00 2001 +From: Pauli +Date: Wed, 8 Mar 2023 15:28:20 +1100 +Subject: [PATCH] x509: excessive resource use verifying policy constraints + +A security vulnerability has been identified in all supported versions +of OpenSSL related to the verification of X.509 certificate chains +that include policy constraints. Attackers may be able to exploit this +vulnerability by creating a malicious certificate chain that triggers +exponential use of computational resources, leading to a denial-of-service +(DoS) attack on affected systems. + +Fixes CVE-2023-0464 + +Reviewed-by: Tomas Mraz +Reviewed-by: Shane Lontis +(Merged from https://github.com/openssl/openssl/pull/20569) +--- + crypto/x509v3/pcy_local.h | 8 +++++++- + crypto/x509v3/pcy_node.c | 12 +++++++++--- + crypto/x509v3/pcy_tree.c | 37 +++++++++++++++++++++++++++---------- + 3 files changed, 43 insertions(+), 14 deletions(-) + +diff --git a/crypto/x509v3/pcy_local.h b/crypto/x509v3/pcy_local.h +index 5daf78de45..344aa06765 100644 +--- a/crypto/x509v3/pcy_local.h ++++ b/crypto/x509v3/pcy_local.h +@@ -111,6 +111,11 @@ struct X509_POLICY_LEVEL_st { + }; + + struct X509_POLICY_TREE_st { ++ /* The number of nodes in the tree */ ++ size_t node_count; ++ /* The maximum number of nodes in the tree */ ++ size_t node_maximum; ++ + /* This is the tree 'level' data */ + X509_POLICY_LEVEL *levels; + int nlevel; +@@ -159,7 +164,8 @@ X509_POLICY_NODE *tree_find_sk(STACK_OF(X509_POLICY_NODE) *sk, + X509_POLICY_NODE *level_add_node(X509_POLICY_LEVEL *level, + X509_POLICY_DATA *data, + X509_POLICY_NODE *parent, +- X509_POLICY_TREE *tree); ++ X509_POLICY_TREE *tree, ++ int extra_data); + void policy_node_free(X509_POLICY_NODE *node); + int policy_node_match(const X509_POLICY_LEVEL *lvl, + const X509_POLICY_NODE *node, const ASN1_OBJECT *oid); +diff --git a/crypto/x509v3/pcy_node.c b/crypto/x509v3/pcy_node.c +index e2d7b15322..d574fb9d66 100644 +--- a/crypto/x509v3/pcy_node.c ++++ b/crypto/x509v3/pcy_node.c +@@ -59,10 +59,15 @@ X509_POLICY_NODE *level_find_node(const X509_POLICY_LEVEL *level, + X509_POLICY_NODE *level_add_node(X509_POLICY_LEVEL *level, + X509_POLICY_DATA *data, + X509_POLICY_NODE *parent, +- X509_POLICY_TREE *tree) ++ X509_POLICY_TREE *tree, ++ int extra_data) + { + X509_POLICY_NODE *node; + ++ /* Verify that the tree isn't too large. This mitigates CVE-2023-0464 */ ++ if (tree->node_maximum > 0 && tree->node_count >= tree->node_maximum) ++ return NULL; ++ + node = OPENSSL_zalloc(sizeof(*node)); + if (node == NULL) { + X509V3err(X509V3_F_LEVEL_ADD_NODE, ERR_R_MALLOC_FAILURE); +@@ -70,7 +75,7 @@ X509_POLICY_NODE *level_add_node(X509_POLICY_LEVEL *level, + } + node->data = data; + node->parent = parent; +- if (level) { ++ if (level != NULL) { + if (OBJ_obj2nid(data->valid_policy) == NID_any_policy) { + if (level->anyPolicy) + goto node_error; +@@ -90,7 +95,7 @@ X509_POLICY_NODE *level_add_node(X509_POLICY_LEVEL *level, + } + } + +- if (tree) { ++ if (extra_data) { + if (tree->extra_data == NULL) + tree->extra_data = sk_X509_POLICY_DATA_new_null(); + if (tree->extra_data == NULL){ +@@ -103,6 +108,7 @@ X509_POLICY_NODE *level_add_node(X509_POLICY_LEVEL *level, + } + } + ++ tree->node_count++; + if (parent) + parent->nchild++; + +diff --git a/crypto/x509v3/pcy_tree.c b/crypto/x509v3/pcy_tree.c +index 6e8322cbc5..6c7fd35405 100644 +--- a/crypto/x509v3/pcy_tree.c ++++ b/crypto/x509v3/pcy_tree.c +@@ -13,6 +13,18 @@ + + #include "pcy_local.h" + ++/* ++ * If the maximum number of nodes in the policy tree isn't defined, set it to ++ * a generous default of 1000 nodes. ++ * ++ * Defining this to be zero means unlimited policy tree growth which opens the ++ * door on CVE-2023-0464. ++ */ ++ ++#ifndef OPENSSL_POLICY_TREE_NODES_MAX ++# define OPENSSL_POLICY_TREE_NODES_MAX 1000 ++#endif ++ + /* + * Enable this to print out the complete policy tree at various point during + * evaluation. +@@ -168,6 +180,9 @@ static int tree_init(X509_POLICY_TREE **ptree, STACK_OF(X509) *certs, + return X509_PCY_TREE_INTERNAL; + } + ++ /* Limit the growth of the tree to mitigate CVE-2023-0464 */ ++ tree->node_maximum = OPENSSL_POLICY_TREE_NODES_MAX; ++ + /* + * http://tools.ietf.org/html/rfc5280#section-6.1.2, figure 3. + * +@@ -184,7 +199,7 @@ static int tree_init(X509_POLICY_TREE **ptree, STACK_OF(X509) *certs, + level = tree->levels; + if ((data = policy_data_new(NULL, OBJ_nid2obj(NID_any_policy), 0)) == NULL) + goto bad_tree; +- if (level_add_node(level, data, NULL, tree) == NULL) { ++ if (level_add_node(level, data, NULL, tree, 1) == NULL) { + policy_data_free(data); + goto bad_tree; + } +@@ -243,7 +258,8 @@ static int tree_init(X509_POLICY_TREE **ptree, STACK_OF(X509) *certs, + * Return value: 1 on success, 0 otherwise + */ + static int tree_link_matching_nodes(X509_POLICY_LEVEL *curr, +- X509_POLICY_DATA *data) ++ X509_POLICY_DATA *data, ++ X509_POLICY_TREE *tree) + { + X509_POLICY_LEVEL *last = curr - 1; + int i, matched = 0; +@@ -253,13 +269,13 @@ static int tree_link_matching_nodes(X509_POLICY_LEVEL *curr, + X509_POLICY_NODE *node = sk_X509_POLICY_NODE_value(last->nodes, i); + + if (policy_node_match(last, node, data->valid_policy)) { +- if (level_add_node(curr, data, node, NULL) == NULL) ++ if (level_add_node(curr, data, node, tree, 0) == NULL) + return 0; + matched = 1; + } + } + if (!matched && last->anyPolicy) { +- if (level_add_node(curr, data, last->anyPolicy, NULL) == NULL) ++ if (level_add_node(curr, data, last->anyPolicy, tree, 0) == NULL) + return 0; + } + return 1; +@@ -272,7 +288,8 @@ static int tree_link_matching_nodes(X509_POLICY_LEVEL *curr, + * Return value: 1 on success, 0 otherwise. + */ + static int tree_link_nodes(X509_POLICY_LEVEL *curr, +- const X509_POLICY_CACHE *cache) ++ const X509_POLICY_CACHE *cache, ++ X509_POLICY_TREE *tree) + { + int i; + +@@ -280,7 +297,7 @@ static int tree_link_nodes(X509_POLICY_LEVEL *curr, + X509_POLICY_DATA *data = sk_X509_POLICY_DATA_value(cache->data, i); + + /* Look for matching nodes in previous level */ +- if (!tree_link_matching_nodes(curr, data)) ++ if (!tree_link_matching_nodes(curr, data, tree)) + return 0; + } + return 1; +@@ -311,7 +328,7 @@ static int tree_add_unmatched(X509_POLICY_LEVEL *curr, + /* Curr may not have anyPolicy */ + data->qualifier_set = cache->anyPolicy->qualifier_set; + data->flags |= POLICY_DATA_FLAG_SHARED_QUALIFIERS; +- if (level_add_node(curr, data, node, tree) == NULL) { ++ if (level_add_node(curr, data, node, tree, 1) == NULL) { + policy_data_free(data); + return 0; + } +@@ -373,7 +390,7 @@ static int tree_link_any(X509_POLICY_LEVEL *curr, + } + /* Finally add link to anyPolicy */ + if (last->anyPolicy && +- level_add_node(curr, cache->anyPolicy, last->anyPolicy, NULL) == NULL) ++ level_add_node(curr, cache->anyPolicy, last->anyPolicy, tree, 0) == NULL) + return 0; + return 1; + } +@@ -555,7 +572,7 @@ static int tree_calculate_user_set(X509_POLICY_TREE *tree, + extra->qualifier_set = anyPolicy->data->qualifier_set; + extra->flags = POLICY_DATA_FLAG_SHARED_QUALIFIERS + | POLICY_DATA_FLAG_EXTRA_NODE; +- node = level_add_node(NULL, extra, anyPolicy->parent, tree); ++ node = level_add_node(NULL, extra, anyPolicy->parent, tree, 1); + } + if (!tree->user_policies) { + tree->user_policies = sk_X509_POLICY_NODE_new_null(); +@@ -582,7 +599,7 @@ static int tree_evaluate(X509_POLICY_TREE *tree) + + for (i = 1; i < tree->nlevel; i++, curr++) { + cache = policy_cache_set(curr->cert); +- if (!tree_link_nodes(curr, cache)) ++ if (!tree_link_nodes(curr, cache, tree)) + return X509_PCY_TREE_INTERNAL; + + if (!(curr->flags & X509_V_FLAG_INHIBIT_ANY) +-- +2.34.1 + diff -Nru libreoffice-7.4.6/external/openssl/UnpackedTarball_openssl.mk libreoffice-7.4.7/external/openssl/UnpackedTarball_openssl.mk --- libreoffice-7.4.6/external/openssl/UnpackedTarball_openssl.mk 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/external/openssl/UnpackedTarball_openssl.mk 2023-05-03 15:22:13.000000000 +0000 @@ -12,6 +12,7 @@ $(eval $(call gb_UnpackedTarball_set_tarball,openssl,$(OPENSSL_TARBALL),,openssl)) $(eval $(call gb_UnpackedTarball_add_patches,openssl,\ + external/openssl/0001-x509-excessive-resource-use-verifying-policy-constra.patch.1 \ external/openssl/openssl-no-multilib.patch.0 \ external/openssl/configurable-z-option.patch.0 \ external/openssl/openssl-no-_umul128-on-aarch64.patch.1 \ diff -Nru libreoffice-7.4.6/external/poppler/poppler-config.patch.1 libreoffice-7.4.7/external/poppler/poppler-config.patch.1 --- libreoffice-7.4.6/external/poppler/poppler-config.patch.1 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/external/poppler/poppler-config.patch.1 2023-05-03 15:22:13.000000000 +0000 @@ -173,7 +173,7 @@ +#define PACKAGE_NAME "poppler" + +/* Define to the full name and version of this package. */ -+#define PACKAGE_STRING "poppler 22.09.0" ++#define PACKAGE_STRING "poppler 22.12.0" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "poppler" @@ -182,7 +182,7 @@ +#define PACKAGE_URL "" + +/* Define to the version of this package. */ -+#define PACKAGE_VERSION "22.09.0" ++#define PACKAGE_VERSION "22.12.0" + +/* Poppler data dir */ +#define POPPLER_DATADIR "/usr/local/share/poppler" @@ -200,7 +200,7 @@ +/* #undef USE_FLOAT */ + +/* Version number of package */ -+#define VERSION "22.09.0" ++#define VERSION "22.12.0" + +#if defined(__APPLE__) +#elif defined (_WIN32) @@ -281,7 +281,7 @@ + +/* Defines the poppler version. */ +#ifndef POPPLER_VERSION -+#define POPPLER_VERSION "22.09.0" ++#define POPPLER_VERSION "22.12.0" +#endif + +/* Use single precision arithmetic in the Splash backend */ @@ -433,9 +433,9 @@ + +#include "poppler-global.h" + -+#define POPPLER_VERSION "22.09.0" ++#define POPPLER_VERSION "22.12.0" +#define POPPLER_VERSION_MAJOR 22 -+#define POPPLER_VERSION_MINOR 9 ++#define POPPLER_VERSION_MINOR 12 +#define POPPLER_VERSION_MICRO 0 + +namespace poppler diff -Nru libreoffice-7.4.6/forms/source/xforms/convert.cxx libreoffice-7.4.7/forms/source/xforms/convert.cxx --- libreoffice-7.4.6/forms/source/xforms/convert.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/forms/source/xforms/convert.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -21,6 +21,7 @@ #include "convert.hxx" #include +#include #include #include #include @@ -50,6 +51,36 @@ Any lcl_toAny_OUString( const OUString& rStr ) { return Any(rStr); } + OUString lcl_toXSD_bool( const Any& rAny ) + { bool b = false; rAny >>= b; return b ? OUString("true") : OUString("false"); } + + Any lcl_toAny_bool( const OUString& rStr ) + { + bool b = ( rStr == "true" || rStr == "1" ); + return Any( b ); + } + + OUString lcl_toXSD_double( const Any& rAny ) + { + double f = 0.0; + rAny >>= f; + + return std::isfinite( f ) + ? rtl::math::doubleToUString( f, rtl_math_StringFormat_Automatic, + rtl_math_DecimalPlaces_Max, '.', + true ) + : OUString(); + } + + + Any lcl_toAny_double( const OUString& rString ) + { + rtl_math_ConversionStatus eStatus; + double f = rtl::math::stringToDouble( + rString, '.', ',', &eStatus ); + return ( eStatus == rtl_math_ConversionStatus_Ok ) ? Any( f ) : Any(); + } + void lcl_appendInt32ToBuffer( const sal_Int32 _nValue, OUStringBuffer& _rBuffer, sal_Int16 _nMinDigits ) { if ( ( _nMinDigits >= 4 ) && ( _nValue < 1000 ) ) @@ -231,6 +262,8 @@ void Convert::init() { maMap[ cppu::UnoType::get() ] = Convert_t(&lcl_toXSD_OUString, &lcl_toAny_OUString); + maMap[ cppu::UnoType::get() ] = Convert_t(&lcl_toXSD_bool, &lcl_toAny_bool); + maMap[ cppu::UnoType::get() ] = Convert_t(&lcl_toXSD_double, &lcl_toAny_double); maMap[ cppu::UnoType::get() ] = Convert_t( &lcl_toXSD_UNODate, &lcl_toAny_UNODate ); maMap[ cppu::UnoType::get() ] = Convert_t( &lcl_toXSD_UNOTime, &lcl_toAny_UNOTime ); maMap[ cppu::UnoType::get() ] = Convert_t( &lcl_toXSD_UNODateTime, &lcl_toAny_UNODateTime ); diff -Nru libreoffice-7.4.6/formula/source/ui/dlg/formula.cxx libreoffice-7.4.7/formula/source/ui/dlg/formula.cxx --- libreoffice-7.4.6/formula/source/ui/dlg/formula.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/formula/source/ui/dlg/formula.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1456,15 +1456,23 @@ void FormulaDlg_Impl::UpdateSelection() { m_pHelper->setSelection( m_aFuncSel.Min(), m_aFuncSel.Max()); - m_pHelper->setCurrentFormula( m_pFuncDesc->getFormula( m_aArguments ) ); + if (m_pFuncDesc) + { + m_pHelper->setCurrentFormula( m_pFuncDesc->getFormula( m_aArguments ) ); + m_nArgs = m_pFuncDesc->getSuppressedArgumentCount(); + } + else + { + m_pHelper->setCurrentFormula(""); + m_nArgs = 0; + } + m_xMEdit->set_text(m_pHelper->getCurrentFormula()); sal_Int32 PrivStart, PrivEnd; m_pHelper->getSelection( PrivStart, PrivEnd); m_aFuncSel.Min() = PrivStart; m_aFuncSel.Max() = PrivEnd; - m_nArgs = m_pFuncDesc->getSuppressedArgumentCount(); - OUString aFormula = m_xMEdit->get_text(); sal_Int32 nArgPos = m_aFormulaHelper.GetArgStart( aFormula, PrivStart, 0); diff -Nru libreoffice-7.4.6/framework/source/accelerators/acceleratorconfiguration.cxx libreoffice-7.4.7/framework/source/accelerators/acceleratorconfiguration.cxx --- libreoffice-7.4.6/framework/source/accelerators/acceleratorconfiguration.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/framework/source/accelerators/acceleratorconfiguration.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -64,7 +64,10 @@ static OUString lcl_getKeyString(const css::awt::KeyEvent& aKeyEvent) { const sal_Int32 nBeginIndex = 4; // "KEY_" is the prefix of an identifier... - OUStringBuffer sKeyBuffer((KeyMapping::get().mapCodeToIdentifier(aKeyEvent.KeyCode)).subView(nBeginIndex)); + OUString sKey(KeyMapping::get().mapCodeToIdentifier(aKeyEvent.KeyCode)); + if (sKey.getLength() < nBeginIndex) // dead key + return OUString(); + OUStringBuffer sKeyBuffer(sKey.subView(nBeginIndex)); if ( (aKeyEvent.Modifiers & css::awt::KeyModifier::SHIFT) == css::awt::KeyModifier::SHIFT ) sKeyBuffer.append("_SHIFT"); diff -Nru libreoffice-7.4.6/.gitreview libreoffice-7.4.7/.gitreview --- libreoffice-7.4.6/.gitreview 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/.gitreview 2023-05-03 15:22:13.000000000 +0000 @@ -3,5 +3,5 @@ port=29418 project=core defaultremote=logerrit -defaultbranch=libreoffice-7-4-6 +defaultbranch=libreoffice-7-4-7 diff -Nru libreoffice-7.4.6/helpcontent2/source/text/shared/autopi/01170000.xhp libreoffice-7.4.7/helpcontent2/source/text/shared/autopi/01170000.xhp --- libreoffice-7.4.6/helpcontent2/source/text/shared/autopi/01170000.xhp 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/helpcontent2/source/text/shared/autopi/01170000.xhp 2023-05-03 15:22:13.000000000 +0000 @@ -30,6 +30,7 @@ +

Address Data Source

This wizard registers an existing address book as a data source in $[officename]. @@ -42,25 +43,25 @@

Please select the type of your external address book

Not all types are available on all systems. -Thunderbird +

Thunderbird

Select this option if you already use an address book in Thunderbird or Icedove. -KDE Address book +

KDE Address book

Select this option if you already use an address book in KDE Address book. -macOS Address book +

macOS Address book

Select this option if you already use an address book in macOS Address book. -Evolution +

Evolution

Select this option if you already use an address book in Evolution. -Evolution LDAP +

Evolution LDAP

Select this option if you already use an address book in Evolution LDAP. -Groupwise +

Groupwise

Select this option if you already use an address book in Groupwise. -Other external data source +

Other external data source

Select this option if you want to register another data source as address book in $[officename].

Cancel

@@ -70,7 +71,7 @@ Go to next step. -Create +

Create

Establishes the connection to the data source and closes the dialog. diff -Nru libreoffice-7.4.6/i18npool/CppunitTest_i18npool_transliteration.mk libreoffice-7.4.7/i18npool/CppunitTest_i18npool_transliteration.mk --- libreoffice-7.4.6/i18npool/CppunitTest_i18npool_transliteration.mk 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/i18npool/CppunitTest_i18npool_transliteration.mk 2023-05-03 15:22:13.000000000 +0000 @@ -0,0 +1,30 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t; fill-column: 100 -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_CppunitTest_CppunitTest,i18npool_transliteration)) + +$(eval $(call gb_CppunitTest_add_exception_objects,i18npool_transliteration, \ + i18npool/qa/cppunit/transliteration \ +)) + +$(eval $(call gb_CppunitTest_use_components,i18npool_transliteration, \ + i18npool/util/i18npool \ +))\ + +$(eval $(call gb_CppunitTest_use_libraries,i18npool_transliteration, \ + cppu \ + cppuhelper \ + sal \ +)) + +$(eval $(call gb_CppunitTest_use_sdk_api,i18npool_transliteration)) + +$(eval $(call gb_CppunitTest_use_ure,i18npool_transliteration)) + +# vim: set noet sw=4 ts=4: diff -Nru libreoffice-7.4.6/i18npool/Module_i18npool.mk libreoffice-7.4.7/i18npool/Module_i18npool.mk --- libreoffice-7.4.6/i18npool/Module_i18npool.mk 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/i18npool/Module_i18npool.mk 2023-05-03 15:22:13.000000000 +0000 @@ -45,6 +45,7 @@ CppunitTest_i18npool_textsearch \ CppunitTest_i18npool_calendar \ CppunitTest_i18npool_defaultnumberingprovider \ + CppunitTest_i18npool_transliteration \ )) # vim: set noet sw=4 ts=4: diff -Nru libreoffice-7.4.6/i18npool/qa/cppunit/transliteration.cxx libreoffice-7.4.7/i18npool/qa/cppunit/transliteration.cxx --- libreoffice-7.4.6/i18npool/qa/cppunit/transliteration.cxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/i18npool/qa/cppunit/transliteration.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -0,0 +1,122 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#include + +#include +#include +#include + +#include +#include +#include + +namespace +{ +class Transliteration : public CppUnit::TestFixture +{ +public: + void testLoadModuleNew() + { + auto const trans + = css::i18n::Transliteration::create(cppu::defaultBootstrap_InitialComponentContext()); + // Verify that loading succeeds without throwing an exception, for each possible + // TransliterationModulesNew value (TODO: there is an upper limit of maxCascade 27 in + // i18npool/inc/transliterationImpl.hxx for the length of the passed + // TransliterationModulesNew value, so pass each one individually rather than all 65 at + // once): + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_UPPERCASE_LOWERCASE }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_LOWERCASE_UPPERCASE }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_HALFWIDTH_FULLWIDTH }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_FULLWIDTH_HALFWIDTH }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_KATAKANA_HIRAGANA }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_HIRAGANA_KATAKANA }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IGNORE_CASE }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IGNORE_KANA }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IGNORE_WIDTH }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreTraditionalKanji_ja_JP }, + {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreTraditionalKana_ja_JP }, + {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreMinusSign_ja_JP }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreIterationMark_ja_JP }, + {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreSeparator_ja_JP }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreZiZu_ja_JP }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreBaFa_ja_JP }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreTiJi_ja_JP }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreHyuByu_ja_JP }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreSeZe_ja_JP }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreIandEfollowedByYa_ja_JP }, + {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreKiKuFollowedBySa_ja_JP }, + {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreSize_ja_JP }, {}); + trans->loadModuleNew( + { css::i18n::TransliterationModulesNew_IgnoreProlongedSoundMark_ja_JP }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreMiddleDot_ja_JP }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_IgnoreSpace_ja_JP }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_SmallToLarge_ja_JP }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_LargeToSmall_ja_JP }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToTextLower_zh_CN }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToTextUpper_zh_CN }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToTextLower_zh_TW }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToTextUpper_zh_TW }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToTextFormalHangul_ko }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToTextFormalLower_ko }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToTextFormalUpper_ko }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToTextInformalHangul_ko }, + {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToTextInformalLower_ko }, + {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToTextInformalUpper_ko }, + {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToCharLower_zh_CN }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToCharUpper_zh_CN }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToCharLower_zh_TW }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToCharUpper_zh_TW }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToCharHangul_ko }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToCharLower_ko }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToCharUpper_ko }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToCharFullwidth }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_NumToCharKanjiShort_ja_JP }, + {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_TextToNumLower_zh_CN }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_TextToNumUpper_zh_CN }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_TextToNumLower_zh_TW }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_TextToNumUpper_zh_TW }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_TextToNumFormalHangul_ko }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_TextToNumFormalLower_ko }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_TextToNumFormalUpper_ko }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_TextToNumInformalHangul_ko }, + {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_TextToNumInformalLower_ko }, + {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_TextToNumInformalUpper_ko }, + {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_CharToNumLower_zh_CN }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_CharToNumUpper_zh_CN }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_CharToNumLower_zh_TW }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_CharToNumUpper_zh_TW }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_CharToNumHangul_ko }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_CharToNumLower_ko }, {}); + trans->loadModuleNew({ css::i18n::TransliterationModulesNew_CharToNumUpper_ko }, {}); + } + + CPPUNIT_TEST_SUITE(Transliteration); + CPPUNIT_TEST(testLoadModuleNew); + CPPUNIT_TEST_SUITE_END(); +}; + +CPPUNIT_TEST_SUITE_REGISTRATION(Transliteration); +} + +CPPUNIT_PLUGIN_IMPLEMENT(); + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ diff -Nru libreoffice-7.4.6/i18npool/source/transliteration/transliterationImpl.cxx libreoffice-7.4.7/i18npool/source/transliteration/transliterationImpl.cxx --- libreoffice-7.4.6/i18npool/source/transliteration/transliterationImpl.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/i18npool/source/transliteration/transliterationImpl.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -65,22 +65,44 @@ // No enum define for this trans. application has to use impl name to load it // TmItem1 (IGNORE_CASE_SIMPLE), // (1<<11 1024) (66) - TmItem1 (IgnoreTraditionalKanji_ja_JP), // 3. (1<<12 4096) (10) - TmItem1 (IgnoreTraditionalKana_ja_JP), // 4. (1<<13 8192) (11) - TmItem1 (IgnoreMinusSign_ja_JP), // 5. (1<<13 16384) (12) - TmItem1 (IgnoreIterationMark_ja_JP), // 6. (1<<14 32768) (13) - TmItem1 (IgnoreSeparator_ja_JP), // 7. (1<<15 65536) (14) - TmItem1 (IgnoreSize_ja_JP), // 15. (1<<23 16777216) (22) - TmItem1 (IgnoreMiddleDot_ja_JP), // 17. (1<<25 67108864) (24) - TmItem1 (IgnoreSpace_ja_JP), // 18. (1<<26 134217728) (25) - TmItem1 (IgnoreZiZu_ja_JP), // 8. (1<<16 131072) (15) - TmItem1 (IgnoreBaFa_ja_JP), // 9. (1<<17 262144) (16) - TmItem1 (IgnoreTiJi_ja_JP), // 10. (1<<18 524288) (17) - TmItem1 (IgnoreHyuByu_ja_JP), // 11. (1<<19 1048576) (18) - TmItem1 (IgnoreSeZe_ja_JP), // 12. (1<<20 2097152) (19) - TmItem1 (IgnoreIandEfollowedByYa_ja_JP), // 13. (1<<21 4194304) (20) - TmItem1 (IgnoreKiKuFollowedBySa_ja_JP), // 14. (1<<22 8388608) (21) - TmItem1 (IgnoreProlongedSoundMark_ja_JP), // 16. (1<<24 33554432) (23) + {TransliterationModules_IgnoreTraditionalKanji_ja_JP, + TransliterationModulesNew_IgnoreTraditionalKanji_ja_JP, "ignoreTraditionalKanji_ja_JP"}, + // 3. (1<<12 4096) (10) + {TransliterationModules_IgnoreTraditionalKana_ja_JP, + TransliterationModulesNew_IgnoreTraditionalKana_ja_JP, "ignoreTraditionalKana_ja_JP"}, + // 4. (1<<13 8192) (11) + {TransliterationModules_IgnoreMinusSign_ja_JP, TransliterationModulesNew_IgnoreMinusSign_ja_JP, + "ignoreMinusSign_ja_JP"}, // 5. (1<<13 16384) (12) + {TransliterationModules_IgnoreIterationMark_ja_JP, + TransliterationModulesNew_IgnoreIterationMark_ja_JP, "ignoreIterationMark_ja_JP"}, + // 6. (1<<14 32768) (13) + {TransliterationModules_IgnoreSeparator_ja_JP, TransliterationModulesNew_IgnoreSeparator_ja_JP, + "ignoreSeparator_ja_JP"}, // 7. (1<<15 65536) (14) + {TransliterationModules_IgnoreSize_ja_JP, TransliterationModulesNew_IgnoreSize_ja_JP, + "ignoreSize_ja_JP"}, // 15. (1<<23 16777216) (22) + {TransliterationModules_IgnoreMiddleDot_ja_JP, TransliterationModulesNew_IgnoreMiddleDot_ja_JP, + "ignoreMiddleDot_ja_JP"}, // 17. (1<<25 67108864) (24) + {TransliterationModules_IgnoreSpace_ja_JP, TransliterationModulesNew_IgnoreSpace_ja_JP, + "ignoreSpace_ja_JP"}, // 18. (1<<26 134217728) (25) + {TransliterationModules_IgnoreZiZu_ja_JP, TransliterationModulesNew_IgnoreZiZu_ja_JP, + "ignoreZiZu_ja_JP"}, // 8. (1<<16 131072) (15) + {TransliterationModules_IgnoreBaFa_ja_JP, TransliterationModulesNew_IgnoreBaFa_ja_JP, + "ignoreBaFa_ja_JP"}, // 9. (1<<17 262144) (16) + {TransliterationModules_IgnoreTiJi_ja_JP, TransliterationModulesNew_IgnoreTiJi_ja_JP, + "ignoreTiJi_ja_JP"}, // 10. (1<<18 524288) (17) + {TransliterationModules_IgnoreHyuByu_ja_JP, TransliterationModulesNew_IgnoreHyuByu_ja_JP, + "ignoreHyuByu_ja_JP"}, // 11. (1<<19 1048576) (18) + {TransliterationModules_IgnoreSeZe_ja_JP, TransliterationModulesNew_IgnoreSeZe_ja_JP, + "ignoreSeZe_ja_JP"}, // 12. (1<<20 2097152) (19) + {TransliterationModules_IgnoreIandEfollowedByYa_ja_JP, + TransliterationModulesNew_IgnoreIandEfollowedByYa_ja_JP, "ignoreIandEfollowedByYa_ja_JP"}, + // 13. (1<<21 4194304) (20) + {TransliterationModules_IgnoreKiKuFollowedBySa_ja_JP, + TransliterationModulesNew_IgnoreKiKuFollowedBySa_ja_JP, "ignoreKiKuFollowedBySa_ja_JP"}, + // 14. (1<<22 8388608) (21) + {TransliterationModules_IgnoreProlongedSoundMark_ja_JP, + TransliterationModulesNew_IgnoreProlongedSoundMark_ja_JP, "ignoreProlongedSoundMark_ja_JP"}, + // 16. (1<<24 33554432) (23) TmItem1 (UPPERCASE_LOWERCASE), // 19. (1) (1) TmItem1 (LOWERCASE_UPPERCASE), // 20. (2) (2) @@ -89,8 +111,10 @@ TmItem1 (KATAKANA_HIRAGANA), // 23. (5) (5) TmItem1 (HIRAGANA_KATAKANA), // 24. (6) (6) - TmItem1 (SmallToLarge_ja_JP), // 25. (1<<27 268435456) (26) - TmItem1 (LargeToSmall_ja_JP), // 26. (1<<28 536870912) (27) + {TransliterationModules_SmallToLarge_ja_JP, TransliterationModulesNew_SmallToLarge_ja_JP, + "smallToLarge_ja_JP"}, // 25. (1<<27 268435456) (26) + {TransliterationModules_LargeToSmall_ja_JP, TransliterationModulesNew_LargeToSmall_ja_JP, + "largeToSmall_ja_JP"}, // 26. (1<<28 536870912) (27) TmItem2 (NumToTextLower_zh_CN), // 27. () (28) TmItem2 (NumToTextUpper_zh_CN), // 28. () (29) TmItem2 (NumToTextLower_zh_TW), // 29. () (30) diff -Nru libreoffice-7.4.6/i18npool/util/i18npool.component libreoffice-7.4.7/i18npool/util/i18npool.component --- libreoffice-7.4.6/i18npool/util/i18npool.component 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/i18npool/util/i18npool.component 2023-05-03 15:22:13.000000000 +0000 @@ -226,7 +226,7 @@ constructor="i18npool_CharToNumLower_ko_get_implementation"> - + @@ -354,7 +354,7 @@ - + @@ -380,7 +380,7 @@ constructor="i18npool_NumToTextFullwidth_zh_TW_get_implementation"> - + diff -Nru libreoffice-7.4.6/include/svx/searchcharmap.hxx libreoffice-7.4.7/include/svx/searchcharmap.hxx --- libreoffice-7.4.6/include/svx/searchcharmap.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/include/svx/searchcharmap.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -50,6 +50,7 @@ virtual void SelectIndex( int index, bool bFocus = false ) override; void AppendCharToList(sal_UCS4 cChar); void ClearPreviousData(); + void UpdateScrollRange(); virtual sal_Int32 getMaxCharCount() const override; diff -Nru libreoffice-7.4.6/include/svx/svdoole2.hxx libreoffice-7.4.7/include/svx/svdoole2.hxx --- libreoffice-7.4.6/include/svx/svdoole2.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/include/svx/svdoole2.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -42,6 +42,7 @@ namespace svt { class EmbeddedObjectRef; } class SdrOle2ObjImpl; +class SvxOle2Shape; class SVXCORE_DLLPUBLIC SdrOle2Obj : public SdrRectObj { @@ -49,7 +50,7 @@ std::unique_ptr mpImpl; private: - SVX_DLLPRIVATE void Connect_Impl(); + SVX_DLLPRIVATE void Connect_Impl(SvxOle2Shape* pCreator = nullptr); SVX_DLLPRIVATE void Disconnect_Impl(); SVX_DLLPRIVATE void AddListeners_Impl(); SVX_DLLPRIVATE void RemoveListeners_Impl(); @@ -107,7 +108,7 @@ // OLE object has got a separate PersistName member now; // !!! use ::SetPersistName( ... ) only, if you know what you do !!! const OUString& GetPersistName() const; - void SetPersistName( const OUString& rPersistName ); + void SetPersistName( const OUString& rPersistName, SvxOle2Shape* pCreator = nullptr ); // One can add an application name to a SdrOle2Obj, which can be queried for // later on (SD needs this for presentation objects). @@ -152,7 +153,7 @@ sal_Int64 nAspect ); static bool Unload( const css::uno::Reference< css::embed::XEmbeddedObject >& xObj, sal_Int64 nAspect ); bool Unload(); - void Connect(); + void Connect(SvxOle2Shape* pCreator = nullptr); void Disconnect(); void ObjectLoaded(); @@ -199,4 +200,14 @@ void Connect() { GetRealObject(); } }; +class SVXCORE_DLLPUBLIC SdrIFrameLink final : public sfx2::SvBaseLink +{ + SdrOle2Obj* m_pObject; + +public: + explicit SdrIFrameLink(SdrOle2Obj* pObject); + virtual ::sfx2::SvBaseLink::UpdateResult DataChanged( + const OUString& rMimeType, const css::uno::Any & rValue ) override; +}; + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.4.6/include/svx/unoshape.hxx libreoffice-7.4.7/include/svx/unoshape.hxx --- libreoffice-7.4.6/include/svx/unoshape.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/include/svx/unoshape.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -619,6 +619,8 @@ bool createObject( const SvGlobalName &aClassName ); void createLink( const OUString& aLinkURL ); + + virtual OUString GetAndClearInitialFrameURL(); }; diff -Nru libreoffice-7.4.6/include/vcl/toolkit/field.hxx libreoffice-7.4.7/include/vcl/toolkit/field.hxx --- libreoffice-7.4.6/include/vcl/toolkit/field.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/include/vcl/toolkit/field.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -423,7 +423,7 @@ public: static OUString FormatDate(const Date& rNewDate, ExtDateFieldFormat eFormat, const LocaleDataWrapper& rLocaleData, const Formatter::StaticFormatter& rStaticFormatter); static bool TextToDate(const OUString& rStr, Date& rTime, ExtDateFieldFormat eFormat, const LocaleDataWrapper& rLocaleDataWrapper, const CalendarWrapper& rCalendarWrapper); - static int GetDateArea(ExtDateFieldFormat eFormat, std::u16string_view rText, int nCursor, const LocaleDataWrapper& rLocaleDataWrapper); + static int GetDateArea(ExtDateFieldFormat& eFormat, std::u16string_view rText, int nCursor, const LocaleDataWrapper& rLocaleDataWrapper); virtual ~DateFormatter() override; diff -Nru libreoffice-7.4.6/officecfg/registry/schema/org/openoffice/Office/Writer.xcs libreoffice-7.4.7/officecfg/registry/schema/org/openoffice/Office/Writer.xcs --- libreoffice-7.4.6/officecfg/registry/schema/org/openoffice/Office/Writer.xcs 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/officecfg/registry/schema/org/openoffice/Office/Writer.xcs 2023-05-03 15:22:13.000000000 +0000 @@ -1610,14 +1610,6 @@ false - - - - Specifies whether to hide whitespace. - - - false - diff -Nru libreoffice-7.4.6/oox/source/export/shapes.cxx libreoffice-7.4.7/oox/source/export/shapes.cxx --- libreoffice-7.4.6/oox/source/export/shapes.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/oox/source/export/shapes.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1647,20 +1647,17 @@ } } -static sal_Int32 lcl_GetGluePointId(const Reference& xShape, sal_Int32& nGluePointId) +static sal_Int32 lcl_GetGluePointId(sal_Int32 nGluePointId) { - uno::Reference xSupplier(xShape, uno::UNO_QUERY); - uno::Reference xGluePoints(xSupplier->getGluePoints(), - uno::UNO_QUERY); if (nGluePointId > 3) - nGluePointId -= 4; + return nGluePointId - 4; else { // change id of the bounding box (1 <-> 3) if (nGluePointId == 1) - nGluePointId = 3; // Right + return 3; // Right else if (nGluePointId == 3) - nGluePointId = 1; // Left + return 1; // Left } return nGluePointId; @@ -1714,10 +1711,10 @@ GET(nStartGlueId, StartGluePointIndex); if (nStartGlueId != -1) - lcl_GetGluePointId(rXShapeA, nStartGlueId); + nStartGlueId = lcl_GetGluePointId(nStartGlueId); GET(nEndGlueId, EndGluePointIndex); if (nEndGlueId != -1) - lcl_GetGluePointId(rXShapeB, nEndGlueId); + nEndGlueId = lcl_GetGluePointId(nEndGlueId); // Position is relative to group in Word, but relative to anchor of group in API. if (GetDocumentType() == DOCUMENT_DOCX && !mbUserShapes && m_xParent.is()) diff -Nru libreoffice-7.4.6/readlicense_oo/license/CREDITS.fodt libreoffice-7.4.7/readlicense_oo/license/CREDITS.fodt --- libreoffice-7.4.6/readlicense_oo/license/CREDITS.fodt 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/readlicense_oo/license/CREDITS.fodt 2023-05-03 15:22:13.000000000 +0000 @@ -1,13 +1,13 @@ - Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/7.5.0.3$Linux_X86_64 LibreOffice_project/c21113d003cd3efa8c53188764377a8272d9d6de2012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/7.5.2.2$Linux_X86_64 LibreOffice_project/53bb9681a964705cf672590721dbc85eb4d0c3a22012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 2078 + 515 501 - 33948 - 28180 + 34133 + 27148 true true @@ -16,9 +16,9 @@ 3649 3434 501 - 2078 - 34447 - 30256 + 515 + 34632 + 27661 0 0 false @@ -27,6 +27,8 @@ false false false + false + false @@ -82,7 +84,7 @@ false - 11862265 + 12220477 true false false @@ -94,6 +96,7 @@ false false false + true true true true @@ -350,21 +353,21 @@ - + - + - + - - + + - + @@ -428,24 +431,24 @@ - + - + - + - + - + - + @@ -1135,19 +1138,20 @@ Credits - 1845 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2023-03-03 17:31:56. + 1867 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2023-05-03 02:05:41. * 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: 34245Joined: 2000-10-10 + Caolán McNamaraCommits: 34437Joined: 2000-10-10 Kurt ZenkerCommits: 31752Joined: 2000-09-25 @@ -1164,24 +1168,24 @@ Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Stephan BergmannCommits: 20424Joined: 2000-10-04 + Stephan BergmannCommits: 20534Joined: 2000-10-04 - *Noel GrandinCommits: 17359Joined: 2011-12-12 + *Noel GrandinCommits: 17592Joined: 2011-12-12 - Ivo HinkelmannCommits: 9480Joined: 2002-09-09 + Miklos VajnaCommits: 9504Joined: 2010-07-29 - Miklos VajnaCommits: 9399Joined: 2010-07-29 + Ivo HinkelmannCommits: 9480Joined: 2002-09-09 - Tor LillqvistCommits: 9150Joined: 2010-03-23 + Tor LillqvistCommits: 9160Joined: 2010-03-23 - Michael StahlCommits: 8140Joined: 2008-06-16 + Michael StahlCommits: 8192Joined: 2008-06-16 @@ -1189,7 +1193,7 @@ Kohei YoshidaCommits: 5571Joined: 2009-06-19 - Eike RathkeCommits: 5258Joined: 2000-10-11 + Eike RathkeCommits: 5303Joined: 2000-10-11 *Markus MohrhardCommits: 5203Joined: 2011-03-17 @@ -1203,18 +1207,18 @@ David TardonCommits: 3648Joined: 2009-11-12 - *Julien NabetCommits: 3584Joined: 2010-11-04 + *Julien NabetCommits: 3620Joined: 2010-11-04 - *Andrea GelminiCommits: 3409Joined: 2014-10-30 + *Andrea GelminiCommits: 3481Joined: 2014-10-30 - Luboš LuňákCommits: 3201Joined: 2010-09-21 + *Tomaž VajngerlCommits: 3221Joined: 2012-06-02 - *Tomaž VajngerlCommits: 3181Joined: 2012-06-02 + Luboš LuňákCommits: 3201Joined: 2010-09-21 Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 @@ -1223,12 +1227,12 @@ Ocke Janssen [oj]Commits: 2850Joined: 2000-09-20 - Jan HolesovskyCommits: 2672Joined: 2009-06-23 + *Mike KaganskiCommits: 2700Joined: 2015-04-26 - *Mike KaganskiCommits: 2587Joined: 2015-04-26 + Jan HolesovskyCommits: 2672Joined: 2009-06-23 Mathias BauerCommits: 2580Joined: 2000-09-20 @@ -1237,15 +1241,15 @@ Oliver SpechtCommits: 2549Joined: 2000-09-21 - Michael MeeksCommits: 2483Joined: 2004-08-05 + Michael MeeksCommits: 2491Joined: 2004-08-05 - Bjoern MichaelsenCommits: 2473Joined: 2009-10-14 + Bjoern MichaelsenCommits: 2488Joined: 2009-10-14 - *Xisco FauliCommits: 2424Joined: 2011-02-06 + *Xisco FauliCommits: 2486Joined: 2011-02-06 *Norbert ThiebaudCommits: 2176Joined: 2010-09-29 @@ -1259,13 +1263,13 @@ Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 - *Andras TimarCommits: 1986Joined: 2010-10-02 + *Andras TimarCommits: 1987Joined: 2010-10-02 Christian LippkaCommits: 1805Joined: 2000-09-25 - *Olivier HallotCommits: 1723Joined: 2010-10-25 + *Olivier HallotCommits: 1772Joined: 2010-10-25 @@ -1273,7 +1277,7 @@ *Matúš KukanCommits: 1712Joined: 2011-04-06 - Armin Le Grand (Allotropia)Commits: 1548Joined: 2000-09-25 + Armin Le Grand (Allotropia)Commits: 1549Joined: 2000-09-25 *Takeshi AbeCommits: 1486Joined: 2010-11-08 @@ -1315,18 +1319,18 @@ Daniel Rentz [dr]Commits: 1206Joined: 2000-09-28 - *Samuel MehrbrodtCommits: 1150Joined: 2011-06-08 + *Samuel MehrbrodtCommits: 1161Joined: 2011-06-08 - *Szymon KłosCommits: 1109Joined: 2014-03-22 + *Szymon KłosCommits: 1156Joined: 2014-03-22 - *Gabor KelemenCommits: 1093Joined: 2013-06-18 + Christian LohmaierCommits: 1111Joined: 2008-06-01 - Christian LohmaierCommits: 1092Joined: 2008-06-01 + *Gabor KelemenCommits: 1106Joined: 2013-06-18 *Lionel Elie MamaneCommits: 1051Joined: 2011-01-15 @@ -1360,28 +1364,31 @@ Sven JacobiCommits: 850Joined: 2000-09-21 - Herbert DürrCommits: 827Joined: 2000-10-17 + *Maxim MonastirskyCommits: 846Joined: 2013-10-27 - Martin GallweyCommits: 827Joined: 2000-11-08 + *László NémethCommits: 833Joined: 2010-09-29 - *László NémethCommits: 818Joined: 2010-09-29 + Herbert DürrCommits: 827Joined: 2000-10-17 - *Maxim MonastirskyCommits: 817Joined: 2013-10-27 + Martin GallweyCommits: 827Joined: 2000-11-08 Mikhail VoytenkoCommits: 793Joined: 2001-01-16 - Carsten DriesnerCommits: 748Joined: 2000-10-06 + *Michael WeghornCommits: 756Joined: 2014-09-10 + Carsten DriesnerCommits: 748Joined: 2000-10-06 + + Joachim LingnerCommits: 745Joined: 2000-10-05 @@ -1390,16 +1397,13 @@ *Andrzej HuntCommits: 743Joined: 2012-03-27 - - Andre FischerCommits: 730Joined: 2001-02-06 - - Release EngineeringCommits: 728Joined: 2008-10-02 + Andre FischerCommits: 730Joined: 2001-02-06 - *Michael WeghornCommits: 720Joined: 2014-09-10 + Release EngineeringCommits: 728Joined: 2008-10-02 *Zdeněk CrhonekCommits: 714Joined: 2016-05-19 @@ -1416,18 +1420,18 @@ *Jens CarlCommits: 657Joined: 2014-05-28 - Kai SommerfeldCommits: 651Joined: 2000-10-10 + *Rizal MuttaqinCommits: 655Joined: 2018-05-21 - Ingrid HalamaCommits: 639Joined: 2001-01-19 + Kai SommerfeldCommits: 651Joined: 2000-10-10 - *Justin LuthCommits: 624Joined: 2014-09-30 + Ingrid HalamaCommits: 639Joined: 2001-01-19 - *Rizal MuttaqinCommits: 622Joined: 2018-05-21 + *Justin LuthCommits: 624Joined: 2014-09-30 *Rafael DominguezCommits: 606Joined: 2011-02-13 @@ -1438,31 +1442,31 @@ + *Seth ChaiklinCommits: 581Joined: 2019-11-13 + + Rene EngelhardCommits: 577Joined: 2005-03-14 *Yousuf PhilipsCommits: 569Joined: 2014-09-21 - *Adolfo Jayme BarrientosCommits: 559Joined: 2013-06-21 + *Adolfo Jayme BarrientosCommits: 568Joined: 2013-06-21 + + Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 - - *Khaled HosnyCommits: 542Joined: 2011-01-28 - *Seth ChaiklinCommits: 516Joined: 2019-11-13 + *Jim RaykowskiCommits: 515Joined: 2017-04-16 Jürgen SchmidtCommits: 512Joined: 2000-10-09 - - *Jim RaykowskiCommits: 508Joined: 2017-04-16 - @@ -1475,15 +1479,15 @@ Andreas BregasCommits: 470Joined: 2000-09-25 - *Heiko TietzeCommits: 411Joined: 2016-10-06 + *Justin LuthCommits: 468Joined: 2018-04-21 - *Justin LuthCommits: 403Joined: 2018-04-21 + *Heiko TietzeCommits: 435Joined: 2016-10-06 - *Ashod NakashianCommits: 393Joined: 2015-01-07 + *Ashod NakashianCommits: 394Joined: 2015-01-07 Dirk VoelzkeCommits: 392Joined: 2000-11-27 @@ -1514,7 +1518,7 @@ Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 - *Jean-Pierre LedureCommits: 343Joined: 2013-10-12 + *Jean-Pierre LedureCommits: 348Joined: 2013-10-12 Patrick LubyCommits: 335Joined: 2000-09-21 @@ -1525,10 +1529,10 @@ *David OstrovskyCommits: 334Joined: 2012-04-01 - *Marco CecchettiCommits: 324Joined: 2011-04-14 + *Marco CecchettiCommits: 327Joined: 2011-04-14 - *Arnaud VersiniCommits: 319Joined: 2010-10-05 + *Arnaud VERSINICommits: 322Joined: 2010-10-05 Radek DoulikCommits: 305Joined: 2010-05-03 @@ -1536,41 +1540,41 @@ - *Henry CastroCommits: 304Joined: 2015-01-09 + *Mark HungCommits: 305Joined: 2014-11-04 - *Mark HungCommits: 303Joined: 2014-11-04 + *Henry CastroCommits: 304Joined: 2015-01-09 *Chr. RossmanithCommits: 300Joined: 2011-01-03 - *August SodoraCommits: 285Joined: 2011-10-18 + *Stanislav HoracekCommits: 286Joined: 2012-12-09 - *Stanislav HoracekCommits: 284Joined: 2012-12-09 + *August SodoraCommits: 285Joined: 2011-10-18 - *Siqi LiuCommits: 277Joined: 2013-04-13 + *Rafael LimaCommits: 285Joined: 2020-11-13 - *Pierre-André JacquodCommits: 276Joined: 2010-11-13 + *Siqi LiuCommits: 277Joined: 2013-04-13 - *Rafael LimaCommits: 273Joined: 2020-11-13 + *Pierre-André JacquodCommits: 276Joined: 2010-11-13 - *Vasily MelenchukCommits: 263Joined: 2015-01-27 + *Vasily MelenchukCommits: 265Joined: 2015-01-27 Lars LanghansCommits: 260Joined: 2000-09-22 - Bartosz KosiorekCommits: 252Joined: 2010-09-17 + Bartosz KosiorekCommits: 255Joined: 2010-09-17 Muthu SubramanianCommits: 250Joined: 2010-08-25 @@ -1581,13 +1585,13 @@ *Robert Antoni Buj GelonchCommits: 247Joined: 2014-06-11 - *Regina HenschelCommits: 223Joined: 2010-11-04 + *Andreas HeinischCommits: 228Joined: 2019-05-13 - *Winfried DonkersCommits: 215Joined: 2011-11-11 + *Regina HenschelCommits: 227Joined: 2010-11-04 - *Andreas HeinischCommits: 204Joined: 2019-05-13 + *Winfried DonkersCommits: 215Joined: 2011-11-11 @@ -1601,7 +1605,7 @@ *Arkadiy IllarionovCommits: 201Joined: 2017-01-15 - *Dennis FrancisCommits: 200Joined: 2018-11-15 + *Dennis FrancisCommits: 201Joined: 2018-11-15 @@ -1620,16 +1624,16 @@ - *خالد حسنيCommits: 177Joined: 2022-06-06 + *Khaled HosnyCommits: 182Joined: 2022-06-06 *François TigeotCommits: 176Joined: 2011-01-31 - *Philipp RiemerCommits: 171Joined: 2012-05-25 + *Tünde TóthCommits: 174Joined: 2019-03-14 - *Tünde TóthCommits: 166Joined: 2019-03-14 + *Philipp RiemerCommits: 171Joined: 2012-05-25 @@ -1637,13 +1641,13 @@ *Balazs VargaCommits: 165Joined: 2018-07-05 - *Nigel HawkinsCommits: 160Joined: 2010-10-28 + *Ilmari LauhakangasCommits: 162Joined: 2017-04-15 - *Gülşah KöseCommits: 160Joined: 2015-03-14 + *Nigel HawkinsCommits: 160Joined: 2010-10-28 - *Ilmari LauhakangasCommits: 155Joined: 2017-04-15 + *Gülşah KöseCommits: 160Joined: 2015-03-14 @@ -1693,18 +1697,18 @@ *Philipp WeissenbacherCommits: 129Joined: 2011-10-28 - Helge Delfs [hde]Commits: 126Joined: 2009-07-28 + *Sophia SchröderCommits: 128Joined: 2018-04-07 - *Ariel Constenla-HaileCommits: 126Joined: 2012-01-16 + Helge Delfs [hde]Commits: 126Joined: 2009-07-28 - *haochenCommits: 126Joined: 2013-10-10 + *Ariel Constenla-HaileCommits: 126Joined: 2012-01-16 - *Sophia SchröderCommits: 125Joined: 2018-04-07 + *haochenCommits: 126Joined: 2013-10-10 Takashi OnoCommits: 122Joined: 2009-12-10 @@ -1727,15 +1731,15 @@ *Joren De CuyperCommits: 114Joined: 2013-01-07 - *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 + *HosseinCommits: 114Joined: 2021-06-29 - *Dennis FrancisCommits: 112Joined: 2015-04-15 + *Dennis FrancisCommits: 113Joined: 2015-04-15 - *HosseinCommits: 111Joined: 2021-06-29 + *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 *Akshay DeepCommits: 110Joined: 2016-01-23 @@ -1746,10 +1750,10 @@ - *Louis-Francis Ratté-BoulianneCommits: 102Joined: 2014-10-29 + *Tibor NagyCommits: 104Joined: 2020-04-01 - *Tibor NagyCommits: 101Joined: 2020-04-01 + *Louis-Francis Ratté-BoulianneCommits: 102Joined: 2014-10-29 *Rishabh KumarCommits: 100Joined: 2015-02-13 @@ -1760,62 +1764,65 @@ - *Attila Bakos (NISZ)Commits: 96Joined: 2019-10-28 + *Attila Bakos (NISZ)Commits: 97Joined: 2019-10-28 *Laurent GodardCommits: 93Joined: 2011-05-06 - *Paris OplopoiosCommits: 92Joined: 2021-03-07 + *Juergen FunkCommits: 92Joined: 2014-09-17 - *Stefan KnorrCommits: 91Joined: 2011-07-04 + *Justin LuthCommits: 92Joined: 2020-02-03 - *Varun DhallCommits: 91Joined: 2015-03-07 + *Paris OplopoiosCommits: 92Joined: 2021-03-07 - *Krisztian PinterCommits: 90Joined: 2013-02-18 + *Stefan KnorrCommits: 91Joined: 2011-07-04 - *Philipp HoferCommits: 90Joined: 2020-11-06 + *Varun DhallCommits: 91Joined: 2015-03-07 - *Albert ThuswaldnerCommits: 89Joined: 2011-01-26 + *Krisztian PinterCommits: 90Joined: 2013-02-18 - *Justin LuthCommits: 89Joined: 2020-02-03 + *Pranam LashkariCommits: 90Joined: 2020-04-03 - *Tim RetoutCommits: 88Joined: 2012-02-14 + *Philipp HoferCommits: 90Joined: 2020-11-06 - *Daniel BankstonCommits: 88Joined: 2012-04-03 + *Albert ThuswaldnerCommits: 89Joined: 2011-01-26 - *Juergen FunkCommits: 88Joined: 2014-09-17 + *Tim RetoutCommits: 88Joined: 2012-02-14 - *Korrawit PruegsanusakCommits: 87Joined: 2011-05-28 + *Daniel BankstonCommits: 88Joined: 2012-04-03 - *Adam CoCommits: 86Joined: 2013-04-28 + *Alain RomedenneCommits: 88Joined: 2021-02-17 - *Alain RomedenneCommits: 86Joined: 2021-02-17 + *Korrawit PruegsanusakCommits: 87Joined: 2011-05-28 - Mihaela KedikovaCommits: 85Joined: 2009-10-30 + *Adam CoCommits: 86Joined: 2013-04-28 + Mihaela KedikovaCommits: 85Joined: 2009-10-30 + + *Javier FernandezCommits: 84Joined: 2013-03-06 @@ -1824,11 +1831,11 @@ Tobias KrauseCommits: 83Joined: 2007-10-02 + + *Minh NgoCommits: 83Joined: 2013-05-02 - - *Ricardo MontaniaCommits: 82Joined: 2012-08-18 @@ -1838,16 +1845,13 @@ *Tobias MadlCommits: 74Joined: 2014-09-15 - - *Gergo MocsiCommits: 72Joined: 2013-02-14 - - *weigaoCommits: 72Joined: 2014-05-07 + *Gergo MocsiCommits: 72Joined: 2013-02-14 - *Pranam LashkariCommits: 71Joined: 2020-04-03 + *weigaoCommits: 72Joined: 2014-05-07 Thorsten BosbachCommits: 70Joined: 2008-06-18 @@ -1878,14 +1882,17 @@ *Rohan KumarCommits: 65Joined: 2016-02-23 - *tageziCommits: 63Joined: 2015-09-16 + *Bogdan BCommits: 64Joined: 2022-11-01 - *Mohammed Abdul AzeemCommits: 63Joined: 2016-02-08 + *tageziCommits: 63Joined: 2015-09-16 + *Mohammed Abdul AzeemCommits: 63Joined: 2016-02-08 + + *Kevin SuoCommits: 63Joined: 2020-10-10 @@ -1894,16 +1901,13 @@ Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 - - *Martin HoskenCommits: 61Joined: 2011-02-25 - - *Pierre-Eric Pelloux-PrayerCommits: 61Joined: 2012-06-20 + *Martin HoskenCommits: 61Joined: 2011-02-25 - *Bogdan BCommits: 61Joined: 2022-11-01 + *Pierre-Eric Pelloux-PrayerCommits: 61Joined: 2012-06-20 Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 @@ -1914,150 +1918,150 @@ + *Sarper AkdemirCommits: 60Joined: 2021-04-25 + + + *Armin Le Grand (allotropia)Commits: 60Joined: 2022-06-27 + + 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 + *Kohei YoshidaCommits: 48Joined: 2019-08-12 - - - *Kohei YoshidaCommits: 47Joined: 2019-08-12 + *J. Graeme LingardCommits: 47Joined: 2010-09-29 *Luke DellerCommits: 46Joined: 2012-11-26 + + *hongyu zhongCommits: 46Joined: 2013-11-04 *Alexandre VicenziCommits: 46Joined: 2014-01-15 - - *Mihai VargaCommits: 46Joined: 2014-02-27 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 - - *Armin Le Grand (allotropia)Commits: 45Joined: 2022-06-27 - - - Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 - - *Daniel RobertsonCommits: 44Joined: 2015-06-27 + Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 - *Sarper AkdemirCommits: 44Joined: 2021-04-25 + *Daniel RobertsonCommits: 44Joined: 2015-06-27 *Luc CastermansCommits: 43Joined: 2011-11-13 @@ -2068,45 +2072,45 @@ + *Marco A.G.PintoCommits: 43Joined: 2018-07-16 + + *Daniel Arato (NISZ)Commits: 43Joined: 2020-08-24 + *Thorsten BehrensCommits: 43Joined: 2020-12-19 + + *Peter JentschCommits: 42Joined: 2011-01-07 + + *Mark WielaardCommits: 42Joined: 2013-05-13 - *Marco A.G.PintoCommits: 42Joined: 2018-07-16 + *Damjan JovanovicCommits: 42Joined: 2015-08-26 - - *Sébastien Le RayCommits: 41Joined: 2011-02-10 *Christian M. HellerCommits: 41Joined: 2013-02-24 + + *Tsutomu UchinoCommits: 41Joined: 2014-01-08 *AdityaCommits: 41Joined: 2019-01-04 - - *Francisco SaitoCommits: 40Joined: 2011-03-21 - *Damjan JovanovicCommits: 40Joined: 2015-08-26 - - *Grzegorz AraminowiczCommits: 40Joined: 2019-03-08 - - *Thorsten BehrensCommits: 40Joined: 2020-12-19 - @@ -2127,16 +2131,19 @@ *Shivam Kumar SinghCommits: 38Joined: 2020-01-15 + *Taichi HaradaguchiCommits: 38Joined: 2022-09-06 + + *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 @@ -2146,11 +2153,11 @@ *Radu IoanCommits: 36Joined: 2012-08-17 + + *Vinaya MandkeCommits: 36Joined: 2013-02-08 - - *Csikós TamásCommits: 36Joined: 2013-07-01 @@ -2160,11 +2167,11 @@ *Ilhan YesilCommits: 36Joined: 2018-04-11 + + *Aurimas FišerasCommits: 35Joined: 2010-10-11 - - *Laurent CharrièreCommits: 35Joined: 2010-10-14 @@ -2174,11 +2181,11 @@ *xukai liuCommits: 35Joined: 2013-11-01 + + *dechuangCommits: 35Joined: 2013-11-04 - - *Tobias LippertCommits: 35Joined: 2014-01-02 @@ -2188,11 +2195,11 @@ *Mark PageCommits: 35Joined: 2016-04-29 + + *Yusuf KetenCommits: 35Joined: 2019-12-18 - - *Andreas MantkeCommits: 34Joined: 2010-09-29 @@ -2202,13 +2209,10 @@ *Rodolfo Ribeiro GomesCommits: 34Joined: 2012-12-19 - - *Steve YinCommits: 34Joined: 2013-11-14 - - *Taichi HaradaguchiCommits: 34Joined: 2022-09-06 + *Steve YinCommits: 34Joined: 2013-11-14 *Cor NouwsCommits: 33Joined: 2011-11-19 @@ -2399,11 +2403,14 @@ *Dr. David Alan GilbertCommits: 26Joined: 2020-09-12 - *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 + *Noel GrandinCommits: 26Joined: 2022-10-10 + *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 + + *Tomofumi YagiCommits: 25Joined: 2011-10-20 @@ -2412,42 +2419,50 @@ *VortCommits: 25Joined: 2014-01-21 + + *aleksandar-stefanovicCommits: 25Joined: 2016-12-29 - - *George BatemanCommits: 25Joined: 2020-08-04 + *Balazs VargaCommits: 25Joined: 2022-06-29 + + *Baptiste DaroussinCommits: 24Joined: 2011-01-31 + + *Pedro GiffuniCommits: 24Joined: 2011-10-28 *Uray M. JánosCommits: 24Joined: 2012-07-17 - - *Sumit ChauhanCommits: 24Joined: 2018-12-04 *Hannah MeeksCommits: 24Joined: 2022-04-16 + + + + *Paris OplopoiosCommits: 24Joined: 2022-10-17 + *Robert RothCommits: 23Joined: 2010-10-31 *Sören MöllerCommits: 23Joined: 2011-01-03 - - *Lucas BaudinCommits: 23Joined: 2011-01-25 + + *Julien ChaffraixCommits: 23Joined: 2011-04-12 @@ -2457,11 +2472,11 @@ *Felix ZhangCommits: 23Joined: 2011-10-19 - - *Mario J. RugieroCommits: 23Joined: 2015-10-11 + + *Marco A.G.PintoCommits: 23Joined: 2016-02-02 @@ -2471,11 +2486,11 @@ *Jacek WolszczakCommits: 22Joined: 2010-10-07 - - *Júlio HoffimannCommits: 22Joined: 2010-10-18 + + *Ruslan KabatsayevCommits: 22Joined: 2012-05-11 @@ -2485,11 +2500,11 @@ *Frédéric WangCommits: 22Joined: 2013-06-22 - - *zhenyu yuanCommits: 22Joined: 2013-11-06 + + *Colomban WendlingCommits: 22Joined: 2017-03-15 @@ -2499,11 +2514,11 @@ *Rohit DeshmukhCommits: 21Joined: 2013-09-30 - - *scitoCommits: 21Joined: 2015-04-13 + + *Vitaliy AndersonCommits: 21Joined: 2016-12-09 @@ -2513,11 +2528,11 @@ Eric BachardCommits: 20Joined: 2005-10-19 - - *Andy HolderCommits: 20Joined: 2010-12-06 + + *Brad SowdenCommits: 20Joined: 2011-12-27 @@ -2527,53 +2542,53 @@ *Tushar BendeCommits: 20Joined: 2013-09-27 - - *Andrew DentCommits: 20Joined: 2014-02-26 - - *Balazs VargaCommits: 20Joined: 2022-06-29 - + + *Patrick LubyCommits: 20Joined: 2022-12-03 Xiaofei ZhangCommits: 19Joined: 2010-06-28 - - *Lennard WasserthalCommits: 19Joined: 2012-08-11 *Peilin XiaoCommits: 19Joined: 2013-12-09 + + *Sven WehnerCommits: 19Joined: 2014-01-11 *Ravindra VidhateCommits: 19Joined: 2014-01-30 - - *Aleksas PantechovskisCommits: 19Joined: 2016-03-03 *krishna keshavCommits: 19Joined: 2016-05-05 + + + + *Heiko TietzeCommits: 19Joined: 2019-09-08 + *Onur YilmazCommits: 19Joined: 2019-12-18 *Svante SchubertCommits: 19Joined: 2020-07-08 - - Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 + + *Joost WezenbeekCommits: 18Joined: 2010-10-24 @@ -2583,11 +2598,11 @@ *Boris DušekCommits: 18Joined: 2013-07-21 - - *Richard PALOCommits: 18Joined: 2014-11-09 + + *Federico BassiniCommits: 18Joined: 2016-10-06 @@ -2597,174 +2612,163 @@ *Zdibák ZoltánCommits: 18Joined: 2018-10-13 - - - - *Heiko TietzeCommits: 18Joined: 2019-09-08 - *Ming HuaCommits: 18Joined: 2020-11-02 + + *Mark HungCommits: 18Joined: 2022-05-01 *Povilas KanapickasCommits: 18Joined: 2022-08-24 - - *Alfonso EusebioCommits: 17Joined: 2011-01-16 *Bálint DózsaCommits: 17Joined: 2011-02-10 + + *Olivier RCommits: 17Joined: 2011-08-01 *Jian Hong ChengCommits: 17Joined: 2012-06-26 - - *navin patidarCommits: 17Joined: 2013-01-06 *Umesh KadamCommits: 17Joined: 2014-01-10 + + *melikeyurtogluCommits: 17Joined: 2015-10-09 *Francisco Adrián SánchezCommits: 17Joined: 2016-10-07 - - *Thomas BeckCommits: 17Joined: 2017-03-27 *Kshitij PathaniaCommits: 17Joined: 2017-09-28 + + *Vikas MahatoCommits: 17Joined: 2017-12-31 *Martin van ZijlCommits: 17Joined: 2018-02-26 - - *Alain RomedenneCommits: 17Joined: 2018-12-19 *Todor BalabanovCommits: 17Joined: 2019-04-29 + + *Mesut ÇifciCommits: 17Joined: 2019-12-18 *Bayram ÇiçekCommits: 17Joined: 2020-11-23 - - Florian ReuterCommits: 16Joined: 2010-09-14 *Luke DixonCommits: 16Joined: 2010-10-26 + + *Niko RönkköCommits: 16Joined: 2010-10-31 *Jordan AyersCommits: 16Joined: 2010-11-04 - - *Anders JonssonCommits: 16Joined: 2010-12-11 *Maciej RumianowskiCommits: 16Joined: 2011-07-19 + + *Lei De BinCommits: 16Joined: 2012-07-04 *Jean-Noël RouvignacCommits: 16Joined: 2013-01-09 - - *tsahi glikCommits: 16Joined: 2013-06-04 *Chris LaplanteCommits: 16Joined: 2014-04-07 + + *Adam KasztennyCommits: 16Joined: 2016-03-27 *nd101Commits: 16Joined: 2019-07-03 - - Octavio AlvarezCommits: 15Joined: 2010-09-13 *Luke SymesCommits: 15Joined: 2010-10-01 + + *Povilas KanapickasCommits: 15Joined: 2010-10-18 *Joachim TremourouxCommits: 15Joined: 2010-11-19 - - *Yifan JCommits: 15Joined: 2010-12-16 *Cosimo CecchiCommits: 15Joined: 2011-11-02 + + *Alexander BergmannCommits: 15Joined: 2012-01-13 *Catalin IacobCommits: 15Joined: 2012-02-10 - - *Nikhil WalvekarCommits: 15Joined: 2013-11-01 *Heena GuptaCommits: 15Joined: 2014-06-17 + + *Andreas BrandnerCommits: 15Joined: 2017-09-04 *Armin Le GrandCommits: 15Joined: 2018-02-15 - - *Samuel ThibaultCommits: 15Joined: 2018-09-05 *Ross JohnsonCommits: 15Joined: 2021-09-13 - - *Noel GrandinCommits: 15Joined: 2022-10-10 - - - *Paris OplopoiosCommits: 15Joined: 2022-10-17 - @@ -2802,14 +2806,17 @@ *Nickson ThandaCommits: 14Joined: 2018-03-25 - *Prashant ShahCommits: 13Joined: 2010-10-10 + *Baole FangCommits: 14Joined: 2023-03-12 - *Jean-Baptiste FaureCommits: 13Joined: 2011-02-20 + *Prashant ShahCommits: 13Joined: 2010-10-10 + *Jean-Baptiste FaureCommits: 13Joined: 2011-02-20 + + *Muhammad HaggagCommits: 13Joined: 2012-02-01 @@ -2818,11 +2825,11 @@ *Alia AlmusaireaeCommits: 13Joined: 2012-11-05 + + *Mathias HasselmannCommits: 13Joined: 2013-01-14 - - *Manfred BlumeCommits: 13Joined: 2017-03-27 @@ -2832,68 +2839,68 @@ *Steve FanningCommits: 13Joined: 2019-11-30 + + + + *Radhey ParekhCommits: 13Joined: 2021-04-01 + *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 - *Radhey ParekhCommits: 12Joined: 2021-04-01 - - - - *Emircan AgacCommits: 12Joined: 2021-08-02 @@ -2902,11 +2909,11 @@ Mox SoiniCommits: 11Joined: 2008-04-04 + + Frank PetersCommits: 11Joined: 2010-05-20 - - *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 @@ -2916,11 +2923,11 @@ *Peter RabiCommits: 11Joined: 2011-07-14 + + *David BolenCommits: 11Joined: 2012-03-07 - - *Jung-uk KimCommits: 11Joined: 2012-08-13 @@ -2930,11 +2937,11 @@ *Abdulaziz A AlayedCommits: 11Joined: 2013-01-22 + + *Sean YoungCommits: 11Joined: 2013-05-16 - - *Krunoslav ŠebetićCommits: 11Joined: 2013-07-18 @@ -2944,11 +2951,11 @@ *Michael JaumannCommits: 11Joined: 2014-09-02 + + *Phillip SzCommits: 11Joined: 2015-03-16 - - *nadithCommits: 11Joined: 2016-07-14 @@ -2958,11 +2965,11 @@ *Fakabbir AminCommits: 11Joined: 2017-01-29 + + *jmzambonCommits: 11Joined: 2017-05-19 - - *Manuj VashistCommits: 11Joined: 2017-12-10 @@ -2972,28 +2979,36 @@ *Abhyudaya SharmaCommits: 11Joined: 2018-03-19 + + *Srijan BhatiaCommits: 11Joined: 2020-05-30 - - + + *Vert DCommits: 11Joined: 2020-09-26 + *shubham656Commits: 11Joined: 2020-11-07 *AnshuCommits: 11Joined: 2020-11-09 + + *Jeff HuangCommits: 11Joined: 2021-04-12 + *Patrick LubyCommits: 11Joined: 2023-02-28 + + *Timo HeinoCommits: 10Joined: 2010-11-22 - - *Luke PetrolekasCommits: 10Joined: 2011-02-12 + + *Theo van KlaverenCommits: 10Joined: 2011-03-10 @@ -3003,11 +3018,11 @@ *Kristian RietveldCommits: 10Joined: 2011-10-15 - - *David VogtCommits: 10Joined: 2012-02-05 + + *Jianyuan LiCommits: 10Joined: 2012-08-16 @@ -3017,11 +3032,11 @@ *Benjamin NiCommits: 10Joined: 2015-04-02 - - *Arul MichaelCommits: 10Joined: 2016-01-05 + + *Chirag ManwaniCommits: 10Joined: 2016-02-16 @@ -3031,11 +3046,11 @@ *Kiyotaka NishiboriCommits: 10Joined: 2017-08-27 - - *Rahul GurungCommits: 10Joined: 2018-08-26 + + *Mark RobbinsonCommits: 10Joined: 2019-01-02 @@ -3045,24 +3060,27 @@ *A_GANCommits: 10Joined: 2020-01-25 + + *Michael WarnerCommits: 10Joined: 2020-05-24 + - *Michael WarnerCommits: 10Joined: 2020-05-24 + *tusharCommits: 10Joined: 2021-01-10 - *Vert DCommits: 10Joined: 2020-09-26 + *Vincent LE GARRECCommits: 10Joined: 2021-02-21 - *tusharCommits: 10Joined: 2021-01-10 + *Balazs SanthaCommits: 10Joined: 2021-02-26 - *Vincent LE GARRECCommits: 10Joined: 2021-02-21 + *Laurent BallandCommits: 10Joined: 2022-06-19 - *Balazs SanthaCommits: 10Joined: 2021-02-26 + *GaldamCommits: 10Joined: 2022-09-07 *Mattias JohnssonCommits: 9Joined: 2010-10-18 @@ -3127,13 +3145,24 @@ *Jussi PakkanenCommits: 9Joined: 2020-02-22 - Fong LinCommits: 8Joined: 2010-09-14 + *Chenxiong QiCommits: 9Joined: 2022-08-27 + *Vojtěch DoležalCommits: 9Joined: 2023-02-13 + + + *Gabor KelemenCommits: 9Joined: 2023-02-14 + + + Fong LinCommits: 8Joined: 2010-09-14 + + Jody GoldbergCommits: 8Joined: 2010-09-15 + + *Michael CallahanCommits: 8Joined: 2010-12-06 @@ -3143,11 +3172,11 @@ *Jenei GáborCommits: 8Joined: 2011-07-29 - - *Terrence EngerCommits: 8Joined: 2011-10-27 + + *Daisuke NishinoCommits: 8Joined: 2011-11-06 @@ -3157,11 +3186,11 @@ *Jonathan AdamsCommits: 8Joined: 2012-03-16 - - *Norah A. AbanumayCommits: 8Joined: 2012-07-30 + + *Jean-Tiare Le BigotCommits: 8Joined: 2012-08-08 @@ -3171,11 +3200,11 @@ *Ahmad H. Al HarthiCommits: 8Joined: 2012-12-31 - - *karthCommits: 8Joined: 2013-01-07 + + *Ádám Csaba KirályCommits: 8Joined: 2013-02-28 @@ -3185,11 +3214,11 @@ *RajashriCommits: 8Joined: 2013-12-06 - - *Keith CurtisCommits: 8Joined: 2013-12-20 + + *SouravCommits: 8Joined: 2014-03-15 @@ -3199,11 +3228,11 @@ *Nathan YeeCommits: 8Joined: 2015-01-01 - - *Ursache VladimirCommits: 8Joined: 2015-02-10 + + *Sean DavisCommits: 8Joined: 2015-06-01 @@ -3213,11 +3242,11 @@ *IanCommits: 8Joined: 2015-08-06 - - *Rico TzschichholzCommits: 8Joined: 2016-02-09 + + *Matus UzakCommits: 8Joined: 2016-02-22 @@ -3227,11 +3256,11 @@ *ShinnokCommits: 8Joined: 2017-09-06 - - *Alain RomedenneCommits: 8Joined: 2018-11-29 + + *Rasmus JonssonCommits: 8Joined: 2019-03-20 @@ -3241,11 +3270,11 @@ *Ouyang LeyanCommits: 8Joined: 2020-09-06 - - *diwanshu885Commits: 8Joined: 2020-10-30 + + *Gökhan ÖzeloğluCommits: 8Joined: 2020-11-21 @@ -3253,6 +3282,9 @@ *Balaharipreetha MuthuCommits: 8Joined: 2020-12-04 + *Stéphane GuillouCommits: 8Joined: 2021-01-22 + + *4k5h1tCommits: 8Joined: 2021-08-26 @@ -3261,20 +3293,17 @@ *jsalaCommits: 8Joined: 2022-06-19 - *Laurent BallandCommits: 8Joined: 2022-06-19 + *Christian LohmaierCommits: 8Joined: 2022-12-13 - *Chenxiong QiCommits: 8Joined: 2022-08-27 + *Stéphane GuillouCommits: 8Joined: 2023-01-03 - *Christian LohmaierCommits: 8Joined: 2022-12-13 + *Thies PierdolaCommits: 7Joined: 2011-01-28 - *Thies PierdolaCommits: 7Joined: 2011-01-28 - - *Sergey DavidoffCommits: 7Joined: 2011-04-11 @@ -3283,11 +3312,11 @@ *Alex McMurchy1917Commits: 7Joined: 2011-08-14 - - *Christoph LutzCommits: 7Joined: 2011-09-06 + + *Keith McRaeCommits: 7Joined: 2012-01-18 @@ -3297,11 +3326,11 @@ *Brennan VincentCommits: 7Joined: 2012-04-02 - - *Wang LeiCommits: 7Joined: 2012-06-14 + + *Issa AlkurtassCommits: 7Joined: 2012-09-04 @@ -3311,11 +3340,11 @@ *Mathias MichelCommits: 7Joined: 2012-11-19 - - *Eric SeynaeveCommits: 7Joined: 2013-02-04 + + *SJacobiCommits: 7Joined: 2013-03-05 @@ -3325,11 +3354,11 @@ *Stefan RingCommits: 7Joined: 2014-01-09 - - *Trent MacAlpineCommits: 7Joined: 2014-03-06 + + *David DelmaCommits: 7Joined: 2014-05-13 @@ -3339,11 +3368,11 @@ *V Stuart FooteCommits: 7Joined: 2014-12-04 - - *RaalCommits: 7Joined: 2014-12-31 + + *brinzingCommits: 7Joined: 2015-08-22 @@ -3353,11 +3382,11 @@ *iremCommits: 7Joined: 2015-10-11 - - *apurvapriyadarshiCommits: 7Joined: 2016-05-27 + + *slackaCommits: 7Joined: 2016-07-30 @@ -3367,11 +3396,11 @@ *Tiago SantosCommits: 7Joined: 2016-08-12 - - *HieronymousCommits: 7Joined: 2016-10-13 + + *Ulrich GemkowCommits: 7Joined: 2016-10-27 @@ -3381,11 +3410,11 @@ *Furkan Ahmet KaraCommits: 7Joined: 2017-10-21 - - *Vincas DargisCommits: 7Joined: 2018-01-21 + + *Guilhem MoulinCommits: 7Joined: 2018-02-05 @@ -3395,11 +3424,11 @@ *BugraCommits: 7Joined: 2020-01-30 - - *Chris MayoCommits: 7Joined: 2020-05-08 + + *Pedro Pinto SilvaCommits: 7Joined: 2020-06-16 @@ -3407,168 +3436,168 @@ *Gökay ŞatırCommits: 7Joined: 2020-08-08 - *Stéphane GuillouCommits: 7Joined: 2021-01-22 - - - - *Matt KCommits: 7Joined: 2021-02-26 *Ahmet Hakan ÇelikCommits: 7Joined: 2021-03-07 + + *BaiXiaochunCommits: 7Joined: 2021-06-27 *Dhiraj HoldenCommits: 7Joined: 2021-11-30 - - *Liu HaoCommits: 7Joined: 2022-08-14 - *Gabor KelemenCommits: 7Joined: 2023-02-14 + *Czeber László ÁdámCommits: 7Joined: 2023-02-27 + + *Phil BordelonCommits: 6Joined: 2010-09-30 *Ricardo MorenoCommits: 6Joined: 2010-11-03 - - *Alexander O. AnisimovCommits: 6Joined: 2010-11-06 *Daniel Di MarcoCommits: 6Joined: 2010-11-15 + + *shiraharaCommits: 6Joined: 2011-01-28 *Xavier ALTCommits: 6Joined: 2011-03-06 - - *Anurag JainCommits: 6Joined: 2011-04-05 *Thomas CollertonCommits: 6Joined: 2011-11-18 + + *David VerrierCommits: 6Joined: 2013-02-26 *Anurag KanungoCommits: 6Joined: 2013-04-19 - - *tianyaoCommits: 6Joined: 2013-11-09 *Jeroen NijhofCommits: 6Joined: 2014-05-01 + + *Kay SchenkCommits: 6Joined: 2014-09-19 *Michel RenonCommits: 6Joined: 2015-05-19 - - *Fabio BusoCommits: 6Joined: 2015-11-01 *Sedat AkCommits: 6Joined: 2015-11-08 + + *Guillaume SmahaCommits: 6Joined: 2015-11-25 *Ricardo PalomaresCommits: 6Joined: 2016-01-16 - - *baltasarqCommits: 6Joined: 2016-02-24 *Steven GuoCommits: 6Joined: 2016-03-02 + + *ChamalCommits: 6Joined: 2016-08-01 *RosenCommits: 6Joined: 2016-08-04 - - *giaccoCommits: 6Joined: 2016-10-11 *abdulwdCommits: 6Joined: 2016-12-22 + + *Gian Domenico CeccariniCommits: 6Joined: 2017-01-13 *Jean-Sebastien BevilacquaCommits: 6Joined: 2017-02-09 - - *udareechkCommits: 6Joined: 2017-09-20 *Kemal AyhanCommits: 6Joined: 2019-12-18 + + *Gökay ŞATIRCommits: 6Joined: 2019-12-24 *Batuhan TaskayaCommits: 6Joined: 2020-01-25 - - *Mehmet Emin BaşoğluCommits: 6Joined: 2020-01-25 *iakarsuCommits: 6Joined: 2020-01-25 + + *Ivan StefanenkoCommits: 6Joined: 2020-08-26 *ViKrAm-BaisCommits: 6Joined: 2021-01-07 - - *msrijita18Commits: 6Joined: 2021-01-26 *Henrik PalomäkiCommits: 6Joined: 2021-10-18 + + *Ramreiso KashungCommits: 6Joined: 2021-12-22 *NickWingateCommits: 6Joined: 2022-02-23 - - *OmkarAcharekarCommits: 6Joined: 2022-10-15 + *Attila SzűcsCommits: 6Joined: 2022-11-29 + + + + *Gil ForcadaCommits: 5Joined: 2010-09-28 @@ -3577,11 +3606,11 @@ *Bernhard RosenkraenzerCommits: 5Joined: 2010-11-01 - - *Antoine ProulxCommits: 5Joined: 2011-01-30 + + *Tobias RosenbergerCommits: 5Joined: 2011-01-31 @@ -3591,11 +3620,11 @@ *ericb2Commits: 5Joined: 2011-10-30 - - *Michael T. WhiteleyCommits: 5Joined: 2011-11-25 + + *Gustavo Buzzatti PachecoCommits: 5Joined: 2011-12-15 @@ -3605,11 +3634,11 @@ *Lionel DricotCommits: 5Joined: 2012-06-04 - - *Pavel KysilkaCommits: 5Joined: 2012-06-25 + + *Bence BabatiCommits: 5Joined: 2012-08-13 @@ -3619,11 +3648,11 @@ *Werner KoernerCommits: 5Joined: 2012-12-11 - - *Matthias HofmannCommits: 5Joined: 2013-03-08 + + *Miguel GomezCommits: 5Joined: 2013-04-02 @@ -3633,11 +3662,11 @@ *Ciorba EdmondCommits: 5Joined: 2013-06-11 - - *Pader RezsoCommits: 5Joined: 2013-07-01 + + *MÁTÉ GergelyCommits: 5Joined: 2013-07-19 @@ -3647,11 +3676,11 @@ *Jan KantertCommits: 5Joined: 2014-06-12 - - *Pasi LallinahoCommits: 5Joined: 2015-06-02 + + *Berk GurekenCommits: 5Joined: 2015-10-01 @@ -3661,11 +3690,11 @@ *Edmund WongCommits: 5Joined: 2016-12-08 - - *Huzaifa IftikharCommits: 5Joined: 2016-12-19 + + *tamsil1amani3Commits: 5Joined: 2016-12-22 @@ -3675,11 +3704,11 @@ *Paul MenzelCommits: 5Joined: 2017-05-17 - - *Corentin NoëlCommits: 5Joined: 2019-09-20 + + *Tolunay DündarCommits: 5Joined: 2019-12-18 @@ -3689,11 +3718,11 @@ *Yukio SiraichiCommits: 5Joined: 2020-03-09 - - *Oleg ShchelykalnovCommits: 5Joined: 2020-03-28 + + *Gabriel MaseiCommits: 5Joined: 2020-09-02 @@ -3703,11 +3732,11 @@ *Umut Emre BayramogluCommits: 5Joined: 2020-11-21 - - *Georgy LitvinovCommits: 5Joined: 2020-12-16 + + *Suhaas JoshiCommits: 5Joined: 2021-01-04 @@ -3715,6 +3744,9 @@ *Baran AytasCommits: 5Joined: 2021-08-22 + *Juan C SanzCommits: 5Joined: 2021-09-03 + + *Ismael LucenoCommits: 5Joined: 2021-09-29 @@ -3743,25 +3775,28 @@ *Skyler GreyCommits: 5Joined: 2022-07-27 - *galjitCommits: 5Joined: 2022-09-07 + *Leonid RyzhovCommits: 5Joined: 2022-11-17 - *Leonid RyzhovCommits: 5Joined: 2022-11-17 + *ektagoel12Commits: 5Joined: 2023-01-19 - *Attila SzűcsCommits: 5Joined: 2022-11-29 + *buldiCommits: 5Joined: 2023-02-09 - *Florian BircherCommits: 4Joined: 2010-10-16 + *Jaume PujantellCommits: 5Joined: 2023-03-03 - *Andrew C. E. DentCommits: 4Joined: 2010-10-24 + *Florian BircherCommits: 4Joined: 2010-10-16 + *Andrew C. E. DentCommits: 4Joined: 2010-10-24 + + *Santiago AlessandriCommits: 4Joined: 2010-11-11 @@ -3770,11 +3805,11 @@ *An LeendersCommits: 4Joined: 2011-01-25 + + *Alexander ThurgoodCommits: 4Joined: 2011-01-26 - - *ClioCommits: 4Joined: 2011-01-30 @@ -3784,11 +3819,11 @@ *Pantelis KoukousoulasCommits: 4Joined: 2011-03-14 + + *Samphan RaruenromCommits: 4Joined: 2011-03-24 - - *Andreas BeckerCommits: 4Joined: 2011-04-04 @@ -3798,11 +3833,11 @@ *André SchnabelCommits: 4Joined: 2011-05-31 + + *Tom TromeyCommits: 4Joined: 2011-08-11 - - *Wolfgang PechlanerCommits: 4Joined: 2011-09-04 @@ -3812,11 +3847,11 @@ *Kate GossCommits: 4Joined: 2012-02-11 + + *Mariana MarasoiuCommits: 4Joined: 2012-03-14 - - *Yong Lin MaCommits: 4Joined: 2012-06-07 @@ -3826,11 +3861,11 @@ *Florian ReisingerCommits: 4Joined: 2012-06-22 + + *Nicholas ShanksCommits: 4Joined: 2012-09-04 - - *tinoCommits: 4Joined: 2012-12-03 @@ -3840,11 +3875,11 @@ *XiaoliCommits: 4Joined: 2013-03-23 + + *Sameer DeshmukhCommits: 4Joined: 2013-04-20 - - *Zheng FanCommits: 4Joined: 2013-04-22 @@ -3854,11 +3889,11 @@ *Nourah.AlShoeibiCommits: 4Joined: 2013-07-07 + + *Honza HavlíčekCommits: 4Joined: 2013-07-27 - - *Andrea PescettiCommits: 4Joined: 2013-10-07 @@ -3868,11 +3903,11 @@ *Ulrich KitzingerCommits: 4Joined: 2013-11-30 + + *Ken BiondiCommits: 4Joined: 2014-03-05 - - *Jeffrey StedfastCommits: 4Joined: 2014-07-26 @@ -3882,11 +3917,11 @@ *Kevin SuoCommits: 4Joined: 2014-11-06 + + *Aleksandr AndreevCommits: 4Joined: 2015-04-20 - - *Derrick RochaCommits: 4Joined: 2015-08-26 @@ -3896,11 +3931,11 @@ *ccshellerCommits: 4Joined: 2015-10-08 + + *pasqual milvaquesCommits: 4Joined: 2015-12-02 - - *aqcoderCommits: 4Joined: 2015-12-13 @@ -3910,11 +3945,11 @@ *Kumar ThangavelCommits: 4Joined: 2016-01-04 + + *erdemdemirkapiCommits: 4Joined: 2016-01-30 - - *coypuCommits: 4Joined: 2016-02-03 @@ -3924,11 +3959,11 @@ *Tim EvesCommits: 4Joined: 2016-02-23 + + *GurkaranCommits: 4Joined: 2016-03-17 - - *Fabio BiocchettiCommits: 4Joined: 2016-10-21 @@ -3938,11 +3973,11 @@ *Patrick JaapCommits: 4Joined: 2017-01-30 + + *Piotr DrągCommits: 4Joined: 2017-03-05 - - *Fyodor YemelyanenkoCommits: 4Joined: 2017-08-21 @@ -3952,86 +3987,94 @@ *Jon NermutCommits: 4Joined: 2018-01-20 + + + + *Franklin WengCommits: 4Joined: 2018-02-28 + *Jozsef SzakacsCommits: 4Joined: 2018-11-07 - - *Andrew UdvareCommits: 4Joined: 2019-01-08 *Aleyna DoğrucanCommits: 4Joined: 2019-12-28 + + *Efdal İncesuCommits: 4Joined: 2020-01-25 *Faruk DemirbaşCommits: 4Joined: 2020-01-25 - - *Hakan BakacakCommits: 4Joined: 2020-01-26 *Burak BalaCommits: 4Joined: 2020-01-26 + + *Mohamed SamehCommits: 4Joined: 2020-02-11 *Fred KruseCommits: 4Joined: 2020-03-02 - - *Deb Barkley-YeungCommits: 4Joined: 2020-08-19 *Gokce KulerCommits: 4Joined: 2020-10-20 + + *VishwasCommits: 4Joined: 2020-12-31 *Aditya Pratap SinghCommits: 4Joined: 2021-02-01 - - *dipanshu124Commits: 4Joined: 2021-02-12 *HosseinCommits: 4Joined: 2021-03-23 + + *tobiasCommits: 4Joined: 2021-06-03 *Gopi Krishna MenonCommits: 4Joined: 2021-06-07 - - *Harshita NagCommits: 4Joined: 2021-06-25 *YildirayCommits: 4Joined: 2021-08-08 - - *Juan C. SanzCommits: 4Joined: 2021-09-03 - + + *ehsanCommits: 4Joined: 2022-07-01 - - *PoonamShokeenCommits: 4Joined: 2022-07-21 - *buldiCommits: 4Joined: 2023-02-09 + *Arvind KCommits: 4Joined: 2023-03-02 + + + *Yousef_RabiaCommits: 4Joined: 2023-03-07 + + + + + *Bayram ÇiçekCommits: 4Joined: 2023-03-09 Keith StribleyCommits: 3Joined: 2010-06-29 @@ -4039,11 +4082,11 @@ *Jacopo NespoloCommits: 3Joined: 2010-10-01 - - *Alan DuCommits: 3Joined: 2010-10-12 + + *Gioele BarabucciCommits: 3Joined: 2010-11-18 @@ -4053,11 +4096,11 @@ *Pascal UllrichCommits: 3Joined: 2010-12-28 - - *Jonathan AquilinaCommits: 3Joined: 2011-01-18 + + *Michael KochCommits: 3Joined: 2011-01-21 @@ -4067,11 +4110,11 @@ *Chris Carpenter(mordocai)Commits: 3Joined: 2011-02-02 - - *Tantai TanakanokCommits: 3Joined: 2011-02-09 + + *David NalleyCommits: 3Joined: 2011-03-03 @@ -4081,11 +4124,11 @@ *Anthony DurityCommits: 3Joined: 2011-04-18 - - *Dimitri DucCommits: 3Joined: 2011-04-19 + + *Mike EberdtCommits: 3Joined: 2011-07-12 @@ -4095,11 +4138,11 @@ *Dmitry AshkadovCommits: 3Joined: 2011-08-29 - - *Michael BauerCommits: 3Joined: 2011-11-23 + + *Sérgio MarquesCommits: 3Joined: 2011-11-25 @@ -4109,11 +4152,11 @@ *Cameron PaulCommits: 3Joined: 2012-02-27 - - *Tom ThorogoodCommits: 3Joined: 2012-02-28 + + *Stephan van den AkkerCommits: 3Joined: 2012-06-07 @@ -4123,11 +4166,11 @@ *Mathieu VonlanthenCommits: 3Joined: 2012-07-19 - - *Bertrand LorentzCommits: 3Joined: 2012-08-03 + + *Oliver GüntherCommits: 3Joined: 2012-08-09 @@ -4137,11 +4180,11 @@ *Jeremy BrownCommits: 3Joined: 2012-09-19 - - *Peter BaumgartenCommits: 3Joined: 2012-11-24 + + *Markus MaierCommits: 3Joined: 2012-11-25 @@ -4151,11 +4194,11 @@ *Dávid VastagCommits: 3Joined: 2013-02-04 - - *Stefan SchickCommits: 3Joined: 2013-02-18 + + *Petr KrausCommits: 3Joined: 2013-03-26 @@ -4165,11 +4208,11 @@ *vjinochCommits: 3Joined: 2013-04-09 - - *Jason HulmeCommits: 3Joined: 2013-06-05 + + *Nagy AkosCommits: 3Joined: 2013-06-27 @@ -4179,11 +4222,11 @@ *Haidong LianCommits: 3Joined: 2013-07-24 - - *Tobias MuellerCommits: 3Joined: 2014-02-10 + + *Peter Senna TschudinCommits: 3Joined: 2014-05-26 @@ -4193,11 +4236,11 @@ *Renato FerreiraCommits: 3Joined: 2014-11-15 - - *Popa Adrian MariusCommits: 3Joined: 2015-03-23 + + *Matthew NichollsCommits: 3Joined: 2015-04-01 @@ -4207,11 +4250,11 @@ *Marek DoleželCommits: 3Joined: 2015-07-06 - - *Simon LongCommits: 3Joined: 2015-07-08 + + *Lucas SatabinCommits: 3Joined: 2015-08-25 @@ -4221,11 +4264,11 @@ *Sergey FukanchikCommits: 3Joined: 2015-09-17 - - *AlexFCommits: 3Joined: 2015-11-12 + + *Giovanni CaligarisCommits: 3Joined: 2015-11-30 @@ -4235,11 +4278,11 @@ *Johannes BergCommits: 3Joined: 2016-08-03 - - *drazilCommits: 3Joined: 2016-08-27 + + *Jacek FraczekCommits: 3Joined: 2016-10-05 @@ -4249,11 +4292,11 @@ *John Paul Adrian GlaubitzCommits: 3Joined: 2016-11-27 - - *bansan85Commits: 3Joined: 2016-12-21 + + *Dimitri BouronCommits: 3Joined: 2016-12-22 @@ -4263,11 +4306,11 @@ *Gabriel ChiquiniCommits: 3Joined: 2017-10-01 - - *Bán RóbertCommits: 3Joined: 2017-10-25 + + *Mark VecsernyesCommits: 3Joined: 2017-11-15 @@ -4277,11 +4320,11 @@ *Ahmed GHANMICommits: 3Joined: 2017-11-30 - - *Abhishek ShrivastavaCommits: 3Joined: 2018-01-17 + + *TelestoCommits: 3Joined: 2018-01-22 @@ -4291,11 +4334,11 @@ *Shubham VermaCommits: 3Joined: 2018-02-17 - - *Laurent GodardCommits: 3Joined: 2018-04-24 + + *Ulkem KasapogluCommits: 3Joined: 2018-07-04 @@ -4305,11 +4348,11 @@ *Omer Fatih CelikCommits: 3Joined: 2019-02-10 - - *Meryem EzberCommits: 3Joined: 2019-02-10 + + *Andrés MaldonadoCommits: 3Joined: 2019-02-21 @@ -4319,11 +4362,11 @@ *Stepas ToliautasCommits: 3Joined: 2019-12-16 - - *Michel ThomasCommits: 3Joined: 2020-02-01 + + *nienzuCommits: 3Joined: 2020-02-19 @@ -4333,11 +4376,11 @@ *Ian Barkley-YeungCommits: 3Joined: 2020-04-06 - - *Pierre MartyCommits: 3Joined: 2020-04-17 + + *Eivind SamsethCommits: 3Joined: 2020-05-16 @@ -4347,11 +4390,11 @@ *mariamfahmyCommits: 3Joined: 2020-10-16 - - *Leo WangCommits: 3Joined: 2020-10-18 + + *Gizem OzgunCommits: 3Joined: 2020-10-23 @@ -4361,11 +4404,11 @@ *Batmunkh DorjgotovCommits: 3Joined: 2021-04-27 - - *Zeynep YavuzCommits: 3Joined: 2021-08-02 + + *Natalia GavrilovaCommits: 3Joined: 2021-09-24 @@ -4375,11 +4418,11 @@ *Arnaud VERSINICommits: 3Joined: 2021-12-19 - - *Renwa HiwaCommits: 3Joined: 2022-02-09 + + *Tushar JhamCommits: 3Joined: 2022-02-21 @@ -4389,19 +4432,22 @@ *Isha_DesaiCommits: 3Joined: 2022-04-06 + + *Shady MohamedCommits: 3Joined: 2022-04-11 + - *Andrea RosettiCommits: 3Joined: 2022-09-15 + *Aman JhaCommits: 3Joined: 2022-04-15 - *Calvince OtienoCommits: 3Joined: 2022-10-14 + *Andrea RosettiCommits: 3Joined: 2022-09-15 - *Stéphane GuillouCommits: 3Joined: 2023-01-03 + *RakielleCommits: 3Joined: 2022-10-14 - *ektagoel12Commits: 3Joined: 2023-01-19 + *Calvince OtienoCommits: 3Joined: 2022-10-14 @@ -4412,16 +4458,27 @@ *RasenkaiCommits: 3Joined: 2023-01-27 - Loiseleur MichelCommits: 2Joined: 2010-09-14 + *Adoche OnajiCommits: 3Joined: 2023-01-30 - *Justin MalcolmCommits: 2Joined: 2010-09-29 + *nirnayCommits: 3Joined: 2023-02-25 + *Vinit AgarwalCommits: 3Joined: 2023-03-06 + + + Loiseleur MichelCommits: 2Joined: 2010-09-14 + + + *Justin MalcolmCommits: 2Joined: 2010-09-29 + + *Seo SanghyeonCommits: 2Joined: 2010-09-29 + + *Sean McNamaraCommits: 2Joined: 2010-09-29 @@ -4431,11 +4488,11 @@ *Sean McMurrayCommits: 2Joined: 2010-10-20 - - *Nadav VinikCommits: 2Joined: 2010-10-21 + + *Marcin eXine MCommits: 2Joined: 2010-11-02 @@ -4445,11 +4502,11 @@ *Christoph NoackCommits: 2Joined: 2010-12-13 - - *Sophie GautierCommits: 2Joined: 2010-12-19 + + *Ed DeanCommits: 2Joined: 2011-01-14 @@ -4459,11 +4516,11 @@ *Karsten GerloffCommits: 2Joined: 2011-02-06 - - *Jean Charles PapinCommits: 2Joined: 2011-02-11 + + *Tobias KranzCommits: 2Joined: 2011-02-17 @@ -4473,11 +4530,11 @@ *Michael NattererCommits: 2Joined: 2011-04-08 - - *Cyril RoelandtCommits: 2Joined: 2011-04-26 + + *Kelly AndersonCommits: 2Joined: 2011-05-31 @@ -4487,11 +4544,11 @@ *Mohammad ElahiCommits: 2Joined: 2011-08-27 - - *Takashi NakamotoCommits: 2Joined: 2011-08-28 + + *Andreu Correa CasablancaCommits: 2Joined: 2011-09-11 @@ -4501,11 +4558,11 @@ *Arno TeigsethCommits: 2Joined: 2011-09-14 - - *Maxim IorshCommits: 2Joined: 2011-10-05 + + *Emanuele FiaCommits: 2Joined: 2011-11-02 @@ -4515,11 +4572,11 @@ *Mateusz ZasuwikCommits: 2Joined: 2011-12-20 - - *Milos SramekCommits: 2Joined: 2012-01-20 + + *Andreas SchierlCommits: 2Joined: 2012-01-30 @@ -4529,11 +4586,11 @@ *UrmasCommits: 2Joined: 2012-02-13 - - *Bartolomé Sánchez SaladoCommits: 2Joined: 2012-02-18 + + *Greggory HernandezCommits: 2Joined: 2012-02-22 @@ -4543,11 +4600,11 @@ *Karthik A PadmanabhanCommits: 2Joined: 2012-03-31 - - *Mark WolfCommits: 2Joined: 2012-04-04 + + *Andrew HigginsonCommits: 2Joined: 2012-04-10 @@ -4557,11 +4614,11 @@ *Ferran VidalCommits: 2Joined: 2012-04-21 - - *Vicente VendrellCommits: 2Joined: 2012-04-23 + + *David SteeleCommits: 2Joined: 2012-04-24 @@ -4571,11 +4628,11 @@ *Marc GarciaCommits: 2Joined: 2012-05-04 - - *Martyn RussellCommits: 2Joined: 2012-06-07 + + *Jesso Clarence MuruganCommits: 2Joined: 2012-06-23 @@ -4585,11 +4642,11 @@ *Yuri DarioCommits: 2Joined: 2012-07-18 - - *Horacio FernandesCommits: 2Joined: 2012-07-20 + + *Andras BartekCommits: 2Joined: 2012-08-06 @@ -4599,11 +4656,11 @@ *Johann MessnerCommits: 2Joined: 2012-08-28 - - *Flex LiuCommits: 2Joined: 2012-09-04 + + *Sergey FarbotkaCommits: 2Joined: 2012-09-21 @@ -4613,11 +4670,11 @@ *Christos StrubulisCommits: 2Joined: 2012-12-09 - - *Arne de BruijnCommits: 2Joined: 2012-12-11 + + *Milan CrhaCommits: 2Joined: 2013-02-07 @@ -4627,11 +4684,11 @@ *Gregg KingCommits: 2Joined: 2013-02-26 - - *Benedikt MorbachCommits: 2Joined: 2013-03-10 + + *Moritz KuettCommits: 2Joined: 2013-03-23 @@ -4641,11 +4698,11 @@ *Janit AnjariaCommits: 2Joined: 2013-04-19 - - *mmeof2Commits: 2Joined: 2013-05-03 + + *Donizete WaterkemperCommits: 2Joined: 2013-05-23 @@ -4655,11 +4712,11 @@ *Jing XianCommits: 2Joined: 2013-06-26 - - *Chris HoppeCommits: 2Joined: 2013-06-27 + + *Ri GangHuCommits: 2Joined: 2013-07-28 @@ -4669,11 +4726,11 @@ *Viktor VargaCommits: 2Joined: 2013-08-28 - - *Janos FaragoCommits: 2Joined: 2013-09-03 + + *Richard HughesCommits: 2Joined: 2013-10-01 @@ -4683,11 +4740,11 @@ *Jagan LokanathaCommits: 2Joined: 2013-11-19 - - *Anderson RobertoCommits: 2Joined: 2014-01-15 + + *Martin LiškaCommits: 2Joined: 2014-03-26 @@ -4697,11 +4754,11 @@ *Hussian AlamriCommits: 2Joined: 2014-05-14 - - *Mukhiddin YusupovCommits: 2Joined: 2014-05-19 + + *Clarence GuoCommits: 2Joined: 2014-05-26 @@ -4711,11 +4768,11 @@ *Boris EgorovCommits: 2Joined: 2014-09-08 - - *YiiChang YenCommits: 2Joined: 2014-10-16 + + *Vinicius VendraminiCommits: 2Joined: 2014-10-22 @@ -4725,11 +4782,11 @@ *Daniel StoneCommits: 2Joined: 2014-10-29 - - *Supreme AryalCommits: 2Joined: 2014-12-04 + + *Gary HoustonCommits: 2Joined: 2014-12-15 @@ -4739,11 +4796,11 @@ *Clément LassieurCommits: 2Joined: 2014-12-21 - - *Rimas KudelisCommits: 2Joined: 2015-01-06 + + *dbeurleCommits: 2Joined: 2015-01-12 @@ -4753,11 +4810,11 @@ *gamebusterzCommits: 2Joined: 2015-02-19 - - *Piet van OostrumCommits: 2Joined: 2015-03-12 + + *Laszlo Kis-AdamCommits: 2Joined: 2015-03-12 @@ -4767,11 +4824,11 @@ *Jingtao YanCommits: 2Joined: 2015-03-23 - - *Austin ChenCommits: 2Joined: 2015-03-25 + + *Valter MuraCommits: 2Joined: 2015-06-07 @@ -4781,11 +4838,11 @@ *Lubosz SarneckiCommits: 2Joined: 2015-08-20 - - *alexey.chemichevCommits: 2Joined: 2015-11-18 + + *Sheikha AL-HinaiCommits: 2Joined: 2015-12-28 @@ -4795,11 +4852,11 @@ *Kenneth KoskiCommits: 2Joined: 2016-02-20 - - *ackepenekCommits: 2Joined: 2016-02-21 + + *Martin NathansenCommits: 2Joined: 2016-04-18 @@ -4809,11 +4866,11 @@ *Akash DeshpandeCommits: 2Joined: 2016-08-13 - - *Sophie SuCommits: 2Joined: 2016-08-27 + + *sllCommits: 2Joined: 2016-09-06 @@ -4823,11 +4880,11 @@ *Tibor MógerCommits: 2Joined: 2016-12-06 - - *G_ZoltanCommits: 2Joined: 2016-12-27 + + *George KorepanovCommits: 2Joined: 2017-01-06 @@ -4837,11 +4894,11 @@ *JeevanCommits: 2Joined: 2017-03-04 - - *blendergeekCommits: 2Joined: 2017-04-08 + + *Alexey VlasovCommits: 2Joined: 2017-04-12 @@ -4851,11 +4908,11 @@ *Yash SrivastavCommits: 2Joined: 2017-06-20 - - *Sabin FrandesCommits: 2Joined: 2017-09-15 + + *Your NameCommits: 2Joined: 2017-10-09 @@ -4865,11 +4922,11 @@ *Furkan TokacCommits: 2Joined: 2017-10-25 - - *Timotej LazarCommits: 2Joined: 2017-11-22 + + *martinb214Commits: 2Joined: 2017-11-28 @@ -4879,11 +4936,11 @@ *Denis ArnaudCommits: 2Joined: 2018-01-16 - - *brian houston morrowCommits: 2Joined: 2018-01-24 + + *Dmitri KharchevCommits: 2Joined: 2018-01-27 @@ -4891,292 +4948,281 @@ *Andika TriwidadaCommits: 2Joined: 2018-02-15 - *Franklin WengCommits: 2Joined: 2018-02-28 - - - - *Victor MireyevCommits: 2Joined: 2018-05-04 *Kevin DubrulleCommits: 2Joined: 2018-07-07 + + *George WoodCommits: 2Joined: 2018-07-25 *Réka CsékeiCommits: 2Joined: 2018-10-09 - - *Simon QuigleyCommits: 2Joined: 2018-10-11 *Mark DoboCommits: 2Joined: 2018-10-20 + + *Izabela BakollariCommits: 2Joined: 2018-10-27 *Alyssa RossCommits: 2Joined: 2018-11-18 - - *Tóth AttilaCommits: 2Joined: 2018-12-30 *Patrik VasCommits: 2Joined: 2018-12-31 + + *Dawid GanCommits: 2Joined: 2019-01-09 *Sass DávidCommits: 2Joined: 2019-01-09 - - *kaishu-sahuCommits: 2Joined: 2019-01-27 *Phil KrylovCommits: 2Joined: 2019-02-10 + + *Muzaffer Kadir YILMAZCommits: 2Joined: 2019-02-10 *Alexander FarrowCommits: 2Joined: 2019-03-19 - - *Jaromir WysogladCommits: 2Joined: 2019-03-27 *Rtch90Commits: 2Joined: 2019-04-22 + + *DarkByt31Commits: 2Joined: 2019-04-22 *wishawaCommits: 2Joined: 2019-04-29 - - *DaeHyun SungCommits: 2Joined: 2019-06-01 *John ZhangCommits: 2Joined: 2019-09-23 + + *Mayank SumanCommits: 2Joined: 2019-10-03 *shameempkCommits: 2Joined: 2019-10-09 - - *Mattia RizzoloCommits: 2Joined: 2019-10-23 *Batuhan Görkem BenzerCommits: 2Joined: 2019-12-18 + + *Desmin AlpaslanCommits: 2Joined: 2019-12-18 *Luca CarlonCommits: 2Joined: 2020-01-11 - - *Bjoern KirchhoffCommits: 2Joined: 2020-01-15 *Burak BalaCommits: 2Joined: 2020-01-25 + + *Marina LatiniCommits: 2Joined: 2020-02-11 *AlanTangCommits: 2Joined: 2020-02-25 - - *jamesCommits: 2Joined: 2020-02-28 *Andrew Lee (李健秋)Commits: 2Joined: 2020-03-07 + + *Jean-Louis FuchsCommits: 2Joined: 2020-03-10 *shivammoreCommits: 2Joined: 2020-03-18 - - *FatihCommits: 2Joined: 2020-04-23 *Yunusemre ŞentürkCommits: 2Joined: 2020-05-14 + + *Ilkyu JuCommits: 2Joined: 2020-08-08 *Nnamani EzinneCommits: 2Joined: 2020-08-22 - - *Luke DixonCommits: 2Joined: 2020-08-30 *Sven LüppkenCommits: 2Joined: 2020-10-30 + + *Zeynep İnkayaCommits: 2Joined: 2020-11-21 *Gül ToksözCommits: 2Joined: 2020-11-21 - - *Bartu BayazıtCommits: 2Joined: 2020-11-21 *Mücahid AydinCommits: 2Joined: 2020-11-21 + + *ShyamPraveenSinghCommits: 2Joined: 2020-11-24 *DuP-491Commits: 2Joined: 2020-12-13 - - *siddheshpatil777Commits: 2Joined: 2020-12-19 *halfhiddencodeCommits: 2Joined: 2020-12-26 + + *princesinghtomarCommits: 2Joined: 2020-12-28 *AlchemistCommits: 2Joined: 2020-12-31 - - *ShobhitCommits: 2Joined: 2021-01-30 *Quan NguyenCommits: 2Joined: 2021-02-09 + + *Eyal RozenbergCommits: 2Joined: 2021-02-13 *Buse OrakCommits: 2Joined: 2021-02-13 - - *MoazCommits: 2Joined: 2021-02-21 *Winston Min TjongCommits: 2Joined: 2021-03-02 + + *Gökay ŞatırCommits: 2Joined: 2021-03-14 *PanosCommits: 2Joined: 2021-03-23 - - *rounakCommits: 2Joined: 2021-03-31 *sarynasserCommits: 2Joined: 2021-04-10 + + *Mihail BalabanovCommits: 2Joined: 2021-04-11 *haru-02Commits: 2Joined: 2021-04-21 - - *Sabyasachi BhoiCommits: 2Joined: 2021-07-22 *HuilinCommits: 2Joined: 2021-07-24 + + *oguzbalkayaCommits: 2Joined: 2021-08-03 *Ankur KhandelwalCommits: 2Joined: 2021-08-09 - - *Karan AbrolCommits: 2Joined: 2021-08-11 *Emanuel SchorschCommits: 2Joined: 2021-10-04 + + *HarjotCommits: 2Joined: 2021-11-17 *Pesi TaototoCommits: 2Joined: 2021-12-05 - - *Sinduja YCommits: 2Joined: 2022-02-07 *Kunal PawarCommits: 2Joined: 2022-02-10 + + *psidiumcodeCommits: 2Joined: 2022-02-15 *Gautham KrishnanCommits: 2Joined: 2022-03-01 - - *mostafa-elsharnobyCommits: 2Joined: 2022-03-28 *Rizal MuttaqinCommits: 2Joined: 2022-04-05 - - *Vincent ReherCommits: 2Joined: 2022-04-06 - - - *Shady MohamedCommits: 2Joined: 2022-04-11 - - *Aman JhaCommits: 2Joined: 2022-04-15 + *Vincent ReherCommits: 2Joined: 2022-04-06 *LukasCommits: 2Joined: 2022-04-20 @@ -5218,9 +5264,6 @@ - *RakielleCommits: 2Joined: 2022-10-14 - - *insanetreeCommits: 2Joined: 2022-10-17 @@ -5229,11 +5272,11 @@ *Emanuele GoldoniCommits: 2Joined: 2022-11-07 - - *Tarcísio Ladeia de OliveiraCommits: 2Joined: 2022-11-22 + + *DowwdyJCommits: 2Joined: 2023-01-17 @@ -5241,1912 +5284,1953 @@ *PLCommits: 2Joined: 2023-01-28 - *Adoche OnajiCommits: 2Joined: 2023-01-30 + *anfanite396Commits: 2Joined: 2023-02-01 + + + *Uday SharmaCommits: 2Joined: 2023-02-11 - *Vojtěch DoležalCommits: 2Joined: 2023-02-13 + *niket1322gitCommits: 2Joined: 2023-02-22 - *niket1322gitCommits: 2Joined: 2023-02-22 + *Abdallah ElhdadCommits: 2Joined: 2023-03-02 - *Patrick LubyCommits: 2Joined: 2023-02-28 + *Supriyo PaulCommits: 2Joined: 2023-03-03 - *NeilBrownCommits: 1Joined: 2010-09-28 + *adityasingh22Commits: 2Joined: 2023-03-08 + *Jani SaranpääCommits: 2Joined: 2023-03-22 + + + *NeilBrownCommits: 1Joined: 2010-09-28 + + *Alexandr N. ZamaraevCommits: 1Joined: 2010-10-01 *Nick SavageCommits: 1Joined: 2010-10-01 + + *Neil StalkerCommits: 1Joined: 2010-10-02 *Evertjan GarretsenCommits: 1Joined: 2010-10-04 - - *Denis LackovicCommits: 1Joined: 2010-10-05 *krishnan parthasarathiCommits: 1Joined: 2010-10-07 + + *Rubén JáñezCommits: 1Joined: 2010-10-11 *Trevor MurphyCommits: 1Joined: 2010-10-20 - - *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 *Adrià Cereto MassaguéCommits: 1Joined: 2010-10-26 + + *Kalman KemenczyCommits: 1Joined: 2010-10-28 *Alexandre FournierCommits: 1Joined: 2010-11-06 - - *Christopher BackhouseCommits: 1Joined: 2010-12-06 *pavelCommits: 1Joined: 2010-12-10 + + *camilleCommits: 1Joined: 2010-12-13 *Freek de KruijfCommits: 1Joined: 2010-12-19 - - *Paolo PozzanCommits: 1Joined: 2010-12-19 *Dan CorneanuCommits: 1Joined: 2010-12-29 + + *armijnCommits: 1Joined: 2010-12-30 *AWASHIRO IkuyaCommits: 1Joined: 2011-01-04 - - *Andy HearnCommits: 1Joined: 2011-01-09 *Nikita OfitserovCommits: 1Joined: 2011-01-10 + + *Guillaume FillolCommits: 1Joined: 2011-01-29 *pgajdosCommits: 1Joined: 2011-01-31 - - *Andreas SliwkaCommits: 1Joined: 2011-02-06 *Andrey TurkinCommits: 1Joined: 2011-02-09 + + *Danny RobertsCommits: 1Joined: 2011-02-18 *Jean-Yves RoyerCommits: 1Joined: 2011-03-07 - - *Rafael CabralCommits: 1Joined: 2011-03-31 *Alberto RuizCommits: 1Joined: 2011-03-31 + + *Paulo JoséCommits: 1Joined: 2011-04-01 *Dona HertelCommits: 1Joined: 2011-04-14 - - *Maxime CôtéCommits: 1Joined: 2011-04-19 *Chris CheneyCommits: 1Joined: 2011-04-27 + + *Jan NieuwenhuizenCommits: 1Joined: 2011-04-28 *Cassio NeriCommits: 1Joined: 2011-05-01 - - *Marcel HBCommits: 1Joined: 2011-05-03 *William LachanceCommits: 1Joined: 2011-06-08 + + *Jeff AignerCommits: 1Joined: 2011-06-09 *David PenzesCommits: 1Joined: 2011-06-14 - - *Dolives BenoitCommits: 1Joined: 2011-07-04 *Ta Duc TungCommits: 1Joined: 2011-08-08 + + *Christophe StrobbeCommits: 1Joined: 2011-08-09 *Andor ErtseyCommits: 1Joined: 2011-09-04 - - *Hugo Beauzée-LuyssenCommits: 1Joined: 2011-09-28 *Bernhard M. WiedemannCommits: 1Joined: 2011-10-17 + + *Stefan WeigelCommits: 1Joined: 2011-10-17 *Pádraig BradyCommits: 1Joined: 2011-10-21 - - *Andrew WestCommits: 1Joined: 2011-10-21 *Matt PrattCommits: 1Joined: 2011-11-02 + + *Karl KoehlerCommits: 1Joined: 2011-11-11 *Modestas RimkusCommits: 1Joined: 2011-11-21 - - *Roman EiseleCommits: 1Joined: 2011-11-23 *Serg BormantCommits: 1Joined: 2011-11-28 + + *Juan Pablo Martínez CortésCommits: 1Joined: 2011-11-28 *JesseCommits: 1Joined: 2011-12-14 - - *Vincent PovirkCommits: 1Joined: 2011-12-19 *Moritz BechlerCommits: 1Joined: 2011-12-19 + + *James CCommits: 1Joined: 2011-12-20 *Tzvetelina TzenevaCommits: 1Joined: 2011-12-22 - - *Victor LeeCommits: 1Joined: 2011-12-24 *Joshua CogliatiCommits: 1Joined: 2012-01-06 + + *Kenneth AafløyCommits: 1Joined: 2012-01-11 *Rich WarehamCommits: 1Joined: 2012-01-12 - - *Da'angh KhagarothCommits: 1Joined: 2012-01-16 *Ankitkumar Rameshchandra PatelCommits: 1Joined: 2012-01-20 + + *Martin RichardCommits: 1Joined: 2012-01-31 *dbarisakkurtCommits: 1Joined: 2012-02-02 - - *Daniel MihalyiCommits: 1Joined: 2012-02-06 *Carsten NiehausCommits: 1Joined: 2012-02-09 + + *Masataka ShinkeCommits: 1Joined: 2012-02-15 *Fernando GovernatoreCommits: 1Joined: 2012-02-25 - - *Juergen SteinhilberCommits: 1Joined: 2012-03-05 *Italo VignoliCommits: 1Joined: 2012-03-09 + + *Karan DesaiCommits: 1Joined: 2012-04-01 *Arfrever Frehtes Taifersar ArahesisCommits: 1Joined: 2012-04-02 - - *Aldo Román NureñaCommits: 1Joined: 2012-04-09 *Laureano G. LindeCommits: 1Joined: 2012-04-15 + + *Udo SchuermannCommits: 1Joined: 2012-04-16 *Ross BurtonCommits: 1Joined: 2012-04-18 - - *Jaime NavarroCommits: 1Joined: 2012-04-20 *Florent GallaireCommits: 1Joined: 2012-04-21 + + *Vicente Rafael Estevez VacasCommits: 1Joined: 2012-04-22 *Monica Ramirez ArcedaCommits: 1Joined: 2012-04-23 - - *Javier Silva SanahujaCommits: 1Joined: 2012-04-23 *Xavi Escriche GalindoCommits: 1Joined: 2012-04-24 + + *Jose ManuelCommits: 1Joined: 2012-04-25 *Miguel FernándezCommits: 1Joined: 2012-04-26 - - *Javier CatalaCommits: 1Joined: 2012-04-26 *Jordi MallachCommits: 1Joined: 2012-05-03 + + *Gordon LackCommits: 1Joined: 2012-05-09 *Daniel NaberCommits: 1Joined: 2012-05-09 - - *Ionut BiruCommits: 1Joined: 2012-05-14 *Alberto FerreiraCommits: 1Joined: 2012-06-08 + + *Travis CarterCommits: 1Joined: 2012-06-22 *Peter TillemansCommits: 1Joined: 2012-06-26 - - *Phil HartCommits: 1Joined: 2012-06-29 *Kevin PengCommits: 1Joined: 2012-07-20 + + *Tim-Philipp MüllerCommits: 1Joined: 2012-07-29 *Tim JanikCommits: 1Joined: 2012-08-10 - - *Joseph BrownCommits: 1Joined: 2012-08-14 *Kevin HausmannCommits: 1Joined: 2012-08-17 + + *Dave RichardsCommits: 1Joined: 2012-08-22 *DaveCommits: 1Joined: 2012-08-23 - - *Marco BiscaroCommits: 1Joined: 2012-08-27 *Nico WeyandCommits: 1Joined: 2012-09-02 + + *Douglas Rodrigues de AlmeidaCommits: 1Joined: 2012-09-15 *sagarCommits: 1Joined: 2012-09-15 - - *Andrew RistCommits: 1Joined: 2012-10-05 *Neven ĆosićCommits: 1Joined: 2012-10-08 + + *Chen ZuoJunCommits: 1Joined: 2012-10-08 *Philipp KaluzaCommits: 1Joined: 2012-10-21 - - *LesterCommits: 1Joined: 2012-10-23 *Mathieu DCommits: 1Joined: 2012-11-19 + + *Naser SharifiCommits: 1Joined: 2012-11-26 *Paula MannesCommits: 1Joined: 2012-11-30 - - *Olivier PlotonCommits: 1Joined: 2012-12-12 *pkoroau pkoroauCommits: 1Joined: 2012-12-20 + + *Quentin PradetCommits: 1Joined: 2012-12-21 *Tadele AssefaCommits: 1Joined: 2013-01-15 - - *Dennis E. HamiltonCommits: 1Joined: 2013-01-19 *OKANO TakayoshiCommits: 1Joined: 2013-01-29 + + *Mark WrightCommits: 1Joined: 2013-02-09 *Christopher HotchkissCommits: 1Joined: 2013-02-15 - - *Andrew BranchCommits: 1Joined: 2013-02-20 *Martin BrownCommits: 1Joined: 2013-02-23 + + *Hamza AbdelkebirCommits: 1Joined: 2013-02-23 *Valek FilippovCommits: 1Joined: 2013-02-23 - - *Kenneth BeckCommits: 1Joined: 2013-03-02 *Jiri BlechaCommits: 1Joined: 2013-03-02 + + *Gábor NyersCommits: 1Joined: 2013-03-02 *Vojta KoukalCommits: 1Joined: 2013-03-03 - - *Ondřej SmržCommits: 1Joined: 2013-03-10 *Steven MeyerCommits: 1Joined: 2013-03-13 + + *vincentCommits: 1Joined: 2013-03-22 *Johannes WidmerCommits: 1Joined: 2013-03-23 - - *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 *Lucian ConstantinCommits: 1Joined: 2013-03-24 + + *Tomas TurekCommits: 1Joined: 2013-03-24 *Goran RakicCommits: 1Joined: 2013-03-30 - - *Hansgerd SchneiderCommits: 1Joined: 2013-04-02 *Honza MinarikCommits: 1Joined: 2013-04-03 + + *Ashish BanerjeeCommits: 1Joined: 2013-04-04 *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 - - *Jakub GolebiewskiCommits: 1Joined: 2013-04-09 *Pavel KacerCommits: 1Joined: 2013-04-11 + + *tinderboxCommits: 1Joined: 2013-04-11 *Alex IvanCommits: 1Joined: 2013-04-15 - - *Ota ChasákCommits: 1Joined: 2013-04-24 *Jan BobisudCommits: 1Joined: 2013-04-29 + + *Yohei YukawaCommits: 1Joined: 2013-05-06 *ricardobottoCommits: 1Joined: 2013-05-18 - - *Jonathan SchultzCommits: 1Joined: 2013-05-22 *Neil Voss (fourier)Commits: 1Joined: 2013-05-24 + + *Tim RichardsonCommits: 1Joined: 2013-06-04 *Eric S. RaymondCommits: 1Joined: 2013-06-07 - - *Jean-François Fortin TamCommits: 1Joined: 2013-06-10 *Benjamin OtteCommits: 1Joined: 2013-06-15 + + *Peng GaoCommits: 1Joined: 2013-06-16 *sonakshi nathaniCommits: 1Joined: 2013-06-26 - - *Alaa.BukhariCommits: 1Joined: 2013-07-04 *Erik AuerswaldCommits: 1Joined: 2013-07-09 + + *Reem.ALotaibiCommits: 1Joined: 2013-07-25 *Michael DuelliCommits: 1Joined: 2013-08-01 - - *Srijan ChoudharyCommits: 1Joined: 2013-08-10 *AdrienCommits: 1Joined: 2013-08-18 + + *Stefano FacchiniCommits: 1Joined: 2013-08-22 *James Michael DuPontCommits: 1Joined: 2013-08-30 - - *Raymond WellsCommits: 1Joined: 2013-09-02 *Danny BrownCommits: 1Joined: 2013-09-18 + + *Henning DiedlerCommits: 1Joined: 2013-11-02 *matt_51Commits: 1Joined: 2013-11-05 - - *Rolf KoetterCommits: 1Joined: 2013-11-05 *yjw9012Commits: 1Joined: 2013-12-30 + + *Ayantha RandikaCommits: 1Joined: 2014-01-23 *Michal SiedlaczekCommits: 1Joined: 2014-01-25 - - *J. Fernando LagrangeCommits: 1Joined: 2014-02-02 *christianjuCommits: 1Joined: 2014-02-10 + + *Mathias SuppCommits: 1Joined: 2014-02-25 *Tarun KumarCommits: 1Joined: 2014-03-07 - - *Jason GerlowskiCommits: 1Joined: 2014-03-07 *roopak12345Commits: 1Joined: 2014-03-09 + + *Manas JoshiCommits: 1Joined: 2014-03-17 *gdm.manmeetCommits: 1Joined: 2014-03-18 - - *Milan ZelenkaCommits: 1Joined: 2014-03-26 *Hannah LyhneCommits: 1Joined: 2014-04-01 + + *Aditya KaleCommits: 1Joined: 2014-04-01 *Ryo ONODERACommits: 1Joined: 2014-04-07 - - *Michal HorakCommits: 1Joined: 2014-04-21 *Alex GulyásCommits: 1Joined: 2014-04-27 + + *Apostolos SyropoulosCommits: 1Joined: 2014-05-07 *nrbrtx@gmail.comCommits: 1Joined: 2014-06-10 - - *Shreyansh GandhiCommits: 1Joined: 2014-06-10 *Damien ChambeCommits: 1Joined: 2014-06-15 + + *Robin KumarCommits: 1Joined: 2014-06-17 *Dushyant BhalgamiCommits: 1Joined: 2014-07-04 - - *Fahad Al-SaidiCommits: 1Joined: 2014-07-16 *Martin OwensCommits: 1Joined: 2014-07-27 + + *Heiko ScheidtCommits: 1Joined: 2014-08-03 *xjclCommits: 1Joined: 2014-08-04 - - *Audrey TangCommits: 1Joined: 2014-08-05 *Hiroto KagotaniCommits: 1Joined: 2014-08-19 + + *Jörg SonnenbergerCommits: 1Joined: 2014-08-28 *PhyzerCommits: 1Joined: 2014-09-13 - - *Babu VincentCommits: 1Joined: 2014-09-19 *Seyeong KimCommits: 1Joined: 2014-10-06 + + *Lennart PoetteringCommits: 1Joined: 2014-10-09 *Arkadiusz MiśkiewiczCommits: 1Joined: 2014-10-09 - - *Ruggero CyrilleCommits: 1Joined: 2014-10-18 *Victor PortellaCommits: 1Joined: 2014-11-05 + + *Jonathan RiddellCommits: 1Joined: 2014-11-22 *Foo Lai ChooCommits: 1Joined: 2014-11-26 - - *galbarnissanCommits: 1Joined: 2014-12-03 *Mattias PõldaruCommits: 1Joined: 2014-12-06 + + *Juan A. Suarez RomeroCommits: 1Joined: 2014-12-15 *Maarten HoesCommits: 1Joined: 2014-12-20 - - *Pieter AdriaensenCommits: 1Joined: 2014-12-21 *Andreas K. Huettel (dilfridge)Commits: 1Joined: 2015-01-04 + + *Péter SzathmáryCommits: 1Joined: 2015-01-07 *Edmund LaugassonCommits: 1Joined: 2015-01-07 - - *Michael KovarikCommits: 1Joined: 2015-01-07 *ZirkCommits: 1Joined: 2015-01-07 + + *Simon WilperCommits: 1Joined: 2015-01-24 *Swachhand LokhandeCommits: 1Joined: 2015-03-07 - - *Michael HornCommits: 1Joined: 2015-03-21 *Karthick Prasad GunasekaranCommits: 1Joined: 2015-03-22 + + *robert BabiakCommits: 1Joined: 2015-03-25 *Dobra GaborCommits: 1Joined: 2015-04-02 - - *Jorge Cunha MendesCommits: 1Joined: 2015-04-03 *Sujith SudhakaranCommits: 1Joined: 2015-04-07 + + *Petr GajdosCommits: 1Joined: 2015-04-07 *ritztroCommits: 1Joined: 2015-04-11 - - *massinissaHamidiCommits: 1Joined: 2015-05-07 *Yurii KolesnykovCommits: 1Joined: 2015-05-10 + + *Sam TukeCommits: 1Joined: 2015-05-21 *umairshahidCommits: 1Joined: 2015-05-29 - - *Antoine CœurCommits: 1Joined: 2015-06-11 *Jihui ChoiCommits: 1Joined: 2015-06-22 + + *Raj NatarajanCommits: 1Joined: 2015-07-23 *Florian EffenbergerCommits: 1Joined: 2015-08-04 - - *Fernando PiraniCommits: 1Joined: 2015-08-04 *Nathan WellsCommits: 1Joined: 2015-09-03 + + *Joan ParaisoCommits: 1Joined: 2015-09-25 *Slávek BankoCommits: 1Joined: 2015-10-10 - - *Timothée IsnardCommits: 1Joined: 2015-10-11 *marstayCommits: 1Joined: 2015-10-18 + + *GhasanCommits: 1Joined: 2015-11-09 *Mihovil StanićCommits: 1Joined: 2015-11-11 - - *Keigo KawamuraCommits: 1Joined: 2015-11-16 *Steve HartCommits: 1Joined: 2015-11-17 + + *Reto SchneiderCommits: 1Joined: 2015-11-20 *Willian BriottoCommits: 1Joined: 2015-11-21 - - *Nicola PovoleriCommits: 1Joined: 2015-11-28 *Paolo BernardiCommits: 1Joined: 2015-11-30 + + *Pierre SauterCommits: 1Joined: 2015-12-01 *William BonnetCommits: 1Joined: 2015-12-05 - - *Johannes HaufCommits: 1Joined: 2015-12-31 *Debarshi RayCommits: 1Joined: 2016-01-08 + + *shubhamtibraCommits: 1Joined: 2016-01-16 *Nusaiba Al-KindiCommits: 1Joined: 2016-01-21 - - *Gabriele PonzoCommits: 1Joined: 2016-01-29 *Marc BessièresCommits: 1Joined: 2016-01-29 + + *Christoph BrillCommits: 1Joined: 2016-02-09 *Hank LeiningerCommits: 1Joined: 2016-02-27 - - *Apachev IvanCommits: 1Joined: 2016-03-08 *HaidongWuCommits: 1Joined: 2016-03-09 + + *Mohamed ThabetCommits: 1Joined: 2016-03-13 *Dag WieersCommits: 1Joined: 2016-03-13 - - *Alexandru MoscuCommits: 1Joined: 2016-03-18 *Gleb MishchenkoCommits: 1Joined: 2016-03-22 + + *JBurantCommits: 1Joined: 2016-04-05 *sunwebCommits: 1Joined: 2016-04-08 - - *Seraphime KirkovskiCommits: 1Joined: 2016-04-29 *Nurhak ALTINCommits: 1Joined: 2016-05-01 + + *PeterCommits: 1Joined: 2016-05-03 *PrashantCommits: 1Joined: 2016-05-17 - - *Sam TygierCommits: 1Joined: 2016-05-22 *Helena SvobodovaCommits: 1Joined: 2016-05-25 + + *Zhengqiang WangCommits: 1Joined: 2016-06-02 *anwilli5Commits: 1Joined: 2016-06-06 - - *emahaldar/emCommits: 1Joined: 2016-06-13 *Mike SaundersCommits: 1Joined: 2016-06-20 + + *Otto KekäläinenCommits: 1Joined: 2016-07-03 *Julian MehneCommits: 1Joined: 2016-08-04 - - *James ClarkeCommits: 1Joined: 2016-08-05 *Yan PashkovskyCommits: 1Joined: 2016-08-12 + + *rpmbuildCommits: 1Joined: 2016-08-15 *Zenaan HarknessCommits: 1Joined: 2016-08-22 - - *Andrea MussapCommits: 1Joined: 2016-10-02 *Ilya PonamarevCommits: 1Joined: 2016-10-05 + + *JookiaCommits: 1Joined: 2016-10-08 *Mirco RondiniCommits: 1Joined: 2016-10-10 - - *Chandanathil P. GeevanCommits: 1Joined: 2016-10-24 *Шиповський РоманCommits: 1Joined: 2016-10-28 + + *Tamás GulácsiCommits: 1Joined: 2016-11-11 *Owen GenatCommits: 1Joined: 2016-11-20 - - *Christina AccioneCommits: 1Joined: 2016-11-22 *n5xgdhCommits: 1Joined: 2016-12-04 + + *Justn LavoieCommits: 1Joined: 2016-12-30 *thvalloisCommits: 1Joined: 2017-01-03 - - *Saurav SachidanandCommits: 1Joined: 2017-01-17 *Aleix PolCommits: 1Joined: 2017-01-19 + + *yellowflash104Commits: 1Joined: 2017-02-12 *Mike GorseCommits: 1Joined: 2017-03-11 - - *Atef haresCommits: 1Joined: 2017-03-12 *ComputingDwarfCommits: 1Joined: 2017-03-12 + + *Umang JainCommits: 1Joined: 2017-03-13 *udaycoderCommits: 1Joined: 2017-03-14 - - *Dennis NielenCommits: 1Joined: 2017-03-21 *Andreas SägerCommits: 1Joined: 2017-03-26 + + *Gabriel HerreraCommits: 1Joined: 2017-04-05 *Werner TietzCommits: 1Joined: 2017-04-11 - - *nikkiCommits: 1Joined: 2017-04-12 *Catherine VanceCommits: 1Joined: 2017-04-17 + + *Naeil ZOUEIDICommits: 1Joined: 2017-04-26 *frederic vromanCommits: 1Joined: 2017-05-12 - - *KappanneoCommits: 1Joined: 2017-05-29 *Arianna MascioliniCommits: 1Joined: 2017-05-29 + + *Francesco GradiCommits: 1Joined: 2017-05-29 *dcvbCommits: 1Joined: 2017-07-06 - - *Sean StanglCommits: 1Joined: 2017-07-09 *Luke DellerCommits: 1Joined: 2017-07-12 + + *Aditya DewanCommits: 1Joined: 2017-07-15 *serdarot5Commits: 1Joined: 2017-08-05 - - *Sanjaykumar Girishkumar PatelCommits: 1Joined: 2017-08-19 *Dinh LeCommits: 1Joined: 2017-09-05 + + *66kesara99Commits: 1Joined: 2017-09-23 *Stoyan DimitrovCommits: 1Joined: 2017-10-01 - - *nigeldiasCommits: 1Joined: 2017-10-02 *Matti LehtonenCommits: 1Joined: 2017-10-07 + + *Tjipke van der HeideCommits: 1Joined: 2017-10-12 *Kristóf UmannCommits: 1Joined: 2017-10-25 - - *qzhengCommits: 1Joined: 2017-11-14 *Suhail AlkowaileetCommits: 1Joined: 2017-12-25 + + *Dominique LeuenbergerCommits: 1Joined: 2018-01-05 *Gabriele PonzoCommits: 1Joined: 2018-02-06 - - *Rostislav KondratenkoCommits: 1Joined: 2018-02-21 *ReshmaCommits: 1Joined: 2018-03-09 + + *HrishabhCommits: 1Joined: 2018-03-10 *Álex PuchadesCommits: 1Joined: 2018-03-14 - - *kowtherCommits: 1Joined: 2018-04-06 *Nithin Kumar PadavuCommits: 1Joined: 2018-04-07 + + *Kevin Brubeck UnhammerCommits: 1Joined: 2018-04-14 *Heiko TietzeCommits: 1Joined: 2018-04-16 - - *DiadloCommits: 1Joined: 2018-05-23 *Fred KruseCommits: 1Joined: 2018-05-28 + + *orbeaCommits: 1Joined: 2018-06-01 *Louis SautierCommits: 1Joined: 2018-06-10 - - *Ali AhmadiCommits: 1Joined: 2018-06-26 *SalimHabchiCommits: 1Joined: 2018-07-11 + + *Caio B. SilvaCommits: 1Joined: 2018-07-23 *U-Vladimir\VadimCommits: 1Joined: 2018-08-05 - - *Don LewisCommits: 1Joined: 2018-08-22 *Bijan TabatabaiCommits: 1Joined: 2018-08-26 + + *Leo MoonsCommits: 1Joined: 2018-08-26 *AlicVBCommits: 1Joined: 2018-10-17 - - *Alain RomedenneCommits: 1Joined: 2018-11-22 *Howard JohnsonCommits: 1Joined: 2018-11-25 + + *Rizal MuttaqinCommits: 1Joined: 2018-12-18 *Çağrı DolazCommits: 1Joined: 2018-12-30 - - *Doğa Deniz ArıcıCommits: 1Joined: 2018-12-30 *Andreas SturmlechnerCommits: 1Joined: 2019-01-08 + + *KomalCommits: 1Joined: 2019-01-12 *Ajay MahatoCommits: 1Joined: 2019-01-21 - - *Jim JagielskiCommits: 1Joined: 2019-01-23 *Yusuf SonmezCommits: 1Joined: 2019-02-10 + + *Michael SchroederCommits: 1Joined: 2019-02-25 *Sainal ShahCommits: 1Joined: 2019-03-10 - - *Wenzhe PeiCommits: 1Joined: 2019-03-11 *VaibhavCommits: 1Joined: 2019-03-17 + + *kushagrakasliwal1Commits: 1Joined: 2019-03-18 *Greg VeldmanCommits: 1Joined: 2019-03-24 - - *Gagandeep SinghCommits: 1Joined: 2019-04-01 *Jason BurnsCommits: 1Joined: 2019-04-08 + + *RegisCommits: 1Joined: 2019-04-09 *Milutin SmiljanicCommits: 1Joined: 2019-04-19 - - *Andrew HyattCommits: 1Joined: 2019-05-02 *Cor NouwsCommits: 1Joined: 2019-05-23 + + *Jens CarlCommits: 1Joined: 2019-05-27 *Jay BinghamCommits: 1Joined: 2019-06-03 - - *Jim MacArthurCommits: 1Joined: 2019-06-11 *Jim MacArthurCommits: 1Joined: 2019-07-07 + + *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 *AWASHIRO IkuyaCommits: 1Joined: 2019-08-17 + + *Tim BartlettCommits: 1Joined: 2019-08-19 *Nicolas FellaCommits: 1Joined: 2019-09-01 - - *Dennis SchriddeCommits: 1Joined: 2019-10-04 *Peter LevineCommits: 1Joined: 2019-10-18 + + *Rasmus ThomsenCommits: 1Joined: 2019-10-26 *Martin MilataCommits: 1Joined: 2019-12-04 - - *shashikdmCommits: 1Joined: 2019-12-08 *Selim ŞekerCommits: 1Joined: 2019-12-18 + + *Sıla GençCommits: 1Joined: 2019-12-20 *ertoCommits: 1Joined: 2019-12-20 - - *Andrés MaldonadoCommits: 1Joined: 2019-12-26 *cagatayCommits: 1Joined: 2019-12-28 + + *Elzem AtayCommits: 1Joined: 2020-01-04 *Louis MeyratCommits: 1Joined: 2020-01-12 - - *Cumali ToprakCommits: 1Joined: 2020-01-27 *Serkan ÖzkayaCommits: 1Joined: 2020-01-28 + + *Emiliano VavassoriCommits: 1Joined: 2020-02-04 *praneshulleriCommits: 1Joined: 2020-02-11 - - *Kris van der MerweCommits: 1Joined: 2020-02-16 *Adam MajerCommits: 1Joined: 2020-02-19 + + *Sarabjot SinghCommits: 1Joined: 2020-02-28 *Matteo CasalinCommits: 1Joined: 2020-03-04 - - *TJ HoltCommits: 1Joined: 2020-03-12 *So YanaiharaCommits: 1Joined: 2020-03-21 + + *Harshit JainCommits: 1Joined: 2020-03-23 *Wyatt TurnerCommits: 1Joined: 2020-03-26 - - *mikiCommits: 1Joined: 2020-04-09 *Alexander VolkovCommits: 1Joined: 2020-04-09 + + *Coming___soONCommits: 1Joined: 2020-04-09 *Pavel KlevakinCommits: 1Joined: 2020-04-17 - - *Markus KellerCommits: 1Joined: 2020-05-01 *Martin WhitakerCommits: 1Joined: 2020-05-08 + + *vgeofCommits: 1Joined: 2020-05-09 *Igor PoboikoCommits: 1Joined: 2020-05-22 - - *Muhammet KaraCommits: 1Joined: 2020-05-24 *Ilia SheshukovCommits: 1Joined: 2020-06-04 + + *zdposterCommits: 1Joined: 2020-06-10 *Yakov ReztsovCommits: 1Joined: 2020-06-15 - - *Pranam LashkariCommits: 1Joined: 2020-06-20 *Shiro KawaiCommits: 1Joined: 2020-06-26 + + *Baurzhan MuftakhidinovCommits: 1Joined: 2020-07-12 *Octavio AlvarezCommits: 1Joined: 2020-07-16 - - *tgds03Commits: 1Joined: 2020-08-16 *ramtk6726Commits: 1Joined: 2020-08-16 + + *OctopusETCommits: 1Joined: 2020-08-17 *HochwasserCommits: 1Joined: 2020-09-17 - - *Felix WiegandCommits: 1Joined: 2020-09-25 *Travis StewartCommits: 1Joined: 2020-10-01 + + *Bryan GazaliCommits: 1Joined: 2020-10-03 *NikhilCommits: 1Joined: 2020-10-04 - - *DanielCommits: 1Joined: 2020-10-10 *Platon PronkoCommits: 1Joined: 2020-10-19 + + *gerritCommits: 1Joined: 2020-10-19 *Betül İnceCommits: 1Joined: 2020-10-22 - - *Ismael OleaCommits: 1Joined: 2020-10-28 *Jeff LawCommits: 1Joined: 2020-11-03 + + *TRaXInCommits: 1Joined: 2020-11-10 *ArdaCommits: 1Joined: 2020-11-21 - - *lastirembenderCommits: 1Joined: 2020-11-21 *Henrik KarlssonCommits: 1Joined: 2020-11-26 + + *ganeshdevareCommits: 1Joined: 2020-11-29 *Edward LynchCommits: 1Joined: 2020-11-29 - - *cu-16bcs1798Commits: 1Joined: 2020-12-02 *gar SoulCommits: 1Joined: 2020-12-08 + + *cseguraCommits: 1Joined: 2021-01-03 *Quentin PAGÈSCommits: 1Joined: 2021-01-06 - - *Isah BllacaCommits: 1Joined: 2021-01-08 *anirudhSCommits: 1Joined: 2021-01-10 + + *Antje KazimiersCommits: 1Joined: 2021-01-30 *Linus HeckemannCommits: 1Joined: 2021-02-07 - - *vipbuoyCommits: 1Joined: 2021-02-14 *Quentin DELAGECommits: 1Joined: 2021-02-18 + + *Victor KukshievCommits: 1Joined: 2021-02-18 *heet-2312Commits: 1Joined: 2021-03-01 - - *JohnCommits: 1Joined: 2021-03-04 *ViswaasLPCommits: 1Joined: 2021-03-12 + + *Mani KumarCommits: 1Joined: 2021-03-17 *arpit1912Commits: 1Joined: 2021-03-19 - - *pekka-devCommits: 1Joined: 2021-03-21 *Mehmet Sait GülmezCommits: 1Joined: 2021-03-22 + + *bykiviCommits: 1Joined: 2021-03-23 *Aritz ErkiagaCommits: 1Joined: 2021-03-25 - - *anirudh4583Commits: 1Joined: 2021-03-26 *David BlatterCommits: 1Joined: 2021-03-31 + + *Felipe LemaCommits: 1Joined: 2021-04-01 *Oleksii MakhotinCommits: 1Joined: 2021-04-06 - - *Vatsal32Commits: 1Joined: 2021-04-07 *Carmen Bianca BakkerCommits: 1Joined: 2021-04-11 + + *Steve FanningCommits: 1Joined: 2021-04-11 *Joshua WilliamsCommits: 1Joined: 2021-05-22 - - *MarcoFalkeCommits: 1Joined: 2021-06-03 *Uwe AuerCommits: 1Joined: 2021-07-12 + + *YakovlevAlCommits: 1Joined: 2021-07-15 *Aleś BułojčykCommits: 1Joined: 2021-09-27 - - *Rishav ChattopadhyaCommits: 1Joined: 2021-10-23 *mwarnerCommits: 1Joined: 2021-11-25 + + *TheRock BuilderCommits: 1Joined: 2021-12-03 *Urja RannikkoCommits: 1Joined: 2021-12-05 - - *Krzysztof HałasaCommits: 1Joined: 2021-12-29 *altCommits: 1Joined: 2022-01-04 + + *ArjunCommits: 1Joined: 2022-01-23 *yaldaCommits: 1Joined: 2022-01-25 - - *javierde22Commits: 1Joined: 2022-01-30 *jwtiyar narimanCommits: 1Joined: 2022-02-14 + + *Adityarup LahaCommits: 1Joined: 2022-03-12 *Łukasz LeszkoCommits: 1Joined: 2022-03-17 - - *Lemures LemniscatiCommits: 1Joined: 2022-03-17 *Sarrah BastawalaCommits: 1Joined: 2022-03-21 + + *Behrad KhorramCommits: 1Joined: 2022-04-03 *Zain IftikharCommits: 1Joined: 2022-04-16 - - *hasban12138Commits: 1Joined: 2022-04-28 *Daniel Kamil KozarCommits: 1Joined: 2022-05-03 + + *Dietrich SchultenCommits: 1Joined: 2022-06-11 *Diane LeighCommits: 1Joined: 2022-06-18 - - *Mahdyar M. M. SadeghiCommits: 1Joined: 2022-06-22 *Mahkame ArabgariCommits: 1Joined: 2022-06-22 + + *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 *Sakura286Commits: 1Joined: 2022-07-26 + + *Thierry EmeryCommits: 1Joined: 2022-08-08 *Niko FinkCommits: 1Joined: 2022-08-09 - - *Skyler GreyCommits: 1Joined: 2022-08-19 *cutamarCommits: 1Joined: 2022-08-28 + + *Aleksa SavicCommits: 1Joined: 2022-09-02 *Ling YangCommits: 1Joined: 2022-09-07 - - *Aron FischerCommits: 1Joined: 2022-09-23 *Nalini Prasad DashCommits: 1Joined: 2022-10-04 + + *Martin SchumannCommits: 1Joined: 2022-10-10 *Hemant Kumar SinghCommits: 1Joined: 2022-10-18 - - *Henner DrewesCommits: 1Joined: 2022-10-21 *sahilbutoal08Commits: 1Joined: 2022-10-30 + + *Amarjargal GundjalamCommits: 1Joined: 2022-10-31 *zonnebloempjeCommits: 1Joined: 2022-11-03 - - *SiddharthCommits: 1Joined: 2022-11-09 *Jonas EyovCommits: 1Joined: 2022-11-18 + + *Theppitak KaroonboonyananCommits: 1Joined: 2022-11-25 *Đoàn Trần Công DanhCommits: 1Joined: 2022-11-27 - - *ahsmhaCommits: 1Joined: 2022-12-26 *Brett T. WardenCommits: 1Joined: 2022-12-30 + + *Douglas GuptillCommits: 1Joined: 2023-01-01 *ShulhanCommits: 1Joined: 2023-01-12 + + *Devansh JainCommits: 1Joined: 2023-02-04 + + + *Greg KelesidisCommits: 1Joined: 2023-02-04 + - *anfanite396Commits: 1Joined: 2023-02-01 + *deepanshuraj099Commits: 1Joined: 2023-02-12 - *Devansh JainCommits: 1Joined: 2023-02-04 + *gokulakrishnan-shankarCommits: 1Joined: 2023-02-16 - *Greg KelesidisCommits: 1Joined: 2023-02-04 + *WANG XueruiCommits: 1Joined: 2023-02-17 - *deepanshuraj099Commits: 1Joined: 2023-02-12 + *Sarthak RoyCommits: 1Joined: 2023-02-23 + + + + + *Grigory A. MozhaevCommits: 1Joined: 2023-02-27 + + + *MoazAlaaCommits: 1Joined: 2023-03-05 + + + *jucasacaCommits: 1Joined: 2023-03-06 + + + *Angelle LegerCommits: 1Joined: 2023-03-10 - *NirnayKCommits: 1Joined: 2023-02-25 + *DrGigioSanCommits: 1Joined: 2023-03-14 + + + *Nabeel SiddiquiCommits: 1Joined: 2023-03-19 - *Czeber László ÁdámCommits: 1Joined: 2023-02-27 + *TokieSanCommits: 1Joined: 2023-03-27 - *Abdallah ElhdadCommits: 1Joined: 2023-03-02 + *Sabri UnalCommits: 1Joined: 2023-03-29 - + + + + *jpuronahCommits: 1Joined: 2023-04-03 + + + + Contributors to bundled templates @@ -7789,7 +7873,7 @@ 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 - 2809 individuals contributed: + 2819 individuals contributed: @@ -7797,16 +7881,16 @@ - Hrbrgr (56899) + Hrbrgr (57936) - Beluga (35949) + Beluga (43878) - Marric (29275) + Marric (29421) - Raal (20433) + Raal (21148) @@ -7814,18 +7898,18 @@ SteenRønnow (19458) - HanV (19000) + HanV (19180) - Manuelf (16829) + Manuelf (17313) - Akurery (13570) + Akurery (14263) - Bantoniof (11265) + Bantoniof (11366) Pierre-yves samyn (10099) @@ -7834,7 +7918,7 @@ K-j (9376) - Jayme Barrientos, Adolfo (8375) + Jayme Barrientos, Adolfo (8481) @@ -7842,21 +7926,21 @@ Penny (8374) - Roczek, Dennis (8285) + Roczek, Dennis (8286) - Filmsi (8068) + Filmsi (8136) - Stevefanning (7555) + Stevefanning (7903) - Kelemeng (6521) + Kelemeng (6527) - Gautier, Sophie (5441) + Gautier, Sophie (5452) Goncharuk, Lera (5436) @@ -7865,15 +7949,16 @@ Nogata Jun (5238) + (4614) - Uroveits (4561) + Uroveits (4564) - Yaron (4266) + Yaron (4336) Martin187 (4220) @@ -7881,7 +7966,7 @@ - Kompilainenn (4170) + Kompilainenn (4184) Tagezibot (3924) @@ -7901,7 +7986,7 @@ Kevin, Suo (锁琨珑) (3375) - Jeanweber (3252) + Jeanweber (3286) Rizmut (3232) @@ -7912,10 +7997,10 @@ Hibagonsan (3073) - Noorikhah, Hossein (3024) + Noorikhah, Hossein (3046) - Prcek (2885) + Prcek (2888) LibreOfficiant (2539) @@ -7923,38 +8008,38 @@ - PlateauWolf (2393) + Hallot, Olivier (2402) - Hallot, Olivier (2390) + PlateauWolf (2393) Ronnie rg8888 (2352) - Bielefeld, Rainer (2077) + Diegoperesmarques (2142) - Diegoperesmarques (2039) + Bielefeld, Rainer (2077) - X1sc0 (1838) + X1sc0 (1864) - Effenberger, Florian (1755) + Lyzbet (1827) - Lyzbet (1720) + Enoki (1783) - Enoki (1699) + Effenberger, Florian (1757) - LobaLuna (1696) + LobaLuna (1697) Michaelsen, Björn (1554) @@ -7965,7 +8050,7 @@ - Horáček, Stanislav (1453) + Horáček, Stanislav (1543) Kolarkater (1418) @@ -8027,72 +8112,71 @@ Novak, Nino (976) - Meeks, Michael (958) + Meeks, Michael (959) Tom (926) - LLAP016 (875) - Tietze, Heiko (854) + Tietze, Heiko (866) - Sanz Cabrero, Juan Carlos (830) + Henschel, Regina (836) - H-k (804) + Sanz Cabrero, Juan Carlos (830) - Henschel, Regina (788) + H-k (804) Drew (748) - Behrens, Thorsten (738) + Behrens, Thorsten (739) - Teo91 (733) + RobertG (733) - Jmpierre (729) + Teo91 (733) - RobertG (724) + Jmpierre (729) - Mike.saunders (717) + Mike.saunders (720) - AAAA (695) + AAAA (710) - Iversen, Jan (693) + Kees538 (699) - Kees538 (692) + Iversen, Jan (693) - Rathke, Eike (672) + Rathke, Eike (678) - Floris v (660) + Floris v (661) - Vajna, Miklos (657) + Vajna, Miklos (660) Lachend (647) @@ -8112,10 +8196,10 @@ Raulpacheco (596) - Sam m (565) + Sam m (567) - Lohmaier, Christian (562) + Lohmaier, Christian (563) @@ -8157,7 +8241,7 @@ Jana.urbanova (478) - Stahl, Michael (476) + Stahl, Michael (478) @@ -8165,16 +8249,19 @@ Veracape (472) + Hellotheworld (466) + + Sefran (466) Philips, Yousuf (462) + + Holešovský, Jan (451) - - Mladek, Petr (450) @@ -8182,14 +8269,14 @@ Eskroni (437) - Rmfaile (436) - - - Kaganski, Mike (431) + Kaganski, Mike (436) + Rmfaile (436) + + Timotheonb (421) @@ -8198,11 +8285,11 @@ Gecko (419) + + McNamara, Caolán (410) - - Luz Coelho, Rogério (409) @@ -8212,44 +8299,41 @@ Yoshida, Kohei (407) + + Mohrhard, Markus (397) - - AndrasTimar (393) + Schiavinatto (393) + + Alexander Wilms (392) + + Tardon, David (388) Petr-valach (386) - - - - Schiavinatto (386) - Foral (384) Opensoftpl (381) - - StefanW (379) - - Herissongrognon (378) + StefanW (379) - Hellotheworld (377) + Herissongrognon (378) LenkaD (377) @@ -8263,61 +8347,72 @@ Felipeviggiano (371) + Ady (367) + + Thackert (359) Kara, Muhammet (348) + + Mayan Tigger (347) - - Thiebaud, Norbert (341) + Libo02 (340) + + Vpanter (333) + + Dhsung (331) Pruegsanusak, Korrawit (330) - - Drodriguez (329) Volkerme (329) + + Wget (323) Arranna (322) - - - Kosiorek, Bartosz (311) + Kitaygrad (314) + Kosiorek, Bartosz (313) + + + + Donaldo (305) Khanson679 (305) - Kitaygrad (305) + Tseng, Cheng-Chia (294) - - - Tseng, Cheng-Chia (294) + Cheche (292) + + Heinzws (292) @@ -8327,81 +8422,81 @@ Lillqvist, Tor (292) - - Emanuel A. Marcatinco B. (290) - - Cheche (289) - + + Bergmann, Stephan (281) HARA (279) - - - Ansiklopedici (274) + Valjanovickova (277) - Libo02 (274) + Ansiklopedici (274) + + Epix (268) Helen russian (268) - - Kaplan, Lior (267) Lodahl (264) + + Dayeong (263) Twistios (259) - - Remarques (252) Deemonizer (248) + + Vignoli, Italo (247) Adrianoafonso (246) - - Saraiki (244) Loic (240) + + EricBright (238) + Jeanmi2403 (237) + + Steve (237) - - Maintenance script (235) + + Hogue (233) @@ -8411,57 +8506,60 @@ Mesho (233) - - Bosdonnat, Cédric (231) - - Jeanmi2403 (230) - + + Bedipp (226) Kerwyn (221) - - Naniud (221) Jbfaure (220) + + Almusaireae (219) Mars (219) - - Kkwet38 (218) Gilvanvilarim (217) + + Khirano (215) + Babinecm (212) + + YALÇINSOY, Ayhan (209) - - ZuzuN (208) + + Andreschnabel (207) + Chtfn (207) + + Daveb (207) @@ -8549,7 +8647,7 @@ Det (165) - Ponzo, Gabriele (164) + Ponzo, Gabriele (165) @@ -8560,16 +8658,13 @@ Rosp (163) - Chtfn (162) - - Ckhe1215 (162) - - See (160) + + Snelders, Rob (159) @@ -8579,10 +8674,13 @@ Xystina (154) + + Uminakabkbk (153) + - Uminakabkbk (153) + Goodlinuxuser (151) Pietro (150) @@ -8599,18 +8697,18 @@ Chris-hoh (147) - Valtermura (147) + Kukekko (147) - Back69 (146) + Valtermura (147) - Mamane, Lionel Elie (146) + Back69 (146) - Goodlinuxuser (145) + Mamane, Lionel Elie (146) Kirk (145) @@ -8638,10 +8736,10 @@ - Kukekko (139) + Zolnai, Tamás (139) - Zolnai, Tamás (139) + Guilhem (138) De Cuyper, Joren (138) @@ -8672,16 +8770,13 @@ Pepeleduin (137) - Guilhem (135) - - Norah (135) - - Shunesburg69 (135) + + Filhocf (132) @@ -8691,11 +8786,11 @@ Davydych (131) - - Demetriusb (131) + + Richteruwe (131) @@ -8703,251 +8798,251 @@ Michel, Mathias (129) - Ady (128) - - - - Ikuya (127) Ki Drupadi (127) + + Nik (127) - Baffclan (126) + Nabet, Julien (127) - - - Nabet, Julien (126) + Baffclan (126) RGB.ES (124) + + JARF (123) Krackedpress (123) - - Psluk (123) Trapezus (122) + + JohnSmith (120) Liebel, Jennifer (119) - - Phorious (118) - Lqju96 (117) + Jstnlth (117) + + - Jstnlth (115) + Lqju96 (117) - Spaeth, Sebastian (115) + Stephan.ficht (117) - - - Stephan.ficht (115) + Spaeth, Sebastian (115) Ysabeau (115) + + Markers (114) Massimo.zaffaina (113) - - PulkitKrishna00 (113) Vohe (113) + + Marcus Gama (112) Bachka (111) - - Dougvigliazzi (111) Medieval (111) + + Monthoflibreoffice bot (110) Mantke, Andreas (109) - - Nyucel (108) Salix (107) + + Bitsfritz (104) Klaibson (104) - - MDDN (104) Timur LOL (104) + + Pechlaner, Wolfgang (102) JZA (101) - - WillZ (100) Android272 (99) + + JeHa (99) AlanC (98) - - Dan (95) Vpinheiro (95) + + - Köse, Gülşah (94) + Geraldg (94) - Barbora (93) + Köse, Gülşah (94) - - - Geraldg (93) + Barbora (93) MagicFab (93) + + Andreasg (92) - Lekle (91) + Lekle (92) - - 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) + Xosé (80) + + 80686 (79) - - KeithCu (79) + + Kjh000121 (79) @@ -8955,28 +9050,28 @@ Laveni (79) - Xosé (79) - - - - CharlieRamirezAnimationStudiosMX (78) Jwtiyar (78) + + Marcio Oliveira (78) Northwoods35 (78) - - Ocleyr2lalune (78) + Uwealtmann (78) + + + + Socetk (77) @@ -8985,165 +9080,165 @@ Quikee (76) - - - - Uwealtmann (76) - Albino (75) + + K.K.Ashisuto (75) Emoreno (74) - - Lbalbalba (74) Namikawamisaki (73) + + Rachel618 (73) Castermans, Luc (72) - - Momo50 (72) Aury88 (71) + + RalfHB (71) Sawakaze (71) - - Al-Harthi, Ahmad Hussein (70) Jo7ueb (70) + + Malhassoun (69) Freetank (68) - - Fábio Farias (68) Gghh (68) + + SoNick RND (68) Ptux (67) - - Karbasion, Bersam (65) Bmcs (65) + + Kabe (65) StanG (65) - - Glogowski, Jan-Marek (64) Oipila (64) + + Ptrsk (64) Hanapospisilova (63) - - Kudelis, Rimas (63) Sikeler (63) + + - Popa, Adrian Marius (62) + Thibault, Samuel (63) - Thibault, Samuel (62) + Popa, Adrian Marius (62) - - Denco (61) Frieder (61) + + Jimin (61) Arnaudlecam (60) - - Jlgrenar (60) Montané, Joan (60) + + OctopusET (60) Piotrekr1 (60) - - Tynnoel (59) AndikaTriwidada (58) + + Camillem (58) Neel, Daniel (58) - - + + Kougen250T (58) + Loflex (58) + + Kukan, Matúš (58) @@ -9153,11 +9248,11 @@ Bubli (56) - - Davefilms (56) + + Glen.reesor (56) @@ -9167,11 +9262,11 @@ Ramtk6726 (56) - - Hunt, Andrzej (55) + + Fifh (55) @@ -9181,11 +9276,11 @@ Jrahemipour (55) - - Cornell, Clayton (54) + + Fanthomas (54) @@ -9195,11 +9290,11 @@ Heben2 (53) - - Sunny2038 (53) + + Lendo (52) @@ -9209,11 +9304,11 @@ ArnoldSchiller (51) - - Helmar (51) + + Jaani (51) @@ -9223,11 +9318,11 @@ Agd (50) - - Halparker (50) + + Paz (50) @@ -9237,11 +9332,11 @@ SeoYeonJin (50) - - Mpescador (49) + + Magliocchetti, Riccardo (49) @@ -9251,11 +9346,11 @@ Afaccioli74 (48) - - Lviktoria (48) + + Weghorn, Michael (48) @@ -9265,11 +9360,11 @@ Tomoyuki, Kubota (47) - - Jhannine20 (47) + + Quest-88 (47) @@ -9279,11 +9374,11 @@ Amtliz (46) - - FloF (46) + + Sk94 (46) @@ -9293,11 +9388,11 @@ Bfo (45) - - Hosny, Khaled (45) + + Lua (45) @@ -9307,11 +9402,11 @@ Robwestein (45) - - Bhorst (44) + + Ikh1 (44) @@ -9321,11 +9416,11 @@ Cottage14 (43) - - Gareth (43) + + GerhardW (43) @@ -9335,11 +9430,11 @@ Enger, Terrence (43) - - Donkers, Winfried (43) + + Bluedwarf (42) @@ -9349,11 +9444,11 @@ KAMI (42) - - SangwooPark (42) + + AnXh3L0 (41) @@ -9363,11 +9458,11 @@ Arjunaraoc (41) - - Joey (41) + + Marklh9 (41) @@ -9377,25 +9472,25 @@ Fábio Coelho (40) - - Kraucer (40) + + - Valdirbarbosa (39) + Budea, Áron (39) - Budea, Áron (38) + Valdirbarbosa (39) Enervation (38) - - Partick.auclair (38) + + Pje335 (38) @@ -9405,11 +9500,11 @@ Alex Thurgood (37) - - Cjenkins (37) + + Eliskavotipkova (37) @@ -9419,11 +9514,11 @@ Aragunde Pérez, Jacobo (37) - - Kano (37) + + Kinshuksunil (37) @@ -9433,11 +9528,11 @@ Pavel1513 (37) - - RaducuG (37) + + Sistemo2021 (37) @@ -9447,11 +9542,11 @@ Caco13 (36) - - Danishka (36) + + Patheticcockroach (36) @@ -9461,11 +9556,11 @@ Thep (36) - - Yan Pashkovsky (36) + + Andreas ka (35) @@ -9475,11 +9570,11 @@ Jingtao, Yan (35) - - Liongold (35) + + Nora (35) @@ -9489,11 +9584,11 @@ Stalker08 (35) - - Subramanian, Muthu (35) + + Alg (34) @@ -9503,11 +9598,11 @@ Bormant (33) - - Davidlamhauge (33) + + Kłos, Szymon (33) @@ -9517,11 +9612,11 @@ Corrius, Jesús (33) - - Lmartinezh (33) + + Marrod (33) @@ -9531,11 +9626,11 @@ Pereriksson (33) - - Ptoye (33) + + Rafi (33) @@ -9545,11 +9640,11 @@ Alexanderwerner (32) - - Clio (32) + + Daud (32) @@ -9559,11 +9654,11 @@ Marinello, Marco (32) - - Dryomov, Artur (32) + + Monocat (32) @@ -9573,11 +9668,11 @@ Xuacu (32) - - Chloeeekim (31) + + H (31) @@ -9587,11 +9682,11 @@ Kant, Pranav (31) - - Usayan (31) + + Am97 (30) @@ -9601,11 +9696,11 @@ Maose (30) - - Njsg (30) + + SEVEN (30) @@ -9615,11 +9710,11 @@ Tclovis (30) - - Thardeck (30) + + Acbaird (29) @@ -9629,10 +9724,13 @@ Darbe (29) + + EdvaldoSCruz (29) + - EdvaldoSCruz (29) + Elsass68490 (29) Haaninjo (29) @@ -9641,14 +9739,11 @@ Ledure, Jean-Pierre (29) - Kougen250T (29) + RodolfoRG (29) - RodolfoRG (29) - - Серж (29) @@ -9657,11 +9752,11 @@ Riemer, Philipp (28) - - PaoloPelloni (28) + + المسيكين (28) @@ -9671,11 +9766,11 @@ Marcofilippozzi (27) - - Marcos Paulo de Souza (27) + + Micm (27) @@ -9685,11 +9780,11 @@ Sarojdhakal (27) - - Thuswaldner, Albert (27) + + Alayaran (26) @@ -9699,11 +9794,11 @@ Ezeperez26 (26) - - Fanch (26) + + Librek (26) @@ -9713,11 +9808,11 @@ Linuxman (26) - - Lutch (26) + + Myunghoonju (26) @@ -9727,11 +9822,11 @@ Pirat Michi (26) - - Vaslav (26) + + Aidsoid (25) @@ -9741,11 +9836,11 @@ Roßmanith, Christina (25) - - Freddyrh (25) + + Sullivan, Gatlin (25) @@ -9755,11 +9850,11 @@ Linux 9x (25) - - Manuel De Franceschi (25) + + Noelson (25) @@ -9769,11 +9864,11 @@ Freund, Matthias (25) - - Schröder, Sophia (25) + + Winniemiel05 (25) @@ -9783,11 +9878,11 @@ Elpapki (24) - - Gaianer (24) + + Gérard24 (24) @@ -9797,109 +9892,109 @@ Nik vr (24) - - Olivier (24) - - Elsass68490 (23) - + + Hamurcu (23) Jeppebundsgaard (23) - - Lostinthiswhirlpool (23) Olorin (23) + + Skip-on (23) TaeWong (23) - - Team One (23) Thumperward (23) + + Tommy27 (23) Toxitom (23) - - Trueriver (23) Webmink (23) + + Youngman, Anthony W. (23) Aphaia (22) - - Bellerophon (22) Bjoern (22) + + HenryGR (22) JChimene (22) - - Keymap19 (22) RegisPerdreau (22) + + Roman (22) Flywire (21) - - Johannes (21) Liusiqi43 (21) + + Logisch dede (21) + MichaMuc (21) + + Necdetyucel (21) - - Puster (21) + + Shiko (21) @@ -9909,11 +10004,11 @@ Wayra (21) - - Bugmenot (20) + + Dennisfrancis (20) @@ -9923,15 +10018,18 @@ Grzesiek a (20) - - HeinF (20) + + Icobgr (20) + Kendram (20) + + LLyaudet (20) @@ -9954,6 +10052,9 @@ + Webham (20) + + XMatence (20) @@ -9962,11 +10063,11 @@ Zapata (20) + + A-zakh (19) - - Chernik (19) @@ -9976,11 +10077,11 @@ Guateconexion (19) + + Houbsi (19) - - JaronBaron (19) @@ -9990,11 +10091,11 @@ Funk, Juergen (19) + + Juergenfenn (19) - - Kentarch (19) @@ -10004,253 +10105,261 @@ PeeWee (19) + + Ionita, Teodor-Mircea (19) - - + + Doležal, Vojtěch (18) + Ehsan.movahed (18) Foolfitz (18) + + Hidayet (18) Jstaerk (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) - MichaMuc (17) + Pinto, Marco A.G. (17) + + Tõnnov, Mihkel (17) Rubembarreto (17) - - Sohyun99 (17) Taken (17) + + Uli.l (17) Zu, Ximeng (17) - - Yumakino (17) Беломир (17) + + Airon90 (16) Alexpikptz (16) - - Dhersh (16) - Janus (16) + Elucches (16) + + - Kingu (16) + Janus (16) - Pinto, Marco A.G. (16) + Kingu (16) - - MoIshihara (16) Oweng (16) + + P.Guimberteau (16) PauGNU (16) - - Ristoi (16) Smarquespt (16) + + Smrabelo (16) Syntaxerrormmm (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) + + Thorogood, Tom (15) Ulf hamburg (15) - - Yecril21pl (15) 暗影遺言 (15) + + Adsoncristian (14) AliIsingor (14) - - Darkcircle (14) + DrRobotto (14) + + + + Elrath (14) @@ -10259,11 +10368,11 @@ Francis59 (14) - - Guuml (14) + + Halencarjunior (14) @@ -10273,11 +10382,11 @@ Librosaurus (14) - - Dixon, Luke (14) + + Mderoucy (14) @@ -10287,11 +10396,11 @@ Reinsle (14) - - RiderExMachina (14) + + Susobhang70 (14) @@ -10301,11 +10410,11 @@ Tamiliam (14) - - Testnoda (14) + + Thangamani-arun (14) @@ -10315,11 +10424,11 @@ Akoscomp (13) - - Alrt84 (13) + + Alyssonware (13) @@ -10329,429 +10438,421 @@ Cedric31 (13) - - Crolidge (13) - - DrRobotto (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) Rafaelhlima (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) 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) ChrSchultz (10) - - Diginin (10) Eagles051387 (10) + + Eduardogula (10) Eficheux (10) - - El7r (10) J.baer (10) + + Jdittrich (10) Joacim (10) - - Kadertarlan (10) Kirill NN (10) + + Linuxuser330250 (10) Lionlinux (10) - - Mesutcfc (10) Chung, Elton (10) + + Mikalai (10) Morvan (10) - - Mpumrlova (10) Nateyee (10) + + Offtkp (10) Olea (10) - - Otto (10) Paour (10) + + Revol (10) Ronja (10) - - Tatat (10) Tomg (10) + + Ttocsmij (10) Twstdude0to1 (10) - - User8192 (10) Wlenon (10) + + Al-Abdulrazzaq, Abdulmajeed (9) Agger (9) - - Aicra (9) Brandner, Andreas (9) + + AtkinsSJ (9) Camargo (9) - - Cnuss (9) Compressor nickel (9) + + Crazyskeggy (9) - Doležal, Vojtěch (9) - - - - Dupreyb (9) @@ -10760,11 +10861,11 @@ Gibi (9) + + GisbertFriege (9) - - Goranrakic (9) @@ -10774,11 +10875,11 @@ Jonatoni (9) + + Jopsen (9) - - Jowyta (9) @@ -10788,11 +10889,11 @@ Lapetec (9) + + Lexeii (9) - - Mapper (9) @@ -10802,11 +10903,11 @@ Meo (9) + + MertTumer (9) - - Msaffron (9) @@ -10816,11 +10917,11 @@ Onting (9) + + Oprea.luci (9) - - PaoloVecchi (9) @@ -10830,11 +10931,11 @@ Foley, Peter (9) + + Pixpray (9) - - Dricot, Lionel (9) @@ -10844,11 +10945,11 @@ Rogawa (9) + + Rpr (9) - - Rptr (9) @@ -10858,11 +10959,11 @@ Spyros (9) + + Therabi (9) - - Urdulizer (9) @@ -10872,11 +10973,11 @@ Zhangxiaofei (9) + + ميدو (9) - - Alexxed (8) @@ -10886,42 +10987,50 @@ AndreasL (8) + + Ausserirdischegesund (8) - - Cocofan (8) + Cono (8) + + Cusiri (8) + + Cwendling (8) Dashohoxha (8) - - DrDub (8) Ed Eyles (8) + + Elacheche (8) + EyalRozenberg (8) + + Horst (8) - - Israel Chaves (8) + + JR (8) @@ -10931,11 +11040,11 @@ Jrsiqueira (8) - - Jslozier (8) + + Hoffimann Mendes, Júlio (8) @@ -10945,11 +11054,11 @@ Kednar (8) - - Rietveld, Kristian (8) + + Lee (8) @@ -10959,11 +11068,11 @@ Leo.h.hildebrandt (8) - - Luisgulo (8) + + Manj k (8) @@ -10973,11 +11082,11 @@ NightMonkey (8) - - NirajanPant (8) + + Osnola (8) @@ -10987,11 +11096,11 @@ Peterpall (8) - - Ricardolau (8) + + Thejack (8) @@ -11001,11 +11110,11 @@ Troumad (8) - - Vbkaisetsu (8) + + VlhOwn (8) @@ -11015,11 +11124,11 @@ Yellow.h (8) - - Yostane (8) + + Kabatsayev, Ruslan (7) @@ -11029,11 +11138,11 @@ Andrea.soragna (7) - - Bastik (7) + + Belkacem77 (7) @@ -11043,11 +11152,11 @@ Bjherbison (7) - - Bookman900 (7) + + Borim7 (7) @@ -11057,11 +11166,11 @@ Chin Zee Yuen (7) - - Ciaran (7) + + Dado (7) @@ -11071,11 +11180,11 @@ Esbardu (7) - - Bateman, George (7) + + GuKK-Devel (7) @@ -11085,11 +11194,11 @@ Ingotian (7) - - Levith (7) + + Lonelyhiker (7) @@ -11099,11 +11208,11 @@ Mariosv (7) - - Marton (7) + + Mbayer (7) @@ -11113,11 +11222,11 @@ Francis, Matthew (7) - - Nathanjh13 (7) + + Ndduong (7) @@ -11127,11 +11236,11 @@ Christener, Nicolas (7) - - Olivier DDB (7) + + Opensas (7) @@ -11141,11 +11250,11 @@ Polte (7) - - RMCampos (7) + + Ravi (7) @@ -11155,11 +11264,11 @@ Rodo (7) - - Scottclarke (7) + + Shady (7) @@ -11169,11 +11278,11 @@ Shaunrobot (7) - - Simosx (7) + + Tonnysmile (7) @@ -11183,11 +11292,11 @@ Wabuo (7) - - Webfork (7) + + Woordje (7) @@ -11197,11 +11306,11 @@ Alexandrorodrigez (6) - - Alpha (6) + + Armin Dänzer (6) @@ -11211,11 +11320,11 @@ Higginson, Andrew (6) - - Barend (6) + + Bobe (6) @@ -11225,11 +11334,11 @@ Cagatayyigit (6) - - CassieLX (6) + + Cccfr (6) @@ -11237,294 +11346,294 @@ ClausKofoed (6) - Cono (6) - - - - Coypu (6) Dag (6) + + BEN MANSOUR, Mohamed-Ali (6) Ddxavier (6) - - Dfriedman (6) DotnetCarpenter (6) + + Mencken, Douglas (6) Dr.Faust (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) - - Perezj (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) + Bayramcicek (5) + + + + BillRVA (5) @@ -11533,11 +11642,11 @@ BloodIce (5) - - Cray85 (5) + + Dejourdain (5) @@ -11547,459 +11656,459 @@ Dmtrs32 (5) - - DoFoWerner (5) - - EyalRozenberg (5) - + + Faiq Aminuddin (5) Fazbdillah (5) - - Florian.haftmann (5) Fpy (5) + + Francewhoa (5) GaboXandre (5) - - Ggurley (5) Gpoussel (5) + + Gustav (5) H.Sparks (5) - - Habib (5) Hatochan (5) + + HubPfalz (5) Hummer5354 (5) - - HwangTW (5) Icyitscold (5) + + Jambdev (5) Jaysponsored (5) - - JoeP (5) John.pratt (5) + + KadlecOn (5) Kamataki (5) - - Klausmach (5) Koji Annoura (5) + + LibreOfficeUser1 (5) Mak (5) - - Mgaster (5) Midimarcus (5) + + Laplante, Chris (5) Mtg (5) - - Mtnyildrm (5) Namikawa (5) + + OSVALDO LINS VIANA (5) Orcmid (5) - - Pepe (5) Pkoroau (5) + + Poeml (5) Quwex (5) - - Radish (5) Rajesh (5) + + Raknor (5) Raulpaes (5) - - Rautamiekka (5) ReneEngelhard (5) + + Rhoslyn (5) Rogerio DA (5) - - Rsolipa (5) SabinGC (5) + + Salavine1 (5) Samson (5) - - Chvátal, Tomáš (5) Kurmann, Roland (5) + + Sergej (5) Shivam (5) - - Silva.arapi (5) So solid moo (5) + + Srividya (5) Sswales (5) - - Starseeker (5) Taylorh140 (5) + + Terentev.mn (5) Tranzistors (5) - - Wasdin (5) Wt (5) + + Yury Tarasievich (5) AHi (4) - - Aalam (4) Aaronkyle (4) + + Aas (4) Adderbox76 (4) - - Adrien.Ollier (4) Agron (4) + + Albertoeda (4) Nureña, Aldo Román (4) - - Alex1 (4) Alexstrand7 (4) + + AliKhP (4) Alvarenga (4) - - Alzoo (4) Amire80 (4) + + Andréb (4) Archlid (4) - - Arhitectul (4) Arverne73 (4) + + Axel (4) Azorpid (4) - - Bardo (4) BathuAlike (4) + + Widl, Bernhard (4) Bigbek (4) - - Blender3dartist (4) Bntser (4) + + Cam AW (4) Clairedwood (4) - - ConquerorsHaki (4) Crankybot (4) + + CyrilBeaussier (4) Dante (4) - - Deivan (4) Dmerker (4) + + DmitryRamones (4) Doubi (4) - - Dragon (4) Robertson, Daniel (4) + + Eisaks (4) Erx700 (4) - - Fmolinero (4) Ftigeot (4) + + Garrowolf (4) Gmjs (4) - - Gokaysatir (4) GwenaelQ (4) + + Hdu (4) ImperfectlyInformed (4) - - Izabela (4) JKaufmann (4) + + Jamesleader (4) Jessefrgsmith (4) - - Jiehong (4) Jjmeric (4) + + Jjpalacios (4) JnRouvignac (4) - - Jonata (4) Jones (4) + + + + Jonnygrant (4) + Jooste (4) Joriki (4) - - Le Bigot, Jean-Tiare (4) + + Kemalayhan (4) @@ -12009,11 +12118,11 @@ Loren.rogers (4) - - M.m.mozffart (4) + + Haggag, Muhammad (4) @@ -12023,11 +12132,11 @@ Rumianowski, Maciej (4) - - Marinela (4) + + Mikedoherty ca (4) @@ -12037,11 +12146,11 @@ Morgan greywolf (4) - - Mortgage01 (4) + + NGHLibreOffice (4) @@ -12051,11 +12160,11 @@ Offidocs (4) - - Orson69 (4) + + Oscar90210 (4) @@ -12065,11 +12174,11 @@ Paranemertes (4) - - PatrickJ (4) + + Pegasus (4) @@ -12079,11 +12188,11 @@ Philj (4) - - Phillip.davis (4) + + van Oostrum, Pieter (4) @@ -12093,11 +12202,11 @@ Prolog.guy (4) - - Psao (4) + + Qubit-test (4) @@ -12107,11 +12216,11 @@ Rebahozkoc (4) - - Reyn100 (4) + + Ricgal (4) @@ -12121,11 +12230,11 @@ Rodhos (4) - - Sasha (4) + + Sealview (4) @@ -12135,11 +12244,11 @@ Stevenmw (4) - - Surat (4) + + Tct (4) @@ -12149,11 +12258,11 @@ Thetic (4) - - Tk (4) + + Tlequire (4) @@ -12163,11 +12272,11 @@ Ufas (4) - - UlKu (4) + + Urhixidur (4) @@ -12177,11 +12286,11 @@ V., Artem (4) - - Wcolen (4) + + Wikiuser (4) @@ -12191,6 +12300,9 @@ Wpeixoto (4) + + §chinagl (4) + @@ -12385,11 +12497,14 @@ Ferlodev (3) - Fraang (3) + Fofr11 (3) + Fraang (3) + + Franzjakob (3) @@ -12398,11 +12513,11 @@ Fulldecent (3) + + FunkyPenguin (3) - - Gmasei (3) @@ -12412,11 +12527,11 @@ Gouchi (3) + + Smaha, Guillaume (3) - - Hansgerd.schneider (3) @@ -12426,11 +12541,11 @@ Herrmarder (3) + + Hwpplayer1 (3) - - IanL (3) @@ -12440,11 +12555,11 @@ Imcon (3) + + It-christian (3) - - IvanMM (3) @@ -12454,11 +12569,11 @@ Jammon (3) + + Jcrben (3) - - Jennifer.park (3) @@ -12468,11 +12583,11 @@ Murugan, Jesso Clarence (3) + + Jhbn (3) - - Jo Cab (3) @@ -12482,11 +12597,11 @@ Johannes Rohr (3) + + Joseroberto (3) - - Juanpabl (3) @@ -12496,11 +12611,11 @@ K Karthikeyan (3) + + Katasisc (3) - - Kbiondi (3) @@ -12510,11 +12625,11 @@ Kevinob (3) + + Kfogel (3) - - Khunshan (3) @@ -12524,11 +12639,11 @@ Kkrothapalli (3) + + LO Rob (3) - - Lennoazevedo (3) @@ -12538,11 +12653,11 @@ Libcub (3) + + Lpranam (3) - - LucaCappelletti (3) @@ -12552,11 +12667,11 @@ Lupp (3) + + Luuk (3) - - Machey (3) @@ -12566,11 +12681,11 @@ Margott (3) + + Marializ (3) - - Matteocam (3) @@ -12580,11 +12695,11 @@ Maxwell (3) + + Measure for Measure (3) - - Melike (3) @@ -12594,11 +12709,11 @@ Mhoes (3) + + Mhsmsantos (3) - - Michaelwheatland (3) @@ -12608,11 +12723,11 @@ Neookano (3) + + NickWingate (3) - - NicksonT (3) @@ -12622,11 +12737,11 @@ Niconil (3) + + Ragnarsson, Björgvin (3) - - Nloira (3) @@ -12636,11 +12751,11 @@ OOarthurOo (3) + + Steinbeiß, Simon (3) - - Ojeremyj (3) @@ -12650,11 +12765,11 @@ Oprea luci (3) + + Penalvch (3) - - Pr410 (3) @@ -12664,11 +12779,11 @@ Rajatvijay (3) + + Rapha.ksf (3) - - Rauloliverpaes (3) @@ -12678,11 +12793,11 @@ RebeccaHodgson (3) + + Rick (3) - - Robert.E.A.Harvey (3) @@ -12692,11 +12807,11 @@ S8321414 (3) + + Sander Klootwijk (3) - - Sangeeta (3) @@ -12706,11 +12821,11 @@ Satabin (3) + + Sayt (3) - - Schroed(ing)er (3) @@ -12720,11 +12835,11 @@ Sergey Aka (3) + + Shelandy (3) - - Skinnerbird (3) @@ -12734,11 +12849,11 @@ Soliac (3) + + Songchuan (3) - - Sotrud nik (3) @@ -12748,124 +12863,124 @@ StefanRing (3) + + + + StefanU (3) + SteveKelem (3) - - Steveo o (3) Strugee (3) + + Suren (3) Sushils (3) - - Taylor46 (3) TheWebalyst (3) + + Tiagosilva.anps (3) Timsamoff (3) - - Tititou36 (3) Kumar, Tarun (3) + + Toki (3) Tomi Toivio (3) - - ToniB (3) Toxifier (3) + + TrnsltLife (3) Tushantin (3) - - Ubap (3) Kitzinger, Ulrich (3) + + Underdog (3) Vinctor (3) - - Vljubovic (3) Wagnerluis1982 (3) + + Khoo, Wei Ming (3) WesPeacock (3) - - Xaker1 (3) Yeominstall (3) + + Yukawa (3) Kolesnykov, Yurii (3) - - Yvon Henel (3) Zaria (3) + + Zaxebo1 (3) - §chinagl (3) - - - - ترجمان05 (3) @@ -12874,11 +12989,11 @@ AbbeyI19jfjc (2) + + AdamPrado8 (2) - - AdrianValdez4 (2) @@ -12888,11 +13003,11 @@ Agarciamog (2) + + Aggelalex (2) - - Alan (2) @@ -12902,11 +13017,11 @@ AliceOliver7 (2) + + Alina12345 (2) - - Alisha (2) @@ -12916,11 +13031,11 @@ AlphonsoNava4 (2) + + Amunizp (2) - - AmyCarney5 (2) @@ -12930,11 +13045,11 @@ AndresChandia (2) + + Andrew (2) - - AndrewKuhn7 (2) @@ -12944,11 +13059,11 @@ Andthebrain (2) + + Anipeter (2) - - Anjar (2) @@ -12958,11 +13073,11 @@ AnnabelMcmullen (2) + + AnnunciationGunn (2) - - Anonimus (2) @@ -12972,11 +13087,11 @@ Jain, Anurag (2) + + Aplatypus (2) - - ApostlesSheldon (2) @@ -12986,11 +13101,11 @@ Asal (2) + + Ashaneba (2) - - Nakashian, Ashod (2) @@ -13000,1022 +13115,1030 @@ Ozdemir, Aybuke (2) + + BZT42 (2) - - Le Garrec, Vincent (2) + Baole.fang (2) + + BernardMeza9 (2) + + Beto (2) BirdRivas2 (2) - - BlazejJones1 (2) BlessedOrozco (2) + + Blume (2) Blushingorg (2) - - BoD (2) Bogcahi (2) + + Boivie (2) Boldizsakawi7 (2) - - BoleslausSaunders (2) Bram (2) + + BrandiToomer (2) BridgetJarvis (2) - - Bruceschaller (2) BryantMclean6 (2) + + ButlerBarron6 (2) C0bb3r (2) - - C1pr1an (2) CallieMvzap (2) + + CallieSalgado (2) CamilleMccarthy (2) - - CandidoRutherford (2) CapistranOleary (2) + + Capri99 (2) CaraDang6 (2) - - Carlosr (2) CarolinaCalling (2) + + CarrieDaniels (2) CarrollRico2 (2) - - Iacob, Catalin (2) CavesGill8 (2) + + Celsovsm (2) Cgrosdemange (2) - - Chabermu (2) ChanieSnow2 (2) + + Chemyakyn (2) ChrisBarth (2) - - ChrzcicielCampbell (2) Cipriano (2) + + Cjbackhouse (2) Cl-r (2) - - ClariceThorne (2) ClaudiaCramer (2) + + Clemen Beek (2) McDonald, Jason C. (2) - - Codingmicha (2) Colabo (2) + + Conrado (2) Coogor (2) - - CoralieCarr7 (2) Crxssi (2) + + CupertinoDarnell (2) Cvk (2) - - CyrillicEscobedo (2) Cœur, Antoine (2) + + DaCaPo (2) Dairdev (2) - - DaisieQuigley (2) Damascene (2) + + DanForrest2 (2) 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) 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) + + 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) - - + + MauroTrevisan (2) + Mazuritz (2) + + Mbemidio (2) @@ -14025,11 +14148,11 @@ MercedesDelatorre (2) - - Merchantbusiness (2) + + Kepplinger, Martin (2) @@ -14039,11 +14162,11 @@ Mesutkullar (2) - - Mgiri (2) + + Michaelx (2) @@ -14053,11 +14176,11 @@ Michel Gagnon (2) - - Michiel (2) + + Mifritscher (2) @@ -14067,11 +14190,11 @@ MinaHuggins7 (2) - - Mind4z (2) + + MinervaLuna8 (2) @@ -14081,11 +14204,11 @@ Mjkopp (2) - - Mklever (2) + + Lechner, Marco (2) @@ -14095,11 +14218,11 @@ Mnalima (2) - - Mnsoto (2) + + Mochir (2) @@ -14109,11 +14232,11 @@ MorganJohnstone (2) - - Rugiero, Mario (2) + + Mst0 (2) @@ -14123,11 +14246,11 @@ Musicstave (2) - - Mustafa22 (2) + + Nathansen, Martin (2) @@ -14137,6 +14260,9 @@ Nacerix (2) + + Nak47 (2) + @@ -15039,19 +15165,16 @@ Vincent, Babu (1) - Bayramcicek (1) - - Bburak (1) Bckurera (1) - - Khorram, Behrad (1) + + BernardHannafor (1) @@ -15061,11 +15184,11 @@ Beyoken (1) - - Beznogov (1) + + Bezzy (1) @@ -15075,11 +15198,11 @@ Bgranados (1) - - Bhumikasethi (1) + + BillyBurke (1) @@ -15089,11 +15212,11 @@ Bittin (1) - - Bjossir (1) + + Bkg2018 (1) @@ -15103,11 +15226,11 @@ BlancheBelstead (1) - - BlancheClopton (1) + + Blandyna (1) @@ -15117,11 +15240,11 @@ Bolo (1) - - Borowcm (1) + + Bortis (1) @@ -15131,11 +15254,11 @@ BrentHawthorne (1) - - BridgettC (1) + + Brinzing, Oliver (1) @@ -15145,11 +15268,11 @@ BryceBrassell (1) - - BryceMoorhouse (1) + + Budo (1) @@ -15159,11 +15282,11 @@ Bureken (1) - - Burger.ga (1) + + Bvarga91 (1) @@ -15173,11 +15296,11 @@ Bzsolt (1) - - BáthoryPéter (1) + + CalebSommer (1) @@ -15187,11 +15310,11 @@ Paul, Cameron (1) - - Capira (1) + + CarloASilva (1) @@ -15201,11 +15324,11 @@ Carlos.gilaranz (1) - - Castarco (1) + + Cathy (1) @@ -15215,11 +15338,11 @@ Cesera (1) - - ChantalWalker (1) + + CharlesJenkins (1) @@ -15229,11 +15352,11 @@ Chmilblick (1) - - Beauzée-Luyssen, Hugo (1) + + ChrPr (1) @@ -15243,11 +15366,11 @@ Christoph.herzog (1) - - Chrlutz (1) + + Ciampix (1) @@ -15257,11 +15380,11 @@ Ciriaco (1) - - Classieur (1) + + Claudio Pannacci (1) @@ -15271,11 +15394,11 @@ Clem (1) - - CletaValentino (1) + + Cnzhx (1) @@ -15285,11 +15408,11 @@ Cora17 (1) - - Corsolibreoffice (1) + + Cosmopolitan (1) @@ -15299,11 +15422,11 @@ Cpinedar (1) - - Cpmipn (1) + + Craigsbookclub (1) @@ -15313,11 +15436,11 @@ Csongorhalmai (1) - - Css17 (1) + + Ctfranz (1) @@ -15327,11 +15450,11 @@ DaisieDavison (1) - - Danichocolate (1) + + Dar18proore (1) @@ -15341,11 +15464,11 @@ DarylAlcantar (1) - - DarylBoot (1) + + Dave (1) @@ -15355,11 +15478,11 @@ Davidmichel (1) - - Davidredick (1) + + DawnOgles (1) @@ -15369,11 +15492,11 @@ Di Marco, Daniel (1) - - DeShark (1) + + DeannaQuaife (1) @@ -15383,11 +15506,11 @@ DeborahW18 (1) - - Decs75 (1) + + Dennisroczek's Test Account (1) @@ -15397,11 +15520,11 @@ Dezsiszabi (1) - - Kis-Ádám, László (1) + + Herde, Daniel (1) @@ -15411,11 +15534,11 @@ Dianasedlak (1) - - Dirgita (1) + + Kettner, Valentin (1) @@ -15425,11 +15548,11 @@ Dldld (1) - - Do Nhu Vy (1) + + DocuFree (1) @@ -15439,11 +15562,11 @@ Dominuk (1) - - Donadel (1) + + DoreenDuell (1) @@ -15453,11 +15576,11 @@ Drizamanuber (1) - - Drlandi (1) + + Drtimwright (1) @@ -15467,11 +15590,11 @@ Dusek (1) - - Dxider (1) + + Eardeleanu (1) @@ -15481,11 +15604,11 @@ Echada (1) - - EdgardoRios (1) + + Edsonlead (1) @@ -15495,11 +15618,11 @@ Efcis (1) - - Efegurkan (1) + + Brill, Christoph (1) @@ -15509,11 +15632,11 @@ Ekuiitr (1) - - ElahiMohammad (1) + + Elliot1415 (1) @@ -15523,11 +15646,11 @@ Elshize (1) - - Emad (1) + + Emanuele.gissi (1) @@ -15537,11 +15660,11 @@ Enesates (1) - - Ennael (1) + + Erasmo (1) @@ -15551,11 +15674,11 @@ Eric (1) - - ErickRijoJr (1) + + Ernsttremel (1) @@ -15565,11 +15688,11 @@ Erto (1) - - Esben aaberg (1) + + EstelaAWTxiu (1) @@ -15579,11 +15702,11 @@ Etua (1) - - Eulerian (1) + + Evfool (1) @@ -15593,11 +15716,11 @@ Factooor (1) - - Falatooni (1) + + Falcao (1) @@ -15607,11 +15730,11 @@ Farhank (1) - - Farlfr (1) + + FarzanehSarafraz (1) @@ -15621,11 +15744,11 @@ Fdem (1) - - Fenchi (1) + + FerminAndrade (1) @@ -15635,11 +15758,11 @@ Fgland (1) - - Flaviodegodoi (1) + + Flirtwomens (1) @@ -15649,11 +15772,11 @@ Foobar (1) - - Fourdollars (1) + + Francesco (1) @@ -15663,11 +15786,11 @@ Fujimoto (1) - - Funnym0nk3y (1) + + Manas Joshi (1) @@ -15677,11 +15800,11 @@ GabrielSwart (1) - - Gabrielcossette (1) + + Gabrielezorzi (1) @@ -15691,11 +15814,11 @@ Gbilotta (1) - - Gcoelho (1) + + GeeZ (1) @@ -15705,11 +15828,11 @@ Geoff newson (1) - - Gerard (1) + + van Valkenhoef, Gert (1) @@ -15719,11 +15842,11 @@ Giancav (1) - - Gicmo (1) + + Gmeijssen (1) @@ -15733,11 +15856,11 @@ Gpmanrpi (1) - - Grahl (1) + + GrantCelley (1) @@ -15747,11 +15870,11 @@ Hernandez, Gregg (1) - - Gregkel (1) + + GroverYQVvwokac (1) @@ -15761,11 +15884,11 @@ Guhde (1) - - Guillaume (1) + + Gxyd (1) @@ -15775,11 +15898,11 @@ HFujimaki (1) - - HKagerer (1) + + HLGZorawdi (1) @@ -15789,11 +15912,11 @@ Hagos (1) - - Hamati (1) + + Hamkins (1) @@ -15803,11 +15926,11 @@ Hasinasi (1) - - Hbr (1) + + Rui Wang (1) @@ -15817,11 +15940,11 @@ HessnovTHR44 (1) - - Heygo (1) + + Heyheyitshay (1) @@ -15831,11 +15954,11 @@ Hillrich (1) - - HiltonFtel (1) + + Hitomi t (1) @@ -15845,11 +15968,11 @@ Hlavaty, Tomas (1) - - Hoaivan27299 (1) + + K, Akshit (1) @@ -15859,11 +15982,11 @@ Hopman (1) - - HoracioRydge (1) + + Hornmichaels (1) @@ -15873,11 +15996,11 @@ Hriostat (1) - - HumbertGno (1) + + Hwoehrle (1) @@ -15887,11 +16010,11 @@ Ian (1) - - Iandol (1) + + Ianjo (1) @@ -15901,11 +16024,11 @@ IbraM (1) - - IceBlur (1) + + Ida (1) @@ -15915,11 +16038,11 @@ Igorizyumin (1) - - Imypsychconsult (1) + + Insanetree (1) @@ -15929,11 +16052,11 @@ Şendur, İrem (1) - - Irene (1) + + IrrevdJohn (1) @@ -15943,11 +16066,11 @@ Ismael (1) - - IvanP (1) + + JDługosz (1) @@ -15957,11 +16080,11 @@ JK2308 (1) - - Jab (1) + + Jailletc36 (1) @@ -15971,11 +16094,11 @@ Jamil (1) - - JanEnEm (1) + + Janani (1) @@ -15985,11 +16108,11 @@ Jano (1) - - Janvlug (1) + + Jayppc (1) @@ -15999,11 +16122,11 @@ Jcdericco (1) - - Chaffraix, Julien (1) + + Jean.fr (1) @@ -16013,11 +16136,11 @@ JeanMcPhillamy (1) - - JefferyMackenna (1) + + Jentron256 (1) @@ -16027,11 +16150,11 @@ Jerdum (1) - - Bicha, Jeremy (1) + + JerryShi (1) @@ -16041,11 +16164,11 @@ Gao, Qiwen (1) - - JestineNww (1) + + Lazar, Timotej (1) @@ -16055,11 +16178,11 @@ Bruhn, Jan-Henrik (1) - - Jinocvla (1) + + JiroMatsuzawa (1) @@ -16069,11 +16192,11 @@ Jmarchn (1) - - Joachim (1) + + Joanluc (1) @@ -16083,11 +16206,11 @@ JoelH (1) - - JohnTheHuman (1) + + Johnplay2 (1) @@ -16097,11 +16220,11 @@ Jonatanpc8 (1) - - JonelleFritz (1) + + Wu, Haidong (1) @@ -16111,11 +16234,11 @@ Jorge Rodríguez Fonseca (1) - - Jorgemendes (1) + + JoseGatica (1) @@ -16125,11 +16248,11 @@ Joshun (1) - - José Eduardo (1) + + Jp.santi (1) @@ -16139,11 +16262,11 @@ Clarke, James (1) - - JudeMcCafferty (1) + + Juergen (1) @@ -16153,11 +16276,11 @@ Picca, Juan (1) - - Jwcampbell (1) + + Dubrulle, Kevin (1) @@ -16167,11 +16290,11 @@ Kapoorsahab (1) - - KatjaG (1) + + Bhat, Kishor (1) @@ -16181,11 +16304,11 @@ Kenb (1) - - Kenneth.venken (1) + + Kenton3255 (1) @@ -16195,11 +16318,11 @@ Kasper, Kacper (1) - - Kkremitzki (1) + + Knobo (1) @@ -16209,11 +16332,11 @@ KoffeinFlummi (1) - - Kosmous (1) + + KourtneNester (1) @@ -16223,11 +16346,11 @@ Krotow (1) - - Kumar, Thangavel (1) + + Kying (1) @@ -16237,11 +16360,11 @@ LMKemm (1) - - LOFF (1) + + LaPingvino (1) @@ -16251,11 +16374,11 @@ LatoshaZnu (1) - - LaverneNavarret (1) + + LavinaVandermar (1) @@ -16265,11 +16388,11 @@ Librestez54 (1) - - Likoski (1) + + LillieNlowccx (1) @@ -16279,11 +16402,11 @@ Literacyglenys (1) - - Litishia (1) + + Liturgist (1) @@ -16293,11 +16416,11 @@ Lnjuanj (1) - - Lobillo (1) + + Lonaowna (1) @@ -16307,11 +16430,11 @@ Lorne (1) - - Lplatypus (1) + + Luca (1) @@ -16321,11 +16444,11 @@ LudieNutter (1) - - Luiz Cláudio (1) + + Luiz Rezende (1) @@ -16335,11 +16458,11 @@ M.sacharewicz (1) - - M1ndfr3ak (1) + + ME-ON1 (1) @@ -16349,11 +16472,11 @@ Maahicool (1) - - Mabel7997eelu (1) + + Maemst (1) @@ -16363,11 +16486,11 @@ Magmag (1) - - Mahdiekrani (1) + + Mahmudul (1) @@ -16377,11 +16500,11 @@ Manveru1986 (1) - - Rizzolo, Mattia (1) + + MarcK (1) @@ -16391,11 +16514,11 @@ MarcoZ (1) - - Biscaro, Marco (1) + + Marcosalex (1) @@ -16405,11 +16528,11 @@ MargoBergman (1) - - MarianaConnell (1) + + Mariano Gaudix (1) @@ -16419,11 +16542,11 @@ Markcoomes (1) - - Markzog21 (1) + + MarthaWaterman (1) @@ -16433,11 +16556,11 @@ Marwan (1) - - Maryanndefo91 (1) + + Masaki tamakoshi (1) @@ -16447,11 +16570,11 @@ Massao (1) - - Mastizada (1) + + Matsuura (1) @@ -16461,820 +16584,812 @@ 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) P12tic (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) - - Vorel, Petr (1) Pharmankur (1) + + Phb.nbnet.nb.ca (1) Pherjung (1) - - PhilDur (1) Philhart (1) + + PhilipTimms (1) Philipp.weissenbacher (1) - - Philippe43 (1) Krylov, Phil (1) + + Phomes (1) Paraiso, Joan (1) - - Pi (1) Piero (1) + + PieterDeBruijn (1) Pietro.caballeri (1) - - Pilavi (1) Piratu (1) + + Piternoize (1) Pjotr (1) - - Pkavinda (1) Plastique (1) + + Plastovicka (1) Moscu, Alexandru (1) - - PopularOutcast (1) Por (1) + + Carter, Travis (1) Prosper (1) - - Psauthor (1) Psmits (1) + + Psychicread531 (1) Vidhey Pv (1) - - Pwz266266 (1) Illarionov, Arkadiy (1) + + Qiguo (1) Qtwallaert (1) - - Quick8130 (1) Quickbooktech (1) + + Qwe (1) Rahuldeshmukh101 (1) - - Rainy (1) Ramonturner (1) + + Randallperry (1) Ratajs (1) - - Ratias (1) Rcampbelllaos (1) + + RebeccaToscano (1) Rettichschnidi (1) - - RexRTEJnlzus (1) Rholler (1) + + Rich (1) Richardprins (1) - - RickieHpejt (1) Riessmi (1) + + Rif (1) Rifkiaz (1) - - Rimas (1) Ringlerloje (1) + + Rion (1) Ritzema, Brent (1) - - Rizobix (1) Kondratenko, Rostislav (1) + + Robert Wetzlmayr (1) Robineh (1) - - Robustchao (1) Rockers (1) + + Rodney78 (1) Rogach (1) - - Deshmukh, Rohit (1) Rombert (1) + + Ron1 (1) Ronakkothari123 (1) - - Ronny (1) Roscoe5731 (1) + + Rosemarie (1) Rpott (1) - - Rsedak (1) RuleAndLine (1) + + Rvr (1) Ryho (1) - - ONODERA, Ryo (1) SallyMorales (1) + + Samanicute (1) Sambhav2612 (1) - - Tygier, Sam (1) Sandeeps (1) + + Sanipache (1) Saracans (1) - - Sariyar (1) Satya kompella (1) + + Sbar1 (1) Sautier, Louis (1) - - Schrillesbunteshamburg (1) Scno (1) + + Sctenebro (1) Sdc (1) - - Ak, Sedat (1) Senopen (1) + + Serdarot5 (1) Seriouslaughbore (1) - - Shay030 (1) ShaynaMan (1) + + SherylMillingto (1) Shore, Shimon (1) - - Shin en (1) Chaurasia, Shobhit (1) + + Shortblack (1) ShyamPraveenSingh (1) - - Siegi (1) Silvestr (1) + + Silvia (1) Simonbr (1) - - Skierpage (1) Smalalur (1) + + Socialmitchell (1) Son Sonson (1) - - Sourabh1031 (1) Sovichet (1) + + SpeedyGonsales (1) Sphericalhorse (1) - - Spreadsheetsorter (1) Srijanani (1) - - StefanU (1) - + + Stewart75H (1) - - Stonehubmn (1) @@ -17284,355 +17399,356 @@ Subhash (1) + + Supportex (1) - - + + Susanne (1) + SusieVeasley (1) Svalo (1) + + SvenHornung (1) Svend-ev (1) - - Sviola (1) Svtlichnijj (1) + + Sébastien C. (1) T-otsuki (1) - - TAQSamueld (1) Talueses (1) + + Tanguy k (1) Thanakanok, Tantai (1) - - TaylorSlemp (1) Techsquirrel (1) + + TeganCreswick (1) Tegas (1) - - Terber (1) Testsflirt (1) + + The Magpie (1) ThePokehach (1) - - Thephilosoft (1) Thom (1) + + Thor574 (1) ThudDriver (1) - - Tifroumi (1) Tigerbeard (1) + + Tilt (1) Tmongkol (1) - - Tomasdd (1) TomofumiYagi (1) + + Viehmann, Thomas (1) Tpokorra (1) - - Transcend (1) Trebledcliff (1) + + TrevorPfe (1) Trondtr (1) - - Ttv20 (1) Tuliouel (1) + + Tuping (1) Thibault, Vallois (1) - - Jain, Umang (1) Udit Sharma (1) + + Shahid, Umair (1) Vincent, Brennan (1) - - Unho (1) UrmasD (1) + + UrsulaHorrell (1) Ushabtay (1) - - VIPSylar (1) VPUJamikajklq (1) + + Vandenoever (1) Veeven (1) - - Vera Cavalcante (1) VernaSchulze (1) + + Vincentvikram (1) Vinkas (1) - - Virus009 (1) WOBFriedauk (1) + + Wadrian (1) WandaSingletary (1) - - Wastl (1) Waynemcl (1) + + Webistrator (1) Wedeluxe (1) - - Wes (1) Westantenna (1) + + Wezchlebaty (1) Wilhelm (1) - - William Avery (1) Williewortel (1) + + Klausner, Thomas (1) Woulouf (1) - - Tjong, Winston Min (1) XSXKristin (1) + + Baudin, Lucas (1) XeroxMe (1) - - Xsdcfghjk (1) Suhail Alkowaileet (1) + + XtinaS (1) Xtrusia (1) - - Xuenhua (1) Yangyiji (1) + + YaroslavRutledge (1) Yazu (1) - - Yeliztaneroglu (1) Desai, Yogesh (1) + + Yoshiharu Kawai (1) Yowbooks (1) - - YvanM (1) Yy y ja jp (1) + + Bölöny, Zsolt (1) ZBMCallumbwire (1) - - Zangune (1) Zibi (1) + + Zizzle (1) Zonnebloempje (1) - - 鄒延 (1) - + - - If you want to replace your Wiki user name with your full name, go to this wiki page and add yourself to the name mapping list. diff -Nru libreoffice-7.4.6/sc/qa/unit/uicalc/uicalc.cxx libreoffice-7.4.7/sc/qa/unit/uicalc/uicalc.cxx --- libreoffice-7.4.6/sc/qa/unit/uicalc/uicalc.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sc/qa/unit/uicalc/uicalc.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -3144,6 +3144,33 @@ CPPUNIT_ASSERT_EQUAL_MESSAGE("font should be bold", WEIGHT_BOLD, aFont.GetWeight()); } +CPPUNIT_TEST_FIXTURE(ScUiCalcTest, testTdf152577) +{ + mxComponent = loadFromDesktop("private:factory/scalc"); + ScModelObj* pModelObj = dynamic_cast(mxComponent.get()); + CPPUNIT_ASSERT(pModelObj); + ScDocument* pDoc = pModelObj->GetDocument(); + CPPUNIT_ASSERT(pDoc); + + insertStringToCell(*pModelObj, "A1", "1"); + insertStringToCell(*pModelObj, "A2", "2"); + insertStringToCell(*pModelObj, "B1", "3"); + insertStringToCell(*pModelObj, "B2", "4"); + + ScDBData* pDBData = new ScDBData("testDB", 0, 0, 0, 1, 1); + bool bInserted + = pDoc->GetDBCollection()->getNamedDBs().insert(std::unique_ptr(pDBData)); + CPPUNIT_ASSERT(bInserted); + + insertNewSheet(*pDoc); + uno::Sequence aArgs( + comphelper::InitPropertySequence({ { "Index", uno::Any(sal_uInt16(2)) } })); + dispatchCommand(mxComponent, ".uno:Remove", aArgs); + + ScDBCollection* pDBs = pDoc->GetDBCollection(); + CPPUNIT_ASSERT(!pDBs->empty()); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.4.6/sc/source/core/data/queryiter.cxx libreoffice-7.4.7/sc/source/core/data/queryiter.cxx --- libreoffice-7.4.6/sc/source/core/data/queryiter.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sc/source/core/data/queryiter.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1219,10 +1219,21 @@ return SortedCacheIndexer(rCells, nStartRow, nEndRow, sortedCache); } -static bool CanBeUsedForSorterCache(ScDocument& rDoc, const ScQueryParam& rParam, - SCTAB nTab, const ScFormulaCell* cell, const ScComplexRefData* refData, - ScInterpreterContext& context) +static bool CanBeUsedForSorterCache(ScDocument& /*rDoc*/, const ScQueryParam& /*rParam*/, + SCTAB /*nTab*/, const ScFormulaCell* /*cell*/, const ScComplexRefData* /*refData*/, + ScInterpreterContext& /*context*/) { +#if 1 + /* TODO: tdf#151958 broken by string query of binary search on sorted + * cache, use the direct query instead for releases and fix SortedCache + * implementation after. Not only COUNTIF() is broken, but also COUNTIFS(), + * and maybe lcl_LookupQuery() for VLOOKUP() etc. as well. Just disable + * this for now. + * Can't just return false because below would be unreachable code. Can't + * just #if/#else/#endif either because parameters would be unused. Crap + * this and comment out parameter names. */ + return false; +#else if(!rParam.GetEntry(0).bDoQuery || rParam.GetEntry(1).bDoQuery || rParam.GetEntry(0).GetQueryItems().size() != 1 ) return false; @@ -1278,6 +1289,7 @@ return false; } return true; +#endif } // Generic query implementation. diff -Nru libreoffice-7.4.6/sc/source/core/tool/interpr1.cxx libreoffice-7.4.7/sc/source/core/tool/interpr1.cxx --- libreoffice-7.4.6/sc/source/core/tool/interpr1.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sc/source/core/tool/interpr1.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -7063,7 +7063,8 @@ if (pResMat) { VectorMatrixAccessor aResMatAcc(*pResMat, bVertical); - // result array is matrix. + // Result array is matrix. + // Note this does not replicate the other dimension. if (o3tl::make_unsigned(nDelta) >= aResMatAcc.GetElementCount()) { PushNA(); @@ -7197,6 +7198,12 @@ { VectorMatrixAccessor aResMatAcc(*pResMat, bVertical); // Use the matrix result array. + // Note this does not replicate the other dimension. + if (o3tl::make_unsigned(nDelta) >= aResMatAcc.GetElementCount()) + { + PushNA(); + return; + } if (aResMatAcc.IsValue(nDelta)) PushDouble(aResMatAcc.GetDouble(nDelta)); else diff -Nru libreoffice-7.4.6/sc/source/core/tool/interpr3.cxx libreoffice-7.4.7/sc/source/core/tool/interpr3.cxx --- libreoffice-7.4.6/sc/source/core/tool/interpr3.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sc/source/core/tool/interpr3.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -3638,8 +3638,8 @@ return; SCSIZE nCol = 0, nRow = 0; - auto aArray = GetTopNumberArray(nCol, nRow); - const auto nRankArraySize = aArray.size(); + const auto aArray = GetTopNumberArray(nCol, nRow); + const size_t nRankArraySize = aArray.size(); if (nRankArraySize == 0 || nGlobalError != FormulaError::NONE) { PushNoValue(); @@ -3667,7 +3667,12 @@ { const SCSIZE k = aRankArray[0]; if (k < 1 || nSize < k) - PushNoValue(); + { + if (!std::isfinite(aArray[0])) + PushDouble(aArray[0]); // propagates error + else + PushNoValue(); + } else { vector::iterator iPos = aSortArray.begin() + (bSmall ? k-1 : nSize-k); @@ -3699,15 +3704,19 @@ else std::sort(aSortArray.begin(), aSortArray.end()); - aArray.clear(); - for (SCSIZE n : aRankArray) + std::vector aResultArray; + aResultArray.reserve(nRankArraySize); + for (size_t i = 0; i < nRankArraySize; ++i) { + const SCSIZE n = aRankArray[i]; if (1 <= n && n <= nSize) - aArray.push_back( aSortArray[bSmall ? n-1 : nSize-n]); + aResultArray.push_back( aSortArray[bSmall ? n-1 : nSize-n]); + else if (!std::isfinite( aArray[i])) + aResultArray.push_back( aArray[i]); // propagate error else - aArray.push_back( CreateDoubleError( FormulaError::NoValue)); + aResultArray.push_back( CreateDoubleError( FormulaError::IllegalArgument)); } - ScMatrixRef pResult = GetNewMat(nCol, nRow, aArray); + ScMatrixRef pResult = GetNewMat(nCol, nRow, aResultArray); PushMatrix(pResult); } } @@ -3912,19 +3921,30 @@ if (!pMat) break; + const SCSIZE nCount = pMat->GetElementCount(); + aArray.reserve(nCount); + // Do not propagate errors from matrix elements as global error. + pMat->SetErrorInterpreter(nullptr); if (pMat->IsNumeric()) { - SCSIZE nCount = pMat->GetElementCount(); - aArray.reserve(nCount); for (SCSIZE i = 0; i < nCount; ++i) aArray.push_back(pMat->GetDouble(i)); - pMat->GetDimensions(rCol, rRow); } else - SetError(FormulaError::IllegalParameter); + { + for (SCSIZE i = 0; i < nCount; ++i) + { + if (pMat->IsValue(i)) + aArray.push_back( pMat->GetDouble(i)); + else + aArray.push_back( CreateDoubleError( FormulaError::NoValue)); + } + } + pMat->GetDimensions(rCol, rRow); } break; default: + PopError(); SetError(FormulaError::IllegalParameter); break; } diff -Nru libreoffice-7.4.6/sc/source/core/tool/refupdat.cxx libreoffice-7.4.7/sc/source/core/tool/refupdat.cxx --- libreoffice-7.4.6/sc/source/core/tool/refupdat.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sc/source/core/tool/refupdat.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -291,8 +291,6 @@ eRet = UR_INVALID; theTab2 = theTab1; } - else if (bCut2 && theTab2 == 0) - eRet = UR_INVALID; else if ( bCut1 || bCut2 ) eRet = UR_UPDATED; if ( bExp ) diff -Nru libreoffice-7.4.6/sc/source/filter/excel/xiescher.cxx libreoffice-7.4.7/sc/source/filter/excel/xiescher.cxx --- libreoffice-7.4.6/sc/source/filter/excel/xiescher.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sc/source/filter/excel/xiescher.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1763,6 +1763,9 @@ Reference< XEmbeddedObject > xEmbObj = pDocShell->GetEmbeddedObjectContainer(). CreateEmbeddedObject( SvGlobalName( SO3_SCH_CLASSID ).GetByteSequence(), aEmbObjName, &sBaseURL ); + if (!xEmbObj) + return xSdrObj; + /* Set the size to the embedded object, this prevents that font sizes of text objects are changed in the chart when the object is inserted into the draw page. */ diff -Nru libreoffice-7.4.6/sc/source/filter/xml/xmlcelli.cxx libreoffice-7.4.7/sc/source/filter/xml/xmlcelli.cxx --- libreoffice-7.4.6/sc/source/filter/xml/xmlcelli.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sc/source/filter/xml/xmlcelli.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1482,7 +1482,7 @@ return false; else if(mbNewValueType && mbErrorValue) return true; - return mbPossibleErrorCell || (mbCheckWithCompilerForError && + return mbPossibleErrorCell || (mbCheckWithCompilerForError && maStringValue && GetScImport().GetFormulaErrorConstant(*maStringValue) != FormulaError::NONE); } diff -Nru libreoffice-7.4.6/sc/source/ui/app/inputwin.cxx libreoffice-7.4.7/sc/source/ui/app/inputwin.cxx --- libreoffice-7.4.6/sc/source/ui/app/inputwin.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sc/source/ui/app/inputwin.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -82,6 +82,7 @@ const tools::Long INPUTWIN_MULTILINES = 6; // Initial number of lines within multiline dropdown const tools::Long TOOLBOX_WINDOW_HEIGHT = 22; // Height of toolbox window in pixels - TODO: The same on all systems? const tools::Long POSITION_COMBOBOX_WIDTH = 18; // Width of position combobox in characters +const int RESIZE_HOTSPOT_HEIGHT = 4; using com::sun::star::uno::Reference; using com::sun::star::uno::UNO_QUERY; @@ -165,6 +166,7 @@ pInputHdl ( nullptr ), mpViewShell ( nullptr ), mnMaxY (0), + mnStandardItemHeight(0), bIsOkCancelMode ( false ), bInResize ( false ) { @@ -238,6 +240,8 @@ HideItem( SID_INPUT_CANCEL ); HideItem( SID_INPUT_OK ); + + mnStandardItemHeight = GetItemRect(SID_INPUT_SUM).GetHeight(); } SetHelpId( HID_SC_INPUTWIN ); // For the whole input row @@ -465,31 +469,36 @@ { ToolBox::Resize(); - Size aSize = GetSizePixel(); + Size aStartSize = GetSizePixel(); + Size aSize = aStartSize; + auto nLines = mxTextWindow->GetNumLines(); //(-10) to allow margin between sidebar and formulabar tools::Long margin = (comphelper::LibreOfficeKit::isActive()) ? 10 : 0; Size aTextWindowSize(aSize.Width() - mxTextWindow->GetPosPixel().X() - LEFT_OFFSET - margin, - mxTextWindow->GetPixelHeightForLines()); + mxTextWindow->GetPixelHeightForLines(nLines)); mxTextWindow->SetSizePixel(aTextWindowSize); - aSize.setHeight(CalcWindowSizePixel().Height() + 1); - ScInputBarGroup* pGroupBar = mxTextWindow.get(); - if (pGroupBar) + int nTopOffset = 0; + if (nLines > 1) { - // To ensure smooth display and prevent the items in the toolbar being - // repositioned (vertically) we lock the vertical positioning of the toolbox - // items when we are displaying > 1 line. - // So, we need to adjust the height of the toolbox accordingly. If we don't - // then the largest item (e.g. the GroupBar window) will actually be - // positioned such that the toolbar will cut off the bottom of that item - if (pGroupBar->GetNumLines() > 1) - { - Size aGroupBarSize = pGroupBar->GetSizePixel(); - aSize.setHeight(aGroupBarSize.Height() + 2 * (pGroupBar->GetVertOffset() + 1)); - } + // Initially there is 1 line and the edit is vertically centered in the toolbar + // Later, if expanded then the vertical position of the edit will remain at + // that initial position, so when calculating the overall size of the expanded + // toolbar we have to include that initial offset in order to not make + // the edit overlap the RESIZE_HOTSPOT_HEIGHT area so that dragging to resize + // is still possible. + int nNormalHeight = mxTextWindow->GetPixelHeightForLines(1); + int nInitialTopMargin = (mnStandardItemHeight - nNormalHeight) / 2; + if (nInitialTopMargin > 0) + nTopOffset = nInitialTopMargin; } - SetSizePixel(aSize); + + // add empty space of RESIZE_HOTSPOT_HEIGHT so resize is possible when hovering there + aSize.setHeight(CalcWindowSizePixel().Height() + RESIZE_HOTSPOT_HEIGHT + nTopOffset); + + if (aStartSize != aSize) + SetSizePixel(aSize); Invalidate(); } @@ -712,7 +721,7 @@ bool ScInputWindow::IsPointerAtResizePos() { - return GetOutputSizePixel().Height() - GetPointerPosPixel().Y() <= 4; + return GetOutputSizePixel().Height() - GetPointerPosPixel().Y() <= RESIZE_HOTSPOT_HEIGHT; } void ScInputWindow::MouseMove( const MouseEvent& rMEvt ) @@ -838,7 +847,6 @@ , mxTextWndGroup(new ScTextWndGroup(*this, pViewSh)) , mxButtonUp(m_xBuilder->weld_button("up")) , mxButtonDown(m_xBuilder->weld_button("down")) - , mnVertOffset(0) { InitControlBase(m_xContainer.get()); @@ -868,6 +876,11 @@ const SfxViewShell* pViewShell = SfxViewShell::Current(); if (!comphelper::LibreOfficeKit::isActive() || !(pViewShell && pViewShell->isLOKMobilePhone())) mxButtonDown->show(); + + // tdf#154042 Use an initial height of one row so the Toolbar positions + // this in the same place regardless of how many rows it eventually shows + Size aSize(GetSizePixel().Width(), nHeight); + SetSizePixel(aSize); } Point ScInputBarGroup::GetCursorScreenPixelPos(bool bBelow) @@ -1074,12 +1087,6 @@ ScInputWindow &rParent = dynamic_cast(*w); SfxViewFrame* pViewFrm = SfxViewFrame::Current(); - // Capture the vertical position of this window in the toolbar, when we increase - // the size of the toolbar to accommodate expanded line input we need to take this - // into account - if ( !mnVertOffset ) - mnVertOffset = rParent.GetItemPosRect( rParent.GetItemCount() - 1 ).Top(); - if ( !pViewFrm ) return; @@ -1316,7 +1323,6 @@ int ScTextWnd::GetPixelHeightForLines(tools::Long nLines) { - // add padding (for the borders of the window) OutputDevice& rDevice = GetDrawingArea()->get_ref_device(); return rDevice.LogicToPixel(Size(0, nLines * rDevice.GetTextHeight())).Height() + 1; } diff -Nru libreoffice-7.4.6/sc/source/ui/docshell/documentlinkmgr.cxx libreoffice-7.4.7/sc/source/ui/docshell/documentlinkmgr.cxx --- libreoffice-7.4.6/sc/source/ui/docshell/documentlinkmgr.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sc/source/ui/docshell/documentlinkmgr.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -144,7 +144,7 @@ sfx2::SvBaseLink* pBase = rLink.get(); if (bDde && dynamic_cast(pBase)) return true; - if (bOle && dynamic_cast(pBase)) + if (bOle && (dynamic_cast(pBase) || dynamic_cast(pBase))) return true; if (bWebService && dynamic_cast(pBase)) return true; @@ -175,6 +175,13 @@ continue; } + SdrIFrameLink* pIFrameLink = dynamic_cast(pBase); + if (pIFrameLink) + { + pIFrameLink->Update(); + continue; + } + ScWebServiceLink* pWebserviceLink = dynamic_cast(pBase); if (pWebserviceLink) { diff -Nru libreoffice-7.4.6/sc/source/ui/inc/inputwin.hxx libreoffice-7.4.7/sc/source/ui/inc/inputwin.hxx --- libreoffice-7.4.6/sc/source/ui/inc/inputwin.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sc/source/ui/inc/inputwin.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -261,12 +261,11 @@ void IncrementVerticalSize(); void DecrementVerticalSize(); void NumLinesChanged(); - virtual tools::Long GetNumLines() const override { return mxTextWndGroup->GetNumLines(); } - tools::Long GetVertOffset() const { return mnVertOffset; } + virtual tools::Long GetNumLines() const override { return mxTextWndGroup->GetNumLines(); } - int GetPixelHeightForLines() const + int GetPixelHeightForLines(tools::Long nLines) const { - return mxTextWndGroup->GetPixelHeightForLines(GetNumLines()); + return mxTextWndGroup->GetPixelHeightForLines(nLines); } weld::Builder& GetBuilder() { return *m_xBuilder; } @@ -278,7 +277,6 @@ std::unique_ptr mxTextWndGroup; std::unique_ptr mxButtonUp; std::unique_ptr mxButtonDown; - tools::Long mnVertOffset; DECL_LINK(ClickHdl, weld::Button&, void); }; @@ -348,7 +346,8 @@ VclPtr mxTextWindow; ScInputHandler* pInputHdl; ScTabViewShell* mpViewShell; - tools::Long mnMaxY; + tools::Long mnMaxY; + tools::Long mnStandardItemHeight; bool bIsOkCancelMode; bool bInResize; }; diff -Nru libreoffice-7.4.6/sd/qa/unit/export-tests.cxx libreoffice-7.4.7/sd/qa/unit/export-tests.cxx --- libreoffice-7.4.6/sd/qa/unit/export-tests.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sd/qa/unit/export-tests.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -95,6 +95,7 @@ void testMasterPageBackgroundFullSize(); void testColumnsODG(); void testTdf112126(); + void testTdf153179(); CPPUNIT_TEST_SUITE(SdExportTest); @@ -143,6 +144,7 @@ CPPUNIT_TEST(testMasterPageBackgroundFullSize); CPPUNIT_TEST(testColumnsODG); CPPUNIT_TEST(testTdf112126); + CPPUNIT_TEST(testTdf153179); CPPUNIT_TEST_SUITE_END(); virtual void registerNamespaces(xmlXPathContextPtr& pXmlXPathCtx) override @@ -1735,6 +1737,20 @@ xDocShRef->DoClose(); } +void SdExportTest::testTdf153179() +{ + ::sd::DrawDocShellRef xDocShRef + = loadURL(m_directories.getURLFromSrc(u"/sd/qa/unit/data/pptx/ole-emf_min.pptx"), PPTX); + + CPPUNIT_ASSERT_EQUAL_MESSAGE("number of shapes is incorrect", sal_Int32(1), + getPage(0, xDocShRef)->getCount()); + + xDocShRef = saveAndReload(xDocShRef.get(), ODP); + + // Check number of shapes after export. + CPPUNIT_ASSERT_EQUAL(sal_Int32(1), getPage(0, xDocShRef)->getCount()); +} + CPPUNIT_TEST_SUITE_REGISTRATION(SdExportTest); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-7.4.6/sd/source/ui/view/drviews3.cxx libreoffice-7.4.7/sd/source/ui/view/drviews3.cxx --- libreoffice-7.4.6/sd/source/ui/view/drviews3.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sd/source/ui/view/drviews3.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -140,8 +140,8 @@ // switch page in running slide show if(SlideShow::IsRunning(GetViewShellBase()) && rReq.GetArgs()) { - const SfxUInt32Item* pWhatPage = rReq.GetArg(ID_VAL_WHATPAGE); - SlideShow::GetSlideShow(GetViewShellBase())->jumpToPageNumber(static_cast((pWhatPage->GetValue()-1)>>1)); + if (const SfxUInt32Item* pWhatPage = rReq.GetArg(ID_VAL_WHATPAGE)) + SlideShow::GetSlideShow(GetViewShellBase())->jumpToPageNumber(static_cast((pWhatPage->GetValue()-1)>>1)); } else { diff -Nru libreoffice-7.4.6/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml libreoffice-7.4.7/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml --- libreoffice-7.4.6/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml 2023-05-03 15:22:13.000000000 +0000 @@ -63,7 +63,7 @@ - + diff -Nru libreoffice-7.4.6/sd/uiconfig/sdraw/toolbar/standardbar.xml libreoffice-7.4.7/sd/uiconfig/sdraw/toolbar/standardbar.xml --- libreoffice-7.4.6/sd/uiconfig/sdraw/toolbar/standardbar.xml 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sd/uiconfig/sdraw/toolbar/standardbar.xml 2023-05-03 15:22:13.000000000 +0000 @@ -47,7 +47,7 @@ - + diff -Nru libreoffice-7.4.6/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml libreoffice-7.4.7/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml --- libreoffice-7.4.6/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml 2023-05-03 15:22:13.000000000 +0000 @@ -65,7 +65,7 @@ - + diff -Nru libreoffice-7.4.6/sd/uiconfig/simpress/toolbar/standardbar.xml libreoffice-7.4.7/sd/uiconfig/simpress/toolbar/standardbar.xml --- libreoffice-7.4.6/sd/uiconfig/simpress/toolbar/standardbar.xml 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sd/uiconfig/simpress/toolbar/standardbar.xml 2023-05-03 15:22:13.000000000 +0000 @@ -50,7 +50,7 @@ - + diff -Nru libreoffice-7.4.6/sdext/source/presenter/PresenterProtocolHandler.cxx libreoffice-7.4.7/sdext/source/presenter/PresenterProtocolHandler.cxx --- libreoffice-7.4.6/sdext/source/presenter/PresenterProtocolHandler.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sdext/source/presenter/PresenterProtocolHandler.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -306,7 +306,10 @@ Reference xDispatch; - if (rURL.Protocol == "vnd.org.libreoffice.presenterscreen:") + // tdf#154546 skip dispatch when presenter controller is not set + // mpPresenterController is sometimes unset and this will cause a + // crash when pressing the presenter console's Exchange button. + if (rURL.Protocol == "vnd.org.libreoffice.presenterscreen:" && mpPresenterController.is()) { xDispatch.set(Dispatch::Create(rURL.Path, mpPresenterController)); } diff -Nru libreoffice-7.4.6/sfx2/source/dialog/StyleList.cxx libreoffice-7.4.7/sfx2/source/dialog/StyleList.cxx --- libreoffice-7.4.6/sfx2/source/dialog/StyleList.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sfx2/source/dialog/StyleList.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1557,17 +1557,20 @@ if (pStyleManager) { - const SfxStyleFamilyItem* pItem = GetFamilyItem(); - SfxStyleSheetBase* pStyleSheet = pStyleManager->Search(rId, pItem->GetFamily()); - - if (pStyleSheet) + if (const SfxStyleFamilyItem* pItem = GetFamilyItem()) { - rRenderContext.Push(vcl::PushFlags::ALL); - sal_Int32 nSize = aRect.GetHeight(); - std::unique_ptr pStylePreviewRenderer( - pStyleManager->CreateStylePreviewRenderer(rRenderContext, pStyleSheet, nSize)); - bSuccess = pStylePreviewRenderer->recalculate() && pStylePreviewRenderer->render(aRect); - rRenderContext.Pop(); + SfxStyleSheetBase* pStyleSheet = pStyleManager->Search(rId, pItem->GetFamily()); + + if (pStyleSheet) + { + rRenderContext.Push(vcl::PushFlags::ALL); + sal_Int32 nSize = aRect.GetHeight(); + std::unique_ptr pStylePreviewRenderer( + pStyleManager->CreateStylePreviewRenderer(rRenderContext, pStyleSheet, nSize)); + bSuccess + = pStylePreviewRenderer->recalculate() && pStylePreviewRenderer->render(aRect); + rRenderContext.Pop(); + } } } diff -Nru libreoffice-7.4.6/sfx2/source/doc/docfile.cxx libreoffice-7.4.7/sfx2/source/doc/docfile.cxx --- libreoffice-7.4.6/sfx2/source/doc/docfile.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sfx2/source/doc/docfile.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -2318,7 +2318,8 @@ // a special case, an interaction handler should be used for // authentication in case it is available Reference< css::ucb::XCommandEnvironment > xComEnv; - Reference< css::task::XInteractionHandler > xInteractionHandler = GetInteractionHandler(); + bool bForceInteractionHandler = GetURLObject().isAnyKnownWebDAVScheme(); + Reference< css::task::XInteractionHandler > xInteractionHandler = GetInteractionHandler(bForceInteractionHandler); if (xInteractionHandler.is()) xComEnv = new ::ucbhelper::CommandEnvironment( xInteractionHandler, Reference< css::ucb::XProgressHandler >() ); diff -Nru libreoffice-7.4.6/sfx2/source/doc/iframe.cxx libreoffice-7.4.7/sfx2/source/doc/iframe.cxx --- libreoffice-7.4.6/sfx2/source/doc/iframe.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sfx2/source/doc/iframe.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -38,6 +38,7 @@ #include #include #include +#include #include #include #include @@ -45,6 +46,7 @@ #include #include #include +#include using namespace ::com::sun::star; @@ -165,39 +167,56 @@ uno::Reference < util::XURLTransformer > xTrans( util::URLTransformer::create( mxContext ) ); xTrans->parseStrict( aTargetURL ); - if (INetURLObject(aTargetURL.Complete).GetProtocol() == INetProtocol::Macro) + INetURLObject aURLObject(aTargetURL.Complete); + if (aURLObject.GetProtocol() == INetProtocol::Macro || aURLObject.isSchemeEqualTo(u"vnd.sun.star.script")) + return false; + + uno::Reference xParentFrame = xFrame->getCreator(); + SfxObjectShell* pDoc = SfxMacroLoader::GetObjectShell(xParentFrame); + + bool bUpdateAllowed(true); + if (pDoc) { - uno::Reference xParentFrame = xFrame->getCreator(); - SfxObjectShell* pDoc = SfxMacroLoader::GetObjectShell(xParentFrame); - if (pDoc && !pDoc->AdjustMacroMode()) - return false; + comphelper::EmbeddedObjectContainer& rEmbeddedObjectContainer = pDoc->getEmbeddedObjectContainer(); + bUpdateAllowed = rEmbeddedObjectContainer.getUserAllowsLinkUpdate(); } + if (!bUpdateAllowed) + return false; + + OUString sReferer; + if (pDoc && pDoc->HasName()) + sReferer = pDoc->GetMedium()->GetName(); - DBG_ASSERT( !mxFrame.is(), "Frame already existing!" ); - VclPtr pParent = VCLUnoHelper::GetWindow( xFrame->getContainerWindow() ); - VclPtr pWin = VclPtr::Create( pParent, maFrmDescr.IsFrameBorderOn() ); - pWin->SetSizePixel( pParent->GetOutputSizePixel() ); - pWin->SetBackground(); - pWin->Show(); - - uno::Reference < awt::XWindow > xWindow( pWin->GetComponentInterface(), uno::UNO_QUERY ); - xFrame->setComponent( xWindow, uno::Reference < frame::XController >() ); - - // we must destroy the IFrame before the parent is destroyed - xWindow->addEventListener( this ); - - mxFrame = frame::Frame::create( mxContext ); - uno::Reference < awt::XWindow > xWin( pWin->GetComponentInterface(), uno::UNO_QUERY ); - mxFrame->initialize( xWin ); - mxFrame->setName( maFrmDescr.GetName() ); - - uno::Reference < frame::XFramesSupplier > xFramesSupplier( xFrame, uno::UNO_QUERY ); - if ( xFramesSupplier.is() ) - mxFrame->setCreator( xFramesSupplier ); + uno::Reference xParentWindow(xFrame->getContainerWindow()); + + if (!mxFrame.is()) + { + VclPtr pParent = VCLUnoHelper::GetWindow(xParentWindow); + VclPtr pWin = VclPtr::Create( pParent, maFrmDescr.IsFrameBorderOn() ); + pWin->SetSizePixel( pParent->GetOutputSizePixel() ); + pWin->SetBackground(); + pWin->Show(); + + uno::Reference < awt::XWindow > xWindow( pWin->GetComponentInterface(), uno::UNO_QUERY ); + xFrame->setComponent( xWindow, uno::Reference < frame::XController >() ); + + // we must destroy the IFrame before the parent is destroyed + xWindow->addEventListener( this ); + + mxFrame = frame::Frame::create( mxContext ); + uno::Reference < awt::XWindow > xWin( pWin->GetComponentInterface(), uno::UNO_QUERY ); + mxFrame->initialize( xWin ); + mxFrame->setName( maFrmDescr.GetName() ); + + uno::Reference < frame::XFramesSupplier > xFramesSupplier( xFrame, uno::UNO_QUERY ); + if ( xFramesSupplier.is() ) + mxFrame->setCreator( xFramesSupplier ); + } uno::Sequence < beans::PropertyValue > aProps{ comphelper::makePropertyValue("PluginMode", sal_Int16(2)), - comphelper::makePropertyValue("ReadOnly", true) + comphelper::makePropertyValue("ReadOnly", true), + comphelper::makePropertyValue("Referer", sReferer) }; uno::Reference < frame::XDispatch > xDisp = mxFrame->queryDispatch( aTargetURL, "_self", 0 ); if ( xDisp.is() ) diff -Nru libreoffice-7.4.6/sources.ver libreoffice-7.4.7/sources.ver --- libreoffice-7.4.6/sources.ver 2023-03-03 17:00:59.000000000 +0000 +++ libreoffice-7.4.7/sources.ver 2023-05-03 15:29:39.000000000 +0000 @@ -1 +1 @@ -lo_sources_ver=7.4.6.2 +lo_sources_ver=7.4.7.2 diff -Nru libreoffice-7.4.6/starmath/source/cursor.cxx libreoffice-7.4.7/starmath/source/cursor.cxx --- libreoffice-7.4.6/starmath/source/cursor.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/starmath/source/cursor.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1315,8 +1315,8 @@ } void SmCursor::RequestRepaint(){ - SmViewShell *pViewSh = SmGetActiveView(); - if( pViewSh ) { + if (SmViewShell *pViewSh = SmGetActiveView()) + { if ( SfxObjectCreateMode::EMBEDDED == mpDocShell->GetCreateMode() ) mpDocShell->Repaint(); else diff -Nru libreoffice-7.4.6/starmath/source/dialog.cxx libreoffice-7.4.7/starmath/source/dialog.cxx --- libreoffice-7.4.6/starmath/source/dialog.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/starmath/source/dialog.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -181,7 +181,8 @@ SmPrintOptionsTabPage::~SmPrintOptionsTabPage() { - SmGetActiveView()->GetEditWindow()->UpdateStatus(); + if (SmViewShell *pViewSh = SmGetActiveView()) + pViewSh->GetEditWindow()->UpdateStatus(); } bool SmPrintOptionsTabPage::FillItemSet(SfxItemSet* rSet) @@ -204,7 +205,9 @@ rSet->Put(SfxBoolItem(SID_AUTO_CLOSE_BRACKETS, m_xAutoCloseBrackets->get_active())); rSet->Put(SfxUInt16Item(SID_SMEDITWINDOWZOOM, sal::static_int_cast(m_xSmZoom->get_value(FieldUnit::PERCENT)))); - SmGetActiveView()->GetEditWindow()->UpdateStatus(); + if (SmViewShell *pViewSh = SmGetActiveView()) + pViewSh->GetEditWindow()->UpdateStatus(); + return true; } diff -Nru libreoffice-7.4.6/starmath/source/document.cxx libreoffice-7.4.7/starmath/source/document.cxx --- libreoffice-7.4.6/starmath/source/document.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/starmath/source/document.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -159,7 +159,7 @@ Parse(); SmViewShell *pViewSh = SmGetActiveView(); - if( pViewSh ) + if (pViewSh) { pViewSh->GetViewFrame()->GetBindings().Invalidate(SID_TEXT); if ( SfxObjectCreateMode::EMBEDDED == GetCreateMode() ) @@ -256,8 +256,7 @@ // if necessary get another OutputDevice for which we format if (!pOutDev) { - SmViewShell *pView = SmGetActiveView(); - if (pView) + if (SmViewShell *pView = SmGetActiveView()) pOutDev = &pView->GetGraphicWidget().GetDrawingArea()->get_ref_device(); else { @@ -542,8 +541,7 @@ Size aVisSize = GetSize(); SetVisAreaSize(aVisSize); - SmViewShell* pViewSh = SmGetActiveView(); - if (pViewSh) + if (SmViewShell* pViewSh = SmGetActiveView()) pViewSh->GetGraphicWidget().Invalidate(); if (bIsEnabled) diff -Nru libreoffice-7.4.6/starmath/source/ElementsDockingWindow.cxx libreoffice-7.4.7/starmath/source/ElementsDockingWindow.cxx --- libreoffice-7.4.6/starmath/source/ElementsDockingWindow.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/starmath/source/ElementsDockingWindow.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -508,7 +508,7 @@ void SmElementsControl::addElement(const OUString& aElementVisual, const OUString& aElementSource, const OUString& aHelpText) { std::unique_ptr pNode = maParser->ParseExpression(aElementVisual); - VclPtr pDevice(mpIconView->create_virtual_device()); + ScopedVclPtr pDevice(mpIconView->create_virtual_device()); pDevice->SetTextRenderModeForResolutionIndependentLayout(true); pDevice->SetMapMode(MapMode(MapUnit::Map100thMM)); pDevice->SetDrawMode(DrawModeFlags::Default); diff -Nru libreoffice-7.4.6/svl/qa/unit/svl.cxx libreoffice-7.4.7/svl/qa/unit/svl.cxx --- libreoffice-7.4.6/svl/qa/unit/svl.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/svl/qa/unit/svl.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1453,6 +1453,18 @@ sExpected = "-575 540/697"; checkPreviewString(aFormatter, sCode, -575.774749601315, eLang, sExpected); } + { // tdf#153887: integer value without integer part displayed + sCode = "#/?"; + sExpected = "2/1"; + checkPreviewString(aFormatter, sCode, 1.95, eLang, sExpected); + checkPreviewString(aFormatter, sCode, 2.00, eLang, sExpected); + checkPreviewString(aFormatter, sCode, 2.05, eLang, sExpected); + sCode = "0/8"; + sExpected = "16/8"; + checkPreviewString(aFormatter, sCode, 1.95, eLang, sExpected); + checkPreviewString(aFormatter, sCode, 2.00, eLang, sExpected); + checkPreviewString(aFormatter, sCode, 2.05, eLang, sExpected); + } { // tdf#102507: left alignment of denominator sCode = "# ?/???"; sExpected = "3 1/2 "; diff -Nru libreoffice-7.4.6/svl/source/numbers/zformat.cxx libreoffice-7.4.7/svl/source/numbers/zformat.cxx --- libreoffice-7.4.6/svl/source/numbers/zformat.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/svl/source/numbers/zformat.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -2800,9 +2800,10 @@ fIntPart = floor(fNumber); // Integral part fNumber -= fIntPart; // Fractional part const ImpSvNumberformatInfo& rInfo = NumFor[nIx].Info(); - nDiv = lcl_GetDenominatorString( rInfo, NumFor[nIx].GetCount() ).toInt32(); - if( nDiv > 0 ) + sal_Int64 nForcedDiv = lcl_GetDenominatorString( rInfo, NumFor[nIx].GetCount() ).toInt32(); + if( nForcedDiv > 0 ) { // Forced Denominator + nDiv = nForcedDiv; nFrac = static_cast(floor ( fNumber * nDiv )); double fFracNew = static_cast(nFrac) / static_cast(nDiv); double fFracNew1 = static_cast(nFrac + 1) / static_cast(nDiv); @@ -2856,7 +2857,8 @@ if (nFrac >= nDiv) { ++fIntPart; - nFrac = nDiv = 0; + nFrac = 0; + nDiv = ( nForcedDiv > 0 ) ? nForcedDiv : 1; } } diff -Nru libreoffice-7.4.6/svx/source/dialog/compressgraphicdialog.cxx libreoffice-7.4.7/svx/source/dialog/compressgraphicdialog.cxx --- libreoffice-7.4.6/svx/source/dialog/compressgraphicdialog.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/svx/source/dialog/compressgraphicdialog.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -376,7 +376,11 @@ { OUString aSizeAsString = OUString::number(aSize / 1024); - OUString aReductionSizeAsString = OUString::number( m_aNativeSize > 0 ? (m_aNativeSize - aSize) * 100 / m_aNativeSize : 0 ); + OUString aReductionSizeAsString; + if (m_aNativeSize > 0 ) + aReductionSizeAsString = OUString::number( static_cast((m_aNativeSize - aSize) * 100.0 / m_aNativeSize) ); + else + aReductionSizeAsString = "0"; OUString aNewSizeString = SvxResId(STR_IMAGE_CAPACITY_WITH_REDUCTION); aNewSizeString = aNewSizeString.replaceAll("$(CAPACITY)", aSizeAsString); diff -Nru libreoffice-7.4.6/svx/source/dialog/searchcharmap.cxx libreoffice-7.4.7/svx/source/dialog/searchcharmap.cxx --- libreoffice-7.4.6/svx/source/dialog/searchcharmap.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/svx/source/dialog/searchcharmap.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -307,9 +307,7 @@ nX = aSize.Width() / COLUMN_COUNT; nY = aSize.Height() / ROW_COUNT; - //scrollbar settings -- error - int nLastRow = (nCount - 1 + COLUMN_COUNT) / COLUMN_COUNT; - mxScrollArea->vadjustment_configure(mxScrollArea->vadjustment_get_value(), 0, nLastRow, 1, ROW_COUNT - 1, ROW_COUNT); + UpdateScrollRange(); // rearrange CharSet element in sync with nX- and nY-multiples Size aDrawSize(nX * COLUMN_COUNT, nY * ROW_COUNT); @@ -319,6 +317,13 @@ mbRecalculateFont = false; } +void SvxSearchCharSet::UpdateScrollRange() +{ + //scrollbar settings + int nLastRow = (nCount - 1 + COLUMN_COUNT) / COLUMN_COUNT; + mxScrollArea->vadjustment_configure(mxScrollArea->vadjustment_get_value(), 0, nLastRow, 1, ROW_COUNT - 1, ROW_COUNT); +} + void SvxSearchCharSet::SelectIndex(int nNewIndex, bool bFocus) { if (!mxFontCharMap.is()) diff -Nru libreoffice-7.4.6/svx/source/svdraw/svdoole2.cxx libreoffice-7.4.7/svx/source/svdraw/svdoole2.cxx --- libreoffice-7.4.6/svx/source/svdraw/svdoole2.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/svx/source/svdraw/svdoole2.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -69,6 +69,7 @@ #include #include #include +#include #include #include #include @@ -593,6 +594,35 @@ SvBaseLink::Closed(); } +SdrIFrameLink::SdrIFrameLink(SdrOle2Obj* pObject) + : ::sfx2::SvBaseLink(::SfxLinkUpdateMode::ONCALL, SotClipboardFormatId::SVXB) + , m_pObject(pObject) +{ + SetSynchron( false ); +} + +::sfx2::SvBaseLink::UpdateResult SdrIFrameLink::DataChanged( + const OUString&, const uno::Any& ) +{ + uno::Reference xObject = m_pObject->GetObjRef(); + uno::Reference xPersObj(xObject, uno::UNO_QUERY); + if (xPersObj.is()) + { + // let the IFrameObject reload the link + try + { + xPersObj->reload(uno::Sequence(), uno::Sequence()); + } + catch (const uno::Exception&) + { + } + + m_pObject->SetChanged(); + } + + return SUCCESS; +} + class SdrOle2ObjImpl { public: @@ -610,7 +640,7 @@ bool mbLoadingOLEObjectFailed:1; // New local var to avoid repeated loading if load of OLE2 fails bool mbConnected:1; - SdrEmbedObjectLink* mpObjectLink; + sfx2::SvBaseLink* mpObjectLink; OUString maLinkURL; rtl::Reference mxModifyListener; @@ -852,7 +882,7 @@ return !mpImpl->mxObjRef.is(); } -void SdrOle2Obj::Connect() +void SdrOle2Obj::Connect(SvxOle2Shape* pCreator) { if( IsEmptyPresObj() ) return; @@ -865,7 +895,7 @@ return; } - Connect_Impl(); + Connect_Impl(pCreator); AddListeners_Impl(); } @@ -964,24 +994,51 @@ try { - uno::Reference< embed::XLinkageSupport > xLinkSupport( mpImpl->mxObjRef.GetObject(), uno::UNO_QUERY ); + uno::Reference xObject = mpImpl->mxObjRef.GetObject(); + if (!xObject) + return; + + bool bIFrame = false; + + OUString aLinkURL; + uno::Reference xLinkSupport(xObject, uno::UNO_QUERY); + if (xLinkSupport) + { + if (xLinkSupport->isLink()) + aLinkURL = xLinkSupport->getLinkURL(); + } + else + { + // get IFrame (Floating Frames) listed and updatable from the + // manage links dialog + SvGlobalName aClassId(xObject->getClassID()); + if (aClassId == SvGlobalName(SO3_IFRAME_CLASSID)) + { + uno::Reference xSet(xObject->getComponent(), uno::UNO_QUERY); + if (xSet.is()) + xSet->getPropertyValue("FrameURL") >>= aLinkURL; + bIFrame = true; + } + } - if ( xLinkSupport.is() && xLinkSupport->isLink() ) + if (!aLinkURL.isEmpty()) // this is a file link so the model link manager should handle it { - OUString aLinkURL = xLinkSupport->getLinkURL(); + sfx2::LinkManager* pLinkManager(getSdrModelFromSdrObject().GetLinkManager()); - if ( !aLinkURL.isEmpty() ) + if ( pLinkManager ) { - // this is a file link so the model link manager should handle it - sfx2::LinkManager* pLinkManager(getSdrModelFromSdrObject().GetLinkManager()); - - if ( pLinkManager ) + SdrEmbedObjectLink* pEmbedObjectLink = nullptr; + if (!bIFrame) { - mpImpl->mpObjectLink = new SdrEmbedObjectLink( this ); - mpImpl->maLinkURL = aLinkURL; - pLinkManager->InsertFileLink( *mpImpl->mpObjectLink, sfx2::SvBaseLinkObjectType::ClientOle, aLinkURL ); - mpImpl->mpObjectLink->Connect(); + pEmbedObjectLink = new SdrEmbedObjectLink(this); + mpImpl->mpObjectLink = pEmbedObjectLink; } + else + mpImpl->mpObjectLink = new SdrIFrameLink(this); + mpImpl->maLinkURL = aLinkURL; + pLinkManager->InsertFileLink( *mpImpl->mpObjectLink, sfx2::SvBaseLinkObjectType::ClientOle, aLinkURL ); + if (pEmbedObjectLink) + pEmbedObjectLink->Connect(); } } } @@ -991,7 +1048,7 @@ } } -void SdrOle2Obj::Connect_Impl() +void SdrOle2Obj::Connect_Impl(SvxOle2Shape* pCreator) { if(mpImpl->aPersistName.isEmpty() ) return; @@ -1032,6 +1089,17 @@ } } + if (pCreator) + { + OUString sFrameURL(pCreator->GetAndClearInitialFrameURL()); + if (!sFrameURL.isEmpty() && svt::EmbeddedObjectRef::TryRunningState(mpImpl->mxObjRef.GetObject())) + { + uno::Reference xSet(mpImpl->mxObjRef->getComponent(), uno::UNO_QUERY); + if (xSet.is()) + xSet->setPropertyValue("FrameURL", uno::Any(sFrameURL)); + } + } + if ( mpImpl->mxObjRef.is() ) { if ( !mpImpl->mxLightClient.is() ) @@ -1342,14 +1410,14 @@ return createSdrGrafObjReplacement(false); } -void SdrOle2Obj::SetPersistName( const OUString& rPersistName ) +void SdrOle2Obj::SetPersistName( const OUString& rPersistName, SvxOle2Shape* pCreator ) { DBG_ASSERT( mpImpl->aPersistName.isEmpty(), "Persist name changed!"); mpImpl->aPersistName = rPersistName; mpImpl->mbLoadingOLEObjectFailed = false; - Connect(); + Connect(pCreator); SetChanged(); } diff -Nru libreoffice-7.4.6/svx/source/table/cell.cxx libreoffice-7.4.7/svx/source/table/cell.cxx --- libreoffice-7.4.6/svx/source/table/cell.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/svx/source/table/cell.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -308,14 +308,13 @@ rObj.SetVerticalWriting(bVertical); // Set a cell vertical property - std::optional pParaObj = mxCell->CreateEditOutlinerParaObject(); + std::optional pEditParaObj = mxCell->CreateEditOutlinerParaObject(); - if( !pParaObj && mxCell->GetOutlinerParaObject() ) - pParaObj = *mxCell->GetOutlinerParaObject(); - - if(pParaObj) + if( !pEditParaObj && mxCell->GetOutlinerParaObject() ) { - pParaObj->SetVertical(bVertical); + OutlinerParaObject* pParaObj = mxCell->GetOutlinerParaObject(); + if(pParaObj) + pParaObj->SetVertical(bVertical); } } @@ -324,22 +323,23 @@ const SvxTextRotateItem* pRotateItem = static_cast(pNewItem); // Set a cell vertical property - std::optional pParaObj = mxCell->CreateEditOutlinerParaObject(); - - if (!pParaObj && mxCell->GetOutlinerParaObject()) - pParaObj = *mxCell->GetOutlinerParaObject(); + std::optional pEditParaObj = mxCell->CreateEditOutlinerParaObject(); - if (pParaObj) + if (!pEditParaObj && mxCell->GetOutlinerParaObject()) { - if(pRotateItem->IsVertical() && pRotateItem->IsTopToBottom()) - pParaObj->SetRotation(TextRotation::TOPTOBOTTOM); - else if (pRotateItem->IsVertical()) - pParaObj->SetRotation(TextRotation::BOTTOMTOTOP); - else - pParaObj->SetRotation(TextRotation::NONE); + OutlinerParaObject* pParaObj = mxCell->GetOutlinerParaObject(); + if (pParaObj) + { + if(pRotateItem->IsVertical() && pRotateItem->IsTopToBottom()) + pParaObj->SetRotation(TextRotation::TOPTOBOTTOM); + else if (pRotateItem->IsVertical()) + pParaObj->SetRotation(TextRotation::BOTTOMTOTOP); + else + pParaObj->SetRotation(TextRotation::NONE); + } } - // Change autogrow direction + // Change autogrow direction SdrTextObj& rObj = static_cast(GetSdrObject()); // rescue object size diff -Nru libreoffice-7.4.6/svx/source/unodraw/shapeimpl.hxx libreoffice-7.4.7/svx/source/unodraw/shapeimpl.hxx --- libreoffice-7.4.6/svx/source/unodraw/shapeimpl.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/svx/source/unodraw/shapeimpl.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -64,8 +64,11 @@ virtual void Create( SdrObject* pNewOpj, SvxDrawPage* pNewPage ) override; }; + class SvxFrameShape : public SvxOle2Shape { +private: + OUString m_sInitialFrameURL; protected: // override these for special property handling in subcasses. Return true if property is handled virtual bool setPropertyValueImpl( const OUString& rName, const SfxItemPropertyMapEntry* pProperty, const css::uno::Any& rValue ) override; @@ -82,6 +85,8 @@ virtual void SAL_CALL setPropertyValues( const css::uno::Sequence< OUString >& aPropertyNames, const css::uno::Sequence< css::uno::Any >& aValues ) override; virtual void Create( SdrObject* pNewOpj, SvxDrawPage* pNewPage ) override; + + virtual OUString GetAndClearInitialFrameURL() override; }; SvxUnoPropertyMapProvider& getSvxMapProvider(); diff -Nru libreoffice-7.4.6/svx/source/unodraw/unoshap4.cxx libreoffice-7.4.7/svx/source/unodraw/unoshap4.cxx --- libreoffice-7.4.6/svx/source/unodraw/unoshap4.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/svx/source/unodraw/unoshap4.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -177,7 +177,7 @@ #else pOle = static_cast(GetSdrObject()); #endif - pOle->SetPersistName( aPersistName ); + pOle->SetPersistName( aPersistName, this ); return true; } break; @@ -498,10 +498,11 @@ void SvxOle2Shape::resetModifiedState() { - ::comphelper::IEmbeddedHelper* pPersist = GetSdrObject()->getSdrModelFromSdrObject().GetPersist(); + SdrObject* pObject = GetSdrObject(); + ::comphelper::IEmbeddedHelper* pPersist = pObject ? pObject->getSdrModelFromSdrObject().GetPersist() : nullptr; if( pPersist && !pPersist->isEnableSetModified() ) { - SdrOle2Obj* pOle = dynamic_cast< SdrOle2Obj* >( GetSdrObject() ); + SdrOle2Obj* pOle = dynamic_cast< SdrOle2Obj* >(pObject); if( pOle && !pOle->IsEmpty() ) { uno::Reference < util::XModifiable > xMod( pOle->GetObjRef(), uno::UNO_QUERY ); @@ -551,6 +552,11 @@ return aClassName; } +OUString SvxOle2Shape::GetAndClearInitialFrameURL() +{ + return OUString(); +} + SvxAppletShape::SvxAppletShape(SdrObject* pObject) : SvxOle2Shape( pObject, getSvxMapProvider().GetMap(SVXMAP_APPLET), getSvxMapProvider().GetPropertySet(SVXMAP_APPLET, SdrObject::GetGlobalDrawObjectItemPool()) ) { @@ -704,8 +710,19 @@ { } +OUString SvxFrameShape::GetAndClearInitialFrameURL() +{ + OUString sRet(m_sInitialFrameURL); + m_sInitialFrameURL.clear(); + return sRet; +} + void SvxFrameShape::Create( SdrObject* pNewObj, SvxDrawPage* pNewPage ) { + uno::Reference xSet(static_cast(this), uno::UNO_QUERY); + if (xSet) + xSet->getPropertyValue("FrameURL") >>= m_sInitialFrameURL; + SvxShape::Create( pNewObj, pNewPage ); const SvGlobalName aIFrameClassId( SO3_IFRAME_CLASSID ); createObject(aIFrameClassId); diff -Nru libreoffice-7.4.6/sw/inc/ndole.hxx libreoffice-7.4.7/sw/inc/ndole.hxx --- libreoffice-7.4.6/sw/inc/ndole.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/inc/ndole.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -28,7 +28,7 @@ class SwDoc; class SwOLENode; class SwOLEListener_Impl; -class SwEmbedObjectLink; +namespace sfx2 { class SvBaseLink; } class DeflateData; class SW_DLLPUBLIC SwOLEObj @@ -93,7 +93,7 @@ bool mbOLESizeInvalid; /**< Should be considered at SwDoc::PrtOLENotify (e.g. copied). Is not persistent. */ - SwEmbedObjectLink* mpObjectLink; + sfx2::SvBaseLink* mpObjectLink; OUString maLinkURL; SwOLENode( const SwNodeIndex &rWhere, diff -Nru libreoffice-7.4.6/sw/inc/redline.hxx libreoffice-7.4.7/sw/inc/redline.hxx --- libreoffice-7.4.6/sw/inc/redline.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/inc/redline.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -128,6 +128,12 @@ std::size_t GetAuthor() const { return m_nAuthor; } const OUString& GetComment() const { return m_sComment; } const DateTime& GetTimeStamp() const { return m_aStamp; } + bool IsAnonymized() const + { + return m_aStamp.GetYear() == 1970 && + m_aStamp.GetMonth() == 1 && m_aStamp.GetDay() == 1; + } + const SwRedlineData* Next() const{ return m_pNext; } void SetComment( const OUString& rS ) { m_sComment = rS; } diff -Nru libreoffice-7.4.6/sw/qa/extras/htmlexport/htmlexport.cxx libreoffice-7.4.7/sw/qa/extras/htmlexport/htmlexport.cxx --- libreoffice-7.4.6/sw/qa/extras/htmlexport/htmlexport.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/qa/extras/htmlexport/htmlexport.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -785,16 +785,24 @@ DECLARE_HTMLEXPORT_TEST(testReqIfTable, "reqif-table.xhtml") { - htmlDocUniquePtr pDoc = parseHtml(maTempFile); + SvMemoryStream aStream; + WrapReqifFromTempFile(aStream); + xmlDocUniquePtr pDoc = parseXmlStream(&aStream); CPPUNIT_ASSERT(pDoc); //
was missing, so the XHTML fragment wasn't a valid // xhtml.BlkStruct.class type anymore. - assertXPath(pDoc, "/html/body/div/table/tr/th", 1); + assertXPath(pDoc, + "/reqif-xhtml:html/reqif-xhtml:div/reqif-xhtml:table/reqif-xhtml:tr/reqif-xhtml:th", + 1); // Make sure that the cell background is not written using CSS. - assertXPathNoAttribute(pDoc, "/html/body/div/table/tr/th", "style"); + assertXPathNoAttribute( + pDoc, "/reqif-xhtml:html/reqif-xhtml:div/reqif-xhtml:table/reqif-xhtml:tr/reqif-xhtml:th", + "style"); // The attribute was present, which is not valid in reqif-xhtml. - assertXPathNoAttribute(pDoc, "/html/body/div/table/tr/th", "bgcolor"); + assertXPathNoAttribute( + pDoc, "/reqif-xhtml:html/reqif-xhtml:div/reqif-xhtml:table/reqif-xhtml:tr/reqif-xhtml:th", + "bgcolor"); } DECLARE_HTMLEXPORT_TEST(testReqIfTable2, "reqif-table2.odt") diff -Nru libreoffice-7.4.6/sw/qa/extras/odfexport/data/tdf150149.fodt libreoffice-7.4.7/sw/qa/extras/odfexport/data/tdf150149.fodt --- libreoffice-7.4.6/sw/qa/extras/odfexport/data/tdf150149.fodt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/sw/qa/extras/odfexport/data/tdf150149.fodt 2023-05-03 15:22:13.000000000 +0000 @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + A + + + B + + + C + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/sw/qa/extras/odfexport/odfexport.cxx libreoffice-7.4.7/sw/qa/extras/odfexport/odfexport.cxx --- libreoffice-7.4.6/sw/qa/extras/odfexport/odfexport.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/qa/extras/odfexport/odfexport.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -296,6 +296,16 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount()); } +CPPUNIT_TEST_FIXTURE(Test, testTdf150149) +{ + loadAndReload("tdf150149.fodt"); + CPPUNIT_ASSERT_EQUAL(1, getPages()); + xmlDocUniquePtr pXmlDoc = parseExport("content.xml"); + // This was 0 (lost table header in multi-column section) + assertXPath(pXmlDoc, "//table:table-header-rows", 1); + assertXPath(pXmlDoc, "//table:table-header-rows/table:table-row/table:table-cell", 3); +} + DECLARE_ODFEXPORT_TEST(testTdf103567, "tdf103567.odt") { CPPUNIT_ASSERT_EQUAL(1, getShapes()); diff -Nru libreoffice-7.4.6/sw/qa/extras/ooxmlexport/data/tdf147892.fodt libreoffice-7.4.7/sw/qa/extras/ooxmlexport/data/tdf147892.fodt --- libreoffice-7.4.6/sw/qa/extras/ooxmlexport/data/tdf147892.fodt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/sw/qa/extras/ooxmlexport/data/tdf147892.fodt 2023-05-03 15:22:13.000000000 +0000 @@ -0,0 +1,25 @@ + + + + + + + + + Bob + 2023-01-02T00:00:00 + + + + + Alice + 2023-01-01T00:00:00 + + + + + + + + + Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/sw/qa/extras/ooxmlexport/data/tdf153255.docx and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/sw/qa/extras/ooxmlexport/data/tdf153255.docx differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/sw/qa/extras/ooxmlexport/data/tdf153891.docx and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/sw/qa/extras/ooxmlexport/data/tdf153891.docx differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/sw/qa/extras/ooxmlexport/data/tdf154481.docx and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/sw/qa/extras/ooxmlexport/data/tdf154481.docx differ diff -Nru libreoffice-7.4.6/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx libreoffice-7.4.7/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx --- libreoffice-7.4.6/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1947,8 +1947,28 @@ // tracked line is not a single text portion: w:del is recognized within w:ins CPPUNIT_ASSERT_EQUAL(OUString(""), getRun(getParagraph(1), 1)->getString()); CPPUNIT_ASSERT(hasProperty(getRun(getParagraph(1), 1), "RedlineType")); - CPPUNIT_ASSERT_EQUAL(OUString("There should be a better start to this. "), - getRun(getParagraph(1), 2)->getString()); + CPPUNIT_ASSERT_EQUAL(OUString("There "), getRun(getParagraph(1), 2)->getString()); + CPPUNIT_ASSERT_EQUAL(OUString(""), getRun(getParagraph(1), 4)->getString()); + CPPUNIT_ASSERT(hasProperty(getRun(getParagraph(1), 4), "RedlineType")); + CPPUNIT_ASSERT_EQUAL(OUString("must"), getRun(getParagraph(1), 5)->getString()); +} + +CPPUNIT_TEST_FIXTURE(Test, testTdf116084_anonymized) +{ + loadAndSave("tdf116084.docx"); + xmlDocUniquePtr pXmlDoc = parseExport("word/document.xml"); + // w:del in w:ins is exported correctly + assertXPathContent(pXmlDoc, "/w:document/w:body/w:p/w:ins/w:del/w:r/w:delText", "must"); + + // no date (anonymized changes) + assertXPath(pXmlDoc, "/w:document/w:body/w:p/w:ins[@date]", 0); + assertXPath(pXmlDoc, "/w:document/w:body/w:p/w:ins/w:del[@w:date]", 0); + + // w:ins and w:del have w:author attributes, and the same + assertXPath(pXmlDoc, "/w:document/w:body/w:p/w:ins/w:del[@w:author]", 1); + OUString sAuthor = getXPath(pXmlDoc, "/w:document/w:body/w:p/w:ins[2]", "author"); + OUString sAuthor2 = getXPath(pXmlDoc, "/w:document/w:body/w:p/w:ins/w:del", "author"); + CPPUNIT_ASSERT_EQUAL(sAuthor, sAuthor2); } DECLARE_OOXMLEXPORT_TEST(testTdf121176, "tdf121176.docx") @@ -1959,6 +1979,24 @@ CPPUNIT_ASSERT_EQUAL(OUString("must"), getRun(getParagraph(1), 2)->getString()); } +CPPUNIT_TEST_FIXTURE(Test, testTdf121176_anonymized) +{ + loadAndSave("tdf121176.docx"); + xmlDocUniquePtr pXmlDoc = parseExport("word/document.xml"); + // w:del in w:ins is exported correctly + assertXPathContent(pXmlDoc, "/w:document/w:body/w:p/w:ins/w:del/w:r/w:delText", "must"); + + // no date (anonymized changes) + assertXPathNoAttribute(pXmlDoc, "/w:document/w:body/w:p/w:ins", "date"); + assertXPath(pXmlDoc, "/w:document/w:body/w:p/w:ins/w:del[@w:date]", 0); + + // w:ins and w:del have w:author attributes, and the same + assertXPath(pXmlDoc, "/w:document/w:body/w:p/w:ins/w:del[@w:author]", 1); + OUString sAuthor = getXPath(pXmlDoc, "/w:document/w:body/w:p/w:ins", "author"); + OUString sAuthor2 = getXPath(pXmlDoc, "/w:document/w:body/w:p/w:ins/w:del", "author"); + CPPUNIT_ASSERT_EQUAL(sAuthor, sAuthor2); +} + CPPUNIT_TEST_FIXTURE(Test, testTdf128913) { loadAndSave("tdf128913.docx"); @@ -1985,6 +2023,16 @@ assertXPathContent(pXmlDoc, "/w:document/w:body/w:p/w:ins/w:del/w:r/w:delText", "inserts "); } +CPPUNIT_TEST_FIXTURE(Test, testTdf147892) +{ + loadAndSave("tdf147892.fodt"); + xmlDocUniquePtr pXmlDoc = parseExport("word/document.xml"); + // w:del in w:ins is exported correctly + // (both w:del and w:ins were exported for para marker) + assertXPath(pXmlDoc, "/w:document/w:body/w:p[1]/w:pPr/w:rPr/w:del", 1); + assertXPath(pXmlDoc, "/w:document/w:body/w:p[1]/w:pPr/w:rPr/w:ins", 0); +} + DECLARE_OOXMLEXPORT_TEST(testTdf123054, "tdf123054.docx") { CPPUNIT_ASSERT_EQUAL(OUString("No Spacing"), diff -Nru libreoffice-7.4.6/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx libreoffice-7.4.7/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx --- libreoffice-7.4.6/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1316,6 +1316,41 @@ CPPUNIT_ASSERT_EQUAL( OUString("Footnote for pg5"), xLastButOne->getString().trim() ); } +CPPUNIT_TEST_FIXTURE(Test, testTdf153255) +{ + loadAndSave("tdf153255.docx"); + xmlDocUniquePtr pXml = parseExport("word/footnotes.xml"); + CPPUNIT_ASSERT(pXml); + + uno::Reference xFootnotesSupplier(mxComponent, uno::UNO_QUERY); + uno::Reference xFootnotes = xFootnotesSupplier->getFootnotes(); + uno::Reference xLastFootnote(xFootnotes->getByIndex(5), uno::UNO_QUERY); + // This was "Footnote for pg2" (replaced footnotes) + CPPUNIT_ASSERT_EQUAL( OUString("Footnote for pg 6"), xLastFootnote->getString().trim() ); + + uno::Reference xLastButOne(xFootnotes->getByIndex(4), uno::UNO_QUERY); + // This was "Footnote for pg 6" (replaced footnotes) + CPPUNIT_ASSERT_EQUAL( OUString("Footnote for pg5"), xLastButOne->getString().trim() ); + + // check all the remaining footnotes + + uno::Reference xFootnote1(xFootnotes->getByIndex(0), uno::UNO_QUERY); + // This was "Footnote for pg3" (replaced footnotes) + CPPUNIT_ASSERT_EQUAL( OUString("Footnote for pg1"), xFootnote1->getString().trim() ); + + uno::Reference xFootnote2(xFootnotes->getByIndex(1), uno::UNO_QUERY); + // This was "Footnote for pg5" (replaced footnotes) + CPPUNIT_ASSERT_EQUAL( OUString("Footnote for pg2"), xFootnote2->getString().trim() ); + + uno::Reference xFootnote3(xFootnotes->getByIndex(2), uno::UNO_QUERY); + // This was "Footnote for pg4." (replaced footnotes) + CPPUNIT_ASSERT_EQUAL( OUString("Footnote for pg3"), xFootnote3->getString().trim() ); + + uno::Reference xFootnote4(xFootnotes->getByIndex(3), uno::UNO_QUERY); + // This was "Footnote for pg1" (replaced footnotes) + CPPUNIT_ASSERT_EQUAL( OUString("Footnote for pg4."), xFootnote4->getString().trim() ); +} + // skip test for macOS (missing fonts?) #if !defined(MACOSX) DECLARE_OOXMLEXPORT_TEST(testTdf146346, "tdf146346.docx") diff -Nru libreoffice-7.4.6/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx libreoffice-7.4.7/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx --- libreoffice-7.4.6/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -988,6 +988,11 @@ } } +DECLARE_OOXMLEXPORT_TEST(testTdf154481, "tdf154481.docx") +{ + CPPUNIT_ASSERT_EQUAL_MESSAGE("Missing pages!", 7, getPages()); +} + CPPUNIT_TEST_FIXTURE(Test, testTdf149200) { loadAndSave("tdf149200.docx"); diff -Nru libreoffice-7.4.6/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx libreoffice-7.4.7/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx --- libreoffice-7.4.6/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -518,6 +518,11 @@ assertXPath(pXmlDoc, "/w:document/w:body/w:tbl/w:tr[1]/w:tc[2]/w:p[2]/w:pPr/w:spacing", "after", "0"); } +DECLARE_OOXMLEXPORT_TEST(testTdf153891, "tdf153891.docx") +{ + // This document simply crashed the importer. +} + CPPUNIT_TEST_FIXTURE(Test, testFdo69636) { loadAndSave("fdo69636.docx"); diff -Nru libreoffice-7.4.6/sw/qa/extras/uiwriter/data/tdf153819.fodt libreoffice-7.4.7/sw/qa/extras/uiwriter/data/tdf153819.fodt --- libreoffice-7.4.6/sw/qa/extras/uiwriter/data/tdf153819.fodt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/sw/qa/extras/uiwriter/data/tdf153819.fodt 2023-05-03 15:22:13.000000000 +0000 @@ -0,0 +1,174 @@ + + + + 2023-03-06T12:23:04.8519275222023-03-06T12:26:09.438416733PT1M28S2LibreOfficeDev/7.6.0.0.alpha0$Linux_X86_64 LibreOffice_project/e29c2b96b1aaba0fef5c83de7be18448e5903d08 + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unknown Author + 2023-03-06T12:26:07 + + + + + + + + + + + + + + + + x + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/sw/qa/extras/uiwriter/uiwriter6.cxx libreoffice-7.4.7/sw/qa/extras/uiwriter/uiwriter6.cxx --- libreoffice-7.4.6/sw/qa/extras/uiwriter/uiwriter6.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/qa/extras/uiwriter/uiwriter6.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -26,6 +26,7 @@ #include #include #include +#include #include #include @@ -899,6 +900,57 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xTable2b->getRows()->getCount()); } +CPPUNIT_TEST_FIXTURE(SwUiWriterTest6, testTdf154599_MovingColumn) +{ + //create new writer document + SwDoc* pDoc = createSwDoc(); + CPPUNIT_ASSERT(pDoc); + SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + CPPUNIT_ASSERT(pWrtShell); + + // Create a table with less columns, than row + SwInsertTableOptions TableOpt(SwInsertTableFlags::DefaultBorder, 0); + (void)&pWrtShell->InsertTable(TableOpt, 4, 3); + + uno::Reference xTablesSupplier(mxComponent, uno::UNO_QUERY); + uno::Reference xTables(xTablesSupplier->getTextTables(), + uno::UNO_QUERY); + uno::Reference xTableNames = xTablesSupplier->getTextTables(); + CPPUNIT_ASSERT(xTableNames->hasByName("Table1")); + uno::Reference xTable1(xTableNames->getByName("Table1"), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(sal_Int32(4), xTable1->getRows()->getCount()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(3), xTable1->getColumns()->getCount()); + + // without redlining + CPPUNIT_ASSERT_MESSAGE("redlining should be off", + !pDoc->getIDocumentRedlineAccess().IsRedlineOn()); + + // Move first column of the table before the third column by drag & drop + + SwRootFrame* pLayout = pDoc->getIDocumentLayoutAccess().GetCurrentLayout(); + SwFrame* pPage = pLayout->Lower(); + SwFrame* pBody = pPage->GetLower(); + SwFrame* pTable = pBody->GetLower(); + SwFrame* pRow1 = pTable->GetLower(); + SwFrame* pCellA1 = pRow1->GetLower(); + SwFrame* pCellC1 = pCellA1->GetNext()->GetNext(); + const SwRect& rCellA1Rect = pCellA1->getFrameArea(); + const SwRect& rCellC1Rect = pCellC1->getFrameArea(); + Point ptTo(rCellC1Rect.Left() + rCellC1Rect.Width() / 2, + rCellC1Rect.Top() + rCellC1Rect.Height() / 2); + // select first table column by using the middle point of the top border of column A + Point ptColumn(rCellA1Rect.Left() + rCellA1Rect.Width() / 2, rCellA1Rect.Top() - 5); + pWrtShell->SelectTableRowCol(ptColumn); + + // This crashed here before the fix. + rtl::Reference xTransfer = new SwTransferable(*pWrtShell); + + xTransfer->PrivateDrop(*pWrtShell, ptTo, /*bMove=*/true, /*bXSelection=*/true); + + CPPUNIT_ASSERT_EQUAL(sal_Int32(4), xTable1->getRows()->getCount()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(3), xTable1->getColumns()->getCount()); +} + CPPUNIT_TEST_FIXTURE(SwUiWriterTest6, testTdf115132) { SwDoc* pDoc = createSwDoc(); diff -Nru libreoffice-7.4.6/sw/qa/extras/uiwriter/uiwriter7.cxx libreoffice-7.4.7/sw/qa/extras/uiwriter/uiwriter7.cxx --- libreoffice-7.4.6/sw/qa/extras/uiwriter/uiwriter7.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/qa/extras/uiwriter/uiwriter7.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -147,6 +147,24 @@ CPPUNIT_ASSERT_EQUAL(uno::Any(sal_Int16(3)), xPropSet->getPropertyValue("PageNumberOffset")); } +CPPUNIT_TEST_FIXTURE(SwUiWriterTest7, testTdf153819) +{ + // copy a table before a deleted table in Hide Changes mode + SwDoc* pDoc = createSwDoc(DATA_DIRECTORY, "tdf153819.fodt"); + CPPUNIT_ASSERT(pDoc); + SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + CPPUNIT_ASSERT(pWrtShell); + // hide changes + CPPUNIT_ASSERT(pWrtShell->GetLayout()->IsHideRedlines()); + dispatchCommand(mxComponent, ".uno:SelectTable", {}); + dispatchCommand(mxComponent, ".uno:Copy", {}); + dispatchCommand(mxComponent, ".uno:GoDown", {}); + // Without the fix in place, this test would have crashed here + dispatchCommand(mxComponent, ".uno:Paste", {}); + // FIXME: Show Changes, otherwise ~SwTableNode() would have crashed + dispatchCommand(mxComponent, ".uno:ShowTrackedChanges", {}); +} + CPPUNIT_TEST_FIXTURE(SwUiWriterTest7, testTdf79236) { SwDoc* pDoc = createSwDoc(); diff -Nru libreoffice-7.4.6/sw/source/core/doc/DocumentRedlineManager.cxx libreoffice-7.4.7/sw/source/core/doc/DocumentRedlineManager.cxx --- libreoffice-7.4.6/sw/source/core/doc/DocumentRedlineManager.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/core/doc/DocumentRedlineManager.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1740,7 +1740,10 @@ // even if they are not allowed to be combined RedlineFlags eOld = meRedlineFlags; if( !( eOld & RedlineFlags::DontCombineRedlines ) && - pRedl->IsOwnRedline( *pNewRedl ) ) + pRedl->IsOwnRedline( *pNewRedl ) && + // tdf#116084 tdf#121176 don't combine anonymized deletion + // and anonymized insertion, i.e. with the same dummy timestamp + !pRedl->GetRedlineData(0).IsAnonymized() ) { // Set to NONE, so that the Delete::Redo merges the Redline data correctly! @@ -1776,18 +1779,8 @@ bCompress = true; } - if( !bCallDelete && !bDec && *pEnd == *pREnd ) - { - m_rDoc.getIDocumentContentOperations().DeleteAndJoin( *pNewRedl ); - bCompress = true; - } - else if ( bCallDelete || !bDec ) - { - // delete new redline, except in some cases of fallthrough from previous - // case ::Equal (eg. same portion w:del in w:ins in OOXML import) - delete pNewRedl; - pNewRedl = nullptr; - } + delete pNewRedl; + pNewRedl = nullptr; break; case SwComparePosition::Outside: diff -Nru libreoffice-7.4.6/sw/source/core/docnode/ndtbl.cxx libreoffice-7.4.7/sw/source/core/docnode/ndtbl.cxx --- libreoffice-7.4.6/sw/source/core/docnode/ndtbl.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/core/docnode/ndtbl.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -2375,8 +2375,11 @@ while( nullptr != (pFrame = aNode2Layout.NextFrame()) ) { - if (pFrame->getRootFrame()->HasMergedParas() - && !pNode->IsCreateFrameWhenHidingRedlines()) + if ( ( pFrame->getRootFrame()->HasMergedParas() && + !pNode->IsCreateFrameWhenHidingRedlines() ) || + // tdf#153819 table deletion with change tracking: + // table node without frames in Hide Changes mode + !pFrame->GetUpper() ) { continue; } diff -Nru libreoffice-7.4.6/sw/source/core/layout/flowfrm.cxx libreoffice-7.4.7/sw/source/core/layout/flowfrm.cxx --- libreoffice-7.4.6/sw/source/core/layout/flowfrm.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/core/layout/flowfrm.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1737,6 +1737,11 @@ { SwTwips nUpperSpaceAmountConsideredForPrevFrameAndPageGrid = 0; + if (!m_rThis.GetUpper() || !m_rThis.GetUpper()->GetFormat()) + { + return nUpperSpaceAmountConsideredForPrevFrameAndPageGrid; + } + if ( !m_rThis.GetUpper()->GetFormat()->getIDocumentSettingAccess().get(DocumentSettingId::USE_FORMER_OBJECT_POS) ) { nUpperSpaceAmountConsideredForPrevFrameAndPageGrid = diff -Nru libreoffice-7.4.6/sw/source/core/layout/fly.cxx libreoffice-7.4.7/sw/source/core/layout/fly.cxx --- libreoffice-7.4.6/sw/source/core/layout/fly.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/core/layout/fly.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -2578,12 +2578,12 @@ if ( rSz.GetHeightPercent() && rSz.GetHeightPercent() != SwFormatFrameSize::SYNCED ) aRet.setHeight( nRelHeight * rSz.GetHeightPercent() / 100 ); - if ( rSz.GetWidthPercent() == SwFormatFrameSize::SYNCED ) + if ( rSz.GetHeight() && rSz.GetWidthPercent() == SwFormatFrameSize::SYNCED ) { aRet.setWidth( aRet.Width() * ( aRet.Height()) ); aRet.setWidth( aRet.Width() / ( rSz.GetHeight()) ); } - else if ( rSz.GetHeightPercent() == SwFormatFrameSize::SYNCED ) + else if ( rSz.GetWidth() && rSz.GetHeightPercent() == SwFormatFrameSize::SYNCED ) { aRet.setHeight( aRet.Height() * ( aRet.Width()) ); aRet.setHeight( aRet.Height() / ( rSz.GetWidth()) ); diff -Nru libreoffice-7.4.6/sw/source/core/layout/tabfrm.cxx libreoffice-7.4.7/sw/source/core/layout/tabfrm.cxx --- libreoffice-7.4.6/sw/source/core/layout/tabfrm.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/core/layout/tabfrm.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1097,9 +1097,16 @@ // First case: One of the repeated headline does not fit to the page anymore. // tdf#88496 Disable repeated headline (like for #i44910#) to avoid loops and // to fix interoperability problems (very long tables only with headline) + // tdf#150149 except in multi-column sections, where it's possible to enlarge + // the height of the section frame instead of using this fallback OSL_ENSURE( !GetIndPrev(), "Table is supposed to be at beginning" ); - m_pTable->SetRowsToRepeat(0); - return false; + if ( !IsInSct() ) + { + m_pTable->SetRowsToRepeat(0); + return false; + } + else + bKeepNextRow = true; } else if ( !GetIndPrev() && nRepeat == nRowCount ) { diff -Nru libreoffice-7.4.6/sw/source/core/ole/ndole.cxx libreoffice-7.4.7/sw/source/core/ole/ndole.cxx --- libreoffice-7.4.6/sw/source/core/ole/ndole.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/core/ole/ndole.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -149,6 +149,8 @@ // TODO/LATER: actually SwEmbedObjectLink should be used here, but because different objects are used to control // embedded object different link objects with the same functionality had to be implemented +namespace { + class SwEmbedObjectLink : public sfx2::SvBaseLink { SwOLENode* m_pOleNode; @@ -211,6 +213,44 @@ SvBaseLink::Closed(); } +class SwIFrameLink : public sfx2::SvBaseLink +{ + SwOLENode* m_pOleNode; + +public: + explicit SwIFrameLink(SwOLENode* pNode) + : ::sfx2::SvBaseLink(::SfxLinkUpdateMode::ONCALL, SotClipboardFormatId::SVXB) + , m_pOleNode(pNode) + { + SetSynchron( false ); + } + + ::sfx2::SvBaseLink::UpdateResult DataChanged( + const OUString&, const uno::Any& ) + { + uno::Reference xObject = m_pOleNode->GetOLEObj().GetOleRef(); + uno::Reference xPersObj(xObject, uno::UNO_QUERY); + if (xPersObj.is()) + { + // let the IFrameObject reload the link + try + { + xPersObj->reload(uno::Sequence(), uno::Sequence()); + } + catch (const uno::Exception&) + { + } + + m_pOleNode->SetChanged(); + } + + return SUCCESS; + } + +}; + +} + SwOLENode::SwOLENode( const SwNodeIndex &rWhere, const svt::EmbeddedObjectRef& xObj, SwGrfFormatColl *pGrfColl, @@ -609,18 +649,49 @@ try { - uno::Reference< embed::XLinkageSupport > xLinkSupport( maOLEObj.m_xOLERef.GetObject(), uno::UNO_QUERY_THROW ); - if ( xLinkSupport->isLink() ) + uno::Reference xObject = maOLEObj.m_xOLERef.GetObject(); + if (!xObject) + return; + + bool bIFrame = false; + + OUString aLinkURL; + uno::Reference xLinkSupport(xObject, uno::UNO_QUERY); + if (xLinkSupport) + { + if (xLinkSupport->isLink()) + aLinkURL = xLinkSupport->getLinkURL(); + } + else { - const OUString aLinkURL = xLinkSupport->getLinkURL(); - if ( !aLinkURL.isEmpty() ) + // get IFrame (Floating Frames) listed and updatable from the + // manage links dialog + SvGlobalName aClassId(xObject->getClassID()); + if (aClassId == SvGlobalName(SO3_IFRAME_CLASSID)) + { + uno::Reference xSet(xObject->getComponent(), uno::UNO_QUERY); + if (xSet.is()) + xSet->getPropertyValue("FrameURL") >>= aLinkURL; + bIFrame = true; + } + } + + if (!aLinkURL.isEmpty()) // this is a file link so the model link manager should handle it + { + SwEmbedObjectLink* pEmbedObjectLink = nullptr; + if (!bIFrame) + { + pEmbedObjectLink = new SwEmbedObjectLink(this); + mpObjectLink = pEmbedObjectLink; + } + else { - // this is a file link so the model link manager should handle it - mpObjectLink = new SwEmbedObjectLink( this ); - maLinkURL = aLinkURL; - GetDoc().getIDocumentLinksAdministration().GetLinkManager().InsertFileLink( *mpObjectLink, sfx2::SvBaseLinkObjectType::ClientOle, aLinkURL ); - mpObjectLink->Connect(); + mpObjectLink = new SwIFrameLink(this); } + maLinkURL = aLinkURL; + GetDoc().getIDocumentLinksAdministration().GetLinkManager().InsertFileLink( *mpObjectLink, sfx2::SvBaseLinkObjectType::ClientOle, aLinkURL ); + if (pEmbedObjectLink) + pEmbedObjectLink->Connect(); } } catch( uno::Exception& ) diff -Nru libreoffice-7.4.6/sw/source/core/unocore/unofield.cxx libreoffice-7.4.7/sw/source/core/unocore/unofield.cxx --- libreoffice-7.4.6/sw/source/core/unocore/unofield.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/core/unocore/unofield.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1325,6 +1325,8 @@ SolarMutexGuard aGuard; SwFieldType* pType = m_pImpl->GetFieldType(); + if (!pType && !m_pImpl->m_pDoc) // tdf#152619 + return nullptr; uno::Reference const xRet( SwXFieldMaster::CreateXFieldMaster(m_pImpl->m_pDoc, pType)); return xRet; diff -Nru libreoffice-7.4.6/sw/source/filter/html/htmlfldw.cxx libreoffice-7.4.7/sw/source/filter/html/htmlfldw.cxx --- libreoffice-7.4.6/sw/source/filter/html/htmlfldw.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/filter/html/htmlfldw.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -537,7 +537,7 @@ { const SwTextField *pTextField = rField.GetTextField(); OSL_ENSURE( pTextField, "Where is the txt fld?" ); - if( pTextField ) + if( pTextField && rWrt.m_pDoc->GetDocShell() ) { // ReqIF-XHTML doesn't allow specifying a background color. bool bFieldShadings = SwViewOption::IsFieldShadings() && !rHTMLWrt.mbReqIF; diff -Nru libreoffice-7.4.6/sw/source/filter/html/swhtml.cxx libreoffice-7.4.7/sw/source/filter/html/swhtml.cxx --- libreoffice-7.4.6/sw/source/filter/html/swhtml.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/filter/html/swhtml.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -2953,18 +2953,6 @@ pAttr = pPrev; continue; - case RES_LR_SPACE: - if( aAttrPam.GetPoint()->nNode.GetIndex() == - aAttrPam.GetMark()->nNode.GetIndex()) - { - // because of numbering set this attribute directly at node - pCNd->SetAttr( *pAttr->m_pItem ); - break; - } - OSL_ENSURE( false, - "LRSpace set over multiple paragraphs!" ); - [[fallthrough]]; // (shouldn't reach this point anyway) - // tdf#94088 expand RES_BACKGROUND to the new fill attribute // definitions in the range [XATTR_FILL_FIRST .. XATTR_FILL_LAST]. // This is the right place in the future if the adapted fill attributes @@ -2978,6 +2966,18 @@ m_xDoc->getIDocumentContentOperations().InsertItemSet(aAttrPam, aNewSet, SetAttrMode::DONTREPLACE); break; } + + case RES_LR_SPACE: + if( aAttrPam.GetPoint()->nNode.GetIndex() == + aAttrPam.GetMark()->nNode.GetIndex()) + { + // because of numbering set this attribute directly at node + pCNd->SetAttr( *pAttr->m_pItem ); + break; + } + OSL_ENSURE( false, + "LRSpace set over multiple paragraphs!" ); + [[fallthrough]]; // (shouldn't reach this point anyway) default: // maybe jump to a bookmark diff -Nru libreoffice-7.4.6/sw/source/filter/ww8/docxattributeoutput.cxx libreoffice-7.4.7/sw/source/filter/ww8/docxattributeoutput.cxx --- libreoffice-7.4.6/sw/source/filter/ww8/docxattributeoutput.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/filter/ww8/docxattributeoutput.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1466,13 +1466,13 @@ if ( pRedlineParagraphMarkerDeleted ) { - StartRedline( pRedlineParagraphMarkerDeleted ); - EndRedline( pRedlineParagraphMarkerDeleted ); + StartRedline( pRedlineParagraphMarkerDeleted, /*bLastRun=*/true ); + EndRedline( pRedlineParagraphMarkerDeleted, /*bLastRun=*/true ); } if ( pRedlineParagraphMarkerInserted ) { - StartRedline( pRedlineParagraphMarkerInserted ); - EndRedline( pRedlineParagraphMarkerInserted ); + StartRedline( pRedlineParagraphMarkerInserted, /*bLastRun=*/true ); + EndRedline( pRedlineParagraphMarkerInserted, /*bLastRun=*/true ); } // mergeTopMarks() after paragraph mark properties child elements. @@ -1575,7 +1575,7 @@ m_pSerializer->mark(Tag_StartRun_3); // let's call it "postponed text" } -void DocxAttributeOutput::EndRun(const SwTextNode* pNode, sal_Int32 nPos, bool /*bLastRun*/) +void DocxAttributeOutput::EndRun(const SwTextNode* pNode, sal_Int32 nPos, bool bLastRun) { int nFieldsInPrevHyperlink = m_nFieldsInHyperlink; // Reset m_nFieldsInHyperlink if a new hyperlink is about to start @@ -1665,9 +1665,9 @@ // InputField with extra grabbag params - it is sdt field (pIt->eType == ww::eFILLIN && static_cast(pIt->pField.get())->getGrabBagParams().hasElements()))) { - StartRedline( m_pRedlineData ); + StartRedline( m_pRedlineData, bLastRun ); StartField_Impl( pNode, nPos, *pIt, true ); - EndRedline( m_pRedlineData ); + EndRedline( m_pRedlineData, bLastRun ); if (m_startedHyperlink) ++m_nFieldsInHyperlink; @@ -1738,7 +1738,7 @@ WriteContentControlStart(); // if there is some redlining in the document, output it - StartRedline( m_pRedlineData ); + StartRedline( m_pRedlineData, bLastRun ); // XML_r node should be surrounded with bookmark-begin and bookmark-end nodes if it has bookmarks. // The same is applied for permission ranges. @@ -1802,7 +1802,7 @@ // if there is some redlining in the document, output it // (except in the case of fields with multiple runs) - EndRedline( m_pRedlineData ); + EndRedline( m_pRedlineData, bLastRun ); // enclose in a sdt block, if necessary: if one is already started, then don't do it for now // (so on export sdt blocks are never nested ATM) @@ -1912,7 +1912,7 @@ if ( m_pRedlineData ) { - EndRedline( m_pRedlineData ); + EndRedline( m_pRedlineData, bLastRun ); m_pRedlineData = nullptr; } @@ -3778,13 +3778,14 @@ // The difference between 'Redline' and 'StartRedline'+'EndRedline' is that: // 'Redline' is used for tracked changes of formatting information of a run like Bold, Underline. (the '' is inside the 'run' node) // 'StartRedline' is used to output tracked changes of run insertion and deletion (the run is inside the '' node) -void DocxAttributeOutput::StartRedline( const SwRedlineData * pRedlineData ) +void DocxAttributeOutput::StartRedline( const SwRedlineData * pRedlineData, bool bLastRun ) { if ( !pRedlineData ) return; // write out stack of this redline recursively (first the oldest) - StartRedline( pRedlineData->Next() ); + if ( !bLastRun ) + StartRedline( pRedlineData->Next(), false ); OString aId( OString::number( m_nRedlineId++ ) ); @@ -3829,7 +3830,7 @@ } } -void DocxAttributeOutput::EndRedline( const SwRedlineData * pRedlineData ) +void DocxAttributeOutput::EndRedline( const SwRedlineData * pRedlineData, bool bLastRun ) { if ( !pRedlineData || m_bWritingField ) return; @@ -3855,7 +3856,8 @@ } // write out stack of this redline recursively (first the newest) - EndRedline( pRedlineData->Next() ); + if ( !bLastRun ) + EndRedline( pRedlineData->Next(), false ); } void DocxAttributeOutput::FormatDrop( const SwTextNode& /*rNode*/, const SwFormatDrop& /*rSwFormatDrop*/, sal_uInt16 /*nStyle*/, ww8::WW8TableNodeInfo::Pointer_t /*pTextNodeInfo*/, ww8::WW8TableNodeInfoInner::Pointer_t ) diff -Nru libreoffice-7.4.6/sw/source/filter/ww8/docxattributeoutput.hxx libreoffice-7.4.7/sw/source/filter/ww8/docxattributeoutput.hxx --- libreoffice-7.4.6/sw/source/filter/ww8/docxattributeoutput.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/filter/ww8/docxattributeoutput.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -228,12 +228,12 @@ /// /// Start of the tag that encloses the run, fills the info according to /// the value of pRedlineData. - void StartRedline( const SwRedlineData * pRedlineData ); + void StartRedline( const SwRedlineData * pRedlineData, bool bLastRun ); /// Output redlining. /// /// End of the tag that encloses the run. - void EndRedline( const SwRedlineData * pRedlineData ); + void EndRedline( const SwRedlineData * pRedlineData, bool bLastRun ); virtual void SetStateOfFlyFrame( FlyProcessingState nStateOfFlyFrame ) override; virtual void SetAnchorIsLinkedToNode( bool bAnchorLinkedToNode ) override; diff -Nru libreoffice-7.4.6/sw/source/ui/chrdlg/chardlg.cxx libreoffice-7.4.7/sw/source/ui/chrdlg/chardlg.cxx --- libreoffice-7.4.6/sw/source/ui/chrdlg/chardlg.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/ui/chrdlg/chardlg.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -170,9 +170,11 @@ m_xURLPB->connect_clicked(LINK( this, SwCharURLPage, InsertFileHdl)); m_xEventPB->connect_clicked(LINK( this, SwCharURLPage, EventHdl)); - SwView *pView = ::GetActiveView(); - ::FillCharStyleListBox(*m_xVisitedLB, pView->GetDocShell()); - ::FillCharStyleListBox(*m_xNotVisitedLB, pView->GetDocShell()); + if (SwView* pView = GetActiveView()) + { + ::FillCharStyleListBox(*m_xVisitedLB, pView->GetDocShell()); + ::FillCharStyleListBox(*m_xNotVisitedLB, pView->GetDocShell()); + } m_xVisitedLB->set_active_id(OUString::number(RES_POOLCHR_INET_VISIT)); m_xVisitedLB->save_value(); m_xNotVisitedLB->set_active_id(OUString::number(RES_POOLCHR_INET_NORMAL)); @@ -302,8 +304,9 @@ IMPL_LINK_NOARG(SwCharURLPage, EventHdl, weld::Button&, void) { - bModified |= SwMacroAssignDlg::INetFormatDlg(GetFrameWeld(), - ::GetActiveView()->GetWrtShell(), m_oINetMacroTable); + if (SwView* pView = GetActiveView()) + bModified |= SwMacroAssignDlg::INetFormatDlg(GetFrameWeld(), + pView->GetWrtShell(), m_oINetMacroTable); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.4.6/sw/source/ui/chrdlg/drpcps.cxx libreoffice-7.4.7/sw/source/ui/chrdlg/drpcps.cxx --- libreoffice-7.4.6/sw/source/ui/chrdlg/drpcps.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/ui/chrdlg/drpcps.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -169,10 +169,15 @@ #define LINES 10 #define BORDER 2 -void SwDropCapsPict::GetFontSettings( const SwDropCapsPage& _rPage, vcl::Font& _rFont, sal_uInt16 _nWhich ) +void SwDropCapsPict::GetFontSettings( vcl::Font& _rFont, sal_uInt16 _nWhich ) { - SfxItemSet aSet( _rPage.rSh.GetAttrPool(), _nWhich, _nWhich); - _rPage.rSh.GetCurAttr(aSet); + SwView* pView = GetActiveView(); + if (!pView) + return; + SwWrtShell& rWrtShell = pView->GetWrtShell(); + SfxItemSet aSet( rWrtShell.GetAttrPool(), _nWhich, _nWhich); + rWrtShell.GetCurAttr(aSet); + SvxFontItem aFormatFont(static_cast( aSet.Get(_nWhich))); _rFont.SetFamily(aFormatFont.GetFamily()); @@ -183,6 +188,11 @@ void SwDropCapsPict::UpdatePaintSettings() { + SwView* pView = GetActiveView(); + if (!pView) + return; + SwWrtShell& rWrtShell = pView->GetWrtShell(); + maBackColor = Application::GetSettings().GetStyleSettings().GetWindowColor(); maTextLineColor = COL_LIGHTGRAY; @@ -194,33 +204,33 @@ if (mpPage) { // tdf#135244: preview generation should not jump document view - auto aLock(mpPage->rSh.GetView().GetDocShell()->LockAllViews()); + auto aLock(rWrtShell.GetView().GetDocShell()->LockAllViews()); if (!mpPage->m_xTemplateBox->get_active()) { // query the Font at paragraph's beginning - mpPage->rSh.Push(); - mpPage->rSh.SttCursorMove(); - mpPage->rSh.ClearMark(); + rWrtShell.Push(); + rWrtShell.SttCursorMove(); + rWrtShell.ClearMark(); SwWhichPara pSwuifnParaCurr = GoCurrPara; SwMoveFnCollection const & pSwuifnParaStart = fnParaStart; - mpPage->rSh.MovePara(pSwuifnParaCurr,pSwuifnParaStart); + rWrtShell.MovePara(pSwuifnParaCurr,pSwuifnParaStart); // normal - GetFontSettings( *mpPage, aFont, RES_CHRATR_FONT ); + GetFontSettings( aFont, RES_CHRATR_FONT ); // CJK - GetFontSettings( *mpPage, maCJKFont, RES_CHRATR_CJK_FONT ); + GetFontSettings( maCJKFont, RES_CHRATR_CJK_FONT ); // CTL - GetFontSettings( *mpPage, maCTLFont, RES_CHRATR_CTL_FONT ); + GetFontSettings( maCTLFont, RES_CHRATR_CTL_FONT ); - mpPage->rSh.EndCursorMove(); - mpPage->rSh.Pop(SwCursorShell::PopMode::DeleteCurrent); + rWrtShell.EndCursorMove(); + rWrtShell.Pop(SwCursorShell::PopMode::DeleteCurrent); } else { // query Font at character template - SwCharFormat *pFormat = mpPage->rSh.GetCharStyle( + SwCharFormat *pFormat = rWrtShell.GetCharStyle( mpPage->m_xTemplateBox->get_active_text(), SwWrtShell::GETSTYLE_CREATEANY ); OSL_ENSURE(pFormat, "character style doesn't exist!"); @@ -462,7 +472,6 @@ : SfxTabPage(pPage, pController, "modules/swriter/ui/dropcapspage.ui", "DropCapPage", &rSet) , bModified(false) , bFormat(true) - , rSh(::GetActiveView()->GetWrtShell()) , m_xDropCapsBox(m_xBuilder->weld_check_button("checkCB_SWITCH")) , m_xWholeWordCB(m_xBuilder->weld_check_button("checkCB_WORD")) , m_xSwitchText(m_xBuilder->weld_label("labelFT_DROPCAPS")) @@ -549,7 +558,9 @@ m_xDistanceField->set_value(0, FieldUnit::TWIP); } - ::FillCharStyleListBox(*m_xTemplateBox, rSh.GetView().GetDocShell(), true); + SwView* pView = GetActiveView(); + if (pView) + ::FillCharStyleListBox(*m_xTemplateBox, pView->GetWrtShell().GetView().GetDocShell(), true); m_xTemplateBox->insert_text(0, SwResId(SW_STR_NONE)); @@ -570,7 +581,8 @@ m_xTextEdit->set_text(GetDefaultString(nVal)); else { - m_xTextEdit->set_text(rSh.GetDropText(nVal)); + if (pView) + m_xTextEdit->set_text(pView->GetWrtShell().GetDropText(nVal)); m_xTextEdit->set_sensitive(true); m_xTextText->set_sensitive(true); } @@ -634,12 +646,15 @@ : 0; bool bSetText = false; - if (bFormat || rSh.GetDropText(1).isEmpty()) - sPreview = GetDefaultString(nVal); - else + if (SwView* pView = GetActiveView()) { - bSetText = true; - sPreview = rSh.GetDropText(nVal); + if (bFormat || pView->GetWrtShell().GetDropText(1).isEmpty()) + sPreview = GetDefaultString(nVal); + else + { + bSetText = true; + sPreview = pView->GetWrtShell().GetDropText(nVal); + } } OUString sEdit(m_xTextEdit->get_text()); @@ -709,8 +724,9 @@ aFormat.GetWholeWord() = m_xWholeWordCB->get_active(); // template - if (m_xTemplateBox->get_active()) - aFormat.SetCharFormat(rSh.GetCharStyle(m_xTemplateBox->get_active_text())); + if (SwView* pView = GetActiveView()) + if (m_xTemplateBox->get_active()) + aFormat.SetCharFormat(pView->GetWrtShell().GetCharStyle(m_xTemplateBox->get_active_text())); } else { diff -Nru libreoffice-7.4.6/sw/source/ui/chrdlg/swuiccoll.cxx libreoffice-7.4.7/sw/source/ui/chrdlg/swuiccoll.cxx --- libreoffice-7.4.6/sw/source/ui/chrdlg/swuiccoll.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/ui/chrdlg/swuiccoll.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -37,7 +37,6 @@ SwCondCollPage::SwCondCollPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet &rSet) : SfxTabPage(pPage, pController, "modules/swriter/ui/conditionpage.ui", "ConditionPage", &rSet) - , m_rSh(::GetActiveView()->GetWrtShell()) , m_pCmds(SwCondCollItem::GetCmds()) , m_pFormat(nullptr) , m_xTbLinks(m_xBuilder->weld_tree_view("links")) @@ -122,9 +121,13 @@ void SwCondCollPage::Reset(const SfxItemSet *) { m_xTbLinks->clear(); - - SfxStyleSheetBasePool* pPool = m_rSh.GetView().GetDocShell()->GetStyleSheetPool(); m_xStyleLB->clear(); + + SwView* pView = GetActiveView(); + if (!pView) + return; + + SfxStyleSheetBasePool* pPool = pView->GetWrtShell().GetView().GetDocShell()->GetStyleSheetPool(); const SfxStyleSheetBase* pBase = pPool->First(SfxStyleFamily::Para); while (pBase) { @@ -198,9 +201,14 @@ if (pBox == m_xFilterLB.get()) { m_xStyleLB->clear(); + + SwView* pView = GetActiveView(); + if (!pView) + return; + const sal_Int32 nSelPos = m_xFilterLB->get_active(); const SfxStyleSearchBits nSearchFlags = static_cast(m_xFilterLB->get_id(nSelPos).toInt32()); - SfxStyleSheetBasePool* pPool = m_rSh.GetView().GetDocShell()->GetStyleSheetPool(); + SfxStyleSheetBasePool* pPool = pView->GetWrtShell().GetView().GetDocShell()->GetStyleSheetPool(); const SfxStyleSheetBase* pBase = pPool->First(SfxStyleFamily::Para, nSearchFlags); bool bEmpty = true; diff -Nru libreoffice-7.4.6/sw/source/ui/dbui/mmresultdialogs.cxx libreoffice-7.4.7/sw/source/ui/dbui/mmresultdialogs.cxx --- libreoffice-7.4.6/sw/source/ui/dbui/mmresultdialogs.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/ui/dbui/mmresultdialogs.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -264,13 +264,15 @@ m_xFromRB->connect_toggled(aLink); // m_pSaveAsOneRB is the default, so disable m_xFromNF and m_xToNF initially. aLink.Call(*m_xSaveAsOneRB); - SwView* pView = ::GetActiveView(); - const std::shared_ptr& xConfigItem = pView->GetMailMergeConfigItem(); - assert(xConfigItem); - sal_Int32 nCount = xConfigItem->GetMergedDocumentCount(); - m_xFromNF->set_max(nCount); - m_xToNF->set_max(nCount); - m_xToNF->set_value(nCount); + if (SwView* pView = GetActiveView()) + { + const std::shared_ptr& xConfigItem = pView->GetMailMergeConfigItem(); + assert(xConfigItem); + sal_Int32 nCount = xConfigItem->GetMergedDocumentCount(); + m_xFromNF->set_max(nCount); + m_xToNF->set_max(nCount); + m_xToNF->set_value(nCount); + } m_xOKButton->connect_clicked(LINK(this, SwMMResultSaveDialog, SaveOutputHdl_Impl)); } @@ -361,7 +363,9 @@ void SwMMResultPrintDialog::FillInPrinterSettings() { //fill printer ListBox - SwView* pView = ::GetActiveView(); + SwView* pView = GetActiveView(); + if (!pView) + return; const std::shared_ptr& xConfigItem = pView->GetMailMergeConfigItem(); const std::vector& rPrinters = Printer::GetPrinterQueues(); unsigned int nCount = rPrinters.size(); @@ -394,7 +398,9 @@ void SwMMResultEmailDialog::FillInEmailSettings() { - SwView* pView = ::GetActiveView(); + SwView* pView = GetActiveView(); + if (!pView) + return; const std::shared_ptr& xConfigItem = pView->GetMailMergeConfigItem(); assert(xConfigItem); @@ -550,7 +556,9 @@ IMPL_LINK_NOARG(SwMMResultSaveDialog, SaveOutputHdl_Impl, weld::Button&, void) { - SwView* pView = ::GetActiveView(); + SwView* pView = GetActiveView(); + if (!pView) + return; std::shared_ptr xConfigItem = pView->GetMailMergeConfigItem(); assert(xConfigItem); @@ -746,7 +754,9 @@ IMPL_LINK(SwMMResultPrintDialog, PrinterChangeHdl_Impl, weld::ComboBox&, rBox, void) { - SwView* pView = ::GetActiveView(); + SwView* pView = GetActiveView(); + if (!pView) + return; const std::shared_ptr& xConfigItem = pView->GetMailMergeConfigItem(); assert(xConfigItem); if (rBox.get_active() != -1) @@ -782,7 +792,9 @@ IMPL_LINK_NOARG(SwMMResultPrintDialog, PrintHdl_Impl, weld::Button&, void) { - SwView* pView = ::GetActiveView(); + SwView* pView = GetActiveView(); + if (!pView) + return; std::shared_ptr xConfigItem = pView->GetMailMergeConfigItem(); assert(xConfigItem); @@ -896,7 +908,9 @@ // Send documents as e-mail IMPL_LINK_NOARG(SwMMResultEmailDialog, SendDocumentsHdl_Impl, weld::Button&, void) { - SwView* pView = ::GetActiveView(); + SwView* pView = GetActiveView(); + if (!pView) + return; std::shared_ptr xConfigItem = pView->GetMailMergeConfigItem(); assert(xConfigItem); diff -Nru libreoffice-7.4.6/sw/source/ui/dialog/wordcountdialog.cxx libreoffice-7.4.7/sw/source/ui/dialog/wordcountdialog.cxx --- libreoffice-7.4.6/sw/source/ui/dialog/wordcountdialog.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/ui/dialog/wordcountdialog.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -129,19 +129,22 @@ void SwWordCountFloatDlg::UpdateCounts() { - SwWrtShell &rSh = ::GetActiveView()->GetWrtShell(); - SwDocStat aCurrCnt; - SwDocStat aDocStat; + if (SwView* pView = GetActiveView()) { - auto& rDocShell(*GetActiveView()->GetDocShell()); - SwWait aWait(rDocShell, true); - auto aLock = rDocShell.LockAllViews(); - rSh.StartAction(); - rSh.CountWords( aCurrCnt ); - aDocStat = rSh.GetUpdatedDocStat(); - rSh.EndAction(); + SwWrtShell &rSh = pView->GetWrtShell(); + SwDocStat aCurrCnt; + SwDocStat aDocStat; + { + auto& rDocShell(*pView->GetDocShell()); + SwWait aWait(rDocShell, true); + auto aLock = rDocShell.LockAllViews(); + rSh.StartAction(); + rSh.CountWords( aCurrCnt ); + aDocStat = rSh.GetUpdatedDocStat(); + rSh.EndAction(); + } + SetValues(aCurrCnt, aDocStat); } - SetValues(aCurrCnt, aDocStat); } void SwWordCountFloatDlg::SetCounts(const SwDocStat &rCurrCnt, const SwDocStat &rDocStat) diff -Nru libreoffice-7.4.6/sw/source/ui/fldui/fldpage.cxx libreoffice-7.4.7/sw/source/ui/fldui/fldpage.cxx --- libreoffice-7.4.6/sw/source/ui/fldui/fldpage.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/ui/fldui/fldpage.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -118,6 +118,9 @@ sal_Unicode cSeparator, bool bIsAutomaticLanguage) { SwView* pView = GetActiveView(); + if (!pView) + return; + SwWrtShell *pSh = m_pWrtShell ? m_pWrtShell : pView->GetWrtShellPtr(); if (!IsFieldEdit()) // insert new field diff -Nru libreoffice-7.4.6/sw/source/ui/fldui/fldtdlg.cxx libreoffice-7.4.7/sw/source/ui/fldui/fldtdlg.cxx --- libreoffice-7.4.6/sw/source/ui/fldui/fldtdlg.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/ui/fldui/fldtdlg.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -220,7 +220,7 @@ // newly initialise after activation of a few TabPages void SwFieldDlg::Activate() { - SwView* pView = ::GetActiveView(); + SwView* pView = GetActiveView(); if( !pView ) return; @@ -243,7 +243,6 @@ if( bEnable ) { SwView* pView = ::GetActiveView(); - OSL_ENSURE(pView, "no view found"); if( !pView || (pView->GetWrtShell().IsReadOnlyAvailable() && pView->GetWrtShell().HasReadonlySel()) ) diff -Nru libreoffice-7.4.6/sw/source/ui/fmtui/tmpdlg.cxx libreoffice-7.4.7/sw/source/ui/fmtui/tmpdlg.cxx --- libreoffice-7.4.6/sw/source/ui/fmtui/tmpdlg.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/ui/fmtui/tmpdlg.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -277,19 +277,20 @@ if (rId == "font") { - OSL_ENSURE(::GetActiveView(), "no active view"); + if (SwView* pView = GetActiveView()) + { + SvxFontListItem aFontListItem( *static_cast(pView-> + GetDocShell()->GetItem( SID_ATTR_CHAR_FONTLIST ) ) ); - SvxFontListItem aFontListItem( *static_cast(::GetActiveView()-> - GetDocShell()->GetItem( SID_ATTR_CHAR_FONTLIST ) ) ); - - aSet.Put (SvxFontListItem( aFontListItem.GetFontList(), SID_ATTR_CHAR_FONTLIST)); - sal_uInt32 nFlags = 0; - if(rPage.GetItemSet().GetParent() && 0 == (nHtmlMode & HTMLMODE_ON )) - nFlags = SVX_RELATIVE_MODE; - if( SfxStyleFamily::Char == nType ) - nFlags = nFlags|SVX_PREVIEW_CHARACTER; - aSet.Put (SfxUInt32Item(SID_FLAG_TYPE, nFlags)); - rPage.PageCreated(aSet); + aSet.Put (SvxFontListItem( aFontListItem.GetFontList(), SID_ATTR_CHAR_FONTLIST)); + sal_uInt32 nFlags = 0; + if(rPage.GetItemSet().GetParent() && 0 == (nHtmlMode & HTMLMODE_ON )) + nFlags = SVX_RELATIVE_MODE; + if( SfxStyleFamily::Char == nType ) + nFlags = nFlags|SVX_PREVIEW_CHARACTER; + aSet.Put (SfxUInt32Item(SID_FLAG_TYPE, nFlags)); + rPage.PageCreated(aSet); + } } else if (rId == "fonteffect") { diff -Nru libreoffice-7.4.6/sw/source/ui/misc/pggrid.cxx libreoffice-7.4.7/sw/source/ui/misc/pggrid.cxx --- libreoffice-7.4.6/sw/source/ui/misc/pggrid.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/ui/misc/pggrid.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -90,8 +90,7 @@ m_xDisplayCB->connect_toggled(LINK(this, SwTextGridPage, DisplayGridHdl)); //Get the default paper mode - SwView *pView = ::GetActiveView(); - if( pView ) + if (SwView *pView = GetActiveView()) { SwWrtShell* pSh = pView->GetWrtShellPtr(); if( pSh ) @@ -151,8 +150,7 @@ } // draw ticks of ruler - SwView * pView = ::GetActiveView(); - if (pView) + if (SwView * pView = GetActiveView()) { if ( m_bHRulerChanged ) pView->GetHRuler().DrawTicks(); diff -Nru libreoffice-7.4.6/sw/source/ui/misc/titlepage.cxx libreoffice-7.4.7/sw/source/ui/misc/titlepage.cxx --- libreoffice-7.4.6/sw/source/ui/misc/titlepage.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/ui/misc/titlepage.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -146,7 +146,9 @@ SwTitlePageDlg::SwTitlePageDlg(weld::Window *pParent) : SfxDialogController(pParent, "modules/swriter/ui/titlepage.ui", "DLG_TITLEPAGE") - , mrSh(*::GetActiveView()->GetWrtShellPtr()) + , mpTitleDesc(nullptr) + , mpIndexDesc(nullptr) + , mpNormalDesc(nullptr) , m_xUseExistingPagesRB(m_xBuilder->weld_radio_button("RB_USE_EXISTING_PAGES")) , m_xPageCountNF(m_xBuilder->weld_spin_button("NF_PAGE_COUNT")) , m_xDocumentStartRB(m_xBuilder->weld_radio_button("RB_DOCUMENT_START")) @@ -160,46 +162,51 @@ , m_xPagePropertiesPB(m_xBuilder->weld_button("PB_PAGE_PROPERTIES")) , m_xOkPB(m_xBuilder->weld_button("ok")) { + SwView* pView = GetActiveView(); + if (!pView) + return; + SwWrtShell& rWrtShell = pView->GetWrtShell(); + m_xOkPB->connect_clicked(LINK(this, SwTitlePageDlg, OKHdl)); m_xRestartNumberingCB->connect_toggled(LINK(this, SwTitlePageDlg, RestartNumberingHdl)); m_xSetPageNumberCB->connect_toggled(LINK(this, SwTitlePageDlg, SetPageNumberHdl)); - m_xPageStartNF->set_max(mrSh.GetPageCnt() + 1); + m_xPageStartNF->set_max(rWrtShell.GetPageCnt() + 1); sal_uInt16 nSetPage = 1; sal_uInt16 nResetPage = 1; sal_uInt16 nTitlePages = 1; - lcl_PushCursor(mrSh); + lcl_PushCursor(rWrtShell); - SwView& rView = mrSh.GetView(); + SwView& rView = rWrtShell.GetView(); rView.InvalidateRulerPos(); bool bMaybeResetNumbering = false; - mpTitleDesc = mrSh.GetPageDescFromPool(RES_POOLPAGE_FIRST); - mpIndexDesc = mrSh.GetPageDescFromPool(RES_POOLPAGE_REGISTER); - mpNormalDesc = mrSh.GetPageDescFromPool(RES_POOLPAGE_STANDARD); + mpTitleDesc = rWrtShell.GetPageDescFromPool(RES_POOLPAGE_FIRST); + mpIndexDesc = rWrtShell.GetPageDescFromPool(RES_POOLPAGE_REGISTER); + mpNormalDesc = rWrtShell.GetPageDescFromPool(RES_POOLPAGE_STANDARD); - mrSh.StartOfSection(); - if (lcl_GetPageDesc(mrSh, nSetPage, &mpPageFormatDesc)) + rWrtShell.StartOfSection(); + if (lcl_GetPageDesc(rWrtShell, nSetPage, &mpPageFormatDesc)) { if (mpPageFormatDesc->GetPageDesc() == mpTitleDesc) { - while (mrSh.SttNxtPg()) + while (rWrtShell.SttNxtPg()) { - const size_t nCurIdx = mrSh.GetCurPageDesc(); - const SwPageDesc& rPageDesc = mrSh.GetPageDesc(nCurIdx); + const size_t nCurIdx = rWrtShell.GetCurPageDesc(); + const SwPageDesc& rPageDesc = rWrtShell.GetPageDesc(nCurIdx); if (mpIndexDesc != &rPageDesc) { mpNormalDesc = &rPageDesc; - bMaybeResetNumbering = lcl_GetPageDesc(mrSh, nResetPage, nullptr); + bMaybeResetNumbering = lcl_GetPageDesc(rWrtShell, nResetPage, nullptr); break; } ++nTitlePages; } } } - lcl_PopCursor(mrSh); + lcl_PopCursor(rWrtShell); m_xUseExistingPagesRB->set_active(true); m_xPageCountNF->set_value(nTitlePages); @@ -207,7 +214,7 @@ m_xDocumentStartRB->set_active(true); m_xPageStartNF->set_sensitive(false); - m_xPageStartNF->set_value(lcl_GetCurrentPage(mrSh)); + m_xPageStartNF->set_value(lcl_GetCurrentPage(rWrtShell)); Link aStartPageHdl = LINK(this, SwTitlePageDlg, StartPageHdl); m_xDocumentStartRB->connect_toggled(aStartPageHdl); m_xPageStartRB->connect_toggled(aStartPageHdl); @@ -255,16 +262,24 @@ IMPL_LINK_NOARG(SwTitlePageDlg, EditHdl, weld::Button&, void) { - SwView& rView = mrSh.GetView(); - rView.GetDocShell()->FormatPage(getDialog(), m_xPagePropertiesLB->get_active_text(), "page", mrSh); + SwView* pView = GetActiveView(); + if (!pView) + return; + SwWrtShell& rWrtShell = pView->GetWrtShell(); + SwView& rView = rWrtShell.GetView(); + rView.GetDocShell()->FormatPage(getDialog(), m_xPagePropertiesLB->get_active_text(), "page", rWrtShell); rView.InvalidateRulerPos(); } IMPL_LINK_NOARG(SwTitlePageDlg, OKHdl, weld::Button&, void) { - lcl_PushCursor(mrSh); + SwView* pView = GetActiveView(); + if (!pView) + return; + SwWrtShell& rWrtShell = pView->GetWrtShell(); + lcl_PushCursor(rWrtShell); - mrSh.StartUndo(); + rWrtShell.StartUndo(); SwFormatPageDesc aTitleDesc(mpTitleDesc); @@ -278,41 +293,41 @@ { // Assuming that a failure to GotoPage means the end of the document, // insert new pages after the last page. - if (!lcl_GotoPage(mrSh, GetInsertPosition())) + if (!lcl_GotoPage(rWrtShell, GetInsertPosition())) { - mrSh.EndPg(); + rWrtShell.EndPg(); // Add one more page as a content page to follow the new title pages. - mrSh.InsertPageBreak(); + rWrtShell.InsertPageBreak(); } for (sal_uInt16 nI = 0; nI < nNumTitlePages; ++nI) - mrSh.InsertPageBreak(); + rWrtShell.InsertPageBreak(); // In order to be able to access these new pages, the layout needs to be recalculated first. - mrSh.CalcLayout(); + rWrtShell.CalcLayout(); } - if (lcl_GotoPage(mrSh, GetInsertPosition())) + if (lcl_GotoPage(rWrtShell, GetInsertPosition())) { - mrSh.SetAttrItem(aTitleDesc); + rWrtShell.SetAttrItem(aTitleDesc); for (sal_uInt16 nI = 1; nI < nNumTitlePages; ++nI) { - if (mrSh.SttNxtPg()) - lcl_ChangePage(mrSh, SAL_MAX_UINT16, mpIndexDesc); + if (rWrtShell.SttNxtPg()) + lcl_ChangePage(rWrtShell, SAL_MAX_UINT16, mpIndexDesc); } } if ((m_xRestartNumberingCB->get_active() || nNumTitlePages > 1) - && lcl_GotoPage(mrSh, GetInsertPosition(), nNumTitlePages)) + && lcl_GotoPage(rWrtShell, GetInsertPosition(), nNumTitlePages)) { sal_uInt16 nPgNo = m_xRestartNumberingCB->get_active() ? m_xRestartNumberingNF->get_value() : 0; const SwPageDesc* pNewDesc = nNumTitlePages > 1 ? mpNormalDesc : nullptr; - lcl_ChangePage(mrSh, nPgNo, pNewDesc); + lcl_ChangePage(rWrtShell, nPgNo, pNewDesc); } - mrSh.EndUndo(); - lcl_PopCursor(mrSh); + rWrtShell.EndUndo(); + lcl_PopCursor(rWrtShell); if (!m_xUseExistingPagesRB->get_active()) - lcl_GotoPage(mrSh, GetInsertPosition()); + lcl_GotoPage(rWrtShell, GetInsertPosition()); m_xDialog->response(RET_OK); } diff -Nru libreoffice-7.4.6/sw/source/uibase/app/apphdl.cxx libreoffice-7.4.7/sw/source/uibase/app/apphdl.cxx --- libreoffice-7.4.6/sw/source/uibase/app/apphdl.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/app/apphdl.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -171,9 +171,8 @@ case FN_MAILMERGE_NEXT_ENTRY: case FN_MAILMERGE_LAST_ENTRY: { - SwView* pView = ::GetActiveView(); std::shared_ptr xConfigItem; - if (pView) + if (SwView* pView = GetActiveView()) xConfigItem = pView->GetMailMergeConfigItem(); if (!xConfigItem) rSet.DisableItem(nWhich); @@ -205,9 +204,8 @@ case FN_MAILMERGE_PRINT_DOCUMENTS: case FN_MAILMERGE_EMAIL_DOCUMENTS: { - SwView* pView = ::GetActiveView(); std::shared_ptr xConfigItem; - if (pView) + if (SwView* pView = GetActiveView()) xConfigItem = pView->EnsureMailMergeConfigItem(); // #i51949# hide e-Mail option if e-Mail is not supported @@ -751,6 +749,9 @@ case FN_MAILMERGE_CURRENT_ENTRY: { SwView* pView = ::GetActiveView(); + if (!pView) + return; + const std::shared_ptr& xConfigItem = pView->GetMailMergeConfigItem(); if (!xConfigItem) return; @@ -812,14 +813,18 @@ case FN_MAILMERGE_PRINT_DOCUMENTS: case FN_MAILMERGE_EMAIL_DOCUMENTS: { - std::shared_ptr xConfigItem = GetActiveView()->GetMailMergeConfigItem(); + SwView* pView = ::GetActiveView(); + if (!pView) + return; + + std::shared_ptr xConfigItem = pView->GetMailMergeConfigItem(); assert(xConfigItem); if (!xConfigItem->GetResultSet().is()) { // The connection has been attempted, but failed or no results found, // so invalidate the toolbar buttons in case they need to be disabled. SfxBindings& rBindings - = GetActiveView()->GetWrtShell().GetView().GetViewFrame()->GetBindings(); + = pView->GetWrtShell().GetView().GetViewFrame()->GetBindings(); rBindings.Invalidate(FN_MAILMERGE_CREATE_DOCUMENTS); rBindings.Invalidate(FN_MAILMERGE_SAVE_DOCUMENTS); rBindings.Invalidate(FN_MAILMERGE_PRINT_DOCUMENTS); @@ -834,7 +839,7 @@ if (nWhich == FN_MAILMERGE_CREATE_DOCUMENTS) { - xConfigItem = SwDBManager::PerformMailMerge(GetActiveView()); + xConfigItem = SwDBManager::PerformMailMerge(pView); if (xConfigItem && xConfigItem->GetTargetView()) xConfigItem->GetTargetView()->GetViewFrame()->GetFrame().Appear(); diff -Nru libreoffice-7.4.6/sw/source/uibase/app/docsh2.cxx libreoffice-7.4.7/sw/source/uibase/app/docsh2.cxx --- libreoffice-7.4.6/sw/source/uibase/app/docsh2.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/app/docsh2.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1185,11 +1185,12 @@ // Ok. I did my best. break; - SfxStringItem aApp(SID_DOC_SERVICE, "com.sun.star.text.TextDocument"); - SfxStringItem aTarget(SID_TARGETNAME, "_blank"); - pViewShell->GetDispatcher()->ExecuteList(SID_OPENDOC, - SfxCallMode::API|SfxCallMode::SYNCHRON, - { &aApp, &aTarget }); + if (SfxDispatcher* pDispatch = pViewShell->GetDispatcher()) + { + SfxStringItem aApp(SID_DOC_SERVICE, "com.sun.star.text.TextDocument"); + SfxStringItem aTarget(SID_TARGETNAME, "_blank"); + pDispatch->ExecuteList(SID_OPENDOC, SfxCallMode::API|SfxCallMode::SYNCHRON, { &aApp, &aTarget }); + } } break; case SID_CLASSIFICATION_APPLY: diff -Nru libreoffice-7.4.6/sw/source/uibase/app/swmodul1.cxx libreoffice-7.4.7/sw/source/uibase/app/swmodul1.cxx --- libreoffice-7.4.6/sw/source/uibase/app/swmodul1.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/app/swmodul1.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -107,8 +107,7 @@ SwWrtShell* GetActiveWrtShell() { - SwView *pActive = ::GetActiveView(); - if( pActive ) + if (SwView *pActive = GetActiveView()) return &pActive->GetWrtShell(); return nullptr; } diff -Nru libreoffice-7.4.6/sw/source/uibase/config/usrpref.cxx libreoffice-7.4.7/sw/source/uibase/config/usrpref.cxx --- libreoffice-7.4.6/sw/source/uibase/config/usrpref.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/config/usrpref.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -271,9 +271,8 @@ "Other/IsSquaredPageMode", //17 "Other/ApplyCharUnit", //18 "Window/ShowScrollBarTips", //19 - "ViewLayout/HideWhitespace", //20 }; - const int nCount = m_bWeb ? 13 : 21; + const int nCount = m_bWeb ? 13 : 20; Sequence aNames(nCount); OUString* pNames = aNames.getArray(); for(int i = 0; i < nCount; i++) @@ -335,7 +334,6 @@ case 17: rVal <<= m_rParent.IsSquaredPageMode(); break; // "Other/IsSquaredPageMode", case 18: rVal <<= m_rParent.IsApplyCharUnit(); break; // "Other/ApplyCharUnit", case 19: rVal <<= m_rParent.IsShowScrollBarTips(); break; // "Window/ShowScrollBarTips", - case 20: rVal <<= m_rParent.IsHideWhitespaceMode(); break; // "ViewLayout/HideWhitespace" } } PutProperties(aNames, aValues); @@ -391,7 +389,6 @@ case 17: m_rParent.SetDefaultPageMode(bSet,true); break;// "Other/IsSquaredPageMode", case 18: m_rParent.SetApplyCharUnit(bSet, true); break;// "Other/ApplyUserChar" case 29: m_rParent.SetShowScrollBarTips(bSet); break;// "Window/ShowScrollBarTips", - case 20: m_rParent.SetHideWhitespaceMode(bSet); break;// "ViewLayout/HideWhitespace" } } } diff -Nru libreoffice-7.4.6/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx libreoffice-7.4.7/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx --- libreoffice-7.4.6/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -291,9 +291,8 @@ IMPL_LINK(MMCurrentEntryController, CurrentEditUpdatedHdl, weld::Entry&, rEdit, bool) { - SwView* pView = ::GetActiveView(); std::shared_ptr xConfigItem; - if (pView) + if (SwView* pView = GetActiveView()) xConfigItem = pView->GetMailMergeConfigItem(); if (!xConfigItem) @@ -315,9 +314,8 @@ if (!m_xCurrentEdit) return; - SwView* pView = ::GetActiveView(); std::shared_ptr xConfigItem; - if (pView) + if (SwView* pView = GetActiveView()) xConfigItem = pView->GetMailMergeConfigItem(); if (!xConfigItem || !rEvent.IsEnabled) @@ -360,9 +358,8 @@ IMPL_STATIC_LINK(MMExcludeEntryController, ExcludeHdl, weld::Toggleable&, rCheckbox, void) { - SwView* pView = ::GetActiveView(); std::shared_ptr xConfigItem; - if (pView) + if (SwView* pView = GetActiveView()) xConfigItem = pView->GetMailMergeConfigItem(); if (xConfigItem) @@ -374,9 +371,8 @@ if (!m_xExcludeCheckbox) return; - SwView* pView = ::GetActiveView(); std::shared_ptr xConfigItem; - if (pView) + if (SwView* pView = GetActiveView()) xConfigItem = pView->GetMailMergeConfigItem(); if (!xConfigItem || !rEvent.IsEnabled) diff -Nru libreoffice-7.4.6/sw/source/uibase/dochdl/swdtflvr.cxx libreoffice-7.4.7/sw/source/uibase/dochdl/swdtflvr.cxx --- libreoffice-7.4.6/sw/source/uibase/dochdl/swdtflvr.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/dochdl/swdtflvr.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -4092,13 +4092,19 @@ } } - // delete rows without track changes + // delete original rows/columns, except in track changes mode + // TODO remove all the columns, not only the first one if ( !bNeedTrack ) { for (sal_Int32 nDeleted = 0; nDeleted < nSelRows; ++nDeleted) + { pDispatch->Execute(bTableCol ? FN_TABLE_DELETE_COL : FN_TABLE_DELETE_ROW, SfxCallMode::SYNCHRON); + + if ( bTableCol ) + break; + } } } } diff -Nru libreoffice-7.4.6/sw/source/uibase/envelp/syncbtn.cxx libreoffice-7.4.7/sw/source/uibase/envelp/syncbtn.cxx --- libreoffice-7.4.6/sw/source/uibase/envelp/syncbtn.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/envelp/syncbtn.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -44,8 +44,7 @@ weld::Dialog* pDlg = pBtnDlg->getDialog(); Point aPos; - SwView* pActiveView = ::GetActiveView(); - if (pActiveView) + if (SwView* pActiveView = GetActiveView()) { const SwEditWin &rEditWin = pActiveView->GetEditWin(); aPos = rEditWin.OutputToScreenPixel(Point(0, 0)); diff -Nru libreoffice-7.4.6/sw/source/uibase/fldui/fldmgr.cxx libreoffice-7.4.7/sw/source/uibase/fldui/fldmgr.cxx --- libreoffice-7.4.6/sw/source/uibase/fldui/fldmgr.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/fldui/fldmgr.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -355,10 +355,8 @@ // access to the shell static SwWrtShell* lcl_GetShell() { - SwView* pView = ::GetActiveView(); - if ( nullptr != pView ) + if (SwView* pView = GetActiveView()) return pView->GetWrtShellPtr(); - OSL_FAIL("no current shell found!"); return nullptr; } diff -Nru libreoffice-7.4.6/sw/source/uibase/fldui/xfldui.cxx libreoffice-7.4.7/sw/source/uibase/fldui/xfldui.cxx --- libreoffice-7.4.6/sw/source/uibase/fldui/xfldui.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/fldui/xfldui.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -51,8 +51,16 @@ { bool bNumeric = true; - SwDBManager* pDBManager = m_pWrtShell ? m_pWrtShell->GetDBManager() : - ::GetActiveView()->GetWrtShell().GetDBManager(); + SwDBManager* pDBManager; + if (m_pWrtShell) + pDBManager = m_pWrtShell->GetDBManager(); + else + { + if (SwView* pView = GetActiveView()) + pDBManager = pView->GetWrtShell().GetDBManager(); + else + return bNumeric; + } Reference< XConnection> xConnection = pDBManager->RegisterConnection(rDBName); diff -Nru libreoffice-7.4.6/sw/source/uibase/inc/drpcps.hxx libreoffice-7.4.7/sw/source/uibase/inc/drpcps.hxx --- libreoffice-7.4.6/sw/source/uibase/inc/drpcps.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/inc/drpcps.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -72,7 +72,7 @@ Size CalcTextSize(); inline void InitPrinter(); void InitPrinter_(); - static void GetFontSettings( const SwDropCapsPage& _rPage, vcl::Font& _rFont, sal_uInt16 _nWhich ); + static void GetFontSettings( vcl::Font& _rFont, sal_uInt16 _nWhich ); void GetFirstScriptSegment(sal_Int32 &start, sal_Int32 &end, sal_uInt16 &scriptType); bool GetNextScriptSegment(size_t &nIdx, sal_Int32 &start, sal_Int32 &end, sal_uInt16 &scriptType); @@ -116,8 +116,6 @@ bool bFormat; bool bHtmlMode; - SwWrtShell &rSh; - std::unique_ptr m_xDropCapsBox; std::unique_ptr m_xWholeWordCB; std::unique_ptr m_xSwitchText; diff -Nru libreoffice-7.4.6/sw/source/uibase/inc/swuiccoll.hxx libreoffice-7.4.7/sw/source/uibase/inc/swuiccoll.hxx --- libreoffice-7.4.6/sw/source/uibase/inc/swuiccoll.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/inc/swuiccoll.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -30,7 +30,6 @@ { std::vector m_aStrArr; - SwWrtShell &m_rSh; const CommandStruct*m_pCmds; SwFormat* m_pFormat; diff -Nru libreoffice-7.4.6/sw/source/uibase/inc/titlepage.hxx libreoffice-7.4.7/sw/source/uibase/inc/titlepage.hxx --- libreoffice-7.4.6/sw/source/uibase/inc/titlepage.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/inc/titlepage.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -24,8 +24,6 @@ class SwTitlePageDlg final : public SfxDialogController { private: - SwWrtShell& mrSh; - std::unique_ptr mpPageFormatDesc; SwPageDesc* mpTitleDesc; diff -Nru libreoffice-7.4.6/sw/source/uibase/misc/redlndlg.cxx libreoffice-7.4.7/sw/source/uibase/misc/redlndlg.cxx --- libreoffice-7.4.6/sw/source/uibase/misc/redlndlg.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/misc/redlndlg.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -207,8 +207,8 @@ void SwRedlineAcceptDlg::Init(SwRedlineTable::size_type nStart) { - SwView *pView = ::GetActiveView(); - std::unique_ptr xWait(pView ? new SwWait(*pView->GetDocShell(), false) : nullptr); + if (SwView *pView = GetActiveView()) + std::unique_ptr xWait(pView ? new SwWait(*pView->GetDocShell(), false) : nullptr); weld::TreeView& rTreeView = m_pTable->GetWidget(); m_aUsedSeqNo.clear(); @@ -240,7 +240,9 @@ return; SwView *pView = ::GetActiveView(); - SwWrtShell* pSh = pView ? pView->GetWrtShellPtr() : nullptr; + if (!pView) + return; + SwWrtShell* pSh = pView->GetWrtShellPtr(); SvxTPFilter *pFilterPage = m_xTabPagesCTRL->GetFilterPage(); @@ -483,7 +485,10 @@ weld::TreeView& rTreeView = m_pTable->GetWidget(); rTreeView.freeze(); - SwView *pView = ::GetActiveView(); + SwView *pView = GetActiveView(); + if (!pView) + return SwRedlineTable::npos; + SwWrtShell* pSh = pView->GetWrtShellPtr(); bool bHasRedlineAutoFormat = HasRedlineAutoFormat(); SwRedlineDataParent *const pParent = m_RedlineParents[nStart].get(); @@ -651,7 +656,11 @@ void SwRedlineAcceptDlg::RemoveParents(SwRedlineTable::size_type nStart, SwRedlineTable::size_type nEnd) { - SwWrtShell* pSh = ::GetActiveView()->GetWrtShellPtr(); + SwView *pView = ::GetActiveView(); + if (!pView) + return; + SwWrtShell* pSh = pView->GetWrtShellPtr(); + SwRedlineTable::size_type nCount = pSh->GetRedlineCount(); std::vector aLBoxArr; @@ -727,7 +736,7 @@ void SwRedlineAcceptDlg::InsertParents(SwRedlineTable::size_type nStart, SwRedlineTable::size_type nEnd) { - SwView *pView = ::GetActiveView(); + SwView *pView = GetActiveView(); if (!pView) return; @@ -909,7 +918,11 @@ void SwRedlineAcceptDlg::CallAcceptReject( bool bSelect, bool bAccept ) { - SwWrtShell* pSh = ::GetActiveView()->GetWrtShellPtr(); + SwView *pView = GetActiveView(); + if (!pView) + return; + SwWrtShell* pSh = pView->GetWrtShellPtr(); + int nPos = -1; typedef std::vector> ListBoxEntries_t; @@ -1050,7 +1063,11 @@ SwRedlineTable::size_type SwRedlineAcceptDlg::GetRedlinePos(const weld::TreeIter& rEntry) { - SwWrtShell* pSh = ::GetActiveView()->GetWrtShellPtr(); + SwView *pView = GetActiveView(); + if (!pView) + return SwRedlineTable::npos; + SwWrtShell* pSh = pView->GetWrtShellPtr(); + weld::TreeView& rTreeView = m_pTable->GetWidget(); return pSh->FindRedlineOfData( *static_cast(weld::fromId( rTreeView.get_id(rEntry))->pData)->pData ); @@ -1078,10 +1095,12 @@ IMPL_LINK_NOARG(SwRedlineAcceptDlg, UndoHdl, SvxTPView*, void) { - SwView * pView = ::GetActiveView(); - pView->GetViewFrame()->GetDispatcher()-> - Execute(SID_UNDO, SfxCallMode::SYNCHRON); - m_pTPView->EnableUndo(pView->GetSlotState(SID_UNDO) != nullptr); + if (SwView* pView = GetActiveView()) + { + pView->GetViewFrame()->GetDispatcher()-> + Execute(SID_UNDO, SfxCallMode::SYNCHRON); + m_pTPView->EnableUndo(pView->GetSlotState(SID_UNDO) != nullptr); + } Activate(); } @@ -1105,9 +1124,13 @@ IMPL_LINK_NOARG(SwRedlineAcceptDlg, GotoHdl, Timer *, void) { - SwWrtShell* pSh = ::GetActiveView()->GetWrtShellPtr(); m_aSelectTimer.Stop(); + SwView* pView = GetActiveView(); + if (!pView) + return; + SwWrtShell* pSh = pView->GetWrtShellPtr(); + bool bIsNotFormated = false; bool bSel = false; @@ -1201,7 +1224,11 @@ if (rCEvt.GetCommand() != CommandEventId::ContextMenu) return false; - SwWrtShell* pSh = ::GetActiveView()->GetWrtShellPtr(); + SwView* pView = GetActiveView(); + if (!pView) + return false; + SwWrtShell* pSh = pView->GetWrtShellPtr(); + const SwRangeRedline *pRed = nullptr; weld::TreeView& rTreeView = m_pTable->GetWidget(); @@ -1323,7 +1350,7 @@ if (nSortMode == 4) nSortMode = -1; // unsorted / sorted by position - SwWait aWait( *::GetActiveView()->GetDocShell(), false ); + SwWait aWait( *pView->GetDocShell(), false ); m_pTable->HeaderBarClick(nSortMode); if (nSortMode == -1) Init(); // newly fill everything diff -Nru libreoffice-7.4.6/sw/source/uibase/ribbar/inputwin.cxx libreoffice-7.4.7/sw/source/uibase/ribbar/inputwin.cxx --- libreoffice-7.4.6/sw/source/uibase/ribbar/inputwin.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/ribbar/inputwin.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -335,9 +335,11 @@ if (!m_pView) { // presumably there must be an active view now since the event arrived - SwView *const pActiveView = ::GetActiveView(); - // this just makes the input window go away, so that the next time it works - pActiveView->GetViewFrame()->GetDispatcher()->Execute(FN_EDIT_FORMULA, SfxCallMode::ASYNCHRON); + if (SwView* pView = GetActiveView()) + { + // this just makes the input window go away, so that the next time it works + pView->GetViewFrame()->GetDispatcher()->Execute(FN_EDIT_FORMULA, SfxCallMode::ASYNCHRON); + } return; } @@ -368,9 +370,11 @@ if (!m_pView) { // presumably there must be an active view now since the event arrived - SwView *const pActiveView = ::GetActiveView(); - // this just makes the input window go away, so that the next time it works - pActiveView->GetViewFrame()->GetDispatcher()->Execute(FN_EDIT_FORMULA, SfxCallMode::ASYNCHRON); + if (SwView* pActiveView = GetActiveView()) + { + // this just makes the input window go away, so that the next time it works + pActiveView->GetViewFrame()->GetDispatcher()->Execute(FN_EDIT_FORMULA, SfxCallMode::ASYNCHRON); + } return; } diff -Nru libreoffice-7.4.6/sw/source/uibase/ribbar/workctrl.cxx libreoffice-7.4.7/sw/source/uibase/ribbar/workctrl.cxx --- libreoffice-7.4.6/sw/source/uibase/ribbar/workctrl.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/ribbar/workctrl.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -139,13 +139,16 @@ OUString sShortName = pGlossaryList->GetBlockShortName(nBlock - 1, nId - (100 * nBlock) - 1); - SwGlossaryHdl* pGlosHdl = ::GetActiveView()->GetGlosHdl(); - SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create(); - ::GlossarySetActGroup fnSetActGroup = pFact->SetGlossaryActGroupFunc(); - if ( fnSetActGroup ) - (*fnSetActGroup)( sGroup ); - pGlosHdl->SetCurGroup(sGroup, true); - pGlosHdl->InsertGlossary(sShortName); + if (SwView* pView = GetActiveView()) + { + SwGlossaryHdl* pGlosHdl = pView->GetGlosHdl(); + SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create(); + ::GlossarySetActGroup fnSetActGroup = pFact->SetGlossaryActGroupFunc(); + if ( fnSetActGroup ) + (*fnSetActGroup)( sGroup ); + pGlosHdl->SetCurGroup(sGroup, true); + pGlosHdl->InsertGlossary(sShortName); + } return false; } diff -Nru libreoffice-7.4.6/sw/source/uibase/shells/tabsh.cxx libreoffice-7.4.7/sw/source/uibase/shells/tabsh.cxx --- libreoffice-7.4.6/sw/source/uibase/shells/tabsh.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/shells/tabsh.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -687,8 +687,7 @@ break; case FN_NUM_FORMAT_TABLE_DLG: { - SwView* pView = GetActiveView(); - if(pView) + if (SwView* pView = GetActiveView()) { FieldUnit eMetric = ::GetDfltMetric(dynamic_cast( pView) != nullptr ); SW_MOD()->PutItem(SfxUInt16Item(SID_ATTR_METRIC, static_cast< sal_uInt16 >(eMetric))); diff -Nru libreoffice-7.4.6/sw/source/uibase/shells/textfld.cxx libreoffice-7.4.7/sw/source/uibase/shells/textfld.cxx --- libreoffice-7.4.6/sw/source/uibase/shells/textfld.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/shells/textfld.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -184,9 +184,9 @@ SwCursorShell::StartOfInputFieldAtPos( *(rSh.GetCursor()->Start()) ) + 1, SwCursorShell::EndOfInputFieldAtPos( *(rSh.GetCursor()->Start()) ) - 1 ); } - else + else if (SwField* pCurrentField = rSh.GetCurField(true)) { - rSh.StartInputFieldDlg(rSh.GetCurField(true), false, false, GetView().GetFrameWeld()); + rSh.StartInputFieldDlg(pCurrentField, false, false, GetView().GetFrameWeld()); } bRet = true; } diff -Nru libreoffice-7.4.6/sw/source/uibase/shells/textsh.cxx libreoffice-7.4.7/sw/source/uibase/shells/textsh.cxx --- libreoffice-7.4.6/sw/source/uibase/shells/textsh.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/shells/textsh.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -97,19 +97,21 @@ IMPL_STATIC_LINK( SwTextShell, DialogClosedHdl, css::ui::dialogs::DialogClosedEvent*, pEvent, void ) { - SwView* pView = ::GetActiveView(); - SwWrtShell& rWrtShell = pView->GetWrtShell(); - - sal_Int16 nDialogRet = pEvent->DialogResult; - if( nDialogRet == ui::dialogs::ExecutableDialogResults::CANCEL ) - { - rWrtShell.Undo(); - rWrtShell.GetIDocumentUndoRedo().ClearRedo(); - } - else + if (SwView* pView = GetActiveView()) { - OSL_ENSURE( nDialogRet == ui::dialogs::ExecutableDialogResults::OK, - "dialog execution failed" ); + SwWrtShell& rWrtShell = pView->GetWrtShell(); + + sal_Int16 nDialogRet = pEvent->DialogResult; + if( nDialogRet == ui::dialogs::ExecutableDialogResults::CANCEL ) + { + rWrtShell.Undo(); + rWrtShell.GetIDocumentUndoRedo().ClearRedo(); + } + else + { + OSL_ENSURE( nDialogRet == ui::dialogs::ExecutableDialogResults::OK, + "dialog execution failed" ); + } } } diff -Nru libreoffice-7.4.6/sw/source/uibase/sidebar/PageMarginControl.cxx libreoffice-7.4.7/sw/source/uibase/sidebar/PageMarginControl.cxx --- libreoffice-7.4.6/sw/source/uibase/sidebar/PageMarginControl.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/sidebar/PageMarginControl.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -53,19 +53,14 @@ { FieldUnit lcl_GetFieldUnit() { - FieldUnit eUnit = FieldUnit::INCH; - const SfxUInt16Item* pItem = nullptr; - SfxItemState eState = SfxViewFrame::Current()->GetBindings().GetDispatcher()->QueryState( SID_ATTR_METRIC, pItem ); - if ( pItem && eState >= SfxItemState::DEFAULT ) + if (SfxViewFrame* pViewFrm = SfxViewFrame::Current()) { - eUnit = static_cast(pItem->GetValue()); + const SfxUInt16Item* pItem = nullptr; + SfxItemState eState = pViewFrm->GetBindings().GetDispatcher()->QueryState(SID_ATTR_METRIC, pItem); + if (pItem && eState >= SfxItemState::DEFAULT) + return static_cast(pItem->GetValue()); } - else - { - return SfxModule::GetCurrentFieldUnit(); - } - - return eUnit; + return SfxModule::GetCurrentFieldUnit(); } MapUnit lcl_GetUnit() @@ -130,15 +125,15 @@ const SvxSizeItem* pSize = nullptr; const SvxLongLRSpaceItem* pLRItem = nullptr; const SvxLongULSpaceItem* pULItem = nullptr; - if ( SfxViewFrame::Current() ) + if (SfxViewFrame* pViewFrm = SfxViewFrame::Current()) { const SvxPageItem* pPageItem; - SfxViewFrame::Current()->GetBindings().GetDispatcher()->QueryState( SID_ATTR_PAGE, pPageItem ); + pViewFrm->GetBindings().GetDispatcher()->QueryState( SID_ATTR_PAGE, pPageItem ); bLandscape = pPageItem->IsLandscape(); m_bMirrored = pPageItem->GetPageUsage() == SvxPageUsage::Mirror; - SfxViewFrame::Current()->GetBindings().GetDispatcher()->QueryState( SID_ATTR_PAGE_SIZE, pSize ); - SfxViewFrame::Current()->GetBindings().GetDispatcher()->QueryState( SID_ATTR_PAGE_LRSPACE, pLRItem ); - SfxViewFrame::Current()->GetBindings().GetDispatcher()->QueryState( SID_ATTR_PAGE_ULSPACE, pULItem ); + pViewFrm->GetBindings().GetDispatcher()->QueryState( SID_ATTR_PAGE_SIZE, pSize ); + pViewFrm->GetBindings().GetDispatcher()->QueryState( SID_ATTR_PAGE_LRSPACE, pLRItem ); + pViewFrm->GetBindings().GetDispatcher()->QueryState( SID_ATTR_PAGE_ULSPACE, pULItem ); } if ( pLRItem ) @@ -395,7 +390,8 @@ if ( !bApplyNewPageMargins ) return; - const css::uno::Reference< css::document::XUndoManager > xUndoManager( getUndoManager( SfxViewFrame::Current()->GetFrame().GetFrameInterface() ) ); + SfxViewFrame* pViewFrm = SfxViewFrame::Current(); + const css::uno::Reference xUndoManager(pViewFrm ? getUndoManager(pViewFrm->GetFrame().GetFrameInterface()) : nullptr); if ( xUndoManager.is() ) xUndoManager->enterUndoContext( "" ); @@ -418,12 +414,12 @@ const tools::Long nPageLeftMargin, const tools::Long nPageRightMargin ) { - if ( SfxViewFrame::Current() ) + if (SfxViewFrame* pViewFrm = SfxViewFrame::Current()) { SvxLongLRSpaceItem aPageLRMarginItem( 0, 0, SID_ATTR_PAGE_LRSPACE ); aPageLRMarginItem.SetLeft( nPageLeftMargin ); aPageLRMarginItem.SetRight( nPageRightMargin ); - SfxViewFrame::Current()->GetBindings().GetDispatcher()->ExecuteList( SID_ATTR_PAGE_LRSPACE, + pViewFrm->GetBindings().GetDispatcher()->ExecuteList( SID_ATTR_PAGE_LRSPACE, SfxCallMode::RECORD, { &aPageLRMarginItem } ); } } @@ -432,23 +428,23 @@ const tools::Long nPageTopMargin, const tools::Long nPageBottomMargin ) { - if ( SfxViewFrame::Current() ) + if (SfxViewFrame* pViewFrm = SfxViewFrame::Current()) { SvxLongULSpaceItem aPageULMarginItem( 0, 0, SID_ATTR_PAGE_ULSPACE ); aPageULMarginItem.SetUpper( nPageTopMargin ); aPageULMarginItem.SetLower( nPageBottomMargin ); - SfxViewFrame::Current()->GetBindings().GetDispatcher()->ExecuteList( SID_ATTR_PAGE_ULSPACE, + pViewFrm->GetBindings().GetDispatcher()->ExecuteList( SID_ATTR_PAGE_ULSPACE, SfxCallMode::RECORD, { &aPageULMarginItem } ); } } void PageMarginControl::ExecutePageLayoutChange( const bool bMirrored ) { - if ( SfxViewFrame::Current() ) + if (SfxViewFrame* pViewFrm = SfxViewFrame::Current()) { SvxPageItem aPageItem( SID_ATTR_PAGE ); aPageItem.SetPageUsage( bMirrored ? SvxPageUsage::Mirror : SvxPageUsage::All ); - SfxViewFrame::Current()->GetBindings().GetDispatcher()->ExecuteList( SID_ATTR_PAGE, + pViewFrm->GetBindings().GetDispatcher()->ExecuteList( SID_ATTR_PAGE, SfxCallMode::RECORD, { &aPageItem } ); } } diff -Nru libreoffice-7.4.6/sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx libreoffice-7.4.7/sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx --- libreoffice-7.4.6/sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -70,6 +70,10 @@ { m_oldLink = m_pShell->GetChgLnk(); m_pShell->SetChgLnk(LINK(this, WriterInspectorTextPanel, AttrChangedNotify)); + + // tdf#154629 listen to know if the shell destructs before this panel does, + // which can happen on entering print preview + m_pShell->Add(this); } // Update panel on start @@ -80,10 +84,24 @@ updateEntries(aStore, m_nParIdx); } +void WriterInspectorTextPanel::SwClientNotify(const SwModify& rModify, const SfxHint& rHint) +{ + if (rHint.GetId() == SfxHintId::SwLegacyModify) + { + const sw::LegacyModifyHint& rLegacy = static_cast(rHint); + if (rLegacy.GetWhich() == RES_OBJECTDYING) + m_pShell = nullptr; + } + SwClient::SwClientNotify(rModify, rHint); +} + WriterInspectorTextPanel::~WriterInspectorTextPanel() { if (m_pShell) + { m_pShell->SetChgLnk(m_oldLink); + m_pShell->Remove(this); + } } static OUString PropertyNametoRID(const OUString& rName) diff -Nru libreoffice-7.4.6/sw/source/uibase/sidebar/WriterInspectorTextPanel.hxx libreoffice-7.4.7/sw/source/uibase/sidebar/WriterInspectorTextPanel.hxx --- libreoffice-7.4.6/sw/source/uibase/sidebar/WriterInspectorTextPanel.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/sidebar/WriterInspectorTextPanel.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -19,12 +19,13 @@ #pragma once #include +#include class SwWrtShell; namespace sw::sidebar { -class WriterInspectorTextPanel final : public svx::sidebar::InspectorTextPanel +class WriterInspectorTextPanel final : public svx::sidebar::InspectorTextPanel, public SwClient { public: static std::unique_ptr Create(weld::Widget* pParent); @@ -40,6 +41,8 @@ // attributes have changed DECL_LINK(AttrChangedNotify, LinkParamNone*, void); + + virtual void SwClientNotify(const SwModify&, const SfxHint& rHint) override; }; } // end of namespace svx::sidebar diff -Nru libreoffice-7.4.6/sw/source/uibase/table/chartins.cxx libreoffice-7.4.7/sw/source/uibase/table/chartins.cxx --- libreoffice-7.4.6/sw/source/uibase/table/chartins.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/table/chartins.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -66,7 +66,6 @@ tools::Rectangle aDesktop = pParentWin->GetDesktopRectPixel(); Size aSpace = pParentWin->LogicToPixel(Size(8, 12), MapMode(MapUnit::MapAppFont)); - bool bLayoutRTL = ::GetActiveView()->GetWrtShell().IsTableRightToLeft(); bool bCenterHor = false; if ( aDesktop.Bottom() - aObjAbs.Bottom() >= rDialogSize.Height() + aSpace.Height() ) @@ -88,12 +87,16 @@ if ( bFitLeft || bFitRight ) { - // if both fit, prefer right in RTL mode, left otherwise - bool bPutRight = bFitRight && ( bLayoutRTL || !bFitLeft ); - if ( bPutRight ) - aRet.setX( aObjAbs.Right() + aSpace.Width() ); - else - aRet.setX( aObjAbs.Left() - rDialogSize.Width() - aSpace.Width() ); + if (SwView* pView = GetActiveView()) + { + // if both fit, prefer right in RTL mode, left otherwise + bool bLayoutRTL = pView->GetWrtShell().IsTableRightToLeft(); + bool bPutRight = bFitRight && ( bLayoutRTL || !bFitLeft ); + if ( bPutRight ) + aRet.setX( aObjAbs.Right() + aSpace.Width() ); + else + aRet.setX( aObjAbs.Left() - rDialogSize.Width() - aSpace.Width() ); + } // center vertically aRet.setY( aObjAbs.Top() + ( aObjAbs.GetHeight() - rDialogSize.Height() ) / 2 ); @@ -125,6 +128,8 @@ SwInsertChart::SwInsertChart( const Link& rLink ) { SwView *pView = ::GetActiveView(); + if (!pView) + return; // get range string of marked data SwWrtShell &rWrtShell = pView->GetWrtShell(); diff -Nru libreoffice-7.4.6/sw/source/uibase/uiview/view.cxx libreoffice-7.4.7/sw/source/uibase/uiview/view.cxx --- libreoffice-7.4.6/sw/source/uibase/uiview/view.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/uiview/view.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1352,7 +1352,6 @@ sal_Int16 nZoomFactor = static_cast < sal_Int16 > (pVOpt->GetZoom()); bool bViewLayoutBookMode = pVOpt->IsViewLayoutBookMode(); sal_Int16 nViewLayoutColumns = pVOpt->GetViewLayoutColumns(); - bool bHideWhitespace = pVOpt->IsHideWhitespaceMode(); bool bSelectedFrame = ( m_pWrtShell->GetSelFrameType() != FrameTypeFlags::NONE ), bGotVisibleLeft = false, @@ -1360,7 +1359,6 @@ bGotVisibleBottom = false, bGotZoomType = false, bGotZoomFactor = false, bGotIsSelectedFrame = false, bGotViewLayoutColumns = false, bGotViewLayoutBookMode = false, - bGotHideWhitespace = false, bBrowseMode = false, bGotBrowseMode = false; bool bKeepRatio = pVOpt->IsKeepRatio(); bool bGotKeepRatio = false; @@ -1436,11 +1434,6 @@ rValue.Value >>= bKeepRatio; bGotKeepRatio = true; } - else if (rValue.Name == "HideWhitespace") - { - rValue.Value >>= bHideWhitespace; - bGotHideWhitespace = true; - } // Fallback to common SdrModel processing else GetDocShell()->GetDoc()->getIDocumentDrawModelAccess().GetDrawModel()->ReadUserDataSequenceValue(&rValue); @@ -1517,21 +1510,11 @@ m_pWrtShell->SetMacroExecAllowed( bSavedFlagValue ); } - SwViewOption aUsrPref(*pVOpt); - bool bUsrPrefModified = false; if (bGotKeepRatio && bKeepRatio != pVOpt->IsKeepRatio()) { // Got a custom value, then it makes sense to trigger notifications. + SwViewOption aUsrPref(*pVOpt); aUsrPref.SetKeepRatio(bKeepRatio); - bUsrPrefModified = true; - } - if (bGotHideWhitespace && bHideWhitespace != pVOpt->IsHideWhitespaceMode()) - { - aUsrPref.SetHideWhitespaceMode(bHideWhitespace); - bUsrPrefModified = true; - } - if (bUsrPrefModified) - { SW_MOD()->ApplyUsrPref(aUsrPref, this); } @@ -1636,9 +1619,6 @@ aVector.push_back( comphelper::makePropertyValue("KeepRatio", m_pWrtShell->GetViewOptions()->IsKeepRatio())); - aVector.push_back(comphelper::makePropertyValue( - "HideWhitespace", m_pWrtShell->GetViewOptions()->IsHideWhitespaceMode())); - rSequence = comphelper::containerToSequence(aVector); // Common SdrModel processing diff -Nru libreoffice-7.4.6/sw/source/uibase/utlui/content.cxx libreoffice-7.4.7/sw/source/uibase/utlui/content.cxx --- libreoffice-7.4.6/sw/source/uibase/utlui/content.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/utlui/content.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1672,7 +1672,7 @@ // Edit only if the shown content is coming from the current view. if (State::HIDDEN != m_eState && - (State::ACTIVE == m_eState || m_pActiveShell == GetActiveView()->GetWrtShellPtr()) + (State::ACTIVE == m_eState || (GetActiveView() && m_pActiveShell == GetActiveView()->GetWrtShellPtr())) && lcl_IsContent(*xEntry, *m_xTreeView)) { const bool bReadonly = m_pActiveShell->GetView().GetDocShell()->IsReadOnly(); diff -Nru libreoffice-7.4.6/sw/source/uibase/utlui/gloslst.cxx libreoffice-7.4.7/sw/source/uibase/utlui/gloslst.cxx --- libreoffice-7.4.6/sw/source/uibase/utlui/gloslst.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/utlui/gloslst.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -144,7 +144,9 @@ else if(1 < nCount) { SwView *pView = ::GetActiveView(); - SwGlossDecideDlg aDlg(pView ? pView->GetFrameWeld() : nullptr); + if (!pView) + return bRet; + SwGlossDecideDlg aDlg(pView->GetFrameWeld()); OUString sTitle = aDlg.get_title() + " " + aTripleStrings.front().sBlock; aDlg.set_title(sTitle); diff -Nru libreoffice-7.4.6/sw/source/uibase/utlui/navipi.cxx libreoffice-7.4.7/sw/source/uibase/utlui/navipi.cxx --- libreoffice-7.4.6/sw/source/uibase/utlui/navipi.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/utlui/navipi.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1012,9 +1012,10 @@ SfxStringItem aOptionsItem( SID_OPTIONS, "HRC" ); SfxLinkItem aLink( SID_DONELINK, LINK( this, SwNavigationPI, DoneLink ) ); - GetActiveView()->GetViewFrame()->GetDispatcher()->ExecuteList( - SID_OPENDOC, SfxCallMode::ASYNCHRON, - { &aFileItem, &aOptionsItem, &aLink }); + if (SwView* pView = GetActiveView()) + pView->GetViewFrame()->GetDispatcher()->ExecuteList( + SID_OPENDOC, SfxCallMode::ASYNCHRON, + { &aFileItem, &aOptionsItem, &aLink }); } return nRet; } diff -Nru libreoffice-7.4.6/sw/source/uibase/utlui/numfmtlb.cxx libreoffice-7.4.7/sw/source/uibase/utlui/numfmtlb.cxx --- libreoffice-7.4.6/sw/source/uibase/utlui/numfmtlb.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/utlui/numfmtlb.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -140,9 +140,7 @@ void SwNumFormatBase::Init() { - SwView *pView = GetActiveView(); - - if (pView) + if (SwView *pView = GetActiveView()) m_eCurLanguage = pView->GetWrtShell().GetCurLang(); else m_eCurLanguage = SvtSysLocale().GetLanguageTag().getLanguageType(); @@ -172,7 +170,6 @@ return; SwView *pView = GetActiveView(); - OSL_ENSURE(pView, "no view found"); if(!pView) return; SwWrtShell &rSh = pView->GetWrtShell(); @@ -307,7 +304,6 @@ } SwView *pView = GetActiveView(); - OSL_ENSURE(pView, "no view found"); if(!pView) return; SwWrtShell &rSh = pView->GetWrtShell(); diff -Nru libreoffice-7.4.6/sw/source/uibase/wrtsh/wrtsh1.cxx libreoffice-7.4.7/sw/source/uibase/wrtsh/wrtsh1.cxx --- libreoffice-7.4.6/sw/source/uibase/wrtsh/wrtsh1.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/sw/source/uibase/wrtsh/wrtsh1.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -900,8 +900,13 @@ } else { - aArea.Width ( tools::Long( aArea.Width() / pCli->GetScaleWidth() ) ); - aArea.Height( tools::Long( aArea.Height() / pCli->GetScaleHeight() ) ); + tools::Long nWidth(pCli->GetScaleWidth()); + tools::Long nHeight(pCli->GetScaleHeight()); + if (nWidth && nHeight) + { + aArea.Width ( aArea.Width() / nWidth ); + aArea.Height( aArea.Height() / nHeight ); + } } pCli->SetObjAreaAndScale( aArea.SVRect(), aScaleWidth, aScaleHeight ); Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/tarballs/curl-7.88.1.tar.xz and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/tarballs/curl-7.88.1.tar.xz differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/tarballs/curl-8.0.1.tar.xz and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/tarballs/curl-8.0.1.tar.xz differ diff -Nru libreoffice-7.4.6/tarballs/fetch.log libreoffice-7.4.7/tarballs/fetch.log --- libreoffice-7.4.6/tarballs/fetch.log 2023-03-03 21:40:08.000000000 +0000 +++ libreoffice-7.4.7/tarballs/fetch.log 2023-04-19 18:57:43.000000000 +0000 @@ -1,338 +1,338 @@ -Fr 3. Mär 22:34:13 CET 2023 ---2023-03-03 22:34:13-- https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz +Mi 19. Apr 20:50:54 CEST 2023 +--2023-04-19 20:50:54-- 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% 1,74M=0,2s + 0K .... 100% 836K=0,4s -2023-03-03 22:34:15 (1,74 MB/s) - ‘./libabw-0.1.3.tar.xz’ gespeichert [318808/318808] +2023-04-19 20:50:58 (836 KB/s) - ‘./libabw-0.1.3.tar.xz’ gespeichert [318808/318808] ---2023-03-03 22:34:15-- https://dev-www.libreoffice.org/src/boost_1_79_0.tar.xz +--2023-04-19 20:50:58-- https://dev-www.libreoffice.org/src/boost_1_79_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: 17688504 (17M) [application/octet-stream] Wird in ‘./boost_1_79_0.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 17% 1,70M 8s - 3072K ........ ........ ........ ........ ........ ........ 35% 1,77M 6s - 6144K ........ ........ ........ ........ ........ ........ 53% 1,17M 5s - 9216K ........ ........ ........ ........ ........ ........ 71% 1,39M 3s - 12288K ........ ........ ........ ........ ........ ........ 88% 2,01M 1s - 15360K ........ ........ ........ ..... 100% 2,41M=10s + 0K ........ ........ ........ ........ ........ ........ 17% 937K 15s + 3072K ........ ........ ........ ........ ........ ........ 35% 1,41M 10s + 6144K ........ ........ ........ ........ ........ ........ 53% 1,38M 7s + 9216K ........ ........ ........ ........ ........ ........ 71% 1,20M 4s + 12288K ........ ........ ........ ........ ........ ........ 88% 1,26M 2s + 15360K ........ ........ ........ ..... 100% 1,19M=14s -2023-03-03 22:34:26 (1,61 MB/s) - ‘./boost_1_79_0.tar.xz’ gespeichert [17688504/17688504] +2023-04-19 20:51:12 (1,20 MB/s) - ‘./boost_1_79_0.tar.xz’ gespeichert [17688504/17688504] ---2023-03-03 22:34:26-- https://dev-www.libreoffice.org/src/box2d-2.4.1.tar.gz +--2023-04-19 20:51:12-- https://dev-www.libreoffice.org/src/box2d-2.4.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: 1224516 (1,2M) [application/octet-stream] Wird in ‘./box2d-2.4.1.tar.gz’ gespeichert. - 0K ........ ........ .. 100% 1,69M=0,7s + 0K ........ ........ .. 100% 1,40M=0,8s -2023-03-03 22:34:27 (1,69 MB/s) - ‘./box2d-2.4.1.tar.gz’ gespeichert [1224516/1224516] +2023-04-19 20:51:14 (1,40 MB/s) - ‘./box2d-2.4.1.tar.gz’ gespeichert [1224516/1224516] ---2023-03-03 22:34:27-- https://dev-www.libreoffice.org/src/breakpad-b324760c7f53667af128a6b77b790323da04fcb9.tar.xz +--2023-04-19 20:51:14-- 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% 1,47M 1s - 3072K ........ ........ ........ .... 100% 1,72M=3,1s + 0K ........ ........ ........ ........ ........ ........ 62% 1,35M 1s + 3072K ........ ........ ........ .... 100% 1,17M=3,7s -2023-03-03 22:34:30 (1,55 MB/s) - ‘./breakpad-b324760c7f53667af128a6b77b790323da04fcb9.tar.xz’ gespeichert [5000956/5000956] +2023-04-19 20:51:18 (1,28 MB/s) - ‘./breakpad-b324760c7f53667af128a6b77b790323da04fcb9.tar.xz’ gespeichert [5000956/5000956] ---2023-03-03 22:34:31-- https://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip +--2023-04-19 20:51:18-- https://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1997625 (1,9M) [application/zip] Wird in ‘./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip’ gespeichert. - 0K ........ ........ ........ ...... 100% 1,90M=1,0s + 0K ........ ........ ........ ...... 100% 1,64M=1,2s -2023-03-03 22:34:32 (1,90 MB/s) - ‘./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip’ gespeichert [1997625/1997625] +2023-04-19 20:51:19 (1,64 MB/s) - ‘./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip’ gespeichert [1997625/1997625] ---2023-03-03 22:34:32-- https://dev-www.libreoffice.org/src/bzip2-1.0.8.tar.gz +--2023-04-19 20:51:19-- 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% 1,77M=0,4s + 0K ........ .... 100% 813K=1,0s -2023-03-03 22:34:33 (1,77 MB/s) - ‘./bzip2-1.0.8.tar.gz’ gespeichert [810029/810029] +2023-04-19 20:51:21 (813 KB/s) - ‘./bzip2-1.0.8.tar.gz’ gespeichert [810029/810029] ---2023-03-03 22:34:33-- https://dev-www.libreoffice.org/src/cairo-1.17.6.tar.xz +--2023-04-19 20:51:21-- https://dev-www.libreoffice.org/src/cairo-1.17.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: 35055900 (33M) [application/octet-stream] Wird in ‘./cairo-1.17.6.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 8% 1,63M 19s - 3072K ........ ........ ........ ........ ........ ........ 17% 1,24M 19s - 6144K ........ ........ ........ ........ ........ ........ 26% 1,22M 18s - 9216K ........ ........ ........ ........ ........ ........ 35% 1,35M 16s - 12288K ........ ........ ........ ........ ........ ........ 44% 1,15M 14s - 15360K ........ ........ ........ ........ ........ ........ 53% 1,65M 11s - 18432K ........ ........ ........ ........ ........ ........ 62% 1,43M 9s - 21504K ........ ........ ........ ........ ........ ........ 71% 1,41M 7s - 24576K ........ ........ ........ ........ ........ ........ 80% 1,47M 5s - 27648K ........ ........ ........ ........ ........ ........ 89% 1,27M 3s - 30720K ........ ........ ........ ........ ........ ........ 98% 1,48M 0s - 33792K ...... 100% 1,49M=24s + 0K ........ ........ ........ ........ ........ ........ 8% 1,32M 23s + 3072K ........ ........ ........ ........ ........ ........ 17% 911K 26s + 6144K ........ ........ ........ ........ ........ ........ 26% 921K 24s + 9216K ........ ........ ........ ........ ........ ........ 35% 1,51M 20s + 12288K ........ ........ ........ ........ ........ ........ 44% 2,03M 15s + 15360K ........ ........ ........ ........ ........ ........ 53% 1,95M 12s + 18432K ........ ........ ........ ........ ........ ........ 62% 2,02M 9s + 21504K ........ ........ ........ ........ ........ ........ 71% 1,81M 7s + 24576K ........ ........ ........ ........ ........ ........ 80% 1,65M 5s + 27648K ........ ........ ........ ........ ........ ........ 89% 1,34M 2s + 30720K ........ ........ ........ ........ ........ ........ 98% 1,51M 0s + 33792K ...... 100% 1,76M=23s -2023-03-03 22:34:57 (1,38 MB/s) - ‘./cairo-1.17.6.tar.xz’ gespeichert [35055900/35055900] +2023-04-19 20:51:44 (1,43 MB/s) - ‘./cairo-1.17.6.tar.xz’ gespeichert [35055900/35055900] ---2023-03-03 22:34:57-- https://dev-www.libreoffice.org/src/pixman-0.42.2.tar.gz +--2023-04-19 20:51:45-- https://dev-www.libreoffice.org/src/pixman-0.42.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: 959669 (937K) [application/octet-stream] Wird in ‘./pixman-0.42.2.tar.gz’ gespeichert. - 0K ........ ...... 100% 1,58M=0,6s + 0K ........ ...... 100% 1,59M=0,6s -2023-03-03 22:34:58 (1,58 MB/s) - ‘./pixman-0.42.2.tar.gz’ gespeichert [959669/959669] +2023-04-19 20:51:46 (1,59 MB/s) - ‘./pixman-0.42.2.tar.gz’ gespeichert [959669/959669] ---2023-03-03 22:34:58-- https://dev-www.libreoffice.org/src/libcdr-0.1.7.tar.xz +--2023-04-19 20:51:46-- 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% 1,59M=0,4s + 0K ........ . 100% 1,42M=0,4s -2023-03-03 22:34:59 (1,59 MB/s) - ‘./libcdr-0.1.7.tar.xz’ gespeichert [618528/618528] +2023-04-19 20:51:46 (1,42 MB/s) - ‘./libcdr-0.1.7.tar.xz’ gespeichert [618528/618528] ---2023-03-03 22:34:59-- https://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz +--2023-04-19 20:51:46-- https://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2241498 (2,1M) [application/octet-stream] Wird in ‘./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ .. 100% 1,80M=1,2s + 0K ........ ........ ........ ........ .. 100% 2,03M=1,1s -2023-03-03 22:35:01 (1,80 MB/s) - ‘./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz’ gespeichert [2241498/2241498] +2023-04-19 20:51:48 (2,03 MB/s) - ‘./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz’ gespeichert [2241498/2241498] ---2023-03-03 22:35:01-- https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz +--2023-04-19 20:51:48-- https://dev-www.libreoffice.org/src/dragonbox-1.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: 4337233 (4,1M) [application/octet-stream] Wird in ‘./dragonbox-1.1.3.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 72% 1,26M 1s - 3072K ........ ........ .. 100% 1,60M=3,1s + 0K ........ ........ ........ ........ ........ ........ 72% 941K 1s + 3072K ........ ........ .. 100% 1,57M=4,0s -2023-03-03 22:35:04 (1,34 MB/s) - ‘./dragonbox-1.1.3.tar.gz’ gespeichert [4337233/4337233] +2023-04-19 20:51:52 (1,04 MB/s) - ‘./dragonbox-1.1.3.tar.gz’ gespeichert [4337233/4337233] ---2023-03-03 22:35:04-- https://dev-www.libreoffice.org/src/dtoa-20180411.tgz +--2023-04-19 20:51:52-- 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% 1,02M=0,05s + 0K 100% 1,04M=0,04s -2023-03-03 22:35:04 (1,02 MB/s) - ‘./dtoa-20180411.tgz’ gespeichert [48893/48893] +2023-04-19 20:51:52 (1,04 MB/s) - ‘./dtoa-20180411.tgz’ gespeichert [48893/48893] ---2023-03-03 22:35:04-- https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz +--2023-04-19 20:51:52-- 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% 1,20M=0,4s + 0K ....... 100% 1,06M=0,4s -2023-03-03 22:35:05 (1,20 MB/s) - ‘./libcmis-0.5.2.tar.xz’ gespeichert [484404/484404] +2023-04-19 20:51:53 (1,06 MB/s) - ‘./libcmis-0.5.2.tar.xz’ gespeichert [484404/484404] ---2023-03-03 22:35:05-- https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz +--2023-04-19 20:51:53-- https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 10343849 (9,9M) [application/octet-stream] Wird in ‘./CoinMP-1.7.6.tgz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 30% 2,01M 3s - 3072K ........ ........ ........ ........ ........ ........ 60% 2,80M 2s - 6144K ........ ........ ........ ........ ........ ........ 91% 3,01M 0s - 9216K ........ ..... 100% 3,08M=3,8s + 0K ........ ........ ........ ........ ........ ........ 30% 880K 8s + 3072K ........ ........ ........ ........ ........ ........ 60% 928K 4s + 6144K ........ ........ ........ ........ ........ ........ 91% 926K 1s + 9216K ........ ..... 100% 1,16M=11s -2023-03-03 22:35:09 (2,57 MB/s) - ‘./CoinMP-1.7.6.tgz’ gespeichert [10343849/10343849] +2023-04-19 20:52:04 (930 KB/s) - ‘./CoinMP-1.7.6.tgz’ gespeichert [10343849/10343849] ---2023-03-03 22:35:09-- https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz +--2023-04-19 20:52:04-- 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% 1,93M=0,4s + 0K ........ .... 100% 1,02M=0,8s -2023-03-03 22:35:10 (1,93 MB/s) - ‘./cppunit-1.15.1.tar.gz’ gespeichert [814363/814363] +2023-04-19 20:52:06 (1,02 MB/s) - ‘./cppunit-1.15.1.tar.gz’ gespeichert [814363/814363] ---2023-03-03 22:35:10-- https://dev-www.libreoffice.org/src/curl-7.88.1.tar.xz +--2023-04-19 20:52:06-- https://dev-www.libreoffice.org/src/curl-8.0.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: 2581032 (2,5M) [application/octet-stream] -Wird in ‘./curl-7.88.1.tar.xz’ gespeichert. +Länge: 2575544 (2,5M) [application/octet-stream] +Wird in ‘./curl-8.0.1.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ....... 100% 1,81M=1,4s + 0K ........ ........ ........ ........ ....... 100% 996K=2,5s -2023-03-03 22:35:12 (1,81 MB/s) - ‘./curl-7.88.1.tar.xz’ gespeichert [2581032/2581032] +2023-04-19 20:52:08 (996 KB/s) - ‘./curl-8.0.1.tar.xz’ gespeichert [2575544/2575544] ---2023-03-03 22:35:12-- https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz +--2023-04-19 20:52:08-- 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% 1,59M=0,3s + 0K ...... 100% 977K=0,4s -2023-03-03 22:35:12 (1,59 MB/s) - ‘./libe-book-0.1.3.tar.xz’ gespeichert [416268/416268] +2023-04-19 20:52:09 (977 KB/s) - ‘./libe-book-0.1.3.tar.xz’ gespeichert [416268/416268] ---2023-03-03 22:35:12-- https://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz +--2023-04-19 20:52:09-- https://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 463264 (452K) [application/octet-stream] Wird in ‘./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz’ gespeichert. - 0K ....... 100% 1,57M=0,3s + 0K ....... 100% 1,03M=0,4s -2023-03-03 22:35:13 (1,57 MB/s) - ‘./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz’ gespeichert [463264/463264] +2023-04-19 20:52:10 (1,03 MB/s) - ‘./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz’ gespeichert [463264/463264] ---2023-03-03 22:35:13-- https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz +--2023-04-19 20:52:10-- https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 324380 (317K) [application/octet-stream] Wird in ‘./libepubgen-0.1.1.tar.xz’ gespeichert. - 0K .... 100% 1,53M=0,2s + 0K .... 100% 955K=0,3s -2023-03-03 22:35:14 (1,53 MB/s) - ‘./libepubgen-0.1.1.tar.xz’ gespeichert [324380/324380] +2023-04-19 20:52:11 (955 KB/s) - ‘./libepubgen-0.1.1.tar.xz’ gespeichert [324380/324380] ---2023-03-03 22:35:14-- https://dev-www.libreoffice.org/src/libetonyek-0.1.10.tar.xz +--2023-04-19 20:52:11-- 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% 2,05M=0,7s + 0K ........ ........ ...... 100% 1,02M=1,4s -2023-03-03 22:35:15 (2,05 MB/s) - ‘./libetonyek-0.1.10.tar.xz’ gespeichert [1494000/1494000] +2023-04-19 20:52:12 (1,02 MB/s) - ‘./libetonyek-0.1.10.tar.xz’ gespeichert [1494000/1494000] ---2023-03-03 22:35:15-- https://dev-www.libreoffice.org/src/expat-2.5.0.tar.xz +--2023-04-19 20:52:12-- https://dev-www.libreoffice.org/src/expat-2.5.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: 460560 (450K) [application/octet-stream] Wird in ‘./expat-2.5.0.tar.xz’ gespeichert. - 0K ....... 100% 1,56M=0,3s + 0K ....... 100% 1,15M=0,4s -2023-03-03 22:35:15 (1,56 MB/s) - ‘./expat-2.5.0.tar.xz’ gespeichert [460560/460560] +2023-04-19 20:52:13 (1,15 MB/s) - ‘./expat-2.5.0.tar.xz’ gespeichert [460560/460560] ---2023-03-03 22:35:15-- https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2 +--2023-04-19 20:52:13-- 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% 2,41M 3s - 3072K ........ ........ ........ ........ ........ ........ 63% 2,24M 1s - 6144K ........ ........ ........ ........ ........ ........ 95% 2,18M 0s - 9216K ...... 100% 1,64M=4,2s + 0K ........ ........ ........ ........ ........ ........ 31% 914K 7s + 3072K ........ ........ ........ ........ ........ ........ 63% 1,17M 3s + 6144K ........ ........ ........ ........ ........ ........ 95% 1,67M 0s + 9216K ...... 100% 1,44M=8,0s -2023-03-03 22:35:20 (2,24 MB/s) - ‘./Firebird-3.0.7.33374-0.tar.bz2’ gespeichert [9841457/9841457] +2023-04-19 20:52:21 (1,17 MB/s) - ‘./Firebird-3.0.7.33374-0.tar.bz2’ gespeichert [9841457/9841457] ---2023-03-03 22:35:20-- https://dev-www.libreoffice.org/src/fontconfig-2.13.94.tar.xz +--2023-04-19 20:52:21-- 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% 1,90M=0,7s + 0K ........ ........ ..... 100% 1,67M=0,8s -2023-03-03 22:35:21 (1,90 MB/s) - ‘./fontconfig-2.13.94.tar.xz’ gespeichert [1416832/1416832] +2023-04-19 20:52:23 (1,67 MB/s) - ‘./fontconfig-2.13.94.tar.xz’ gespeichert [1416832/1416832] ---2023-03-03 22:35:21-- https://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz +--2023-04-19 20:52:23-- https://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 516132 (504K) [application/octet-stream] Wird in ‘./libfreehand-0.1.2.tar.xz’ gespeichert. - 0K ....... 100% 1,73M=0,3s + 0K ....... 100% 1,06M=0,5s -2023-03-03 22:35:21 (1,73 MB/s) - ‘./libfreehand-0.1.2.tar.xz’ gespeichert [516132/516132] +2023-04-19 20:52:23 (1,06 MB/s) - ‘./libfreehand-0.1.2.tar.xz’ gespeichert [516132/516132] ---2023-03-03 22:35:21-- https://dev-www.libreoffice.org/src/freetype-2.12.0.tar.xz +--2023-04-19 20:52:23-- https://dev-www.libreoffice.org/src/freetype-2.12.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: 2340352 (2,2M) [application/octet-stream] Wird in ‘./freetype-2.12.0.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ... 100% 1,66M=1,3s + 0K ........ ........ ........ ........ ... 100% 1,76M=1,3s -2023-03-03 22:35:23 (1,66 MB/s) - ‘./freetype-2.12.0.tar.xz’ gespeichert [2340352/2340352] +2023-04-19 20:52:25 (1,76 MB/s) - ‘./freetype-2.12.0.tar.xz’ gespeichert [2340352/2340352] ---2023-03-03 22:35:23-- https://dev-www.libreoffice.org/src/libepoxy-1.5.10.tar.gz +--2023-04-19 20:52:25-- 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: 332078 (324K) [application/octet-stream] Wird in ‘./libepoxy-1.5.10.tar.gz’ gespeichert. - 0K ..... 100% 1,40M=0,2s + 0K ..... 100% 1,56M=0,2s -2023-03-03 22:35:24 (1,40 MB/s) - ‘./libepoxy-1.5.10.tar.gz’ gespeichert [332078/332078] +2023-04-19 20:52:26 (1,56 MB/s) - ‘./libepoxy-1.5.10.tar.gz’ gespeichert [332078/332078] ---2023-03-03 22:35:24-- https://dev-www.libreoffice.org/src/glm-0.9.9.8.zip +--2023-04-19 20:52:26-- 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% 1,50M 2s - 3072K ........ ........ ........ ........ ........ . 100% 1,64M=3,6s + 0K ........ ........ ........ ........ ........ ........ 53% 2,42M 1s + 3072K ........ ........ ........ ........ ........ . 100% 1,98M=2,5s -2023-03-03 22:35:28 (1,56 MB/s) - ‘./glm-0.9.9.8.zip’ gespeichert [5856665/5856665] +2023-04-19 20:52:28 (2,19 MB/s) - ‘./glm-0.9.9.8.zip’ gespeichert [5856665/5856665] ---2023-03-03 22:35:28-- https://dev-www.libreoffice.org/src/gpgme-1.18.0.tar.bz2 +--2023-04-19 20:52:29-- https://dev-www.libreoffice.org/src/gpgme-1.18.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: 1762323 (1,7M) [application/octet-stream] Wird in ‘./gpgme-1.18.0.tar.bz2’ gespeichert. - 0K ........ ........ ........ .. 100% 1,96M=0,9s + 0K ........ ........ ........ .. 100% 2,14M=0,8s -2023-03-03 22:35:29 (1,96 MB/s) - ‘./gpgme-1.18.0.tar.bz2’ gespeichert [1762323/1762323] +2023-04-19 20:52:30 (2,14 MB/s) - ‘./gpgme-1.18.0.tar.bz2’ gespeichert [1762323/1762323] ---2023-03-03 22:35:29-- https://dev-www.libreoffice.org/src/graphite2-minimal-1.3.14.tgz +--2023-04-19 20:52:30-- 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 @@ -341,1153 +341,1154 @@ 0K .. 100% 1,36M=0,1s -2023-03-03 22:35:29 (1,36 MB/s) - ‘./graphite2-minimal-1.3.14.tgz’ gespeichert [149974/149974] +2023-04-19 20:52:30 (1,36 MB/s) - ‘./graphite2-minimal-1.3.14.tgz’ gespeichert [149974/149974] ---2023-03-03 22:35:29-- https://dev-www.libreoffice.org/src/harfbuzz-4.3.0.tar.xz +--2023-04-19 20:52:30-- https://dev-www.libreoffice.org/src/harfbuzz-7.1.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: 15036020 (14M) [application/octet-stream] -Wird in ‘./harfbuzz-4.3.0.tar.xz’ gespeichert. +Länge: 18655864 (18M) [application/octet-stream] +Wird in ‘./harfbuzz-7.1.0.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 20% 1,79M 6s - 3072K ........ ........ ........ ........ ........ ........ 41% 1,25M 6s - 6144K ........ ........ ........ ........ ........ ........ 62% 1013K 4s - 9216K ........ ........ ........ ........ ........ ........ 83% 1,41M 2s - 12288K ........ ........ ........ ........ ..... 100% 1,87M=10s + 0K ........ ........ ........ ........ ........ ........ 16% 1,94M 8s + 3072K ........ ........ ........ ........ ........ ........ 33% 1,07M 9s + 6144K ........ ........ ........ ........ ........ ........ 50% 948K 7s + 9216K ........ ........ ........ ........ ........ ........ 67% 1,06M 5s + 12288K ........ ........ ........ ........ ........ ........ 84% 1,24M 2s + 15360K ........ ........ ........ ........ ........ .... 100% 1,33M=15s -2023-03-03 22:35:40 (1,37 MB/s) - ‘./harfbuzz-4.3.0.tar.xz’ gespeichert [15036020/15036020] +2023-04-19 20:52:45 (1,19 MB/s) - ‘./harfbuzz-7.1.0.tar.xz’ gespeichert [18655864/18655864] ---2023-03-03 22:35:40-- https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip +--2023-04-19 20:52:45-- 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% 2,13M 0s - 3072K ..... 100% 2,88M=1,5s + 0K ........ ........ ........ ........ ........ ........ 89% 1,72M 0s + 3072K ..... 100% 2,29M=1,9s -2023-03-03 22:35:42 (2,19 MB/s) - ‘./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip’ gespeichert [3519470/3519470] +2023-04-19 20:52:48 (1,76 MB/s) - ‘./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip’ gespeichert [3519470/3519470] ---2023-03-03 22:35:42-- https://dev-www.libreoffice.org/src/hunspell-1.7.0.tar.gz +--2023-04-19 20:52:48-- 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% 2,20M=0,4s + 0K ........ ...... 100% 1,55M=0,6s -2023-03-03 22:35:43 (2,20 MB/s) - ‘./hunspell-1.7.0.tar.gz’ gespeichert [938142/938142] +2023-04-19 20:52:49 (1,55 MB/s) - ‘./hunspell-1.7.0.tar.gz’ gespeichert [938142/938142] ---2023-03-03 22:35:43-- https://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz +--2023-04-19 20:52:49-- 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% 2,02M=0,3s + 0K ........ . 100% 1,57M=0,4s -2023-03-03 22:35:43 (2,02 MB/s) - ‘./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz’ gespeichert [638369/638369] +2023-04-19 20:52:49 (1,57 MB/s) - ‘./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz’ gespeichert [638369/638369] ---2023-03-03 22:35:44-- https://dev-www.libreoffice.org/src/icu4c-71_1-src.tgz +--2023-04-19 20:52:49-- https://dev-www.libreoffice.org/src/icu4c-71_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: 25701340 (25M) [application/octet-stream] Wird in ‘./icu4c-71_1-src.tgz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 12% 2,68M 8s - 3072K ........ ........ ........ ........ ........ ........ 24% 3,00M 7s - 6144K ........ ........ ........ ........ ........ ........ 36% 2,75M 6s - 9216K ........ ........ ........ ........ ........ ........ 48% 2,87M 4s - 12288K ........ ........ ........ ........ ........ ........ 61% 2,62M 3s - 15360K ........ ........ ........ ........ ........ ........ 73% 2,97M 2s - 18432K ........ ........ ........ ........ ........ ........ 85% 2,66M 1s - 21504K ........ ........ ........ ........ ........ ........ 97% 2,23M 0s - 24576K ........ 100% 2,14M=9,1s + 0K ........ ........ ........ ........ ........ ........ 12% 2,23M 10s + 3072K ........ ........ ........ ........ ........ ........ 24% 1,71M 10s + 6144K ........ ........ ........ ........ ........ ........ 36% 1,76M 8s + 9216K ........ ........ ........ ........ ........ ........ 48% 1,52M 7s + 12288K ........ ........ ........ ........ ........ ........ 61% 1,47M 6s + 15360K ........ ........ ........ ........ ........ ........ 73% 1,72M 4s + 18432K ........ ........ ........ ........ ........ ........ 85% 1,36M 2s + 21504K ........ ........ ........ ........ ........ ........ 97% 1,17M 0s + 24576K ........ 100% 1,48M=16s -2023-03-03 22:35:53 (2,69 MB/s) - ‘./icu4c-71_1-src.tgz’ gespeichert [25701340/25701340] +2023-04-19 20:53:05 (1,56 MB/s) - ‘./icu4c-71_1-src.tgz’ gespeichert [25701340/25701340] ---2023-03-03 22:35:53-- https://dev-www.libreoffice.org/src/icu4c-71_1-data.zip +--2023-04-19 20:53:06-- https://dev-www.libreoffice.org/src/icu4c-71_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: 19057953 (18M) [application/zip] Wird in ‘./icu4c-71_1-data.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 16% 2,41M 6s - 3072K ........ ........ ........ ........ ........ ........ 33% 2,92M 5s - 6144K ........ ........ ........ ........ ........ ........ 49% 3,02M 3s - 9216K ........ ........ ........ ........ ........ ........ 66% 2,66M 2s - 12288K ........ ........ ........ ........ ........ ........ 82% 2,75M 1s - 15360K ........ ........ ........ ........ ........ ........ 99% 2,99M 0s - 18432K .. 100% 3,29M=6,5s + 0K ........ ........ ........ ........ ........ ........ 16% 1,97M 8s + 3072K ........ ........ ........ ........ ........ ........ 33% 2,98M 5s + 6144K ........ ........ ........ ........ ........ ........ 49% 3,02M 4s + 9216K ........ ........ ........ ........ ........ ........ 66% 2,50M 2s + 12288K ........ ........ ........ ........ ........ ........ 82% 1,80M 1s + 15360K ........ ........ ........ ........ ........ ........ 99% 1,50M 0s + 18432K .. 100% 1,26M=8,5s -2023-03-03 22:36:00 (2,78 MB/s) - ‘./icu4c-71_1-data.zip’ gespeichert [19057953/19057953] +2023-04-19 20:53:14 (2,13 MB/s) - ‘./icu4c-71_1-data.zip’ gespeichert [19057953/19057953] ---2023-03-03 22:36:00-- https://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip +--2023-04-19 20:53: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% 2,08M=0,3s + 0K ........ ... 100% 1,25M=0,6s -2023-03-03 22:36:01 (2,08 MB/s) - ‘./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip’ gespeichert [743031/743031] +2023-04-19 20:53:15 (1,25 MB/s) - ‘./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip’ gespeichert [743031/743031] ---2023-03-03 22:36:01-- https://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip +--2023-04-19 20:53:15-- https://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 207563 (203K) [application/zip] Wird in ‘./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip’ gespeichert. - 0K ... 100% 1,52M=0,1s + 0K ... 100% 1,28M=0,2s -2023-03-03 22:36:01 (1,52 MB/s) - ‘./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip’ gespeichert [207563/207563] +2023-04-19 20:53:16 (1,28 MB/s) - ‘./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip’ gespeichert [207563/207563] ---2023-03-03 22:36:01-- https://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip +--2023-04-19 20:53:16-- https://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 427800 (418K) [application/zip] Wird in ‘./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip’ gespeichert. - 0K ...... 100% 1,79M=0,2s + 0K ...... 100% 1,25M=0,3s -2023-03-03 22:36:02 (1,79 MB/s) - ‘./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip’ gespeichert [427800/427800] +2023-04-19 20:53:17 (1,25 MB/s) - ‘./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip’ gespeichert [427800/427800] ---2023-03-03 22:36:02-- https://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip +--2023-04-19 20:53:17-- https://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5750610 (5,5M) [application/zip] Wird in ‘./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 54% 2,40M 1s - 3072K ........ ........ ........ ........ ....... 100% 2,20M=2,4s + 0K ........ ........ ........ ........ ........ ........ 54% 2,07M 1s + 3072K ........ ........ ........ ........ ....... 100% 2,57M=2,4s -2023-03-03 22:36:05 (2,31 MB/s) - ‘./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip’ gespeichert [5750610/5750610] +2023-04-19 20:53:19 (2,27 MB/s) - ‘./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip’ gespeichert [5750610/5750610] ---2023-03-03 22:36:05-- https://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip +--2023-04-19 20:53:19-- 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% 2,20M=0,5s + 0K ........ ........ .. 100% 1,93M=0,6s -2023-03-03 22:36:05 (2,20 MB/s) - ‘./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip’ gespeichert [1180582/1180582] +2023-04-19 20:53:20 (1,93 MB/s) - ‘./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip’ gespeichert [1180582/1180582] ---2023-03-03 22:36:05-- https://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip +--2023-04-19 20:53:20-- 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% 2,29M=0,6s + 0K ........ ........ ..... 100% 1,10M=1,2s -2023-03-03 22:36:06 (2,29 MB/s) - ‘./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip’ gespeichert [1396007/1396007] +2023-04-19 20:53:22 (1,10 MB/s) - ‘./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip’ gespeichert [1396007/1396007] ---2023-03-03 22:36:06-- https://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip +--2023-04-19 20:53:22-- 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% 2,61M=1,1s + 0K ........ ........ ........ ........ ........ .... 100% 1,38M=2,0s -2023-03-03 22:36:08 (2,61 MB/s) - ‘./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip’ gespeichert [2938721/2938721] +2023-04-19 20:53:24 (1,38 MB/s) - ‘./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip’ gespeichert [2938721/2938721] ---2023-03-03 22:36:08-- https://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip +--2023-04-19 20:53:24-- https://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 762419 (745K) [application/zip] Wird in ‘./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip’ gespeichert. - 0K ........ ... 100% 1,98M=0,4s + 0K ........ ... 100% 1,43M=0,5s -2023-03-03 22:36:08 (1,98 MB/s) - ‘./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip’ gespeichert [762419/762419] +2023-04-19 20:53:25 (1,43 MB/s) - ‘./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip’ gespeichert [762419/762419] ---2023-03-03 22:36:08-- https://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip +--2023-04-19 20:53:25-- https://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 211919 (207K) [application/zip] Wird in ‘./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip’ gespeichert. - 0K ... 100% 1,46M=0,1s + 0K ... 100% 1,32M=0,2s -2023-03-03 22:36:09 (1,46 MB/s) - ‘./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip’ gespeichert [211919/211919] +2023-04-19 20:53:25 (1,32 MB/s) - ‘./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip’ gespeichert [211919/211919] ---2023-03-03 22:36:09-- https://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip +--2023-04-19 20:53:26-- 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% 2,63M=1,1s + 0K ........ ........ ........ ........ ........ .... 100% 1,38M=2,0s -2023-03-03 22:36:10 (2,63 MB/s) - ‘./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip’ gespeichert [2929311/2929311] +2023-04-19 20:53:28 (1,38 MB/s) - ‘./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip’ gespeichert [2929311/2929311] ---2023-03-03 22:36:10-- https://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip +--2023-04-19 20:53:28-- https://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 153157 (150K) [application/zip] Wird in ‘./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip’ gespeichert. - 0K .. 100% 1,38M=0,1s + 0K .. 100% 1,36M=0,1s -2023-03-03 22:36:11 (1,38 MB/s) - ‘./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip’ gespeichert [153157/153157] +2023-04-19 20:53:28 (1,36 MB/s) - ‘./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip’ gespeichert [153157/153157] ---2023-03-03 22:36:11-- https://dev-www.libreoffice.org/src/libjpeg-turbo-2.1.2.tar.gz +--2023-04-19 20:53:28-- https://dev-www.libreoffice.org/src/libjpeg-turbo-2.1.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: 2257645 (2,2M) [application/octet-stream] Wird in ‘./libjpeg-turbo-2.1.2.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ .. 100% 2,29M=0,9s + 0K ........ ........ ........ ........ .. 100% 1,96M=1,1s -2023-03-03 22:36:12 (2,29 MB/s) - ‘./libjpeg-turbo-2.1.2.tar.gz’ gespeichert [2257645/2257645] +2023-04-19 20:53:30 (1,96 MB/s) - ‘./libjpeg-turbo-2.1.2.tar.gz’ gespeichert [2257645/2257645] ---2023-03-03 22:36:12-- https://dev-www.libreoffice.org/src/lcms2-2.12.tar.gz +--2023-04-19 20:53:30-- 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% 2,51M 2s - 3072K ........ ........ ........ ........ ........ ........ 84% 2,42M 0s - 6144K ........ ........ . 100% 2,58M=2,9s + 0K ........ ........ ........ ........ ........ ........ 42% 2,40M 2s + 3072K ........ ........ ........ ........ ........ ........ 84% 1,71M 1s + 6144K ........ ........ . 100% 1,50M=3,7s -2023-03-03 22:36:15 (2,48 MB/s) - ‘./lcms2-2.12.tar.gz’ gespeichert [7419126/7419126] +2023-04-19 20:53:34 (1,90 MB/s) - ‘./lcms2-2.12.tar.gz’ gespeichert [7419126/7419126] ---2023-03-03 22:36:15-- https://dev-www.libreoffice.org/src/libatomic_ops-7.6.8.tar.gz +--2023-04-19 20:53:34-- https://dev-www.libreoffice.org/src/libatomic_ops-7.6.8.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 503550 (492K) [application/octet-stream] Wird in ‘./libatomic_ops-7.6.8.tar.gz’ gespeichert. - 0K ....... 100% 1,91M=0,3s + 0K ....... 100% 1,26M=0,4s -2023-03-03 22:36:16 (1,91 MB/s) - ‘./libatomic_ops-7.6.8.tar.gz’ gespeichert [503550/503550] +2023-04-19 20:53:35 (1,26 MB/s) - ‘./libatomic_ops-7.6.8.tar.gz’ gespeichert [503550/503550] ---2023-03-03 22:36:16-- https://dev-www.libreoffice.org/src/libassuan-2.5.5.tar.bz2 +--2023-04-19 20:53:35-- 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% 1,95M=0,3s + 0K ........ 100% 1,33M=0,4s -2023-03-03 22:36:16 (1,95 MB/s) - ‘./libassuan-2.5.5.tar.bz2’ gespeichert [572263/572263] +2023-04-19 20:53:35 (1,33 MB/s) - ‘./libassuan-2.5.5.tar.bz2’ gespeichert [572263/572263] ---2023-03-03 22:36:17-- https://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 +--2023-04-19 20:53:35-- https://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 260288 (254K) [application/octet-stream] Wird in ‘./libeot-0.01.tar.bz2’ gespeichert. - 0K ... 100% 1,62M=0,2s + 0K ... 100% 1,07M=0,2s -2023-03-03 22:36:17 (1,62 MB/s) - ‘./libeot-0.01.tar.bz2’ gespeichert [260288/260288] +2023-04-19 20:53:36 (1,07 MB/s) - ‘./libeot-0.01.tar.bz2’ gespeichert [260288/260288] ---2023-03-03 22:36:17-- https://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz +--2023-04-19 20:53:36-- 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% 2,29M=0,5s + 0K ........ ........ 100% 816K=1,3s -2023-03-03 22:36:18 (2,29 MB/s) - ‘./libexttextcat-3.4.6.tar.xz’ gespeichert [1111320/1111320] +2023-04-19 20:53:38 (816 KB/s) - ‘./libexttextcat-3.4.6.tar.xz’ gespeichert [1111320/1111320] ---2023-03-03 22:36:18-- https://dev-www.libreoffice.org/src/libffi-3.3.tar.gz +--2023-04-19 20:53:38-- https://dev-www.libreoffice.org/src/libffi-3.3.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1305466 (1,2M) [application/octet-stream] Wird in ‘./libffi-3.3.tar.gz’ gespeichert. - 0K ........ ........ ... 100% 2,38M=0,5s + 0K ........ ........ ... 100% 1,11M=1,1s -2023-03-03 22:36:19 (2,38 MB/s) - ‘./libffi-3.3.tar.gz’ gespeichert [1305466/1305466] +2023-04-19 20:53:39 (1,11 MB/s) - ‘./libffi-3.3.tar.gz’ gespeichert [1305466/1305466] ---2023-03-03 22:36:19-- https://dev-www.libreoffice.org/src/libgpg-error-1.43.tar.bz2 +--2023-04-19 20:53:39-- 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% 2,13M=0,4s + 0K ........ ....... 100% 1,56M=0,6s -2023-03-03 22:36:19 (2,13 MB/s) - ‘./libgpg-error-1.43.tar.bz2’ gespeichert [999006/999006] +2023-04-19 20:53:40 (1,56 MB/s) - ‘./libgpg-error-1.43.tar.bz2’ gespeichert [999006/999006] ---2023-03-03 22:36:19-- https://dev-www.libreoffice.org/src/language-subtag-registry-2022-08-08.tar.bz2 +--2023-04-19 20:53:40-- https://dev-www.libreoffice.org/src/language-subtag-registry-2022-08-08.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: 77580 (76K) [application/octet-stream] Wird in ‘./language-subtag-registry-2022-08-08.tar.bz2’ gespeichert. - 0K . 100% 1,35M=0,05s + 0K . 100% 1,36M=0,05s -2023-03-03 22:36:20 (1,35 MB/s) - ‘./language-subtag-registry-2022-08-08.tar.bz2’ gespeichert [77580/77580] +2023-04-19 20:53:40 (1,36 MB/s) - ‘./language-subtag-registry-2022-08-08.tar.bz2’ gespeichert [77580/77580] ---2023-03-03 22:36:20-- https://dev-www.libreoffice.org/src/liblangtag-0.6.3.tar.bz2 +--2023-04-19 20:53:40-- 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% 1,96M=0,4s + 0K ........ ... 100% 1,49M=0,5s -2023-03-03 22:36:21 (1,96 MB/s) - ‘./liblangtag-0.6.3.tar.bz2’ gespeichert [755492/755492] +2023-04-19 20:53:41 (1,49 MB/s) - ‘./liblangtag-0.6.3.tar.bz2’ gespeichert [755492/755492] ---2023-03-03 22:36:21-- https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz +--2023-04-19 20:53:41-- https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 302676 (296K) [application/octet-stream] Wird in ‘./libnumbertext-1.0.11.tar.xz’ gespeichert. - 0K .... 100% 1,56M=0,2s + 0K .... 100% 1,25M=0,2s -2023-03-03 22:36:21 (1,56 MB/s) - ‘./libnumbertext-1.0.11.tar.xz’ gespeichert [302676/302676] +2023-04-19 20:53:42 (1,25 MB/s) - ‘./libnumbertext-1.0.11.tar.xz’ gespeichert [302676/302676] ---2023-03-03 22:36:21-- https://dev-www.libreoffice.org/src/libpng-1.6.39.tar.xz +--2023-04-19 20:53:42-- https://dev-www.libreoffice.org/src/libpng-1.6.39.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: 1020552 (997K) [application/octet-stream] Wird in ‘./libpng-1.6.39.tar.xz’ gespeichert. - 0K ........ ....... 100% 2,11M=0,5s + 0K ........ ....... 100% 1,58M=0,6s -2023-03-03 22:36:22 (2,11 MB/s) - ‘./libpng-1.6.39.tar.xz’ gespeichert [1020552/1020552] +2023-04-19 20:53:43 (1,58 MB/s) - ‘./libpng-1.6.39.tar.xz’ gespeichert [1020552/1020552] ---2023-03-03 22:36:22-- https://dev-www.libreoffice.org/src/tiff-4.5.0rc3.tar.xz +--2023-04-19 20:53:43-- https://dev-www.libreoffice.org/src/tiff-4.5.0rc3.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: 2320900 (2,2M) [application/octet-stream] Wird in ‘./tiff-4.5.0rc3.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ... 100% 2,42M=0,9s + 0K ........ ........ ........ ........ ... 100% 2,04M=1,1s -2023-03-03 22:36:23 (2,42 MB/s) - ‘./tiff-4.5.0rc3.tar.xz’ gespeichert [2320900/2320900] +2023-04-19 20:53:44 (2,04 MB/s) - ‘./tiff-4.5.0rc3.tar.xz’ gespeichert [2320900/2320900] ---2023-03-03 22:36:23-- https://dev-www.libreoffice.org/src/ltm-1.0.zip +--2023-04-19 20:53:44-- 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% 2,62M=0,9s + 0K ........ ........ ........ ........ ...... 100% 1,25M=1,9s -2023-03-03 22:36:24 (2,62 MB/s) - ‘./ltm-1.0.zip’ gespeichert [2542693/2542693] +2023-04-19 20:53:46 (1,25 MB/s) - ‘./ltm-1.0.zip’ gespeichert [2542693/2542693] ---2023-03-03 22:36:24-- https://dev-www.libreoffice.org/src/libwebp-1.2.4.tar.gz +--2023-04-19 20:53:47-- https://dev-www.libreoffice.org/src/libwebp-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: 4141376 (3,9M) [application/octet-stream] Wird in ‘./libwebp-1.2.4.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 75% 2,65M 0s - 3072K ........ ....... 100% 2,38M=1,5s + 0K ........ ........ ........ ........ ........ ........ 75% 1,50M 1s + 3072K ........ ....... 100% 1,89M=2,5s -2023-03-03 22:36:26 (2,58 MB/s) - ‘./libwebp-1.2.4.tar.gz’ gespeichert [4141376/4141376] +2023-04-19 20:53:49 (1,58 MB/s) - ‘./libwebp-1.2.4.tar.gz’ gespeichert [4141376/4141376] ---2023-03-03 22:36:26-- https://dev-www.libreoffice.org/src/libxml2-2.10.3.tar.xz +--2023-04-19 20:53:49-- https://dev-www.libreoffice.org/src/libxml2-2.10.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: 2639908 (2,5M) [application/octet-stream] -Wird in ‘./libxml2-2.10.3.tar.xz’ gespeichert. +Länge: 2643600 (2,5M) [application/octet-stream] +Wird in ‘./libxml2-2.10.4.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ 100% 2,60M=1,0s + 0K ........ ........ ........ ........ ........ 100% 2,01M=1,3s -2023-03-03 22:36:28 (2,60 MB/s) - ‘./libxml2-2.10.3.tar.xz’ gespeichert [2639908/2639908] +2023-04-19 20:53:51 (2,01 MB/s) - ‘./libxml2-2.10.4.tar.xz’ gespeichert [2643600/2643600] ---2023-03-03 22:36:28-- https://dev-www.libreoffice.org/src/xmlsec1-1.2.34.tar.gz +--2023-04-19 20:53:51-- https://dev-www.libreoffice.org/src/xmlsec1-1.2.34.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1991505 (1,9M) [application/octet-stream] Wird in ‘./xmlsec1-1.2.34.tar.gz’ gespeichert. - 0K ........ ........ ........ ...... 100% 2,49M=0,8s + 0K ........ ........ ........ ...... 100% 1,27M=1,5s -2023-03-03 22:36:29 (2,49 MB/s) - ‘./xmlsec1-1.2.34.tar.gz’ gespeichert [1991505/1991505] +2023-04-19 20:53:53 (1,27 MB/s) - ‘./xmlsec1-1.2.34.tar.gz’ gespeichert [1991505/1991505] ---2023-03-03 22:36:29-- https://dev-www.libreoffice.org/src/libxslt-1.1.35.tar.xz +--2023-04-19 20:53:53-- 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% 2,45M=0,7s + 0K ........ ........ ........ ... 100% 667K=2,7s -2023-03-03 22:36:30 (2,45 MB/s) - ‘./libxslt-1.1.35.tar.xz’ gespeichert [1827548/1827548] +2023-04-19 20:53:56 (667 KB/s) - ‘./libxslt-1.1.35.tar.xz’ gespeichert [1827548/1827548] ---2023-03-03 22:36:30-- https://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz +--2023-04-19 20:53:56-- https://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 769268 (751K) [application/octet-stream] Wird in ‘./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz’ gespeichert. - 0K ........ ... 100% 2,01M=0,4s + 0K ........ ... 100% 895K=0,8s -2023-03-03 22:36:30 (2,01 MB/s) - ‘./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz’ gespeichert [769268/769268] +2023-04-19 20:53:57 (895 KB/s) - ‘./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz’ gespeichert [769268/769268] ---2023-03-03 22:36:30-- https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz +--2023-04-19 20:53:57-- https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2380804 (2,3M) [application/octet-stream] Wird in ‘./lxml-4.1.1.tgz’ gespeichert. - 0K ........ ........ ........ ........ .... 100% 2,28M=1,0s + 0K ........ ........ ........ ........ .... 100% 1,39M=1,6s -2023-03-03 22:36:32 (2,28 MB/s) - ‘./lxml-4.1.1.tgz’ gespeichert [2380804/2380804] +2023-04-19 20:53:59 (1,39 MB/s) - ‘./lxml-4.1.1.tgz’ gespeichert [2380804/2380804] ---2023-03-03 22:36:32-- https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz +--2023-04-19 20:53:59-- https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 744745 (727K) [application/octet-stream] Wird in ‘./mariadb-connector-c-3.1.8-src.tar.gz’ gespeichert. - 0K ........ ... 100% 1,81M=0,4s + 0K ........ ... 100% 1,70M=0,4s -2023-03-03 22:36:33 (1,81 MB/s) - ‘./mariadb-connector-c-3.1.8-src.tar.gz’ gespeichert [744745/744745] +2023-04-19 20:54:00 (1,70 MB/s) - ‘./mariadb-connector-c-3.1.8-src.tar.gz’ gespeichert [744745/744745] ---2023-03-03 22:36:33-- https://dev-www.libreoffice.org/src/mdds-2.0.3.tar.bz2 +--2023-04-19 20:54:00-- 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% 1,68M=0,3s + 0K ....... 100% 1,43M=0,3s -2023-03-03 22:36:33 (1,68 MB/s) - ‘./mdds-2.0.3.tar.bz2’ gespeichert [516540/516540] +2023-04-19 20:54:01 (1,43 MB/s) - ‘./mdds-2.0.3.tar.bz2’ gespeichert [516540/516540] ---2023-03-03 22:36:33-- https://dev-www.libreoffice.org/src/zxing-cpp-1.2.0.tar.gz +--2023-04-19 20:54:01-- 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% 2,49M 36s - 3072K ........ ........ ........ ........ ........ ........ 6% 2,99M 32s - 6144K ........ ........ ........ ........ ........ ........ 9% 2,98M 30s - 9216K ........ ........ ........ ........ ........ ........ 12% 1,95M 32s - 12288K ........ ........ ........ ........ ........ ........ 16% 1,49M 35s - 15360K ........ ........ ........ ........ ........ ........ 19% 2,04M 35s - 18432K ........ ........ ........ ........ ........ ........ 22% 1,49M 35s - 21504K ........ ........ ........ ........ ........ ........ 25% 1,55M 35s - 24576K ........ ........ ........ ........ ........ ........ 28% 1,60M 35s - 27648K ........ ........ ........ ........ ........ ........ 32% 1,69M 33s - 30720K ........ ........ ........ ........ ........ ........ 35% 1,59M 32s - 33792K ........ ........ ........ ........ ........ ........ 38% 2,14M 30s - 36864K ........ ........ ........ ........ ........ ........ 41% 2,29M 29s - 39936K ........ ........ ........ ........ ........ ........ 44% 1,56M 27s - 43008K ........ ........ ........ ........ ........ ........ 48% 1,83M 26s - 46080K ........ ........ ........ ........ ........ ........ 51% 1,96M 24s - 49152K ........ ........ ........ ........ ........ ........ 54% 1,62M 23s - 52224K ........ ........ ........ ........ ........ ........ 57% 1,24M 22s - 55296K ........ ........ ........ ........ ........ ........ 61% 1,62M 20s - 58368K ........ ........ ........ ........ ........ ........ 64% 1,94M 18s - 61440K ........ ........ ........ ........ ........ ........ 67% 2,14M 17s - 64512K ........ ........ ........ ........ ........ ........ 70% 1,84M 15s - 67584K ........ ........ ........ ........ ........ ........ 73% 1,41M 14s - 70656K ........ ........ ........ ........ ........ ........ 77% 1,41M 12s - 73728K ........ ........ ........ ........ ........ ........ 80% 1,33M 10s - 76800K ........ ........ ........ ........ ........ ........ 83% 1,31M 9s - 79872K ........ ........ ........ ........ ........ ........ 86% 1,88M 7s - 82944K ........ ........ ........ ........ ........ ........ 89% 1,84M 5s - 86016K ........ ........ ........ ........ ........ ........ 93% 1,62M 4s - 89088K ........ ........ ........ ........ ........ ........ 96% 1,57M 2s - 92160K ........ ........ ........ ........ ........ ........ 99% 1,80M 0s - 95232K ...... 100% 1,61M=54s + 0K ........ ........ ........ ........ ........ ........ 3% 2,16M 42s + 3072K ........ ........ ........ ........ ........ ........ 6% 3,09M 34s + 6144K ........ ........ ........ ........ ........ ........ 9% 2,27M 34s + 9216K ........ ........ ........ ........ ........ ........ 12% 2,08M 35s + 12288K ........ ........ ........ ........ ........ ........ 16% 1,89M 35s + 15360K ........ ........ ........ ........ ........ ........ 19% 2,00M 34s + 18432K ........ ........ ........ ........ ........ ........ 22% 2,46M 33s + 21504K ........ ........ ........ ........ ........ ........ 25% 2,65M 31s + 24576K ........ ........ ........ ........ ........ ........ 28% 2,13M 29s + 27648K ........ ........ ........ ........ ........ ........ 32% 2,21M 28s + 30720K ........ ........ ........ ........ ........ ........ 35% 1,46M 28s + 33792K ........ ........ ........ ........ ........ ........ 38% 1,21M 28s + 36864K ........ ........ ........ ........ ........ ........ 41% 1,31M 28s + 39936K ........ ........ ........ ........ ........ ........ 44% 1,49M 27s + 43008K ........ ........ ........ ........ ........ ........ 48% 1,94M 26s + 46080K ........ ........ ........ ........ ........ ........ 51% 2,40M 24s + 49152K ........ ........ ........ ........ ........ ........ 54% 2,79M 22s + 52224K ........ ........ ........ ........ ........ ........ 57% 1,82M 20s + 55296K ........ ........ ........ ........ ........ ........ 61% 2,21M 19s + 58368K ........ ........ ........ ........ ........ ........ 64% 2,16M 17s + 61440K ........ ........ ........ ........ ........ ........ 67% 2,40M 15s + 64512K ........ ........ ........ ........ ........ ........ 70% 2,44M 14s + 67584K ........ ........ ........ ........ ........ ........ 73% 1,37M 12s + 70656K ........ ........ ........ ........ ........ ........ 77% 1,97M 11s + 73728K ........ ........ ........ ........ ........ ........ 80% 2,02M 9s + 76800K ........ ........ ........ ........ ........ ........ 83% 1,48M 8s + 79872K ........ ........ ........ ........ ........ ........ 86% 1,38M 6s + 82944K ........ ........ ........ ........ ........ ........ 89% 1,53M 5s + 86016K ........ ........ ........ ........ ........ ........ 93% 1,26M 3s + 89088K ........ ........ ........ ........ ........ ........ 96% 843K 2s + 92160K ........ ........ ........ ........ ........ ........ 99% 1,18M 0s + 95232K ...... 100% 1,50M=53s -2023-03-03 22:37:27 (1,73 MB/s) - ‘./zxing-cpp-1.2.0.tar.gz’ gespeichert [97942494/97942494] +2023-04-19 20:54:54 (1,76 MB/s) - ‘./zxing-cpp-1.2.0.tar.gz’ gespeichert [97942494/97942494] ---2023-03-03 22:37:28-- https://dev-www.libreoffice.org/src/mDNSResponder-878.200.35.tar.gz +--2023-04-19 20:54:55-- 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% 2,27M=1,1s + 0K ........ ........ ........ ........ ...... 100% 974K=2,5s -2023-03-03 22:37:29 (2,27 MB/s) - ‘./mDNSResponder-878.200.35.tar.gz’ gespeichert [2537410/2537410] +2023-04-19 20:54:58 (974 KB/s) - ‘./mDNSResponder-878.200.35.tar.gz’ gespeichert [2537410/2537410] ---2023-03-03 22:37:29-- https://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz +--2023-04-19 20:54:58-- https://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 112756 (110K) [application/octet-stream] Wird in ‘./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz’ gespeichert. - 0K . 100% 1,18M=0,09s + 0K . 100% 586K=0,2s -2023-03-03 22:37:30 (1,18 MB/s) - ‘./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz’ gespeichert [112756/112756] +2023-04-19 20:54:58 (586 KB/s) - ‘./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz’ gespeichert [112756/112756] ---2023-03-03 22:37:30-- https://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz +--2023-04-19 20:54:58-- 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% 2,21M=0,5s + 0K ........ ........ . 100% 895K=1,3s -2023-03-03 22:37:31 (2,21 MB/s) - ‘./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz’ gespeichert [1169488/1169488] +2023-04-19 20:55:00 (895 KB/s) - ‘./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz’ gespeichert [1169488/1169488] ---2023-03-03 22:37:31-- https://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip +--2023-04-19 20:55:00-- 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% 2,47M 1s - 3072K ........ ........ ........ ........ .... 100% 2,25M=2,2s + 0K ........ ........ ........ ........ ........ ........ 56% 711K 3s + 3072K ........ ........ ........ ........ .... 100% 805K=7,2s -2023-03-03 22:37:33 (2,37 MB/s) - ‘./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip’ gespeichert [5522795/5522795] +2023-04-19 20:55:07 (749 KB/s) - ‘./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip’ gespeichert [5522795/5522795] ---2023-03-03 22:37:33-- https://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip +--2023-04-19 20:55:07-- https://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 811606 (793K) [application/zip] Wird in ‘./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip’ gespeichert. - 0K ........ .... 100% 1,84M=0,4s + 0K ........ .... 100% 973K=0,8s -2023-03-03 22:37:34 (1,84 MB/s) - ‘./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip’ gespeichert [811606/811606] +2023-04-19 20:55:08 (973 KB/s) - ‘./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip’ gespeichert [811606/811606] ---2023-03-03 22:37:34-- https://dev-www.libreoffice.org/src/liberation-narrow-fonts-ttf-1.07.6.tar.gz +--2023-04-19 20:55:08-- https://dev-www.libreoffice.org/src/liberation-narrow-fonts-ttf-1.07.6.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 300832 (294K) [application/octet-stream] Wird in ‘./liberation-narrow-fonts-ttf-1.07.6.tar.gz’ gespeichert. - 0K .... 100% 1,49M=0,2s + 0K .... 100% 1,01M=0,3s -2023-03-03 22:37:35 (1,49 MB/s) - ‘./liberation-narrow-fonts-ttf-1.07.6.tar.gz’ gespeichert [300832/300832] +2023-04-19 20:55:09 (1,01 MB/s) - ‘./liberation-narrow-fonts-ttf-1.07.6.tar.gz’ gespeichert [300832/300832] ---2023-03-03 22:37:35-- https://dev-www.libreoffice.org/src/liberation-fonts-ttf-2.1.4.tar.gz +--2023-04-19 20:55:09-- 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% 2,39M=1,0s + 0K ........ ........ ........ ........ .... 100% 1,39M=1,6s -2023-03-03 22:37:36 (2,39 MB/s) - ‘./liberation-fonts-ttf-2.1.4.tar.gz’ gespeichert [2388283/2388283] +2023-04-19 20:55:11 (1,39 MB/s) - ‘./liberation-fonts-ttf-2.1.4.tar.gz’ gespeichert [2388283/2388283] ---2023-03-03 22:37:36-- https://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip +--2023-04-19 20:55:11-- 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% 2,63M 1s - 3072K ........ ........ ........ ........ ........ ........ 94% 2,98M 0s - 6144K ..... 100% 2,68M=2,3s + 0K ........ ........ ........ ........ ........ ........ 47% 2,29M 1s + 3072K ........ ........ ........ ........ ........ ........ 94% 2,75M 0s + 6144K ..... 100% 2,58M=2,5s -2023-03-03 22:37:38 (2,79 MB/s) - ‘./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip’ gespeichert [6651982/6651982] +2023-04-19 20:55:14 (2,50 MB/s) - ‘./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip’ gespeichert [6651982/6651982] ---2023-03-03 22:37:39-- https://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz +--2023-04-19 20:55:14-- https://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1338551 (1,3M) [application/octet-stream] Wird in ‘./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz’ gespeichert. - 0K ........ ........ .... 100% 1,68M=0,8s + 0K ........ ........ .... 100% 1,69M=0,8s -2023-03-03 22:37:40 (1,68 MB/s) - ‘./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz’ gespeichert [1338551/1338551] +2023-04-19 20:55:15 (1,69 MB/s) - ‘./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz’ gespeichert [1338551/1338551] ---2023-03-03 22:37:40-- https://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz +--2023-04-19 20:55:15-- 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% 998K=1,1s + 0K ........ ........ 100% 1,87M=0,6s -2023-03-03 22:37:41 (998 KB/s) - ‘./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz’ gespeichert [1098827/1098827] +2023-04-19 20:55:16 (1,87 MB/s) - ‘./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz’ gespeichert [1098827/1098827] ---2023-03-03 22:37:41-- https://dev-www.libreoffice.org/src/source-serif-pro-3.000R.tar.gz +--2023-04-19 20:55:16-- https://dev-www.libreoffice.org/src/source-serif-pro-3.000R.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1135588 (1,1M) [application/octet-stream] Wird in ‘./source-serif-pro-3.000R.tar.gz’ gespeichert. - 0K ........ ........ . 100% 1,29M=0,8s + 0K ........ ........ . 100% 1,90M=0,6s -2023-03-03 22:37:42 (1,29 MB/s) - ‘./source-serif-pro-3.000R.tar.gz’ gespeichert [1135588/1135588] +2023-04-19 20:55:17 (1,90 MB/s) - ‘./source-serif-pro-3.000R.tar.gz’ gespeichert [1135588/1135588] ---2023-03-03 22:37:42-- https://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz +--2023-04-19 20:55:17-- https://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2961759 (2,8M) [application/octet-stream] Wird in ‘./EmojiOneColor-SVGinOT-1.3.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ..... 100% 2,01M=1,4s + 0K ........ ........ ........ ........ ........ ..... 100% 2,41M=1,2s -2023-03-03 22:37:44 (2,01 MB/s) - ‘./EmojiOneColor-SVGinOT-1.3.tar.gz’ gespeichert [2961759/2961759] +2023-04-19 20:55:18 (2,41 MB/s) - ‘./EmojiOneColor-SVGinOT-1.3.tar.gz’ gespeichert [2961759/2961759] ---2023-03-03 22:37:44-- https://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz +--2023-04-19 20:55:19-- 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% 2,61M 1s - 3072K ........ ........ ........ ........ ........ ........ 94% 2,99M 0s - 6144K ..... 100% 3,17M=2,3s + 0K ........ ........ ........ ........ ........ ........ 47% 1,63M 2s + 3072K ........ ........ ........ ........ ........ ........ 94% 1,06M 0s + 6144K ..... 100% 1,71M=4,9s -2023-03-03 22:37:47 (2,80 MB/s) - ‘./noto-fonts-20171024.tar.gz’ gespeichert [6646182/6646182] +2023-04-19 20:55:24 (1,30 MB/s) - ‘./noto-fonts-20171024.tar.gz’ gespeichert [6646182/6646182] ---2023-03-03 22:37:47-- https://dev-www.libreoffice.org/src/culmus-0.133.tar.gz +--2023-04-19 20:55:24-- 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% 2,31M=0,5s + 0K ........ ........ . 100% 652K=1,8s -2023-03-03 22:37:47 (2,31 MB/s) - ‘./culmus-0.133.tar.gz’ gespeichert [1174687/1174687] +2023-04-19 20:55:26 (652 KB/s) - ‘./culmus-0.133.tar.gz’ gespeichert [1174687/1174687] ---2023-03-03 22:37:47-- https://dev-www.libreoffice.org/src/libre-hebrew-1.0.tar.gz +--2023-04-19 20:55:26-- https://dev-www.libreoffice.org/src/libre-hebrew-1.0.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 531276 (519K) [application/octet-stream] Wird in ‘./libre-hebrew-1.0.tar.gz’ gespeichert. - 0K ........ 100% 1,95M=0,3s + 0K ........ 100% 701K=0,7s -2023-03-03 22:37:48 (1,95 MB/s) - ‘./libre-hebrew-1.0.tar.gz’ gespeichert [531276/531276] +2023-04-19 20:55:27 (701 KB/s) - ‘./libre-hebrew-1.0.tar.gz’ gespeichert [531276/531276] ---2023-03-03 22:37:48-- https://dev-www.libreoffice.org/src/alef-1.001.tar.gz +--2023-04-19 20:55:27-- https://dev-www.libreoffice.org/src/alef-1.001.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 93498 (91K) [application/octet-stream] Wird in ‘./alef-1.001.tar.gz’ gespeichert. - 0K . 100% 1,47M=0,06s + 0K . 100% 663K=0,1s -2023-03-03 22:37:48 (1,47 MB/s) - ‘./alef-1.001.tar.gz’ gespeichert [93498/93498] +2023-04-19 20:55:27 (663 KB/s) - ‘./alef-1.001.tar.gz’ gespeichert [93498/93498] ---2023-03-03 22:37:48-- https://dev-www.libreoffice.org/src/Amiri-0.117.zip +--2023-04-19 20:55:27-- 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% 1,86M=1,4s + 0K ........ ........ ........ ........ ........ . 100% 889K=3,0s -2023-03-03 22:37:50 (1,86 MB/s) - ‘./Amiri-0.117.zip’ gespeichert [2744270/2744270] +2023-04-19 20:55:31 (889 KB/s) - ‘./Amiri-0.117.zip’ gespeichert [2744270/2744270] ---2023-03-03 22:37:50-- https://dev-www.libreoffice.org/src/ttf-kacst_2.01+mry.tar.gz +--2023-04-19 20:55:31-- 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% 1,33M=0,3s + 0K ...... 100% 870K=0,5s -2023-03-03 22:37:51 (1,33 MB/s) - ‘./ttf-kacst_2.01+mry.tar.gz’ gespeichert [407400/407400] +2023-04-19 20:55:32 (870 KB/s) - ‘./ttf-kacst_2.01+mry.tar.gz’ gespeichert [407400/407400] ---2023-03-03 22:37:51-- https://dev-www.libreoffice.org/src/ReemKufi-1.2.zip +--2023-04-19 20:55:32-- 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% 1,31M=0,3s + 0K ...... 100% 911K=0,5s -2023-03-03 22:37:51 (1,31 MB/s) - ‘./ReemKufi-1.2.zip’ gespeichert [450612/450612] +2023-04-19 20:55:32 (911 KB/s) - ‘./ReemKufi-1.2.zip’ gespeichert [450612/450612] ---2023-03-03 22:37:51-- https://dev-www.libreoffice.org/src/Scheherazade-2.100.zip +--2023-04-19 20:55:32-- https://dev-www.libreoffice.org/src/Scheherazade-2.100.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1114645 (1,1M) [application/zip] Wird in ‘./Scheherazade-2.100.zip’ gespeichert. - 0K ........ ........ . 100% 1,59M=0,7s + 0K ........ ........ . 100% 1,09M=1,0s -2023-03-03 22:37:52 (1,59 MB/s) - ‘./Scheherazade-2.100.zip’ gespeichert [1114645/1114645] +2023-04-19 20:55:34 (1,09 MB/s) - ‘./Scheherazade-2.100.zip’ gespeichert [1114645/1114645] ---2023-03-03 22:37:52-- https://dev-www.libreoffice.org/src/libmspub-0.1.4.tar.xz +--2023-04-19 20:55:34-- 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% 874K=0,4s + 0K ..... 100% 1,25M=0,3s -2023-03-03 22:37:53 (874 KB/s) - ‘./libmspub-0.1.4.tar.xz’ gespeichert [377472/377472] +2023-04-19 20:55:34 (1,25 MB/s) - ‘./libmspub-0.1.4.tar.xz’ gespeichert [377472/377472] ---2023-03-03 22:37:53-- https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz +--2023-04-19 20:55:34-- 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% 1,37M=1,0s + 0K ........ ........ ...... 100% 1,64M=0,8s -2023-03-03 22:37:54 (1,37 MB/s) - ‘./libmwaw-0.3.21.tar.xz’ gespeichert [1457212/1457212] +2023-04-19 20:55:36 (1,64 MB/s) - ‘./libmwaw-0.3.21.tar.xz’ gespeichert [1457212/1457212] ---2023-03-03 22:37:55-- https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz +--2023-04-19 20:55:36-- 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% 1,89M 1s - 3072K ........ ........ ........ .. 100% 1,74M=2,6s + 0K ........ ........ ........ ........ ........ ........ 64% 2,22M 1s + 3072K ........ ........ ........ .. 100% 2,91M=1,9s -2023-03-03 22:37:57 (1,83 MB/s) - ‘./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz’ gespeichert [4910303/4910303] +2023-04-19 20:55:38 (2,43 MB/s) - ‘./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz’ gespeichert [4910303/4910303] ---2023-03-03 22:37:57-- https://dev-www.libreoffice.org/src/nss-3.88.1-with-nspr-4.35.tar.gz +--2023-04-19 20:55:38-- https://dev-www.libreoffice.org/src/nss-3.88.1-with-nspr-4.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: 73100402 (70M) [application/octet-stream] Wird in ‘./nss-3.88.1-with-nspr-4.35.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 4% 1,53M 44s - 3072K ........ ........ ........ ........ ........ ........ 8% 1,44M 43s - 6144K ........ ........ ........ ........ ........ ........ 12% 1,28M 43s - 9216K ........ ........ ........ ........ ........ ........ 17% 1,07M 44s - 12288K ........ ........ ........ ........ ........ ........ 21% 1,34M 42s - 15360K ........ ........ ........ ........ ........ ........ 25% 1,86M 37s - 18432K ........ ........ ........ ........ ........ ........ 30% 2,02M 34s - 21504K ........ ........ ........ ........ ........ ........ 34% 2,06M 30s - 24576K ........ ........ ........ ........ ........ ........ 38% 1,69M 28s - 27648K ........ ........ ........ ........ ........ ........ 43% 1,45M 26s - 30720K ........ ........ ........ ........ ........ ........ 47% 1,27M 25s - 33792K ........ ........ ........ ........ ........ ........ 51% 1,78M 22s - 36864K ........ ........ ........ ........ ........ ........ 55% 1,90M 20s - 39936K ........ ........ ........ ........ ........ ........ 60% 2,33M 18s - 43008K ........ ........ ........ ........ ........ ........ 64% 2,73M 15s - 46080K ........ ........ ........ ........ ........ ........ 68% 3,00M 13s - 49152K ........ ........ ........ ........ ........ ........ 73% 2,22M 11s - 52224K ........ ........ ........ ........ ........ ........ 77% 2,03M 9s - 55296K ........ ........ ........ ........ ........ ........ 81% 1,98M 7s - 58368K ........ ........ ........ ........ ........ ........ 86% 2,35M 6s - 61440K ........ ........ ........ ........ ........ ........ 90% 1,68M 4s - 64512K ........ ........ ........ ........ ........ ........ 94% 1,98M 2s - 67584K ........ ........ ........ ........ ........ ........ 98% 1,89M 0s - 70656K ........ ... 100% 1,26M=40s + 0K ........ ........ ........ ........ ........ ........ 4% 2,46M 27s + 3072K ........ ........ ........ ........ ........ ........ 8% 1,73M 31s + 6144K ........ ........ ........ ........ ........ ........ 12% 2,22M 29s + 9216K ........ ........ ........ ........ ........ ........ 17% 2,65M 26s + 12288K ........ ........ ........ ........ ........ ........ 21% 2,97M 24s + 15360K ........ ........ ........ ........ ........ ........ 25% 2,09M 23s + 18432K ........ ........ ........ ........ ........ ........ 30% 1,44M 23s + 21504K ........ ........ ........ ........ ........ ........ 34% 1,82M 22s + 24576K ........ ........ ........ ........ ........ ........ 38% 1,86M 21s + 27648K ........ ........ ........ ........ ........ ........ 43% 1,97M 20s + 30720K ........ ........ ........ ........ ........ ........ 47% 1,61M 18s + 33792K ........ ........ ........ ........ ........ ........ 51% 1,86M 17s + 36864K ........ ........ ........ ........ ........ ........ 55% 1,00M 17s + 39936K ........ ........ ........ ........ ........ ........ 60% 1,04M 16s + 43008K ........ ........ ........ ........ ........ ........ 64% 1,32M 14s + 46080K ........ ........ ........ ........ ........ ........ 68% 1,42M 13s + 49152K ........ ........ ........ ........ ........ ........ 73% 1,50M 11s + 52224K ........ ........ ........ ........ ........ ........ 77% 1,40M 10s + 55296K ........ ........ ........ ........ ........ ........ 81% 1,40M 8s + 58368K ........ ........ ........ ........ ........ ........ 86% 1,46M 6s + 61440K ........ ........ ........ ........ ........ ........ 90% 1,22M 4s + 64512K ........ ........ ........ ........ ........ ........ 94% 1,73M 2s + 67584K ........ ........ ........ ........ ........ ........ 98% 2,20M 0s + 70656K ........ ... 100% 2,11M=43s -2023-03-03 22:38:38 (1,75 MB/s) - ‘./nss-3.88.1-with-nspr-4.35.tar.gz’ gespeichert [73100402/73100402] +2023-04-19 20:56:21 (1,63 MB/s) - ‘./nss-3.88.1-with-nspr-4.35.tar.gz’ gespeichert [73100402/73100402] ---2023-03-03 22:38:38-- https://dev-www.libreoffice.org/src/libodfgen-0.1.8.tar.xz +--2023-04-19 20:56:21-- 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% 895K=0,4s + 0K ..... 100% 1,58M=0,2s -2023-03-03 22:38:39 (895 KB/s) - ‘./libodfgen-0.1.8.tar.xz’ gespeichert [386156/386156] +2023-04-19 20:56:22 (1,58 MB/s) - ‘./libodfgen-0.1.8.tar.xz’ gespeichert [386156/386156] ---2023-03-03 22:38:39-- https://dev-www.libreoffice.org/src/openldap-2.4.59.tgz +--2023-04-19 20:56:22-- 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% 1,74M 1s - 3072K ........ ........ ........ ........ ........ . 100% 2,56M=2,7s + 0K ........ ........ ........ ........ ........ ........ 53% 2,22M 1s + 3072K ........ ........ ........ ........ ........ . 100% 2,11M=2,6s -2023-03-03 22:38:42 (2,05 MB/s) - ‘./openldap-2.4.59.tgz’ gespeichert [5886272/5886272] +2023-04-19 20:56:25 (2,16 MB/s) - ‘./openldap-2.4.59.tgz’ gespeichert [5886272/5886272] ---2023-03-03 22:38:42-- https://dev-www.libreoffice.org/src/openssl-1.1.1t.tar.gz +--2023-04-19 20:56:25-- https://dev-www.libreoffice.org/src/openssl-1.1.1t.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: 9881866 (9,4M) [application/octet-stream] Wird in ‘./openssl-1.1.1t.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 31% 2,44M 3s - 3072K ........ ........ ........ ........ ........ ........ 63% 1,80M 2s - 6144K ........ ........ ........ ........ ........ ........ 95% 1,56M 0s - 9216K ...... 100% 1,29M=5,2s + 0K ........ ........ ........ ........ ........ ........ 31% 2,53M 3s + 3072K ........ ........ ........ ........ ........ ........ 63% 2,93M 1s + 6144K ........ ........ ........ ........ ........ ........ 95% 2,03M 0s + 9216K ...... 100% 2,37M=3,9s -2023-03-03 22:38:47 (1,83 MB/s) - ‘./openssl-1.1.1t.tar.gz’ gespeichert [9881866/9881866] +2023-04-19 20:56:29 (2,44 MB/s) - ‘./openssl-1.1.1t.tar.gz’ gespeichert [9881866/9881866] ---2023-03-03 22:38:48-- https://dev-www.libreoffice.org/src/liborcus-0.17.2.tar.bz2 +--2023-04-19 20:56:29-- 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% 1,51M=1,3s + 0K ........ ........ ........ ........ 100% 1,59M=1,3s -2023-03-03 22:38:49 (1,51 MB/s) - ‘./liborcus-0.17.2.tar.bz2’ gespeichert [2123970/2123970] +2023-04-19 20:56:31 (1,59 MB/s) - ‘./liborcus-0.17.2.tar.bz2’ gespeichert [2123970/2123970] ---2023-03-03 22:38:49-- https://dev-www.libreoffice.org/src/libpagemaker-0.0.4.tar.xz +--2023-04-19 20:56:31-- https://dev-www.libreoffice.org/src/libpagemaker-0.0.4.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 306496 (299K) [application/octet-stream] Wird in ‘./libpagemaker-0.0.4.tar.xz’ gespeichert. - 0K .... 100% 1,46M=0,2s + 0K .... 100% 1,45M=0,2s -2023-03-03 22:38:50 (1,46 MB/s) - ‘./libpagemaker-0.0.4.tar.xz’ gespeichert [306496/306496] +2023-04-19 20:56:31 (1,45 MB/s) - ‘./libpagemaker-0.0.4.tar.xz’ gespeichert [306496/306496] ---2023-03-03 22:38:50-- https://dev-www.libreoffice.org/src/pdfium-5058.tar.bz2 +--2023-04-19 20:56:31-- https://dev-www.libreoffice.org/src/pdfium-5058.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: 9771391 (9,3M) [application/octet-stream] Wird in ‘./pdfium-5058.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 32% 1,58M 4s - 3072K ........ ........ ........ ........ ........ ........ 64% 1,94M 2s - 6144K ........ ........ ........ ........ ........ ........ 96% 1,50M 0s - 9216K ..... 100% 1,86M=5,6s + 0K ........ ........ ........ ........ ........ ........ 32% 1,03M 6s + 3072K ........ ........ ........ ........ ........ ........ 64% 1,17M 3s + 6144K ........ ........ ........ ........ ........ ........ 96% 1,52M 0s + 9216K ..... 100% 2,00M=7,6s -2023-03-03 22:38:56 (1,66 MB/s) - ‘./pdfium-5058.tar.bz2’ gespeichert [9771391/9771391] +2023-04-19 20:56:39 (1,23 MB/s) - ‘./pdfium-5058.tar.bz2’ gespeichert [9771391/9771391] ---2023-03-03 22:38:56-- https://dev-www.libreoffice.org/src/poppler-22.12.0.tar.xz +--2023-04-19 20:56:39-- https://dev-www.libreoffice.org/src/poppler-22.12.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: 1845856 (1,8M) [application/octet-stream] Wird in ‘./poppler-22.12.0.tar.xz’ gespeichert. - 0K ........ ........ ........ .... 100% 1,27M=1,4s + 0K ........ ........ ........ .... 100% 1,50M=1,2s -2023-03-03 22:38:57 (1,27 MB/s) - ‘./poppler-22.12.0.tar.xz’ gespeichert [1845856/1845856] +2023-04-19 20:56:41 (1,50 MB/s) - ‘./poppler-22.12.0.tar.xz’ gespeichert [1845856/1845856] ---2023-03-03 22:38:58-- https://dev-www.libreoffice.org/src/poppler-data-0.4.11.tar.gz +--2023-04-19 20:56:41-- 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: 4497282 (4,3M) [application/octet-stream] Wird in ‘./poppler-data-0.4.11.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 69% 1,13M 1s - 3072K ........ ........ .... 100% 1,68M=3,4s + 0K ........ ........ ........ ........ ........ ........ 69% 2,40M 1s + 3072K ........ ........ .... 100% 2,13M=1,9s -2023-03-03 22:39:01 (1,26 MB/s) - ‘./poppler-data-0.4.11.tar.gz’ gespeichert [4497282/4497282] +2023-04-19 20:56:43 (2,31 MB/s) - ‘./poppler-data-0.4.11.tar.gz’ gespeichert [4497282/4497282] ---2023-03-03 22:39:01-- https://dev-www.libreoffice.org/src/postgresql-13.10.tar.bz2 +--2023-04-19 20:56:43-- https://dev-www.libreoffice.org/src/postgresql-13.10.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: 21457594 (20M) [application/octet-stream] Wird in ‘./postgresql-13.10.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 14% 2,23M 8s - 3072K ........ ........ ........ ........ ........ ........ 29% 1,91M 7s - 6144K ........ ........ ........ ........ ........ ........ 43% 1,64M 6s - 9216K ........ ........ ........ ........ ........ ........ 58% 1,86M 4s - 12288K ........ ........ ........ ........ ........ ........ 73% 1,97M 3s - 15360K ........ ........ ........ ........ ........ ........ 87% 1,36M 1s - 18432K ........ ........ ........ ........ ....... 100% 1,32M=12s + 0K ........ ........ ........ ........ ........ ........ 14% 2,14M 8s + 3072K ........ ........ ........ ........ ........ ........ 29% 1,81M 7s + 6144K ........ ........ ........ ........ ........ ........ 43% 1,60M 6s + 9216K ........ ........ ........ ........ ........ ........ 58% 1,48M 5s + 12288K ........ ........ ........ ........ ........ ........ 73% 1,90M 3s + 15360K ........ ........ ........ ........ ........ ........ 87% 1,90M 1s + 18432K ........ ........ ........ ........ ....... 100% 1,29M=12s -2023-03-03 22:39:14 (1,71 MB/s) - ‘./postgresql-13.10.tar.bz2’ gespeichert [21457594/21457594] +2023-04-19 20:56:55 (1,70 MB/s) - ‘./postgresql-13.10.tar.bz2’ gespeichert [21457594/21457594] ---2023-03-03 22:39:14-- https://dev-www.libreoffice.org/src/Python-3.8.16.tar.xz +--2023-04-19 20:56:56-- https://dev-www.libreoffice.org/src/Python-3.8.16.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: 19046724 (18M) [application/octet-stream] Wird in ‘./Python-3.8.16.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 16% 1,95M 8s - 3072K ........ ........ ........ ........ ........ ........ 33% 1,92M 6s - 6144K ........ ........ ........ ........ ........ ........ 49% 742K 7s - 9216K ........ ........ ........ ........ ........ ........ 66% 1010K 5s - 12288K ........ ........ ........ ........ ........ ........ 82% 1,23M 3s - 15360K ........ ........ ........ ........ ........ ........ 99% 1,12M 0s - 18432K .. 100% 1,43M=16s + 0K ........ ........ ........ ........ ........ ........ 16% 1,00M 15s + 3072K ........ ........ ........ ........ ........ ........ 33% 1,54M 10s + 6144K ........ ........ ........ ........ ........ ........ 49% 1,69M 7s + 9216K ........ ........ ........ ........ ........ ........ 66% 2,09M 4s + 12288K ........ ........ ........ ........ ........ ........ 82% 1,20M 2s + 15360K ........ ........ ........ ........ ........ ........ 99% 963K 0s + 18432K .. 100% 1,20M=14s -2023-03-03 22:39:30 (1,17 MB/s) - ‘./Python-3.8.16.tar.xz’ gespeichert [19046724/19046724] +2023-04-19 20:57:10 (1,30 MB/s) - ‘./Python-3.8.16.tar.xz’ gespeichert [19046724/19046724] ---2023-03-03 22:39:30-- https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz +--2023-04-19 20:57:10-- https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 341760 (334K) [application/octet-stream] Wird in ‘./libqxp-0.0.2.tar.xz’ gespeichert. - 0K ..... 100% 1,13M=0,3s + 0K ..... 100% 810K=0,4s -2023-03-03 22:39:30 (1,13 MB/s) - ‘./libqxp-0.0.2.tar.xz’ gespeichert [341760/341760] +2023-04-19 20:57:11 (810 KB/s) - ‘./libqxp-0.0.2.tar.xz’ gespeichert [341760/341760] ---2023-03-03 22:39:30-- https://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz +--2023-04-19 20:57:11-- 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% 1,67M=1,1s + 0K ........ ........ ........ .... 100% 683K=2,7s -2023-03-03 22:39:32 (1,67 MB/s) - ‘./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz’ gespeichert [1886657/1886657] +2023-04-19 20:57:14 (683 KB/s) - ‘./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz’ gespeichert [1886657/1886657] ---2023-03-03 22:39:32-- https://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz +--2023-04-19 20:57:14-- https://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1595647 (1,5M) [application/octet-stream] Wird in ‘./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz’ gespeichert. - 0K ........ ........ ........ 100% 1,95M=0,8s + 0K ........ ........ ........ 100% 1,18M=1,3s -2023-03-03 22:39:33 (1,95 MB/s) - ‘./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz’ gespeichert [1595647/1595647] +2023-04-19 20:57:15 (1,18 MB/s) - ‘./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz’ gespeichert [1595647/1595647] ---2023-03-03 22:39:33-- https://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz +--2023-04-19 20:57:15-- 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% 1,86M=0,8s + 0K ........ ........ ........ 100% 1,01M=1,5s -2023-03-03 22:39:34 (1,86 MB/s) - ‘./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz’ gespeichert [1621566/1621566] +2023-04-19 20:57:17 (1,01 MB/s) - ‘./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz’ gespeichert [1621566/1621566] ---2023-03-03 22:39:34-- https://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 +--2023-04-19 20:57:17-- 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% 1,67M=0,3s + 0K ........ 100% 1,06M=0,5s -2023-03-03 22:39:35 (1,67 MB/s) - ‘./librevenge-0.0.4.tar.bz2’ gespeichert [529833/529833] +2023-04-19 20:57:18 (1,06 MB/s) - ‘./librevenge-0.0.4.tar.bz2’ gespeichert [529833/529833] ---2023-03-03 22:39:35-- https://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip +--2023-04-19 20:57:18-- 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% 2,03M=0,7s + 0K ........ ........ ....... 100% 1,37M=1,1s -2023-03-03 22:39:36 (2,03 MB/s) - ‘./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip’ gespeichert [1521926/1521926] +2023-04-19 20:57:19 (1,37 MB/s) - ‘./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip’ gespeichert [1521926/1521926] ---2023-03-03 22:39:36-- https://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip +--2023-04-19 20:57:19-- 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% 355M=0s + 0K 100% 331M=0s -2023-03-03 22:39:36 (355 MB/s) - ‘./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip’ gespeichert [9796/9796] +2023-04-19 20:57:20 (331 MB/s) - ‘./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip’ gespeichert [9796/9796] ---2023-03-03 22:39:36-- https://dev-www.libreoffice.org/src/skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz +--2023-04-19 20:57:20-- https://dev-www.libreoffice.org/src/skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.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: 11079112 (11M) [application/octet-stream] Wird in ‘./skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 28% 2,41M 3s - 3072K ........ ........ ........ ........ ........ ........ 56% 3,01M 2s - 6144K ........ ........ ........ ........ ........ ........ 85% 2,88M 1s - 9216K ........ ........ ........ . 100% 3,16M=3,8s + 0K ........ ........ ........ ........ ........ ........ 28% 2,14M 4s + 3072K ........ ........ ........ ........ ........ ........ 56% 2,65M 2s + 6144K ........ ........ ........ ........ ........ ........ 85% 2,46M 1s + 9216K ........ ........ ........ . 100% 2,27M=4,4s -2023-03-03 22:39:40 (2,80 MB/s) - ‘./skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz’ gespeichert [11079112/11079112] +2023-04-19 20:57:25 (2,38 MB/s) - ‘./skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz’ gespeichert [11079112/11079112] ---2023-03-03 22:39:40-- https://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz +--2023-04-19 20:57:25-- 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% 2,04M=0,3s + 0K ........ .. 100% 1,91M=0,4s -2023-03-03 22:39:41 (2,04 MB/s) - ‘./libstaroffice-0.0.7.tar.xz’ gespeichert [707920/707920] +2023-04-19 20:57:25 (1,91 MB/s) - ‘./libstaroffice-0.0.7.tar.xz’ gespeichert [707920/707920] ---2023-03-03 22:39:41-- https://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz +--2023-04-19 20:57:25-- https://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 96939 (95K) [application/octet-stream] Wird in ‘./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz’ gespeichert. - 0K . 100% 1,52M=0,06s + 0K . 100% 1,51M=0,06s -2023-03-03 22:39:41 (1,52 MB/s) - ‘./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz’ gespeichert [96939/96939] +2023-04-19 20:57:26 (1,51 MB/s) - ‘./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz’ gespeichert [96939/96939] ---2023-03-03 22:39:41-- https://dev-www.libreoffice.org/src/libvisio-0.1.7.tar.xz +--2023-04-19 20:57:26-- 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% 2,15M=0,4s + 0K ........ ..... 100% 2,03M=0,4s -2023-03-03 22:39:42 (2,15 MB/s) - ‘./libvisio-0.1.7.tar.xz’ gespeichert [854296/854296] +2023-04-19 20:57:26 (2,03 MB/s) - ‘./libvisio-0.1.7.tar.xz’ gespeichert [854296/854296] ---2023-03-03 22:39:42-- https://dev-www.libreoffice.org/src/libwpd-0.10.3.tar.xz +--2023-04-19 20:57:26-- https://dev-www.libreoffice.org/src/libwpd-0.10.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 534712 (522K) [application/octet-stream] Wird in ‘./libwpd-0.10.3.tar.xz’ gespeichert. - 0K ........ 100% 1,95M=0,3s + 0K ........ 100% 1,45M=0,4s -2023-03-03 22:39:42 (1,95 MB/s) - ‘./libwpd-0.10.3.tar.xz’ gespeichert [534712/534712] +2023-04-19 20:57:27 (1,45 MB/s) - ‘./libwpd-0.10.3.tar.xz’ gespeichert [534712/534712] ---2023-03-03 22:39:43-- https://dev-www.libreoffice.org/src/libwpg-0.3.3.tar.xz +--2023-04-19 20:57:27-- https://dev-www.libreoffice.org/src/libwpg-0.3.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 328664 (321K) [application/octet-stream] Wird in ‘./libwpg-0.3.3.tar.xz’ gespeichert. - 0K ..... 100% 1,69M=0,2s + 0K ..... 100% 1,37M=0,2s -2023-03-03 22:39:43 (1,69 MB/s) - ‘./libwpg-0.3.3.tar.xz’ gespeichert [328664/328664] +2023-04-19 20:57:28 (1,37 MB/s) - ‘./libwpg-0.3.3.tar.xz’ gespeichert [328664/328664] ---2023-03-03 22:39:43-- https://dev-www.libreoffice.org/src/libwps-0.4.12.tar.xz +--2023-04-19 20:57:28-- https://dev-www.libreoffice.org/src/libwps-0.4.12.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 713008 (696K) [application/octet-stream] Wird in ‘./libwps-0.4.12.tar.xz’ gespeichert. - 0K ........ .. 100% 1,63M=0,4s + 0K ........ .. 100% 1,59M=0,4s -2023-03-03 22:39:44 (1,63 MB/s) - ‘./libwps-0.4.12.tar.xz’ gespeichert [713008/713008] +2023-04-19 20:57:28 (1,59 MB/s) - ‘./libwps-0.4.12.tar.xz’ gespeichert [713008/713008] ---2023-03-03 22:39:44-- https://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip +--2023-04-19 20:57:28-- 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% 13,4M=0,002s + 0K 100% 13,5M=0,002s -2023-03-03 22:39:44 (13,4 MB/s) - ‘./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip’ gespeichert [23150/23150] +2023-04-19 20:57:29 (13,5 MB/s) - ‘./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip’ gespeichert [23150/23150] ---2023-03-03 22:39:44-- https://dev-www.libreoffice.org/src/zlib-1.2.13.tar.xz +--2023-04-19 20:57:29-- 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: 1296496 (1,2M) [application/octet-stream] Wird in ‘./zlib-1.2.13.tar.xz’ gespeichert. - 0K ........ ........ ... 100% 1,96M=0,6s + 0K ........ ........ ... 100% 1,83M=0,7s -2023-03-03 22:39:45 (1,96 MB/s) - ‘./zlib-1.2.13.tar.xz’ gespeichert [1296496/1296496] +2023-04-19 20:57:30 (1,83 MB/s) - ‘./zlib-1.2.13.tar.xz’ gespeichert [1296496/1296496] ---2023-03-03 22:39:45-- https://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz +--2023-04-19 20:57:30-- https://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 320952 (313K) [application/octet-stream] Wird in ‘./libzmf-0.0.2.tar.xz’ gespeichert. - 0K .... 100% 1,51M=0,2s + 0K .... 100% 1,36M=0,2s -2023-03-03 22:39:46 (1,51 MB/s) - ‘./libzmf-0.0.2.tar.xz’ gespeichert [320952/320952] +2023-04-19 20:57:30 (1,36 MB/s) - ‘./libzmf-0.0.2.tar.xz’ gespeichert [320952/320952] ---2023-03-03 22:39:46-- https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf +--2023-04-19 20:57:30-- https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 207992 (203K) [application/octet-stream] Wird in ‘./f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf’ gespeichert. - 0K ... 100% 1,36M=0,1s + 0K ... 100% 1,34M=0,1s -2023-03-03 22:39:46 (1,36 MB/s) - ‘./f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf’ gespeichert [207992/207992] +2023-04-19 20:57:31 (1,34 MB/s) - ‘./f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf’ gespeichert [207992/207992] ---2023-03-03 22:39:46-- https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar +--2023-04-19 20:57:31-- 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% 1,87M 12s - 3072K ........ ........ ........ ........ ........ ........ 22% 1,85M 11s - 6144K ........ ........ ........ ........ ........ ........ 34% 1,74M 9s - 9216K ........ ........ ........ ........ ........ ........ 45% 1,26M 9s - 12288K ........ ........ ........ ........ ........ ........ 57% 1,88M 7s - 15360K ........ ........ ........ ........ ........ ........ 68% 1,54M 5s - 18432K ........ ........ ........ ........ ........ ........ 80% 940K 3s - 21504K ........ ........ ........ ........ ........ ........ 91% 1,09M 1s - 24576K ........ ........ ........ ........ .. 100% 1,16M=19s + 0K ........ ........ ........ ........ ........ ........ 11% 2,34M 10s + 3072K ........ ........ ........ ........ ........ ........ 22% 3,01M 8s + 6144K ........ ........ ........ ........ ........ ........ 34% 2,99M 6s + 9216K ........ ........ ........ ........ ........ ........ 45% 2,54M 5s + 12288K ........ ........ ........ ........ ........ ........ 57% 2,47M 4s + 15360K ........ ........ ........ ........ ........ ........ 68% 2,85M 3s + 18432K ........ ........ ........ ........ ........ ........ 80% 2,75M 2s + 21504K ........ ........ ........ ........ ........ ........ 91% 2,73M 1s + 24576K ........ ........ ........ ........ .. 100% 1,91M=10s -2023-03-03 22:40:05 (1,40 MB/s) - ‘./odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar’ gespeichert [27397202/27397202] +2023-04-19 20:57:41 (2,60 MB/s) - ‘./odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar’ gespeichert [27397202/27397202] ---2023-03-03 22:40:05-- https://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar +--2023-04-19 20:57:41-- https://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2448421 (2,3M) [application/java-archive] Wird in ‘./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar’ gespeichert. - 0K ........ ........ ........ ........ ..... 100% 1,01M=2,3s + 0K ........ ........ ........ ........ ..... 100% 1,74M=1,3s -2023-03-03 22:40:08 (1,01 MB/s) - ‘./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar’ gespeichert [2448421/2448421] +2023-04-19 20:57:43 (1,74 MB/s) - ‘./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar’ gespeichert [2448421/2448421] Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/tarballs/harfbuzz-4.3.0.tar.xz and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/tarballs/harfbuzz-4.3.0.tar.xz differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/tarballs/harfbuzz-7.1.0.tar.xz and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/tarballs/harfbuzz-7.1.0.tar.xz differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/tarballs/libxml2-2.10.3.tar.xz and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/tarballs/libxml2-2.10.3.tar.xz differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/tarballs/libxml2-2.10.4.tar.xz and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/tarballs/libxml2-2.10.4.tar.xz differ diff -Nru libreoffice-7.4.6/translations/source/af/chart2/messages.po libreoffice-7.4.7/translations/source/af/chart2/messages.po --- libreoffice-7.4.6/translations/source/af/chart2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/af/chart2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2021-09-14 10:10+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+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.15.2\n" "X-POOTLE-MTIME: 1560927888.000000\n" #. NCRDD @@ -2201,7 +2201,7 @@ #: chart2/uiconfig/ui/paradialog.ui:279 msgctxt "paradialog|labelTP_TABULATOR" msgid "Tabs" -msgstr "Inkeping" +msgstr "Tab-oortjies" #. jEDem #: chart2/uiconfig/ui/sidebaraxis.ui:24 diff -Nru libreoffice-7.4.6/translations/source/af/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po libreoffice-7.4.7/translations/source/af/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po --- libreoffice-7.4.6/translations/source/af/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/af/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-07-28 12:34+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+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.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547811033.000000\n" #. vCwUq @@ -44,4 +44,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "Groupwise" -msgstr "\"Groupwise\"" +msgstr "Groepsgewys" diff -Nru libreoffice-7.4.6/translations/source/af/cui/messages.po libreoffice-7.4.7/translations/source/af/cui/messages.po --- libreoffice-7.4.6/translations/source/af/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/af/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" "Language: af\n" @@ -14514,7 +14514,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:236 msgctxt "optfltrembedpage|highlighting" msgid "Highlighting" -msgstr "Teks merking" +msgstr "Teks beklemtoon" #. qBuyX #: cui/uiconfig/ui/optfltrembedpage.ui:245 @@ -19310,7 +19310,7 @@ #: cui/uiconfig/ui/searchformatdialog.ui:521 msgctxt "searchformatdialog|background" msgid "Highlighting" -msgstr "Teks Merking" +msgstr "Teks beklemtoon" #. nVjsf #: cui/uiconfig/ui/securityoptionsdialog.ui:8 diff -Nru libreoffice-7.4.6/translations/source/af/extensions/messages.po libreoffice-7.4.7/translations/source/af/extensions/messages.po --- libreoffice-7.4.6/translations/source/af/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/af/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-02-04 11:39+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+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.15.2\n" "X-POOTLE-MTIME: 1548063388.000000\n" #. cBx8W @@ -1897,7 +1897,7 @@ #: extensions/inc/strings.hrc:207 msgctxt "RID_STR_XSD_RELEVANT" msgid "Relevant" -msgstr "Relevant" +msgstr "Relevante" #. HAoCU #: extensions/inc/strings.hrc:208 @@ -2005,7 +2005,7 @@ #: extensions/inc/strings.hrc:225 msgctxt "RID_STR_BINDING_NAME" msgid "Binding" -msgstr "Binding" +msgstr "Virbinding" #. iFT5m #: extensions/inc/strings.hrc:226 @@ -3508,7 +3508,7 @@ #: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:42 msgctxt "selecttypepage|evolution" msgid "Evolution" -msgstr "Evolution" +msgstr "Evolusie" #. Xsfrc #: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:51 @@ -3520,7 +3520,7 @@ #: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:62 msgctxt "selecttypepage|groupwise" msgid "Groupwise" -msgstr "Groupwise" +msgstr "Groepsgewys" #. eB6AA #: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:71 diff -Nru libreoffice-7.4.6/translations/source/af/forms/messages.po libreoffice-7.4.7/translations/source/af/forms/messages.po --- libreoffice-7.4.6/translations/source/af/forms/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/af/forms/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-01-26 17:37+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+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.15.2\n" "X-POOTLE-MTIME: 1547621679.000000\n" #. naBgZ @@ -360,7 +360,7 @@ #: forms/inc/strings.hrc:83 msgctxt "RID_STR_XFORMS_BINDING_UI_NAME" msgid "Binding" -msgstr "Binding" +msgstr "Virbinding" #. AGvgC #: forms/inc/strings.hrc:84 diff -Nru libreoffice-7.4.6/translations/source/af/sc/messages.po libreoffice-7.4.7/translations/source/af/sc/messages.po --- libreoffice-7.4.6/translations/source/af/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/af/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" "Language: af\n" @@ -19405,7 +19405,7 @@ #: sc/uiconfig/scalc/ui/chardialog.ui:279 msgctxt "chardialog|background" msgid "Highlighting" -msgstr "Beklemtoning" +msgstr "Teks beklemtoon" #. CCjUa #: sc/uiconfig/scalc/ui/checkwarningdialog.ui:11 @@ -27267,7 +27267,7 @@ #: sc/uiconfig/scalc/ui/paradialog.ui:280 msgctxt "paradialog|labelTP_TABULATOR" msgid "Tabs" -msgstr "Tab-stoppe" +msgstr "Tab-oortjies" #. py7L6 #: sc/uiconfig/scalc/ui/paratemplatedialog.ui:8 diff -Nru libreoffice-7.4.6/translations/source/af/sd/messages.po libreoffice-7.4.7/translations/source/af/sd/messages.po --- libreoffice-7.4.6/translations/source/af/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/af/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" "Language: af\n" @@ -3442,7 +3442,7 @@ #: sd/uiconfig/sdraw/ui/drawchardialog.ui:279 msgctxt "drawchardialog|RID_SVXPAGE_BKG" msgid "Highlighting" -msgstr "Beklemtoning" +msgstr "Teks beklemtoon" #. 7FuBt #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:8 @@ -3496,7 +3496,7 @@ #: sd/uiconfig/sdraw/ui/drawparadialog.ui:231 msgctxt "drawparadialog|labelTP_TABULATOR" msgid "Tabs" -msgstr "Oortjies" +msgstr "Tab-oortjies" #. QSCGY #: sd/uiconfig/sdraw/ui/drawparadialog.ui:279 @@ -3730,13 +3730,13 @@ #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:809 msgctxt "drawprtldialog|RID_SVXPAGE_TABULATOR" msgid "Tabs" -msgstr "Oortjies" +msgstr "Tab-oortjies" #. oeBGf #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:857 msgctxt "drawprtldialog|RID_SVXPAGE_BKG" msgid "Highlighting" -msgstr "Beklemtoning" +msgstr "Teks beklemtoon" #. w9EdD #: sd/uiconfig/sdraw/ui/insertlayer.ui:8 @@ -9902,7 +9902,7 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:631 msgctxt "templatedialog|dimensioning" msgid "Dimensioning" -msgstr "Dimensielyn" +msgstr "Dimensie-lyn" #. fcsTP #: sd/uiconfig/simpress/ui/templatedialog.ui:679 @@ -9920,16 +9920,16 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:775 msgctxt "templatedialog|asiantypo" msgid "Asian Typography" -msgstr "Asiatiese tipografie" +msgstr "Asiatiese Tipografie" #. RKvWz #: sd/uiconfig/simpress/ui/templatedialog.ui:823 msgctxt "templatedialog|tabs" msgid "Tabs" -msgstr "Oortjies" +msgstr "Tab-oortjies" #. WtrUB #: sd/uiconfig/simpress/ui/templatedialog.ui:871 msgctxt "templatedialog|background" msgid "Highlighting" -msgstr "Teksmerking" +msgstr "Teks beklemtoon" diff -Nru libreoffice-7.4.6/translations/source/af/svtools/messages.po libreoffice-7.4.7/translations/source/af/svtools/messages.po --- libreoffice-7.4.6/translations/source/af/svtools/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/af/svtools/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-06 23:34+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" "Language: af\n" @@ -274,7 +274,7 @@ #: include/svtools/strings.hrc:69 msgctxt "STR_FORMAT_ID_HTML" msgid "HyperText Markup Language (HTML)" -msgstr "HyperText Markup Language (HTML)" +msgstr "HiperTeks Merktaal (HTML)" #. DoLZM #: include/svtools/strings.hrc:70 @@ -310,7 +310,7 @@ #: include/svtools/strings.hrc:75 msgctxt "STR_FORMAT_ID_DIF" msgid "Data Interchange Format (DIF)" -msgstr "Data Interchange Format (DIF)" +msgstr "Data-Uitruilformaat(DIF)" #. XTiAV #: include/svtools/strings.hrc:76 @@ -3342,7 +3342,7 @@ #: svtools/inc/langtab.hrc:160 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sidama" -msgstr "Sidama" +msgstr "Sidaamu Afoo" #. 66wdH #: svtools/inc/langtab.hrc:161 @@ -3792,7 +3792,7 @@ #: svtools/inc/langtab.hrc:235 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Swazi" -msgstr "Swazi" +msgstr "Siswati" #. GFCYC #: svtools/inc/langtab.hrc:236 diff -Nru libreoffice-7.4.6/translations/source/af/svx/messages.po libreoffice-7.4.7/translations/source/af/svx/messages.po --- libreoffice-7.4.6/translations/source/af/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/af/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" "Language: af\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.15.2\n" "X-POOTLE-MTIME: 1560976220.000000\n" #. 3GkZj @@ -596,7 +596,7 @@ #: include/svx/strings.hrc:121 msgctxt "STR_ObjNamePluralGRAFEMF" msgid "PDFs" -msgstr "PDFs" +msgstr "PDF's" #. b3os5 #: include/svx/strings.hrc:122 @@ -3516,7 +3516,7 @@ #: include/svx/strings.hrc:616 msgctxt "RID_SVXSTR_COLOR_VIOLET" msgid "Violet" -msgstr "Violet" +msgstr "violet" #. GgboW #: include/svx/strings.hrc:617 @@ -3619,7 +3619,7 @@ #: include/svx/strings.hrc:634 msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A" msgid "Amber A" -msgstr "Amber A" +msgstr "Amber-A" #. nFENC #: include/svx/strings.hrc:635 @@ -3958,7 +3958,7 @@ #: include/svx/strings.hrc:693 msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT" msgid "Elegant" -msgstr "Elegant" +msgstr "Elegansie" #. Q9rDT #: include/svx/strings.hrc:694 @@ -7294,7 +7294,7 @@ #: include/svx/strings.hrc:1306 msgctxt "RID_STR_BINDING" msgid "Binding" -msgstr "Binding" +msgstr "Virbinding" #. iFARB #: include/svx/strings.hrc:1307 @@ -20125,7 +20125,7 @@ #: svx/uiconfig/ui/textcontrolparadialog.ui:280 msgctxt "textcontrolparadialog|labelTP_TABULATOR" msgid "Tabs" -msgstr "Tabel stoppe" +msgstr "Tab-oortjies" #. hHwzA #: svx/uiconfig/ui/textunderlinecontrol.ui:75 diff -Nru libreoffice-7.4.6/translations/source/af/sw/messages.po libreoffice-7.4.7/translations/source/af/sw/messages.po --- libreoffice-7.4.6/translations/source/af/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/af/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" "Language: af\n" @@ -11944,7 +11944,7 @@ #: sw/uiconfig/swriter/ui/characterproperties.ui:399 msgctxt "characterproperties|background" msgid "Highlighting" -msgstr "Teksmerking" +msgstr "Teks beklemtoon" #. fJhsz #: sw/uiconfig/swriter/ui/characterproperties.ui:447 @@ -12694,7 +12694,7 @@ #: sw/uiconfig/swriter/ui/converttexttable.ui:107 msgctxt "converttexttable|tabs" msgid "Tabs" -msgstr "Kepe" +msgstr "Tab-oortjies" #. 9aKdG #: sw/uiconfig/swriter/ui/converttexttable.ui:116 @@ -23077,7 +23077,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:110 msgctxt "optformataidspage|tabs" msgid "Tabs" -msgstr "Oortjies" +msgstr "Tab-oortjies" #. GM6S5 #: sw/uiconfig/swriter/ui/optformataidspage.ui:118 @@ -23183,7 +23183,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:433 msgctxt "optformataidspage|filltab" msgid "Tabs" -msgstr "Oortjies" +msgstr "Tab-oortjies" #. CgFKr #: sw/uiconfig/swriter/ui/optformataidspage.ui:434 @@ -24765,7 +24765,7 @@ #: sw/uiconfig/swriter/ui/paradialog.ui:402 msgctxt "paradialog|labelTP_TABULATOR" msgid "Tabs" -msgstr "Kepe" +msgstr "Tab-oortjies" #. GHrCB #: sw/uiconfig/swriter/ui/paradialog.ui:450 @@ -26965,7 +26965,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:686 msgctxt "sortdialog|tabs" msgid "Tabs" -msgstr "Kepe" +msgstr "Tab-oortjies" #. dE3Av #: sw/uiconfig/swriter/ui/sortdialog.ui:695 @@ -27913,7 +27913,7 @@ #: sw/uiconfig/swriter/ui/templatedialog2.ui:647 msgctxt "templatedialog2|tabs" msgid "Tabs" -msgstr "Kepe" +msgstr "Tab-oortjies" #. D26TP #: sw/uiconfig/swriter/ui/templatedialog2.ui:695 diff -Nru libreoffice-7.4.6/translations/source/an/basctl/messages.po libreoffice-7.4.7/translations/source/an/basctl/messages.po --- libreoffice-7.4.6/translations/source/an/basctl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/basctl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2022-01-17 16:38+0000\n" +"PO-Revision-Date: 2023-03-22 09:33+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.15.2\n" "X-POOTLE-MTIME: 1516028887.000000\n" #. fniWp @@ -1294,7 +1294,7 @@ #: basctl/uiconfig/basicide/ui/newlibdialog.ui:92 msgctxt "newlibdialog|area" msgid "_Name:" -msgstr "" +msgstr "_Nombre:" #. FWXXE #: basctl/uiconfig/basicide/ui/newlibdialog.ui:133 diff -Nru libreoffice-7.4.6/translations/source/an/chart2/messages.po libreoffice-7.4.7/translations/source/an/chart2/messages.po --- libreoffice-7.4.6/translations/source/an/chart2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/chart2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -1698,7 +1698,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:217 msgctxt "dlg_InsertErrorBars|liststoreFUNCTION" msgid "Variance" -msgstr "" +msgstr "Variancia" #. UASm3 #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:218 @@ -2515,7 +2515,7 @@ #: chart2/uiconfig/ui/sidebarerrorbar.ui:79 msgctxt "sidebarerrorbar|comboboxtext_type" msgid "Variance" -msgstr "" +msgstr "Variancia" #. QDwJu #: chart2/uiconfig/ui/sidebarerrorbar.ui:80 @@ -3366,7 +3366,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:343 msgctxt "tp_AxisPositions|TXT_FL_LABELS" msgid "Labels" -msgstr "~Etiquetas" +msgstr "Etiquetas" #. YBk4g #: chart2/uiconfig/ui/tp_AxisPositions.ui:382 @@ -4186,7 +4186,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:154 msgctxt "tp_ErrorBars|liststoreFUNCTION" msgid "Variance" -msgstr "" +msgstr "Variancia" #. Siyxd #: chart2/uiconfig/ui/tp_ErrorBars.ui:155 diff -Nru libreoffice-7.4.6/translations/source/an/cui/messages.po libreoffice-7.4.7/translations/source/an/cui/messages.po --- libreoffice-7.4.6/translations/source/an/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -64,7 +64,7 @@ #: cui/inc/numcategories.hrc:25 msgctxt "numberingformatpage|liststore1" msgid "Scientific" -msgstr "" +msgstr "Scientifico" #. vMka9 #: cui/inc/numcategories.hrc:26 @@ -483,10 +483,9 @@ #. EeB6i #: cui/inc/strings.hrc:85 -#, fuzzy msgctxt "RID_SVXSTR_MACROS" msgid "Macros" -msgstr "~Macros" +msgstr "Macros" #. mkEjQ #: cui/inc/strings.hrc:86 @@ -1292,7 +1291,7 @@ #: cui/inc/strings.hrc:231 msgctxt "RID_SVXSTR_NO" msgid "No" -msgstr "" +msgstr "No" #. irLeD #: cui/inc/strings.hrc:233 @@ -2042,7 +2041,7 @@ #: cui/inc/strings.hrc:382 msgctxt "RID_SVXSTR_QRCODEDATALONG" msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level." -msgstr "L'URL u texto ye masiau extenso pa o libel actual de corrección d'errors. Alcuerce o texto u reduzca o libel de corrección." +msgstr "L'URL u texto ye masiau extenso pa o livel actual de corrección d'errors. Alcuerce o texto u reduzca o livel de corrección." #. AD8QJ #: cui/inc/strings.hrc:383 @@ -3659,7 +3658,7 @@ #: cui/inc/treeopt.hrc:36 msgctxt "SID_GENERAL_OPTIONS_RES" msgid "General" -msgstr "" +msgstr "Cheneral" #. HCH7S #: cui/inc/treeopt.hrc:37 @@ -3804,7 +3803,7 @@ #: cui/inc/treeopt.hrc:72 msgctxt "SID_SW_EDITOPTIONS_RES" msgid "General" -msgstr "" +msgstr "Cheneral" #. t9DgE #: cui/inc/treeopt.hrc:73 @@ -3952,7 +3951,7 @@ #: cui/inc/treeopt.hrc:108 msgctxt "SID_SC_EDITOPTIONS_RES" msgid "General" -msgstr "" +msgstr "Cheneral" #. xE8RH #: cui/inc/treeopt.hrc:109 @@ -4020,7 +4019,7 @@ #: cui/inc/treeopt.hrc:123 msgctxt "SID_SD_EDITOPTIONS_RES" msgid "General" -msgstr "" +msgstr "Cheneral" #. unCEW #: cui/inc/treeopt.hrc:124 @@ -4052,7 +4051,7 @@ #: cui/inc/treeopt.hrc:132 msgctxt "SID_SD_GRAPHIC_OPTIONS_RES" msgid "General" -msgstr "" +msgstr "Cheneral" #. oiiBb #: cui/inc/treeopt.hrc:133 @@ -4096,7 +4095,7 @@ #: cui/inc/treeopt.hrc:147 msgctxt "SID_FILTER_DLG_RES" msgid "General" -msgstr "" +msgstr "Cheneral" #. 9aX4K #: cui/inc/treeopt.hrc:148 @@ -5216,10 +5215,9 @@ #. AiEuM #: cui/uiconfig/ui/areatabpage.ui:70 -#, fuzzy msgctxt "areatabpage|btncolor" msgid "Color" -msgstr "~Color" +msgstr "Color" #. xhtbg #: cui/uiconfig/ui/areatabpage.ui:76 @@ -5625,13 +5623,13 @@ #: cui/uiconfig/ui/borderpage.ui:212 msgctxt "borderpage|label16" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. Dweon #: cui/uiconfig/ui/borderpage.ui:229 msgctxt "borderpage|label17" msgid "_Color:" -msgstr "" +msgstr "_Color:" #. XcftM #: cui/uiconfig/ui/borderpage.ui:283 @@ -5838,7 +5836,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:220 msgctxt "bulletandposition|label1" msgid "Level" -msgstr "Libel" +msgstr "Livel" #. rYDvK #: cui/uiconfig/ui/bulletandposition.ui:264 @@ -5952,13 +5950,13 @@ #: cui/uiconfig/ui/bulletandposition.ui:570 msgctxt "bulletandposition|widthft" msgid "Width:" -msgstr "" +msgstr "Amplaria:" #. AjgW8 #: cui/uiconfig/ui/bulletandposition.ui:584 msgctxt "bulletandposition|heightft" msgid "Height:" -msgstr "" +msgstr "Altaria:" #. HZHRK #: cui/uiconfig/ui/bulletandposition.ui:604 @@ -6006,7 +6004,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:734 msgctxt "bulletandposition|beforeafter" msgid "Size" -msgstr "" +msgstr "Grandaria" #. NoZdN #: cui/uiconfig/ui/bulletandposition.ui:766 @@ -6018,7 +6016,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:780 msgctxt "bulletandposition|numberingwidth" msgid "Width:" -msgstr "" +msgstr "Amplaria:" #. SDhv3 #: cui/uiconfig/ui/bulletandposition.ui:795 @@ -6217,7 +6215,7 @@ #: cui/uiconfig/ui/calloutpage.ui:144 msgctxt "calloutpage|lengthft" msgid "_Length:" -msgstr "" +msgstr "_Longaria:" #. Yb2kZ #: cui/uiconfig/ui/calloutpage.ui:162 @@ -6905,7 +6903,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:454 msgctxt "colorconfigwin|general" msgid "General" -msgstr "" +msgstr "Cheneral" #. 3bVoq #: cui/uiconfig/ui/colorconfigwin.ui:488 @@ -7046,7 +7044,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1150 msgctxt "colorconfigwin|text" msgid "Text" -msgstr "" +msgstr "Texto" #. ZCYmf #: cui/uiconfig/ui/colorconfigwin.ui:1182 @@ -7652,10 +7650,9 @@ #. QNkY6 #: cui/uiconfig/ui/comment.ui:192 -#, fuzzy msgctxt "comment|label4" msgid "_Text" -msgstr "Texto" +msgstr "_Texto" #. 4ZGAd #: cui/uiconfig/ui/comment.ui:219 @@ -7667,7 +7664,7 @@ #: cui/uiconfig/ui/comment.ui:241 msgctxt "comment|label5" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. eGHyF #: cui/uiconfig/ui/comment.ui:253 @@ -7934,10 +7931,9 @@ #. BSBCG #: cui/uiconfig/ui/croppage.ui:303 -#, fuzzy msgctxt "croppage|origsize" msgid "_Original Size" -msgstr "Mida ~orichinal" +msgstr "Grandaria _orichinal" #. 8CoGW #: cui/uiconfig/ui/croppage.ui:331 @@ -7949,13 +7945,13 @@ #: cui/uiconfig/ui/croppage.ui:363 msgctxt "croppage|label6" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. bcKhi #: cui/uiconfig/ui/croppage.ui:390 msgctxt "croppage|label7" msgid "_Height:" -msgstr "" +msgstr "A_ltaria:" #. JVnvr #: cui/uiconfig/ui/croppage.ui:419 @@ -7967,19 +7963,19 @@ #: cui/uiconfig/ui/croppage.ui:450 msgctxt "croppage|label8" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. tacwF #: cui/uiconfig/ui/croppage.ui:478 msgctxt "croppage|label9" msgid "_Height:" -msgstr "" +msgstr "A_ltaria:" #. aBkuE #: cui/uiconfig/ui/croppage.ui:508 msgctxt "croppage|label11" msgid "Image Size" -msgstr "" +msgstr "Grandaria d'a imachen" #. AFMP6 #: cui/uiconfig/ui/cuiimapdlg.ui:8 @@ -8013,10 +8009,9 @@ #. V8Zgo #: cui/uiconfig/ui/cuiimapdlg.ui:197 -#, fuzzy msgctxt "cuiimapdlg|label3" msgid "_Name:" -msgstr "Nombre" +msgstr "_Nombre:" #. GcFws #: cui/uiconfig/ui/cuiimapdlg.ui:217 @@ -8568,13 +8563,13 @@ #: cui/uiconfig/ui/effectspage.ui:105 msgctxt "effectspage|liststore1" msgid "UPPERCASE" -msgstr "" +msgstr "MAYUSCLAS" #. kimAz #: cui/uiconfig/ui/effectspage.ui:106 msgctxt "effectspage|liststore1" msgid "lowercase" -msgstr "" +msgstr "minusclas" #. CqAwB #: cui/uiconfig/ui/effectspage.ui:107 @@ -9696,7 +9691,7 @@ #: cui/uiconfig/ui/gallerythemedialog.ui:137 msgctxt "gallerythemedialog|general" msgid "General" -msgstr "" +msgstr "Cheneral" #. BfeDE #: cui/uiconfig/ui/gallerythemedialog.ui:184 @@ -10011,10 +10006,9 @@ #. iqNN4 #: cui/uiconfig/ui/hangulhanjaadddialog.ui:95 -#, fuzzy msgctxt "hangulhanjaadddialog|label2" msgid "_Name:" -msgstr "Nombre" +msgstr "_Nombre:" #. haBfA #: cui/uiconfig/ui/hangulhanjaadddialog.ui:115 @@ -11414,13 +11408,13 @@ #: cui/uiconfig/ui/imagetabpage.ui:189 msgctxt "imagetabpage|label5" msgid "Width:" -msgstr "" +msgstr "Amplaria:" #. GAfGG #: cui/uiconfig/ui/imagetabpage.ui:228 msgctxt "imagetabpage|label6" msgid "Height:" -msgstr "" +msgstr "Altaria:" #. HBRGU #: cui/uiconfig/ui/imagetabpage.ui:260 @@ -11670,13 +11664,13 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:387 msgctxt "insertfloatingframe|widthlabel" msgid "Width:" -msgstr "" +msgstr "Amplaria:" #. DMLy9 #: cui/uiconfig/ui/insertfloatingframe.ui:400 msgctxt "insertfloatingframe|heightlabel" msgid "Height:" -msgstr "" +msgstr "Altaria:" #. ieZRs #: cui/uiconfig/ui/insertfloatingframe.ui:418 @@ -11810,7 +11804,7 @@ #: cui/uiconfig/ui/insertrowcolumn.ui:142 msgctxt "insertrowcolumn|label1" msgid "Insert" -msgstr "" +msgstr "Ficar" #. xdCAE #: cui/uiconfig/ui/insertrowcolumn.ui:170 @@ -12263,7 +12257,7 @@ #: cui/uiconfig/ui/linetabpage.ui:263 msgctxt "linetabpage|FT_LINE_WIDTH" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. MzAeD #: cui/uiconfig/ui/linetabpage.ui:305 @@ -12715,7 +12709,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:686 msgctxt "menuassignpage|insert" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. Q69cQ #: cui/uiconfig/ui/menuassignpage.ui:710 @@ -12830,7 +12824,7 @@ #: cui/uiconfig/ui/mosaicdialog.ui:171 msgctxt "mosaicdialog|label2" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. TsqoC #: cui/uiconfig/ui/mosaicdialog.ui:197 @@ -12848,7 +12842,7 @@ #: cui/uiconfig/ui/mosaicdialog.ui:216 msgctxt "mosaicdialog|label3" msgid "_Height:" -msgstr "" +msgstr "A_ltaria:" #. HPBw2 #: cui/uiconfig/ui/mosaicdialog.ui:234 @@ -13280,7 +13274,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:123 msgctxt "numberingoptionspage|label1" msgid "Level" -msgstr "Libel" +msgstr "Livel" #. AxmSa #: cui/uiconfig/ui/numberingoptionspage.ui:167 @@ -13330,7 +13324,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:276 msgctxt "numberingoptionspage|widthft" msgid "Width:" -msgstr "" +msgstr "Amplaria:" #. EetAa #: cui/uiconfig/ui/numberingoptionspage.ui:296 @@ -13342,7 +13336,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:309 msgctxt "numberingoptionspage|heightft" msgid "Height:" -msgstr "" +msgstr "Altaria:" #. prqMN #: cui/uiconfig/ui/numberingoptionspage.ui:330 @@ -13529,7 +13523,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:651 msgctxt "numberingoptionspage|label2" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. kcgWM #: cui/uiconfig/ui/numberingoptionspage.ui:672 @@ -13565,7 +13559,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:99 msgctxt "numberingpositionpage|1" msgid "Level" -msgstr "Libel" +msgstr "Livel" #. Azcrg #: cui/uiconfig/ui/numberingpositionpage.ui:144 @@ -13761,10 +13755,9 @@ #. CEx5r #: cui/uiconfig/ui/objectnamedialog.ui:85 -#, fuzzy msgctxt "objectnamedialog|object_name_label" msgid "_Name:" -msgstr "Nombre" +msgstr "_Nombre:" #. uFBRJ #: cui/uiconfig/ui/objectnamedialog.ui:129 @@ -15842,10 +15835,9 @@ #. XucrZ #: cui/uiconfig/ui/optnewdictionarydialog.ui:115 -#, fuzzy msgctxt "optnewdictionarydialog|name_label" msgid "_Name:" -msgstr "Nombre" +msgstr "_Nombre:" #. ypeEr #: cui/uiconfig/ui/optnewdictionarydialog.ui:129 @@ -17548,13 +17540,13 @@ #: cui/uiconfig/ui/pageformatpage.ui:65 msgctxt "pageformatpage|labelWidth" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. HY4h6 #: cui/uiconfig/ui/pageformatpage.ui:92 msgctxt "pageformatpage|labelHeight" msgid "_Height:" -msgstr "" +msgstr "A_ltaria:" #. VjuAf #: cui/uiconfig/ui/pageformatpage.ui:119 @@ -18705,7 +18697,7 @@ #: cui/uiconfig/ui/possizetabpage.ui:249 msgctxt "possizetabpage|FT_HEIGHT" msgid "H_eight:" -msgstr "" +msgstr "A_ltaria:" #. RnbvF #: cui/uiconfig/ui/possizetabpage.ui:270 @@ -18747,7 +18739,7 @@ #: cui/uiconfig/ui/possizetabpage.ui:393 msgctxt "possizetabpage|label2" msgid "Size" -msgstr "" +msgstr "Grandaria" #. 2mfBD #: cui/uiconfig/ui/possizetabpage.ui:429 @@ -19366,10 +19358,9 @@ #. fQdom #: cui/uiconfig/ui/scriptorganizer.ui:241 -#, fuzzy msgctxt "scriptorganizer|macrosft" msgid "Macros" -msgstr "~Macros" +msgstr "Macros" #. GyWDB #: cui/uiconfig/ui/scriptorganizer.ui:266 @@ -19670,7 +19661,7 @@ #: cui/uiconfig/ui/shadowtabpage.ui:191 msgctxt "shadowtabpage|FT_SHADOW_COLOR" msgid "_Color:" -msgstr "" +msgstr "_Color:" #. kGyDZ #: cui/uiconfig/ui/shadowtabpage.ui:205 @@ -19767,7 +19758,7 @@ #: cui/uiconfig/ui/signatureline.ui:165 msgctxt "signatureline|label_name" msgid "Name:" -msgstr "" +msgstr "Nombre:" #. dMWtK #. Suggested Signer Title @@ -20216,7 +20207,7 @@ #: cui/uiconfig/ui/specialcharacters.ui:24 msgctxt "specialcharacters|insert" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. AEF8q #: cui/uiconfig/ui/specialcharacters.ui:109 @@ -20617,7 +20608,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:91 msgctxt "swpossizepage|widthft" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. 5jMac #: cui/uiconfig/ui/swpossizepage.ui:123 @@ -20629,7 +20620,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:136 msgctxt "swpossizepage|heightft" msgid "H_eight:" -msgstr "" +msgstr "A_ltaria:" #. UpdQN #: cui/uiconfig/ui/swpossizepage.ui:154 @@ -20647,7 +20638,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:177 msgctxt "swpossizepage|label2" msgid "Size" -msgstr "" +msgstr "Grandaria" #. okeh5 #: cui/uiconfig/ui/swpossizepage.ui:231 @@ -21381,7 +21372,7 @@ #: cui/uiconfig/ui/textflowpage.ui:344 msgctxt "textflowpage|checkInsert" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. Zje9t #: cui/uiconfig/ui/textflowpage.ui:353 @@ -21570,19 +21561,19 @@ #: cui/uiconfig/ui/themetabpage.ui:30 msgctxt "themetabpage|lbThemeName" msgid "Name:" -msgstr "" +msgstr "Nombre:" #. GxAud #: cui/uiconfig/ui/themetabpage.ui:60 msgctxt "themetabpage|general" msgid "General" -msgstr "" +msgstr "Cheneral" #. PFDEf #: cui/uiconfig/ui/themetabpage.ui:92 msgctxt "themetabpage|lbColorSetName" msgid "Name:" -msgstr "" +msgstr "Nombre:" #. 4GfYQ #: cui/uiconfig/ui/themetabpage.ui:121 @@ -21648,7 +21639,7 @@ #: cui/uiconfig/ui/themetabpage.ui:271 msgctxt "themetabpage|lbHlink" msgid "Hyperlink:" -msgstr "" +msgstr "Hipervinclo:" #. B722M #: cui/uiconfig/ui/themetabpage.ui:286 diff -Nru libreoffice-7.4.6/translations/source/an/dbaccess/messages.po libreoffice-7.4.7/translations/source/an/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/an/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/dbaccess/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -1253,7 +1253,7 @@ #: dbaccess/inc/strings.hrc:229 msgctxt "STR_VALUE_NO" msgid "No" -msgstr "" +msgstr "No" #. TDokm #. Note: should somehow fit to the word "value" in other languages as well: value - none... @@ -2563,7 +2563,7 @@ #: dbaccess/inc/templwin.hrc:47 msgctxt "STRARY_SVT_DOCINFO" msgid "Type" -msgstr "" +msgstr "Tipo" #. hokZy #: dbaccess/inc/templwin.hrc:48 @@ -2599,7 +2599,7 @@ #: dbaccess/inc/templwin.hrc:53 msgctxt "STRARY_SVT_DOCINFO" msgid "Size" -msgstr "" +msgstr "Grandaria" #. 4KVZn #: dbaccess/uiconfig/ui/admindialog.ui:8 @@ -2744,7 +2744,7 @@ #: dbaccess/uiconfig/ui/colwidthdialog.ui:97 msgctxt "colwidthdialog|label1" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. j9AMh #: dbaccess/uiconfig/ui/colwidthdialog.ui:118 @@ -2794,7 +2794,7 @@ #: dbaccess/uiconfig/ui/connectionpage.ui:111 msgctxt "connectionpage|generalLabel" msgid "General" -msgstr "" +msgstr "Cheneral" #. BvLEW #: dbaccess/uiconfig/ui/connectionpage.ui:147 @@ -3215,7 +3215,7 @@ #: dbaccess/uiconfig/ui/fielddescpage.ui:221 msgctxt "fielddescpage|STR_LENGTH" msgid "_Length" -msgstr "" +msgstr "_Longaria" #. 5DRu2 #: dbaccess/uiconfig/ui/fielddescpage.ui:248 @@ -4297,7 +4297,7 @@ #: dbaccess/uiconfig/ui/querypropertiesdialog.ui:123 msgctxt "querypropertiesdialog|nondistinct" msgid "No" -msgstr "" +msgstr "No" #. QAGhF #: dbaccess/uiconfig/ui/querypropertiesdialog.ui:132 @@ -4441,7 +4441,7 @@ #: dbaccess/uiconfig/ui/rowheightdialog.ui:97 msgctxt "rowheightdialog|label1" msgid "_Height:" -msgstr "" +msgstr "A_ltaria:" #. cZCeF #: dbaccess/uiconfig/ui/rowheightdialog.ui:118 diff -Nru libreoffice-7.4.6/translations/source/an/desktop/messages.po libreoffice-7.4.7/translations/source/an/desktop/messages.po --- libreoffice-7.4.6/translations/source/an/desktop/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/desktop/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-01-18 17:38+0000\n" +"PO-Revision-Date: 2023-03-22 09:33+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.15.2\n" "X-POOTLE-MTIME: 1535974853.000000\n" #. v2iwK @@ -725,7 +725,7 @@ #: desktop/inc/strings.hrc:185 msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_NO" msgid "NO" -msgstr "" +msgstr "NO" #. 6LgGA #: desktop/inc/strings.hrc:186 diff -Nru libreoffice-7.4.6/translations/source/an/dictionaries/en/dialog.po libreoffice-7.4.7/translations/source/an/dictionaries/en/dialog.po --- libreoffice-7.4.6/translations/source/an/dictionaries/en/dialog.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/dictionaries/en/dialog.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-10-01 05:36+0000\n" +"PO-Revision-Date: 2023-04-24 06:33+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.15.2\n" "X-POOTLE-MTIME: 1369347432.000000\n" #. fyB4s @@ -266,7 +266,7 @@ "apostrophe\n" "property.text" msgid "Apostrophe" -msgstr "Apostrofe" +msgstr "Apostrofo" #. aPGQH #: en_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/an/dictionaries/hu_HU/dialog.po libreoffice-7.4.7/translations/source/an/dictionaries/hu_HU/dialog.po --- libreoffice-7.4.6/translations/source/an/dictionaries/hu_HU/dialog.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/dictionaries/hu_HU/dialog.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-10-01 05:36+0000\n" +"PO-Revision-Date: 2023-04-24 06:33+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.15.2\n" "X-POOTLE-MTIME: 1371934598.000000\n" #. jFVKx @@ -194,7 +194,7 @@ "apost\n" "property.text" msgid "Apostrophe" -msgstr "Apostrofe" +msgstr "Apostrofo" #. kcfut #: hu_HU_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/an/dictionaries/pt_BR/dialog.po libreoffice-7.4.7/translations/source/an/dictionaries/pt_BR/dialog.po --- libreoffice-7.4.6/translations/source/an/dictionaries/pt_BR/dialog.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/dictionaries/pt_BR/dialog.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-10-01 05:36+0000\n" +"PO-Revision-Date: 2023-04-24 06:33+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.15.2\n" "X-POOTLE-MTIME: 1389968873.000000\n" #. Bshz7 @@ -286,7 +286,7 @@ "apostrophe\n" "property.text" msgid "Apostrophes" -msgstr "" +msgstr "Apostrofos" #. MEi4w #: pt_BR_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/an/editeng/messages.po libreoffice-7.4.7/translations/source/an/editeng/messages.po --- libreoffice-7.4.6/translations/source/an/editeng/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/editeng/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:49+0200\n" -"PO-Revision-Date: 2022-01-17 16:39+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+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.15.2\n" "X-POOTLE-MTIME: 1516028889.000000\n" #. BHYB4 @@ -940,7 +940,7 @@ #: include/editeng/editrids.hrc:166 msgctxt "RID_SVXITEMS_METRIC_CM" msgid "cm" -msgstr "" +msgstr "cm" #. B7tYY #: include/editeng/editrids.hrc:167 @@ -1151,13 +1151,13 @@ #: include/editeng/editrids.hrc:203 msgctxt "RID_SVXITEMS_SIZE_WIDTH" msgid "Width: " -msgstr "" +msgstr "Amplaria: " #. A6LqG #: include/editeng/editrids.hrc:204 msgctxt "RID_SVXITEMS_SIZE_HEIGHT" msgid "Height: " -msgstr "" +msgstr "Altaria: " #. EhDVf #: include/editeng/editrids.hrc:205 @@ -1650,7 +1650,7 @@ #: include/editeng/editrids.hrc:289 msgctxt "RID_EDITUNDO_INSERT" msgid "Insert" -msgstr "" +msgstr "Ficar" #. yifiT #: include/editeng/editrids.hrc:290 @@ -1786,4 +1786,4 @@ #: include/editeng/editrids.hrc:314 msgctxt "RID_OUTLUNDO_INSERT" msgid "Insert" -msgstr "" +msgstr "Ficar" diff -Nru libreoffice-7.4.6/translations/source/an/extensions/messages.po libreoffice-7.4.7/translations/source/an/extensions/messages.po --- libreoffice-7.4.6/translations/source/an/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-03-16 10:17+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+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.15.2\n" "X-POOTLE-MTIME: 1542022400.000000\n" #. cBx8W @@ -449,7 +449,7 @@ #: extensions/inc/stringarrays.hrc:128 msgctxt "RID_RSC_ENUM_NAVIGATION" msgid "No" -msgstr "" +msgstr "No" #. qS8rc #: extensions/inc/stringarrays.hrc:129 @@ -728,7 +728,7 @@ #: extensions/inc/stringarrays.hrc:222 msgctxt "RID_RSC_ENUM_SCALE_MODE" msgid "No" -msgstr "" +msgstr "No" #. aKBSe #: extensions/inc/stringarrays.hrc:223 @@ -1316,7 +1316,7 @@ #: extensions/inc/strings.hrc:107 msgctxt "RID_STR_FORMATKEY" msgid "Formatting" -msgstr "~Formatación" +msgstr "Formatación" #. DD4EJ #: extensions/inc/strings.hrc:108 @@ -1328,13 +1328,13 @@ #: extensions/inc/strings.hrc:109 msgctxt "RID_STR_HEIGHT" msgid "Height" -msgstr "" +msgstr "Altaria" #. 7CmQE #: extensions/inc/strings.hrc:110 msgctxt "RID_STR_WIDTH" msgid "Width" -msgstr "" +msgstr "Amplaria" #. q3Gyo #: extensions/inc/strings.hrc:111 @@ -1968,7 +1968,7 @@ #: extensions/inc/strings.hrc:215 msgctxt "RID_STR_XSD_LENGTH" msgid "Length" -msgstr "" +msgstr "Longaria" #. 8ejNn #: extensions/inc/strings.hrc:216 @@ -2221,7 +2221,7 @@ #: extensions/inc/strings.hrc:260 msgctxt "RID_STR_PROPPAGE_DEFAULT" msgid "General" -msgstr "" +msgstr "Cheneral" #. TkocD #: extensions/inc/strings.hrc:261 @@ -2861,7 +2861,7 @@ #: extensions/inc/strings.hrc:372 msgctxt "ST_TYPE_TITLE" msgid "General" -msgstr "" +msgstr "Cheneral" #. ARuMw #: extensions/inc/strings.hrc:374 @@ -3055,7 +3055,7 @@ #: extensions/inc/yesno.hrc:31 msgctxt "RID_RSC_ENUM_YESNO" msgid "No" -msgstr "" +msgstr "No" #. QDUNB #: extensions/inc/yesno.hrc:32 diff -Nru libreoffice-7.4.6/translations/source/an/filter/messages.po libreoffice-7.4.7/translations/source/an/filter/messages.po --- libreoffice-7.4.6/translations/source/an/filter/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/filter/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-15 22:28+0200\n" -"PO-Revision-Date: 2022-01-17 16:38+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+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.15.2\n" "X-POOTLE-MTIME: 1516028891.000000\n" #. 5AQgJ @@ -516,7 +516,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:349 msgctxt "pdfgeneralpage|label6" msgid "_Quality:" -msgstr "" +msgstr "_Calidat:" #. cFwGA #: filter/uiconfig/ui/pdfgeneralpage.ui:371 @@ -544,10 +544,9 @@ #. JtBsL #: filter/uiconfig/ui/pdfgeneralpage.ui:439 -#, fuzzy msgctxt "pdfgeneralpage|watermarklabel" msgid "Text:" -msgstr "Texto" +msgstr "Texto:" #. VfFZf #: filter/uiconfig/ui/pdfgeneralpage.ui:458 @@ -625,13 +624,13 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:597 msgctxt "pdfgeneralpage|format" msgid "FDF" -msgstr "" +msgstr "FDF" #. rfzrh #: filter/uiconfig/ui/pdfgeneralpage.ui:598 msgctxt "pdfgeneralpage|format" msgid "PDF" -msgstr "" +msgstr "PDF" #. S7caE #: filter/uiconfig/ui/pdfgeneralpage.ui:599 @@ -643,7 +642,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:600 msgctxt "pdfgeneralpage|format" msgid "XML" -msgstr "" +msgstr "XML" #. xbYYC #: filter/uiconfig/ui/pdfgeneralpage.ui:604 @@ -703,7 +702,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:773 msgctxt "pdfgeneralpage|label4" msgid "General" -msgstr "" +msgstr "Cheneral" #. FQzGc #: filter/uiconfig/ui/pdfgeneralpage.ui:802 @@ -859,7 +858,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:90 msgctxt "pdflinkspage|label1" msgid "General" -msgstr "" +msgstr "Cheneral" #. mGRBH #: filter/uiconfig/ui/pdflinkspage.ui:119 @@ -919,7 +918,7 @@ #: filter/uiconfig/ui/pdfoptionsdialog.ui:138 msgctxt "pdfoptionsdialog|general" msgid "General" -msgstr "" +msgstr "Cheneral" #. DMBHC #: filter/uiconfig/ui/pdfoptionsdialog.ui:185 @@ -1400,7 +1399,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:311 msgctxt "pdfuserinterfacepage|visiblebookmark" msgid "_Visible levels:" -msgstr "Libels _visibles:" +msgstr "Livels _visibles:" #. FqQPa #: filter/uiconfig/ui/pdfuserinterfacepage.ui:323 @@ -1793,13 +1792,13 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:110 msgctxt "xmlfiltersettings|header_name" msgid "Name" -msgstr "" +msgstr "Nombre" #. D6uZS #: filter/uiconfig/ui/xmlfiltersettings.ui:123 msgctxt "xmlfiltersettings|header_type" msgid "Type" -msgstr "" +msgstr "Tipo" #. A6qWH #: filter/uiconfig/ui/xmlfiltersettings.ui:134 @@ -2065,7 +2064,7 @@ #: filter/uiconfig/ui/xsltfilterdialog.ui:103 msgctxt "xsltfilterdialog|general" msgid "General" -msgstr "" +msgstr "Cheneral" #. peR3F #: filter/uiconfig/ui/xsltfilterdialog.ui:126 diff -Nru libreoffice-7.4.6/translations/source/an/forms/messages.po libreoffice-7.4.7/translations/source/an/forms/messages.po --- libreoffice-7.4.6/translations/source/an/forms/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/forms/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-01-17 16:38+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+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.15.2\n" "X-POOTLE-MTIME: 1507237017.000000\n" #. naBgZ @@ -26,7 +26,7 @@ #: forms/inc/strings.hrc:27 msgctxt "RID_STR_IMPORT_GRAPHIC" msgid "Insert Image" -msgstr "" +msgstr "Ficar una imachen" #. FfrQA #: forms/inc/strings.hrc:28 diff -Nru libreoffice-7.4.6/translations/source/an/formula/messages.po libreoffice-7.4.7/translations/source/an/formula/messages.po --- libreoffice-7.4.6/translations/source/an/formula/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/formula/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-12-27 12:05+0000\n" +"PO-Revision-Date: 2023-04-04 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542022401.000000\n" #. YfKFn @@ -2447,7 +2447,7 @@ #: formula/inc/core_resource.hrc:2701 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "COLOR" -msgstr "" +msgstr "COLOR" #. ufFAa #: formula/inc/core_resource.hrc:2702 @@ -2664,21 +2664,19 @@ #: formula/uiconfig/ui/formuladialog.ui:263 msgctxt "formuladialog|label2" msgid "Function result" -msgstr "" +msgstr "Resultau d'a función:" #. GqtY8 #: formula/uiconfig/ui/formuladialog.ui:408 -#, fuzzy msgctxt "formuladialog|formula" msgid "For_mula" -msgstr "~Formulas" +msgstr "For_mula:" #. xEPEr #: formula/uiconfig/ui/formuladialog.ui:423 -#, fuzzy msgctxt "formuladialog|label1" msgid "Result" -msgstr "Resultau" +msgstr "Resultau:" #. rJsXw #: formula/uiconfig/ui/formuladialog.ui:469 diff -Nru libreoffice-7.4.6/translations/source/an/fpicker/messages.po libreoffice-7.4.7/translations/source/an/fpicker/messages.po --- libreoffice-7.4.6/translations/source/an/fpicker/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/fpicker/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-05-03 12:41+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+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.15.2\n" "X-POOTLE-MTIME: 1538496441.000000\n" #. SJGCw @@ -203,19 +203,19 @@ #: fpicker/uiconfig/ui/explorerfiledialog.ui:365 msgctxt "explorerfiledialog|name" msgid "Name" -msgstr "" +msgstr "Nombre" #. CGq9e #: fpicker/uiconfig/ui/explorerfiledialog.ui:385 msgctxt "explorerfiledialog|type" msgid "Type" -msgstr "" +msgstr "Tipo" #. wDiXd #: fpicker/uiconfig/ui/explorerfiledialog.ui:399 msgctxt "explorerfiledialog|size" msgid "Size" -msgstr "" +msgstr "Grandaria" #. CDqza #: fpicker/uiconfig/ui/explorerfiledialog.ui:413 @@ -366,13 +366,13 @@ #: fpicker/uiconfig/ui/remotefilesdialog.ui:389 msgctxt "remotefilesdialog|name" msgid "Name" -msgstr "" +msgstr "Nombre" #. qRHnF #: fpicker/uiconfig/ui/remotefilesdialog.ui:409 msgctxt "remotefilesdialog|size" msgid "Size" -msgstr "" +msgstr "Grandaria" #. qeF3r #: fpicker/uiconfig/ui/remotefilesdialog.ui:423 diff -Nru libreoffice-7.4.6/translations/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.4.7/translations/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.4.6/translations/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:32+0100\n" -"PO-Revision-Date: 2018-11-12 11:33+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-31 22:33+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.15.2\n" "X-POOTLE-MTIME: 1542022401.000000\n" #. tBfTE @@ -4627,7 +4627,7 @@ "OOO_UITEXT_2\n" "LngText.text" msgid "GB" -msgstr "" +msgstr "GB" #. VwUAL #: UIText.ulf @@ -4636,7 +4636,7 @@ "OOO_UITEXT_3\n" "LngText.text" msgid "KB" -msgstr "" +msgstr "kB" #. vgAjF #: UIText.ulf @@ -4645,7 +4645,7 @@ "OOO_UITEXT_4\n" "LngText.text" msgid "MB" -msgstr "" +msgstr "MB" #. r9k3a #: UIText.ulf diff -Nru libreoffice-7.4.6/translations/source/an/librelogo/source/pythonpath.po libreoffice-7.4.7/translations/source/an/librelogo/source/pythonpath.po --- libreoffice-7.4.6/translations/source/an/librelogo/source/pythonpath.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/librelogo/source/pythonpath.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-06-29 13:09+0200\n" -"PO-Revision-Date: 2020-06-21 08:37+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+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.15.2\n" "X-POOTLE-MTIME: 1513250763.000000\n" #. tFoAo @@ -896,7 +896,7 @@ "DEG\n" "property.text" msgid "°" -msgstr "" +msgstr "°" #. qKdwN #: LibreLogo_en_US.properties @@ -905,7 +905,7 @@ "HOUR\n" "property.text" msgid "h" -msgstr "" +msgstr "h" #. h63E5 #: LibreLogo_en_US.properties @@ -914,7 +914,7 @@ "MM\n" "property.text" msgid "mm" -msgstr "" +msgstr "mm" #. RRfTD #: LibreLogo_en_US.properties @@ -923,7 +923,7 @@ "CM\n" "property.text" msgid "cm" -msgstr "" +msgstr "cm" #. hGRGr #: LibreLogo_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-12-10 11:03+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542022403.000000\n" #. W5ukN @@ -1543,14 +1543,13 @@ #. Jsx5v #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:CondDateFormatDialog\n" "Label\n" "value.text" msgid "Conditional Formatting: Date" -msgstr "Formateo condicional..." +msgstr "Formatación condicional: calendata" #. egG95 #: CalcCommands.xcu @@ -2334,7 +2333,6 @@ #. wZAYL #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:InsertCtrl\n" @@ -4157,7 +4155,7 @@ "Label\n" "value.text" msgid "General" -msgstr "" +msgstr "Cheneral" #. As36C #: CalcCommands.xcu @@ -4217,7 +4215,7 @@ "Label\n" "value.text" msgid "Scientific" -msgstr "" +msgstr "Scientifico" #. oF27A #: CalcCommands.xcu @@ -5479,7 +5477,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. MwePB #: CalcWindowState.xcu @@ -5672,7 +5670,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. hCe45 #: CalcWindowState.xcu @@ -5709,14 +5707,13 @@ #. GBGYS #: CalcWindowState.xcu -#, fuzzy msgctxt "" "CalcWindowState.xcu\n" "..CalcWindowState.UIElements.States.private:resource/toolbar/formdesign\n" "UIName\n" "value.text" msgid "Form Design" -msgstr "Diseño de formularios" +msgstr "Disenyo de formularios" #. dbAAf #: CalcWindowState.xcu @@ -5726,11 +5723,10 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. Bvnfj #: CalcWindowState.xcu -#, fuzzy msgctxt "" "CalcWindowState.xcu\n" "..CalcWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -5773,14 +5769,13 @@ #. DhKzB #: CalcWindowState.xcu -#, fuzzy msgctxt "" "CalcWindowState.xcu\n" "..CalcWindowState.UIElements.States.private:resource/toolbar/textobjectbar\n" "UIName\n" "value.text" msgid "Text Formatting" -msgstr "Formateo de texto" +msgstr "Formatación de texto" #. EKwBa #: CalcWindowState.xcu @@ -5838,7 +5833,6 @@ #. ftDWy #: CalcWindowState.xcu -#, fuzzy msgctxt "" "CalcWindowState.xcu\n" "..CalcWindowState.UIElements.States.private:resource/toolbar/colorbar\n" @@ -5859,7 +5853,6 @@ #. UaWAM #: CalcWindowState.xcu -#, fuzzy msgctxt "" "CalcWindowState.xcu\n" "..CalcWindowState.UIElements.States.private:resource/toolbar/basicshapes\n" @@ -7273,7 +7266,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. aPW8y #: ChartWindowState.xcu @@ -7288,7 +7281,6 @@ #. CyzjB #: ChartWindowState.xcu -#, fuzzy msgctxt "" "ChartWindowState.xcu\n" "..ChartWindowState.UIElements.States.private:resource/toolbar/basicshapes\n" @@ -7375,14 +7367,13 @@ #. Hi89N #: DbQueryWindowState.xcu -#, fuzzy msgctxt "" "DbQueryWindowState.xcu\n" "..DbQueryWindowState.UIElements.States.private:resource/toolbar/designobjectbar\n" "UIName\n" "value.text" msgid "Design" -msgstr "Diseño" +msgstr "Disenyo" #. i7GNh #: DbQueryWindowState.xcu @@ -7445,7 +7436,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. gT898 #: DbReportWindowState.xcu @@ -8182,14 +8173,13 @@ #. 6YxzA #: DbuCommands.xcu -#, fuzzy msgctxt "" "DbuCommands.xcu\n" "..DbuCommands.UserInterface.Commands..uno:DBNewTable\n" "Label\n" "value.text" msgid "Table Design..." -msgstr "Diseño de tabla..." +msgstr "Disenyo de tabla..." #. BVKsL #: DbuCommands.xcu @@ -8965,7 +8955,6 @@ #. FWGDR #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:InsertToolbox\n" @@ -12343,7 +12332,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. 8ZAuc #: DrawWindowState.xcu @@ -12694,7 +12683,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. fpibM #: DrawWindowState.xcu @@ -12731,14 +12720,13 @@ #. qGpwG #: DrawWindowState.xcu -#, fuzzy msgctxt "" "DrawWindowState.xcu\n" "..DrawWindowState.UIElements.States.private:resource/toolbar/formdesign\n" "UIName\n" "value.text" msgid "Form Design" -msgstr "Diseño de formularios" +msgstr "Disenyo de formularios" #. TaytU #: DrawWindowState.xcu @@ -12762,7 +12750,6 @@ #. XzZLB #: DrawWindowState.xcu -#, fuzzy msgctxt "" "DrawWindowState.xcu\n" "..DrawWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -12813,14 +12800,13 @@ #. CYha8 #: DrawWindowState.xcu -#, fuzzy msgctxt "" "DrawWindowState.xcu\n" "..DrawWindowState.UIElements.States.private:resource/toolbar/textobjectbar\n" "UIName\n" "value.text" msgid "Text Formatting" -msgstr "Formateo de texto" +msgstr "Formatación de texto" #. wABDL #: DrawWindowState.xcu @@ -12845,7 +12831,6 @@ #. AkJdM #: DrawWindowState.xcu -#, fuzzy msgctxt "" "DrawWindowState.xcu\n" "..DrawWindowState.UIElements.States.private:resource/toolbar/basicshapes\n" @@ -17028,7 +17013,6 @@ #. 2yKvJ #: GenericCategories.xcu -#, fuzzy msgctxt "" "GenericCategories.xcu\n" "..GenericCategories.Commands.Categories.9\n" @@ -17102,7 +17086,6 @@ #. F7ZM5 #: GenericCategories.xcu -#, fuzzy msgctxt "" "GenericCategories.xcu\n" "..GenericCategories.Commands.Categories.16\n" @@ -17312,7 +17295,7 @@ "ContextLabel\n" "value.text" msgid "Fontwork..." -msgstr "" +msgstr "Fontwork..." #. 6S6oz #: GenericCommands.xcu @@ -17370,7 +17353,6 @@ #. F49oZ #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:BasicShapes\n" @@ -17397,7 +17379,7 @@ "TooltipLabel\n" "value.text" msgid "Basic Shapes" -msgstr "" +msgstr "Formas basicas" #. MCJkK #: GenericCommands.xcu @@ -21664,14 +21646,13 @@ #. BoAR5 #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:OutlineFormat\n" "Label\n" "value.text" msgid "Show Formatting" -msgstr "Formateo d'a pachina" +msgstr "Amostrar a formatación" #. jgLRo #: GenericCommands.xcu @@ -22628,7 +22609,6 @@ #. EeCVs #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:Size\n" @@ -22927,14 +22907,13 @@ #. XdHHU #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:TableDesign\n" "Label\n" "value.text" msgid "Table Design..." -msgstr "Diseño de tabla..." +msgstr "Disenyo de tabla..." #. pYFdz #: GenericCommands.xcu @@ -25842,14 +25821,13 @@ #. B4a4Z #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FormDesignTools\n" "Label\n" "value.text" msgid "Form Design" -msgstr "Diseño de formularios" +msgstr "Disenyo de formularios" #. Vzi7P #: GenericCommands.xcu @@ -27571,7 +27549,7 @@ "Label\n" "value.text" msgid "~Insert" -msgstr "" +msgstr "F~icar" #. EBfym #: GenericCommands.xcu @@ -27721,14 +27699,13 @@ #. aKjG2 #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:InsertMenu\n" "Label\n" "value.text" msgid "~Insert" -msgstr "Ficar" +msgstr "F~icar" #. 6Xdhu #: GenericCommands.xcu @@ -27914,14 +27891,13 @@ #. VBAL4 #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:FormattingMarkMenu\n" "Label\n" "value.text" msgid "Formatting Mark" -msgstr "Marca de formateo" +msgstr "Marca de formatación" #. FbCCL #: GenericCommands.xcu @@ -29047,7 +29023,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. 5eXvx #: ImpressWindowState.xcu @@ -29337,7 +29313,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. oiWFi #: ImpressWindowState.xcu @@ -29374,14 +29350,13 @@ #. GGFME #: ImpressWindowState.xcu -#, fuzzy msgctxt "" "ImpressWindowState.xcu\n" "..ImpressWindowState.UIElements.States.private:resource/toolbar/formdesign\n" "UIName\n" "value.text" msgid "Form Design" -msgstr "Diseño de formularios" +msgstr "Disenyo de formularios" #. 5sW2T #: ImpressWindowState.xcu @@ -29437,7 +29412,6 @@ #. tBpp5 #: ImpressWindowState.xcu -#, fuzzy msgctxt "" "ImpressWindowState.xcu\n" "..ImpressWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -29468,7 +29442,6 @@ #. kPyD4 #: ImpressWindowState.xcu -#, fuzzy msgctxt "" "ImpressWindowState.xcu\n" "..ImpressWindowState.UIElements.States.private:resource/toolbar/basicshapes\n" @@ -29605,14 +29578,13 @@ #. srtG6 #: ImpressWindowState.xcu -#, fuzzy msgctxt "" "ImpressWindowState.xcu\n" "..ImpressWindowState.UIElements.States.private:resource/toolbar/textobjectbar\n" "UIName\n" "value.text" msgid "Text Formatting" -msgstr "Formateo d'o texto" +msgstr "Formatación de texto" #. kAM8r #: ImpressWindowState.xcu @@ -29692,7 +29664,6 @@ #. DyQpY #: ImpressWindowState.xcu -#, fuzzy msgctxt "" "ImpressWindowState.xcu\n" "..ImpressWindowState.UIElements.States.private:resource/toolbar/colorbar\n" @@ -30258,14 +30229,13 @@ #. FX4aQ #: ReportCommands.xcu -#, fuzzy msgctxt "" "ReportCommands.xcu\n" ".ReportCommands.UserInterface.Commands..uno:ConditionalFormatting\n" "Label\n" "value.text" msgid "~Conditional Formatting..." -msgstr "Formateo condicional..." +msgstr "Formatación condicional..." #. ExGip #: ReportCommands.xcu @@ -30858,14 +30828,13 @@ #. rtuWS #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.SwDesignDeck\n" "Title\n" "value.text" msgid "Design" -msgstr "Diseño" +msgstr "Disenyo" #. Eg5uB #: Sidebar.xcu @@ -33343,7 +33312,6 @@ #. dapfz #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertCtrl\n" @@ -34097,25 +34065,23 @@ #. wwpGc #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n" "Label\n" "value.text" msgid "Image Properties" -msgstr "Propiedatz d'a tabla..." +msgstr "Propiedatz d'a imachen" #. UC94s #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n" "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "Propiedatz..." +msgstr "~Propiedatz..." #. qEuQj #: WriterCommands.xcu @@ -35544,14 +35510,13 @@ #. qSdqD #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:Repaginate\n" "Label\n" "value.text" msgid "Page Formatting" -msgstr "Formateo d'a pachina" +msgstr "Formatación d'a pachina" #. neAhV #: WriterCommands.xcu @@ -36730,25 +36695,23 @@ #. YNpFG #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ControlCodes\n" "Label\n" "value.text" msgid "Formatting Marks" -msgstr "Marca de formateo" +msgstr "Marcas de formatación" #. FFNXc #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ControlCodes\n" "ContextLabel\n" "value.text" msgid "For~matting Marks" -msgstr "Marca de formateo" +msgstr "~Marcas de formatación" #. 9EFfF #: WriterCommands.xcu @@ -38273,7 +38236,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. qwMqS #: WriterFormWindowState.xcu @@ -38365,7 +38328,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. Bp5Du #: WriterFormWindowState.xcu @@ -38457,7 +38420,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. JRj52 #: WriterFormWindowState.xcu @@ -38494,14 +38457,13 @@ #. Lr9Xd #: WriterFormWindowState.xcu -#, fuzzy msgctxt "" "WriterFormWindowState.xcu\n" "..WriterFormWindowState.UIElements.States.private:resource/toolbar/formdesign\n" "UIName\n" "value.text" msgid "Form Design" -msgstr "Diseño de formulario" +msgstr "Disenyo de formulario" #. 9ZALG #: WriterFormWindowState.xcu @@ -38547,7 +38509,6 @@ #. Jbm9E #: WriterFormWindowState.xcu -#, fuzzy msgctxt "" "WriterFormWindowState.xcu\n" "..WriterFormWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -38643,7 +38604,6 @@ #. C8x4W #: WriterFormWindowState.xcu -#, fuzzy msgctxt "" "WriterFormWindowState.xcu\n" "..WriterFormWindowState.UIElements.States.private:resource/toolbar/colorbar\n" @@ -38654,7 +38614,6 @@ #. 6WbHq #: WriterFormWindowState.xcu -#, fuzzy msgctxt "" "WriterFormWindowState.xcu\n" "..WriterFormWindowState.UIElements.States.private:resource/toolbar/basicshapes\n" @@ -38790,7 +38749,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. B8gY2 #: WriterGlobalWindowState.xcu @@ -38893,7 +38852,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. 6QzrE #: WriterGlobalWindowState.xcu @@ -38975,7 +38934,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. pAEbK #: WriterGlobalWindowState.xcu @@ -39012,14 +38971,13 @@ #. 5DpAB #: WriterGlobalWindowState.xcu -#, fuzzy msgctxt "" "WriterGlobalWindowState.xcu\n" "..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/formdesign\n" "UIName\n" "value.text" msgid "Form Design" -msgstr "Diseño de formularios" +msgstr "Disenyo de formularios" #. VxShF #: WriterGlobalWindowState.xcu @@ -39065,7 +39023,6 @@ #. 9HGCu #: WriterGlobalWindowState.xcu -#, fuzzy msgctxt "" "WriterGlobalWindowState.xcu\n" "..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -39150,7 +39107,6 @@ #. G8oEo #: WriterGlobalWindowState.xcu -#, fuzzy msgctxt "" "WriterGlobalWindowState.xcu\n" "..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/colorbar\n" @@ -39161,7 +39117,6 @@ #. QnRx7 #: WriterGlobalWindowState.xcu -#, fuzzy msgctxt "" "WriterGlobalWindowState.xcu\n" "..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/basicshapes\n" @@ -39274,7 +39229,7 @@ "UIName\n" "value.text" msgid "Formatting (Styles)" -msgstr "" +msgstr "Formatación (estilos)" #. ogQzM #: WriterReportWindowState.xcu @@ -39328,7 +39283,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. HzDhD #: WriterReportWindowState.xcu @@ -39420,7 +39375,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. FftME #: WriterReportWindowState.xcu @@ -39511,7 +39466,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. PFkcv #: WriterReportWindowState.xcu @@ -39547,14 +39502,13 @@ #. gE5e4 #: WriterReportWindowState.xcu -#, fuzzy msgctxt "" "WriterReportWindowState.xcu\n" "..WriterReportWindowState.UIElements.States.private:resource/toolbar/formdesign\n" "UIName\n" "value.text" msgid "Form Design" -msgstr "Diseño de formulario" +msgstr "Disenyo de formulario" #. DvgCs #: WriterReportWindowState.xcu @@ -39600,7 +39554,6 @@ #. QArxh #: WriterReportWindowState.xcu -#, fuzzy msgctxt "" "WriterReportWindowState.xcu\n" "..WriterReportWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -39696,7 +39649,6 @@ #. FFtmB #: WriterReportWindowState.xcu -#, fuzzy msgctxt "" "WriterReportWindowState.xcu\n" "..WriterReportWindowState.UIElements.States.private:resource/toolbar/colorbar\n" @@ -39707,7 +39659,6 @@ #. DFdBF #: WriterReportWindowState.xcu -#, fuzzy msgctxt "" "WriterReportWindowState.xcu\n" "..WriterReportWindowState.UIElements.States.private:resource/toolbar/basicshapes\n" @@ -39821,7 +39772,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. 6fPVw #: WriterWebWindowState.xcu @@ -39924,7 +39875,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. BwCtL #: WriterWebWindowState.xcu @@ -40036,7 +39987,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. gwmKS #: WriterWebWindowState.xcu @@ -40073,14 +40024,13 @@ #. EGxBR #: WriterWebWindowState.xcu -#, fuzzy msgctxt "" "WriterWebWindowState.xcu\n" "..WriterWebWindowState.UIElements.States.private:resource/toolbar/formdesign\n" "UIName\n" "value.text" msgid "Form Design" -msgstr "Diseño de formularios" +msgstr "Disenyo de formularios" #. 7v96P #: WriterWebWindowState.xcu @@ -40105,7 +40055,6 @@ #. sg6nC #: WriterWebWindowState.xcu -#, fuzzy msgctxt "" "WriterWebWindowState.xcu\n" "..WriterWebWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -40159,7 +40108,6 @@ #. Rq9Jx #: WriterWebWindowState.xcu -#, fuzzy msgctxt "" "WriterWebWindowState.xcu\n" "..WriterWebWindowState.UIElements.States.private:resource/toolbar/colorbar\n" @@ -40170,7 +40118,6 @@ #. 4AQyR #: WriterWebWindowState.xcu -#, fuzzy msgctxt "" "WriterWebWindowState.xcu\n" "..WriterWebWindowState.UIElements.States.private:resource/toolbar/basicshapes\n" @@ -40285,7 +40232,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. Wo3oy #: WriterWindowState.xcu @@ -40408,7 +40355,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. UHYbB #: WriterWindowState.xcu @@ -40530,7 +40477,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. FE5oB #: WriterWindowState.xcu @@ -40567,14 +40514,13 @@ #. PaNfG #: WriterWindowState.xcu -#, fuzzy msgctxt "" "WriterWindowState.xcu\n" "..WriterWindowState.UIElements.States.private:resource/toolbar/formdesign\n" "UIName\n" "value.text" msgid "Form Design" -msgstr "Diseño de formularios" +msgstr "Disenyo de formularios" #. u7kSX #: WriterWindowState.xcu @@ -40620,7 +40566,6 @@ #. kPwDN #: WriterWindowState.xcu -#, fuzzy msgctxt "" "WriterWindowState.xcu\n" "..WriterWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -40704,7 +40649,6 @@ #. BUnXb #: WriterWindowState.xcu -#, fuzzy msgctxt "" "WriterWindowState.xcu\n" "..WriterWindowState.UIElements.States.private:resource/toolbar/colorbar\n" @@ -40715,7 +40659,6 @@ #. tstPZ #: WriterWindowState.xcu -#, fuzzy msgctxt "" "WriterWindowState.xcu\n" "..WriterWindowState.UIElements.States.private:resource/toolbar/basicshapes\n" @@ -40848,7 +40791,7 @@ "UIName\n" "value.text" msgid "Formatting (Styles)" -msgstr "" +msgstr "Formatación (estilos)" #. GqBDG #: XFormsWindowState.xcu @@ -40902,7 +40845,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. DTZxW #: XFormsWindowState.xcu @@ -41005,7 +40948,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatación" #. 89GBD #: XFormsWindowState.xcu @@ -41087,7 +41030,7 @@ "UIName\n" "value.text" msgid "Text Box Formatting" -msgstr "Formateo d'o quadro de texto" +msgstr "Formatación d'o quadro de texto" #. UQFwJ #: XFormsWindowState.xcu @@ -41124,14 +41067,13 @@ #. ZDsJs #: XFormsWindowState.xcu -#, fuzzy msgctxt "" "XFormsWindowState.xcu\n" "..XFormsWindowState.UIElements.States.private:resource/toolbar/formdesign\n" "UIName\n" "value.text" msgid "Form Design" -msgstr "Diseño de formulario" +msgstr "Disenyo de formulario" #. pXT2f #: XFormsWindowState.xcu @@ -41177,7 +41119,6 @@ #. SdDEA #: XFormsWindowState.xcu -#, fuzzy msgctxt "" "XFormsWindowState.xcu\n" "..XFormsWindowState.UIElements.States.private:resource/toolbar/insertbar\n" @@ -41273,7 +41214,6 @@ #. 8v2jp #: XFormsWindowState.xcu -#, fuzzy msgctxt "" "XFormsWindowState.xcu\n" "..XFormsWindowState.UIElements.States.private:resource/toolbar/colorbar\n" @@ -41284,7 +41224,6 @@ #. 8FQu6 #: XFormsWindowState.xcu -#, fuzzy msgctxt "" "XFormsWindowState.xcu\n" "..XFormsWindowState.UIElements.States.private:resource/toolbar/basicshapes\n" diff -Nru libreoffice-7.4.6/translations/source/an/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.4.7/translations/source/an/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.4.6/translations/source/an/officecfg/registry/data/org/openoffice/Office.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/officecfg/registry/data/org/openoffice/Office.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-10-24 11:12+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1542022401.000000\n" @@ -1070,7 +1070,7 @@ "STR_INTRODUCTION\n" "value.text" msgid "Introduction" -msgstr "" +msgstr "Introducción" #. BDZp7 #: PresentationMinimizer.xcu @@ -1151,7 +1151,7 @@ "STR_QUALITY\n" "value.text" msgid "~Quality in %" -msgstr "" +msgstr "~Calidat en %" #. DKdqg #: PresentationMinimizer.xcu @@ -11790,7 +11790,6 @@ #. EFLqu #: TableWizard.xcu -#, fuzzy msgctxt "" "TableWizard.xcu\n" "..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.length\n" diff -Nru libreoffice-7.4.6/translations/source/an/reportdesign/messages.po libreoffice-7.4.7/translations/source/an/reportdesign/messages.po --- libreoffice-7.4.6/translations/source/an/reportdesign/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/reportdesign/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:20+0100\n" -"PO-Revision-Date: 2022-12-27 12:05+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516028895.000000\n" #. FBVr9 @@ -106,7 +106,7 @@ #: reportdesign/inc/stringarray.hrc:53 msgctxt "RID_STR_BOOL" msgid "No" -msgstr "" +msgstr "No" #. rdPYV #: reportdesign/inc/stringarray.hrc:54 @@ -118,7 +118,7 @@ #: reportdesign/inc/stringarray.hrc:60 msgctxt "RID_STR_KEEPTOGETHER_CONST" msgid "No" -msgstr "" +msgstr "No" #. TDvKY #: reportdesign/inc/stringarray.hrc:61 @@ -244,14 +244,13 @@ #: reportdesign/inc/strings.hrc:25 msgctxt "RID_STR_PROPPAGE_DEFAULT" msgid "General" -msgstr "" +msgstr "Cheneral" #. TkocD #: reportdesign/inc/strings.hrc:26 -#, fuzzy msgctxt "RID_STR_PROPPAGE_DATA" msgid "Data" -msgstr "~Datos" +msgstr "Datos" #. 2NkGc #: reportdesign/inc/strings.hrc:27 @@ -385,13 +384,13 @@ #: reportdesign/inc/strings.hrc:48 msgctxt "RID_STR_WIDTH" msgid "Width" -msgstr "" +msgstr "Amplaria" #. GkcPB #: reportdesign/inc/strings.hrc:49 msgctxt "RID_STR_HEIGHT" msgid "Height" -msgstr "" +msgstr "Altaria" #. bQvmF #: reportdesign/inc/strings.hrc:50 @@ -1306,7 +1305,7 @@ #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:284 msgctxt "conditionwin|ToolBoxItem6" msgid "Character Formatting" -msgstr "" +msgstr "Formatación de caracters" #. PSCFe #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:365 @@ -1380,7 +1379,7 @@ #: reportdesign/uiconfig/dbreport/ui/floatingfield.ui:108 msgctxt "floatingfield|insert" msgid "Insert" -msgstr "" +msgstr "Ficar" #. AjmhK #: reportdesign/uiconfig/dbreport/ui/floatingfield.ui:168 @@ -1495,7 +1494,7 @@ #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:315 msgctxt "floatingsort|keep" msgid "No" -msgstr "" +msgstr "No" #. mdUnC #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:316 @@ -1679,4 +1678,4 @@ #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:286 msgctxt "pagenumberdialog|label3" msgid "General" -msgstr "" +msgstr "Cheneral" diff -Nru libreoffice-7.4.6/translations/source/an/sc/messages.po libreoffice-7.4.7/translations/source/an/sc/messages.po --- libreoffice-7.4.6/translations/source/an/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -272,10 +272,9 @@ #. UFMZ8 #: sc/inc/globstr.hrc:52 -#, fuzzy msgctxt "STR_UNDO_AUTOFORMAT" msgid "AutoFormat" -msgstr "Autoformateo" +msgstr "Formatación automatica" #. U2cGh #: sc/inc/globstr.hrc:53 @@ -1223,17 +1222,15 @@ #. YMzF9 #: sc/inc/globstr.hrc:194 -#, fuzzy msgctxt "STR_FUN_TEXT_MAX" msgid "Max" -msgstr "Máx" +msgstr "Maximo" #. A8fBH #: sc/inc/globstr.hrc:195 -#, fuzzy msgctxt "STR_FUN_TEXT_MIN" msgid "Min" -msgstr "Mín" +msgstr "Minimo" #. oZVg5 #: sc/inc/globstr.hrc:196 @@ -1250,10 +1247,9 @@ #. NhH7q #: sc/inc/globstr.hrc:198 -#, fuzzy msgctxt "STR_FUN_TEXT_VAR" msgid "Var" -msgstr "VAR" +msgstr "Variancia" #. XyzD7 #: sc/inc/globstr.hrc:199 @@ -1616,6 +1612,9 @@ "a table range of at least\n" "3 × 3 cells must be selected." msgstr "" +"Ta poder aplicar a formatación automatica,\n" +"ye necesario seleccionar un aria\n" +"de por lo menos 3 × 3 celdas." #. iySox #: sc/inc/globstr.hrc:261 @@ -2118,17 +2117,15 @@ #. fnrU6 #: sc/inc/globstr.hrc:335 -#, fuzzy msgctxt "STR_SCATTR_PAGE_SCALE_WIDTH" msgid "Width" -msgstr "Amplo" +msgstr "Amplaria" #. DCDgF #: sc/inc/globstr.hrc:336 -#, fuzzy msgctxt "STR_SCATTR_PAGE_SCALE_HEIGHT" msgid "Height" -msgstr "Alto" +msgstr "Altaria" #. yACgJ #: sc/inc/globstr.hrc:337 @@ -2459,17 +2456,15 @@ #. DyCp4 #: sc/inc/globstr.hrc:384 -#, fuzzy msgctxt "STR_TIP_WIDTH" msgid "Width:" -msgstr "Amplo:" +msgstr "Amplaria:" #. oAhVm #: sc/inc/globstr.hrc:385 -#, fuzzy msgctxt "STR_TIP_HEIGHT" msgid "Height:" -msgstr "Altura:" +msgstr "Altaria:" #. Z2kXt #: sc/inc/globstr.hrc:386 @@ -3381,7 +3376,7 @@ #: sc/inc/globstr.hrc:519 msgctxt "STR_GENERAL" msgid "General" -msgstr "" +msgstr "Cheneral" #. Ekqp8 #: sc/inc/globstr.hrc:520 @@ -3418,7 +3413,7 @@ #: sc/inc/globstr.hrc:525 msgctxt "STR_SCIENTIFIC" msgid "Scientific" -msgstr "" +msgstr "Scientifico" #. DGyo9 #: sc/inc/globstr.hrc:526 @@ -3588,13 +3583,13 @@ #: sc/inc/pvfundlg.hrc:32 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Max" -msgstr "Max" +msgstr "Maximo" #. GMhuR #: sc/inc/pvfundlg.hrc:33 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Min" -msgstr "Min" +msgstr "Minimo" #. Feqkk #: sc/inc/pvfundlg.hrc:34 @@ -4678,7 +4673,7 @@ #: sc/inc/scfuncs.hrc:264 msgctxt "SC_OPCODE_GET_HOUR" msgid "Determines the sequential number of the hour of the day (0-23) for the time value." -msgstr "Determina o numero seqüencial d'a hora d'o día (0 - 23) t'a valura d'a hora." +msgstr "Determina o numero seqüencial d'a hora d'o día (0-23) t'a valura d'a hora." #. 9EWGn #: sc/inc/scfuncs.hrc:265 @@ -6749,17 +6744,15 @@ #. gBTKc #: sc/inc/scfuncs.hrc:857 -#, fuzzy msgctxt "SC_OPCODE_NOT" msgid "Reverses the value of the argument." -msgstr "Invierte a valor lochica de l'argumento." +msgstr "Invierte a valor de l'argumento." #. RFgjB #: sc/inc/scfuncs.hrc:858 -#, fuzzy msgctxt "SC_OPCODE_NOT" msgid "Logical value" -msgstr "valor_lochica" +msgstr "Valor lochica" #. AjEum #: sc/inc/scfuncs.hrc:859 @@ -7038,10 +7031,9 @@ #. zRWmY #: sc/inc/scfuncs.hrc:960 -#, fuzzy msgctxt "SC_OPCODE_SUM" msgid "Number " -msgstr "numero " +msgstr "Numero " #. a5m6D #: sc/inc/scfuncs.hrc:961 @@ -7058,10 +7050,9 @@ #. BwCAS #: sc/inc/scfuncs.hrc:968 -#, fuzzy msgctxt "SC_OPCODE_SUM_SQ" msgid "Number " -msgstr "numero " +msgstr "Numero " #. RqFJB #: sc/inc/scfuncs.hrc:969 @@ -7078,10 +7069,9 @@ #. nh4bQ #: sc/inc/scfuncs.hrc:976 -#, fuzzy msgctxt "SC_OPCODE_PRODUCT" msgid "Number " -msgstr "numero " +msgstr "Numero " #. RffwE #: sc/inc/scfuncs.hrc:977 @@ -9368,10 +9358,9 @@ #. Tt9Hk #: sc/inc/scfuncs.hrc:1711 -#, fuzzy msgctxt "SC_OPCODE_MAX" msgid "Number " -msgstr "numero " +msgstr "Numero " #. XowNY #: sc/inc/scfuncs.hrc:1712 @@ -9408,10 +9397,9 @@ #. gGyEx #: sc/inc/scfuncs.hrc:1727 -#, fuzzy msgctxt "SC_OPCODE_MIN" msgid "Number " -msgstr "numero " +msgstr "Numero " #. JkEom #: sc/inc/scfuncs.hrc:1728 @@ -9448,10 +9436,9 @@ #. AQnAB #: sc/inc/scfuncs.hrc:1743 -#, fuzzy msgctxt "SC_OPCODE_VAR" msgid "Number " -msgstr "numero " +msgstr "Numero " #. dGfyD #: sc/inc/scfuncs.hrc:1744 @@ -9469,10 +9456,9 @@ #. PEFGm #: sc/inc/scfuncs.hrc:1751 -#, fuzzy msgctxt "SC_OPCODE_VAR_S" msgid "Number " -msgstr "numero " +msgstr "Numero " #. DQp4X #: sc/inc/scfuncs.hrc:1752 @@ -9510,10 +9496,9 @@ #. JQYec #: sc/inc/scfuncs.hrc:1767 -#, fuzzy msgctxt "SC_OPCODE_VAR_P" msgid "Number " -msgstr "numero " +msgstr "Numero " #. QL7dC #: sc/inc/scfuncs.hrc:1768 @@ -9531,10 +9516,9 @@ #. YH9GD #: sc/inc/scfuncs.hrc:1775 -#, fuzzy msgctxt "SC_OPCODE_VAR_P_MS" msgid "Number " -msgstr "numero " +msgstr "Numero " #. JZjgr #: sc/inc/scfuncs.hrc:1776 @@ -9572,10 +9556,9 @@ #. 6ANXx #: sc/inc/scfuncs.hrc:1791 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV" msgid "Number " -msgstr "numero " +msgstr "Numero " #. LD8Xt #: sc/inc/scfuncs.hrc:1792 @@ -9634,10 +9617,9 @@ #. h6Evi #: sc/inc/scfuncs.hrc:1815 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_P" msgid "Number " -msgstr "numero " +msgstr "Numero " #. RkhC2 #: sc/inc/scfuncs.hrc:1816 @@ -9655,10 +9637,9 @@ #. 4JaDC #: sc/inc/scfuncs.hrc:1823 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_P_MS" msgid "Number " -msgstr "numero " +msgstr "Numero " #. Cp8hZ #: sc/inc/scfuncs.hrc:1824 @@ -9696,10 +9677,9 @@ #. mPAXh #: sc/inc/scfuncs.hrc:1839 -#, fuzzy msgctxt "SC_OPCODE_AVERAGE" msgid "Number " -msgstr "numero " +msgstr "Numero " #. yFo3s #: sc/inc/scfuncs.hrc:1840 @@ -9736,10 +9716,9 @@ #. FMeFc #: sc/inc/scfuncs.hrc:1855 -#, fuzzy msgctxt "SC_OPCODE_DEV_SQ" msgid "Number " -msgstr "numero " +msgstr "Numero " #. 9t9WZ #: sc/inc/scfuncs.hrc:1856 @@ -9777,10 +9756,9 @@ #. JPi88 #: sc/inc/scfuncs.hrc:1871 -#, fuzzy msgctxt "SC_OPCODE_SKEW" msgid "Number " -msgstr "numero " +msgstr "Numero " #. iCXiA #: sc/inc/scfuncs.hrc:1872 @@ -9817,10 +9795,9 @@ #. VHfwE #: sc/inc/scfuncs.hrc:1887 -#, fuzzy msgctxt "SC_OPCODE_KURT" msgid "Number " -msgstr "numero " +msgstr "Numero " #. 3Qsuk #: sc/inc/scfuncs.hrc:1888 @@ -9837,10 +9814,9 @@ #. 9KVR7 #: sc/inc/scfuncs.hrc:1895 -#, fuzzy msgctxt "SC_OPCODE_GEO_MEAN" msgid "Number " -msgstr "numero " +msgstr "Numero " #. 2yJ7U #: sc/inc/scfuncs.hrc:1896 @@ -9858,10 +9834,9 @@ #. Yz89m #: sc/inc/scfuncs.hrc:1903 -#, fuzzy msgctxt "SC_OPCODE_HAR_MEAN" msgid "Number " -msgstr "numero " +msgstr "Numero " #. 2SFZ5 #: sc/inc/scfuncs.hrc:1904 @@ -9900,10 +9875,9 @@ #. BH4Gt #: sc/inc/scfuncs.hrc:1919 -#, fuzzy msgctxt "SC_OPCODE_MODAL_VALUE_MS" msgid "Number " -msgstr "numero " +msgstr "Numero " #. eE4FY #: sc/inc/scfuncs.hrc:1920 @@ -9921,10 +9895,9 @@ #. gXx2e #: sc/inc/scfuncs.hrc:1927 -#, fuzzy msgctxt "SC_OPCODE_MODAL_VALUE_MULTI" msgid "Number " -msgstr "numero " +msgstr "Numero " #. h2KJC #: sc/inc/scfuncs.hrc:1928 @@ -9942,10 +9915,9 @@ #. izbAC #: sc/inc/scfuncs.hrc:1935 -#, fuzzy msgctxt "SC_OPCODE_MEDIAN" msgid "Number " -msgstr "numero " +msgstr "Numero " #. QjvgB #: sc/inc/scfuncs.hrc:1936 @@ -13698,7 +13670,7 @@ #: sc/inc/scfuncs.hrc:2910 msgctxt "SC_OPCODE_CONFIDENCE" msgid "Size" -msgstr "" +msgstr "Grandaria" #. jsKiq #: sc/inc/scfuncs.hrc:2911 @@ -13746,7 +13718,7 @@ #: sc/inc/scfuncs.hrc:2922 msgctxt "SC_OPCODE_CONFIDENCE_N" msgid "Size" -msgstr "" +msgstr "Grandaria" #. 6dDs8 #: sc/inc/scfuncs.hrc:2923 @@ -13794,7 +13766,7 @@ #: sc/inc/scfuncs.hrc:2934 msgctxt "SC_OPCODE_CONFIDENCE_T" msgid "Size" -msgstr "" +msgstr "Grandaria" #. czDyb #: sc/inc/scfuncs.hrc:2935 @@ -14081,10 +14053,9 @@ #. fYNDT #: sc/inc/scfuncs.hrc:3012 -#, fuzzy msgctxt "SC_OPCODE_T_TEST" msgid "Type" -msgstr "tipo" +msgstr "Tipo" #. cKsJd #: sc/inc/scfuncs.hrc:3013 @@ -15708,10 +15679,9 @@ #. Gkwct #: sc/inc/scfuncs.hrc:3438 -#, fuzzy msgctxt "SC_OPCODE_OFFSET" msgid "Height" -msgstr "Alto" +msgstr "Altaria" #. EsLfR #: sc/inc/scfuncs.hrc:3439 @@ -15722,10 +15692,9 @@ #. Y5Gux #: sc/inc/scfuncs.hrc:3440 -#, fuzzy msgctxt "SC_OPCODE_OFFSET" msgid "Width" -msgstr "Amplo" +msgstr "Amplaria" #. RBhpn #: sc/inc/scfuncs.hrc:3441 @@ -16685,7 +16654,7 @@ #: sc/inc/scfuncs.hrc:3738 msgctxt "SC_OPCODE_REPLACE" msgid "Length" -msgstr "" +msgstr "Longaria" #. vNtRY #: sc/inc/scfuncs.hrc:3739 @@ -17924,7 +17893,7 @@ #: sc/inc/scfuncs.hrc:4092 msgctxt "SC_OPCODE_REPLACEB" msgid "Length" -msgstr "" +msgstr "Longaria" #. zC4Sk #: sc/inc/scfuncs.hrc:4093 @@ -18397,7 +18366,7 @@ #: sc/inc/strings.hrc:61 msgctxt "STR_INSERTGRAPHIC" msgid "Insert Image" -msgstr "" +msgstr "Ficar una imachen" #. bKv77 #: sc/inc/strings.hrc:62 @@ -19487,7 +19456,7 @@ #: sc/inc/strings.hrc:246 msgctxt "STRID_CALC_VARIANCE" msgid "Variance" -msgstr "" +msgstr "Variancia" #. 3uYMC #: sc/inc/strings.hrc:247 @@ -20309,17 +20278,15 @@ #. AfJCg #: sc/inc/subtotals.hrc:31 -#, fuzzy msgctxt "subtotalgrppage|liststore1" msgid "Max" -msgstr "Máx" +msgstr "Maximo" #. iidBk #: sc/inc/subtotals.hrc:32 -#, fuzzy msgctxt "subtotalgrppage|liststore1" msgid "Min" -msgstr "Mín" +msgstr "Minimo" #. VqvEW #: sc/inc/subtotals.hrc:33 @@ -20758,10 +20725,9 @@ #. ETqet #: sc/uiconfig/scalc/ui/autoformattable.ui:16 -#, fuzzy msgctxt "autoformattable|AutoFormatTableDialog" msgid "AutoFormat" -msgstr "Autoformateo" +msgstr "Formatación automatica" #. tCRU9 #: sc/uiconfig/scalc/ui/autoformattable.ui:39 @@ -20893,10 +20859,9 @@ #. pR75z #: sc/uiconfig/scalc/ui/autoformattable.ui:413 -#, fuzzy msgctxt "autoformattable|label2" msgid "Formatting" -msgstr "~Formatación" +msgstr "Formatación" #. cBw2F #: sc/uiconfig/scalc/ui/autoformattable.ui:446 @@ -20920,13 +20885,13 @@ #: sc/uiconfig/scalc/ui/autosum.ui:28 msgctxt "autosum|min" msgid "Min" -msgstr "" +msgstr "Minimo" #. pWv7a #: sc/uiconfig/scalc/ui/autosum.ui:36 msgctxt "autosum|max" msgid "Max" -msgstr "" +msgstr "Maximo" #. mAz9L #: sc/uiconfig/scalc/ui/autosum.ui:44 @@ -20962,7 +20927,7 @@ #: sc/uiconfig/scalc/ui/autosum.ui:84 msgctxt "autosum|var" msgid "Var" -msgstr "" +msgstr "Variancia" #. 7GuBA #: sc/uiconfig/scalc/ui/autosum.ui:92 @@ -21072,10 +21037,9 @@ #. kCVCr #: sc/uiconfig/scalc/ui/changesourcedialog.ui:127 -#, fuzzy msgctxt "changesourcedialog|label1" msgid "Labels" -msgstr "Etiqueta" +msgstr "Etiquetas" #. 3aACC #: sc/uiconfig/scalc/ui/chardialog.ui:8 @@ -21229,10 +21193,9 @@ #. nXoxa #: sc/uiconfig/scalc/ui/colwidthdialog.ui:90 -#, fuzzy msgctxt "colwidthdialog|label1" msgid "Width" -msgstr "Amplo" +msgstr "Amplaria" #. j9AMh #: sc/uiconfig/scalc/ui/colwidthdialog.ui:110 @@ -21365,17 +21328,15 @@ #. gE9LZ #: sc/uiconfig/scalc/ui/conditionalentry.ui:216 -#, fuzzy msgctxt "conditionalentry|colscalemin" msgid "Min" -msgstr "Mín" +msgstr "Minimo" #. HAuKu #: sc/uiconfig/scalc/ui/conditionalentry.ui:217 -#, fuzzy msgctxt "conditionalentry|colscalemin" msgid "Max" -msgstr "Máx" +msgstr "Maximo" #. ciYfw #: sc/uiconfig/scalc/ui/conditionalentry.ui:218 @@ -21411,17 +21372,15 @@ #. FGnWb #: sc/uiconfig/scalc/ui/conditionalentry.ui:235 -#, fuzzy msgctxt "conditionalentry|colscalemiddle" msgid "Min" -msgstr "Mín" +msgstr "Minimo" #. qC8Zo #: sc/uiconfig/scalc/ui/conditionalentry.ui:236 -#, fuzzy msgctxt "conditionalentry|colscalemiddle" msgid "Max" -msgstr "Máx" +msgstr "Maximo" #. 7bxeC #: sc/uiconfig/scalc/ui/conditionalentry.ui:237 @@ -21457,17 +21416,15 @@ #. TDG7W #: sc/uiconfig/scalc/ui/conditionalentry.ui:254 -#, fuzzy msgctxt "conditionalentry|colscalemax" msgid "Min" -msgstr "Mín" +msgstr "Minimo" #. JBX6r #: sc/uiconfig/scalc/ui/conditionalentry.ui:255 -#, fuzzy msgctxt "conditionalentry|colscalemax" msgid "Max" -msgstr "Máx" +msgstr "Maximo" #. uPGWW #: sc/uiconfig/scalc/ui/conditionalentry.ui:256 @@ -22156,17 +22113,15 @@ #. EffQC #: sc/uiconfig/scalc/ui/consolidatedialog.ui:144 -#, fuzzy msgctxt "consolidatedialog|func" msgid "Max" -msgstr "Máx" +msgstr "Maximo" #. fiQPH #: sc/uiconfig/scalc/ui/consolidatedialog.ui:145 -#, fuzzy msgctxt "consolidatedialog|func" msgid "Min" -msgstr "Mín" +msgstr "Minimo" #. cbwPv #: sc/uiconfig/scalc/ui/consolidatedialog.ui:146 @@ -22735,10 +22690,9 @@ #. NArFG #: sc/uiconfig/scalc/ui/databaroptions.ui:334 -#, fuzzy msgctxt "databaroptions|fill_type" msgid "Color" -msgstr "~Color" +msgstr "Color" #. XjywU #: sc/uiconfig/scalc/ui/databaroptions.ui:335 @@ -23294,7 +23248,7 @@ #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:138 msgctxt "dataproviderdlg/url" msgid "URL:" -msgstr "" +msgstr "URL:" #. GKDQA #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:161 @@ -23564,7 +23518,7 @@ #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:65 msgctxt "datetimetransformationentry|time" msgid "Time" -msgstr "" +msgstr "Hora" #. bRjJe #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:80 @@ -23752,10 +23706,9 @@ #. 6EGaz #: sc/uiconfig/scalc/ui/definename.ui:96 -#, fuzzy msgctxt "definename|label2" msgid "Name:" -msgstr "Nombre" +msgstr "Nombre:" #. EPtbZ #: sc/uiconfig/scalc/ui/definename.ui:110 @@ -23967,10 +23920,9 @@ #. cjPVi #: sc/uiconfig/scalc/ui/deletecontents.ui:120 -#, fuzzy msgctxt "deletecontents|text" msgid "_Text" -msgstr "texto" +msgstr "_Texto" #. BzXFc #: sc/uiconfig/scalc/ui/deletecontents.ui:128 @@ -26220,10 +26172,9 @@ #. WCnsd #: sc/uiconfig/scalc/ui/managenamesdialog.ui:215 -#, fuzzy msgctxt "managenamesdialog|label2" msgid "Name:" -msgstr "Nombre" +msgstr "Nombre:" #. XY33d #: sc/uiconfig/scalc/ui/managenamesdialog.ui:229 @@ -27028,13 +26979,13 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:5882 msgctxt "CalcNotebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. HnjBi #: sc/uiconfig/scalc/ui/notebookbar.ui:5987 msgctxt "CalcNotebookbar|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "F~icar" #. xmARL #: sc/uiconfig/scalc/ui/notebookbar.ui:6388 @@ -27241,13 +27192,13 @@ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5637 msgctxt "notebookbar_compact|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. CDXv3 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5692 msgctxt "notebookbar_compact|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "F~icar" #. EvytN #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6312 @@ -27447,10 +27398,9 @@ #. CMGpS #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4526 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|insertb" msgid "_Insert" -msgstr "Ficar" +msgstr "F_icar" #. 5wZbP #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4637 @@ -27737,10 +27687,9 @@ #. rrpkZ #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4953 -#, fuzzy msgctxt "notebookbar_groupedbar_full|insertb" msgid "_Insert" -msgstr "Ficar" +msgstr "F_icar" #. NsDSM #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5131 @@ -27882,10 +27831,9 @@ #. h6EHi #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879 -#, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextb" msgid "_Insert" -msgstr "Ficar" +msgstr "F_icar" #. eLnnF #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022 @@ -29678,10 +29626,9 @@ #. aUWEK #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:269 -#, fuzzy msgctxt "pivotfielddialog|label2" msgid "Name:" -msgstr "Nombre" +msgstr "Nombre:" #. 5tnrL #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:8 @@ -30853,10 +30800,9 @@ #. EzUqW #: sc/uiconfig/scalc/ui/rowheightdialog.ui:90 -#, fuzzy msgctxt "rowheightdialog|label1" msgid "Height:" -msgstr "Altura:" +msgstr "Altaria:" #. cZCeF #: sc/uiconfig/scalc/ui/rowheightdialog.ui:110 @@ -32163,7 +32109,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:75 msgctxt "sidebarnumberformat|numberformatcombobox" msgid "General" -msgstr "" +msgstr "Cheneral" #. SmpsG #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:76 @@ -32199,7 +32145,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:81 msgctxt "sidebarnumberformat|numberformatcombobox" msgid "Scientific" -msgstr "" +msgstr "Scientifico" #. AQV5y #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:82 @@ -34675,7 +34621,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:426 msgctxt "tpviewpage|color_label" msgid "_Color:" -msgstr "" +msgstr "_Color:" #. BUibB #: sc/uiconfig/scalc/ui/tpviewpage.ui:440 @@ -34967,7 +34913,7 @@ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:54 msgctxt "validationcriteriapage|liststore1" msgid "Text length" -msgstr "" +msgstr "Longaria d'o texto" #. WyXAY #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:55 diff -Nru libreoffice-7.4.6/translations/source/an/sd/messages.po libreoffice-7.4.7/translations/source/an/sd/messages.po --- libreoffice-7.4.6/translations/source/an/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-01-30 09:57+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542022406.000000\n" #. WDjkB @@ -114,10 +114,9 @@ #. v8qMM #: sd/inc/DocumentRenderer.hrc:60 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES" msgid "Original size" -msgstr "Mida ~orichinal" +msgstr "Grandaria orichinal" #. BSDgB #: sd/inc/DocumentRenderer.hrc:61 @@ -139,10 +138,9 @@ #. 3Gp62 #: sd/inc/DocumentRenderer.hrc:68 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW" msgid "Original size" -msgstr "Mida ~orichinal" +msgstr "Grandaria orichinal" #. FEjyA #: sd/inc/DocumentRenderer.hrc:69 @@ -456,7 +454,7 @@ #: sd/inc/strings.hrc:33 msgctxt "STR_INSERTGRAPHIC" msgid "Insert Image" -msgstr "" +msgstr "Ficar una imachen" #. 47BGD #: sd/inc/strings.hrc:34 @@ -1048,10 +1046,9 @@ #. XFDFX #: sd/inc/strings.hrc:130 -#, fuzzy msgctxt "STR_UNDO_ORIGINALSIZE" msgid "Original Size" -msgstr "Mida ~orichinal" +msgstr "Grandaria orichinal" #. nwDUz #: sd/inc/strings.hrc:131 @@ -1865,7 +1862,7 @@ #: sd/inc/strings.hrc:268 msgctxt "STR_INSERT_PICTURE" msgid "Insert Image" -msgstr "" +msgstr "Ficar una imachen" #. iBBLh #: sd/inc/strings.hrc:269 @@ -2972,10 +2969,9 @@ #. CSUbC #: sd/inc/strings.hrc:463 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_QUALITY" msgid "Color" -msgstr "~Color" +msgstr "Color" #. WmYKp #: sd/inc/strings.hrc:464 @@ -3234,13 +3230,13 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:354 msgctxt "copydlg|label8" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. YuAHc #: sd/uiconfig/sdraw/ui/copydlg.ui:368 msgctxt "copydlg|label9" msgid "_Height:" -msgstr "" +msgstr "A_ltaria:" #. pLxaH #: sd/uiconfig/sdraw/ui/copydlg.ui:388 @@ -3540,7 +3536,7 @@ #: sd/uiconfig/sdraw/ui/drawparadialog.ui:328 msgctxt "drawparadialog|labelNUMBERING" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. DgUaS #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:28 @@ -3610,17 +3606,15 @@ #. MGAFs #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:168 -#, fuzzy msgctxt "drawprinteroptions|label5" msgid "Color" -msgstr "~Color" +msgstr "Color" #. LD69c #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:197 -#, fuzzy msgctxt "drawprinteroptions|originalsize" msgid "Original size" -msgstr "Mida ~orichinal" +msgstr "Grandaria orichinal" #. S9Vgh #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:206 @@ -3668,7 +3662,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:285 msgctxt "drawprinteroptions|label6" msgid "Size" -msgstr "" +msgstr "Grandaria" #. zqFBj #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:8 @@ -3734,7 +3728,7 @@ #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:569 msgctxt "drawprtldialog|RID_SVXPAGE_PICK_SINGLE_NUM" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. MoKr2 #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:617 @@ -3933,13 +3927,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:5619 msgctxt "drawnotebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. Z3UCg #: sd/uiconfig/sdraw/ui/notebookbar.ui:5723 msgctxt "drawnotebookbar|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "F~icar" #. TVDXM #: sd/uiconfig/sdraw/ui/notebookbar.ui:6423 @@ -4151,13 +4145,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5546 msgctxt "notebookbar_draw_compact|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. d8cey #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5597 msgctxt "notebookbar_draw_compact|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "F~icar" #. kkPza #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6296 @@ -4357,7 +4351,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12853 msgctxt "draw_notebookbar_groupedbar_compact|insertText" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. 4p9DA #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3444 @@ -5510,10 +5504,9 @@ #. mhsyF #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:109 -#, fuzzy msgctxt "definecustomslideshow|label1" msgid "_Name:" -msgstr "Nombre" +msgstr "_Nombre:" #. sCCvq #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:128 @@ -6334,17 +6327,15 @@ #. G3CZp #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:310 -#, fuzzy msgctxt "impressprinteroptions|label5" msgid "Color" -msgstr "~Color" +msgstr "Color" #. 4C7dv #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:339 -#, fuzzy msgctxt "impressprinteroptions|originalsize" msgid "Original size" -msgstr "Mida ~orichinal" +msgstr "Grandaria orichinal" #. d9Se3 #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:348 @@ -6392,7 +6383,7 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:427 msgctxt "impressprinteroptions|label6" msgid "Size" -msgstr "" +msgstr "Grandaria" #. JxDBz #: sd/uiconfig/simpress/ui/insertslides.ui:8 @@ -6828,13 +6819,13 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:6031 msgctxt "impressnotebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. t3YwN #: sd/uiconfig/simpress/ui/notebookbar.ui:6134 msgctxt "impressnotebookbar|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "F~icar" #. 58fjG #: sd/uiconfig/simpress/ui/notebookbar.ui:6909 @@ -7058,13 +7049,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5832 msgctxt "notebookbar_impress_compact|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. ZPHaB #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5883 msgctxt "notebookbar_impress_compact|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "F~icar" #. zEEiz #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6669 @@ -7477,7 +7468,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3919 msgctxt "notebookbar_groupedbar_full|insertText" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. bwvGG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4255 @@ -7533,7 +7524,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5818 msgctxt "notebookbar_groupedbar_full|insertTextt" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. 6isa9 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5980 @@ -7655,7 +7646,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11711 msgctxt "notebookbar_groupedbar_full|insertTextm" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. Eg8Qi #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11936 @@ -7863,7 +7854,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1585 msgctxt "notebookbar_groups|insertgrouplabel" msgid "Insert" -msgstr "" +msgstr "Ficar" #. Du8Qw #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1621 @@ -8709,7 +8700,7 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:423 msgctxt "prntopts|label2" msgid "Quality" -msgstr "" +msgstr "Calidat" #. AEqGw #: sd/uiconfig/simpress/ui/prntopts.ui:453 @@ -9055,7 +9046,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:972 msgctxt "publishingdialog|pngRadiobutton" msgid "_PNG" -msgstr "" +msgstr "_PNG" #. tBByA #: sd/uiconfig/simpress/ui/publishingdialog.ui:981 @@ -9067,7 +9058,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:993 msgctxt "publishingdialog|gifRadiobutton" msgid "_GIF" -msgstr "" +msgstr "_GIF" #. CjCTt #: sd/uiconfig/simpress/ui/publishingdialog.ui:1002 @@ -9079,7 +9070,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1014 msgctxt "publishingdialog|jpgRadiobutton" msgid "_JPG" -msgstr "" +msgstr "_JPG" #. bEwzb #: sd/uiconfig/simpress/ui/publishingdialog.ui:1023 @@ -9091,7 +9082,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1044 msgctxt "publishingdialog|qualityTxtLabel" msgid "_Quality:" -msgstr "" +msgstr "_Calidat:" #. oYcCy #: sd/uiconfig/simpress/ui/publishingdialog.ui:1069 diff -Nru libreoffice-7.4.6/translations/source/an/sfx2/messages.po libreoffice-7.4.7/translations/source/an/sfx2/messages.po --- libreoffice-7.4.6/translations/source/an/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2022-10-24 11:13+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1540149298.000000\n" #. bHbFE @@ -577,7 +577,7 @@ #: include/sfx2/strings.hrc:116 msgctxt "STR_GID_INSERT" msgid "Insert" -msgstr "" +msgstr "Ficar" #. fokQp #: include/sfx2/strings.hrc:117 @@ -620,7 +620,7 @@ #: include/sfx2/strings.hrc:123 msgctxt "STR_GID_ENUMERATION" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. CDFSE #: include/sfx2/strings.hrc:124 @@ -1031,7 +1031,7 @@ #: include/sfx2/strings.hrc:194 msgctxt "STR_REDACTION_NO" msgid "No" -msgstr "" +msgstr "No" #. FM3Gf #. Translators: Misc strings of the Auto Redaction dialog @@ -1116,13 +1116,13 @@ #: include/sfx2/strings.hrc:211 msgctxt "STR_SFX_EXPLORERFILE_INSERT" msgid "Insert" -msgstr "" +msgstr "Ficar" #. VBKtt #: include/sfx2/strings.hrc:212 msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT" msgid "~Insert" -msgstr "" +msgstr "F~icar" #. DcLFD #: include/sfx2/strings.hrc:213 @@ -1486,7 +1486,7 @@ #: include/sfx2/strings.hrc:276 msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY" msgid "Level" -msgstr "Libel" +msgstr "Livel" #. itVew #: include/sfx2/strings.hrc:277 @@ -2602,7 +2602,7 @@ #: sfx2/uiconfig/ui/addtargetdialog.ui:89 msgctxt "addtargetdialog|label_name" msgid "Name:" -msgstr "" +msgstr "Nombre:" #. LXpbz #: sfx2/uiconfig/ui/addtargetdialog.ui:120 @@ -2740,7 +2740,7 @@ #: sfx2/uiconfig/ui/autoredactdialog.ui:135 msgctxt "autoredactdialog|description" msgid "Type" -msgstr "" +msgstr "Tipo" #. udcn4 #: sfx2/uiconfig/ui/autoredactdialog.ui:148 @@ -2883,7 +2883,6 @@ #. CEnTA #: sfx2/uiconfig/ui/cmisline.ui:44 -#, fuzzy msgctxt "cmisline|type" msgid "Type" msgstr "Tipo" @@ -2898,7 +2897,7 @@ #: sfx2/uiconfig/ui/cmisline.ui:73 msgctxt "cmisline|no" msgid "No" -msgstr "" +msgstr "No" #. kDKBB #: sfx2/uiconfig/ui/commandpopup.ui:35 @@ -3088,7 +3087,7 @@ #: sfx2/uiconfig/ui/developmenttool.ui:445 msgctxt "developmenttool|name" msgid "Name" -msgstr "" +msgstr "Nombre" #. VFqAa #: sfx2/uiconfig/ui/developmenttool.ui:358 @@ -3112,7 +3111,7 @@ #: sfx2/uiconfig/ui/developmenttool.ui:474 msgctxt "developmenttool|type" msgid "Type" -msgstr "" +msgstr "Tipo" #. zpXuY #: sfx2/uiconfig/ui/developmenttool.ui:488 @@ -3653,7 +3652,7 @@ #: sfx2/uiconfig/ui/inputdialog.ui:87 msgctxt "inputdialog|label" msgid "Height:" -msgstr "" +msgstr "Altaria:" #. HwHjx #: sfx2/uiconfig/ui/licensedialog.ui:8 @@ -3704,7 +3703,7 @@ #: sfx2/uiconfig/ui/linefragment.ui:200 msgctxt "linefragment|no" msgid "No" -msgstr "" +msgstr "No" #. muk9B #: sfx2/uiconfig/ui/linkeditdialog.ui:8 @@ -3927,7 +3926,7 @@ #: sfx2/uiconfig/ui/managestylepage.ui:33 msgctxt "managestylepage|nameft" msgid "_Name:" -msgstr "" +msgstr "_Nombre:" #. VroAG #: sfx2/uiconfig/ui/managestylepage.ui:47 @@ -4943,7 +4942,7 @@ #: sfx2/uiconfig/ui/templatedlg.ui:356 msgctxt "templatedlg|treeviewcolumn1" msgid "Name" -msgstr "" +msgstr "Nombre" #. 7EJRA #: sfx2/uiconfig/ui/templatedlg.ui:373 @@ -4967,7 +4966,7 @@ #: sfx2/uiconfig/ui/templatedlg.ui:418 msgctxt "templatedlg|treeviewcolumn5" msgid "Size" -msgstr "" +msgstr "Grandaria" #. j39jM #: sfx2/uiconfig/ui/templatedlg.ui:444 diff -Nru libreoffice-7.4.6/translations/source/an/starmath/messages.po libreoffice-7.4.7/translations/source/an/starmath/messages.po --- libreoffice-7.4.6/translations/source/an/starmath/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/starmath/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:51+0200\n" -"PO-Revision-Date: 2023-02-28 18:04+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -2495,7 +2495,7 @@ #: starmath/inc/strings.hrc:366 msgctxt "STR_SIZE" msgid "size" -msgstr "" +msgstr "grandaria" #. qFRcG #: starmath/inc/strings.hrc:367 @@ -2687,7 +2687,7 @@ #: starmath/inc/strings.hrc:397 msgctxt "RID_PRINTUIOPT_SIZE" msgid "Size" -msgstr "" +msgstr "Grandaria" #. egvJg #: starmath/inc/strings.hrc:398 @@ -2802,7 +2802,7 @@ #: starmath/uiconfig/smath/ui/catalogdialog.ui:43 msgctxt "catalogdialog|insert" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. w4mRB #: starmath/uiconfig/smath/ui/catalogdialog.ui:52 @@ -2972,10 +2972,9 @@ #. NydaV #: starmath/uiconfig/smath/ui/fontsizedialog.ui:307 -#, fuzzy msgctxt "fontsizedialog|label7" msgid "_Functions:" -msgstr "Funcions" +msgstr "_Funcions:" #. nPkA2 #: starmath/uiconfig/smath/ui/fontsizedialog.ui:321 @@ -2999,7 +2998,7 @@ #: starmath/uiconfig/smath/ui/fontsizedialog.ui:375 msgctxt "fontsizedialog|label1" msgid "Relative Sizes" -msgstr "" +msgstr "Grandarias relativas" #. 5Tw56 #: starmath/uiconfig/smath/ui/fontsizedialog.ui:407 @@ -3015,24 +3014,21 @@ #. wWEhm #: starmath/uiconfig/smath/ui/fonttypedialog.ui:20 -#, fuzzy msgctxt "fonttypedialog|menuitem2" msgid "_Functions" -msgstr "Funcions" +msgstr "_Funcions" #. vGby3 #: starmath/uiconfig/smath/ui/fonttypedialog.ui:28 -#, fuzzy msgctxt "fonttypedialog|menuitem3" msgid "_Numbers" -msgstr "Numeros" +msgstr "_Numeros" #. usaFG #: starmath/uiconfig/smath/ui/fonttypedialog.ui:36 -#, fuzzy msgctxt "fonttypedialog|menuitem4" msgid "_Text" -msgstr "Texto" +msgstr "_Texto" #. FRdhi #: starmath/uiconfig/smath/ui/fonttypedialog.ui:44 @@ -3092,10 +3088,9 @@ #. BCVC9 #: starmath/uiconfig/smath/ui/fonttypedialog.ui:224 -#, fuzzy msgctxt "fonttypedialog|label2" msgid "_Functions:" -msgstr "Funcions" +msgstr "_Funcions:" #. zFooF #: starmath/uiconfig/smath/ui/fonttypedialog.ui:241 @@ -3233,10 +3228,9 @@ #. 39bX5 #: starmath/uiconfig/smath/ui/printeroptions.ui:128 -#, fuzzy msgctxt "printeroptions|originalsize" msgid "Original size" -msgstr "Mida ~orichinal" +msgstr "Grandaria orichinal" #. ZFnze #: starmath/uiconfig/smath/ui/printeroptions.ui:137 @@ -3278,7 +3272,7 @@ #: starmath/uiconfig/smath/ui/printeroptions.ui:225 msgctxt "printeroptions|label5" msgid "Size" -msgstr "" +msgstr "Grandaria" #. sChtK #: starmath/uiconfig/smath/ui/savedefaultsdialog.ui:7 diff -Nru libreoffice-7.4.6/translations/source/an/svtools/messages.po libreoffice-7.4.7/translations/source/an/svtools/messages.po --- libreoffice-7.4.6/translations/source/an/svtools/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/svtools/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-12-27 12:05+0000\n" +"PO-Revision-Date: 2023-04-17 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542195186.000000\n" #. fLdeV @@ -2545,7 +2545,7 @@ #: svtools/inc/langtab.hrc:29 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "[None]" -msgstr "" +msgstr "[Garra]" #. aUWzb #: svtools/inc/langtab.hrc:30 @@ -5123,13 +5123,13 @@ #: svtools/uiconfig/ui/graphicexport.ui:159 msgctxt "graphicexport|label5" msgid "Width:" -msgstr "" +msgstr "Amplaria:" #. drQDY #: svtools/uiconfig/ui/graphicexport.ui:173 msgctxt "graphicexport|label6" msgid "Height:" -msgstr "" +msgstr "Altaria:" #. exCyd #: svtools/uiconfig/ui/graphicexport.ui:184 @@ -5171,13 +5171,13 @@ #: svtools/uiconfig/ui/graphicexport.ui:277 msgctxt "graphicexport|liststore2" msgid "cm" -msgstr "" +msgstr "cm" #. X5dLV #: svtools/uiconfig/ui/graphicexport.ui:278 msgctxt "graphicexport|liststore2" msgid "mm" -msgstr "" +msgstr "mm" #. 6vWVJ #: svtools/uiconfig/ui/graphicexport.ui:279 @@ -5225,7 +5225,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:322 msgctxt "graphicexport|label1" msgid "Size" -msgstr "" +msgstr "Grandaria" #. Dc5fy #: svtools/uiconfig/ui/graphicexport.ui:348 @@ -5261,7 +5261,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:442 msgctxt "graphicexport|label9" msgid "Quality" -msgstr "" +msgstr "Calidat" #. AHkNV #: svtools/uiconfig/ui/graphicexport.ui:478 @@ -5393,10 +5393,9 @@ #. Jfbgx #: svtools/uiconfig/ui/graphicexport.ui:800 -#, fuzzy msgctxt "graphicexport|color1rb" msgid "Color" -msgstr "~Color" +msgstr "Color" #. LNHEi #: svtools/uiconfig/ui/graphicexport.ui:809 @@ -5426,7 +5425,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:871 msgctxt "graphicexport|level1rb" msgid "Level 1" -msgstr "Libel 1" +msgstr "Livel 1" #. pEcBC #: svtools/uiconfig/ui/graphicexport.ui:880 @@ -5438,7 +5437,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:891 msgctxt "graphicexport|level2rb" msgid "Level 2" -msgstr "Libel 2" +msgstr "Livel 2" #. wiWrE #: svtools/uiconfig/ui/graphicexport.ui:900 diff -Nru libreoffice-7.4.6/translations/source/an/svx/messages.po libreoffice-7.4.7/translations/source/an/svx/messages.po --- libreoffice-7.4.6/translations/source/an/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542022409.000000\n" #. 3GkZj @@ -1479,31 +1479,31 @@ #: include/svx/strings.hrc:268 msgctxt "STR_ItemValNO" msgid "No" -msgstr "" +msgstr "No" #. aeEuB #: include/svx/strings.hrc:269 msgctxt "STR_ItemValCAPTIONTYPE1" msgid "Type 1" -msgstr "" +msgstr "Tipo 1" #. BFaLY #: include/svx/strings.hrc:270 msgctxt "STR_ItemValCAPTIONTYPE2" msgid "Type 2" -msgstr "" +msgstr "Tipo 2" #. KFMjw #: include/svx/strings.hrc:271 msgctxt "STR_ItemValCAPTIONTYPE3" msgid "Type 3" -msgstr "" +msgstr "Tipo 3" #. 48UKA #: include/svx/strings.hrc:272 msgctxt "STR_ItemValCAPTIONTYPE4" msgid "Type 4" -msgstr "" +msgstr "Tipo 4" #. DVm64 #: include/svx/strings.hrc:273 @@ -2631,13 +2631,13 @@ #: include/svx/strings.hrc:460 msgctxt "SIP_SA_LOGICSIZEWIDTH" msgid "Logical width" -msgstr "" +msgstr "Amplaria lochica" #. 9Niyk #: include/svx/strings.hrc:461 msgctxt "SIP_SA_LOGICSIZEHEIGHT" msgid "Logical height" -msgstr "" +msgstr "Altaria lochica" #. yFmvh #: include/svx/strings.hrc:462 @@ -3166,10 +3166,9 @@ #. mrTdk #: include/svx/strings.hrc:550 -#, fuzzy msgctxt "RID_SVXSTR_COLOR" msgid "Color" -msgstr "~Color" +msgstr "Color" #. 5bjE5 #: include/svx/strings.hrc:551 @@ -7389,7 +7388,7 @@ #: include/svx/strings.hrc:1320 msgctxt "RID_SVXSTR_INSERT_TEXT" msgid "Insert" -msgstr "" +msgstr "Ficar" #. 2BBEb #: include/svx/strings.hrc:1321 @@ -13105,7 +13104,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:114 msgctxt "adddataitemdialog|nameft" msgid "_Name:" -msgstr "" +msgstr "_Nombre:" #. C2HJB #: svx/uiconfig/ui/adddataitemdialog.ui:128 @@ -13287,7 +13286,7 @@ #: svx/uiconfig/ui/addinstancedialog.ui:104 msgctxt "addinstancedialog|label2" msgid "_Name:" -msgstr "" +msgstr "_Nombre:" #. SyBuY #: svx/uiconfig/ui/addinstancedialog.ui:118 @@ -13341,7 +13340,7 @@ #: svx/uiconfig/ui/addmodeldialog.ui:125 msgctxt "addmodeldialog|label2" msgid "_Name:" -msgstr "" +msgstr "_Nombre:" #. BCjAN #: svx/uiconfig/ui/addmodeldialog.ui:139 @@ -13384,7 +13383,7 @@ #: svx/uiconfig/ui/addsubmissiondialog.ui:105 msgctxt "addsubmissiondialog|label2" msgid "_Name:" -msgstr "" +msgstr "_Nombre:" #. uHEpR #: svx/uiconfig/ui/addsubmissiondialog.ui:119 @@ -14172,7 +14171,7 @@ #: svx/uiconfig/ui/compressgraphicdialog.ui:144 msgctxt "compressgraphicdialog|radio-jpeg" msgid "JPEG Quality" -msgstr "" +msgstr "Calidat JPEG" #. JwCYu #: svx/uiconfig/ui/compressgraphicdialog.ui:148 @@ -14208,13 +14207,13 @@ #: svx/uiconfig/ui/compressgraphicdialog.ui:334 msgctxt "compressgraphicdialog|label3" msgid "Width:" -msgstr "" +msgstr "Amplaria:" #. KyX6E #: svx/uiconfig/ui/compressgraphicdialog.ui:349 msgctxt "compressgraphicdialog|label4" msgid "Height:" -msgstr "" +msgstr "Altaria:" #. dDL5D #: svx/uiconfig/ui/compressgraphicdialog.ui:364 @@ -14542,7 +14541,7 @@ #: svx/uiconfig/ui/defaultshapespanel.ui:139 msgctxt "defaultshapespanel|label4" msgid "Basic Shapes" -msgstr "" +msgstr "Formas basicas" #. 6QEJj #: svx/uiconfig/ui/defaultshapespanel.ui:171 @@ -17401,7 +17400,7 @@ #: svx/uiconfig/ui/gallerymenu2.ui:12 msgctxt "gallerymenu2|add" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. UyxJv #: svx/uiconfig/ui/gallerymenu2.ui:20 @@ -19623,7 +19622,7 @@ #: svx/uiconfig/ui/sidebarline.ui:105 msgctxt "sidebarline|widthlabel" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. HokBv #: svx/uiconfig/ui/sidebarline.ui:119 @@ -19633,10 +19632,9 @@ #. hqTEs #: svx/uiconfig/ui/sidebarline.ui:147 -#, fuzzy msgctxt "sidebarline|colorlabel" msgid "_Color:" -msgstr "~Color" +msgstr "_Color:" #. oEqwH #: svx/uiconfig/ui/sidebarline.ui:161 @@ -19927,7 +19925,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:119 msgctxt "sidebarpossize|widthlabel" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. AfcEf #: svx/uiconfig/ui/sidebarpossize.ui:134 @@ -19939,13 +19937,13 @@ #: svx/uiconfig/ui/sidebarpossize.ui:140 msgctxt "sidebarpossize|selectwidth" msgid "Width" -msgstr "" +msgstr "Amplaria" #. BrACQ #: svx/uiconfig/ui/sidebarpossize.ui:153 msgctxt "sidebarpossize|heightlabel" msgid "H_eight:" -msgstr "" +msgstr "A_ltaria:" #. 6iopt #: svx/uiconfig/ui/sidebarpossize.ui:168 @@ -19957,7 +19955,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:174 msgctxt "sidebarpossize|selectheight" msgid "Height" -msgstr "" +msgstr "Altaria" #. nLGDu #: svx/uiconfig/ui/sidebarpossize.ui:185 diff -Nru libreoffice-7.4.6/translations/source/an/sw/messages.po libreoffice-7.4.7/translations/source/an/sw/messages.po --- libreoffice-7.4.6/translations/source/an/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -706,7 +706,7 @@ #: sw/inc/inspectorproperties.hrc:35 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Color" -msgstr "" +msgstr "Color" #. 5Btdu #: sw/inc/inspectorproperties.hrc:36 @@ -2567,7 +2567,7 @@ #: sw/inc/strings.hrc:73 msgctxt "STR_POOLFRM_LABEL" msgid "Labels" -msgstr "~Etiquetas" +msgstr "Etiquetas" #. JV6pZ #. Template names @@ -3564,7 +3564,7 @@ #: sw/inc/strings.hrc:245 msgctxt "STR_LAB_TITLE" msgid "Labels" -msgstr "~Etiquetas" +msgstr "Etiquetas" #. 2otxp #: sw/inc/strings.hrc:247 @@ -3636,7 +3636,7 @@ #: sw/inc/strings.hrc:258 msgctxt "SW_STR_NONE" msgid "[None]" -msgstr "" +msgstr "[Garra]" #. C4tz3 #: sw/inc/strings.hrc:259 @@ -3809,7 +3809,7 @@ #: sw/inc/strings.hrc:287 msgctxt "STR_NUMRULE_DEFNAME" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. Vk8M5 #: sw/inc/strings.hrc:288 @@ -5859,10 +5859,9 @@ #. X8Bfu #: sw/inc/strings.hrc:639 -#, fuzzy msgctxt "STR_PRINTOPTUI_COLOR" msgid "Color" -msgstr "~Color" +msgstr "Color" #. kQDcq #: sw/inc/strings.hrc:640 @@ -6191,7 +6190,7 @@ #: sw/inc/strings.hrc:695 msgctxt "STR_EDIT_INSERT" msgid "Insert" -msgstr "" +msgstr "Ficar" #. AT9SS #: sw/inc/strings.hrc:696 @@ -7832,25 +7831,25 @@ #: sw/inc/strings.hrc:1005 msgctxt "FMT_NUM_ABC" msgid "A B C" -msgstr "" +msgstr "A B C" #. jm7G7 #: sw/inc/strings.hrc:1006 msgctxt "FMT_NUM_SABC" msgid "a b c" -msgstr "" +msgstr "a b c" #. ETgy7 #: sw/inc/strings.hrc:1007 msgctxt "FMT_NUM_ABC_N" msgid "A .. AA .. AAA" -msgstr "" +msgstr "A .. AA .. AAA" #. m84Fb #: sw/inc/strings.hrc:1008 msgctxt "FMT_NUM_SABC_N" msgid "a .. aa .. aaa" -msgstr "" +msgstr "a .. aa .. aaa" #. d9YtB #: sw/inc/strings.hrc:1009 @@ -8019,7 +8018,7 @@ #: sw/inc/strings.hrc:1046 msgctxt "FMT_REF_ONLYSEQNO" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. QBGit #: sw/inc/strings.hrc:1047 @@ -8177,13 +8176,13 @@ #: sw/inc/strings.hrc:1080 msgctxt "STR_WIDTH" msgid "Width" -msgstr "" +msgstr "Amplaria" #. rdxcb #: sw/inc/strings.hrc:1081 msgctxt "STR_HEIGHT" msgid "Height" -msgstr "" +msgstr "Altaria" #. DQm2h #: sw/inc/strings.hrc:1082 @@ -8392,19 +8391,19 @@ #: sw/inc/strings.hrc:1118 msgctxt "STR_FRM_WIDTH" msgid "Width:" -msgstr "" +msgstr "Amplaria:" #. 2GYT7 #: sw/inc/strings.hrc:1119 msgctxt "STR_FRM_FIXEDHEIGHT" msgid "Fixed height:" -msgstr "" +msgstr "Altaria fixa:" #. QrFMi #: sw/inc/strings.hrc:1120 msgctxt "STR_FRM_MINHEIGHT" msgid "Min. height:" -msgstr "" +msgstr "Altaria minima:" #. kLiYd #: sw/inc/strings.hrc:1121 @@ -9328,7 +9327,7 @@ #: sw/inc/strings.hrc:1279 msgctxt "STR_INSERT_GRAPHIC" msgid "Insert Image" -msgstr "" +msgstr "Ficar una imachen" #. GWzLN #: sw/inc/strings.hrc:1280 @@ -9396,7 +9395,7 @@ #: sw/inc/strings.hrc:1290 msgctxt "STR_PAGE_COUNT" msgid "Page %1 of %2" -msgstr "" +msgstr "Pachina %1 de %2" #. HSbzS #: sw/inc/strings.hrc:1291 @@ -10002,7 +10001,7 @@ #: sw/inc/strings.hrc:1417 msgctxt "optredlinepage|insertedpreview" msgid "Insert" -msgstr "" +msgstr "Ficar" #. NL48o #: sw/inc/strings.hrc:1418 @@ -10069,14 +10068,13 @@ #: sw/inc/strings.hrc:1429 msgctxt "createautomarkdialog|no" msgid "No" -msgstr "" +msgstr "No" #. KhKwa #: sw/inc/strings.hrc:1431 -#, fuzzy msgctxt "sidebarwrap|customlabel" msgid "Custom" -msgstr "Personalizau 1" +msgstr "Personalizau" #. aHi89 #: sw/inc/strings.hrc:1432 @@ -11039,7 +11037,7 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:392 msgctxt "autoformattable|label2" msgid "Formatting" -msgstr "~Formatación" +msgstr "Formatación" #. DFUNM #: sw/uiconfig/swriter/ui/autoformattable.ui:425 @@ -11244,10 +11242,9 @@ #. GdqFE #: sw/uiconfig/swriter/ui/autotext.ui:404 -#, fuzzy msgctxt "autotext|nameft" msgid "Name:" -msgstr "Nombre" +msgstr "Nombre:" #. Ji8CJ #: sw/uiconfig/swriter/ui/autotext.ui:417 @@ -11326,7 +11323,7 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:93 msgctxt "bibliographyentry|insert" msgid "Insert" -msgstr "" +msgstr "Ficar" #. rUZwC #: sw/uiconfig/swriter/ui/bibliographyentry.ui:101 @@ -11914,7 +11911,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:280 msgctxt "cardmediumpage|insert|tooltip_text" msgid "Insert" -msgstr "" +msgstr "Ficar" #. nF3rB #: sw/uiconfig/swriter/ui/cardmediumpage.ui:286 @@ -12098,21 +12095,19 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:30 msgctxt "charurlpage|label36" msgid "URL:" -msgstr "" +msgstr "URL:" #. m8wNo #: sw/uiconfig/swriter/ui/charurlpage.ui:44 -#, fuzzy msgctxt "charurlpage|label37" msgid "Name:" -msgstr "Nombre" +msgstr "Nombre:" #. AwvtG #: sw/uiconfig/swriter/ui/charurlpage.ui:58 -#, fuzzy msgctxt "charurlpage|textft" msgid "Text:" -msgstr "Texto" +msgstr "Texto:" #. ujQMD #: sw/uiconfig/swriter/ui/charurlpage.ui:72 @@ -12241,7 +12236,7 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:180 msgctxt "columnpage|widthft" msgid "Width:" -msgstr "" +msgstr "Amplaria:" #. 4jPyG #: sw/uiconfig/swriter/ui/columnpage.ui:208 @@ -12308,13 +12303,13 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:453 msgctxt "columnpage|linewidthft" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. fEm38 #: sw/uiconfig/swriter/ui/columnpage.ui:467 msgctxt "columnpage|lineheightft" msgid "H_eight:" -msgstr "" +msgstr "A_ltaria:" #. vKEyi #: sw/uiconfig/swriter/ui/columnpage.ui:481 @@ -12362,10 +12357,9 @@ #. kkGNR #: sw/uiconfig/swriter/ui/columnpage.ui:586 -#, fuzzy msgctxt "columnpage|linecolorft" msgid "_Color:" -msgstr "~Color" +msgstr "_Color:" #. 9o7DQ #: sw/uiconfig/swriter/ui/columnpage.ui:620 @@ -12484,7 +12478,7 @@ #: sw/uiconfig/swriter/ui/columnwidth.ui:116 msgctxt "columnwidth|label3" msgid "Width:" -msgstr "" +msgstr "Amplaria:" #. RaBTY #: sw/uiconfig/swriter/ui/columnwidth.ui:135 @@ -12502,7 +12496,7 @@ #: sw/uiconfig/swriter/ui/columnwidth.ui:168 msgctxt "columnwidth|label1" msgid "Width" -msgstr "" +msgstr "Amplaria" #. PKRsa #: sw/uiconfig/swriter/ui/columnwidth.ui:193 @@ -13762,7 +13756,7 @@ #: sw/uiconfig/swriter/ui/endnotepage.ui:38 msgctxt "endnotepage|label19" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. pP3Tn #: sw/uiconfig/swriter/ui/endnotepage.ui:50 @@ -13926,7 +13920,7 @@ #: sw/uiconfig/swriter/ui/envaddresspage.ui:231 msgctxt "envaddresspage|insert|tooltip_text" msgid "Insert" -msgstr "" +msgstr "Ficar" #. xYXzg #: sw/uiconfig/swriter/ui/envaddresspage.ui:237 @@ -13974,7 +13968,7 @@ #: sw/uiconfig/swriter/ui/envdialog.ui:40 msgctxt "envdialog|user" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. Fe8UQ #: sw/uiconfig/swriter/ui/envdialog.ui:54 @@ -14183,7 +14177,7 @@ #: sw/uiconfig/swriter/ui/envformatpage.ui:644 msgctxt "envformatpage|label3" msgid "Size" -msgstr "" +msgstr "Grandaria" #. pujVp #: sw/uiconfig/swriter/ui/envformatpage.ui:658 @@ -14432,7 +14426,7 @@ #: sw/uiconfig/swriter/ui/fielddialog.ui:37 msgctxt "fielddialog|ok" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. AYDUA #: sw/uiconfig/swriter/ui/fielddialog.ui:46 @@ -15373,7 +15367,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:38 msgctxt "footnotepage|label6" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. GDDSE #: sw/uiconfig/swriter/ui/footnotepage.ui:50 @@ -16048,10 +16042,9 @@ #. kJNV9 #: sw/uiconfig/swriter/ui/frmaddpage.ui:81 -#, fuzzy msgctxt "frmaddpage|name_label" msgid "_Name:" -msgstr "Nombre" +msgstr "_Nombre:" #. SWXna #: sw/uiconfig/swriter/ui/frmaddpage.ui:95 @@ -16320,7 +16313,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:161 msgctxt "frmtypepage|autowidth" msgid "AutoSize" -msgstr "" +msgstr "Grandaria automatica" #. br57s #: sw/uiconfig/swriter/ui/frmtypepage.ui:170 @@ -16368,7 +16361,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:278 msgctxt "frmtypepage|autoheight" msgid "AutoSize" -msgstr "" +msgstr "Grandaria automatica" #. X7XFK #: sw/uiconfig/swriter/ui/frmtypepage.ui:287 @@ -16390,10 +16383,9 @@ #. rMhep #: sw/uiconfig/swriter/ui/frmtypepage.ui:319 -#, fuzzy msgctxt "frmtypepage|origsize" msgid "_Original Size" -msgstr "Mida ~orichinal" +msgstr "Grandaria _orichinal" #. 4ZHrz #: sw/uiconfig/swriter/ui/frmtypepage.ui:327 @@ -16405,7 +16397,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:343 msgctxt "frmtypepage|label2" msgid "Size" -msgstr "" +msgstr "Grandaria" #. EwYPL #: sw/uiconfig/swriter/ui/frmtypepage.ui:374 @@ -16604,10 +16596,9 @@ #. DHeCW #: sw/uiconfig/swriter/ui/frmurlpage.ui:86 -#, fuzzy msgctxt "frmurlpage|name_label" msgid "_Name:" -msgstr "Nombre" +msgstr "_Nombre:" #. F3UJE #: sw/uiconfig/swriter/ui/frmurlpage.ui:100 @@ -16690,10 +16681,9 @@ #. 9aib6 #: sw/uiconfig/swriter/ui/gotopagedialog.ui:101 -#, fuzzy msgctxt "gotopagedialog|page_label" msgid "Page:" -msgstr "Pachinas" +msgstr "Pachina:" #. 6mAhi #: sw/uiconfig/swriter/ui/hfmenubutton.ui:24 @@ -16765,7 +16755,7 @@ #: sw/uiconfig/swriter/ui/indexentry.ui:92 msgctxt "indexentry|insert" msgid "Insert" -msgstr "" +msgstr "Ficar" #. qbAWn #: sw/uiconfig/swriter/ui/indexentry.ui:170 @@ -17372,7 +17362,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:118 msgctxt "insertbookmark|insert" msgid "Insert" -msgstr "" +msgstr "Ficar" #. 56gF6 #: sw/uiconfig/swriter/ui/insertbookmark.ui:136 @@ -17402,13 +17392,13 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:253 msgctxt "insertbookmark|name" msgid "Name" -msgstr "" +msgstr "Nombre" #. fXQTX #: sw/uiconfig/swriter/ui/insertbookmark.ui:267 msgctxt "insertbookmark|text" msgid "Text" -msgstr "" +msgstr "Texto" #. ha65m #: sw/uiconfig/swriter/ui/insertbookmark.ui:281 @@ -17542,7 +17532,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:216 msgctxt "insertbreak|liststore1" msgid "[None]" -msgstr "" +msgstr "[Garra]" #. 8WDUc #: sw/uiconfig/swriter/ui/insertbreak.ui:220 @@ -17703,7 +17693,7 @@ #: sw/uiconfig/swriter/ui/insertcaption.ui:429 msgctxt "insertcaption|liststore1" msgid "[None]" -msgstr "" +msgstr "[Garra]" #. hKFSr #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:57 @@ -17745,10 +17735,9 @@ #. vzNne #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:202 -#, fuzzy msgctxt "insertdbcolumnsdialog|astext" msgid "_Text" -msgstr "Texto" +msgstr "_Texto" #. dYQPq #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:211 @@ -18011,7 +18000,7 @@ #: sw/uiconfig/swriter/ui/insertfootnote.ui:253 msgctxt "insertfootnote|label1" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. dFGBy #: sw/uiconfig/swriter/ui/insertfootnote.ui:282 @@ -18089,7 +18078,7 @@ #: sw/uiconfig/swriter/ui/insertscript.ui:178 msgctxt "insertscript|url" msgid "URL:" -msgstr "" +msgstr "URL:" #. sYT47 #: sw/uiconfig/swriter/ui/insertscript.ui:188 @@ -18118,10 +18107,9 @@ #. pmdTa #: sw/uiconfig/swriter/ui/insertscript.ui:235 -#, fuzzy msgctxt "insertscript|text" msgid "Text:" -msgstr "Texto" +msgstr "Texto:" #. D694K #: sw/uiconfig/swriter/ui/insertscript.ui:245 @@ -18151,7 +18139,7 @@ #: sw/uiconfig/swriter/ui/insertsectiondialog.ui:37 msgctxt "insertsectiondialog|ok" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. V4AJG #: sw/uiconfig/swriter/ui/insertsectiondialog.ui:110 @@ -18195,7 +18183,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:53 msgctxt "inserttable|ok" msgid "Insert" -msgstr "" +msgstr "Ficar" #. AzYkF #: sw/uiconfig/swriter/ui/inserttable.ui:61 @@ -18217,10 +18205,9 @@ #. nrFC2 #: sw/uiconfig/swriter/ui/inserttable.ui:161 -#, fuzzy msgctxt "inserttable|label3" msgid "_Name:" -msgstr "Nombre" +msgstr "_Nombre:" #. ScZyw #: sw/uiconfig/swriter/ui/inserttable.ui:175 @@ -18258,7 +18245,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:254 msgctxt "inserttable|label1" msgid "General" -msgstr "" +msgstr "Cheneral" #. dYEPP #: sw/uiconfig/swriter/ui/inserttable.ui:287 @@ -18342,7 +18329,7 @@ #: sw/uiconfig/swriter/ui/labeldialog.ui:8 msgctxt "labeldialog|LabelDialog" msgid "Labels" -msgstr "~Etiquetas" +msgstr "Etiquetas" #. jnQsV #: sw/uiconfig/swriter/ui/labeldialog.ui:25 @@ -18360,7 +18347,7 @@ #: sw/uiconfig/swriter/ui/labeldialog.ui:144 msgctxt "labeldialog|labels" msgid "Labels" -msgstr "~Etiquetas" +msgstr "Etiquetas" #. G378Z #: sw/uiconfig/swriter/ui/labeldialog.ui:192 @@ -18409,13 +18396,13 @@ #: sw/uiconfig/swriter/ui/labelformatpage.ui:64 msgctxt "labelformatpage|label3" msgid "_Width:" -msgstr "" +msgstr "A_mplaria:" #. 2ZXTL #: sw/uiconfig/swriter/ui/labelformatpage.ui:78 msgctxt "labelformatpage|label4" msgid "_Height:" -msgstr "" +msgstr "A_ltaria:" #. BedQe #: sw/uiconfig/swriter/ui/labelformatpage.ui:92 @@ -18744,10 +18731,9 @@ #. D8TER #: sw/uiconfig/swriter/ui/linenumbering.ui:365 -#, fuzzy msgctxt "linenumbering|text" msgid "Text:" -msgstr "Texto" +msgstr "Texto:" #. Lsj2A #: sw/uiconfig/swriter/ui/linenumbering.ui:379 @@ -19317,7 +19303,7 @@ #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:74 msgctxt "readonlymenu|STR_EDIT_INSERT" msgid "Insert" -msgstr "" +msgstr "Ficar" #. MCA6M #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:84 @@ -19341,7 +19327,7 @@ #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:108 msgctxt "mastercontextmenu|STR_INSERT_TEXT" msgid "Text" -msgstr "" +msgstr "Texto" #. diCCN #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:126 @@ -20002,7 +19988,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:216 msgctxt "mmresultemaildialog|liststore1" msgid "Adobe PDF-Document" -msgstr "" +msgstr "Documento PDF" #. LpGGz #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:217 @@ -20014,7 +20000,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:218 msgctxt "mmresultemaildialog|liststore1" msgid "HTML Message" -msgstr "" +msgstr "Mensache HTML" #. eCCZz #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:219 @@ -20967,7 +20953,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:179 msgctxt "navigatorpanel|STR_INSERT_TEXT" msgid "Text" -msgstr "" +msgstr "Texto" #. xuEPo #: sw/uiconfig/swriter/ui/navigatorpanel.ui:266 @@ -21191,7 +21177,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:825 msgctxt "navigatorpanel|insert|tooltip_text" msgid "Insert" -msgstr "" +msgstr "Ficar" #. 9kmNw #: sw/uiconfig/swriter/ui/navigatorpanel.ui:829 @@ -21312,13 +21298,13 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:5728 msgctxt "WriterNotebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. b4aNG #: sw/uiconfig/swriter/ui/notebookbar.ui:5833 msgctxt "WriterNotebookbar|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "F~icar" #. 4t2ES #: sw/uiconfig/swriter/ui/notebookbar.ui:6899 @@ -21504,13 +21490,13 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5785 msgctxt "notebookbar_compact|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. CDXv3 #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5840 msgctxt "notebookbar_compact|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "F~icar" #. a5p4d #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6619 @@ -21948,7 +21934,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9936 msgctxt "notebookbar_groupedbar_full|InsertButton" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. F9WAK #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5586 @@ -22408,28 +22394,25 @@ #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1724 msgctxt "notebookbar_groups|insertgrouplabel" msgid "Insert" -msgstr "" +msgstr "Ficar" #. zMDvT #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1760 -#, fuzzy msgctxt "notebookbar_groups|tablestyleb" msgid "Style" -msgstr "E~stilo" +msgstr "Estilo" #. Cswyz #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1784 -#, fuzzy msgctxt "notebookbar_groups|tablerowsb" msgid "Rows" -msgstr "Ringlera" +msgstr "Ringleras" #. jvo7D #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1804 -#, fuzzy msgctxt "notebookbar_groups|tablecolumnsb" msgid "Columns" -msgstr "Columna" +msgstr "Columnas" #. bvYvp #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:2007 @@ -22581,61 +22564,61 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:60 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Level 1" -msgstr "Libel 1" +msgstr "Livel 1" #. Ae7iR #: sw/uiconfig/swriter/ui/numparapage.ui:61 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Level 2" -msgstr "Libel 2" +msgstr "Livel 2" #. ygFj9 #: sw/uiconfig/swriter/ui/numparapage.ui:62 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Level 3" -msgstr "Libel 3" +msgstr "Livel 3" #. NJN9p #: sw/uiconfig/swriter/ui/numparapage.ui:63 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Level 4" -msgstr "Libel 4" +msgstr "Livel 4" #. cLGAT #: sw/uiconfig/swriter/ui/numparapage.ui:64 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Level 5" -msgstr "Libel 5" +msgstr "Livel 5" #. iNtCJ #: sw/uiconfig/swriter/ui/numparapage.ui:65 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Level 6" -msgstr "Libel 6" +msgstr "Livel 6" #. 7QbBG #: sw/uiconfig/swriter/ui/numparapage.ui:66 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Level 7" -msgstr "Libel 7" +msgstr "Livel 7" #. q9rXy #: sw/uiconfig/swriter/ui/numparapage.ui:67 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Level 8" -msgstr "Libel 8" +msgstr "Livel 8" #. 2BdWa #: sw/uiconfig/swriter/ui/numparapage.ui:68 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Level 9" -msgstr "Libel 9" +msgstr "Livel 9" #. PgJyA #: sw/uiconfig/swriter/ui/numparapage.ui:69 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Level 10" -msgstr "Libel 10" +msgstr "Livel 10" #. chMYQ #: sw/uiconfig/swriter/ui/numparapage.ui:73 @@ -23720,7 +23703,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:64 msgctxt "optredlinepage|insert" msgid "[None]" -msgstr "" +msgstr "[Garra]" #. mhAvC #: sw/uiconfig/swriter/ui/optredlinepage.ui:65 @@ -23899,16 +23882,15 @@ #. paCGy #: sw/uiconfig/swriter/ui/optredlinepage.ui:481 -#, fuzzy msgctxt "optredlinepage|markcolor_label" msgid "_Color:" -msgstr "~Color" +msgstr "_Color:" #. T9Fd9 #: sw/uiconfig/swriter/ui/optredlinepage.ui:525 msgctxt "optredlinepage|markpos" msgid "[None]" -msgstr "" +msgstr "[Garra]" #. gj7eD #: sw/uiconfig/swriter/ui/optredlinepage.ui:526 @@ -24279,7 +24261,7 @@ #: sw/uiconfig/swriter/ui/outlinenumbering.ui:260 msgctxt "outlinenumbering|numbering" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. eTpmZ #: sw/uiconfig/swriter/ui/outlinenumbering.ui:307 @@ -24303,7 +24285,7 @@ #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:81 msgctxt "outlinenumberingpage|label1" msgid "Level" -msgstr "Libel" +msgstr "Livel" #. JfB3i #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:114 @@ -24370,7 +24352,7 @@ #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:274 msgctxt "outlinenumberingpage|label2" msgid "Numbering" -msgstr "" +msgstr "Numeración" #. bFwTy #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:322 @@ -24419,7 +24401,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:100 msgctxt "outlinepositionpage|1" msgid "Level" -msgstr "Libel" +msgstr "Livel" #. uiBLi #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:136 @@ -24732,13 +24714,13 @@ #: sw/uiconfig/swriter/ui/pageformatpanel.ui:38 msgctxt "pageformatpanel|width" msgid "Width:" -msgstr "" +msgstr "Amplaria:" #. GBL8j #: sw/uiconfig/swriter/ui/pageformatpanel.ui:52 msgctxt "pageformatpanel|height" msgid "Height:" -msgstr "" +msgstr "Altaria:" #. yEcLA #: sw/uiconfig/swriter/ui/pageformatpanel.ui:66 @@ -25473,10 +25455,9 @@ #. uFDfh #: sw/uiconfig/swriter/ui/printeroptions.ui:213 -#, fuzzy msgctxt "printeroptions|label5" msgid "Color" -msgstr "~Color" +msgstr "Color" #. kCb92 #: sw/uiconfig/swriter/ui/printeroptions.ui:234 @@ -26420,7 +26401,7 @@ #: sw/uiconfig/swriter/ui/rowheight.ui:143 msgctxt "rowheight|label1" msgid "Height" -msgstr "" +msgstr "Altaria" #. 2ZKqA #: sw/uiconfig/swriter/ui/rowheight.ui:168 @@ -26951,7 +26932,7 @@ #: sw/uiconfig/swriter/ui/selecttabledialog.ui:149 msgctxt "selecttabledialog|column2" msgid "Type" -msgstr "" +msgstr "Tipo" #. GoUkf #: sw/uiconfig/swriter/ui/selecttabledialog.ui:160 @@ -29049,7 +29030,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:546 msgctxt "tocentriespage|insert" msgid "_Insert" -msgstr "" +msgstr "F_icar" #. sWDTV #: sw/uiconfig/swriter/ui/tocentriespage.ui:553 @@ -29732,31 +29713,31 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:874 msgctxt "tocindexpage|brackets" msgid "[none]" -msgstr "" +msgstr "[garra]" #. hpS6x #: sw/uiconfig/swriter/ui/tocindexpage.ui:875 msgctxt "tocindexpage|brackets" msgid "[]" -msgstr "" +msgstr "[ ]" #. RcAuE #: sw/uiconfig/swriter/ui/tocindexpage.ui:876 msgctxt "tocindexpage|brackets" msgid "()" -msgstr "" +msgstr "( )" #. 68zRA #: sw/uiconfig/swriter/ui/tocindexpage.ui:877 msgctxt "tocindexpage|brackets" msgid "{}" -msgstr "" +msgstr "{ }" #. fSv5S #: sw/uiconfig/swriter/ui/tocindexpage.ui:878 msgctxt "tocindexpage|brackets" msgid "<>" -msgstr "" +msgstr "< >" #. kcJWC #: sw/uiconfig/swriter/ui/tocindexpage.ui:882 diff -Nru libreoffice-7.4.6/translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-7.4.7/translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-7.4.6/translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-09-21 09:48+0000\n" +"PO-Revision-Date: 2023-03-22 09:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1371934654.000000\n" #. sc9Hg @@ -144,7 +144,7 @@ "Dlg_No\n" "value.text" msgid "No" -msgstr "" +msgstr "No" #. Ck54C #: WikiExtension.xcu diff -Nru libreoffice-7.4.6/translations/source/an/vcl/messages.po libreoffice-7.4.7/translations/source/an/vcl/messages.po --- libreoffice-7.4.6/translations/source/an/vcl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/vcl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-08-24 12:29+0200\n" -"PO-Revision-Date: 2022-09-21 09:47+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542022411.000000\n" #. k5jTM @@ -990,7 +990,7 @@ #: vcl/inc/strings.hrc:97 msgctxt "STR_TEXTUNDO_INSERTCHARS" msgid "insert '$1'" -msgstr "" +msgstr "ficar «$1»" #. 66FYV #: vcl/inc/strings.hrc:98 @@ -1123,19 +1123,19 @@ #: vcl/inc/units.hrc:29 msgctxt "SV_FUNIT_STRINGS" msgid "cm" -msgstr "" +msgstr "cm" #. B5tmt #: vcl/inc/units.hrc:30 msgctxt "SV_FUNIT_STRINGS" msgid "m" -msgstr "" +msgstr "m" #. XyxEA #: vcl/inc/units.hrc:31 msgctxt "SV_FUNIT_STRINGS" msgid "km" -msgstr "" +msgstr "km" #. z6nfj #: vcl/inc/units.hrc:32 @@ -1258,20 +1258,20 @@ #: vcl/inc/units.hrc:54 msgctxt "SV_FUNIT_STRINGS" msgid "°" -msgstr "" +msgstr "°" #. heHMt #: vcl/inc/units.hrc:55 msgctxt "SV_FUNIT_STRINGS" msgid "sec" -msgstr "" +msgstr "s" #. zE8rv #. To translators: This is the last entry of the sequence of measurement unit names #: vcl/inc/units.hrc:57 msgctxt "SV_FUNIT_STRINGS" msgid "ms" -msgstr "" +msgstr "ms" #. AdRDT #: vcl/inc/font/OpenTypeFeatureStrings.hrc:25 @@ -2377,7 +2377,7 @@ #: vcl/uiconfig/ui/printdialog.ui:1401 msgctxt "printdialog|generallabel" msgid "General" -msgstr "" +msgstr "Cheneral" #. CzGM4 #: vcl/uiconfig/ui/printdialog.ui:1455 @@ -2460,10 +2460,9 @@ #. WXFof #: vcl/uiconfig/ui/printerdevicepage.ui:237 -#, fuzzy msgctxt "printerdevicepage|colorspace" msgid "Color" -msgstr "~Color" +msgstr "Color" #. VGAv4 #: vcl/uiconfig/ui/printerdevicepage.ui:238 @@ -2475,13 +2474,13 @@ #: vcl/uiconfig/ui/printerdevicepage.ui:251 msgctxt "printerdevicepage|colordepth" msgid "8 Bit" -msgstr "" +msgstr "8 bits" #. HAD2U #: vcl/uiconfig/ui/printerdevicepage.ui:252 msgctxt "printerdevicepage|colordepth" msgid "24 Bit" -msgstr "" +msgstr "24 bits" #. A6FnW #: vcl/uiconfig/ui/printerpaperpage.ui:20 diff -Nru libreoffice-7.4.6/translations/source/an/wizards/messages.po libreoffice-7.4.7/translations/source/an/wizards/messages.po --- libreoffice-7.4.6/translations/source/an/wizards/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/wizards/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-19 13:14+0100\n" -"PO-Revision-Date: 2022-03-02 17:39+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+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.15.2\n" "X-POOTLE-MTIME: 1516028905.000000\n" #. gbiMx @@ -80,7 +80,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:42 msgctxt "RID_COMMON_START_10" msgid "No" -msgstr "" +msgstr "No" #. Bj7fX #: wizards/com/sun/star/wizards/common/strings.hrc:43 @@ -344,13 +344,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:87 msgctxt "RID_LETTERWIZARDDIALOG_START_32" msgid "~Height:" -msgstr "" +msgstr "A~ltaria:" #. EEiBz #: wizards/com/sun/star/wizards/common/strings.hrc:88 msgctxt "RID_LETTERWIZARDDIALOG_START_33" msgid "~Width:" -msgstr "" +msgstr "A~mplaria:" #. 6xJQn #: wizards/com/sun/star/wizards/common/strings.hrc:89 @@ -368,13 +368,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:91 msgctxt "RID_LETTERWIZARDDIALOG_START_36" msgid "Height:" -msgstr "" +msgstr "Altaria:" #. 99LRq #: wizards/com/sun/star/wizards/common/strings.hrc:92 msgctxt "RID_LETTERWIZARDDIALOG_START_37" msgid "Width:" -msgstr "" +msgstr "Amplaria:" #. ZDVjd #: wizards/com/sun/star/wizards/common/strings.hrc:93 @@ -392,7 +392,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:95 msgctxt "RID_LETTERWIZARDDIALOG_START_40" msgid "Height:" -msgstr "" +msgstr "Altaria:" #. HjHXQ #: wizards/com/sun/star/wizards/common/strings.hrc:96 @@ -402,7 +402,6 @@ #. Y4XMj #: wizards/com/sun/star/wizards/common/strings.hrc:97 -#, fuzzy msgctxt "RID_LETTERWIZARDDIALOG_START_43" msgid "Name:" msgstr "Nombre:" @@ -1453,7 +1452,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:288 msgctxt "RID_AGENDAWIZARDDIALOG_START_68" msgid "Insert" -msgstr "" +msgstr "Ficar" #. 8tmWD #: wizards/com/sun/star/wizards/common/strings.hrc:289 diff -Nru libreoffice-7.4.6/translations/source/an/wizards/source/resources.po libreoffice-7.4.7/translations/source/an/wizards/source/resources.po --- libreoffice-7.4.6/translations/source/an/wizards/source/resources.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/wizards/source/resources.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-10-27 12:31+0100\n" -"PO-Revision-Date: 2022-03-02 17:39+0000\n" +"PO-Revision-Date: 2023-03-22 09:33+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.15.2\n" "X-POOTLE-MTIME: 1516047263.000000\n" #. 8UKfi @@ -113,7 +113,7 @@ "RID_COMMON_10\n" "property.text" msgid "No" -msgstr "" +msgstr "No" #. wMBK7 #: resources_en_US.properties @@ -888,13 +888,12 @@ #. F6vrA #: resources_en_US.properties -#, fuzzy msgctxt "" "resources_en_US.properties\n" "RID_REPORT_93\n" "property.text" msgid "Page:" -msgstr "Pachina" +msgstr "Pachina:" #. v8gUF #: resources_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/an/writerperfect/messages.po libreoffice-7.4.7/translations/source/an/writerperfect/messages.po --- libreoffice-7.4.6/translations/source/an/writerperfect/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/writerperfect/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-23 11:46+0100\n" -"PO-Revision-Date: 2022-03-02 17:39+0000\n" +"PO-Revision-Date: 2023-03-22 09:33+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.15.2\n" "X-POOTLE-MTIME: 1525785849.000000\n" #. DXXuk @@ -193,7 +193,7 @@ #: writerperfect/uiconfig/ui/exportepub.ui:207 msgctxt "exportepub|generalft" msgid "General" -msgstr "" +msgstr "Cheneral" #. ET3pr #: writerperfect/uiconfig/ui/exportepub.ui:244 diff -Nru libreoffice-7.4.6/translations/source/an/xmlsecurity/messages.po libreoffice-7.4.7/translations/source/an/xmlsecurity/messages.po --- libreoffice-7.4.6/translations/source/an/xmlsecurity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/an/xmlsecurity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:21+0100\n" -"PO-Revision-Date: 2022-01-17 16:38+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+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.15.2\n" "X-POOTLE-MTIME: 1527110898.000000\n" #. EyJrF @@ -564,7 +564,7 @@ #: xmlsecurity/uiconfig/ui/macrosecuritydialog.ui:138 msgctxt "macrosecuritydialog|SecurityLevelPage" msgid "Security Level" -msgstr "Libel de seguranza" +msgstr "Livel de seguranza" #. S9vgm #: xmlsecurity/uiconfig/ui/macrosecuritydialog.ui:185 @@ -812,7 +812,7 @@ #: xmlsecurity/uiconfig/ui/viewcertdialog.ui:111 msgctxt "viewcertdialog|general" msgid "General" -msgstr "" +msgstr "Cheneral" #. A9Dfz #: xmlsecurity/uiconfig/ui/viewcertdialog.ui:158 diff -Nru libreoffice-7.4.6/translations/source/ast/basctl/messages.po libreoffice-7.4.7/translations/source/ast/basctl/messages.po --- libreoffice-7.4.6/translations/source/ast/basctl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/basctl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-03-22 09:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -543,7 +543,7 @@ #: basctl/inc/strings.hrc:109 msgctxt "RID_STR_CREATE_LANG" msgid "" -msgstr "" +msgstr "" #. jnJoF #: basctl/inc/strings.hrc:110 diff -Nru libreoffice-7.4.6/translations/source/ast/basic/messages.po libreoffice-7.4.7/translations/source/ast/basic/messages.po --- libreoffice-7.4.6/translations/source/ast/basic/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/basic/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2022-07-06 16:24+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516029123.000000\n" #. CacXi @@ -116,7 +116,7 @@ #: basic/inc/basic.hrc:48 msgctxt "RID_BASIC_START" msgid "Sub-procedure or function procedure not defined." -msgstr "Subprocedimientu o procedimientu de función ensin definir." +msgstr "Soprocedimientu o procedimientu de función ensin definir." #. oF6VV #: basic/inc/basic.hrc:49 diff -Nru libreoffice-7.4.6/translations/source/ast/chart2/messages.po libreoffice-7.4.7/translations/source/ast/chart2/messages.po --- libreoffice-7.4.6/translations/source/ast/chart2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/chart2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1540149368.000000\n" #. NCRDD @@ -2615,7 +2615,7 @@ #: chart2/uiconfig/ui/sidebarseries.ui:239 msgctxt "sidebarseries|axis_label" msgid "Align Series to Axis" -msgstr "Alliñar la serie cola exa" +msgstr "Alliniar la serie cola exa" #. fvnkG #: chart2/uiconfig/ui/sidebarseries.ui:255 @@ -3581,7 +3581,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:385 msgctxt "tp_ChartType|sort" msgid "_Sort by X values" -msgstr "_Ordenar por valores de X" +msgstr "_Ordenar per valores de X" #. tbgi3 #: chart2/uiconfig/ui/tp_ChartType.ui:392 @@ -4733,7 +4733,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:500 msgctxt "tp_Scale|extended_tip|MT_STEPHELP" msgid "Defines the interval for the subdivision of the axes." -msgstr "Define l'intervalu pa la subdivisión de les exes." +msgstr "Define l'intervalu pa la sodivisión de les exes." #. snFL6 #: chart2/uiconfig/ui/tp_Scale.ui:521 @@ -4805,7 +4805,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:84 msgctxt "tp_SeriesToAxis|label1" msgid "Align Data Series to" -msgstr "Alliñar la serie de datos a" +msgstr "Alliniar la serie de datos a" #. GAF6S #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:123 diff -Nru libreoffice-7.4.6/translations/source/ast/connectivity/messages.po libreoffice-7.4.7/translations/source/ast/connectivity/messages.po --- libreoffice-7.4.6/translations/source/ast/connectivity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/connectivity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2022-08-02 21:51+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1535974914.000000\n" #. 9KHB8 @@ -381,7 +381,7 @@ #: connectivity/inc/strings.hrc:86 msgctxt "STR_SORT_BY_COL_ONLY" msgid "Can only sort by table columns." -msgstr "Namái se pue ordenar poles columnes de la tabla." +msgstr "Namái se pue ordenar peles columnes de la tabla." #. 7R6eC #. File diff -Nru libreoffice-7.4.6/translations/source/ast/cui/messages.po libreoffice-7.4.7/translations/source/ast/cui/messages.po --- libreoffice-7.4.6/translations/source/ast/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -56,7 +56,7 @@ #: cui/inc/numcategories.hrc:24 msgctxt "numberingformatpage|liststore1" msgid "Time" -msgstr "Tiempu" +msgstr "Hora" #. xnmxf #: cui/inc/numcategories.hrc:25 @@ -163,7 +163,7 @@ #: cui/inc/strings.hrc:25 msgctxt "RID_SVXSTR_KEY_GRAPHICS_PATH" msgid "Images" -msgstr "Imaxes" +msgstr "Imáxenes" #. AnM4M #: cui/inc/strings.hrc:26 @@ -330,7 +330,7 @@ "The icon %ICONNAME is already contained in the image list.\n" "Would you like to replace the existing icon?" msgstr "" -"L'iconu %ICONNAME yá ta na llista d'imaxes.\n" +"L'iconu %ICONNAME yá ta na llista d'imáxenes.\n" "¿Quies trocar l'iconu esistente?" #. FRvQe @@ -2195,7 +2195,7 @@ #: cui/inc/tipoftheday.hrc:54 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writing a book? %PRODUCTNAME master document lets you manage large documents as a container for individual %PRODUCTNAME Writer files." -msgstr "¿Tas escribiendo un llibru? El documentu maestru de %PRODUCTNAME te permite xestionar documentos grandes como contenedor de ficheros individuales de Writer de %PRODUCTNAME." +msgstr "¿Tas escribiendo un llibru? El documentu principal de %PRODUCTNAME te permite xestionar documentos grandes como contenedor de ficheros individuales de Writer de %PRODUCTNAME." #. GQABP #. local help missing @@ -2647,7 +2647,7 @@ #: cui/inc/tipoftheday.hrc:130 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via View ▸ User Interface." -msgstr "" +msgstr "Ye posible camudar l'aspeutu de %PRODUCTNAME en Ver ▸ Interfaz d'usuariu." #. J853i #: cui/inc/tipoftheday.hrc:131 @@ -3888,7 +3888,7 @@ #: cui/inc/treeopt.hrc:84 msgctxt "SID_SW_EDITOPTIONS_RES" msgid "AutoCaption" -msgstr "Pie automáticu" +msgstr "Lleenda automática" #. aGnq6 #: cui/inc/treeopt.hrc:85 @@ -4736,7 +4736,7 @@ #: cui/uiconfig/ui/additionsdialog.ui:25 msgctxt "bulletandposition|gallery" msgid "Sort by" -msgstr "Ordenar por" +msgstr "Ordenar per" #. LhkwF #: cui/uiconfig/ui/additionsdialog.ui:34 @@ -5337,19 +5337,19 @@ #: cui/uiconfig/ui/autocorrectdialog.ui:52 msgctxt "autocorrectdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. Qqmqp #: cui/uiconfig/ui/autocorrectdialog.ui:71 msgctxt "autocorrectdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. HBfWE #: cui/uiconfig/ui/autocorrectdialog.ui:120 msgctxt "autocorrectdialog|label1" msgid "Replacements and exceptions for language:" -msgstr "Sustituciones y esceiciones pa la llingua:" +msgstr "Troqueos y esceiciones pa la llingua:" #. uThXE #: cui/uiconfig/ui/autocorrectdialog.ui:137 @@ -8491,7 +8491,7 @@ #: cui/uiconfig/ui/editmodulesdialog.ui:307 msgctxt "lingudicts" msgid "Specifies the language and the available spelling, hyphenation and Thesaurus sub-modules for the selected module." -msgstr "" +msgstr "Especifica la llingua y los somódulos d'ortografía, guionáu y sinónimos disponibles pal módulu esbilláu." #. ZF8AG #: cui/uiconfig/ui/editmodulesdialog.ui:330 @@ -8635,7 +8635,7 @@ #: cui/uiconfig/ui/effectspage.ui:186 msgctxt "effectspage|positionft" msgid "_Position:" -msgstr "" +msgstr "_Posición:" #. 5okoC #: cui/uiconfig/ui/effectspage.ui:200 @@ -9789,7 +9789,7 @@ #: cui/uiconfig/ui/gradientpage.ui:315 msgctxt "gradientpage|centerft" msgid "Center ( X / Y ):" -msgstr "" +msgstr "Centru (X/Y):" #. mP62s #: cui/uiconfig/ui/gradientpage.ui:339 @@ -9918,13 +9918,13 @@ #: cui/uiconfig/ui/graphictestdlg.ui:7 msgctxt "graphictestdlg|GraphicTestsDialog" msgid "Run Graphics Tests" -msgstr "" +msgstr "Executar pruebes gráfiques" #. YaE3d #: cui/uiconfig/ui/graphictestdlg.ui:26 msgctxt "graphictestdlg|gptest_downld" msgid "Download Results" -msgstr "" +msgstr "Baxar los resultaos" #. RpYik #: cui/uiconfig/ui/graphictestdlg.ui:53 @@ -12485,10 +12485,9 @@ #. CqT9E #: cui/uiconfig/ui/macroassignpage.ui:190 -#, fuzzy msgctxt "macroassignpage|label1" msgid "Assign" -msgstr "_Asignar" +msgstr "Atribuyir" #. v49A4 #: cui/uiconfig/ui/macroassignpage.ui:204 @@ -12929,13 +12928,13 @@ #: cui/uiconfig/ui/multipathdialog.ui:45 msgctxt "multipathdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. LCieM #: cui/uiconfig/ui/multipathdialog.ui:64 msgctxt "multipathdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. yfGYp #: cui/uiconfig/ui/multipathdialog.ui:125 @@ -14627,7 +14626,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:236 msgctxt "optfltrembedpage|highlighting" msgid "Highlighting" -msgstr "Resalte" +msgstr "Rescamplu" #. qBuyX #: cui/uiconfig/ui/optfltrembedpage.ui:245 @@ -15225,10 +15224,9 @@ #. nJtoS #: cui/uiconfig/ui/opthtmlpage.ui:438 -#, fuzzy msgctxt "opthtmlpage|savegrflocal" msgid "_Copy local images to Internet" -msgstr "_Copiar les imaxes llocales a Internet" +msgstr "_Copiar les imáxenes llocales a Internet" #. fPAEu #: cui/uiconfig/ui/opthtmlpage.ui:447 @@ -15318,7 +15316,7 @@ #: cui/uiconfig/ui/optionsdialog.ui:94 msgctxt "optionsdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. QVDXj #: cui/uiconfig/ui/optionsdialog.ui:111 @@ -16531,7 +16529,7 @@ #: cui/uiconfig/ui/optsavepage.ui:405 msgctxt "optsavepage|doctype" msgid "Master document" -msgstr "Documentu maestru" +msgstr "Documentu principal" #. Dfgxy #: cui/uiconfig/ui/optsavepage.ui:406 @@ -16747,10 +16745,9 @@ #. GqVkJ #: cui/uiconfig/ui/optsecuritypage.ui:478 -#, fuzzy msgctxt "optsecuritypage|label1" msgid "Security Options and Warnings" -msgstr "Opciones de seguridá y alertes" +msgstr "Opciones de seguranza y alertes" #. rwtuC #: cui/uiconfig/ui/optsecuritypage.ui:492 @@ -17595,7 +17592,7 @@ #: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" -msgstr "" +msgstr "Executar pruebes gráfiques" #. 872fQ #: cui/uiconfig/ui/pageformatpage.ui:41 @@ -17735,13 +17732,13 @@ #: cui/uiconfig/ui/pageformatpage.ui:570 msgctxt "pageformatpage|liststorePageLayout" msgid "Right and left" -msgstr "Derecha y esquierda" +msgstr "Derecha ya izquierda" #. xetCH #: cui/uiconfig/ui/pageformatpage.ui:571 msgctxt "pageformatpage|liststorePageLayout" msgid "Mirrored" -msgstr "Reflejado" +msgstr "Espeyáu" #. 47EHF #: cui/uiconfig/ui/pageformatpage.ui:572 @@ -18411,10 +18408,9 @@ #. S8mpk #: cui/uiconfig/ui/patterntabpage.ui:269 -#, fuzzy msgctxt "patterntabpage|label6" msgid "Background Color:" -msgstr "Color de fondu" +msgstr "Color de fondu:" #. h8fmT #: cui/uiconfig/ui/patterntabpage.ui:293 @@ -18511,7 +18507,7 @@ #: cui/uiconfig/ui/pickgraphicpage.ui:61 msgctxt "pickgraphicpage|errorft" msgid "The Gallery theme 'Bullets' is empty (no images)." -msgstr "El tema «Bullets» de la Galería ta baleru (nun hai imaxes)." +msgstr "El tema «Bullets» de la Galería ta baleru (nun hai imáxenes)." #. NrrxW #: cui/uiconfig/ui/pickgraphicpage.ui:71 @@ -19506,14 +19502,13 @@ #: cui/uiconfig/ui/searchformatdialog.ui:521 msgctxt "searchformatdialog|background" msgid "Highlighting" -msgstr "Resalte" +msgstr "Rescamplu" #. nVjsf #: cui/uiconfig/ui/securityoptionsdialog.ui:8 -#, fuzzy msgctxt "securityoptionsdialog|SecurityOptionsDialog" msgid "Security Options and Warnings" -msgstr "Opciones de seguridá y alertes" +msgstr "Opciones de seguranza y alertes" #. yGPGa #: cui/uiconfig/ui/securityoptionsdialog.ui:106 @@ -19648,13 +19643,13 @@ #: cui/uiconfig/ui/selectpathdialog.ui:42 msgctxt "selectpathdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. 2rXGN #: cui/uiconfig/ui/selectpathdialog.ui:61 msgctxt "selectpathdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. oN39A #: cui/uiconfig/ui/selectpathdialog.ui:122 @@ -21365,7 +21360,7 @@ #: cui/uiconfig/ui/textdialog.ui:183 msgctxt "textdialog|RID_SVXPAGE_TEXTANIMATION" msgid "Text Animation" -msgstr "Animación de testu" +msgstr "Animación del testu" #. iq2Cq #: cui/uiconfig/ui/textdialog.ui:231 @@ -22153,7 +22148,7 @@ #: cui/uiconfig/ui/tsaurldialog.ui:227 msgctxt "tsaurldialog|label1" msgid "TSA URL" -msgstr "" +msgstr "URL de la TSA" #. esrrh #: cui/uiconfig/ui/twolinespage.ui:37 diff -Nru libreoffice-7.4.6/translations/source/ast/dbaccess/messages.po libreoffice-7.4.7/translations/source/ast/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/ast/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/dbaccess/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2022-11-02 09:02+0000\n" +"PO-Revision-Date: 2023-03-27 19:33+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: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1524566374.000000\n" #. BiN6g @@ -1010,7 +1010,7 @@ #: dbaccess/inc/strings.hrc:181 msgctxt "RID_STR_TABLES_HELP_TEXT_WIZARD" msgid "Choose from a selection of business and personal table samples, which you customize to create a table." -msgstr "Escueyi una esbilla d'amueses de tables personales y comerciales, que puedes personalizar pa facer una tabla." +msgstr "Escueyi una esbilla d'amosances de tables personales y comerciales, que puedes personalizar pa facer una tabla." #. GmBmQ #: dbaccess/inc/strings.hrc:182 @@ -1287,7 +1287,7 @@ #: dbaccess/inc/strings.hrc:233 msgctxt "STR_TAB_FIELD_COLUMN_DATATYPE" msgid "Field Type" -msgstr "Tipu de Campu" +msgstr "Triba de campu" #. LFBuq #: dbaccess/inc/strings.hrc:234 @@ -5145,10 +5145,9 @@ #. HScTi #: dbaccess/uiconfig/ui/textpage.ui:34 -#, fuzzy msgctxt "textpage|textfile" msgid "Plain text files (*.txt)" -msgstr "Ficheros de testu ensin formato (*.txt)" +msgstr "Ficheros de testu planu (*.txt)" #. i2ntJ #: dbaccess/uiconfig/ui/textpage.ui:50 diff -Nru libreoffice-7.4.6/translations/source/ast/desktop/messages.po libreoffice-7.4.7/translations/source/ast/desktop/messages.po --- libreoffice-7.4.6/translations/source/ast/desktop/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/desktop/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-09-21 09:48+0000\n" +"PO-Revision-Date: 2023-04-08 19:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1535974915.000000\n" #. v2iwK @@ -519,7 +519,7 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"Tsa a piques d'instalar la versión $NEW de la estensión «$NAME».\n" +"Tas a piques d'instalar la versión $NEW de la estensión «$NAME».\n" "La versión antigua $DEPLOYED yá ta instalada.\n" "Calca «Aceutar» pa trocar la estensión instalada.\n" "Calca «Encaboxar» pa detener la instalación." @@ -533,10 +533,10 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"Ta a piques d'instalar la versión $NEW de la estensión «$NAME».\n" +"Tas a piques d'instalar la versión $NEW de la estensión «$NAME».\n" "La versión antigua $DEPLOYED, nomada «$OLDNAME», yá ta instalada.\n" -"Calque «Aceutar» pa trocar la estensión instalada.\n" -"Calque «Encaboxar» pa encaboxar la instalación." +"Calca «Aceutar» pa trocar la estensión instalada.\n" +"Calca «Encaboxar» pa encaboxar la instalación." #. J2X2b #: desktop/inc/strings.hrc:144 @@ -548,7 +548,7 @@ #: desktop/inc/strings.hrc:145 msgctxt "RID_DLG_UPDATE_NOINSTALLABLE" msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'." -msgstr "Nun hai anovamientos disponibles. Pa ver tolos anovamientos, conseña la caxella 'Ver tolos anovamientos'." +msgstr "Nun hai anovamientos disponibles. Pa ver tolos anovamientos, conseña la caxella «Amosar tolos anovamientos»." #. rq2Co #: desktop/inc/strings.hrc:146 diff -Nru libreoffice-7.4.6/translations/source/ast/editeng/messages.po libreoffice-7.4.7/translations/source/ast/editeng/messages.po --- libreoffice-7.4.6/translations/source/ast/editeng/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/editeng/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:49+0200\n" -"PO-Revision-Date: 2022-10-24 11:13+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516043757.000000\n" #. BHYB4 @@ -27,7 +27,7 @@ #: editeng/inc/strings.hrc:20 msgctxt "RID_SVXITEMS_HORJUST_LEFT" msgid "Align left" -msgstr "Alliñar a la esquierda" +msgstr "Alliniar a la izquierda" #. icuN2 #: editeng/inc/strings.hrc:21 @@ -39,7 +39,7 @@ #: editeng/inc/strings.hrc:22 msgctxt "RID_SVXITEMS_HORJUST_RIGHT" msgid "Align right" -msgstr "Alliñar a la drecha" +msgstr "Alliniar a la derecha" #. BFCFs #: editeng/inc/strings.hrc:23 @@ -789,13 +789,13 @@ #: include/editeng/editrids.hrc:142 msgctxt "RID_SVXITEMS_ADJUST_LEFT" msgid "Align left" -msgstr "Alliñar a la esquierda" +msgstr "Alliniar a la izquierda" #. kZVff #: include/editeng/editrids.hrc:143 msgctxt "RID_SVXITEMS_ADJUST_RIGHT" msgid "Align right" -msgstr "Alliñar a la drecha" +msgstr "Alliniar a la derecha" #. hyfvV #: include/editeng/editrids.hrc:144 @@ -1524,31 +1524,31 @@ #: include/editeng/editrids.hrc:268 msgctxt "RID_SVXITEMS_PARAVERTALIGN_AUTO" msgid "Automatic text alignment" -msgstr "Alliñación automática del testu" +msgstr "Alliniación automática del testu" #. HCEhG #: include/editeng/editrids.hrc:269 msgctxt "RID_SVXITEMS_PARAVERTALIGN_BASELINE" msgid "Text aligned to base line" -msgstr "Testu alliñáu a la llinia de base" +msgstr "Testu alliniáu a la llinia de base" #. FBiBq #: include/editeng/editrids.hrc:270 msgctxt "RID_SVXITEMS_PARAVERTALIGN_TOP" msgid "Text aligned top" -msgstr "Testu alliñáu arriba" +msgstr "Testu alliniáu arriba" #. KLkUY #: include/editeng/editrids.hrc:271 msgctxt "RID_SVXITEMS_PARAVERTALIGN_CENTER" msgid "Text aligned middle" -msgstr "Testu alliñáu al medio" +msgstr "Testu alliniáu al medio" #. TTtYF #: include/editeng/editrids.hrc:272 msgctxt "RID_SVXITEMS_PARAVERTALIGN_BOTTOM" msgid "Text aligned bottom" -msgstr "Testu alliñáu abaxo" +msgstr "Testu alliniáu abaxo" #. PQaAE #: include/editeng/editrids.hrc:273 diff -Nru libreoffice-7.4.6/translations/source/ast/extensions/messages.po libreoffice-7.4.7/translations/source/ast/extensions/messages.po --- libreoffice-7.4.6/translations/source/ast/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-08-02 21:51+0000\n" +"PO-Revision-Date: 2023-03-22 09:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542022490.000000\n" #. cBx8W @@ -1321,7 +1321,7 @@ #: extensions/inc/strings.hrc:107 msgctxt "RID_STR_FORMATKEY" msgid "Formatting" -msgstr "Formatiando" +msgstr "Formatu" #. DD4EJ #: extensions/inc/strings.hrc:108 diff -Nru libreoffice-7.4.6/translations/source/ast/extras/source/autocorr/emoji.po libreoffice-7.4.7/translations/source/ast/extras/source/autocorr/emoji.po --- libreoffice-7.4.6/translations/source/ast/extras/source/autocorr/emoji.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/extras/source/autocorr/emoji.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-11 13:37+0000\n" +"PO-Revision-Date: 2023-04-04 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516043758.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -158,29 +158,27 @@ "GREEK_CAPITAL_LETTER_GAMMA\n" "LngText.text" msgid "Gamma" -msgstr "Gamma" +msgstr "Gama" #. Δ (U+00394), see http://wiki.documentfoundation.org/Emoji #. XThsR #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_DELTA\n" "LngText.text" msgid "Delta" -msgstr "delta" +msgstr "Delta" #. Ε (U+00395), see http://wiki.documentfoundation.org/Emoji #. 8xpsp #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_EPSILON\n" "LngText.text" msgid "Epsilon" -msgstr "epsilon" +msgstr "Épsilon" #. Ζ (U+00396), see http://wiki.documentfoundation.org/Emoji #. VbdgL @@ -228,13 +226,12 @@ #. Κ (U+0039A), see http://wiki.documentfoundation.org/Emoji #. j5BVA #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_KAPPA\n" "LngText.text" msgid "Kappa" -msgstr "kappa" +msgstr "Kapa" #. Λ (U+0039B), see http://wiki.documentfoundation.org/Emoji #. gGXpA @@ -255,7 +252,7 @@ "GREEK_CAPITAL_LETTER_MU\n" "LngText.text" msgid "Mu" -msgstr "" +msgstr "Mi" #. Ν (U+0039D), see http://wiki.documentfoundation.org/Emoji #. zT27g @@ -265,7 +262,7 @@ "GREEK_CAPITAL_LETTER_NU\n" "LngText.text" msgid "Nu" -msgstr "" +msgstr "Ni" #. Ξ (U+0039E), see http://wiki.documentfoundation.org/Emoji #. GJAnw @@ -280,13 +277,12 @@ #. Ο (U+0039F), see http://wiki.documentfoundation.org/Emoji #. aWg4V #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_OMICRON\n" "LngText.text" msgid "Omicron" -msgstr "omicron" +msgstr "Ómicron" #. Π (U+003A0), see http://wiki.documentfoundation.org/Emoji #. Mohkh @@ -306,7 +302,7 @@ "GREEK_CAPITAL_LETTER_RHO\n" "LngText.text" msgid "Rho" -msgstr "" +msgstr "Ro" #. Σ (U+003A3), see http://wiki.documentfoundation.org/Emoji #. tY2FG @@ -332,13 +328,12 @@ #. Υ (U+003A5), see http://wiki.documentfoundation.org/Emoji #. XYQqL #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_UPSILON\n" "LngText.text" msgid "Upsilon" -msgstr "epsilon" +msgstr "Ípsilon" #. Φ (U+003A6), see http://wiki.documentfoundation.org/Emoji #. C3riA @@ -409,7 +404,7 @@ "GREEK_SMALL_LETTER_GAMMA\n" "LngText.text" msgid "gamma" -msgstr "gamma" +msgstr "gama" #. δ (U+003B4), see http://wiki.documentfoundation.org/Emoji #. qZEC9 @@ -429,7 +424,7 @@ "GREEK_SMALL_LETTER_EPSILON\n" "LngText.text" msgid "epsilon" -msgstr "epsilon" +msgstr "épsilon" #. ζ (U+003B6), see http://wiki.documentfoundation.org/Emoji #. wdzS2 @@ -479,7 +474,7 @@ "GREEK_SMALL_LETTER_KAPPA\n" "LngText.text" msgid "kappa" -msgstr "kappa" +msgstr "kapa" #. λ (U+003BB), see http://wiki.documentfoundation.org/Emoji #. hneie @@ -499,7 +494,7 @@ "GREEK_SMALL_LETTER_MU\n" "LngText.text" msgid "mu" -msgstr "mu" +msgstr "mi" #. ν (U+003BD), see http://wiki.documentfoundation.org/Emoji #. AK8Mx @@ -509,7 +504,7 @@ "GREEK_SMALL_LETTER_NU\n" "LngText.text" msgid "nu" -msgstr "nu" +msgstr "ni" #. ξ (U+003BE), see http://wiki.documentfoundation.org/Emoji #. 7SGbf @@ -529,7 +524,7 @@ "GREEK_SMALL_LETTER_OMICRON\n" "LngText.text" msgid "omicron" -msgstr "omicron" +msgstr "ómicron" #. π (U+003C0), see http://wiki.documentfoundation.org/Emoji #. CEbhy @@ -549,7 +544,7 @@ "GREEK_SMALL_LETTER_RHO\n" "LngText.text" msgid "rho" -msgstr "rho" +msgstr "ro" #. ς (U+003C2), see http://wiki.documentfoundation.org/Emoji #. MSvCj @@ -590,7 +585,7 @@ "GREEK_SMALL_LETTER_UPSILON\n" "LngText.text" msgid "upsilon" -msgstr "ipsilon" +msgstr "ípsilon" #. φ (U+003C6), see http://wiki.documentfoundation.org/Emoji #. 7excc @@ -1999,7 +1994,7 @@ "BALLOT_BOX\n" "LngText.text" msgid "checkbox" -msgstr "" +msgstr "caxellu" #. ☑ (U+02611), see http://wiki.documentfoundation.org/Emoji #. g5A4j @@ -2009,7 +2004,7 @@ "BALLOT_BOX_WITH_CHECK\n" "LngText.text" msgid "checkbox2" -msgstr "" +msgstr "caxellu2" #. ☒ (U+02612), see http://wiki.documentfoundation.org/Emoji #. WCu8C @@ -2019,7 +2014,7 @@ "BALLOT_BOX_WITH_X\n" "LngText.text" msgid "checkbox3" -msgstr "" +msgstr "caxellu3" #. ☓ (U+02613), see http://wiki.documentfoundation.org/Emoji #. XgRVb @@ -11729,7 +11724,7 @@ "BALLOT_BOX_WITH_BOLD_SCRIPT_X\n" "LngText.text" msgid "checkbox4" -msgstr "" +msgstr "caxellu4" #. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji #. htBDW @@ -13029,7 +13024,7 @@ "BALLOT_BOX_WITH_BOLD_CHECK\n" "LngText.text" msgid "checkbox5" -msgstr "" +msgstr "caxellu5" #. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji #. K9FkL @@ -13079,7 +13074,7 @@ "BALLOT_BOX_WITH_SCRIPT_X\n" "LngText.text" msgid "checkbox6" -msgstr "" +msgstr "caxellu6" #. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji #. C3B4F diff -Nru libreoffice-7.4.6/translations/source/ast/filter/messages.po libreoffice-7.4.7/translations/source/ast/filter/messages.po --- libreoffice-7.4.6/translations/source/ast/filter/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/filter/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-15 22:28+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-04 21:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516029128.000000\n" #. 5AQgJ @@ -514,16 +514,15 @@ #. ST3Rc #: filter/uiconfig/ui/pdfgeneralpage.ui:349 -#, fuzzy msgctxt "pdfgeneralpage|label6" msgid "_Quality:" -msgstr "_Calidá" +msgstr "_Calidá:" #. cFwGA #: filter/uiconfig/ui/pdfgeneralpage.ui:371 msgctxt "pdfgeneralpage|label2" msgid "Images" -msgstr "Imaxes" +msgstr "Imáxenes" #. NwjSn #: filter/uiconfig/ui/pdfgeneralpage.ui:401 @@ -542,7 +541,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:427 msgctxt "pdfgeneralpage|extended_tip|watermarkentry" msgid "Insert the text for the watermark signature." -msgstr "" +msgstr "Inxerta'l testu de la robla de marca d'agua." #. JtBsL #: filter/uiconfig/ui/pdfgeneralpage.ui:439 @@ -776,7 +775,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:911 msgctxt "pdfgeneralpage|extended_tip|hiddenpages" msgid "Exports document hidden slides." -msgstr "" +msgstr "Esporta les diapositives anubríes del documentu." #. ghuXR #: filter/uiconfig/ui/pdfgeneralpage.ui:922 diff -Nru libreoffice-7.4.6/translations/source/ast/filter/source/config/fragments/filters.po libreoffice-7.4.7/translations/source/ast/filter/source/config/fragments/filters.po --- libreoffice-7.4.6/translations/source/ast/filter/source/config/fragments/filters.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/filter/source/config/fragments/filters.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-07 19:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -44,7 +44,7 @@ "UIName\n" "value.text" msgid "Apple Keynote" -msgstr "Apple Keynote" +msgstr "Keynote d'Apple" #. 5bCwT #: AppleNumbers.xcu @@ -54,7 +54,7 @@ "UIName\n" "value.text" msgid "Apple Numbers" -msgstr "" +msgstr "Numbers d'Apple" #. 7wGVb #: ApplePages.xcu @@ -64,7 +64,7 @@ "UIName\n" "value.text" msgid "Apple Pages" -msgstr "" +msgstr "Pages d'Apple" #. nWjHd #: BMP___MS_Windows.xcu @@ -115,18 +115,17 @@ "UIName\n" "value.text" msgid "ClarisWorks/AppleWorks Spreadsheet" -msgstr "" +msgstr "Fueya de cálculu de ClarisWorks/AppleWorks" #. renzu #: ClarisWorks_Draw.xcu -#, fuzzy msgctxt "" "ClarisWorks_Draw.xcu\n" "ClarisWorks_Draw\n" "UIName\n" "value.text" msgid "ClarisWorks/AppleWorks Drawing" -msgstr "Documentu de ClarisWorks/AppleWorks" +msgstr "Dibuxu de ClarisWorks/AppleWorks" #. gz2o6 #: ClarisWorks_Impress.xcu @@ -136,7 +135,7 @@ "UIName\n" "value.text" msgid "ClarisWorks/AppleWorks Presentation" -msgstr "" +msgstr "Presentación de ClarisWorks/AppleWorks" #. JTAGb #: Claris_Resolve_Calc.xcu @@ -286,7 +285,7 @@ "UIName\n" "value.text" msgid "HTML Document (Master Document)" -msgstr "Documentu HTML (documentu maestru)" +msgstr "Documentu HTML (documentu principal)" #. VDWBF #: HTML__StarCalc_.xcu @@ -356,7 +355,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 2003 XML" -msgstr "XML de Microsoft Excel 2003" +msgstr "XML d'Excel 2003 de Microsoft" #. AGkVq #: MS_Excel_2003_XML_Orcus.xcu @@ -366,7 +365,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 2003 XML" -msgstr "" +msgstr "XML d'Excel 2003 de Microsoft" #. CEFG2 #: MS_Excel_4_0.xcu @@ -376,7 +375,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 4.0" -msgstr "Microsoft Excel 4.0" +msgstr "Excel 4.0 de Microsoft" #. e9XuE #: MS_Excel_4_0_Vorlage_Template.xcu @@ -386,7 +385,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 4.0 Template" -msgstr "Plantía de Microsoft Excel 4.0" +msgstr "Plantía d'Excel 4.0 de Microsoft" #. eHaUs #: MS_Excel_5_0_95.xcu @@ -396,7 +395,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 5.0" -msgstr "Microsoft Excel 5.0" +msgstr "Excel 5.0 de Microsoft" #. jrJsh #: MS_Excel_5_0_95_Vorlage_Template.xcu @@ -406,7 +405,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 5.0 Template" -msgstr "Plantía de Microsoft Excel 5.0" +msgstr "Plantía d'Excel 5.0 de Microsoft" #. DuC6b #: MS_Excel_95.xcu @@ -416,7 +415,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 95" -msgstr "Microsoft Excel 95" +msgstr "Excel 95 de Microsoft" #. kFEki #: MS_Excel_95_Vorlage_Template.xcu @@ -426,7 +425,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 95 Template" -msgstr "Plantía de Microsoft Excel 95" +msgstr "Plantía d'Excel 95 de Microsoft" #. 6Azy5 #: MS_Excel_97.xcu @@ -436,7 +435,7 @@ "UIName\n" "value.text" msgid "Excel 97–2003" -msgstr "" +msgstr "Excel 97-2003" #. j6CcH #: MS_Excel_97_Vorlage_Template.xcu @@ -446,7 +445,7 @@ "UIName\n" "value.text" msgid "Excel 97–2003 Template" -msgstr "" +msgstr "Plantía d'Excel 97-2003" #. yBQCh #: MS_Multiplan.xcu @@ -456,7 +455,7 @@ "UIName\n" "value.text" msgid "Microsoft Multiplan" -msgstr "" +msgstr "Multiplan de Microsoft" #. W6h9T #: MS_PowerPoint_97.xcu @@ -517,7 +516,7 @@ "UIName\n" "value.text" msgid "Word 2003 XML" -msgstr "" +msgstr "XML de Word 2003" #. RQrx8 #: MS_Word_2007_XML.xcu @@ -577,7 +576,7 @@ "UIName\n" "value.text" msgid "Word 97–2003" -msgstr "" +msgstr "Word 97-2003" #. 5dqtn #: MS_Word_97_Vorlage.xcu @@ -587,7 +586,7 @@ "UIName\n" "value.text" msgid "Word 97–2003 Template" -msgstr "" +msgstr "Plantía de Word 97-2003" #. GnuAC #: MS_Works.xcu @@ -597,7 +596,7 @@ "UIName\n" "value.text" msgid "Microsoft Works Document" -msgstr "Documentu de Microsoft Works" +msgstr "Documentu de Works de Microsoft" #. fZYpn #: MS_Works_Calc.xcu @@ -607,18 +606,17 @@ "UIName\n" "value.text" msgid "Microsoft Works Document" -msgstr "Documentu de Microsoft Works" +msgstr "Documentu de Works de Microsoft" #. G3mSJ #: MS_Write.xcu -#, fuzzy msgctxt "" "MS_Write.xcu\n" "MS_Write\n" "UIName\n" "value.text" msgid "Microsoft Write" -msgstr "Microsoft Office" +msgstr "Write de Microsoft" #. umheT #: MWAW_Bitmap.xcu @@ -2082,7 +2080,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Master Document" -msgstr "Documentu maestru d'OpenOffice.org 1.0" +msgstr "Documentu principal d'OpenOffice.org 1.0" #. AnZbG #: writer_globaldocument_pdf_Export.xcu @@ -2242,7 +2240,7 @@ "UIName\n" "value.text" msgid "ODF Master Document" -msgstr "Documentu maestru ODF" +msgstr "Documentu principal ODF" #. Edqca #: writerglobal8_HTML.xcu @@ -2256,14 +2254,13 @@ #. UqpiB #: writerglobal8_template.xcu -#, fuzzy msgctxt "" "writerglobal8_template.xcu\n" "writerglobal8_template\n" "UIName\n" "value.text" msgid "ODF Master Document Template" -msgstr "Plantía de documentu de testu ODF" +msgstr "Plantía de documentu principal ODF" #. RbTUd #: writerglobal8_writer.xcu @@ -2293,4 +2290,4 @@ "UIName\n" "value.text" msgid "HTML Document Template" -msgstr "Plantía de documentu HTML" +msgstr "Plantía pa documentu HTML" diff -Nru libreoffice-7.4.6/translations/source/ast/filter/source/config/fragments/types.po libreoffice-7.4.7/translations/source/ast/filter/source/config/fragments/types.po --- libreoffice-7.4.6/translations/source/ast/filter/source/config/fragments/types.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/filter/source/config/fragments/types.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-03-04 14:15+0000\n" -"Last-Translator: Xuacu Saturio \n" -"Language-Team: Asturian \n" +"PO-Revision-Date: 2023-04-07 19:34+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1528120679.000000\n" #. VQegi @@ -24,7 +24,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 2007 Binary" -msgstr "Binariu de Microsoft Excel 2007" +msgstr "Binariu d'Excel 2007 de Microsoft" #. ZSPrG #: MS_Excel_2007_VBA_XML.xcu @@ -34,7 +34,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 2007–365 VBA XML" -msgstr "XML con VBA de Microsoft Excel 2007–365" +msgstr "XML con VBA d'Excel 2007-365 de Microsoft" #. wZRKn #: MS_Excel_2007_XML.xcu @@ -44,7 +44,7 @@ "UIName\n" "value.text" msgid "Excel 2007–365" -msgstr "Excel 2007–365" +msgstr "Excel 2007-365" #. gE2YN #: MS_Excel_2007_XML_Template.xcu @@ -54,7 +54,7 @@ "UIName\n" "value.text" msgid "Excel 2007–365 Template" -msgstr "Plantía d'Excel 2007–365" +msgstr "Plantía d'Excel 2007-365" #. GGcpF #: MS_PowerPoint_2007_XML.xcu @@ -64,7 +64,7 @@ "UIName\n" "value.text" msgid "PowerPoint 2007–365" -msgstr "PowerPoint 2007–365" +msgstr "PowerPoint 2007-365" #. RvEK3 #: MS_PowerPoint_2007_XML_AutoPlay.xcu @@ -74,7 +74,7 @@ "UIName\n" "value.text" msgid "PowerPoint 2007–365" -msgstr "PowerPoint 2007–365" +msgstr "PowerPoint 2007-365" #. 6sRkN #: MS_PowerPoint_2007_XML_Template.xcu @@ -104,7 +104,7 @@ "UIName\n" "value.text" msgid "OpenDocument Database" -msgstr "Base datos OpenDocument" +msgstr "Base de datos OpenDocument" #. VGEpj #: StarBaseReport.xcu @@ -174,7 +174,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 2003 XML" -msgstr "XML de Microsoft Excel 2003" +msgstr "XML d'Excel 2003 de Microsoft" #. NWzCZ #: calc_ODS_FlatXML.xcu @@ -184,7 +184,7 @@ "UIName\n" "value.text" msgid "OpenDocument Spreadsheet (Flat XML)" -msgstr "Fueya de cálculu d'OpenDocument (XML planu)" +msgstr "Fueya de cálculu OpenDocument (XML planu)" #. gfFPo #: calc_OOXML.xcu @@ -214,7 +214,7 @@ "UIName\n" "value.text" msgid "Chart 8" -msgstr "Gráfica 8" +msgstr "Chart 8" #. zyojS #: draw8.xcu @@ -274,7 +274,7 @@ "UIName\n" "value.text" msgid "OpenDocument Presentation (Flat XML)" -msgstr "Presentación d'OpenDocument (XML planu)" +msgstr "Presentación OpenDocument (XML planu)" #. 9rJi8 #: impress_OOXML_Presentation_AutoPlay.xcu @@ -364,7 +364,7 @@ "UIName\n" "value.text" msgid "OpenDocument Text (Flat XML)" -msgstr "Testu d'OpenDocument (XML planu)" +msgstr "Testu OpenDocument (XML planu)" #. 3CtB2 #: writerglobal8.xcu diff -Nru libreoffice-7.4.6/translations/source/ast/formula/messages.po libreoffice-7.4.7/translations/source/ast/formula/messages.po --- libreoffice-7.4.6/translations/source/ast/formula/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/formula/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-04-04 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -869,13 +869,13 @@ #: formula/inc/core_resource.hrc:2423 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "AVERAGE" -msgstr "MEDIA" +msgstr "PERMEDIU" #. sHZ7d #: formula/inc/core_resource.hrc:2424 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "AVERAGEA" -msgstr "MEDIAA" +msgstr "PERMEDIUA" #. CFSpv #: formula/inc/core_resource.hrc:2425 @@ -1327,7 +1327,7 @@ #: formula/inc/core_resource.hrc:2499 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "AVERAGEIF" -msgstr "MEDIASI" +msgstr "PERMEDIUSI" #. gBitk #: formula/inc/core_resource.hrc:2500 @@ -2685,20 +2685,19 @@ #: formula/uiconfig/ui/formuladialog.ui:263 msgctxt "formuladialog|label2" msgid "Function result" -msgstr "Resultáu de la función" +msgstr "Resultáu de la función:" #. GqtY8 #: formula/uiconfig/ui/formuladialog.ui:408 -#, fuzzy msgctxt "formuladialog|formula" msgid "For_mula" -msgstr "Fórmula" +msgstr "Fór_mula:" #. xEPEr #: formula/uiconfig/ui/formuladialog.ui:423 msgctxt "formuladialog|label1" msgid "Result" -msgstr "Resultáu" +msgstr "Resultáu:" #. rJsXw #: formula/uiconfig/ui/formuladialog.ui:469 diff -Nru libreoffice-7.4.6/translations/source/ast/framework/messages.po libreoffice-7.4.7/translations/source/ast/framework/messages.po --- libreoffice-7.4.6/translations/source/ast/framework/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/framework/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-06-11 17:08+0200\n" -"PO-Revision-Date: 2022-07-06 16:24+0000\n" +"PO-Revision-Date: 2023-03-15 14:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1513251152.000000\n" #. 5dTDC @@ -249,7 +249,7 @@ #: framework/inc/strings.hrc:59 msgctxt "RID_STR_PROPTITLE_COMBOBOX" msgid "Combo Box" -msgstr "" +msgstr "Caxa combinada" #. WiNUf #: framework/inc/strings.hrc:60 diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/auxiliary.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/auxiliary.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/auxiliary.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/auxiliary.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2022-11-16 12:58+0000\n" +"PO-Revision-Date: 2023-03-27 23:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1532004324.000000\n" #. fEEXD @@ -1067,7 +1067,7 @@ "0220\n" "node.text" msgid "Master Documents" -msgstr "Documentos maestros" +msgstr "Documentos principales" #. wbJh4 #: swriter.tree diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sbasic/guide.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sbasic/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sbasic/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-03-30 10:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1022,7 +1022,7 @@ "par_id641630542724480\n" "help.text" msgid "In addition to top, bottom, left and right borders, TableBorder2 also defines vertical and horizontal borders. The macro below applies only the top and bottom borders to the range \"B2:E5\"." -msgstr "" +msgstr "Amás de los berbesos superior, inferior, izquierdu y derechu, TableBorder2 tamién define los berbesos vertical y horizontal. La siguiente macro afecta namái a los berbesos superior ya inferior de la estaya «B2:E5»." #. k7afV #: calc_borders.xhp @@ -1292,7 +1292,7 @@ "hd_id331633213558740\n" "help.text" msgid "Accessing a Single Cell" -msgstr "" +msgstr "Accesu a una caxella única" #. A5M3f #: read_write_values.xhp @@ -1355,7 +1355,7 @@ "hd_id411633215666257\n" "help.text" msgid "Values, Strings and Formulas" -msgstr "" +msgstr "Valores, cadenes y fórmules" #. MBHDg #: read_write_values.xhp @@ -1427,7 +1427,7 @@ "hd_id321633216630043\n" "help.text" msgid "Accessing Ranges in Different Sheets" -msgstr "" +msgstr "Accesu a estayes en fueyes diferentes" #. TFU8U #: read_write_values.xhp @@ -1481,7 +1481,7 @@ "par_id891633265000047\n" "help.text" msgid "This can be done in a similar fashion in Python:" -msgstr "" +msgstr "Esto ye posible de facer de manera paecida en Python:" #. 6qHAn #: read_write_values.xhp @@ -1490,7 +1490,7 @@ "hd_id451633265241066\n" "help.text" msgid "Using the ScriptForge Library" -msgstr "" +msgstr "Usu de la biblioteca ScriptForge" #. 8CkSe #: read_write_values.xhp @@ -1553,7 +1553,7 @@ "par_id521633608223310\n" "help.text" msgid "The ScriptForge library also makes it simpler to access ranges in different sheets, as demonstrated in the example below:" -msgstr "" +msgstr "La biblioteca ScriptForge tamién simplifica l'accesu a intervalos de distintes fueyes, como se demuestra nel exemplu siguiente:" #. CCeEh #: read_write_values.xhp @@ -1787,7 +1787,7 @@ "par_id3144504\n" "help.text" msgid "oListbox.additem(\"New Item\" & iCount,0)" -msgstr "oListbox.additem(\"Nuevu elementu\" & iCount,0)" +msgstr "oListbox.additem(\"Elementu nuevu\" & iCount,0)" #. FKzdb #: sample_code.xhp @@ -1877,7 +1877,7 @@ "tit\n" "help.text" msgid "Translation of Controls in the Dialog Editor" -msgstr "Traducción de controles nel diálogu del editor" +msgstr "Traducción de controles nel editor de diálogos" #. 76okP #: translation.xhp @@ -1913,7 +1913,7 @@ "par_id9538560\n" "help.text" msgid "By default, any dialog that you create only contains string resources for one language. You may want to create dialogs that automatically show localized strings according to the user's language settings." -msgstr "Predetermináu, cualquier diálogu que creas solo contién cadenes de recursos por un idioma. Seique quieras crear diálogos que automáticamente amuesa cadenes alcontraes d'alcuerdu a la configuración del idioma pol usuariu." +msgstr "De manera predeterminada, cualisquier diálogu que crees solamente va contener recursos de cadenes pa un idioma. Quiciabes quieras crear diálogos que n'automático amuesen cadenes rexonalizaes acordies colos axustes llingüísticos del usuariu." #. DP4Qb #: translation.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-10 08:24+0000\n" +"PO-Revision-Date: 2023-03-24 09:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1494863184.000000\n" #. 6Kkin @@ -1274,7 +1274,7 @@ "hd_id3150644\n" "help.text" msgid "Combo Box" -msgstr "Cuadru combináu" +msgstr "Caxa combinada" #. YgGoR #: 20000000.xhp @@ -1283,7 +1283,7 @@ "par_id3148418\n" "help.text" msgid "Icon Combo Box" -msgstr "" +msgstr "Iconu Caxa combinada" #. Vdn74 #: 20000000.xhp @@ -1292,7 +1292,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 "Amiesta un cuadru combináu. Un cuadru combináu ye un llistáu d'una llinia nel que l'usuariu pue calcar y escoyer una entrada de la llista. Si deseyar, puen convertise les entraes del cuadru combináu como \"de namái llectura\"." +msgstr "Amiesta una caxa combinada. Una caxa combinada ye un llistáu d'una llinia na que l'usuariu pue calcar y escoyer una entrada de la llista. Si deseyes, pues facer que les entraes de la caxa combinada sían «de namái llectura»." #. Q7efB #: 20000000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 22:04+0000\n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -275,7 +275,7 @@ "par_id131613947858931\n" "help.text" msgid "User Interface" -msgstr "" +msgstr "Interfaz d'usuariu" #. dAomL #: lib_ScriptForge.xhp @@ -10436,7 +10436,7 @@ "pyc_id841620225235377\n" "help.text" msgid "# ... process the controls actual values" -msgstr "" +msgstr "# … procesar los valores reales de los controles" #. 2PPv4 #: sf_dialogcontrol.xhp @@ -13919,7 +13919,7 @@ "par_id111587141158495\n" "help.text" msgid "When an error occurs, an application macro may:" -msgstr "" +msgstr "Cuando se produz un error, una macro d'aplicación pue:" #. hxxxr #: sf_exception.xhp @@ -27824,7 +27824,7 @@ "tit\n" "help.text" msgid "ScriptForge.UI service" -msgstr "" +msgstr "Serviciu ScriptForge.UI" #. QWA6E #: sf_ui.xhp @@ -27842,7 +27842,7 @@ "par_id31587913266153\n" "help.text" msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:" -msgstr "" +msgstr "El serviciu UI (del inglés, interfaz d'usuariu) simplifica la identificación y manipulación de les distintes ventanes que componen l'aplicación %PRODUCTNAME nel so conxuntu:" #. nTqj5 #: sf_ui.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sbasic/shared.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sbasic/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sbasic/shared.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1913,7 +1913,7 @@ "par_id3148797\n" "help.text" msgid "Sub is the short form of subroutine, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:" -msgstr "Sub ye la contraición de subrutina, que s'utiliza pa remanar una xera concreta dientro d'un programa. Les Sub utilizar pa estremar una xera en procedimientos individuales. Estremar un programa en procedimientos y subprocedimientos ameyora'l so legibilidad y amenorga la posibilidá de fallos. Una sub pue tomar dellos argumentos como parámetros, pero nun devuelve nengún valor a la sub o función que la hai llamáu, por exemplu:" +msgstr "Sub ye la contraición de subroutine, que s'utiliza pa remanar una xera concreta dientro d'un programa. Les sub estremen una xera en procedimientos individuales. Estremar un programa en procedimientos y soprocedimientos ameyora la so comprensibilidá y amenorga la posibilidá de fallos. Una sub pue tomar dellos argumentos como parámetros, pero nun devuelve nengún valor a la sub o función que la llamó, por exemplu:" #. ovUK9 #: 01010210.xhp @@ -2795,7 +2795,7 @@ "par_idm1341065280\n" "help.text" msgid "Dim Text$(20) '21 elements numbered from 0 to 20'" -msgstr "" +msgstr "Dim Text$(20) '21 elementos numberaos de 0 a 20'" #. Tpkw3 #: 01020100.xhp @@ -5900,7 +5900,7 @@ "par_id3149581\n" "help.text" msgid "Opens a combo box" -msgstr "Abre un cuadru combináu" +msgstr "Abre una caxa combinada" #. h2EUT #: 01170100.xhp @@ -5918,7 +5918,7 @@ "par_id3148455\n" "help.text" msgid "Closes a combo box" -msgstr "Zarra un cuadru combináu" +msgstr "Zarra una caxa combinada" #. m5KJm #: 01170100.xhp @@ -9491,7 +9491,7 @@ "par_id3150447\n" "help.text" msgid "Returns a Long integer color value consisting of red, green, and blue components, according to VBA color formula." -msgstr "" +msgstr "Devuelve un valor cromáticu en forma d'enteru Long (llargu) compuestu polos componentes bermeyo, verde y azul, según la fórmula de colores de VBA." #. LNVC5 #: 03010306.xhp @@ -20489,7 +20489,7 @@ "par_id3149346\n" "help.text" msgid "Returns the integer value of a numeric expression by removing the fractional part of the number." -msgstr "Devuelve'l valor enteru d'una espresión numbérica desaniciando la parte fraccionaria del númberu." +msgstr "Devuelve'l valor enteru d'una espresión numbérica desaniciando la parte fraicionaria del númberu." #. AxgCW #: 03080501.xhp @@ -36617,7 +36617,7 @@ "par_id3145785\n" "help.text" msgid "ImageMap area" -msgstr "Área del mapa d'imaxe" +msgstr "Área de la imaxe calcable" #. nRV7g #: 05060700.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/scalc/01.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/scalc/01.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/scalc/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/scalc/01.po 2023-05-03 15:22:13.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: 2022-07-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:10+0000\n" +"PO-Revision-Date: 2023-04-18 19:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -609,7 +609,7 @@ "hd_id3145748\n" "help.text" msgid "Left Area" -msgstr "Área esquierda" +msgstr "Área izquierda" #. Zoqx2 #: 02120100.xhp @@ -9096,7 +9096,7 @@ "par_id3146992\n" "help.text" msgid "Value is any value or expression where a test is performed to determine whether it is a text or numbers or a Boolean value." -msgstr "Valor ye un valor o una espresión en que se comprueba si ye testual, numbéricu o si tratar d'un valor lóxicu." +msgstr "Valor ye un valor o una espresión en que se comprueba si ye testual, numbéricu o si se trata d'un valor booleanu." #. Es2Py #: 04060104.xhp @@ -9420,7 +9420,7 @@ "par_id3150417\n" "help.text" msgid "Value is a value, number, Boolean value, or an error value to be tested." -msgstr "Valor ye un valor, un númberu o un valor lóxicu o de fallu nel que se comprueba si tratar d'un testu o d'un númberu." +msgstr "Valor ye un valor, un númberu o un valor booleanu o d'error que va probase." #. RmeYe #: 04060104.xhp @@ -14397,7 +14397,7 @@ "par_id3165856\n" "help.text" msgid "AVERAGE" -msgstr "PROMEDIU" +msgstr "PERMEDIU" #. De7oY #: 04060106.xhp @@ -31929,7 +31929,7 @@ "bm_id3150267\n" "help.text" msgid "B function probabilities of samples with binomial distribution" -msgstr "B probabilidaes d'amueses con distribución binomial" +msgstr "B probabilidaes d'amosances con distribución binomial" #. NKDUL #: 04060181.xhp @@ -31947,7 +31947,7 @@ "par_id3156061\n" "help.text" msgid "Returns the probability of a sample with binomial distribution." -msgstr "Devuelve la probabilidá d'una amuesa con distribución binomial." +msgstr "Devuelve la probabilidá d'una amosanza con distribución binomial." #. tYKH6 #: 04060181.xhp @@ -33306,7 +33306,7 @@ "par_id3156141\n" "help.text" msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%." -msgstr "Si'l valor del cuadráu de ji de l'amuesa xube a 13,27 y l'esperimentu tien 5 graos llibertái, entós la hipótesis cumplir con un intervalu de probabilidá de fallu del 2%." +msgstr "Si'l valor de χ² de l'amosanza aleatoria ye 13,27 y l'esperimentu tien 5 graos de llibertá, la hipótesis cúmplese con una probabilidá d'error del 2%." #. fAFCm #: 04060181.xhp @@ -33468,7 +33468,7 @@ "par_id2956141\n" "help.text" msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%." -msgstr "Si'l valor del cuadráu de ji de l'amuesa xube a 13,27 y l'esperimentu tien 5 graos llibertái, entós la hipótesis cumplir con un intervalu de probabilidá de fallu del 2%." +msgstr "Si'l valor de χ² de l'amosanza aleatoria ye 13,27 y l'esperimentu tien 5 graos de llibertá, la hipótesis cúmplese con una probabilidá d'error del 2%." #. qbkUf #: 04060181.xhp @@ -34971,7 +34971,7 @@ "par_id3156257\n" "help.text" msgid "Returns the geometric mean of a sample." -msgstr "Calcula la media xeométrica d'una amuesa." +msgstr "Devuelve la media xeométrica d'una amosanza." #. YBnZG #: 04060182.xhp @@ -34998,7 +34998,7 @@ "bm_id3152966\n" "help.text" msgid "TRIMMEAN function means;of data set without margin data" -msgstr "MEDIA.ACUTADA medies;de grupu de datos ensin datos de marxe" +msgstr "MEDIA.ACUTADA medies;de grupu de datos ensin datos marxinales" #. EAAVp #: 04060182.xhp @@ -35016,7 +35016,7 @@ "par_id3149716\n" "help.text" msgid "Returns the mean of a data set without the Alpha percent of data at the margins." -msgstr "Calcula'l promediu d'un grupu de datos ensin tener en cuenta'l porcentaxe alfa de los datos nos marxes." +msgstr "Calcula'l permediu d'un grupu de datos ensin tener en cuenta'l porcentaxe alfa de los datos nos marxes." #. JvcGQ #: 04060182.xhp @@ -35052,7 +35052,7 @@ "par_id3156130\n" "help.text" msgid "=TRIMMEAN(A1:A50; 0.1) calculates the mean value of numbers in A1:A50, without taking into consideration the 5 percent of the values representing the highest values and the 5 percent of the values representing the lowest ones. The percentage numbers refer to the amount of the untrimmed mean value, not to the number of summands." -msgstr "=MEDIA.ACUTADA(A1:A50; 0,1) calcula'l promediu de los númberos n'A1:A50, ensin tener en cuenta'l 5 per cientu de valores más baxos y el 5 per cientu de valores más altos. Los porcentaxes aplicar a la cantidá del promediu non recortáu, non a la cantidá de los sumandos." +msgstr "=MEDIA.ACUTADA(A1:A50; 0,1) calcula'l permediu de los númberos n'A1:A50, ensin tener en cuenta'l 5 per cientu de valores más baxos y el 5 per cientu de valores más altos. Los porcentaxes aplíquense a la cantidá del permediu non recortáu, non a la cantidá de los sumandos." #. 72brA #: 04060182.xhp @@ -35097,7 +35097,7 @@ "par_id3156109\n" "help.text" msgid "Data is the given sample, drawn from a normally distributed population." -msgstr "Datos ye l'amuesa indicada, extraida d'una población distribuyida en forma normal." +msgstr "Datos ye l'amosanza indicada, estrayida d'una población distribuyida normalmente." #. E3dLC #: 04060182.xhp @@ -35115,7 +35115,7 @@ "par_id3154740\n" "help.text" msgid "Sigma (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "Sigma (opcional) ye la esviación estándar conocida de la población. Si omítese, utilízase la esviación estándar de l'amuesa indicada." +msgstr "Sigma (opcional) ye la esviación estándar conocida de la población. Si s'omite, utilízase la esviación estándar de l'amosanza indicada." #. EpJ8j #: 04060182.xhp @@ -35151,7 +35151,7 @@ "par_id2950758\n" "help.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "Calcula la probabilidá de reparar un estadísticu z mayor que'l calculáu basáu nuna amuesa." +msgstr "Calcula la probabilidá de reparar un estadísticu z mayor que'l calculáu basáu nuna amosanza." #. Ug83K #: 04060182.xhp @@ -35169,7 +35169,7 @@ "par_id2956109\n" "help.text" msgid "Data is the given sample, drawn from a normally distributed population." -msgstr "Datos ye l'amuesa indicada, extraida d'una población distribuyida en forma normal." +msgstr "Datos ye l'amosanza indicada, estrayida d'una población distribuyida normalmente." #. havEd #: 04060182.xhp @@ -35187,7 +35187,7 @@ "par_id2954740\n" "help.text" msgid "Sigma (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "Sigma (opcional) ye la esviación estándar conocida de la población. Si omítese, utilízase la esviación estándar de l'amuesa indicada." +msgstr "Sigma (opcional) ye la esviación estándar conocida de la población. Si s'omite, utilízase la esviación estándar de l'amosanza indicada." #. sbnS9 #: 04060182.xhp @@ -35250,7 +35250,7 @@ "bm_id3152801\n" "help.text" msgid "HYPGEOMDIST function sampling without replacement" -msgstr "DISTR.HIPERGEOM amueses ensin troquéu" +msgstr "DISTR.HIPERGEOM amosances ensin troquéu" #. 9mrAG #: 04060182.xhp @@ -35340,7 +35340,7 @@ "bm_id2952801\n" "help.text" msgid "HYPGEOM.DIST function sampling without replacement" -msgstr "DISTR.HIPERGEOM amueses ensin troquéu" +msgstr "DISTR.HIPERGEOM amosances ensin troquéu" #. CoN4S #: 04060182.xhp @@ -35493,7 +35493,7 @@ "par_id3152986\n" "help.text" msgid "Data is the cell range of data." -msgstr "Datos ye la matriz de los datos de l'amuesa." +msgstr "Datos ye la estaya de caxelles de datos." #. PqrWi #: 04060183.xhp @@ -35565,7 +35565,7 @@ "par_id3154540\n" "help.text" msgid "Data is the cell range of data." -msgstr "Datos ye la matriz de los datos de l'amuesa." +msgstr "Datos ye la estaya de caxelles de datos." #. oJV9f #: 04060183.xhp @@ -36870,7 +36870,7 @@ "bm_id3145824\n" "help.text" msgid "AVERAGE function" -msgstr "PROMEDIU" +msgstr "función PERMEDIU" #. TFPEi #: 04060184.xhp @@ -36879,7 +36879,7 @@ "hd_id3145824\n" "help.text" msgid "AVERAGE" -msgstr "" +msgstr "PERMEDIU" #. FuZoD #: 04060184.xhp @@ -36888,7 +36888,7 @@ "par_id3150482\n" "help.text" msgid "Returns the average of the arguments." -msgstr "Calcula la media de los argumentos." +msgstr "Calcula'l permediu de los argumentos." #. K8QCj #: 04060184.xhp @@ -36897,7 +36897,7 @@ "par_id3154679\n" "help.text" msgid "AVERAGE()" -msgstr "" +msgstr "PERMEDIU()" #. AjUyH #: 04060184.xhp @@ -36906,7 +36906,7 @@ "par_id3151232\n" "help.text" msgid "=AVERAGE(A1:A50)" -msgstr "=PROMEDIU(A1:A50)" +msgstr "=PERMEDIU(A1:A50)" #. SpPo6 #: 04060184.xhp @@ -36915,7 +36915,7 @@ "bm_id3148754\n" "help.text" msgid "AVERAGEA function" -msgstr "PROMEDIOA" +msgstr "función PERMEDIUA" #. nwGjw #: 04060184.xhp @@ -36924,7 +36924,7 @@ "hd_id3148754\n" "help.text" msgid "AVERAGEA" -msgstr "" +msgstr "PERMEDIUA" #. V5nBj #: 04060184.xhp @@ -36933,7 +36933,7 @@ "par_id3145138\n" "help.text" msgid "Returns the average of the arguments. The value of a text is 0." -msgstr "Calcula la media de los argumentos. El valor del testu ye 0." +msgstr "Calcula'l permediu de los argumentos. El valor del testu ye 0." #. opsEb #: 04060184.xhp @@ -36942,7 +36942,7 @@ "par_id3149734\n" "help.text" msgid "AVERAGEA()" -msgstr "" +msgstr "PERMEDIUA()" #. sxYNi #: 04060184.xhp @@ -36951,7 +36951,7 @@ "par_id3150864\n" "help.text" msgid "=AVERAGEA(A1:A50)" -msgstr "=PROMEDIU(A1:A50)" +msgstr "=PERMEDIUA(A1:A50)" #. iLCTX #: 04060184.xhp @@ -38139,7 +38139,7 @@ "par_id3153573\n" "help.text" msgid "Returns the percentage rank of a value in a sample." -msgstr "Calcula'l rangu porcentual d'un valor nuna amuesa." +msgstr "Calcula'l rangu porcentual d'un valor nuna amosanza." #. AAjBU #: 04060184.xhp @@ -38598,7 +38598,7 @@ "par_id3153976\n" "help.text" msgid "Returns the rank of a number in a sample." -msgstr "Devuelve la xerarquía d'un númberu nuna amuesa." +msgstr "Devuelve la xerarquía d'un númberu nuna amosanza." #. oVk4F #: 04060185.xhp @@ -39066,7 +39066,7 @@ "bm_id3149143\n" "help.text" msgid "STDEV function standard deviations in statistics;based on a sample" -msgstr "DESVEST desviación estándar n'estadístiques;basaes nun exemplu" +msgstr "función DESVESTesviaciones estándar n'estadística;basaes nuna amosanza" #. X7TFm #: 04060185.xhp @@ -39084,7 +39084,7 @@ "par_id3146888\n" "help.text" msgid "Estimates the standard deviation based on a sample." -msgstr "Realiza una estimación de la esviación estándar a partir d'una amuesa." +msgstr "Estima la esviación estándar a partir d'una amosanza." #. 2b5hp #: 04060185.xhp @@ -39138,7 +39138,7 @@ "par_id3151234\n" "help.text" msgid "Calculates the standard deviation of an estimation based on a sample." -msgstr "Calcula una estimación de la esviación estándar a partir d'una amuesa." +msgstr "Calcula la esviación estándar d'una estimación a partir d'una amosanza." #. JfwF6 #: 04060185.xhp @@ -39210,7 +39210,7 @@ "par_id3153933\n" "help.text" msgid "=STDEVP(A1:A50) returns a standard deviation of the data referenced." -msgstr "=DESVESTP(A1:A50) calcula la esviación estándar de los datos referenciaos." +msgstr "=DESVESTP(A1:A50) devuelve la esviación estándar de los datos referenciaos." #. sQWP2 #: 04060185.xhp @@ -39219,7 +39219,7 @@ "bm_id2949734\n" "help.text" msgid "STDEV.P function standard deviations in statistics;based on a population" -msgstr "DESVESTP desviación estándar n'estadístiques;basaes nuna población" +msgstr "DESVESTP esviación estándar n'estadístiques;basaes nuna población" #. tcxC7 #: 04060185.xhp @@ -39831,7 +39831,7 @@ "par_id3154748\n" "help.text" msgid "Returns the sum of squares of deviations based on a sample mean." -msgstr "Efeutúa la suma de les esviaciones cuadraes de datos a partir del valor mediu de l'amuesa." +msgstr "Efeutúa la suma de les esviaciones cuadraes de datos a partir del valor mediu de l'amosanza." #. pg3Aq #: 04060185.xhp @@ -40110,7 +40110,7 @@ "par_id3155327\n" "help.text" msgid "Type is the kind of t-test to perform. Type 1 means paired. Type 2 means two samples, equal variance (homoscedastic). Type 3 means two samples, unequal variance (heteroscedastic)." -msgstr "Tipu ye un tipu de prueba t que se va a realizar. Tipu 1 significa pares. Tipu 2 significa dos amueses, igual varianza (homoscedástica). Tipu 3 significa dos amueses, varianza distinta (heteroscedástica)." +msgstr "Tipu ye un tipu de prueba t que se va a realizar. Tipu 1 significa pares. Tipu 2 significa dos amosances, igual varianza (homoscedástica). Tipu 3 significa dos amosances, varianza distinta (heteroscedástica)." #. zT8kK #: 04060185.xhp @@ -40191,7 +40191,7 @@ "par_id2955327\n" "help.text" msgid "Type is the kind of t-test to perform. Type 1 means paired. Type 2 means two samples, equal variance (homoscedastic). Type 3 means two samples, unequal variance (heteroscedastic)." -msgstr "Tipu ye un tipu de prueba t que se va a realizar. Tipu 1 significa pares. Tipu 2 significa dos amueses, igual varianza (homoscedástica). Tipu 3 significa dos amueses, varianza distinta (heteroscedástica)." +msgstr "Tipu ye un tipu de prueba t que se va a realizar. Tipu 1 significa pares. Tipu 2 significa dos amosances, igual varianza (homoscedástica). Tipu 3 significa dos amosances, varianza distinta (heteroscedástica)." #. DaBTK #: 04060185.xhp @@ -40497,7 +40497,7 @@ "par_id3159165\n" "help.text" msgid "Estimates the variance based on a sample." -msgstr "Realiza una estimación de la varianza a partir d'una amuesa." +msgstr "Estima la varianza a partir d'una amosanza." #. NGDxF #: 04060185.xhp @@ -40551,7 +40551,7 @@ "par_id2959165\n" "help.text" msgid "Estimates the variance based on a sample." -msgstr "Realiza una estimación de la varianza a partir d'una amuesa." +msgstr "Estima la varianza a partir d'una amosanza." #. Y2B8P #: 04060185.xhp @@ -40605,7 +40605,7 @@ "par_id3155122\n" "help.text" msgid "Estimates a variance based on a sample. The value of text is 0." -msgstr "Realiza una estimación de la varianza a partir d'una amuesa. El valor del testu ye 0." +msgstr "Estima una varianza a partir d'una amosanza. El valor del testu ye 0." #. mrEpZ #: 04060185.xhp @@ -42432,7 +42432,7 @@ "par_id3154731\n" "help.text" msgid "Displays the cell reference of each label range. In order to remove a label range from the list box, select it and then click Delete." -msgstr "Amuesa la referencia de caxella de cada área d'etiquetes. Pa quitar una área d'etiquetes del llistáu, escuéyala y faiga clic en Desaniciar." +msgstr "Amuesa la referencia de caxella de cada estaya d'etiquetes. Pa quitar una área d'etiquetes del llistáu, escuéyila y calca Desaniciar." #. X5AEH #: 04070400.xhp @@ -42441,7 +42441,7 @@ "hd_id3149121\n" "help.text" msgid "Contains column labels" -msgstr "Contien etiquetes de columna" +msgstr "Contién etiquetes de columna" #. DxBAW #: 04070400.xhp @@ -43332,7 +43332,7 @@ "par_idN10656\n" "help.text" msgid "Right-To-Left" -msgstr "De derecha a esquierda" +msgstr "De derecha a izquierda" #. BBRDz #: 05050000.xhp @@ -47148,7 +47148,7 @@ "tit\n" "help.text" msgid "Define Database Range" -msgstr "Definir área de base de datos" +msgstr "Definir estaya de la base de datos" #. 3F2WA #: 12010000.xhp @@ -47274,7 +47274,7 @@ "hd_id3153379\n" "help.text" msgid "Contains column labels" -msgstr "Contien etiquetes de columna" +msgstr "Contién etiquetes de columna" #. Fvoqg #: 12010100.xhp @@ -47517,7 +47517,7 @@ "hd_id3147428\n" "help.text" msgid "Sort by" -msgstr "Ordenar por" +msgstr "Ordenar per" #. Lt4dN #: 12030100.xhp @@ -48813,7 +48813,7 @@ "hd_id3151119\n" "help.text" msgid "Pre-sort area according to groups" -msgstr "Ordenar primero l'área por grupos" +msgstr "Ordenar primero l'área per grupos" #. vpMJn #: 12050200.xhp @@ -51216,7 +51216,7 @@ "par_idN107A7\n" "help.text" msgid "Same as \"% of row\", but the grand total for the result's data field is used." -msgstr "Igual que \"% de filera\", pero utiliza'l total del campu de datos de la resultancia." +msgstr "Igual que «% de filera», pero utiliza'l total del campu de datos del resultáu." #. CcmCV #: 12090105.xhp @@ -51324,7 +51324,7 @@ "par_idN10557\n" "help.text" msgid "Sort by" -msgstr "Ordenar por" +msgstr "Ordenar per" #. mHJkA #: 12090106.xhp @@ -51459,7 +51459,7 @@ "par_idN1059E\n" "help.text" msgid "Displays the top or bottom nn items when you sort by a specified field." -msgstr "Amuesa los elementos nn superiores o inferiores cuando s'ordenar per un campu específicu." +msgstr "Amuesa los nn elementos superiores o inferiores cuando s'ordena per un campu específicu." #. 9BvAe #: 12090106.xhp @@ -54159,7 +54159,7 @@ "par_id0403201618594636\n" "help.text" msgid "AVERAGE" -msgstr "PROMEDIU" +msgstr "PERMEDIU" #. hTVKC #: exponsmooth_embd.xhp @@ -54870,7 +54870,7 @@ "par_id2309201511360043\n" "help.text" msgid "AVERAGE" -msgstr "PROMEDIU" +msgstr "PERMEDIU" #. LRogz #: func_aggregate.xhp @@ -55500,7 +55500,7 @@ "tit\n" "help.text" msgid "AVERAGEIF function" -msgstr "" +msgstr "Función PERMEDIUSI" #. Xqih3 #: func_averageif.xhp @@ -55509,7 +55509,7 @@ "bm_id237812197829662\n" "help.text" msgid "AVERAGEIF function arithmetic mean;satisfying condition" -msgstr "DESVPROMpromedios;funciones estadístiques" +msgstr "función PERMEDIUSImedia aritmética;condición satisfactoria" #. c5oJz #: func_averageif.xhp @@ -55590,7 +55590,7 @@ "par_id2509201519225446\n" "help.text" msgid "=AVERAGEIF(B2:B6;\"<35\")" -msgstr "=PROMEDIU(A1:A50)" +msgstr "=PERMEDIUSI(B2:B6;\"<35\")" #. DFAzM #: func_averageif.xhp @@ -55626,7 +55626,7 @@ "par_id2509201519230832\n" "help.text" msgid "=AVERAGEIF(B2:B6;\">\"&SMALL(B2:B6;1))" -msgstr "=PROMEDIU(A1:A50)" +msgstr "=PERMEDIUSI(B2:B6;\">\"&PEQUEÑU(B2:B6;1))" #. 6MArD #: func_averageif.xhp @@ -55689,7 +55689,7 @@ "par_id2509201519315547\n" "help.text" msgid "=AVERAGEIF(B2:B6;\"<\"&LARGE(B2:B6;2);C2:C6)" -msgstr "=PROMEDIU(A1:A50)" +msgstr "=PERMEDIUSI(B2:B6;\"<\"&GRANDE(B2:B6;2);C2:C6)" #. T6LU3 #: func_averageif.xhp @@ -65526,7 +65526,7 @@ "par_id011920090347118\n" "help.text" msgid "If the text string also includes a year, month, or day, TIMEVALUE only returns the fractional part of the conversion." -msgstr "Si la cadena de testu tamién inclúi un añu, mes o día, FECHANÚMERO namái devuelve la parte fraccional de la conversión." +msgstr "Si la cadena de testu tamién inclúi un añu, mes o día, VALORTIEMPU namái devuelve la parte fraicionaria de la conversión." #. FQKX4 #: func_timevalue.xhp @@ -65890,6 +65890,7 @@ #. 8sQry #: func_webservice.xhp +#, fuzzy msgctxt "" "func_webservice.xhp\n" "bm_id3149012\n" diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/scalc/02.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/scalc/02.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/scalc/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/scalc/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-10 08:24+0000\n" +"PO-Revision-Date: 2023-03-24 09:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542196264.000000\n" #. aSE5T @@ -356,7 +356,7 @@ "par_id3163710\n" "help.text" msgid "Combo box sheet area" -msgstr "Cuadru combináu Área de fueya" +msgstr "Caxa combinada Área na fueya" #. wFE7T #: 06010000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/scalc/guide.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/scalc/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/scalc/guide.po 2023-05-03 15:22:13.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: 2022-07-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-11 14:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Poedit-SourceCharset: utf-8\n" "X-POOTLE-MTIME: 1542196265.000000\n" @@ -294,7 +294,7 @@ "par_id3147427\n" "help.text" msgid "The AutoFilter function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed." -msgstr "La función AutoFilter inxerta nuna o más columnes de datos un cuadru combináu que dexa escoyer los rexistros (files) que se deben amosar." +msgstr "La función Peñera automática inxerta nuna o más columnes de datos una caxa combinada que dexa esbillar los rexistros (files) que se deben amosar." #. BCGPe #: autofilter.xhp @@ -303,7 +303,7 @@ "par_id3152576\n" "help.text" msgid "Select the columns you want to use AutoFilter on." -msgstr "Escueya les columnes nes que deseye utilizar el AutoFilter." +msgstr "Esbilla les columnes nes que deseyes utilizar la peñera automática." #. Qk7GY #: autofilter.xhp @@ -312,7 +312,7 @@ "par_id3153157\n" "help.text" msgid "Choose Data - Filter - AutoFilter. The combo box arrows are visible in the first row of the range selected." -msgstr "Escueya Datos - Filtru - AutoFiltru . Les fleches del cuadru combináu amosar na primer filera del área escoyida." +msgstr "Escueyi Datos - Peñera - Peñera automática. Les fleches de la caxa combinada amuésense na primer filera de la estaya esbillada." #. dHkYY #: autofilter.xhp @@ -330,7 +330,7 @@ "par_id3155064\n" "help.text" msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button." -msgstr "Namái s'amuesen les fileres que'l so conteníu cumple los criterios de filtru. Les otres files peñerar. Ye posible ver si les fileres peneráronse a partir de númberos de filera discontinuos. La columna que s'utilizó pal filtru identificar por aciu d'un botón de flecha de color distintu." +msgstr "Namái s'amuesen les fileres que'l so conteníu cumple los criterios de filtru. Les otres fileres peñérense. Ye posible ver si les fileres peñeráronse a partir de los númberos de filera discontinuos. La columna que s'utilizó pa la peñera identifícase por aciu d'un botón de flecha de color distintu." #. BTbCP #: autofilter.xhp @@ -456,7 +456,7 @@ "par_idN106D5\n" "help.text" msgid "Go to Format - AutoFormat Styles to open the AutoFormat dialog." -msgstr "" +msgstr "Ve a Formatu - Estilos de formatu automáticu p'abrir el diálogu Formatu automáticu." #. CXiex #: autoformat.xhp @@ -1644,7 +1644,7 @@ "par_id3145271\n" "help.text" msgid "In the formula, an entire 24-hour day has a value of 1 and one hour has a value of 1/24. The logical value in parentheses is 0 or 1, corresponding to 0 or 24 hours. The result returned by the formula is automatically issued in time format due to the sequence of the operands." -msgstr "La fórmula parte de la base de qu'un día enteru colos sos 24 hores tien el valor 1 y que, poro, una hora representa 1/24 parte d'esi valor. El valor lóxicu ente paréntesis ye 0 ó 1 que correspuende a 0 ó 24 hores. La resultancia de la fórmula va amosase automáticamente en formatu d'hora gracies al orde de los operandos." +msgstr "La fórmula parte de la base de qu'un día enteru coles sos 24 hores tien el valor 1 y que, poro, una hora representa 1⁄24 parte d'esi valor. El valor lóxicu ente paréntesis ye 0 o 1, que correspuende a 0 o 24 hores. El resultáu de la fórmula va amosase automáticamente en formatu d'hora gracies al orde de los operandos." #. M8CyC #: calculate.xhp @@ -2463,7 +2463,7 @@ "par_id4943693\n" "help.text" msgid "By way of example, enter the following formula in cell A1 of Sheet1:" -msgstr "Como exemplu, introduza la fórmula siguiente na caxella A1 de la Fueya1:" +msgstr "Como exemplu, introduz la fórmula siguiente na caxella A1 de la Fueya1:" #. 2HPD8 #: cellreferences.xhp @@ -2544,7 +2544,7 @@ "par_id8571123\n" "help.text" msgid "Now switch to the document you have just loaded. Click the cell with the data that you want to insert in the new document." -msgstr "Vaya agora al documentu qu'acaba de cargar. Faiga clic na caxella colos datos que deseya inxertar nel nuevu documentu." +msgstr "Ve agora al documentu qu'acabes de cargar. Calca na caxella colos datos que deseyes inxertar nel documentu nuevu." #. rCxaG #: cellreferences.xhp @@ -2778,7 +2778,7 @@ "par_id3153770\n" "help.text" msgid "\".*\" is a regular expression that designates the contents of the current cell." -msgstr "\".*\" ye una espresión regular que designa'l conteníu de la caxella activa." +msgstr "«.*» ye una espresión regular que designa'l conteníu de la caxella actual." #. r8m3j #: cellstyle_by_formula.xhp @@ -2823,7 +2823,7 @@ "par_id3147127\n" "help.text" msgid "Click Replace all." -msgstr "Faiga clic en Abrir." +msgstr "Calca Trocalo too." #. smBjq #: cellstyle_conditional.xhp @@ -2877,7 +2877,7 @@ "par_id3154944\n" "help.text" msgid "With conditional formatting, you can, for example, highlight the totals that exceed the average value of all totals. If the totals change, the formatting changes correspondingly, without having to apply other styles manually." -msgstr "El formatu condicionáu dexa, por exemplu, destacar los totales que tán percima del promediu de tolos totales. Si los totales camuden, el formatu camuda según correspuenda, ensin necesidá d'aplicar otros estilos de forma manual." +msgstr "El formatu condicionáu dexa, por exemplu, destacar los totales que tán percima del permediu de tolos totales. Si los totales camuden, el formatu camuda según correspuenda, ensin necesidá d'aplicar otros estilos de forma manual." #. Zn2cD #: cellstyle_conditional.xhp @@ -2895,7 +2895,7 @@ "par_id3154490\n" "help.text" msgid "Select the cells to which you want to apply a conditional style." -msgstr "Escueya les caxelles que tengan de tener un formateáu condicionáu." +msgstr "Esbilla les caxelles que tengan de tener un formatu condicionáu." #. oEDHp #: cellstyle_conditional.xhp @@ -2922,7 +2922,7 @@ "hd_id3155766\n" "help.text" msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value" -msgstr "Exemplu de formatu condicional: Resaltar los totales percima/debaxo del valor promediu" +msgstr "Exemplu de formatu condicional: Resaltar los totales percima/debaxo del valor permediu" #. U3jUP #: cellstyle_conditional.xhp @@ -3039,7 +3039,7 @@ "hd_id3148704\n" "help.text" msgid "Step 3: Calculate Average" -msgstr "Pasu 3: Calcular promediu" +msgstr "Pasu 3: calcular el permediu" #. f5sxG #: cellstyle_conditional.xhp @@ -3048,7 +3048,7 @@ "par_id3148837\n" "help.text" msgid "In our particular example, we are calculating the average of the random values. The result is placed in a cell:" -msgstr "Nel nuesu exemplu tenemos de calcular el promediu de los valores aleatorios. La resultancia asitiar nuna caxella:" +msgstr "Nel nuesu exemplu tenemos de calcular el permediu de los valores aleatorios. El resultáu asítiase nuna caxella:" #. GhHpd #: cellstyle_conditional.xhp @@ -3408,7 +3408,7 @@ "par_id3151073\n" "help.text" msgid "Open the document that contains the cell ranges to be consolidated." -msgstr "Vaya al documentu nel que s'atopen les árees que se deban consolidar." +msgstr "Abri'l documentu nel que s'atopen les estayes de caxelles a consolidar." #. 77VUk #: consolidate.xhp @@ -3804,7 +3804,7 @@ "par_idN1091C\n" "help.text" msgid "Select Edit filter settings." -msgstr "Escueya Editar configuración de filtros." +msgstr "Escueyi Editar axustes de peñeres." #. VXtFE #: csv_files.xhp @@ -4146,7 +4146,7 @@ "par_id3145640\n" "help.text" msgid "If, under Language, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"." -msgstr "Si, en Idioma, convierte les caxelles a \"Inglés (EE.UU.)\", tamién se va tresferir la configuración rexonal d'inglés y el formatu de moneda predetermináu va ser \"$ 1,234.00\"." +msgstr "Si, en Llingua, conviertes les caxelles a «Inglés (EE. UU.)», tamién se va tresferir la configuración rexonal d'inglés y el formatu de moneda predetermináu va ser «$ 1,234.00»." #. CzbsK #: currency_format.xhp @@ -4245,7 +4245,7 @@ "par_idN1066A\n" "help.text" msgid "Click More." -msgstr "Faiga clic en Opciones." +msgstr "Calca Más." #. zp2Nx #: database_define.xhp @@ -4380,7 +4380,7 @@ "par_id9303872\n" "help.text" msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges." -msgstr "Si deseya aplicar dellos filtros automáticos a la mesma fueya, primero tien de definir intervalos de base de datos pa, de siguío, aplicar los filtros automáticos a esos intervalos." +msgstr "Si deseyes aplicar delles peñeres automátiques a la mesma fueya, primero tienes de definir estayes de base de datos pa, de siguío, aplicar les peñeres automátiques a eses estayes." #. ayGC2 #: database_filter.xhp @@ -5757,7 +5757,7 @@ "tit\n" "help.text" msgid "Applying Filters" -msgstr "Aplicar filtros" +msgstr "Aplicar peñeres" #. vAkUj #: filters.xhp @@ -5937,7 +5937,7 @@ "par_id2186346\n" "help.text" msgid "Select \"Formulas\" or \"Values\" in the Search in list box." -msgstr "Escueya \"Fórmules\" o \"Valores\" nel cuadru de llista Guetar en." +msgstr "Esbilla «Fórmules» o «Valores» na caxa de llista Guetar en." #. nWDYw #: finding.xhp @@ -5946,7 +5946,7 @@ "par_id1331217\n" "help.text" msgid "With \"Formulas\" you will find all parts of the formulas." -msgstr "Si escueye \"Fórmules\" la ferramienta de busca va guetar en toles fórmules." +msgstr "Si esbilles «Fórmules» la ferramienta de busca va guetar en toles fórmules." #. iERyD #: finding.xhp @@ -6081,7 +6081,7 @@ "tit\n" "help.text" msgid "Formatting Spreadsheets" -msgstr "Formatear fueyes de cálculu" +msgstr "Formatiar fueyes de cálculu" #. CuVCu #: format_table.xhp @@ -6117,7 +6117,7 @@ "par_id3144772\n" "help.text" msgid "Select the text you want to format." -msgstr "Escueya'l testu que deseye formatear." +msgstr "Esbilla'l testu que quies formatiar." #. dcUPy #: format_table.xhp @@ -6135,7 +6135,7 @@ "hd_id3149899\n" "help.text" msgid "Formatting Numbers in a Spreadsheet" -msgstr "Formatear númberos nuna fueya de cálculu" +msgstr "Formatiar númberos nuna fueya de cálculu" #. SjM5x #: format_table.xhp @@ -6162,7 +6162,7 @@ "hd_id3153483\n" "help.text" msgid "Formatting Borders and Backgrounds for Cells and Pages" -msgstr "Formatear los bordes y el fondu pa les caxelles y la páxina" +msgstr "Formatiar los berbesos y el fondu de les caxelles y la páxina" #. PpEbj #: format_table.xhp @@ -6207,7 +6207,7 @@ "par_id2614215\n" "help.text" msgid "Backgrounds for Cells" -msgstr "Fondos pa Caxelles" +msgstr "Fondos pa caxelles" #. S9XPt #: format_value.xhp @@ -6252,7 +6252,7 @@ "par_id3154012\n" "help.text" msgid "To format numbers with decimals:" -msgstr "Pa formatear númberos con decimales:" +msgstr "Pa formatiar númberos con decimales:" #. 3AGec #: format_value.xhp @@ -7107,7 +7107,7 @@ "tit\n" "help.text" msgid "Entering Fractions" -msgstr "Introducir fracciones" +msgstr "Introducir fraiciones" #. AJMeW #: fraction_enter.xhp @@ -7134,7 +7134,7 @@ "par_id3153968\n" "help.text" msgid "You can enter a fractional number in a cell and use it for calculation:" -msgstr "Pue introducise un númberu fraccionariu nuna caxella y utilizalo en cálculos:" +msgstr "Pue introducise un númberu fraicionariu nuna caxella y utilizalu pa facer cálculos:" #. EG6pz #: fraction_enter.xhp @@ -7161,7 +7161,7 @@ "par_id3145367\n" "help.text" msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose Format cells. Select \"Fraction\" from the Category field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8." -msgstr "Si deseya ver fracciones de dellos díxitos tendrá de camudar el formatu de la caxella por que se amuesen les fracciones con dellos díxitos. Abra'l menú contestual de la caxella y escueya Formatu de caxelles. Escueya \"Fraición\" nel campu Categoría y, de siguío, escueya \"-1234 10/81\". Agora va poder escribir fracciones como 12/31 o 12/32; sicasí, les fracciones simplificar de forma automática, polo que nel casu del últimu exemplu va amosase 3/8." +msgstr "Si deseyes ver fraiciones de dellos díxitos como «1/10» tendrás de camudar el formatu de la caxella pa que s'amuesen les fraiciones con dellos díxitos. Abri'l menú contestual de la caxella y escueyi Formatu de caxelles. Escueyi «Fraición» nel campu Categoría y, de siguío, escueyi «-1234 10/81». Agora vas poder escribir fraiciones como 12/31 o 12/32; sicasí, les fraiciones simplifíquense n'automático, polo que nel casu del últimu exemplu va amosase 3/8." #. ixdhC #: goalseek.xhp @@ -7485,7 +7485,7 @@ "par_id3154013\n" "help.text" msgid "Format a cell with a number format such as \\0000. This format can be assigned in the Format code field under the Format - Cells - Numbers tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"." -msgstr "Format a cell with a number format such as \\0000. This format can be assigned in the Format code field under the Format - Cells - Numbers tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"." +msgstr "Formatia una caxella con un formatu numbéricu como \\0000. Esti formatu pue atribuyise nel campu Códigu de formatu na llingüeta Formatu - Caxelles - Númberos y afita la vista de la caxella como «siempres poner un cero primero y dempués l'enteru, con pelo menos trés decimales, y ceros a la izquierda si hai menos de trés díxitos»." #. 9RanL #: integer_leading_zero.xhp @@ -7512,7 +7512,7 @@ "par_id3154944\n" "help.text" msgid "Choose Edit - Find & Replace" -msgstr "Escueya Editar - Guetar y trocar" +msgstr "Escueyi Editar - Guetar y trocar" #. MJUjm #: integer_leading_zero.xhp @@ -7521,7 +7521,7 @@ "par_id3154510\n" "help.text" msgid "In the Find box, enter ^[0-9]" -msgstr "" +msgstr "Nel cuadru Guetar, introduz ^[0-9]" #. 6gHkJ #: integer_leading_zero.xhp @@ -7629,7 +7629,7 @@ "par_id3145272\n" "help.text" msgid "In the cell selection mode, you can use the common navigation keys to select cells." -msgstr "Esti mou dexa utilizar les tecles de desplazamientu habituales pa escoyer caxelles." +msgstr "Esti mou dexa utilizar les tecles de desplazamientu habituales pa esbillar caxelles." #. UdBhU #: keyboard.xhp @@ -7917,7 +7917,7 @@ "hd_id3145748\n" "help.text" msgid "Formatting Tables and Cells" -msgstr "Formatear tables y caxelles" +msgstr "Formatiar tables y caxelles" #. wegGK #: main.xhp @@ -9690,7 +9690,7 @@ "tit\n" "help.text" msgid "Editing Pivot Charts" -msgstr "" +msgstr "Editar gráfiques dinámiques" #. LsYBC #: pivotchart_edit.xhp @@ -9807,7 +9807,7 @@ "tit\n" "help.text" msgid "Pivot Chart Update" -msgstr "" +msgstr "Anovamientu de gráfiques dinámiques" #. cUrFa #: pivotchart_update.xhp @@ -9843,7 +9843,7 @@ "par_id451525146722974\n" "help.text" msgid "Choose Data - Pivot Table - Refresh." -msgstr "" +msgstr "Escueyi Datos - Tabla dinámica - Anovar." #. Q3QuQ #: pivotchart_update.xhp @@ -11238,7 +11238,7 @@ "par_id3147428\n" "help.text" msgid "Choose Format - Cells and go to the Numbers tab page." -msgstr "Escueya Formatu - Caxella y vaya a la llingüeta Númberos." +msgstr "Escueyi Formatu - Caxelles y ve a la llingüeta Númberos." #. AvcBP #: rounding_numbers.xhp @@ -13020,7 +13020,7 @@ "tit\n" "help.text" msgid "Validity of Cell Contents" -msgstr "Validez de conteníos de caxella" +msgstr "Validez del conteníu de les caxelles" #. N5T5g #: validity.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/scalc.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/scalc.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/scalc.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/scalc.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-09 03:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -257,7 +257,7 @@ "hd_id241636195404363\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Comentarios" #. oPaHx #: main0103.xhp @@ -932,7 +932,7 @@ "par_idN1088E\n" "help.text" msgid "Left-To-Right" -msgstr "D'esquierda a derecha" +msgstr "D'izquierda a derecha" #. vX3LE #: main0202.xhp @@ -959,7 +959,7 @@ "par_idN108D1\n" "help.text" msgid "Right-To-Left" -msgstr "De derecha a esquierda" +msgstr "De derecha a izquierda" #. mfrZi #: main0202.xhp @@ -1103,7 +1103,7 @@ "par_id3151112\n" "help.text" msgid "The Text Formatting Bar that is displayed when the cursor is in a text object, such as a text box or a drawing object, contains formatting and alignment commands." -msgstr "La barra Formatu de testu que s'amuesa cuando'l cursor ta nun oxettu como un cuadro de testu o un oxetu de dibuxu, inclúi órdenes pa dar formatu y alliñar el testi." +msgstr "La barra Formatu de testu que s'amuesa cuando'l cursor ta nun oxetu como una caxa de testu o un oxetu de dibuxu, inclúi órdenes pa formatiar y alliniar el testu." #. qzSkC #: main0205.xhp @@ -1283,7 +1283,7 @@ "par_id0821200911024344\n" "help.text" msgid "See also Digital Signatures." -msgstr "Ver tambien Robles dixitales." +msgstr "Ver tamién Robles dixitales." #. iEc7h #: main0210.xhp @@ -1634,7 +1634,7 @@ "hd_id3155601\n" "help.text" msgid "Dynamic Charts" -msgstr "Gráficos dinámicos" +msgstr "Gráfiques dinámiques" #. QEi8Q #: main0503.xhp @@ -1661,4 +1661,4 @@ "par_id3157867\n" "help.text" msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other formats." -msgstr "Utilice los filtros de $[officename] pa convertir ficheros d'Excel o p'abrir y guardar n'otros varios formatos." +msgstr "Utiliza les peñeres de $[officename] pa convertir ficheros d'Excel o p'abrir y guardar n'otros varios formatos." diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/schart/01.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/schart/01.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/schart/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/schart/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-17 22:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1519748866.000000\n" #. DsZFP @@ -1076,7 +1076,7 @@ "par_id3149666\n" "help.text" msgid "Use the X or Y Error Bars dialog to display error bars for 2D charts." -msgstr "" +msgstr "Usa'l diálogu Barres d'error X o Y p'amosar barres d'error nes gráfiques 2D." #. dw9Dz #: 04050000.xhp @@ -3875,7 +3875,7 @@ "par_id3154656\n" "help.text" msgid "Defines the interval for the subdivision of the axes." -msgstr "Define l'intervalu pa la subdivisión de les exes." +msgstr "Define l'intervalu pa la sodivisión de les exes." #. Rfip6 #: 05040201.xhp @@ -4928,7 +4928,7 @@ "par_id2320932\n" "help.text" msgid "Set the resolution." -msgstr "Afitar el resolvimientu." +msgstr "Afita la resolución." #. m8yTA #: smooth_line_properties.xhp @@ -6291,6 +6291,7 @@ #. uYTSH #: type_line.xhp +#, fuzzy msgctxt "" "type_line.xhp\n" "par_id2655720\n" @@ -7385,7 +7386,7 @@ "bm_id84231\n" "help.text" msgid "scatter chartsXY chartschart types;XY (scatter)error indicators in chartserror bars in chartsaverages in chartsstatistics in chartsvariances in chartsstandard deviation in charts" -msgstr "graficas de dispercióngráfiques XY tipos de gráficu;XY (esvalixáu)erru d'indicador en gráficosbarrar de fallu en gráficospromedios en gráficosestadisticas en gráficosvariaciones en gráficosesviación estandar en gráficos" +msgstr "gráfiques de dispersióngráfiques XY tribes de gráfica;XY (esvalixáu)indicadores d'error nes gráfiquesbarres d'error nes gráfiquespermedios nes gráfiquesestadístiques nes gráfiquesvariaciones nes gráfiquesesviación estándar nes gráfiques" #. QBDn7 #: type_xy.xhp @@ -7574,7 +7575,7 @@ "par_id7261268\n" "help.text" msgid "The drawing order is the same as the order in the data series. Mark Sort by X Values to draw the lines in the order of the x values. This sorting applies only to the chart, not to the data in the table." -msgstr "La orde de dibuxu ye la mesmu que l'orde na serie de datos. Marque Ordenar por Valor X pa dibuxar les llinies nel orde de los valores de x. Esti orde aplícase namái al gráficu, non a los datos na tabla." +msgstr "L'orde de dibuxu ye'l mesmu que l'orde na serie de datos. Marca Ordenar per valores X pa dibuxar les llinies nel orde de los valores de x. Esti orde aplícase namái al gráficu, non a los datos na tabla." #. rsbDS #: type_xy.xhp @@ -7655,7 +7656,7 @@ "par_id6128421\n" "help.text" msgid "The Resolution determines how many line segments are calculated to draw a piece of polynomial between two data points. You can see the intermediate points if you click any data point." -msgstr "La resolvimientu determina cuantos segmentos de llinia hai y calcula como dibuxar una pieza de polinomiu ente dos puntos de datos. Pues ver el puntu entemediu si faes clic en cualquier puntu de datos." +msgstr "La resolución determina cuántos segmentos de llinia hai y calcula cómo dibuxar una pieza de polinomiu ente dos puntos de datos. Pues ver el puntu entemediu si calques en cualquier puntu de datos." #. CSDkE #: type_xy.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sdatabase.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sdatabase.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sdatabase.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sdatabase.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. ugSgG #: 02000000.xhp @@ -1093,7 +1093,7 @@ "par_id3166420\n" "help.text" msgid "Average" -msgstr "" +msgstr "Permediu" #. NfRNs #: 02010100.xhp @@ -2542,7 +2542,7 @@ "par_id3152412\n" "help.text" msgid "You can formulate your query directly in SQL code. Note, however, that the special syntax is dependent upon the database system that you use." -msgstr "" +msgstr "Pues formular la to consulta direutamente en códigu SQL. Ye preciso recordar, sicasí, que la sintaxis esauta depende del sistema de bases de datos que s'utilice." #. kkuBG #: 02010100.xhp @@ -10057,7 +10057,7 @@ "par_idN105C0\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. qTva3 #: menufile.xhp @@ -10075,7 +10075,7 @@ "par_idN105D5\n" "help.text" msgid "Save As" -msgstr "" +msgstr "Guardar como" #. LDiQh #: menufile.xhp @@ -10183,7 +10183,7 @@ "tit\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. bMiRZ #: menufilesave.xhp @@ -10192,7 +10192,7 @@ "par_idN10547\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. BGNgM #: menufilesave.xhp @@ -10264,7 +10264,7 @@ "par_idN105B5\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. 48d8x #: menufilesave.xhp @@ -11155,7 +11155,7 @@ "par_idN10556\n" "help.text" msgid "Sort by" -msgstr "" +msgstr "Ordenar per" #. CRtP3 #: querywizard02.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sdraw/00.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sdraw/00.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sdraw/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sdraw/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-08 00:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -23,7 +23,7 @@ "tit\n" "help.text" msgid "To access this command..." -msgstr "P'acceder a esti comandu..." +msgstr "P'aportar a esta orde..." #. kDZCK #: 00000004.xhp @@ -32,7 +32,7 @@ "hd_id3156024\n" "help.text" msgid "To access this command..." -msgstr "P'acceder a esti comandu... " +msgstr "P'aportar a esta orde..." #. FS4FK #: page_menu.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sdraw/guide.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sdraw/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sdraw/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1523977270.000000\n" #. cZbDh @@ -1112,7 +1112,7 @@ "par_id3147344\n" "help.text" msgid "You can also use the Transparency option to replace the transparent areas of an image with a color." -msgstr "L'atributu Tresparencia considérase tamién un color. La tresparencia d'una imaxe pue sustituyise por otru color, por exemplu, blancu. Esto sería aconseyable si'l controlador de la imprentadora tuviera problemes cola impresión d'imaxes tresparentes." +msgstr "Tamién, la opción Tresparencia pue trocar les árees tresparentes d'una imaxe con un color." #. Ze6JL #: eyedropper.xhp @@ -1445,7 +1445,7 @@ "tit\n" "help.text" msgid "Inserting Graphics" -msgstr "Inxertar imaxe" +msgstr "Inxertar imáxenes" #. kGBzE #: graphic_insert.xhp @@ -2678,7 +2678,7 @@ "par_id0930200803002463\n" "help.text" msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value." -msgstr "" +msgstr "Calca col botón derechu del mur nel oxetu p'abrir el menú contestual. Escueyi Posición y tamañu - Xiru pa introducir un valor de xiru precisu." #. G5NAB #: rotate_object.xhp @@ -2957,7 +2957,7 @@ "par_idN10921\n" "help.text" msgid "Select the text in your Writer document." -msgstr "Escueya'l testu nel documentu de Writer." +msgstr "Escueyi'l testu nel documentu de Writer." #. 9TSZh #: text_enter.xhp @@ -2966,7 +2966,7 @@ "par_idN10925\n" "help.text" msgid "Copy the text to the clipboard (Edit - Copy)." -msgstr "Copie'l testu nel cartafueyu (Editar - Copiar)." +msgstr "Copia'l testu nel cartafueyu (Editar - Copiar)." #. xXHnT #: text_enter.xhp @@ -2975,7 +2975,7 @@ "par_idN1092D\n" "help.text" msgid "Click the page or slide where you want to paste the text." -msgstr "Faiga clic na páxina o diapositiva onde deseye apegar el testu." +msgstr "Calca la páxina o diapositiva onde deseyes apegar el testu." #. GCpCF #: text_enter.xhp @@ -2984,7 +2984,7 @@ "par_idN10931\n" "help.text" msgid "Paste the text using Edit - Paste or Edit - Paste special." -msgstr "Pegue'l testu por aciu Editar - Pegar o Editar - Pegáu especial." +msgstr "Apega'l testu por aciu Editar - Apegar o Editar - Apegáu especial." #. xHxJp #: text_enter.xhp @@ -2993,7 +2993,7 @@ "par_idN1093C\n" "help.text" msgid "Using Paste special, you can choose the text format to be pasted. Depending on formats, you can copy different text attributes." -msgstr "Por aciu Pegáu especial, pue escoyese el formatu del testu que se debe pegar. En función del formatu, puen copiase distintos atributos de testu." +msgstr "Por aciu Apegáu especial, pue escoyese'l formatu del testu que se tien d'apegar. En función del formatu, puen copiase distintos atributos de testu." #. CwhNW #: text_enter.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sdraw.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sdraw.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/sdraw.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/sdraw.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-01-13 19:39+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+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.15.2\n" "X-POOTLE-MTIME: 1507111981.000000\n" #. dHbww @@ -194,7 +194,7 @@ "hd_id102720151746522815\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Comentarios" #. XjZkS #: main0103.xhp @@ -644,7 +644,7 @@ "hd_id3147435\n" "help.text" msgid "Vector Graphics" -msgstr "Imaxes Vectoriales" +msgstr "Imáxenes vectoriales" #. xACf7 #: main0503.xhp @@ -653,7 +653,7 @@ "par_id3153142\n" "help.text" msgid "$[officename] Draw creates vector graphics using lines and curves defined by mathematical vectors. Vectors describe lines, ellipses, and polygons according to their geometry." -msgstr "$[officename] Draw crea imaxes vectoriales usando llinies y curves definíes por vectores matemáticos. Los vectores describen llinies, elipses y polígonos, según la so xeometría." +msgstr "Draw de $[officename] crea imáxenes vectoriales usando llinies y curves definíes por vectores matemáticos. Los vectores describen llinies, elipses y polígonos, según la so xeometría." #. RETRQ #: main0503.xhp @@ -725,7 +725,7 @@ "par_id3155333\n" "help.text" msgid "Technical diagrams often show the dimensions of objects in the drawing. In $[officename] Draw, you can use dimension lines to calculate and display linear dimensions." -msgstr "Los diagrames téunicos amuesen davezu les dimensiones de los oxetos nel dibuxu. En $[officename] Draw pue usar les llinies de cota pa calcular y visualizar les dimensiones lliniales." +msgstr "Los diagrames téunicos amuesen davezu les acotaciones de los oxetos nel dibuxu. En $[officename] Draw pue usar les llinies de cota pa calcular y visualizar les acotaciones lliniales." #. s5vj3 #: main0503.xhp @@ -743,7 +743,7 @@ "par_id3154022\n" "help.text" msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs." -msgstr "La galería contién imaxes, animaciones, soníos y otros elementos que puen inxertase y utilizase nos dibuxos y n'otros programes de $[officename]." +msgstr "La galería contién imáxenes, animaciones, soníos y otros elementos que puen inxertase y utilizase nos dibuxos y n'otros programes de $[officename]." #. dKxQU #: main0503.xhp @@ -752,7 +752,7 @@ "hd_id3149207\n" "help.text" msgid "Graphic File Formats" -msgstr "Formatos de ficheros d'Imaxes" +msgstr "Formatos de ficheros d'imáxenes" #. A4cAW #: main0503.xhp @@ -788,7 +788,7 @@ "par_id3146974\n" "help.text" msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)." -msgstr "" +msgstr "Nesti menú hai órdenes pa editar documentos de Draw (p. ex., copiar y apegar)." #. dCFBH #: main_edit.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/00.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/00.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-09 03:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1031,7 +1031,7 @@ "bm_id3152805\n" "help.text" msgid "ImageMap; definition" -msgstr "mapa d'imaxes;definir" +msgstr "imaxe calcable;definición" #. tWzD5 #: 00000002.xhp @@ -1040,7 +1040,7 @@ "hd_id3152805\n" "help.text" msgid "ImageMap" -msgstr "" +msgstr "Imaxe calcable" #. vbAkm #: 00000002.xhp @@ -1076,7 +1076,7 @@ "hd_id3146874\n" "help.text" msgid "ImageMap Formats" -msgstr "" +msgstr "Formatos d'imáxenes calcables" #. zVUjE #: 00000002.xhp @@ -1094,7 +1094,7 @@ "bm_id3152881\n" "help.text" msgid "Server Side ImageMap" -msgstr "Mapa d'imaxes dende'l sirvidor" +msgstr "imaxe calcable del llau del sirvidor" #. RQHEF #: 00000002.xhp @@ -1103,7 +1103,7 @@ "hd_id3152881\n" "help.text" msgid "Server Side ImageMaps" -msgstr "" +msgstr "Imáxenes calcables nel llau del sirvidor" #. E6FbV #: 00000002.xhp @@ -1148,7 +1148,7 @@ "bm_id3152418\n" "help.text" msgid "Client Side ImageMap" -msgstr "Mapa d'imaxes dende'l veceru" +msgstr "imaxe calcable del llau del veceru" #. ENXCD #: 00000002.xhp @@ -1157,7 +1157,7 @@ "hd_id3152418\n" "help.text" msgid "Client Side ImageMap" -msgstr "" +msgstr "Imaxe calcable nel llau del veceru" #. DKeXA #: 00000002.xhp @@ -1562,7 +1562,7 @@ "tit\n" "help.text" msgid "To access this command..." -msgstr "P'aportar a esti comandu..." +msgstr "P'aportar a esta orde..." #. FFv7f #: 00000004.xhp @@ -1571,7 +1571,7 @@ "hd_id3160447\n" "help.text" msgid "To access this command..." -msgstr "P'aportar a esti comandu... " +msgstr "P'aportar a esta orde..." #. viRG4 #: 00000004.xhp @@ -1580,7 +1580,7 @@ "par_id3147212\n" "help.text" msgid "Related Topics" -msgstr "Temes rellacionaes" +msgstr "Temes rellacionaos" #. bBAN4 #: 00000004.xhp @@ -2345,7 +2345,7 @@ "hd_id3163710\n" "help.text" msgid "Formatting" -msgstr "Formateáu" +msgstr "Formatu" #. JenZv #: 00000005.xhp @@ -3380,7 +3380,7 @@ "tit\n" "help.text" msgid "About Import and Export Filters" -msgstr "Alrodiu de filtros d'importación y esportación" +msgstr "Alrodiu de les peñeres d'importación y esportación" #. USyCP #: 00000020.xhp @@ -3398,7 +3398,7 @@ "hd_id3152952\n" "help.text" msgid "About Import and Export Filters" -msgstr "Alrodiu de filtros d'importación y esportación" +msgstr "Alrodiu de les peñeres d'importación y esportación" #. VUDKv #: 00000020.xhp @@ -3857,7 +3857,7 @@ "hd_id3150228\n" "help.text" msgid "Importing and Exporting Graphics Files" -msgstr "Importación y esportación de ficheros d'imaxes" +msgstr "Importación y esportación de ficheros d'imaxe" #. fukPK #: 00000020.xhp @@ -3884,7 +3884,7 @@ "par_id3146120\n" "help.text" msgid "Multipage-TIFFs are allowed when graphics are imported or exported in TIFF format. The graphics are retrieved as a set of individual pictures in a single file, for example, the individual pages of a fax." -msgstr "Cuando s'importen y esporten imaxes en formatu TIFF, tamién tien de tenese en cuenta lo que se conoz como multipage-Tiffs. Tratar de conxuntos d'imaxes individuales guardaes nun solu ficheru, por exemplu, caúna de les páxines d'un fax." +msgstr "Cuando s'importen y esporten imáxenes en formatu TIFF, tamién tien de tenese en cuenta lo que se conoz como TIFF multipáxina. Son conxuntos d'imaxes individuales guardaes nun solu ficheru, por exemplu, caúna de les páxines d'un fax." #. Mw8sa #: 00000020.xhp @@ -4064,7 +4064,7 @@ "par_idN10778\n" "help.text" msgid "ODF Master Document" -msgstr "Documentu Maestru ODF" +msgstr "Documentu principal ODF" #. zfswu #: 00000021.xhp @@ -4082,7 +4082,7 @@ "par_idN10779\n" "help.text" msgid "ODF Master Document Template" -msgstr "" +msgstr "Plantía de documentu principal ODF" #. h9xwQ #: 00000021.xhp @@ -4937,7 +4937,7 @@ "par_id344441\n" "help.text" msgid "Exports the file in binary format. The resulting file is smaller than a text file." -msgstr "Esportar el ficheru en formatu binariu. El ficheru resultante ye mas pequeñu que un ficheru de testu" +msgstr "Esporta'l ficheru en formatu binariu. El ficheru resultante ye más pequeñu qu'un ficheru de testu." #. MpCe5 #: 00000200.xhp @@ -4946,7 +4946,7 @@ "par_id3555783\n" "help.text" msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file." -msgstr "Esporta'l ficheru en formatu de testu ASCII. Esti tipu de ficheru ye más grande qu'un binariu." +msgstr "Esporta'l ficheru en formatu de testu ASCII. Esti tipu de ficheru ye más grande qu'un binariu." #. AzMVE #: 00000200.xhp @@ -5225,7 +5225,7 @@ "hd_id3154682\n" "help.text" msgid "Text delimiter" -msgstr "Separador de testu" +msgstr "Allindiador de testos" #. AC8vt #: 00000207.xhp @@ -14225,7 +14225,7 @@ "par_id3145348\n" "help.text" msgid "Opens a dialog where you can save the selected graphics." -msgstr "Abre un diálogu onde guardar les imaxes escoyíes." +msgstr "Abre un diálogu onde guardar les imáxenes esbillaes." #. 3nWVM #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-15 15:33+0000\n" +"PO-Revision-Date: 2023-04-17 22:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -41,7 +41,7 @@ "par_id3145669\n" "help.text" msgid "Creates a new $[officename] document." -msgstr "" +msgstr "Crea un documentu nuevu de $[officename]." #. EjWWb #: 01010000.xhp @@ -194,7 +194,7 @@ "par_id3154217\n" "help.text" msgid "Drawing" -msgstr "" +msgstr "Dibuxu" #. gqF2F #: 01010000.xhp @@ -248,7 +248,7 @@ "par_id3154298\n" "help.text" msgid "HTML Document" -msgstr "" +msgstr "Documentu HTML" #. rARaC #: 01010000.xhp @@ -302,7 +302,7 @@ "par_id3152938\n" "help.text" msgid "Master Document" -msgstr "" +msgstr "Documentu principal" #. GsRYy #: 01010000.xhp @@ -329,7 +329,7 @@ "par_id3155511\n" "help.text" msgid "Formula" -msgstr "" +msgstr "Fórmula" #. fTvXy #: 01010000.xhp @@ -356,7 +356,7 @@ "par_id3149417\n" "help.text" msgid "Labels" -msgstr "" +msgstr "Etiquetes" #. kKuXM #: 01010000.xhp @@ -545,7 +545,7 @@ "tit\n" "help.text" msgid "Master Document" -msgstr "" +msgstr "Documentu principal" #. BtFjN #: 01010001.xhp @@ -644,7 +644,7 @@ "tit\n" "help.text" msgid "Labels" -msgstr "" +msgstr "Etiquetes" #. o3HZ4 #: 01010201.xhp @@ -1076,7 +1076,7 @@ "hd_id3147336\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. x4kcz #: 01010202.xhp @@ -2426,7 +2426,7 @@ "hd_id3151100\n" "help.text" msgid "Filter list" -msgstr "Llista de filtros" +msgstr "Llista de peñeres" #. xbEBH #: 01020103.xhp @@ -2561,7 +2561,7 @@ "tit\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. b64Yr #: 01060000.xhp @@ -2750,7 +2750,7 @@ "tit\n" "help.text" msgid "Save As" -msgstr "" +msgstr "Guardar como" #. Kk9xp #: 01070000.xhp @@ -2849,7 +2849,7 @@ "hd_id3147228\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. FGARA #: 01070000.xhp @@ -2912,7 +2912,7 @@ "hd_id3147502\n" "help.text" msgid "Edit filter settings" -msgstr "" +msgstr "Editar axustes de peñeres" #. gwTHy #: 01070000.xhp @@ -3056,7 +3056,7 @@ "tit\n" "help.text" msgid "Export As" -msgstr "" +msgstr "Esportar como" #. nqF2H #: 01070002.xhp @@ -3704,7 +3704,7 @@ "par_id3156045\n" "help.text" msgid "Displays statistics for the current file." -msgstr "" +msgstr "Amuesa estadístiques del ficheru actual." #. 3TuM9 #: 01100400.xhp @@ -4073,7 +4073,7 @@ "par_01110001\n" "help.text" msgid "Select File - Templates." -msgstr "" +msgstr "Escueyi Ficheru - Plantíes." #. xfFYL #: 01110101.xhp @@ -4172,7 +4172,7 @@ "hd_id3145119\n" "help.text" msgid "Assign" -msgstr "" +msgstr "Asignar" #. 7XELF #: 01110101.xhp @@ -5243,7 +5243,7 @@ "hd_id471619228416830\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Comentarios" #. e6uax #: 01130000.xhp @@ -6296,7 +6296,7 @@ "tit\n" "help.text" msgid "Create Master Document" -msgstr "" +msgstr "Crear un documentu principal" #. JwCy8 #: 01160300.xhp @@ -6305,7 +6305,7 @@ "hd_id3152790\n" "help.text" msgid "Create Master Document" -msgstr "" +msgstr "Crear un documentu principal" #. xgR68 #: 01160300.xhp @@ -6368,7 +6368,7 @@ "hd_id3145313\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. WBUWc #: 01170000.xhp @@ -6377,7 +6377,7 @@ "tit\n" "help.text" msgid "Exit" -msgstr "" +msgstr "Colar" #. HfVSi #: 01170000.xhp @@ -7421,7 +7421,7 @@ "hd_id3153968\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Comentarios" #. PSGBG #: 02070000.xhp @@ -8969,7 +8969,7 @@ "par_id951559576846997\n" "help.text" msgid "For example, the regular expression \"(890)7\\1\\1\" matches \"8907890890\"." -msgstr "" +msgstr "Por exemplu, la espresión regular «(890)7\\1\\1» concasa con «8907890890»." #. FXv6A #: 02100001.xhp @@ -9005,7 +9005,7 @@ "par_id3153281\n" "help.text" msgid "Represents an alphanumeric character ([:alpha:] and [:digit:])." -msgstr "" +msgstr "Representa un caráuter alfanumbéricu ([:alpha:] y [:digit:])." #. hzCEE #: 02100001.xhp @@ -11498,7 +11498,7 @@ "tit\n" "help.text" msgid "ImageMap Editor" -msgstr "" +msgstr "Editor d'imáxenes calcables" #. TAxDP #: 02220000.xhp @@ -11507,7 +11507,7 @@ "hd_id3150502\n" "help.text" msgid "ImageMap Editor" -msgstr "" +msgstr "Editor d'imáxenes calcables" #. JbUy9 #: 02220000.xhp @@ -11525,7 +11525,7 @@ "par_id3149751\n" "help.text" msgid "You can draw three types of hotspots: rectangles, ellipses, and polygons. When you click a hotspot, the URL is opened in the browser window or frame that you specify. You can also specify the text that appears when your mouse rests on the hotspot." -msgstr "" +msgstr "Puedes trazar trés tipos de zones actives: reutángulos, elipses y polígonos. Cuando calques nuna zona activa, l'URL s'abre na ventana o nel marcu del restolador qu'especifiques. Pues especificar tamién el testu qu'apaez cuando'l mur se posa sobre la zona activa." #. vzWkG #: 02220000.xhp @@ -11588,7 +11588,7 @@ "par_id3149795\n" "help.text" msgid "Icon Open" -msgstr "" +msgstr "Iconu Abrir" #. nGQif #: 02220000.xhp @@ -11606,7 +11606,7 @@ "hd_id3147618\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. 4QE4A #: 02220000.xhp @@ -11633,7 +11633,7 @@ "par_id3152772\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. pSH4D #: 02220000.xhp @@ -11642,7 +11642,7 @@ "hd_id3150791\n" "help.text" msgid "Select" -msgstr "" +msgstr "Esbillar" #. BAqNZ #: 02220000.xhp @@ -17933,7 +17933,7 @@ "par_id3149926\n" "help.text" msgid "RR or GGGEE" -msgstr "" +msgstr "RR o GGGEE" #. VjRXz #: 05020301.xhp @@ -25151,7 +25151,7 @@ "tit\n" "help.text" msgid "Align Left" -msgstr "" +msgstr "Alliniar a la izquierda" #. GpUBk #: 05070100.xhp @@ -31586,7 +31586,7 @@ "par_id3152416\n" "help.text" msgid "Align Left" -msgstr "" +msgstr "Alliniar a la izquierda" #. bmiBe #: 05280000.xhp @@ -37391,7 +37391,7 @@ "hd_id3647571\n" "help.text" msgid "Arrow left" -msgstr "" +msgstr "Flecha izquierda" #. KmR6T #: 06020000.xhp @@ -41000,7 +41000,7 @@ "hd_id3149388\n" "help.text" msgid "Assign" -msgstr "" +msgstr "Asignar" #. FgweP #: 06130000.xhp @@ -42863,7 +42863,7 @@ "hd_id3150823\n" "help.text" msgid "Save" -msgstr "" +msgstr "Guardar" #. aJ9xF #: 06140200.xhp @@ -46355,7 +46355,7 @@ "par_id0821200910573716\n" "help.text" msgid "See also Digital Signatures." -msgstr "" +msgstr "Ver tamién Robles dixitales." #. Yj9ay #: digitalsignatures.xhp @@ -46499,7 +46499,7 @@ "tit\n" "help.text" msgid "Extension Update" -msgstr "" +msgstr "Anovamientu d'estensiones" #. gFZiV #: extensionupdate.xhp @@ -46508,7 +46508,7 @@ "hd_id9688100\n" "help.text" msgid "Extension Update" -msgstr "" +msgstr "Anovamientu d'estensiones" #. C93ei #: extensionupdate.xhp @@ -46652,7 +46652,7 @@ "hd_id5699942\n" "help.text" msgid "Show all Updates" -msgstr "" +msgstr "Amosar tolos anovamientos" #. q8XGs #: extensionupdate.xhp @@ -47129,7 +47129,7 @@ "hd_id3153089\n" "help.text" msgid "File Type" -msgstr "" +msgstr "Triba de ficheru" #. qCFFY #: gallery_files.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/02.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/02.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/02.po 2023-05-03 15:22:13.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: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-04-17 22:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Poedit-SourceCharset: utf-8\n" "X-POOTLE-MTIME: 1542028589.000000\n" @@ -1059,7 +1059,7 @@ "hd_id3147171\n" "help.text" msgid "Combo Box" -msgstr "Cuadru combináu" +msgstr "Caxa combinada" #. pdZ4w #: 01170000.xhp @@ -1068,7 +1068,7 @@ "par_id3149981\n" "help.text" msgid "Icon Combo Box" -msgstr "" +msgstr "Iconu Caxa combinada" #. bUeTF #: 01170000.xhp @@ -1113,7 +1113,7 @@ "par_id3154731\n" "help.text" msgid "You can apply text and graphics to these buttons." -msgstr "Pue aplicar a estos botones testu ya imaxes." +msgstr "Pues aplicar a estos botones testu ya imáxenes." #. YzDya #: 01170000.xhp @@ -1986,7 +1986,7 @@ "hd_id3155857\n" "help.text" msgid "Combo Box" -msgstr "Cuadru combináu" +msgstr "Caxa combinada" #. frsXu #: 01170001.xhp @@ -1995,7 +1995,7 @@ "par_id3150012\n" "help.text" msgid "The selected control is transformed into a combo box." -msgstr "El control escoyíu tresformar nun cuadru combináu." +msgstr "El control esbilláu tresfórmase nuna caxa combinada." #. XjBTZ #: 01170001.xhp @@ -5640,7 +5640,7 @@ "par_id3145295\n" "help.text" msgid "For list boxes, you can use value lists. Value lists are lists that define reference values. In this way, the control in the form does not directly display the content of a database field, but rather values assigned in the value list." -msgstr "Nos llistaos puen utilizase llistes de valores, que definen valores referenciales. D'esti mou, el campu de control nun amuesa direutamente nel formulariu un conteníu d'un campu de datos, sinón los valores asignaos por aciu la llista de valores." +msgstr "Nes caxes de llista puen utilizase llistes de valores, que definen valores referenciales. D'esti mou, el control nel formulariu nun amuesa direutamente'l conteníu d'un campu de base de datos, sinón los valores asignaos por aciu la llista de valores." #. EycVV #: 01170102.xhp @@ -6081,7 +6081,7 @@ "par_id3158404\n" "help.text" msgid "Entry in value list of the control (List content)" -msgstr "Entrada na llista de valores del campu de control (Conteníu de llista)" +msgstr "Entrada na llista de valores del control (Conteníu de llista)" #. Fyj6B #: 01170102.xhp @@ -6090,7 +6090,7 @@ "par_id3151198\n" "help.text" msgid "Transmitted data" -msgstr "Tresmisión..." +msgstr "Datos tresmitíos" #. R7Fmj #: 01170102.xhp @@ -13830,7 +13830,7 @@ "par_id3154186\n" "help.text" msgid "Icon Next Page" -msgstr "" +msgstr "Iconu Páxina siguiente" #. FS8rq #: 10020000.xhp @@ -14100,7 +14100,7 @@ "par_id3150693\n" "help.text" msgid "Sorts the data of the selected field in ascending order. Text fields are sorted alphabetically, numerical fields are sorted by number." -msgstr "Ordena los datos de los campos escoyíos de mou ascendente. Los campos de testu son ordenaos alfabéticamente, los campos numericos son ordenar por númberu." +msgstr "Ordena los datos de los campos escoyíos de mou ascendente. Los campos de testu son ordenaos alfabéticamente; los campos numericos ordénense per númberu." #. hLscj #: 12010000.xhp @@ -14145,7 +14145,7 @@ "par_id3149987\n" "help.text" msgid "Sorts the data of the selected field in descending order. Text fields are sorted alphabetically, number fields are sorted by number." -msgstr "Ordena los datos del campu escoyíu en forma descendente. Los campos de testu ordenar alfabéticamente, los campos numbéricos ordenar por númberu." +msgstr "Ordena los datos del campu escoyíu en forma descendente. Los campos de testu son ordenaos alfabéticamente; los campos numbéricos ordénense per númberu." #. SF2GC #: 12030000.xhp @@ -17844,7 +17844,7 @@ "tit\n" "help.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. 3BsfP #: 20030000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/04.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/04.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-03-21 12:31+0100\n" -"PO-Revision-Date: 2022-06-15 20:40+0000\n" +"PO-Revision-Date: 2023-04-09 03:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Poedit-SourceCharset: utf-8\n" "X-POOTLE-MTIME: 1531064732.000000\n" @@ -915,7 +915,7 @@ "hd_id31541233\n" "help.text" msgid "Shortcut keys for editing or formatting documents" -msgstr "Atayos de tecláu pa editar o formatear documentos" +msgstr "Atayos de tecláu pa editar o formatiar documentos" #. gFNeG #: 01010000.xhp @@ -2175,7 +2175,7 @@ "par_id3152955\n" "help.text" msgid "Selects the next point of the drawing object (Point Selection mode)." -msgstr "" +msgstr "Esbilla'l puntu siguente del oxetu de dibuxu (nel mou Esbilla de puntos)." #. vEJKn #: 01010000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/autopi.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/autopi.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/autopi.po 2023-05-03 15:22:13.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: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-04-04 11:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Poedit-SourceCharset: utf-8\n" "X-POOTLE-MTIME: 1524568663.000000\n" @@ -465,7 +465,7 @@ "hd_id3152922\n" "help.text" msgid "Spacing to left margin" -msgstr "Dende la esquierda derecha" +msgstr "Espaciáu al marxe izquierdu" #. cTiMt #: 01010200.xhp @@ -3309,7 +3309,7 @@ "hd_id3153379\n" "help.text" msgid "Align left" -msgstr "Esquierda" +msgstr "Alliniar a la izquierda" #. Ah2Er #: 01090300.xhp @@ -5469,7 +5469,7 @@ "par_id3147102\n" "help.text" msgid "Specifies the graphics type and the target screen resolution." -msgstr "Especifica'l tipu d'imaxes y el resolvimientu de pantalla de destín." +msgstr "Especifica la triba d'imaxe y la resolución de pantalla de destín." #. C7LGE #: 01110300.xhp @@ -5568,7 +5568,7 @@ "hd_id3148552\n" "help.text" msgid "Monitor resolution" -msgstr "Resolvimientu del monitor" +msgstr "Resolución del monitor" #. 7nTC4 #: 01110300.xhp @@ -5586,7 +5586,7 @@ "hd_id3152361\n" "help.text" msgid "Low resolution (640x480 pixels)" -msgstr "Resolvimientu baxu (640x480 píxeles)" +msgstr "Resolución baxa (640 × 480 píxeles)" #. W7Fy8 #: 01110300.xhp @@ -5604,7 +5604,7 @@ "hd_id3153361\n" "help.text" msgid "Medium resolution (800x600 pixels)" -msgstr "Resolvimientu mediu (800x600 píxeles)" +msgstr "Resolución media (800 × 600 píxeles)" #. Q3GDQ #: 01110300.xhp @@ -5613,7 +5613,7 @@ "par_id3154686\n" "help.text" msgid "Select the medium resolution for a medium-sized presentation." -msgstr "Escueya'l resolvimientu mediu pa una presentación de tamañu medianu." +msgstr "Escueyi la resolución media pa una presentación de tamañu mediu." #. sJMr5 #: 01110300.xhp @@ -5622,7 +5622,7 @@ "hd_id3153968\n" "help.text" msgid "High resolution (1024x768 pixels)" -msgstr "Resolvimientu altu (1024x768 píxeles)" +msgstr "Resolución alta (1024 × 768 píxeles)" #. 3qBAE #: 01110300.xhp @@ -5631,7 +5631,7 @@ "par_id3149810\n" "help.text" msgid "Select a high resolution for a high quality slide display." -msgstr "Escueya un resolvimientu altu pa una presentación d'alta calidá." +msgstr "Escueyi una resolución alta pa una presentación de calidá alta." #. BSRTB #: 01110300.xhp @@ -5829,7 +5829,7 @@ "par_id3155351\n" "help.text" msgid "This page is not visible if you have unmarked the Create title page check box, or if you have selected either automatic or WebCast export." -msgstr "Esta páxina nun ta visible si haise deseleicionado el caxellu de verificación Crear portada o si escoyóse esportación automática o WebCast." +msgstr "Esta páxina nun ye visible si se desesbilló el caxellu de verificación Crear una portada o si s'escoyó esportación automática o WebCast." #. AieZZ #: 01110500.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/guide.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/guide.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 10:44+0000\n" +"PO-Revision-Date: 2023-04-16 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -32,7 +32,7 @@ "bm_id3156324\n" "help.text" msgid "samples and templatestemplates; new documents from templatesbusiness cards; using templates" -msgstr "amueses y plantíesplantíes;documentos nuevos a partir de plantíestarxetes de presentación;nueves" +msgstr "amosances y plantíesplantíes;documentos nuevos a partir de plantíestarxetes de presentación;nueves" #. wQtGF #: aaa_start.xhp @@ -6071,7 +6071,7 @@ "par_id661634735416764\n" "help.text" msgid "Text Delimiter" -msgstr "" +msgstr "Allindiador de testos" #. A3NpW #: csv_params.xhp @@ -6080,7 +6080,7 @@ "par_id131634735421911\n" "help.text" msgid "The text delimiter as ASCII value, like 34 for double quotes and 39 for single quotes. Example: 34 (\")." -msgstr "" +msgstr "L'allindiador de testos como valor ASCII; por exemplu, 34 para comines dobles (\"), o 39 para comines simples (')." #. 5EFCS #: csv_params.xhp @@ -6494,7 +6494,7 @@ "par_id7881263433\n" "help.text" msgid "Ignore field (do not import)" -msgstr "" +msgstr "Inorar el campu (nun importar)" #. LEJDn #: csv_params.xhp @@ -6503,7 +6503,7 @@ "par_id6920129719\n" "help.text" msgid "US-English" -msgstr "" +msgstr "Inglés (EE. XX.)" #. wLth6 #: csv_params.xhp @@ -7376,7 +7376,7 @@ "par_id7869502\n" "help.text" msgid "Either create a new Base file using the Database Wizard, or open any existing Base file that is not read-only." -msgstr "" +msgstr "Crea un ficheru nuevu de Base col encontu de bases de datos o abre un ficheru esistente que nun sía namái de llectura." #. JHYC6 #: data_im_export.xhp @@ -7385,7 +7385,7 @@ "par_id9852900\n" "help.text" msgid "Open the Calc file that contains the data to be imported to Base. You can open a *.dbf dBASE file or many other file types." -msgstr "Abre el ficheru Calc que contién los datos pa ser importaos a Base. Pues abrir el ficheru *.dbf dBASE o munchos otros tipos de ficheros." +msgstr "Abri'l ficheru de Calc que contién los datos pa ser importaos a Base. Pues abrir el ficheru *.dbf dBASE o munchos otros tipos de ficheros." #. ZnCh7 #: data_im_export.xhp @@ -9293,7 +9293,7 @@ "par_id461627914264898\n" "help.text" msgid "Property: Shows the names of the object properties." -msgstr "" +msgstr "Propiedá: amuesa los nomes de les propiedaes del oxetu." #. hDfcB #: dev_tools.xhp @@ -11057,7 +11057,7 @@ "par_id3151211\n" "help.text" msgid "Plain text can be copied using drag-and-drop from one document to a data field in the data source view." -msgstr "El testu simple pue copiase por aciu la función d'abasnar y asitiar d'un documentu a un campu de datos na vista de fonte de datos." +msgstr "El testu planu pue copiase por aciu la función d'abasnar y asitiar d'un documentu a un campu de datos na vista de fonte de datos." #. oqs3E #: dragdrop_beamer.xhp @@ -13901,7 +13901,7 @@ "tit\n" "help.text" msgid "Adding Clickable Hotspots to Images" -msgstr "Amestar zones actives seleicionables a imaxes" +msgstr "Amestar zones actives calcables a les imáxenes" #. B6fGi #: imagemap.xhp @@ -13910,7 +13910,7 @@ "bm_id3150502\n" "help.text" msgid "ImageMap; editor editors; ImageMap editor images; ImageMap pictures; ImageMap hotspots;adding to images URL;in pictures" -msgstr "mapa d'imaxe; editor editores; editor del mapa d'imaxe imaxes; mapa d'imaxe imaxes; mapa d'imaxe zones actives; amestar a les imaxes URL;n'imaxes" +msgstr "imaxe calcable; editoreditores; editor d'imáxenes calcablesimáxenes; imaxe calcableimáxenes; imaxe calcablezones actives; amestar a les imáxenesURL;n'imáxenes" #. 2hvMi #: imagemap.xhp @@ -13919,7 +13919,7 @@ "par_idN10631\n" "help.text" msgid "Adding Clickable Hotspots to Images" -msgstr "Amestar zones actives pa faer clic nes imaxes" +msgstr "Amestar zones actives calcables a les imáxenes" #. ACvQ6 #: imagemap.xhp @@ -13928,7 +13928,7 @@ "par_idN1064F\n" "help.text" msgid "An ImageMap allows you to attach URLs to specific areas, called hotspots, on a picture in your document. An image map is a group of one or more hotspots." -msgstr "Un mapa d'imaxes dexa axuntar URL a árees concretes, denominaes \"zones actives\", sobre una imaxe del documentu Un mapa d'imaxes ye un grupu d'una o más zones actives." +msgstr "Una imaxe calcable dexa axuntar URL a árees concretes, denominaes «zones actives», sobre una imaxe del documentu. Una imaxe calcable ye un grupu d'una o más zones actives." #. bFeED #: imagemap.xhp @@ -13955,7 +13955,7 @@ "par_idN1067E\n" "help.text" msgid "Position the cursor where you want the ImageMap in your document." -msgstr "Coloque'l cursor onde deseye asitiar el mapa d'imaxes nel documentu." +msgstr "Coloca'l cursor onde deseyes asitiar la imaxe calcable nel documentu." #. AuLFm #: imagemap.xhp @@ -13982,7 +13982,7 @@ "par_idN106A0\n" "help.text" msgid "Use the icons in the ImageMap Editor to draw a hotspot shape, for example a rectangle, over the image at the background." -msgstr "Por aciu los iconos del Editor de mapa d'imaxes, dibuxe una forma de zona activa, por exemplu un rectángulu, sobre la imaxe que ta no fondero." +msgstr "Por aciu los iconos del Editor d'imáxenes calcables, dibuxa una forma de zona activa, por exemplu un reutángulu, sobre la imaxe que ta no fondero." #. EBGj6 #: imagemap.xhp @@ -14018,7 +14018,7 @@ "par_idN106B3\n" "help.text" msgid "Click the Apply button to apply your changes, and close the ImageMap Editor." -msgstr "Faiga clic nel botón Aplicar por que los cambeos surtan efeutu y zarru l'Editor de mapa d'imaxes." +msgstr "Calca'l botón Aplicar pa que los cambeos surtan efeutu y zarra l'Editor d'imáxenes calcables." #. 7kkzm #: imagemap.xhp @@ -14036,7 +14036,7 @@ "par_idN106BA\n" "help.text" msgid "You may save the ImageMap as a file and upload that file to a Web server, for example." -msgstr "El mapa d'imaxes pue guardase como ficheru y cargalo nun sirvidor web, por exemplu." +msgstr "La imaxe calcable pue guardase como ficheru y xubise nun sirvidor web, por exemplu." #. LkKHd #: import_ms.xhp @@ -17573,7 +17573,7 @@ "par_id361634728189424\n" "help.text" msgid "Index" -msgstr "" +msgstr "Índiz" #. mwKC2 #: lotusdbasediff.xhp @@ -22253,7 +22253,7 @@ "bm_id5201574\n" "help.text" msgid "gradients off for faster printingbitmaps;off for faster printingresolution when printing bitmaps transparency;off for faster printingreduced printingspeed of printingprinting speedprinting;transparenciesprinting;fasterfaster printing" -msgstr "gradientes desactivaos pa impresión más rápidamapes de bits;desactivaos pa impresión más rápidaresolvimientu al imprentar mapes de bitstresparencia;desactivada pa impresión más rápidaimpresión amenorgadavelocidá d'impresiónvelocidá d'impresiónimprentar;tresparenciesimprentar;más rápiduimpresión más rápida" +msgstr "dilíos desactivaos pa imprentación más rápidamapes de bits;desactivaos pa imprentación más rápidaresolución al imprentar mapes de bitstresparencia;desactivada pa imprentación más rápidaimpresión amenorgadavelocidá d'imprentaciónvelocidá d'imprentaciónimprentar;tresparenciesimprentar;más rápidoimprentación más rápida" #. ChsGL #: print_faster.xhp @@ -22424,7 +22424,7 @@ "par_id3145121\n" "help.text" msgid "Choose File - Save As and mark the Save with password check box. Save the document." -msgstr "Escueya Ficheru - Guardar como y marque el caxellu de verificación Guardar con contraseña. Guarde'l documentu." +msgstr "Escueyi Ficheru - Guardar como y marca'l caxellu de verificación Guardar con contraseña. Guarda'l documentu." #. 8YAs7 #: protection.xhp @@ -24449,7 +24449,7 @@ "tit\n" "help.text" msgid "Configuring Printer and Fax Under UNIX Based Platforms" -msgstr "" +msgstr "Configurar imprentadores y faxes nes plataformes basaes n'UNIX" #. ub5oa #: spadmin.xhp @@ -25475,7 +25475,7 @@ "par_id571571707462064\n" "help.text" msgid "The debug options --record, --backtrace, --strace and --valgrind cannot be used together. Please use them one by one." -msgstr "" +msgstr "Les opciones de depuración --record, --backtrace, --strace y --valgrind nun se puen usar xuntes. Úsales individualmente." #. hntPb #: start_parameters.xhp @@ -25484,7 +25484,7 @@ "par_id20161204122420839\n" "help.text" msgid "New document creation arguments" -msgstr "" +msgstr "Argumentos pa crear documentos nuevos" #. o63G2 #: start_parameters.xhp @@ -26699,7 +26699,7 @@ "par_id431607690468509\n" "help.text" msgid "Extensions Icon" -msgstr "" +msgstr "Iconu Estensiones" #. mwqRi #: template_manager.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/optionen.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared/optionen.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared/optionen.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -86,7 +86,7 @@ "par_id61597440155071\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options" -msgstr "" +msgstr "%PRODUCTNAME - PreferenciesFerramientes - Opciones" #. WS53M #: 01000000.xhp @@ -572,7 +572,7 @@ "par_id3154942\n" "help.text" msgid "Type your email address. For example, my.name@my.provider.com" -msgstr "" +msgstr "Escribi les tos señes electróniques. Por exemplu: el.mio.nome@el.mio.fornidor.com" #. DA4Z7 #: 01010100.xhp @@ -2327,7 +2327,7 @@ "par_id3148473\n" "help.text" msgid "Specifies the language and the available spelling, hyphenation and Thesaurus sub-modules for the selected module. You can arrange the sub-modules by priority." -msgstr "Especifica l'idioma y l'ortografía disponible, el separtamientu silábicu y los submódulos del Diccionariu de sinónimos pal módulu escoyíu. Pue ordenar los submódulos por prioridá." +msgstr "Especifica la llingua y los somódulos d'ortografía, guionáu y sinónimos disponibles pal módulu esbilláu. Pues organizar los somódulos per prioridá." #. hxdgC #: 01010401.xhp @@ -4154,7 +4154,7 @@ "hd_id3146969\n" "help.text" msgid "Resolution" -msgstr "Resolvimientu" +msgstr "Resolución" #. QMq4F #: 01010900.xhp @@ -9059,7 +9059,7 @@ "hd_id3154684\n" "help.text" msgid "Resolution" -msgstr "Resolvimientu" +msgstr "Resolución" #. LnD2F #: 01050100.xhp @@ -9104,7 +9104,7 @@ "hd_id3147228\n" "help.text" msgid "Subdivision" -msgstr "Subdivisión" +msgstr "Sodivisión" #. EkHaL #: 01050100.xhp @@ -9671,7 +9671,7 @@ "hd_id0909200810585828\n" "help.text" msgid "Zoom" -msgstr "Escala" +msgstr "Ampliación" #. ihBVU #: 01060100.xhp @@ -13829,7 +13829,7 @@ "par_idN10681\n" "help.text" msgid "User interface" -msgstr "Interfaz del usuariu" +msgstr "Interfaz d'usuariu" #. KxwTu #: 01140000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/shared.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-03-26 22:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542196266.000000\n" #. fcmzq @@ -68,7 +68,7 @@ "hd_id991641581514302\n" "help.text" msgid "Find Text" -msgstr "" +msgstr "Guetar testu" #. 979Nt #: find_toolbar.xhp @@ -869,7 +869,7 @@ "par_idN107F5\n" "help.text" msgid "Zoom" -msgstr "Escala" +msgstr "Ampliación" #. zYZRw #: main0201.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/simpress/00.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/simpress/00.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/simpress/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/simpress/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-02-15 15:33+0000\n" +"PO-Revision-Date: 2023-04-08 00:35+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -23,7 +23,7 @@ "tit\n" "help.text" msgid "To access this command" -msgstr "P'aportar a esti comandu" +msgstr "P'aportar a esta orde" #. LgX3a #: 00000004.xhp @@ -32,7 +32,7 @@ "hd_id3149655\n" "help.text" msgid "To access this command " -msgstr "P'aportar a esti comandu " +msgstr "P'aportar a esta orde" #. Aehfn #: 00000004.xhp @@ -752,7 +752,7 @@ "par_id3148489\n" "help.text" msgid "In the context menu of a dimension line, choose Dimensions." -msgstr "Nel menú contestual d'una llinia de cota, escueyi Dimensiones." +msgstr "Nel menú contestual d'una llinia de cota, escueyi Cotes." #. t2Prp #: 00000405.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/simpress/01.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/simpress/01.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/simpress/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/simpress/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-09 03:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1535978252.000000\n" #. mu9aV @@ -3686,7 +3686,7 @@ "par_id3148488\n" "help.text" msgid "Show styles for formatting graphical elements, including text objects." -msgstr "Amuesa estilos pa formatear elementos gráfiques, incluyendo oxetos de testu." +msgstr "Amuesa estilos pa formatiar elementos gráficos, incluyíos oxetos de testu." #. XNPx5 #: 05100000.xhp @@ -4154,7 +4154,7 @@ "par_id3159154\n" "help.text" msgid "Changes the length, measurement and guide properties of the selected dimension line." -msgstr "Camuda les propiedaes de llargor, midida y guíes de la ínea de dimensiones." +msgstr "Camuda les propiedaes de llargor, midida y guíes de la línea de cota." #. LFNHu #: 05150000.xhp @@ -5495,7 +5495,7 @@ "hd_id3154641\n" "help.text" msgid "Delete All Images" -msgstr "Desaniciar toles imaxes" +msgstr "Desaniciar toles imáxenes" #. hgvDJ #: 06050000.xhp @@ -5522,7 +5522,7 @@ "par_id3153618\n" "help.text" msgid "Delete All Images" -msgstr "Desaniciar toles imaxes" +msgstr "Desaniciar toles imáxenes" #. h26zY #: 06050000.xhp @@ -5540,7 +5540,7 @@ "par_id3149294\n" "help.text" msgid "Total number of images in the animation." -msgstr "Númberu total d'imaxes de l'animación." +msgstr "Númberu total d'imáxenes de l'animación." #. Tx3su #: 06050000.xhp @@ -5594,7 +5594,7 @@ "par_id3155329\n" "help.text" msgid "Combines images into a single image." -msgstr "" +msgstr "Fusiona imáxenes nuna sola." #. nRTHE #: 06050000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/simpress/02.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/simpress/02.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/simpress/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/simpress/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-12 11:50+0200\n" -"PO-Revision-Date: 2022-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-03-27 23:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507112012.000000\n" #. AiACn @@ -284,7 +284,7 @@ "tit\n" "help.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. Zzvoy #: 10020000.xhp @@ -329,7 +329,7 @@ "par_id3153246\n" "help.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. a2K3j #: 10020000.xhp @@ -4478,7 +4478,7 @@ "par_id3147401\n" "help.text" msgid "Open the Insert toolbar, where you can add objects, including charts, spreadsheets, and images, to your document." -msgstr "Abra la barra de ferramientes Inxertar, que dexa incorporar oxetos, diagrames, fueyes de cálculu ya imaxes nel documentu." +msgstr "Abra la barra de ferramientes Inxertar, que dexa incorporar oxetos, diagrames, fueyes de cálculu ya imáxenes nel documentu." #. wN5uw #: 10110000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/simpress/04.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/simpress/04.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/simpress/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/simpress/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-06-15 20:39+0000\n" +"PO-Revision-Date: 2023-04-09 03:34+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.15.2\n" "X-POOTLE-MTIME: 1513600491.000000\n" #. mYCYv @@ -914,7 +914,7 @@ "hd_ii3153818\n" "help.text" msgid "Arrow Left" -msgstr "Flecha esquierda" +msgstr "Flecha izquierda" #. AYMcz #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/simpress/guide.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/simpress/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/simpress/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-03-26 22:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -293,7 +293,7 @@ "tit\n" "help.text" msgid "Creating Animated GIF Images" -msgstr "Crear imaxes GIF animaes" +msgstr "Crear imáxenes GIF animaes" #. HchQ5 #: animated_gif_create.xhp @@ -4550,7 +4550,7 @@ "par_id221120161524592232\n" "help.text" msgid "Insert images" -msgstr "" +msgstr "Inxertar imáxenes" #. 993TX #: presenter_console.xhp @@ -6107,7 +6107,7 @@ "tit\n" "help.text" msgid "Converting Bitmap Images into Vector Graphics" -msgstr "Convertir imaxes bitmap n'imaxes vectoriales" +msgstr "Convertir imáxenes de mapa de bits n'imáxenes vectoriales" #. 4mWfo #: vectorize.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/smath/00.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/smath/00.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/smath/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/smath/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-02-09 16:46+0100\n" -"PO-Revision-Date: 2022-12-10 08:24+0000\n" +"PO-Revision-Date: 2023-04-07 05:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1494346285.000000\n" #. E9tti @@ -491,7 +491,7 @@ "par_id3147628\n" "help.text" msgid "Choose Format - Align" -msgstr "Escueyi Formatu - Alliñar" +msgstr "Escueyi Formatu - Alliniar" #. X3CNj #: 00000004.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/smath/01.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/smath/01.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/smath/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/smath/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-04-11 15:28+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-28 06:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -2813,7 +2813,7 @@ "par_id3149320\n" "help.text" msgid "nth Root" -msgstr "Raigañu n" +msgstr "Raíz n" #. gqW4K #: 03090400.xhp @@ -4451,7 +4451,7 @@ "par_id3155074\n" "help.text" msgid "Inserts a placeholder for a transparent character. This character takes up the space of \"a\" but does not display it. You can also type phantom in the Commands window." -msgstr "Inxerta un marcador de posición pa un caráuter tresparente. Esti caráuter ocupa l'espaciu de \"a\" pero non l'amuesa. Tamién pue escribir phantom na ventana Comandos." +msgstr "Inxerta un marcador de posición pa un caráuter tresparente. Esti caráuter ocupa l'espaciu de «a» pero nun l'amuesa. Tamién pues escribir phantom na ventana Comandos." #. wjZHb #: 03090600.xhp @@ -5405,7 +5405,7 @@ "par_id3149035\n" "help.text" msgid "Intersection" -msgstr "Promediu" +msgstr "Interseición" #. jaBUA #: 03090800.xhp @@ -6971,7 +6971,7 @@ "par_idN106F7\n" "help.text" msgid "Typed command(s)" -msgstr "Comandos escritos" +msgstr "Órdenes escrites" #. PASwd #: 03091501.xhp @@ -7511,7 +7511,7 @@ "par_idN10C98\n" "help.text" msgid "Typed command(s)" -msgstr "Comandos escritos" +msgstr "Órdenes escrites" #. KKBwS #: 03091502.xhp @@ -8195,7 +8195,7 @@ "par_idN1130F\n" "help.text" msgid "Typed command(s)" -msgstr "Comandos escritos" +msgstr "Órdenes escrites" #. vnTjh #: 03091503.xhp @@ -8663,7 +8663,7 @@ "par_idN11838\n" "help.text" msgid "Typed command(s)" -msgstr "Comandos escritos" +msgstr "Órdenes escrites" #. a5ps3 #: 03091504.xhp @@ -9032,7 +9032,7 @@ "par_id3165402\n" "help.text" msgid "n-th root of x" -msgstr "raigañu n de x" +msgstr "Raíz n de x" #. CGCrv #: 03091504.xhp @@ -9041,7 +9041,7 @@ "par_id3151502\n" "help.text" msgid "Icon Sine" -msgstr "" +msgstr "Iconu Senu" #. nAEE2 #: 03091504.xhp @@ -9185,7 +9185,7 @@ "par_idN11DE4\n" "help.text" msgid "Typed command(s)" -msgstr "Comandos escritos" +msgstr "Órdenes escrites" #. hz7rD #: 03091505.xhp @@ -9500,7 +9500,7 @@ "par_idN12175\n" "help.text" msgid "Typed command(s)" -msgstr "Comandos escritos" +msgstr "Órdenes escrites" #. 5rVdo #: 03091506.xhp @@ -9968,7 +9968,7 @@ "par_idN126E6\n" "help.text" msgid "Typed command(s)" -msgstr "Comandos escritos" +msgstr "Órdenes escrites" #. XEis3 #: 03091507.xhp @@ -10409,7 +10409,7 @@ "par_idN12B53\n" "help.text" msgid "Typed command(s)" -msgstr "Comandos escritos" +msgstr "Órdenes escrites" #. ZeeGR #: 03091508.xhp @@ -10895,7 +10895,7 @@ "tit\n" "help.text" msgid "Formatting" -msgstr "Formateo" +msgstr "Formatu" #. HsVeG #: 03091509.xhp @@ -10904,7 +10904,7 @@ "bm_id3184255\n" "help.text" msgid "formatting; reference list (Math)" -msgstr "formateo; llista de referencia (Math)" +msgstr "formatu; llista de referencia (Math)" #. HxDK5 #: 03091509.xhp @@ -10922,7 +10922,7 @@ "par_idN1308F\n" "help.text" msgid "Typed command(s)" -msgstr "Comandos escritos" +msgstr "Órdenes escrites" #. sCBE5 #: 03091509.xhp @@ -12218,7 +12218,7 @@ "par_id3149126\n" "help.text" msgid "Check this box to assign the italic attribute to the font." -msgstr "Si calca esti caxellu de verificación, la fonte va representar en cursiva." +msgstr "Si calques esti caxellu de verificación, la fonte va representase en cursiva." #. GVz9x #: 05020000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/smath/04.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/smath/04.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/smath/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/smath/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-07-01 16:24+0000\n" +"PO-Revision-Date: 2023-04-09 03:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1494346360.000000\n" #. fW4At @@ -185,7 +185,7 @@ "hd_id3155927\n" "help.text" msgid "Left or right arrow" -msgstr "Tecles de flecha esquierda/derecha" +msgstr "Tecles de flecha izquierda/derecha" #. qpCKG #: 01020000.xhp @@ -194,7 +194,7 @@ "par_id3145249\n" "help.text" msgid "Move left or right to the next category or function." -msgstr "Mover a la derecha o esquierda a la siguiente categoría ó función." +msgstr "Mover a la derecha o izquierda a la siguiente categoría o función." #. r7rNS #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/smath/guide.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/smath/guide.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/smath/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/smath/guide.po 2023-05-03 15:22:13.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: 2022-07-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-01 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -168,7 +168,7 @@ "bm_id3152596\n" "help.text" msgid "brackets; merging formula partsformula parts; mergingfractions in formulasmerging;formula parts" -msgstr "paréntesis;combinar partes de fórmulapartes de fórmula;combinarfracciones en fórmulescombinar;partes de fórmula" +msgstr "paréntesis;combinar partes de fórmulespartes de fórmula;combinarfraiciones en fórmulescombinar;partes de fórmules" #. J7BeM #: brackets.xhp @@ -186,7 +186,7 @@ "hd_id3154511\n" "help.text" msgid "Inserting fractions into formulas" -msgstr "Inxertar fracciones nuna fórmula." +msgstr "Inxertar fraiciones en fórmules" #. jPtfJ #: brackets.xhp @@ -249,7 +249,7 @@ "par_id481641846189425\n" "help.text" msgid "Use the command color to apply color to the subsequent formula part." -msgstr "Usa'l comandu color p'aplicar color a partes sucesives de la fórmula." +msgstr "Usa'l comandu color p'aplicar color a la parte sucesiva d'una fórmula." #. BnqGh #: color.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/smath.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/smath.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/smath.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/smath.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: smath\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-11-03 12:43+0100\n" -"PO-Revision-Date: 2022-05-22 12:51+0000\n" +"PO-Revision-Date: 2023-04-08 00:34+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.15.2\n" "X-POOTLE-MTIME: 1542028601.000000\n" #. yKBT5 @@ -95,7 +95,7 @@ "par_id3154702\n" "help.text" msgid "The menu bar contains all the commands for working with $[officename] Math. It contains a list of all the available operators as well as the commands for editing, viewing, arranging, formatting and printing formula documents and the objects contained in them. Most of the menu commands are only available when you are creating or editing a formula." -msgstr "La barra de menús contién tolos comandos que-y dexarán trabayar con $[officename] Math. Dende equí pue aportar a la llista d'operadores disponibles, según a los comandos pa editar, reparar, entamar, formatear ya imprentar documentos de fórmules y los oxetos qu'éstos contengan. La mayor parte de les opciones de menú namái puen activase cuando se crea o modifica una fórmula." +msgstr "La barra de menús contién toles órdenes que te dexarán trabayar con Math de $[officename]. Dende equí pues aportar a la llista d'operadores disponibles; asinamesmo, hai órdenes pa editar, reparar, entamar, formatiar ya imprentar documentos de fórmules y los oxetos qu'éstos contengan. La mayor parte de les opciones de menú namái puen activase cuando se crea o modifica una fórmula." #. PvGHJ #: main0101.xhp @@ -212,7 +212,7 @@ "par_id3149018\n" "help.text" msgid "This menu contains commands needed to format formulas." -msgstr "Contién los comandos necesarios pa formatear fórmules." +msgstr "Esti menú contién les órdenes necesaries pa formatiar fórmules." #. gxysk #: main0105.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/swriter/01.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/swriter/01.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/swriter/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/swriter/01.po 2023-05-03 15:22:13.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: 2022-07-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-24 09:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -3371,7 +3371,7 @@ "hd_id3150658\n" "help.text" msgid "Database selection" -msgstr "Escoyer base de datos" +msgstr "Esbilla de la base de datos" #. XNFxF #: 02140000.xhp @@ -3398,7 +3398,7 @@ "par_id3154039\n" "help.text" msgid "Displays the database record number that is inserted when the condition specified for the \"Any record\" field type is met." -msgstr "Amuesa'l númberu de rexistru de la base de datos que s'inxerta cuando la condición especificada nel tipu de campu \"Cualquier rexistru\" cumplir." +msgstr "Amuesa'l númberu de rexistru de la base de datos que s'inxerta cuando se cumple la condición especificada nel tipu de campu «Cualisquier rexistru»." #. CBprG #: 02140000.xhp @@ -3605,7 +3605,7 @@ "par_id3156098\n" "help.text" msgid "Converts an endnote to a footnote." -msgstr "Convierte una nota final nuna nota al pie." +msgstr "Convierte una nota a lo cabero nuna nota al pie." #. sDCDg #: 02150000.xhp @@ -3623,7 +3623,7 @@ "par_id3155079\n" "help.text" msgid "Converts a footnote to an endnote." -msgstr "Convierte una nota al pie nuna nota final." +msgstr "Convierte una nota al pie nuna nota a lo cabero." #. Uw98Z #: 02150000.xhp @@ -3632,7 +3632,7 @@ "hd_id3154323\n" "help.text" msgid "Arrow left" -msgstr "Flecha esquierda" +msgstr "Flecha izquierda" #. VtCUD #: 02150000.xhp @@ -5558,7 +5558,7 @@ "tit\n" "help.text" msgid "Insert Bookmark" -msgstr "Inxertar marca de testu" +msgstr "Inxertar un marcador" #. FuA3L #: 04040000.xhp @@ -5576,7 +5576,7 @@ "hd_id3147506\n" "help.text" msgid "Insert Bookmark" -msgstr "Inxertar marca de testu" +msgstr "Inxertar un marcador" #. GdJ4q #: 04040000.xhp @@ -7196,7 +7196,7 @@ "par_id3155537\n" "help.text" msgid "To quickly insert a field from the Select list, double-click the field." -msgstr "" +msgstr "Pa inxertar rápido un campu de la llista Esbillar, calca dos vegaes nel campu." #. zVKLG #: 04090001.xhp @@ -7214,7 +7214,7 @@ "par_id3145613\n" "help.text" msgid "If a field is displaying a date, time or number, then Format is used to customize the appearance of the date, time, or number. Common formats are shown in the Format window, or click \"Additional formats\" to define a custom format." -msgstr "" +msgstr "Si un campu amuesa una data, una hora o un númberu, pues utilizar Formatu pa personalizar l'apariencia del datu. Los formatos más habituales amuésense na ventana Formatu, y pues calcar «Formatos adicionales» pa definir unu personalizáu." #. ErwZ7 #: 04090001.xhp @@ -7457,7 +7457,7 @@ "par_id3146344\n" "help.text" msgid "In master documents, you can also reference from one sub-document to another. Note that the reference name will not appear in the selection field and has to be entered \"by hand\"." -msgstr "Nos documentos maestros, tamién ye posible establecer referencies d'un subdocumentu a otru. Nesti casu hai que tener en cuenta que'l nome de la referencia nun s'amuesa nel campu de seleición y que se debe introducir \"manualmente\"." +msgstr "Nos documentos maestros, tamién ye posible establecer referencies d'un sodocumentu a otru. Nesti casu hai que tener en cuenta que'l nome de la referencia nun s'amuesa nel campu d'esbilla y que tien de s'introducir manualmente." #. B2YLE #: 04090002.xhp @@ -7889,10 +7889,11 @@ "par_id757469\n" "help.text" msgid "The \"Number\" format inserts the number of the heading or numbered paragraph. The superior levels are included depending on the context, as necessary." -msgstr "El formatu de \"Númberu\" inxerta'l númberu de la testera o párrafu numberáu. Niveles cimeros tán incluyíu dependiendo nel contestu, según necesidá." +msgstr "El formatu «Númberu» inxerta'l númberu del títulu o párrafu numberáu. Los niveles cimeros inclúyense dependiendo del contestu, según necesidá." #. B9MSu #: 04090002.xhp +#, fuzzy msgctxt "" "04090002.xhp\n" "par_id5189062\n" @@ -9086,7 +9087,7 @@ "par_id3149034\n" "help.text" msgid "Number range" -msgstr "Secuencia" +msgstr "Intervalu numbéricu" #. 7amgE #: 04090005.xhp @@ -9131,7 +9132,7 @@ "par_id3150588\n" "help.text" msgid "Displays the number of pages from the \"Set page variable\" reference point to this field." -msgstr "Amuesa'l númberu de páxines dende'l puntu de referencia \"Determinar variable de páxina\" hasta esti campu." +msgstr "Amuesa'l númberu de páxines dende'l puntu de referencia «Afitar variable de páxina» hasta esti campu." #. 6SKyt #: 04090005.xhp @@ -9203,7 +9204,7 @@ "par_id381583794664065\n" "help.text" msgid " This option is available for \"Set variable\", \"DDE field\", \"Number range\" and \"User Field\" field types." -msgstr "" +msgstr " Esta opción ta disponible pa les tribes de campu «Definir variable», «Campu DDE», «Intervalu numbéricu» y «Campu d'usuariu»." #. KsGDR #: 04090005.xhp @@ -11291,7 +11292,7 @@ "par_id761519649446212\n" "help.text" msgid "Shows the type of the selected field." -msgstr "" +msgstr "Amuesa la triba del campu esbilláu." #. 7ooCu #: 04090300.xhp @@ -11525,7 +11526,7 @@ "par_id3149484\n" "help.text" msgid "Enter the phonetic reading for the corresponding entry. For example, if a Japanese Kanji word has more than one pronunciation, enter the correct pronunciation as a Katakana word. The Kanji word is then sorted according to the phonetic reading entry. This option is only available if Asian language support is enabled." -msgstr "Escribi la llectura fonética na entrada correspondiente. Por exemplu, si una pallabra en xaponés kanji tien más d'una pronunciación, escribi la pronunciación correcta como pallabra katakana. De resultes la pallabra kanji s'ordena según la entrada de la llectura fonética. Esta opción namái ta disponible si ta activáu el sofitu d'idiomes asiáticos." +msgstr "Escribi la llectura fonética na entrada correspondiente. Por exemplu, si una pallabra en kanji xaponés tien más d'una pronunciación, escribi la pronunciación correcta como pallabra katakana. De resultes la pallabra kanji s'ordena según la entrada de la llectura fonética. Esta opción namái ta disponible si ta activáu el sofitu d'idiomes asiáticos." #. 79kAq #: 04120100.xhp @@ -12146,7 +12147,7 @@ "hd_id3154199\n" "help.text" msgid "Evaluate up to level" -msgstr "Calcular fasta'l nivel" +msgstr "Calcular hasta'l nivel" #. gJisP #: 04120211.xhp @@ -12974,7 +12975,7 @@ "hd_id3148773\n" "help.text" msgid "Formatting of the entries" -msgstr "Formateáu de les entraes" +msgstr "Formatu de les entraes" #. buoo9 #: 04120217.xhp @@ -13919,7 +13920,7 @@ "hd_id3154470\n" "help.text" msgid "Sort by" -msgstr "Ordenar según" +msgstr "Ordenar per" #. AMZeh #: 04120227.xhp @@ -13991,7 +13992,7 @@ "par_id3149491\n" "help.text" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Escueya la entrada pola que se deben ordenar les entraes bibliográfiques. Esta opción namái ta disponible si escuéyese'l botón d'opción Conteníu nel área Ordenar por." +msgstr "Esbilla la entrada pela que se deben ordenar les entraes bibliográfiques. Esta opción namái ta disponible si s'esbilla'l botón d'opción Conteníu na área Ordenar per." #. 8iKZ5 #: 04120227.xhp @@ -14972,7 +14973,7 @@ "par_id3149694\n" "help.text" msgid "Set the options for the table." -msgstr "Estableza les opciones pa la tabla." +msgstr "Afita les opciones pa la tabla." #. kfT4e #: 04150000.xhp @@ -14981,7 +14982,7 @@ "hd_id3154198\n" "help.text" msgid "Heading" -msgstr "Testera" +msgstr "Títulu" #. 7r8rq #: 04150000.xhp @@ -15881,7 +15882,7 @@ "par_id3153549\n" "help.text" msgid "To reduce hyphenation, enter the length of the hyphenation zone. Instead of the possible hyphenation, the line will break between words, if the remaining horizontal space does not exceed the hyphenation zone. Hyphenation zone results in enlarged spaces between words in justified text, and greater distance from paragraph margins in non-justified text." -msgstr "" +msgstr "P'amenorgar el guionáu, introduz el tamañu de la zona de guionáu. En cuentes d'aplicar el guionáu posible, la ringlera va estremase ente les palabres, si l'espaciu horizontal restante nun escede la zona de guionáu. La zona de guionáu produz mayores espacios ente palabres en testos xustificaos o mayores distancies dende los marxes del párrafu en testos non xustificaos." #. RQLep #: 05030200.xhp @@ -19949,7 +19950,7 @@ "par_id3149684\n" "help.text" msgid "ImageMap area" -msgstr "Área del mapa d'imaxe" +msgstr "Área de la imaxe calcable" #. RbJ5R #: 05060700.xhp @@ -20462,7 +20463,7 @@ "par_id3149176\n" "help.text" msgid "Uses a server-side image map." -msgstr "Usa un mapa d'imaxe dende'l sirvidor." +msgstr "Usa una imaxe calcable del llau del sirvidor." #. E56eZ #: 05060800.xhp @@ -26618,7 +26619,7 @@ "hd_id3149802\n" "help.text" msgid "Heading" -msgstr "Testera" +msgstr "Títulu" #. kyQhi #: 06090000.xhp @@ -29039,7 +29040,7 @@ "par_idN10579\n" "help.text" msgid "Zoom" -msgstr "Escala" +msgstr "Ampliación" #. LRHco #: mailmerge05.xhp @@ -31892,7 +31893,7 @@ "par_id300920161443315460\n" "help.text" msgid "From the menu bar select Format - Title page." -msgstr "" +msgstr "Na barra de menús escueyi Formatu - Portada." #. beeGV #: title_page.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/swriter/02.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/swriter/02.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/swriter/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/swriter/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-10 20:16+0200\n" -"PO-Revision-Date: 2023-02-17 23:53+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -2147,7 +2147,7 @@ "par_id3149434\n" "help.text" msgid "Boolean X Or" -msgstr "O lóxicu esclusivu" +msgstr "O booleanu esclusivu" #. vEKy7 #: 14020000.xhp @@ -2174,7 +2174,7 @@ "par_id3152925\n" "help.text" msgid "Boolean And" -msgstr "Y lóxicu" +msgstr "Y booleanu" #. CPiHF #: 14020000.xhp @@ -2273,7 +2273,7 @@ "par_id3153176\n" "help.text" msgid "Mean" -msgstr "Promediu" +msgstr "Media" #. Gu59Y #: 14020000.xhp @@ -2732,7 +2732,7 @@ "par_id3148476\n" "help.text" msgid "Number of graphics in the document" -msgstr "Númberu d'imaxes del documentu" +msgstr "Númberu d'imáxenes del documentu" #. Bdc8a #: 14020000.xhp @@ -3560,7 +3560,7 @@ "bm_id3147167\n" "help.text" msgid "graphics;do not show images;do not show pictures;do not show" -msgstr "imaxes;nun amosarimaxes;nun amosarimaxes;nun amosar" +msgstr "gráficos;nun amosarimáxenes;nun amosarfotografíes;nun amosar" #. gHWtd #: 18120000.xhp @@ -3569,7 +3569,7 @@ "par_id3147167\n" "help.text" msgid "If the Images and Charts icon on the Tools bar is activated, no graphics are displayed - only empty frames as placeholders." -msgstr "Si ta activáu l'iconu Activar o desactivar gráficos na barra Ferramientes, en pantalla nun s'amuesen imaxes, sinón solamente marcos baleros a mou de marcadores de posición." +msgstr "Si ta activáu l'iconu Imáxenes y gráfiques na barra Ferramientes, en pantalla nun s'amuesen imáxenes, sinón solamente marcos baleros a mou de marcadores de posición." #. cpSji #: 18120000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/swriter/04.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/swriter/04.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/swriter/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/swriter/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-06-15 20:39+0000\n" +"PO-Revision-Date: 2023-04-09 03:34+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.15.2\n" "X-POOTLE-MTIME: 1507112028.000000\n" #. brcGC @@ -743,7 +743,7 @@ "par_id3154389\n" "help.text" msgid "Align Left" -msgstr "Alliniar la esquierda" +msgstr "Alliniar a la izquierda" #. yo8B2 #: 01020000.xhp @@ -1103,7 +1103,7 @@ "hd_id3153818\n" "help.text" msgid "Arrow Left" -msgstr "(Cursor esquierda)" +msgstr "Flecha izquierda" #. nkCM3 #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/swriter/guide.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/swriter/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/swriter/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-12 10:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -662,7 +662,7 @@ "par_id3151245\n" "help.text" msgid "Clear the \"Replace\" check box(es)." -msgstr "Desactive la(s) caxellu(s) de verificación “Trocar” ." +msgstr "Desactiva'l caxellu, o los caxellos, «Trocar»." #. 8KiPP #: auto_off.xhp @@ -725,7 +725,7 @@ "par_id3155488\n" "help.text" msgid "Clear the \"Apply border\" check box." -msgstr "Desactive'l caxellu de verificación \"Aplicar bordes\"." +msgstr "Desactiva'l caxellu de verificación «Aplicar berbesu»." #. F4MAM #: auto_spellcheck.xhp @@ -2957,7 +2957,7 @@ "par_id3153156\n" "help.text" msgid "In text documents, you can add continuously numbered captions to graphics, tables, frames, and drawing objects." -msgstr "Nos documentos de testu pue amestar títulos numberaos consecutivamente a imaxes, tables, marcos y oxetos de dibuxu." +msgstr "Nos documentos de testu pues amestar lleendes numberaes consecutivamente a imáxenes, tables, marcos y oxetos de dibuxu." #. fLWPD #: captions.xhp @@ -2993,7 +2993,7 @@ "hd_id3155541\n" "help.text" msgid "To define a caption proceed as follows:" -msgstr "Pa definir un títulu siga esti procedimientu:" +msgstr "Pa definir una lleenda, sigui esti procedimientu:" #. tD4UG #: captions.xhp @@ -6170,7 +6170,7 @@ "tit\n" "help.text" msgid "Master Documents and Subdocuments" -msgstr "Usar documentos maestros y subdocumentos" +msgstr "Documentos principales y sodocumentos" #. VYKuD #: globaldoc.xhp @@ -6188,7 +6188,7 @@ "hd_id3145246\n" "help.text" msgid "Master Documents and Subdocuments" -msgstr "Usar documentos maestros y subdocumentos" +msgstr "Documentos principales y sodocumentos" #. uwqGi #: globaldoc.xhp @@ -6206,7 +6206,7 @@ "hd_id6537369\n" "help.text" msgid "Characteristics of Master Documents" -msgstr "Caracteristicas de documentos maestru" +msgstr "Carauterístiques de los documentos principales" #. TvGNQ #: globaldoc.xhp @@ -6251,7 +6251,7 @@ "par_id3419598\n" "help.text" msgid "Subdocuments never get changed by changes made to the master document." -msgstr "Los subdocumentos nunca se modifiquen por cambeos realizaos nel documentu maestru." +msgstr "Los sodocumentos nunca se modifiquen por cambeos realizaos nel documentu principal." #. UMbbz #: globaldoc.xhp @@ -6359,7 +6359,7 @@ "hd_id3153127\n" "help.text" msgid "To Create a Master Document" -msgstr "Pa crear un documentu maestru" +msgstr "Pa crear un documentu principal" #. 4uXH7 #: globaldoc_howtos.xhp @@ -6377,7 +6377,7 @@ "par_id3149956\n" "help.text" msgid "Choose File - New - Master Document." -msgstr "Escueya Ficheru - Nuevu - Documentu maestru." +msgstr "Escueyi Ficheru - Nuevu - Documentu principal." #. xCGgM #: globaldoc_howtos.xhp @@ -6386,7 +6386,7 @@ "par_id3149612\n" "help.text" msgid "Open an existing document and choose File - Send - Create Master Document." -msgstr "Abrá un documentu esistente y escueya Ficheru - Unviar - Crear documentu maestru." +msgstr "Abri un documentu esistente y escueyi Ficheru - Unviar - Crear documentu principal." #. 6AoKa #: globaldoc_howtos.xhp @@ -6449,7 +6449,7 @@ "hd_id3154242\n" "help.text" msgid "To Edit a Master Document" -msgstr "Pa editar un documentu maestru" +msgstr "Pa editar un documentu principal" #. D9BYm #: globaldoc_howtos.xhp @@ -6458,7 +6458,7 @@ "par_id3154255\n" "help.text" msgid "Use the Navigator for rearranging and editing the subdocuments in a master document." -msgstr "Use'l Navegador pa reorganizar y editar los subdocumentos nun documentu maestru." +msgstr "Usa'l Navegador pa reorganizar y editar los sodocumentos nun documentu principal." #. wyens #: globaldoc_howtos.xhp @@ -6476,7 +6476,7 @@ "par_id3155931\n" "help.text" msgid "To remove a subdocument from the master document, right-click the subdocument in the Navigator list and choose Delete. The subdocument file is not deleted, only the entry in the Navigator is removed." -msgstr "Pa quitar un subdocumentu del documentu maestru, na llista del Navegador faiga clic col botón derechu nel subdocumentu y escueya Desaniciar. Nun se desaniciar el subdocumentu, sinón solamente la so entrada na llista del Navegador." +msgstr "Pa quitar un sodocumentu del documentu principal, na llista del Navegador calca col botón derechu nel sodocumentu y escueyi Desaniciar. Nun se desanicia el ficheru del sodocumentu, sinón solamente la so entrada na llista del Navegador." #. 8PriS #: globaldoc_howtos.xhp @@ -6935,7 +6935,7 @@ "par_id3145284\n" "help.text" msgid "Enter text or graphics in the header for the Left Page style. After the next page is added to your document, enter text or graphics in the header for the Right Page style." -msgstr "Introduza testu o imaxes na testera pal estilu Páxina esquierda. Dempués d'amestar la páxina siguiente al documentu introduza testu o imaxes a la testera del estilu Páxina derecha." +msgstr "Introduz testu o imáxenes na testera pal estilu Páxina izquierda. Dempués d'amestar la páxina siguiente al documentu, introduz testu o imáxenes a la testera del estilu Páxina derecha." #. ZURPE #: header_with_chapter.xhp @@ -7034,7 +7034,7 @@ "par_id3150949\n" "help.text" msgid "Click OK." -msgstr "Calque Aceutar." +msgstr "Calca Aceutar." #. PGC5v #: header_with_chapter.xhp @@ -7079,7 +7079,7 @@ "par_id3146863\n" "help.text" msgid "Choose Insert - Field - More Fields and click the Document tab." -msgstr "Escueya Inxertar - Campos - Otros y de siguío faiga clic na ficha Funciones." +msgstr "Escueyi Inxertar - Campos - Más campos y, de siguío, calca na llingüeta Documentu." #. AevwX #: header_with_chapter.xhp @@ -7286,7 +7286,7 @@ "par_id3149869\n" "help.text" msgid "Enter a value for the variable in the Value box, for example, 1." -msgstr "Especifique un valor pa la variable nel cuadru Valor, por exemplu, 1." +msgstr "Especifica un valor pa la variable nel cuadru Valor; por exemplu, 1." #. 8gGsm #: hidden_text.xhp @@ -8123,7 +8123,7 @@ "par_id3155856\n" "help.text" msgid "Place the cursor in the index or table of contents." -msgstr "Asitie'l cursor nel índiz." +msgstr "Asitia'l cursor nel índiz o tabla de conteníu." #. cxBPD #: indices_edit.xhp @@ -8366,7 +8366,7 @@ "par_id3150229\n" "help.text" msgid "Click an index level in the Levels list." -msgstr "Calque un nivel d'índiz na llista Niveles." +msgstr "Calca un nivel d'índiz na llista Niveles." #. rr9MB #: indices_form.xhp @@ -9113,7 +9113,7 @@ "par_id3147139\n" "help.text" msgid "Click Close." -msgstr "Faiga clic en Inxertar." +msgstr "Calca Zarrar." #. S9tTE #: indices_userdef.xhp @@ -9230,7 +9230,7 @@ "tit\n" "help.text" msgid "Inserting Graphics" -msgstr "Inxertar imaxe" +msgstr "Inxertar imáxenes" #. Lr6Ae #: insert_graphic.xhp @@ -9239,7 +9239,7 @@ "bm_id3154922\n" "help.text" msgid "text; inserting pictures inimages; inserting in textinserting; picturespictures; inserting options" -msgstr "testu;inxertar imaxes enimaxes;inxertar nel testuilustraciones;inxertar nel testuinxertar;imaxesimaxes;opciones d'inxertamientu" +msgstr "testu;inxertar imáxenes enimáxenes;inxertar nel testuinxertar;imáxenesimáxenes;opciones d'inxertamientu" #. XFiVw #: insert_graphic.xhp @@ -9383,7 +9383,7 @@ "tit\n" "help.text" msgid "Inserting Graphics From $[officename] Draw or Impress" -msgstr "Inxertar imaxes de $[officename] Draw o Impress" +msgstr "Inxertar imáxenes de Draw o Impress de $[officename]" #. E5nCC #: insert_graphic_fromdraw.xhp @@ -9392,7 +9392,7 @@ "bm_id3155917\n" "help.text" msgid "text; inserting pictures from Drawpictures; inserting from Draw" -msgstr "testu;inxertar imaxes de Drawimaxes;inxertar de Draw" +msgstr "testu;inxertar imáxenes de Drawimáxenes;inxertar de Draw" #. ZkLQk #: insert_graphic_fromdraw.xhp @@ -10076,7 +10076,7 @@ "hd_id3155156\n" "help.text" msgid "Entering and Formatting Text" -msgstr "Introducir y formatear testu" +msgstr "Introducir y formatiar testu" #. S63v2 #: main.xhp @@ -10085,7 +10085,7 @@ "hd_id3153728\n" "help.text" msgid "Automatically Entering and Formatting Text" -msgstr "Introducir y formatear testu automáticamente" +msgstr "Introducir y formatiar testu automáticamente" #. XCj9B #: main.xhp @@ -10112,7 +10112,7 @@ "hd_id3155590\n" "help.text" msgid "Images, Drawings, ClipArt, Fontwork" -msgstr "Imaxes, Dibuxos, ClipArts, FontWork" +msgstr "Imáxenes, dibuxos, ClipArts, Fontwork" #. tVDDA #: main.xhp @@ -10436,7 +10436,7 @@ "tit\n" "help.text" msgid "Defining Number Ranges" -msgstr "Definir secuencies" +msgstr "Definir intervalos numbéricos" #. 5R8SU #: number_sequence.xhp @@ -10445,7 +10445,7 @@ "bm_id3149695\n" "help.text" msgid "numbering;quotations/similar items" -msgstr "secuencies;definir pa elementos similaresnumberación;comines" +msgstr "numberación;cites/elementos similares" #. ELJrJ #: number_sequence.xhp @@ -14441,7 +14441,7 @@ "par_id3149843\n" "help.text" msgid "In the Find box, type the search term and the regular expression(s) that you want to use in your search." -msgstr "" +msgstr "Nel cuadru Guetar, escribi'l términu de gueta y les espresiones regulares que van usase nella." #. FqLDU #: search_regexp.xhp @@ -15170,7 +15170,7 @@ "par_id3155861\n" "help.text" msgid "Select the text that you want to format." -msgstr "Escueya'l testu que deseya formatear." +msgstr "Esbilla'l testu que deseyes formatiar." #. PAVKR #: shortcut_writing.xhp @@ -15206,7 +15206,7 @@ "par_id3151861\n" "help.text" msgid "Select the text that you want to format." -msgstr "Escueya'l testu que deseya formatear." +msgstr "Esbilla'l testu que deseyes formatiar." #. mWPau #: shortcut_writing.xhp @@ -15359,7 +15359,7 @@ "par_id7814264\n" "help.text" msgid "Click a Smart Tag *.oxt file link on a web page and open the link with the default application. This requires a properly configured Web browser." -msgstr "Faiga clik nun Smart Tag, un enllaz de ficheru, *.oxt, y abre l'enllaz cola aplicación preseleicionada. Esti ríquese un navegador internet correchamente configuráu." +msgstr "Calca nun enllaz a un ficheru Smart Tag *.oxt, y abre l'enllaz cola aplicación predeterminada. Esta aición rique un navegador internet bien configuráu." #. mrCCf #: smarttags.xhp @@ -18419,7 +18419,7 @@ "hd_id3149832\n" "help.text" msgid "To Automatically Hyphenate Text in a Paragraph" -msgstr "Pa estremar les pallabres del testu de forma automática en dellos párrafos" +msgstr "Pa estremar les pallabres del testu de forma automática nun párrafu" #. rRFRE #: using_hyphen.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/swriter.po libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/swriter.po --- libreoffice-7.4.6/translations/source/ast/helpcontent2/source/text/swriter.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/helpcontent2/source/text/swriter.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-17 23:53+0000\n" +"PO-Revision-Date: 2023-04-30 15:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -626,7 +626,7 @@ "hd_id551602974854459\n" "help.text" msgid "Align Text" -msgstr "" +msgstr "Alliniar testu" #. 7FD3V #: main0105.xhp @@ -707,7 +707,7 @@ "hd_id201602976343046\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Comentarios" #. ercCs #: main0105.xhp @@ -1931,7 +1931,7 @@ "hd_id3149946\n" "help.text" msgid "Left-To-Right" -msgstr "D'esquierda a derecha" +msgstr "D'izquierda a derecha" #. 9tEuw #: main0202.xhp @@ -1958,7 +1958,7 @@ "hd_id3147300\n" "help.text" msgid "Right-To-Left" -msgstr "De derecha a esquierda" +msgstr "De derecha a izquierda" #. iE56r #: main0202.xhp @@ -2273,7 +2273,7 @@ "hd_id0821200911015962\n" "help.text" msgid "Digital Signature" -msgstr "Firma dixital" +msgstr "Robla dixital" #. HYMp2 #: main0208.xhp @@ -2489,7 +2489,7 @@ "tit\n" "help.text" msgid "Frame Bar" -msgstr "Barra de Marcu" +msgstr "Barra Marcu" #. uWTF7 #: main0215.xhp @@ -2588,7 +2588,7 @@ "tit\n" "help.text" msgid "OLE Object Bar" -msgstr "" +msgstr "Barra Oxetu OLE" #. iiqD4 #: main0216.xhp @@ -2894,7 +2894,7 @@ "hd_id3151229\n" "help.text" msgid "Inserting Graphics" -msgstr "Inxertar imaxes" +msgstr "Inxertar imáxenes" #. FREmJ #: main0503.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.4.7/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.4.6/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:32+0100\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-07 19:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542022490.000000\n" #. tBfTE @@ -4442,7 +4442,7 @@ "OOO_STR_MS_WORD_DOCUMENT\n" "LngText.text" msgid "Microsoft Word Document" -msgstr "Documentu de Microsoft Word" +msgstr "Documentu de Word de Microsoft" #. PX5sA #: Property.ulf @@ -4451,7 +4451,7 @@ "OOO_STR_MS_WORD_TEMPLATE\n" "LngText.text" msgid "Microsoft Word Template" -msgstr "Plantía de Microsoft Word" +msgstr "Plantía de Word de Microsoft" #. 6EgWK #: Property.ulf @@ -4460,7 +4460,7 @@ "OOO_STR_MS_EXCEL_WORKSHEET\n" "LngText.text" msgid "Microsoft Excel Worksheet" -msgstr "Fueya de cálculu de Microsoft Excel" +msgstr "Fueya de cálculu d'Excel de Microsoft" #. sz9Ca #: Property.ulf @@ -4469,7 +4469,7 @@ "OOO_STR_MS_EXCEL_TEMPLATE\n" "LngText.text" msgid "Microsoft Excel Template" -msgstr "Plantía de Microsoft Excel" +msgstr "Plantía d'Excel de Microsoft" #. nE65f #: Property.ulf @@ -4478,7 +4478,7 @@ "OOO_STR_MS_POWERPOINT_PRESENTATION\n" "LngText.text" msgid "Microsoft PowerPoint Presentation" -msgstr "Presentación de Microsoft PowerPoint" +msgstr "Presentación de PowerPoint de Microsoft" #. qrDB4 #: Property.ulf @@ -4487,7 +4487,7 @@ "OOO_STR_MS_POWERPOINT_TEMPLATE\n" "LngText.text" msgid "Microsoft PowerPoint Template" -msgstr "Plantía de Microsoft PowerPoint" +msgstr "Plantía de PowerPoint de Microsoft" #. AKnre #: Property.ulf @@ -4496,7 +4496,7 @@ "OOO_STR_MS_POWERPOINT_SHOW\n" "LngText.text" msgid "Microsoft PowerPoint Show" -msgstr "Presentación de Microsoft PowerPoint" +msgstr "Presentación de diapositives de PowerPoint de Microsoft" #. UGGXo #: Property.ulf @@ -4505,7 +4505,7 @@ "OOO_STR_INSTALLATION_WIZARD\n" "LngText.text" msgid "Installation Wizard" -msgstr "Asistente d'instalación" +msgstr "Encontu d'instalación" #. 6Mr3P #: RadioBut.ulf diff -Nru libreoffice-7.4.6/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-03-01 09:55+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -2284,7 +2284,7 @@ "TooltipLabel\n" "value.text" msgid "Show Track Changes" -msgstr "" +msgstr "Amosar el siguimientu de cambeos" #. Cs6vq #: CalcCommands.xcu @@ -3799,7 +3799,7 @@ "Label\n" "value.text" msgid "Align Right" -msgstr "Alliñar a la drecha" +msgstr "Alliniar a la derecha" #. ZfFDD #: CalcCommands.xcu @@ -5810,7 +5810,7 @@ "Label\n" "value.text" msgid "Mean ~Value Lines" -msgstr "Curves de ~Valor promediu" +msgstr "Llinies de ~valor mediu" #. m7rRY #: ChartCommands.xcu @@ -6452,7 +6452,7 @@ "Label\n" "value.text" msgid "Insert Mean ~Value Line" -msgstr "Inxertar curva de ~Valor promediu" +msgstr "Inxertar llinia de ~valor mediu" #. Ks7U3 #: ChartCommands.xcu @@ -9646,14 +9646,13 @@ #. RG5Gq #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:DeleteLayer\n" "Label\n" "value.text" msgid "Delete Layer" -msgstr "Desaniciar documentu maestru" +msgstr "Desaniciar la capa" #. fNuFd #: DrawImpressCommands.xcu @@ -10407,7 +10406,7 @@ "Label\n" "value.text" msgid "Close Master View" -msgstr "Zarrar vista de documento maestru" +msgstr "Zarrar vista de documentu principal" #. wAtyn #: DrawImpressCommands.xcu @@ -12168,7 +12167,7 @@ "UIName\n" "value.text" msgid "Gluepoints" -msgstr "" +msgstr "Puntos d'apegáu" #. 5SA3p #: DrawWindowState.xcu @@ -12258,7 +12257,7 @@ "UIName\n" "value.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. AkJdM #: DrawWindowState.xcu @@ -12378,7 +12377,7 @@ "UIName\n" "value.text" msgid "Master View" -msgstr "Vista de documentu maestru" +msgstr "Vista de documentu principal" #. Bcmob #: DrawWindowState.xcu @@ -12648,7 +12647,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. aihBG #: Effects.xcu @@ -13598,7 +13597,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. ipZZC #: Effects.xcu @@ -16485,7 +16484,7 @@ "TooltipLabel\n" "value.text" msgid "Basic Shapes" -msgstr "" +msgstr "Formes básiques" #. MCJkK #: GenericCommands.xcu @@ -18135,14 +18134,13 @@ #. Vpd3F #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ZoomMenu\n" "Label\n" "value.text" msgid "~Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. RZ28W #: GenericCommands.xcu @@ -18152,7 +18150,7 @@ "Label\n" "value.text" msgid "~Zoom..." -msgstr "~Zoom..." +msgstr "Ampliación..." #. xTbFE #: GenericCommands.xcu @@ -18735,7 +18733,7 @@ "TooltipLabel\n" "value.text" msgid "Align Right" -msgstr "Alliñar a la drecha" +msgstr "Alliniar a la derecha" #. yanFA #: GenericCommands.xcu @@ -18919,7 +18917,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. cG9KB #: GenericCommands.xcu @@ -18929,7 +18927,7 @@ "Label\n" "value.text" msgid "Red" -msgstr "Coloráu" +msgstr "Bermeyu" #. 6cCE4 #: GenericCommands.xcu @@ -19039,7 +19037,7 @@ "Label\n" "value.text" msgid "Gamma" -msgstr "Gamma" +msgstr "Gama" #. EPxWw #: GenericCommands.xcu @@ -22708,14 +22706,13 @@ #. puNNx #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ImageMapDialog\n" "Label\n" "value.text" msgid "Image~Map" -msgstr "Mapa d'imáxenes" +msgstr "Imaxe calcable" #. ERUDC #: GenericCommands.xcu @@ -23553,7 +23550,7 @@ "Label\n" "value.text" msgid "Text Animation" -msgstr "Animación de testu" +msgstr "Animación del testu" #. UjbXz #: GenericCommands.xcu @@ -24727,7 +24724,7 @@ "Label\n" "value.text" msgid "Text -> Record" -msgstr "Testu -> Rexistru" +msgstr "Testu → rexistru" #. MQUxx #: GenericCommands.xcu @@ -28118,7 +28115,7 @@ "UIName\n" "value.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. pvbBN #: ImpressWindowState.xcu @@ -28188,7 +28185,7 @@ "UIName\n" "value.text" msgid "Master View" -msgstr "Vista de documentu maestru" +msgstr "Vista de documentu principal" #. XgwBZ #: ImpressWindowState.xcu @@ -29416,7 +29413,7 @@ "Title\n" "value.text" msgid "Effect" -msgstr "" +msgstr "Efeutu" #. GBNW2 #: Sidebar.xcu @@ -29530,36 +29527,33 @@ #. E9FJB #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdLayoutsPanel\n" "Title\n" "value.text" msgid "Layouts" -msgstr "Diseños" +msgstr "Distribuciones" #. RXZGB #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdUsedMasterPagesPanel\n" "Title\n" "value.text" msgid "Used in This Presentation" -msgstr "Usáu nesta presentación" +msgstr "Usaes nesta presentación" #. wdioB #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.SdRecentMasterPagesPanel\n" "Title\n" "value.text" msgid "Recently Used" -msgstr "Usaos recientemente" +msgstr "Usaes de recién" #. CBBgf #: Sidebar.xcu @@ -32638,7 +32632,7 @@ "Label\n" "value.text" msgid "Align Right" -msgstr "Alliñar a la drecha" +msgstr "Alliniar a la derecha" #. fnKt6 #: WriterCommands.xcu @@ -34912,14 +34906,13 @@ #. YNpFG #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ControlCodes\n" "Label\n" "value.text" msgid "Formatting Marks" -msgstr "Marca de formatu" +msgstr "Marques de formatu" #. FFNXc #: WriterCommands.xcu @@ -35310,7 +35303,7 @@ "TooltipLabel\n" "value.text" msgid "“Add to List” adds selected paragraphs to an immediately preceding list." -msgstr "" +msgstr "«Amestar a la llista» amiesta los párrafos esbillaos a una llista inmediatamente precedente." #. oCEjg #: WriterCommands.xcu @@ -39054,7 +39047,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "Formatiando" +msgstr "Formatu" #. 89GBD #: XFormsWindowState.xcu diff -Nru libreoffice-7.4.6/translations/source/ast/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.4.7/translations/source/ast/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.4.6/translations/source/ast/officecfg/registry/data/org/openoffice/Office.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/officecfg/registry/data/org/openoffice/Office.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-01-30 09:57+0000\n" +"PO-Revision-Date: 2023-03-27 19:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542022490.000000\n" #. HhMVS @@ -985,7 +985,7 @@ "Name\n" "value.text" msgid "Red" -msgstr "Coloráu" +msgstr "Bermeyu" #. JUU7A #: FormWizard.xcu diff -Nru libreoffice-7.4.6/translations/source/ast/reportdesign/messages.po libreoffice-7.4.7/translations/source/ast/reportdesign/messages.po --- libreoffice-7.4.6/translations/source/ast/reportdesign/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/reportdesign/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:20+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-03-27 19:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516047320.000000\n" #. FBVr9 @@ -815,7 +815,7 @@ #: reportdesign/inc/strings.hrc:124 msgctxt "RID_STR_IMPORT_GRAPHIC" msgid "Insert graphics" -msgstr "Inxertar imaxes" +msgstr "Inxertar imáxenes" #. cT8od #: reportdesign/inc/strings.hrc:125 @@ -1299,7 +1299,7 @@ #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:284 msgctxt "conditionwin|ToolBoxItem6" msgid "Character Formatting" -msgstr "" +msgstr "Formatu de caráuteres" #. PSCFe #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:365 diff -Nru libreoffice-7.4.6/translations/source/ast/sc/messages.po libreoffice-7.4.7/translations/source/ast/sc/messages.po --- libreoffice-7.4.6/translations/source/ast/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-10 20:53+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -681,7 +681,7 @@ #: sc/inc/globstr.hrc:122 msgctxt "STR_MSSG_DOSUBTOTALS_0" msgid "%PRODUCTNAME Calc" -msgstr "%PRODUCTNAME Calc" +msgstr "Calc de %PRODUCTNAME" #. 5wfvQ #: sc/inc/globstr.hrc:123 @@ -1111,7 +1111,7 @@ #: sc/inc/globstr.hrc:192 msgctxt "STR_FUN_TEXT_AVG" msgid "Average" -msgstr "Promediu" +msgstr "Permediu" #. AoUSX #: sc/inc/globstr.hrc:193 @@ -1124,13 +1124,13 @@ #: sc/inc/globstr.hrc:194 msgctxt "STR_FUN_TEXT_MAX" msgid "Max" -msgstr "Máx" +msgstr "Máximu" #. A8fBH #: sc/inc/globstr.hrc:195 msgctxt "STR_FUN_TEXT_MIN" msgid "Min" -msgstr "Mín" +msgstr "Mínimu" #. oZVg5 #: sc/inc/globstr.hrc:196 @@ -1142,13 +1142,13 @@ #: sc/inc/globstr.hrc:197 msgctxt "STR_FUN_TEXT_STDDEV" msgid "StDev" -msgstr "DesvEst" +msgstr "Esviación estándar" #. NhH7q #: sc/inc/globstr.hrc:198 msgctxt "STR_FUN_TEXT_VAR" msgid "Var" -msgstr "Var" +msgstr "Varianza" #. XyzD7 #: sc/inc/globstr.hrc:199 @@ -3310,7 +3310,7 @@ #: sc/inc/pvfundlg.hrc:30 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Average" -msgstr "Promediu" +msgstr "Permediu" #. 7VaLh #: sc/inc/pvfundlg.hrc:31 @@ -3323,13 +3323,13 @@ #: sc/inc/pvfundlg.hrc:32 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Max" -msgstr "Máx" +msgstr "Máximu" #. GMhuR #: sc/inc/pvfundlg.hrc:33 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Min" -msgstr "Mín" +msgstr "Mínimu" #. Feqkk #: sc/inc/pvfundlg.hrc:34 @@ -3347,7 +3347,7 @@ #: sc/inc/pvfundlg.hrc:36 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "StDev (Sample)" -msgstr "DesvEst (amuesa)" +msgstr "Esviación estándar (amosanza)" #. Jj49u #: sc/inc/pvfundlg.hrc:37 @@ -3359,7 +3359,7 @@ #: sc/inc/pvfundlg.hrc:38 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Var (Sample)" -msgstr "Var (amuesa)" +msgstr "Varianza (amosanza)" #. yazAP #: sc/inc/pvfundlg.hrc:39 @@ -3626,7 +3626,7 @@ #: sc/inc/scfuncs.hrc:42 msgctxt "SC_OPCODE_DB_COUNT" msgid "Indicates which database field (column) is to be used for the search criteria." -msgstr "Indica qué campu de la base de datos(columna) hai que usar pal criteriu de gueta." +msgstr "Indica qué campu de la base de datos (columna) hai qu'usar pal criteriu de gueta." #. 8Ervr #: sc/inc/scfuncs.hrc:43 @@ -3668,7 +3668,7 @@ #: sc/inc/scfuncs.hrc:54 msgctxt "SC_OPCODE_DB_COUNT_2" msgid "Indicates which database field (column) is to be used for the search criteria." -msgstr "Indica qué campu de la base de datos(columna) hai que usar pal criteriu de gueta." +msgstr "Indica qué campu de la base de datos (columna) hai qu'usar pal criteriu de gueta." #. dVD5s #: sc/inc/scfuncs.hrc:55 @@ -3710,7 +3710,7 @@ #: sc/inc/scfuncs.hrc:66 msgctxt "SC_OPCODE_DB_AVERAGE" msgid "Indicates which database field (column) is to be used for the search criteria." -msgstr "Indica qué campu de la base de datos(columna) hai que usar pal criteriu de gueta." +msgstr "Indica qué campu de la base de datos (columna) hai qu'usar pal criteriu de gueta." #. P5Y5u #: sc/inc/scfuncs.hrc:67 @@ -3752,7 +3752,7 @@ #: sc/inc/scfuncs.hrc:78 msgctxt "SC_OPCODE_DB_GET" msgid "Indicates which database field (column) is to be used for the search criteria." -msgstr "Indica qué campu de la base de datos(columna) hai que usar pal criteriu de gueta." +msgstr "Indica qué campu de la base de datos (columna) hai qu'usar pal criteriu de gueta." #. 4myua #: sc/inc/scfuncs.hrc:79 @@ -3794,7 +3794,7 @@ #: sc/inc/scfuncs.hrc:90 msgctxt "SC_OPCODE_DB_MAX" msgid "Indicates which database field (column) is to be used for the search criteria." -msgstr "Indica qué campu de la base de datos(columna) hai que usar pal criteriu de gueta." +msgstr "Indica qué campu de la base de datos (columna) hai qu'usar pal criteriu de gueta." #. S46CC #: sc/inc/scfuncs.hrc:91 @@ -3836,7 +3836,7 @@ #: sc/inc/scfuncs.hrc:102 msgctxt "SC_OPCODE_DB_MIN" msgid "Indicates which database field (column) is to be used for the search criteria." -msgstr "Indica qué campu de la base de datos(columna) hai que usar pal criteriu de gueta." +msgstr "Indica qué campu de la base de datos (columna) hai qu'usar pal criteriu de gueta." #. s3ERe #: sc/inc/scfuncs.hrc:103 @@ -3878,7 +3878,7 @@ #: sc/inc/scfuncs.hrc:114 msgctxt "SC_OPCODE_DB_PRODUCT" msgid "Indicates which database field (column) is to be used for the search criteria." -msgstr "Indica qué campu de la base de datos(columna) hai que usar pal criteriu de gueta." +msgstr "Indica qué campu de la base de datos (columna) hai qu'usar pal criteriu de gueta." #. FF26s #: sc/inc/scfuncs.hrc:115 @@ -3896,7 +3896,7 @@ #: sc/inc/scfuncs.hrc:122 msgctxt "SC_OPCODE_DB_STD_DEV" msgid "Calculates the standard deviation of all cells in a data range whose contents match the search criteria." -msgstr "Calcula la esviación estándar toles caxelles d'un rangu de datos nes que'l conteníu concasa col criteriu de gueta." +msgstr "Calcula la esviación estándar de toles caxelles d'una estaya de datos nes que'l conteníu concasa colos criterios de gueta." #. abeZd #: sc/inc/scfuncs.hrc:123 @@ -3920,7 +3920,7 @@ #: sc/inc/scfuncs.hrc:126 msgctxt "SC_OPCODE_DB_STD_DEV" msgid "Indicates which database field (column) is to be used for the search criteria." -msgstr "Indica qué campu de la base de datos(columna) hai que usar pal criteriu de gueta." +msgstr "Indica qué campu de la base de datos (columna) hai qu'usar pal criteriu de gueta." #. dD6gG #: sc/inc/scfuncs.hrc:127 @@ -3962,7 +3962,7 @@ #: sc/inc/scfuncs.hrc:138 msgctxt "SC_OPCODE_DB_STD_DEV_P" msgid "Indicates which database field (column) is to be used for the search criteria." -msgstr "Indica qué campu de la base de datos(columna) hai que usar pal criteriu de gueta." +msgstr "Indica qué campu de la base de datos (columna) hai qu'usar pal criteriu de gueta." #. AsSFP #: sc/inc/scfuncs.hrc:139 @@ -4004,7 +4004,7 @@ #: sc/inc/scfuncs.hrc:150 msgctxt "SC_OPCODE_DB_SUM" msgid "Indicates which database field (column) is to be used for the search criteria." -msgstr "Indica qué campu de la base de datos(columna) hai que usar pal criteriu de gueta." +msgstr "Indica qué campu de la base de datos (columna) hai qu'usar pal criteriu de gueta." #. mFJzB #: sc/inc/scfuncs.hrc:151 @@ -4046,7 +4046,7 @@ #: sc/inc/scfuncs.hrc:162 msgctxt "SC_OPCODE_DB_VAR" msgid "Indicates which database field (column) is to be used for the search criteria." -msgstr "Indica qué campu de la base de datos(columna) hai que usar pal criteriu de gueta." +msgstr "Indica qué campu de la base de datos (columna) hai qu'usar pal criteriu de gueta." #. yQknz #: sc/inc/scfuncs.hrc:163 @@ -4088,7 +4088,7 @@ #: sc/inc/scfuncs.hrc:174 msgctxt "SC_OPCODE_DB_VAR_P" msgid "Indicates which database field (column) is to be used for the search criteria." -msgstr "Indica qué campu de la base de datos(columna) hai que usar pal criteriu de gueta." +msgstr "Indica qué campu de la base de datos (columna) hai qu'usar pal criteriu de gueta." #. nqjUR #: sc/inc/scfuncs.hrc:175 @@ -8338,10 +8338,9 @@ #. AUFNs #: sc/inc/scfuncs.hrc:1599 -#, fuzzy msgctxt "SC_OPCODE_SUM_X2MY2" msgid "Array X" -msgstr "Matriz " +msgstr "Matriz X" #. 9vSGo #: sc/inc/scfuncs.hrc:1600 @@ -8351,10 +8350,9 @@ #. YSPPg #: sc/inc/scfuncs.hrc:1601 -#, fuzzy msgctxt "SC_OPCODE_SUM_X2MY2" msgid "Array Y" -msgstr "Matriz " +msgstr "Matriz Y" #. 9T4Rr #: sc/inc/scfuncs.hrc:1602 @@ -8370,10 +8368,9 @@ #. FrwhU #: sc/inc/scfuncs.hrc:1609 -#, fuzzy msgctxt "SC_OPCODE_SUM_X2DY2" msgid "Array X" -msgstr "Matriz " +msgstr "Matriz X" #. H8mTf #: sc/inc/scfuncs.hrc:1610 @@ -8383,10 +8380,9 @@ #. Vtggo #: sc/inc/scfuncs.hrc:1611 -#, fuzzy msgctxt "SC_OPCODE_SUM_X2DY2" msgid "Array Y" -msgstr "Matriz " +msgstr "Matriz Y" #. reqfP #: sc/inc/scfuncs.hrc:1612 @@ -8402,10 +8398,9 @@ #. ZMxo6 #: sc/inc/scfuncs.hrc:1619 -#, fuzzy msgctxt "SC_OPCODE_SUM_XMY2" msgid "Array X" -msgstr "Matriz " +msgstr "Matriz X" #. 53FNi #: sc/inc/scfuncs.hrc:1620 @@ -8415,10 +8410,9 @@ #. BKfnC #: sc/inc/scfuncs.hrc:1621 -#, fuzzy msgctxt "SC_OPCODE_SUM_XMY2" msgid "Array Y" -msgstr "Matriz " +msgstr "Matriz Y" #. 2mWCE #: sc/inc/scfuncs.hrc:1622 @@ -8467,7 +8461,7 @@ #: sc/inc/scfuncs.hrc:1639 msgctxt "SC_OPCODE_LINEST" msgid "Data Y" -msgstr "" +msgstr "Datos Y" #. fyrtU #: sc/inc/scfuncs.hrc:1640 @@ -8479,7 +8473,7 @@ #: sc/inc/scfuncs.hrc:1641 msgctxt "SC_OPCODE_LINEST" msgid "Data X" -msgstr "" +msgstr "Datos X" #. aKFRR #: sc/inc/scfuncs.hrc:1642 @@ -8502,10 +8496,9 @@ #. GrdVq #: sc/inc/scfuncs.hrc:1645 -#, fuzzy msgctxt "SC_OPCODE_LINEST" msgid "Stats" -msgstr "Estáu" +msgstr "Estadístiques" #. GeEDo #: sc/inc/scfuncs.hrc:1646 @@ -8523,7 +8516,7 @@ #: sc/inc/scfuncs.hrc:1653 msgctxt "SC_OPCODE_LOGEST" msgid "Data Y" -msgstr "" +msgstr "Datos Y" #. qwCCT #: sc/inc/scfuncs.hrc:1654 @@ -8535,7 +8528,7 @@ #: sc/inc/scfuncs.hrc:1655 msgctxt "SC_OPCODE_LOGEST" msgid "Data X" -msgstr "" +msgstr "Datos X" #. kMYqN #: sc/inc/scfuncs.hrc:1656 @@ -8558,10 +8551,9 @@ #. RxXC4 #: sc/inc/scfuncs.hrc:1659 -#, fuzzy msgctxt "SC_OPCODE_LOGEST" msgid "Stats" -msgstr "Estáu" +msgstr "Estadístiques" #. Epsjr #: sc/inc/scfuncs.hrc:1660 @@ -8573,13 +8565,13 @@ #: sc/inc/scfuncs.hrc:1666 msgctxt "SC_OPCODE_TREND" msgid "Calculates points along a regression line." -msgstr "Devuelve valores que resulten d'una tendencia llinial." +msgstr "Calcula puntos a lo llargo d'una llinia de regresión." #. Jh8vp #: sc/inc/scfuncs.hrc:1667 msgctxt "SC_OPCODE_TREND" msgid "Data Y" -msgstr "" +msgstr "Datos Y" #. XBTHe #: sc/inc/scfuncs.hrc:1668 @@ -8591,7 +8583,7 @@ #: sc/inc/scfuncs.hrc:1669 msgctxt "SC_OPCODE_TREND" msgid "Data X" -msgstr "" +msgstr "Datos X" #. LhqAb #: sc/inc/scfuncs.hrc:1670 @@ -8601,10 +8593,9 @@ #. rVGjP #: sc/inc/scfuncs.hrc:1671 -#, fuzzy msgctxt "SC_OPCODE_TREND" msgid "New data X" -msgstr "nuevos datos_X" +msgstr "Datos X nuevos" #. JedWB #: sc/inc/scfuncs.hrc:1672 @@ -8635,7 +8626,7 @@ #: sc/inc/scfuncs.hrc:1681 msgctxt "SC_OPCODE_GROWTH" msgid "Data Y" -msgstr "" +msgstr "Datos Y" #. 4kBWF #: sc/inc/scfuncs.hrc:1682 @@ -8647,7 +8638,7 @@ #: sc/inc/scfuncs.hrc:1683 msgctxt "SC_OPCODE_GROWTH" msgid "Data X" -msgstr "" +msgstr "Datos X" #. iGU4n #: sc/inc/scfuncs.hrc:1684 @@ -8657,10 +8648,9 @@ #. L8Rx3 #: sc/inc/scfuncs.hrc:1685 -#, fuzzy msgctxt "SC_OPCODE_GROWTH" msgid "New data X" -msgstr "nuevos datos_X" +msgstr "Datos X nuevos" #. kFxgD #: sc/inc/scfuncs.hrc:1686 @@ -8813,10 +8803,9 @@ #. dGfyD #: sc/inc/scfuncs.hrc:1744 -#, fuzzy msgctxt "SC_OPCODE_VAR" msgid "Number 1, number 2, ... are numerical arguments which portray a sample of a population." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una amosanza d'una población." #. nWiPN #: sc/inc/scfuncs.hrc:1750 @@ -8832,16 +8821,15 @@ #. DQp4X #: sc/inc/scfuncs.hrc:1752 -#, fuzzy msgctxt "SC_OPCODE_VAR_S" msgid "Number 1, number 2, ... are numerical arguments which portray a sample of a population." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una amosanza d'una población." #. RLBWa #: sc/inc/scfuncs.hrc:1758 msgctxt "SC_OPCODE_VAR_A" msgid "Returns the variance based on a sample. Text is evaluated as zero." -msgstr "Calcula la variancia dende una amuesa. El testu valoraráse como cero." +msgstr "Devuelve la varianza a partir d'una amosanza. El testu valoraráse como cero." #. Q4kGy #: sc/inc/scfuncs.hrc:1759 @@ -8871,10 +8859,9 @@ #. QL7dC #: sc/inc/scfuncs.hrc:1768 -#, fuzzy msgctxt "SC_OPCODE_VAR_P" msgid "Number 1, number 2, ... are numerical arguments which represent a population." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una población." #. AFynp #: sc/inc/scfuncs.hrc:1774 @@ -8890,10 +8877,9 @@ #. JZjgr #: sc/inc/scfuncs.hrc:1776 -#, fuzzy msgctxt "SC_OPCODE_VAR_P_MS" msgid "Number 1, number 2, ... are numerical arguments which represent a population." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una población." #. 7BF8p #: sc/inc/scfuncs.hrc:1782 @@ -8919,7 +8905,7 @@ #: sc/inc/scfuncs.hrc:1790 msgctxt "SC_OPCODE_ST_DEV" msgid "Calculates the standard deviation based on a sample." -msgstr "Calcula la desviación predeterminada d'una amuesa." +msgstr "Calcula la esviación estándar d'una amosanza." #. 6ANXx #: sc/inc/scfuncs.hrc:1791 @@ -8929,16 +8915,15 @@ #. LD8Xt #: sc/inc/scfuncs.hrc:1792 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV" msgid "Number 1, number 2, ... are numerical arguments which portray a sample of a population." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una amosanza d'una población." #. hkvjB #: sc/inc/scfuncs.hrc:1798 msgctxt "SC_OPCODE_ST_DEV_S" msgid "Calculates the standard deviation based on a sample." -msgstr "Calcula la desviación predeterminada d'una amuesa." +msgstr "Calcula la esviación estándar d'una amosanza." #. cGxRb #: sc/inc/scfuncs.hrc:1799 @@ -8948,16 +8933,15 @@ #. kDrFN #: sc/inc/scfuncs.hrc:1800 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_S" msgid "Number 1, number 2, ... are numerical arguments which portray a sample of a population." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una amosanza d'una población." #. BV6Gb #: sc/inc/scfuncs.hrc:1806 msgctxt "SC_OPCODE_ST_DEV_A" msgid "Returns the standard deviation based on a sample. Text is evaluated as zero." -msgstr "Devuelve la esviación estándar basada nuna muestra. El testu evalúase como cero." +msgstr "Devuelve la esviación estándar basada nuna amosanza. El testu calcúlase como cero." #. Smbhk #: sc/inc/scfuncs.hrc:1807 @@ -8987,10 +8971,9 @@ #. RkhC2 #: sc/inc/scfuncs.hrc:1816 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_P" msgid "Number 1, number 2, ... are numerical arguments which portray a population." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una población." #. MH6d3 #: sc/inc/scfuncs.hrc:1822 @@ -9006,10 +8989,9 @@ #. Cp8hZ #: sc/inc/scfuncs.hrc:1824 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_P_MS" msgid "Number 1, number 2, ... are numerical arguments which portray a population." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una población." #. mLDRD #: sc/inc/scfuncs.hrc:1830 @@ -9035,7 +9017,7 @@ #: sc/inc/scfuncs.hrc:1838 msgctxt "SC_OPCODE_AVERAGE" msgid "Returns the average of a sample." -msgstr "Devuelve'l promediu de los argumentos." +msgstr "Devuelve'l permediu d'una amosanza." #. mPAXh #: sc/inc/scfuncs.hrc:1839 @@ -9045,16 +9027,15 @@ #. yFo3s #: sc/inc/scfuncs.hrc:1840 -#, fuzzy msgctxt "SC_OPCODE_AVERAGE" msgid "Number 1, number 2;...are numeric arguments representing a population sample." -msgstr "Númberu 1; númberu 2; ... son ente 1 y 30 argumentos numbéricos que representen una amuesa de población." +msgstr "Númberu 1; númberu 2; ... son argumentos numbéricos que representen una amosanza de población." #. UZBe5 #: sc/inc/scfuncs.hrc:1846 msgctxt "SC_OPCODE_AVERAGE_A" msgid "Returns the average value for a sample. Text is evaluated as zero." -msgstr "Calcula la media d'una amuesa. El testu valoraráse como cero." +msgstr "Devuelve'l valor permediu d'una amosanza. El testu valoraráse como cero." #. eCCGY #: sc/inc/scfuncs.hrc:1847 @@ -9074,7 +9055,7 @@ #: sc/inc/scfuncs.hrc:1854 msgctxt "SC_OPCODE_DEV_SQ" msgid "Returns the sum of squares of deviations from the sample mean value" -msgstr "Devuelve la suma de los cuadraos de les esviaciones del valor mediu de l'amuesa" +msgstr "Devuelve la suma de los cuadraos de les esviaciones del valor mediu de l'amosanza" #. FMeFc #: sc/inc/scfuncs.hrc:1855 @@ -9084,16 +9065,15 @@ #. 9t9WZ #: sc/inc/scfuncs.hrc:1856 -#, fuzzy msgctxt "SC_OPCODE_DEV_SQ" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una amosanza." #. zhbqF #: sc/inc/scfuncs.hrc:1862 msgctxt "SC_OPCODE_AVE_DEV" msgid "Returns the average of the absolute deviations of a sample from the mean." -msgstr "Devuelve'l promediu de les desviaciones absolutes de la media de los puntos de datos." +msgstr "Devuelve'l permediu de les esviaciones absolutes d'una amosanza dende la media." #. GBAFj #: sc/inc/scfuncs.hrc:1863 @@ -9103,10 +9083,9 @@ #. AhF2a #: sc/inc/scfuncs.hrc:1864 -#, fuzzy msgctxt "SC_OPCODE_AVE_DEV" msgid "Number 1, number 2;...are numerical arguments representing a sample." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1; númberu 2;... son argumentos numbéricos que representen una amosanza." #. d8XUA #: sc/inc/scfuncs.hrc:1870 @@ -9122,10 +9101,9 @@ #. iCXiA #: sc/inc/scfuncs.hrc:1872 -#, fuzzy msgctxt "SC_OPCODE_SKEW" msgid "Number 1, number 2, ... are numerical arguments portraying a sample of the distribution." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos que representen una amuesa de la distribución." +msgstr "Númberu 1; númberu 2;... son argumentos numbéricos que representen una amosanza de la distribución." #. wCDBj #: sc/inc/scfuncs.hrc:1878 @@ -9141,10 +9119,9 @@ #. U3E53 #: sc/inc/scfuncs.hrc:1880 -#, fuzzy msgctxt "SC_OPCODE_SKEWP" msgid "Number 1, number 2, ... are numerical arguments portraying the population." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1; númberu 2;... son argumentos numbéricos que representen la población." #. wwgFL #: sc/inc/scfuncs.hrc:1886 @@ -9160,10 +9137,9 @@ #. 3Qsuk #: sc/inc/scfuncs.hrc:1888 -#, fuzzy msgctxt "SC_OPCODE_KURT" msgid "Number 1, number 2, ... are numerical arguments, representing a sample of the distribution." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa de la distribución." +msgstr "Númberu 1; númberu 2;... son argumentos numbéricos que representen una amosanza de la distribución." #. KkCFM #: sc/inc/scfuncs.hrc:1894 @@ -9179,10 +9155,9 @@ #. 2yJ7U #: sc/inc/scfuncs.hrc:1896 -#, fuzzy msgctxt "SC_OPCODE_GEO_MEAN" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una amosanza." #. X8KCZ #: sc/inc/scfuncs.hrc:1902 @@ -9198,16 +9173,15 @@ #. 2SFZ5 #: sc/inc/scfuncs.hrc:1904 -#, fuzzy msgctxt "SC_OPCODE_HAR_MEAN" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una amosanza." #. RpbdF #: sc/inc/scfuncs.hrc:1910 msgctxt "SC_OPCODE_MODAL_VALUE" msgid "Returns the most common value in a sample." -msgstr "Devuelve'l valor que se repite con más frecuencia nuna matriz o estaya de datos." +msgstr "Devuelve'l valor más común nuna amosanza." #. TyDim #: sc/inc/scfuncs.hrc:1911 @@ -9217,16 +9191,15 @@ #. Y4bDG #: sc/inc/scfuncs.hrc:1912 -#, fuzzy msgctxt "SC_OPCODE_MODAL_VALUE" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una amosanza." #. P78Ym #: sc/inc/scfuncs.hrc:1918 msgctxt "SC_OPCODE_MODAL_VALUE_MS" msgid "Returns the most common value in a sample." -msgstr "Devuelve'l valor que se repite con más frecuencia nuna matriz o estaya de datos." +msgstr "Devuelve'l valor más común nuna amosanza." #. BH4Gt #: sc/inc/scfuncs.hrc:1919 @@ -9236,16 +9209,15 @@ #. eE4FY #: sc/inc/scfuncs.hrc:1920 -#, fuzzy msgctxt "SC_OPCODE_MODAL_VALUE_MS" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una amosanza." #. CkE7G #: sc/inc/scfuncs.hrc:1926 msgctxt "SC_OPCODE_MODAL_VALUE_MULTI" msgid "Returns the most common value in a sample." -msgstr "Devuelve'l valor que se repite con más frecuencia nuna matriz o estaya de datos." +msgstr "Devuelve'l valor más común nuna amosanza." #. gXx2e #: sc/inc/scfuncs.hrc:1927 @@ -9255,10 +9227,9 @@ #. h2KJC #: sc/inc/scfuncs.hrc:1928 -#, fuzzy msgctxt "SC_OPCODE_MODAL_VALUE_MULTI" msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1; númberu 2;... son de 1 a 254 argumentos numbéricos que representen una amosanza." #. WohRf #: sc/inc/scfuncs.hrc:1934 @@ -9274,10 +9245,9 @@ #. QjvgB #: sc/inc/scfuncs.hrc:1936 -#, fuzzy msgctxt "SC_OPCODE_MEDIAN" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "Númberu 1; númberu 2;... son de 1 a 30 argumentos numbéricos que representen una amuesa." +msgstr "Númberu 1, númberu 2,... son argumentos numbéricos que representen una amosanza." #. zLWCs #: sc/inc/scfuncs.hrc:1942 @@ -9295,7 +9265,7 @@ #: sc/inc/scfuncs.hrc:1944 msgctxt "SC_OPCODE_PERCENTILE" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. ojZCE #: sc/inc/scfuncs.hrc:1945 @@ -9326,7 +9296,7 @@ #: sc/inc/scfuncs.hrc:1954 msgctxt "SC_OPCODE_PERCENTILE_EXC" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. 2Xss9 #: sc/inc/scfuncs.hrc:1955 @@ -9357,7 +9327,7 @@ #: sc/inc/scfuncs.hrc:1964 msgctxt "SC_OPCODE_PERCENTILE_INC" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. KCoTn #: sc/inc/scfuncs.hrc:1965 @@ -9387,7 +9357,7 @@ #: sc/inc/scfuncs.hrc:1974 msgctxt "SC_OPCODE_QUARTILE" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. FTjuA #: sc/inc/scfuncs.hrc:1975 @@ -9417,7 +9387,7 @@ #: sc/inc/scfuncs.hrc:1984 msgctxt "SC_OPCODE_QUARTILE_EXC" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. awisv #: sc/inc/scfuncs.hrc:1985 @@ -9447,7 +9417,7 @@ #: sc/inc/scfuncs.hrc:1994 msgctxt "SC_OPCODE_QUARTILE_INC" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. mhCBG #: sc/inc/scfuncs.hrc:1995 @@ -9477,7 +9447,7 @@ #: sc/inc/scfuncs.hrc:2004 msgctxt "SC_OPCODE_LARGE" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. PjGgh #: sc/inc/scfuncs.hrc:2005 @@ -9508,7 +9478,7 @@ #: sc/inc/scfuncs.hrc:2014 msgctxt "SC_OPCODE_SMALL" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. ceVdB #: sc/inc/scfuncs.hrc:2015 @@ -9539,7 +9509,7 @@ #: sc/inc/scfuncs.hrc:2024 msgctxt "SC_OPCODE_PERCENT_RANK" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. wDy3T #: sc/inc/scfuncs.hrc:2025 @@ -9581,7 +9551,7 @@ #: sc/inc/scfuncs.hrc:2036 msgctxt "SC_OPCODE_PERCENT_RANK_EXC" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. DUeLX #: sc/inc/scfuncs.hrc:2037 @@ -9623,7 +9593,7 @@ #: sc/inc/scfuncs.hrc:2048 msgctxt "SC_OPCODE_PERCENT_RANK_INC" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. CDS3K #: sc/inc/scfuncs.hrc:2049 @@ -9677,7 +9647,7 @@ #: sc/inc/scfuncs.hrc:2062 msgctxt "SC_OPCODE_RANK" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. YmafZ #: sc/inc/scfuncs.hrc:2063 @@ -9719,7 +9689,7 @@ #: sc/inc/scfuncs.hrc:2074 msgctxt "SC_OPCODE_RANK_EQ" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. aFChD #: sc/inc/scfuncs.hrc:2075 @@ -9761,7 +9731,7 @@ #: sc/inc/scfuncs.hrc:2086 msgctxt "SC_OPCODE_RANK_AVG" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. 5e2Co #: sc/inc/scfuncs.hrc:2087 @@ -9791,7 +9761,7 @@ #: sc/inc/scfuncs.hrc:2096 msgctxt "SC_OPCODE_TRIM_MEAN" msgid "The array of the data in the sample." -msgstr "La matriz de datos de l'amuesa." +msgstr "La matriz de los datos na amosanza." #. cHNxJ #: sc/inc/scfuncs.hrc:2097 @@ -11589,20 +11559,19 @@ #: sc/inc/scfuncs.hrc:2604 msgctxt "SC_OPCODE_HYP_GEOM_DIST" msgid "The number of successes in the sample." -msgstr "El númberu d'éxitos na amuesa." +msgstr "El númberu d'éxitos na amosanza." #. 3jPV7 #: sc/inc/scfuncs.hrc:2605 -#, fuzzy msgctxt "SC_OPCODE_HYP_GEOM_DIST" msgid "N sample" -msgstr "n_amuesa" +msgstr "Amosanza N" #. 8zaJ8 #: sc/inc/scfuncs.hrc:2606 msgctxt "SC_OPCODE_HYP_GEOM_DIST" msgid "The size of the sample." -msgstr "El tamañu de l'amuesa." +msgstr "El tamañu de l'amosanza." #. idG5B #: sc/inc/scfuncs.hrc:2607 @@ -11619,10 +11588,9 @@ #. NfZY9 #: sc/inc/scfuncs.hrc:2609 -#, fuzzy msgctxt "SC_OPCODE_HYP_GEOM_DIST" msgid "N population" -msgstr "n_población" +msgstr "Población N" #. YbCGU #: sc/inc/scfuncs.hrc:2610 @@ -11658,20 +11626,19 @@ #: sc/inc/scfuncs.hrc:2620 msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS" msgid "The number of successes in the sample." -msgstr "El númberu d'éxitos na amuesa." +msgstr "El númberu d'éxitos na amosanza." #. tssd5 #: sc/inc/scfuncs.hrc:2621 -#, fuzzy msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS" msgid "N sample" -msgstr "n_amuesa" +msgstr "Amosanza N" #. kPFzD #: sc/inc/scfuncs.hrc:2622 msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS" msgid "The size of the sample." -msgstr "El tamañu de l'amuesa." +msgstr "El tamañu de l'amosanza." #. 54WRs #: sc/inc/scfuncs.hrc:2623 @@ -11688,10 +11655,9 @@ #. FYyCB #: sc/inc/scfuncs.hrc:2625 -#, fuzzy msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS" msgid "N population" -msgstr "n_población" +msgstr "Población N" #. gbH2X #: sc/inc/scfuncs.hrc:2626 @@ -12527,7 +12493,7 @@ #: sc/inc/scfuncs.hrc:2877 msgctxt "SC_OPCODE_STANDARD" msgid "The mean value used for moving." -msgstr "El promediu usáu pal movimientu." +msgstr "El valor mediu usáu pal movimientu." #. HvYmB #: sc/inc/scfuncs.hrc:2878 @@ -12888,10 +12854,9 @@ #. EeFFo #: sc/inc/scfuncs.hrc:2986 -#, fuzzy msgctxt "SC_OPCODE_F_TEST" msgid "Data 1" -msgstr "Data " +msgstr "Datos 1" #. YfKrA #: sc/inc/scfuncs.hrc:2987 @@ -12901,10 +12866,9 @@ #. HcSHD #: sc/inc/scfuncs.hrc:2988 -#, fuzzy msgctxt "SC_OPCODE_F_TEST" msgid "Data 2" -msgstr "Data " +msgstr "Datos 2" #. DdRTF #: sc/inc/scfuncs.hrc:2989 @@ -12920,10 +12884,9 @@ #. K37cV #: sc/inc/scfuncs.hrc:2996 -#, fuzzy msgctxt "SC_OPCODE_F_TEST_MS" msgid "Data 1" -msgstr "Data " +msgstr "Datos 1" #. tEFdd #: sc/inc/scfuncs.hrc:2997 @@ -12933,10 +12896,9 @@ #. 45maL #: sc/inc/scfuncs.hrc:2998 -#, fuzzy msgctxt "SC_OPCODE_F_TEST_MS" msgid "Data 2" -msgstr "Data " +msgstr "Datos 2" #. NcENT #: sc/inc/scfuncs.hrc:2999 @@ -12952,10 +12914,9 @@ #. vU5V2 #: sc/inc/scfuncs.hrc:3006 -#, fuzzy msgctxt "SC_OPCODE_T_TEST" msgid "Data 1" -msgstr "Data " +msgstr "Datos 1" #. E6YmJ #: sc/inc/scfuncs.hrc:3007 @@ -12965,10 +12926,9 @@ #. YWjTr #: sc/inc/scfuncs.hrc:3008 -#, fuzzy msgctxt "SC_OPCODE_T_TEST" msgid "Data 2" -msgstr "Data " +msgstr "Datos 2" #. 2scEP #: sc/inc/scfuncs.hrc:3009 @@ -13008,10 +12968,9 @@ #. 5fHC3 #: sc/inc/scfuncs.hrc:3020 -#, fuzzy msgctxt "SC_OPCODE_T_TEST_MS" msgid "Data 1" -msgstr "Data " +msgstr "Datos 1" #. F5qSy #: sc/inc/scfuncs.hrc:3021 @@ -13021,10 +12980,9 @@ #. QdUAu #: sc/inc/scfuncs.hrc:3022 -#, fuzzy msgctxt "SC_OPCODE_T_TEST_MS" msgid "Data 2" -msgstr "Data " +msgstr "Datos 2" #. D6yiE #: sc/inc/scfuncs.hrc:3023 @@ -13066,7 +13024,7 @@ #: sc/inc/scfuncs.hrc:3034 msgctxt "SC_OPCODE_RSQ" msgid "Data Y" -msgstr "" +msgstr "Datos Y" #. cDSEe #: sc/inc/scfuncs.hrc:3035 @@ -13078,7 +13036,7 @@ #: sc/inc/scfuncs.hrc:3036 msgctxt "SC_OPCODE_RSQ" msgid "Data X" -msgstr "" +msgstr "Datos X" #. hcEaB #: sc/inc/scfuncs.hrc:3037 @@ -13096,7 +13054,7 @@ #: sc/inc/scfuncs.hrc:3044 msgctxt "SC_OPCODE_INTERCEPT" msgid "Data Y" -msgstr "" +msgstr "Datos Y" #. WXipw #: sc/inc/scfuncs.hrc:3045 @@ -13108,7 +13066,7 @@ #: sc/inc/scfuncs.hrc:3046 msgctxt "SC_OPCODE_INTERCEPT" msgid "Data X" -msgstr "" +msgstr "Datos X" #. T4PDz #: sc/inc/scfuncs.hrc:3047 @@ -13126,7 +13084,7 @@ #: sc/inc/scfuncs.hrc:3054 msgctxt "SC_OPCODE_SLOPE" msgid "Data Y" -msgstr "" +msgstr "Datos Y" #. uaECq #: sc/inc/scfuncs.hrc:3055 @@ -13138,7 +13096,7 @@ #: sc/inc/scfuncs.hrc:3056 msgctxt "SC_OPCODE_SLOPE" msgid "Data X" -msgstr "" +msgstr "Datos X" #. xFSqB #: sc/inc/scfuncs.hrc:3057 @@ -13156,7 +13114,7 @@ #: sc/inc/scfuncs.hrc:3064 msgctxt "SC_OPCODE_STEYX" msgid "Data Y" -msgstr "" +msgstr "Datos Y" #. iURZt #: sc/inc/scfuncs.hrc:3065 @@ -13168,7 +13126,7 @@ #: sc/inc/scfuncs.hrc:3066 msgctxt "SC_OPCODE_STEYX" msgid "Data X" -msgstr "" +msgstr "Datos X" #. o5k38 #: sc/inc/scfuncs.hrc:3067 @@ -13184,10 +13142,9 @@ #. ZhepS #: sc/inc/scfuncs.hrc:3074 -#, fuzzy msgctxt "SC_OPCODE_PEARSON" msgid "Data 1" -msgstr "Data " +msgstr "Datos 1" #. RAEvh #: sc/inc/scfuncs.hrc:3075 @@ -13197,10 +13154,9 @@ #. wbKnK #: sc/inc/scfuncs.hrc:3076 -#, fuzzy msgctxt "SC_OPCODE_PEARSON" msgid "Data 2" -msgstr "Data " +msgstr "Datos 2" #. EEAuv #: sc/inc/scfuncs.hrc:3077 @@ -13216,10 +13172,9 @@ #. ojEas #: sc/inc/scfuncs.hrc:3084 -#, fuzzy msgctxt "SC_OPCODE_CORREL" msgid "Data 1" -msgstr "Data " +msgstr "Datos 1" #. 7VtBm #: sc/inc/scfuncs.hrc:3085 @@ -13229,10 +13184,9 @@ #. hqTcz #: sc/inc/scfuncs.hrc:3086 -#, fuzzy msgctxt "SC_OPCODE_CORREL" msgid "Data 2" -msgstr "Data " +msgstr "Datos 2" #. aNhvr #: sc/inc/scfuncs.hrc:3087 @@ -13248,10 +13202,9 @@ #. MBP4T #: sc/inc/scfuncs.hrc:3094 -#, fuzzy msgctxt "SC_OPCODE_COVAR" msgid "Data 1" -msgstr "Data " +msgstr "Datos 1" #. skBUc #: sc/inc/scfuncs.hrc:3095 @@ -13261,10 +13214,9 @@ #. 2Da2J #: sc/inc/scfuncs.hrc:3096 -#, fuzzy msgctxt "SC_OPCODE_COVAR" msgid "Data 2" -msgstr "Data " +msgstr "Datos 2" #. 2KRqV #: sc/inc/scfuncs.hrc:3097 @@ -13280,10 +13232,9 @@ #. GRFHF #: sc/inc/scfuncs.hrc:3104 -#, fuzzy msgctxt "SC_OPCODE_COVARIANCE_P" msgid "Data 1" -msgstr "Data " +msgstr "Datos 1" #. AQzmF #: sc/inc/scfuncs.hrc:3105 @@ -13293,10 +13244,9 @@ #. FKuFq #: sc/inc/scfuncs.hrc:3106 -#, fuzzy msgctxt "SC_OPCODE_COVARIANCE_P" msgid "Data 2" -msgstr "Data " +msgstr "Datos 2" #. 7Bt3T #: sc/inc/scfuncs.hrc:3107 @@ -13312,10 +13262,9 @@ #. eSQnz #: sc/inc/scfuncs.hrc:3114 -#, fuzzy msgctxt "SC_OPCODE_COVARIANCE_S" msgid "Data 1" -msgstr "Data " +msgstr "Datos 1" #. VZuaM #: sc/inc/scfuncs.hrc:3115 @@ -13325,10 +13274,9 @@ #. pYdps #: sc/inc/scfuncs.hrc:3116 -#, fuzzy msgctxt "SC_OPCODE_COVARIANCE_S" msgid "Data 2" -msgstr "Data " +msgstr "Datos 2" #. QPWqm #: sc/inc/scfuncs.hrc:3117 @@ -13358,7 +13306,7 @@ #: sc/inc/scfuncs.hrc:3126 msgctxt "SC_OPCODE_FORECAST" msgid "Data Y" -msgstr "" +msgstr "Datos Y" #. 5dSvW #: sc/inc/scfuncs.hrc:3127 @@ -13370,7 +13318,7 @@ #: sc/inc/scfuncs.hrc:3128 msgctxt "SC_OPCODE_FORECAST" msgid "Data X" -msgstr "" +msgstr "Datos X" #. 2EEKK #: sc/inc/scfuncs.hrc:3129 @@ -13946,7 +13894,7 @@ #: sc/inc/scfuncs.hrc:3264 msgctxt "SC_OPCODE_FORECAST_LIN" msgid "Data Y" -msgstr "" +msgstr "Datos Y" #. peRhT #: sc/inc/scfuncs.hrc:3265 @@ -13958,7 +13906,7 @@ #: sc/inc/scfuncs.hrc:3266 msgctxt "SC_OPCODE_FORECAST_LIN" msgid "Data X" -msgstr "" +msgstr "Datos X" #. mBkBN #: sc/inc/scfuncs.hrc:3267 @@ -16364,7 +16312,6 @@ #. gdGoc #: sc/inc/scfuncs.hrc:4028 -#, fuzzy msgctxt "SC_OPCODE_COLOR" msgid "Red" msgstr "Bermeyu" @@ -16449,10 +16396,9 @@ #. gWVmB #: sc/inc/scfuncs.hrc:4054 -#, fuzzy msgctxt "SC_OPCODE_ERF_MS" msgid "Returns the error function." -msgstr "Devuelve la función d'error" +msgstr "Devuelve la función d'error." #. FKDK8 #: sc/inc/scfuncs.hrc:4055 @@ -16495,7 +16441,7 @@ #: sc/inc/scfuncs.hrc:4069 msgctxt "SC_OPCODE_RAWSUBTRACT" msgid "Minuend" -msgstr "" +msgstr "Minuendu" #. oUk9p #: sc/inc/scfuncs.hrc:4070 @@ -16507,7 +16453,7 @@ #: sc/inc/scfuncs.hrc:4071 msgctxt "SC_OPCODE_RAWSUBTRACT" msgid "Subtrahend " -msgstr "" +msgstr "Sustraendu " #. qTgL8 #: sc/inc/scfuncs.hrc:4072 @@ -16810,7 +16756,6 @@ #. gHBtK #: sc/inc/scstyles.hrc:32 -#, fuzzy msgctxt "RID_CELLSTYLEFAMILY" msgid "Custom Styles" msgstr "Estilos personalizaos" @@ -16830,7 +16775,6 @@ #. jQvqy #: sc/inc/scstyles.hrc:40 -#, fuzzy msgctxt "RID_PAGESTYLEFAMILY" msgid "Custom Styles" msgstr "Estilos personalizaos" @@ -16840,7 +16784,7 @@ #: sc/inc/strings.hrc:27 msgctxt "SCSTR_LONG_SCDOC_NAME" msgid "%PRODUCTNAME Spreadsheet format (calc6)" -msgstr "" +msgstr "Formatu de fueya de cálculu de %PRODUCTNAME (calc6)" #. cZ6cB #: sc/inc/strings.hrc:28 @@ -17420,19 +17364,19 @@ #: sc/inc/strings.hrc:128 msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1" msgid "Calc A1" -msgstr "Calc A1" +msgstr "A1 de Calc" #. xEQCB #: sc/inc/strings.hrc:129 msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1" msgid "Excel A1" -msgstr "Excel A1" +msgstr "A1 d'Excel" #. KLkBH #: sc/inc/strings.hrc:130 msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1" msgid "Excel R1C1" -msgstr "Excel R1C1" +msgstr "R1C1 d'Excel" #. pr4wW #: sc/inc/strings.hrc:131 @@ -17862,7 +17806,7 @@ #: sc/inc/strings.hrc:207 msgctxt "STR_NOT_PROTECTED" msgid "Not protected" -msgstr "Ensin proteicion" +msgstr "Ensin proteición" #. 3TDDs #: sc/inc/strings.hrc:208 @@ -18072,7 +18016,6 @@ #. h2HaP #: sc/inc/strings.hrc:246 -#, fuzzy msgctxt "STRID_CALC_VARIANCE" msgid "Variance" msgstr "Varianza" @@ -18912,19 +18855,19 @@ #: sc/inc/subtotals.hrc:30 msgctxt "subtotalgrppage|liststore1" msgid "Average" -msgstr "Promediu" +msgstr "Permediu" #. AfJCg #: sc/inc/subtotals.hrc:31 msgctxt "subtotalgrppage|liststore1" msgid "Max" -msgstr "Máx" +msgstr "Máximu" #. iidBk #: sc/inc/subtotals.hrc:32 msgctxt "subtotalgrppage|liststore1" msgid "Min" -msgstr "Mín" +msgstr "Mínimu" #. VqvEW #: sc/inc/subtotals.hrc:33 @@ -18942,7 +18885,7 @@ #: sc/inc/subtotals.hrc:35 msgctxt "subtotalgrppage|liststore1" msgid "StDev (Sample)" -msgstr "DesvEst (amuesa)" +msgstr "Esviación estándar (amosanza)" #. RGUzn #: sc/inc/subtotals.hrc:36 @@ -18954,7 +18897,7 @@ #: sc/inc/subtotals.hrc:37 msgctxt "subtotalgrppage|liststore1" msgid "Var (Sample)" -msgstr "Var (amuesa)" +msgstr "Varianza (amosanza)" #. bcyAy #: sc/inc/subtotals.hrc:38 @@ -18966,13 +18909,13 @@ #: sc/inc/units.hrc:32 msgctxt "SCSTR_UNIT" msgid "Millimeter" -msgstr "Milímetros" +msgstr "Milímetru" #. aXv3t #: sc/inc/units.hrc:33 msgctxt "SCSTR_UNIT" msgid "Centimeter" -msgstr "Centímetros" +msgstr "Centímetru" #. jDQ63 #: sc/inc/units.hrc:34 @@ -19020,19 +18963,19 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:8 msgctxt "advancedfilterdialog|AdvancedFilterDialog" msgid "Advanced Filter" -msgstr "Filtru avanzáu" +msgstr "Peñera avanzada" #. fUxef #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:38 msgctxt "advancedfilterdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. gzGAU #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:58 msgctxt "advancedfilterdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. v3B8V #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:119 @@ -19209,19 +19152,19 @@ #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:49 msgctxt "aggregatefunctionentry|average" msgid "Average" -msgstr "Promediu" +msgstr "Permediu" #. K4a9A #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:50 msgctxt "aggregatefunctionentry|min" msgid "Minimum Value" -msgstr "" +msgstr "Valor mínimu" #. PBUKX #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:51 msgctxt "aggregatefunctionentry|max" msgid "Maximum Value" -msgstr "" +msgstr "Valor máximu" #. nFRnG #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:66 @@ -19369,13 +19312,13 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:39 msgctxt "autoformattable|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. V6Tpf #: sc/uiconfig/scalc/ui/autoformattable.ui:60 msgctxt "autoformattable|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. NTY8D #: sc/uiconfig/scalc/ui/autoformattable.ui:131 @@ -19515,19 +19458,19 @@ #: sc/uiconfig/scalc/ui/autosum.ui:20 msgctxt "autosum|average" msgid "Average" -msgstr "Promediu" +msgstr "Permediu" #. zrBKq #: sc/uiconfig/scalc/ui/autosum.ui:28 msgctxt "autosum|min" msgid "Min" -msgstr "" +msgstr "Mínimu" #. pWv7a #: sc/uiconfig/scalc/ui/autosum.ui:36 msgctxt "autosum|max" msgid "Max" -msgstr "" +msgstr "Máximu" #. mAz9L #: sc/uiconfig/scalc/ui/autosum.ui:44 @@ -19545,13 +19488,13 @@ #: sc/uiconfig/scalc/ui/autosum.ui:60 msgctxt "autosum|product" msgid "Product" -msgstr "" +msgstr "Productu" #. GNEDE #: sc/uiconfig/scalc/ui/autosum.ui:68 msgctxt "autosum|stdev" msgid "Stdev" -msgstr "" +msgstr "Esviación estándar" #. cAEpr #: sc/uiconfig/scalc/ui/autosum.ui:76 @@ -19563,7 +19506,7 @@ #: sc/uiconfig/scalc/ui/autosum.ui:84 msgctxt "autosum|var" msgid "Var" -msgstr "" +msgstr "Varianza" #. 7GuBA #: sc/uiconfig/scalc/ui/autosum.ui:92 @@ -19587,7 +19530,7 @@ #: sc/uiconfig/scalc/ui/cellprotectionpage.ui:54 msgctxt "cellprotectionpage|checkHideFormula" msgid "Hide _formula" -msgstr "Tapecer _fórmules" +msgstr "Anubrir _fórmules" #. jCAZ4 #: sc/uiconfig/scalc/ui/cellprotectionpage.ui:64 @@ -19709,7 +19652,7 @@ #: sc/uiconfig/scalc/ui/chardialog.ui:279 msgctxt "chardialog|background" msgid "Highlighting" -msgstr "Resalte" +msgstr "Rescamplu" #. CCjUa #: sc/uiconfig/scalc/ui/checkwarningdialog.ui:11 @@ -19967,13 +19910,13 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:216 msgctxt "conditionalentry|colscalemin" msgid "Min" -msgstr "Mín" +msgstr "Mínimu" #. HAuKu #: sc/uiconfig/scalc/ui/conditionalentry.ui:217 msgctxt "conditionalentry|colscalemin" msgid "Max" -msgstr "Máx" +msgstr "Máximu" #. ciYfw #: sc/uiconfig/scalc/ui/conditionalentry.ui:218 @@ -20009,13 +19952,13 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:235 msgctxt "conditionalentry|colscalemiddle" msgid "Min" -msgstr "Mín" +msgstr "Mínimu" #. qC8Zo #: sc/uiconfig/scalc/ui/conditionalentry.ui:236 msgctxt "conditionalentry|colscalemiddle" msgid "Max" -msgstr "Máx" +msgstr "Máximu" #. 7bxeC #: sc/uiconfig/scalc/ui/conditionalentry.ui:237 @@ -20051,13 +19994,13 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:254 msgctxt "conditionalentry|colscalemax" msgid "Min" -msgstr "Mín" +msgstr "Mínimu" #. JBX6r #: sc/uiconfig/scalc/ui/conditionalentry.ui:255 msgctxt "conditionalentry|colscalemax" msgid "Max" -msgstr "Máx" +msgstr "Máximu" #. uPGWW #: sc/uiconfig/scalc/ui/conditionalentry.ui:256 @@ -20520,13 +20463,13 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:34 msgctxt "conditionalformatdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. zqDuf #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:54 msgctxt "conditionalformatdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. VP7Xe #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:156 @@ -20708,13 +20651,13 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:43 msgctxt "consolidatedialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. EHBqo #: sc/uiconfig/scalc/ui/consolidatedialog.ui:63 msgctxt "consolidatedialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. kkPF3 #: sc/uiconfig/scalc/ui/consolidatedialog.ui:110 @@ -20726,7 +20669,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:125 msgctxt "consolidatedialog|label2" msgid "_Consolidation ranges:" -msgstr "Rangos de _consolidación:" +msgstr "Estayes de _consolidación:" #. AtpDx #: sc/uiconfig/scalc/ui/consolidatedialog.ui:141 @@ -20744,19 +20687,19 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:143 msgctxt "consolidatedialog|func" msgid "Average" -msgstr "Promediu" +msgstr "Permediu" #. EffQC #: sc/uiconfig/scalc/ui/consolidatedialog.ui:144 msgctxt "consolidatedialog|func" msgid "Max" -msgstr "Máx" +msgstr "Máximu" #. fiQPH #: sc/uiconfig/scalc/ui/consolidatedialog.ui:145 msgctxt "consolidatedialog|func" msgid "Min" -msgstr "Mín" +msgstr "Mínimu" #. cbwPv #: sc/uiconfig/scalc/ui/consolidatedialog.ui:146 @@ -20774,7 +20717,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:148 msgctxt "consolidatedialog|func" msgid "StDev (sample)" -msgstr "DesvEst (amuesa)" +msgstr "Esviación estándar (amosanza)" #. JTcFT #: sc/uiconfig/scalc/ui/consolidatedialog.ui:149 @@ -20786,7 +20729,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:150 msgctxt "consolidatedialog|func" msgid "Var (sample)" -msgstr "Var (amuesa)" +msgstr "Varianza (amosanza)" #. gEiNo #: sc/uiconfig/scalc/ui/consolidatedialog.ui:151 @@ -21637,7 +21580,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:209 msgctxt "datafieldoptionsdialog|label1" msgid "Sort by" -msgstr "Ordenar por" +msgstr "Ordenar per" #. qQHXp #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:238 @@ -21868,7 +21811,7 @@ #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:138 msgctxt "dataproviderdlg/url" msgid "URL:" -msgstr "" +msgstr "URL:" #. GKDQA #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:161 @@ -22141,7 +22084,7 @@ #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:65 msgctxt "datetimetransformationentry|time" msgid "Time" -msgstr "" +msgstr "Hora" #. bRjJe #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:80 @@ -22165,13 +22108,13 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:44 msgctxt "definedatabaserangedialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. djkZd #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:63 msgctxt "definedatabaserangedialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. RMghE #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:171 @@ -23327,7 +23270,7 @@ #: sc/uiconfig/scalc/ui/findreplaceentry.ui:59 msgctxt "findreplace|replace" msgid "Replace With" -msgstr "" +msgstr "Trocar por" #. RF57t #: sc/uiconfig/scalc/ui/findreplaceentry.ui:73 @@ -23789,13 +23732,13 @@ #: sc/uiconfig/scalc/ui/goalseekdlg.ui:30 msgctxt "goalseekdlg|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. fKq27 #: sc/uiconfig/scalc/ui/goalseekdlg.ui:51 msgctxt "goalseekdlg|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. qJ3YX #: sc/uiconfig/scalc/ui/goalseekdlg.ui:105 @@ -23850,10 +23793,9 @@ #. mHUzW #: sc/uiconfig/scalc/ui/goalseekdlg.ui:238 -#, fuzzy msgctxt "goalseekdlg|label1" msgid "Default Settings" -msgstr "Configuración predeterminada" +msgstr "Axustes predeterminaos" #. Aguih #: sc/uiconfig/scalc/ui/goalseekdlg.ui:263 @@ -24719,13 +24661,13 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:44 msgctxt "managenamesdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. ftVCr #: sc/uiconfig/scalc/ui/managenamesdialog.ui:63 msgctxt "managenamesdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. RCtXS #: sc/uiconfig/scalc/ui/managenamesdialog.ui:133 @@ -25125,20 +25067,19 @@ #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:33 msgctxt "multipleoperationsdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. EEze8 #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:52 msgctxt "multipleoperationsdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. aQNVa #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:106 -#, fuzzy msgctxt "multipleoperationsdialog|formulasft" msgid "_Formulas:" -msgstr "_Fórmules" +msgstr "_Fórmules:" #. ddjsT #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:120 @@ -25190,10 +25131,9 @@ #. LqDCg #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:255 -#, fuzzy msgctxt "multipleoperationsdialog|label1" msgid "Default Settings" -msgstr "Configuración predeterminada" +msgstr "Axustes predeterminaos" #. ZQKXx #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:280 @@ -25211,19 +25151,19 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:43 msgctxt "namerangesdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. jkh7A #: sc/uiconfig/scalc/ui/namerangesdialog.ui:63 msgctxt "namerangesdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. 9GqGh #: sc/uiconfig/scalc/ui/namerangesdialog.ui:131 msgctxt "namerangesdialog|extended_tip|edassign" msgid "Displays the cell reference of each label range." -msgstr "Amuesa la referencia de caxella de cada área d'etiquetes." +msgstr "Amuesa la referencia de caxella de cada estaya d'etiquetes." #. JXXhm #: sc/uiconfig/scalc/ui/namerangesdialog.ui:150 @@ -25289,7 +25229,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:370 msgctxt "namerangesdialog|extended_tip|range" msgid "Displays the cell reference of each label range." -msgstr "Amuesa la referencia de caxella de cada área d'etiquetes." +msgstr "Amuesa la referencia de caxella de cada estaya d'etiquetes." #. AFqD5 #: sc/uiconfig/scalc/ui/namerangesdialog.ui:387 @@ -28414,13 +28354,13 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:75 msgctxt "pivottablelayoutdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. ieEKA #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:94 msgctxt "pivottablelayoutdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. dhgK2 #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:163 @@ -28436,10 +28376,9 @@ #. WWrpy #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:244 -#, fuzzy msgctxt "pivottablelayoutdialog|label5" msgid "Data Fields:" -msgstr "Campu de datos" +msgstr "Campos de datos:" #. cvgCA #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:295 @@ -28672,13 +28611,13 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:33 msgctxt "printareasdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. BftEK #: sc/uiconfig/scalc/ui/printareasdialog.ui:52 msgctxt "printareasdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. DrnyM #: sc/uiconfig/scalc/ui/printareasdialog.ui:119 @@ -31469,10 +31408,9 @@ #. ABAdF #: sc/uiconfig/scalc/ui/sortoptionspage.ui:146 -#, fuzzy msgctxt "sortoptionspage|extended_tip|outarealb" msgid "Select a named cell range where you want to display the sorted list, or enter a cell range in the input box." -msgstr "Escueya un rangu de caxelles con nome p'amosar la llista ordenada, o especifique un rangu de caxelles nel cuadru d'entrada." +msgstr "Esbilla una estaya de caxelles con nome onde amosar la llista ordenada, o especifica una estaya de caxelles nel cuadru d'entrada." #. ABGSS #: sc/uiconfig/scalc/ui/sortoptionspage.ui:167 @@ -31866,13 +31804,13 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:118 msgctxt "standardfilterdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. JEsDB #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:138 msgctxt "standardfilterdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. 3c3SD #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:217 @@ -32683,7 +32621,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:327 msgctxt "textimportcsv|mergedelimiters" msgid "Merge _delimiters" -msgstr "Reagrupar los _separtadores de campu" +msgstr "Fusionar allin_diadores" #. EMxAD #: sc/uiconfig/scalc/ui/textimportcsv.ui:337 diff -Nru libreoffice-7.4.6/translations/source/ast/scaddins/messages.po libreoffice-7.4.7/translations/source/ast/scaddins/messages.po --- libreoffice-7.4.6/translations/source/ast/scaddins/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/scaddins/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-10 11:04+0000\n" +"PO-Revision-Date: 2023-03-13 11:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516029136.000000\n" #. i8Y7Z @@ -62,7 +62,7 @@ #: scaddins/inc/analysis.hrc:39 msgctxt "ANALYSIS_Yearfrac" msgid "Returns the number of years (including fractional part) between two dates" -msgstr "Devuelve el númberu d'años (incluyendo la parte fraccionaria) ente dos dates" +msgstr "Devuelve'l númberu d'años (inclusive la parte fraicionaria) ente dos dates" #. HhQYz #: scaddins/inc/analysis.hrc:40 diff -Nru libreoffice-7.4.6/translations/source/ast/scp2/source/calc.po libreoffice-7.4.7/translations/source/ast/scp2/source/calc.po --- libreoffice-7.4.6/translations/source/ast/scp2/source/calc.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/scp2/source/calc.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-02-21 01:15+0000\n" -"Last-Translator: Xandru Martino Ruz \n" -"Language-Team: Asturian \n" +"PO-Revision-Date: 2023-04-07 19:34+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1492007708.000000\n" #. rTGYE @@ -41,7 +41,7 @@ "STR_NAME_MODULE_PRG_CALC\n" "LngText.text" msgid "%PRODUCTNAME Calc" -msgstr "%PRODUCTNAME Calc" +msgstr "Calc de %PRODUCTNAME" #. erCpE #: module_calc.ulf @@ -140,7 +140,7 @@ "STR_REG_VAL_OO_CALC\n" "LngText.text" msgid "OpenDocument Spreadsheet" -msgstr "Fueya de cálculu de OpenDocument" +msgstr "Fueya de cálculu OpenDocument" #. oS5qx #: registryitem_calc.ulf @@ -149,7 +149,7 @@ "STR_REG_VAL_OO_CALC_TEMPLATE\n" "LngText.text" msgid "OpenDocument Spreadsheet Template" -msgstr "Plantía de fueya de cálculu de OpenDocument" +msgstr "Plantía pa fueya de cálculu OpenDocument" #. B2tXa #: registryitem_calc.ulf @@ -158,7 +158,7 @@ "STR_REG_VAL_MS_EXCEL_WORKSHEET_OLD\n" "LngText.text" msgid "Microsoft Excel 97-2003 Worksheet" -msgstr "Fueya de cálculu de Microsoft Excel 97-2003" +msgstr "Fueya de cálculu d'Excel 97-2003 de Microsoft" #. aAdan #: registryitem_calc.ulf @@ -167,7 +167,7 @@ "STR_REG_VAL_MS_EXCEL_WORKSHEET\n" "LngText.text" msgid "Microsoft Excel Worksheet" -msgstr "Fueya de cálculu de Microsoft Excel" +msgstr "Fueya de cálculu d'Excel de Microsoft" #. GWhEw #: registryitem_calc.ulf @@ -176,7 +176,7 @@ "STR_REG_VAL_MS_EXCEL_WEBQUERY\n" "LngText.text" msgid "Microsoft Excel Web Query File" -msgstr "Ficheru de consulta weeb de Microsoft Excel" +msgstr "Ficheru de consulta web d'Excel de Microsoft" #. QGyiB #: registryitem_calc.ulf @@ -185,7 +185,7 @@ "STR_REG_VAL_MS_EXCEL_TEMPLATE_OLD\n" "LngText.text" msgid "Microsoft Excel 97-2003 Template" -msgstr "Plantía de Microsoft Excel 97-2003" +msgstr "Plantía d'Excel 97-2003 de Microsoft" #. sputX #: registryitem_calc.ulf @@ -194,7 +194,7 @@ "STR_REG_VAL_MS_EXCEL_TEMPLATE\n" "LngText.text" msgid "Microsoft Excel Template" -msgstr "Plantía de Microsoft Excel" +msgstr "Plantía d'Excel de Microsoft" #. vnbCH #: registryitem_calc.ulf diff -Nru libreoffice-7.4.6/translations/source/ast/scp2/source/graphicfilter.po libreoffice-7.4.7/translations/source/ast/scp2/source/graphicfilter.po --- libreoffice-7.4.6/translations/source/ast/scp2/source/graphicfilter.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/scp2/source/graphicfilter.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-04-27 15:55+0200\n" -"PO-Revision-Date: 2014-01-20 22:09+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1390255754.000000\n" #. yNDcH @@ -23,7 +23,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT\n" "LngText.text" msgid "Image Filters" -msgstr "Filtros d'imaxe" +msgstr "Peñeres d'imaxe" #. NGACu #: module_graphicfilter.ulf diff -Nru libreoffice-7.4.6/translations/source/ast/scp2/source/impress.po libreoffice-7.4.7/translations/source/ast/scp2/source/impress.po --- libreoffice-7.4.6/translations/source/ast/scp2/source/impress.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/scp2/source/impress.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2015-04-23 21:13+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-07 19:34+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1429823638.000000\n" #. USjxN @@ -41,7 +41,7 @@ "STR_NAME_MODULE_PRG_IMPRESS\n" "LngText.text" msgid "%PRODUCTNAME Impress" -msgstr "%PRODUCTNAME Impress" +msgstr "Impress de %PRODUCTNAME" #. 44gb8 #: module_impress.ulf @@ -86,7 +86,7 @@ "STR_DESC_MODULE_PRG_IMPRESS_HELP\n" "LngText.text" msgid "Help about %PRODUCTNAME Impress" -msgstr "Ayuda tocante a %PRODUCTNAME Impress" +msgstr "Ayuda tocante a Impress de %PRODUCTNAME" #. Bg4eB #: registryitem_impress.ulf @@ -122,7 +122,7 @@ "STR_REG_VAL_SO60_IMPRESS_TEMPLATE\n" "LngText.text" msgid "%SXWFORMATNAME %SXWFORMATVERSION Presentation Template" -msgstr "Plantía de Presentación de %SXWFORMATNAME %SXWFORMATVERSION" +msgstr "Plantía pa presentación de %SXWFORMATNAME %SXWFORMATVERSION" #. GbPTM #: registryitem_impress.ulf @@ -131,7 +131,7 @@ "STR_REG_VAL_OO_PRESENT\n" "LngText.text" msgid "OpenDocument Presentation" -msgstr "Presentación de OpenDocument" +msgstr "Presentación OpenDocument" #. 6KPeW #: registryitem_impress.ulf @@ -140,7 +140,7 @@ "STR_REG_VAL_OO_PRESENT_TEMPLATE\n" "LngText.text" msgid "OpenDocument Presentation Template" -msgstr "Plantía de presentación de OpenDocument" +msgstr "Plantía pa presentación OpenDocument" #. FPmTX #: registryitem_impress.ulf @@ -158,7 +158,7 @@ "STR_REG_VAL_MS_POWERPOINT_SHOW\n" "LngText.text" msgid "Microsoft PowerPoint Show" -msgstr "Show de Microsoft Powerpoint" +msgstr "Presentación de diapositives de PowerPoint de Microsoft" #. c8FUE #: registryitem_impress.ulf @@ -167,7 +167,7 @@ "STR_REG_VAL_MS_POWERPOINT_PRESENTATION\n" "LngText.text" msgid "Microsoft PowerPoint Presentation" -msgstr "Presentación de Microsoft PowerPoint" +msgstr "Presentación de PowerPoint de Microsoft" #. krens #: registryitem_impress.ulf @@ -176,7 +176,7 @@ "STR_REG_VAL_MS_POWERPOINT_TEMPLATE_OLD\n" "LngText.text" msgid "Microsoft PowerPoint 97-2003 Template" -msgstr "Plantía de Microsoft PowerPoint 97-2003" +msgstr "Plantía de PowerPoint 97-2003 de Microsoft" #. DkZrz #: registryitem_impress.ulf @@ -185,7 +185,7 @@ "STR_REG_VAL_MS_POWERPOINT_TEMPLATE\n" "LngText.text" msgid "Microsoft PowerPoint Template" -msgstr "Plantía de Microsoft PowerPoint" +msgstr "Plantía de PowerPoint de Microsoft" #. n8qaR #: registryitem_impress.ulf diff -Nru libreoffice-7.4.6/translations/source/ast/scp2/source/writer.po libreoffice-7.4.7/translations/source/ast/scp2/source/writer.po --- libreoffice-7.4.6/translations/source/ast/scp2/source/writer.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/scp2/source/writer.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-12-10 11:03+0000\n" +"PO-Revision-Date: 2023-04-07 19:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1390255351.000000\n" #. V3iDr @@ -77,7 +77,7 @@ "STR_DESC_MODULE_PRG_WRT_BIN\n" "LngText.text" msgid "The application %PRODUCTNAME Writer" -msgstr "La aplicación %PRODUCTNAME Writer" +msgstr "L'aplicación Writer de %PRODUCTNAME" #. zYAFQ #: module_writer.ulf @@ -86,7 +86,7 @@ "STR_NAME_MODULE_PRG_WRT_HELP\n" "LngText.text" msgid "%PRODUCTNAME Writer Help" -msgstr "Ayuda de %PRODUCTNAME Writer" +msgstr "Ayuda de Writer de %PRODUCTNAME" #. j3zwV #: module_writer.ulf @@ -95,7 +95,7 @@ "STR_DESC_MODULE_PRG_WRT_HELP\n" "LngText.text" msgid "Help about %PRODUCTNAME Writer" -msgstr "Ayuda sobro %PRODUCTNAME Writer" +msgstr "Ayuda tocante a Writer de %PRODUCTNAME" #. 5BavU #: module_writer.ulf @@ -140,7 +140,7 @@ "STR_REG_VAL_SO60_MASTERDOC\n" "LngText.text" msgid "%SXWFORMATNAME %SXWFORMATVERSION Master Document" -msgstr "Documentu maestru de %SXWFORMATNAME %SXWFORMATVERSION" +msgstr "Documentu principal de %SXWFORMATNAME %SXWFORMATVERSION" #. iZ8qv #: registryitem_writer.ulf @@ -158,7 +158,7 @@ "STR_REG_VAL_OO_WRITER\n" "LngText.text" msgid "OpenDocument Text" -msgstr "Testu de Open Office" +msgstr "Testu OpenDocument" #. HACXx #: registryitem_writer.ulf @@ -167,7 +167,7 @@ "STR_REG_VAL_OO_WRITER_TEMPLATE\n" "LngText.text" msgid "OpenDocument Text Template" -msgstr "Plantilla pa testu de Open Office" +msgstr "Plantilla pa testu OpenDocument" #. LNxi7 #: registryitem_writer.ulf @@ -176,7 +176,7 @@ "STR_REG_VAL_OO_MASTERDOC\n" "LngText.text" msgid "OpenDocument Master Document" -msgstr "Documentu maestru de OpenDocument" +msgstr "Documentu principal OpenDocument" #. 9pRkz #: registryitem_writer.ulf @@ -185,7 +185,7 @@ "STR_REG_VAL_OO_WEBDOC\n" "LngText.text" msgid "HTML Document Template" -msgstr "Plantilla pa documentu HTML" +msgstr "Plantía pa documentu HTML" #. 9LaGH #: registryitem_writer.ulf @@ -194,7 +194,7 @@ "STR_REG_VAL_MS_WORD_DOCUMENT_OLD\n" "LngText.text" msgid "Microsoft Word 97-2003 Document" -msgstr "Documentu de Microsoft Word 97-2003" +msgstr "Documentu de Word 97-2003 de Microsoft" #. S7R4Z #: registryitem_writer.ulf @@ -203,7 +203,7 @@ "STR_REG_VAL_MS_WORD_DOCUMENT\n" "LngText.text" msgid "Microsoft Word Document" -msgstr "Documentu de Microsoft Word" +msgstr "Documentu de Word de Microsoft" #. uEDNQ #: registryitem_writer.ulf @@ -212,7 +212,7 @@ "STR_REG_VAL_MS_WORD_TEMPLATE_OLD\n" "LngText.text" msgid "Microsoft Word 97-2003 Template" -msgstr "Plantía de Microsoft Word 97-2003" +msgstr "Plantía de Word 97-2003 de Microsoft" #. kzVhN #: registryitem_writer.ulf @@ -221,7 +221,7 @@ "STR_REG_VAL_MS_WORD_TEMPLATE\n" "LngText.text" msgid "Microsoft Word Template" -msgstr "Plantía de Microsoft Word" +msgstr "Plantía de Word de Microsoft" #. wyEB5 #: registryitem_writer.ulf @@ -257,4 +257,4 @@ "STR_REG_VAL_T602_TEXT_FILE\n" "LngText.text" msgid "T602 Text File" -msgstr "Ficheru de testu T602" +msgstr "Ficheru de testu de T602" diff -Nru libreoffice-7.4.6/translations/source/ast/scp2/source/xsltfilter.po libreoffice-7.4.7/translations/source/ast/scp2/source/xsltfilter.po --- libreoffice-7.4.6/translations/source/ast/scp2/source/xsltfilter.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/scp2/source/xsltfilter.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2013-05-23 22:29+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1369348144.000000\n" #. VPt2X @@ -23,7 +23,7 @@ "STR_NAME_MODULE_OPTIONAL_XSLTFILTERSAMPLES\n" "LngText.text" msgid "XSLT Sample Filters" -msgstr "Filtros d'exemplu XSLT" +msgstr "Peñeres XSLT d'exemplu" #. QqGa5 #: module_xsltfilter.ulf @@ -32,4 +32,4 @@ "STR_DESC_MODULE_OPTIONAL_XSLTFILTERSAMPLES\n" "LngText.text" msgid "XSLT Sample Filters" -msgstr "Filtros d'exemplu XSLT" +msgstr "Peñeres XSLT d'exemplu" diff -Nru libreoffice-7.4.6/translations/source/ast/sd/messages.po libreoffice-7.4.7/translations/source/ast/sd/messages.po --- libreoffice-7.4.6/translations/source/ast/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -85,10 +85,9 @@ #. rEFBA #: sd/inc/DocumentRenderer.hrc:47 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES" msgid "Left to right, then down" -msgstr "D'esquierda a drecha y llueu abaxo" +msgstr "D'izquierda a derecha y llueu abaxo" #. 2ZwsC #: sd/inc/DocumentRenderer.hrc:48 @@ -179,10 +178,9 @@ #. y4PeC #: sd/inc/DocumentRenderer.hrc:78 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST" msgid "Back sides / left pages" -msgstr "Cares posteriores / páxines esquierdes" +msgstr "Cares posteriores / páxines izquierdes" #. 6DEa3 #: sd/inc/DocumentRenderer.hrc:83 @@ -789,7 +787,7 @@ #: sd/inc/strings.hrc:87 msgctxt "STR_ASK_DELETE_ALL_PICTURES" msgid "Do you really want to delete all images?" -msgstr "¿Daveres quies desaniciar toles imaxes?" +msgstr "¿Daveres quies desaniciar toles imáxenes?" #. 43diA #: sd/inc/strings.hrc:88 @@ -1329,7 +1327,7 @@ #: sd/inc/strings.hrc:178 msgctxt "STR_UNDO_SUMMARY_PAGE" msgid "Table of Contents Slide" -msgstr "Diapositiva de tabla de conteníos" +msgstr "Diapositiva de la tabla de conteníu" #. m5tvp #: sd/inc/strings.hrc:179 @@ -1437,13 +1435,13 @@ #: sd/inc/strings.hrc:196 msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80" msgid "%PRODUCTNAME %PRODUCTVERSION Presentation" -msgstr "" +msgstr "Presentación de %PRODUCTNAME %PRODUCTVERSION" #. BJiWE #: sd/inc/strings.hrc:197 msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_80" msgid "%PRODUCTNAME %PRODUCTVERSION Drawing" -msgstr "" +msgstr "Dibuxu de %PRODUCTNAME %PRODUCTVERSION" #. GhvSg #. HtmlExport @@ -1526,7 +1524,7 @@ #: sd/inc/strings.hrc:212 msgctxt "STR_HTMLEXP_DOWNLOAD" msgid "Download presentation" -msgstr "Descargar fonte de presentación" +msgstr "Baxar presentación" #. 22D9n #: sd/inc/strings.hrc:213 @@ -1580,7 +1578,7 @@ #: sd/inc/strings.hrc:221 msgctxt "STR_UNDO_VECTORIZE" msgid "Convert bitmap to polygon" -msgstr "Convertir bitmap en polígonu" +msgstr "Convertir mapa de bits en polígonu" #. ENANv #: sd/inc/strings.hrc:222 @@ -1602,10 +1600,9 @@ #. bACAt #: sd/inc/strings.hrc:225 -#, fuzzy msgctxt "STR_UNDO_GRAFFILTER" msgid "Image filter" -msgstr "Filtru d'imaxes" +msgstr "Peñera d'imáxenes" #. AGE8e #: sd/inc/strings.hrc:226 @@ -1814,14 +1811,13 @@ #: sd/inc/strings.hrc:259 msgctxt "STR_GRAPHICS_STYLE_FAMILY" msgid "Drawing Styles" -msgstr "" +msgstr "Estilos de dibuxu" #. tR4CL #: sd/inc/strings.hrc:260 -#, fuzzy msgctxt "STR_PRESENTATIONS_STYLE_FAMILY" msgid "Presentation Styles" -msgstr "Opciones de presentación" +msgstr "Estilos de presentación" #. oyUYa #: sd/inc/strings.hrc:261 @@ -1893,7 +1889,7 @@ #: sd/inc/strings.hrc:272 msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING" msgid "Please add Images to the Album." -msgstr "Amieste imaxes al álbum." +msgstr "Amiesta imáxenes al álbum." #. jbPEH #: sd/inc/strings.hrc:273 @@ -2670,10 +2666,9 @@ #. xxDXG #: sd/inc/strings.hrc:410 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY" msgid "Zoom:" -msgstr "Ampliación" +msgstr "Ampliación:" #. SvBeK #: sd/inc/strings.hrc:411 @@ -2690,10 +2685,9 @@ #. CSbCE #: sd/inc/strings.hrc:413 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY" msgid "Second color:" -msgstr "Segundu color" +msgstr "Segundu color:" #. cZUiD #: sd/inc/strings.hrc:414 @@ -3171,13 +3165,13 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:70 msgctxt "copydlg|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. AiFRo #: sd/uiconfig/sdraw/ui/copydlg.ui:89 msgctxt "copydlg|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. HhrrQ #: sd/uiconfig/sdraw/ui/copydlg.ui:139 @@ -3494,7 +3488,7 @@ #: sd/uiconfig/sdraw/ui/drawchardialog.ui:279 msgctxt "drawchardialog|RID_SVXPAGE_BKG" msgid "Highlighting" -msgstr "Resalte" +msgstr "Rescamplu" #. 7FuBt #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:8 @@ -3788,7 +3782,7 @@ #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:857 msgctxt "drawprtldialog|RID_SVXPAGE_BKG" msgid "Highlighting" -msgstr "Resalte" +msgstr "Rescamplu" #. w9EdD #: sd/uiconfig/sdraw/ui/insertlayer.ui:8 @@ -3824,7 +3818,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:188 msgctxt "insertlayer|extended_tip|textview" msgid "Enter a description of the layer." -msgstr "" +msgstr "Introduz una descripción pa la capa." #. g2K4k #: sd/uiconfig/sdraw/ui/insertlayer.ui:199 @@ -5496,13 +5490,13 @@ #: sd/uiconfig/simpress/ui/customslideshows.ui:73 msgctxt "customslideshows|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. BvVBK #: sd/uiconfig/simpress/ui/customslideshows.ui:137 msgctxt "customslideshows|extended_tip|customshowlist" msgid "Lists the custom slide shows that are available." -msgstr "Llista les presentaciones personalizaes que tán disponibles ." +msgstr "Amuesa les presentaciones personalizaes que tán disponibles." #. 3qYYK #: sd/uiconfig/simpress/ui/customslideshows.ui:174 @@ -5823,7 +5817,7 @@ #: sd/uiconfig/simpress/ui/dockinganimation.ui:345 msgctxt "dockinganimation|extended_tip|bitmap" msgid "Combines images into a single image." -msgstr "" +msgstr "Fusiona imáxenes nuna sola." #. TjdBX #: sd/uiconfig/simpress/ui/dockinganimation.ui:363 @@ -8318,13 +8312,13 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:307 msgctxt "photoalbum|liststore2" msgid "2 Images" -msgstr "2 imaxes" +msgstr "2 imáxenes" #. QviuN #: sd/uiconfig/simpress/ui/photoalbum.ui:308 msgctxt "photoalbum|liststore2" msgid "4 Images" -msgstr "4 imaxes" +msgstr "4 imáxenes" #. sEcMd #: sd/uiconfig/simpress/ui/photoalbum.ui:326 @@ -8354,10 +8348,9 @@ #. LAEo2 #: sd/uiconfig/simpress/ui/presentationdialog.ui:13 -#, fuzzy msgctxt "presentationdialog|PresentationDialog" msgid "Slide Show Settings" -msgstr "C~onfiguración de la presentación..." +msgstr "Axustes de la presentación" #. acmHw #: sd/uiconfig/simpress/ui/presentationdialog.ui:114 @@ -8706,7 +8699,6 @@ #. NsWL6 #: sd/uiconfig/simpress/ui/prntopts.ui:201 -#, fuzzy msgctxt "prntopts|label3" msgid "Page Options" msgstr "Opciones de la páxina" @@ -8905,7 +8897,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:216 msgctxt "publishingdialog|extended_tip|designsTreeview" msgid "Displays all existing designs." -msgstr "Amuesa tolos diseños." +msgstr "Amuesa tolos diseños esistentes." #. mEc7e #: sd/uiconfig/simpress/ui/publishingdialog.ui:245 @@ -9013,7 +9005,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:536 msgctxt "publishingdialog|extended_tip|chgDefaultRadiobutton" msgid "The slide transition depends on the timing that you set for each slide in the presentation. If you set a manual page transition, the HTML presentation introduces a new page by pressing any key from your keyboard." -msgstr "La transición de diapositives depende del intervalu que s'estableciera pa cada diapositiva de la presentación. Si configura una transición manual de les páxines, la presentación HTML amuesa una páxina nueva si púlsiase cualesquier tecla nel tecláu." +msgstr "La transición ente diapositives depende del intervalu que s'estableciera pa cada diapositiva de la presentación. Si configura una transición manual de les páxines, la presentación HTML amuesa una páxina nueva si se calca cualesquier tecla nel tecláu." #. vuFBo #: sd/uiconfig/simpress/ui/publishingdialog.ui:548 @@ -9153,7 +9145,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:972 msgctxt "publishingdialog|pngRadiobutton" msgid "_PNG" -msgstr "" +msgstr "_PNG" #. tBByA #: sd/uiconfig/simpress/ui/publishingdialog.ui:981 @@ -9165,7 +9157,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:993 msgctxt "publishingdialog|gifRadiobutton" msgid "_GIF" -msgstr "" +msgstr "_GIF" #. CjCTt #: sd/uiconfig/simpress/ui/publishingdialog.ui:1002 @@ -9177,7 +9169,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1014 msgctxt "publishingdialog|jpgRadiobutton" msgid "_JPG" -msgstr "" +msgstr "_JPG" #. bEwzb #: sd/uiconfig/simpress/ui/publishingdialog.ui:1023 @@ -9187,10 +9179,9 @@ #. Sahg3 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1044 -#, fuzzy msgctxt "publishingdialog|qualityTxtLabel" msgid "_Quality:" -msgstr "Calidá" +msgstr "_Calidá:" #. oYcCy #: sd/uiconfig/simpress/ui/publishingdialog.ui:1069 @@ -9215,7 +9206,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1132 msgctxt "publishingdialog|extended_tip|resolution1Radiobutton" msgid "Select the low resolution to keep the file size small, even for presentations with many slides." -msgstr "Escueya'l resolvimientu baxu pa caltener un tamañu de ficheru amenorgáu, inclusive en presentaciones con munches páxines." +msgstr "Escueyi la resolución baxa pa caltener un tamañu de ficheru amenorgáu, inclusive en presentaciones con munches diapositives." #. U7WAx #: sd/uiconfig/simpress/ui/publishingdialog.ui:1144 @@ -9227,7 +9218,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1153 msgctxt "publishingdialog|extended_tip|resolution2Radiobutton" msgid "Select the medium resolution for a medium-sized presentation." -msgstr "Escueya'l resolvimientu mediu pa una presentación de tamañu medianu." +msgstr "Escueyi la resolución media pa una presentación de tamañu mediu." #. irmFn #: sd/uiconfig/simpress/ui/publishingdialog.ui:1165 @@ -9239,7 +9230,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1174 msgctxt "publishingdialog|extended_tip|resolution3Radiobutton" msgid "Select a high resolution for a high quality slide display." -msgstr "Escueya un resolvimientu altu pa una presentación d'alta calidá." +msgstr "Escueyi una resolución alta pa una presentación de calidá alta." #. d6ACJ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1186 @@ -9654,13 +9645,13 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:269 msgctxt "sidebarslidebackground|masterslidebutton" msgid "Master View" -msgstr "" +msgstr "Vista de documentu principal" #. EVfaj #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:282 msgctxt "sidebarslidebackground|closemasterslide" msgid "Close Master View" -msgstr "Zarrar vista de documento maestru" +msgstr "Zarrar vista de documentu principal" #. SzLMK #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:313 @@ -9811,10 +9802,9 @@ #. zBuXF #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:186 -#, fuzzy msgctxt "slidedesigndialog|label1" msgid "Select a Slide Design" -msgstr "Seleicione un diseñu de diapositiva" +msgstr "Esbilla un diseñu pa la diapositiva" #. SRRvK #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:212 @@ -9845,7 +9835,7 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:121 msgctxt "slidetransitionspanel|extended_tip|transition_duration" msgid "Sets the duration of the slide transition." -msgstr "" +msgstr "Afita la duración de la transición ente diapositives." #. VrA9B #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:135 @@ -10116,7 +10106,7 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:631 msgctxt "templatedialog|dimensioning" msgid "Dimensioning" -msgstr "Dimensionamientu" +msgstr "Acotación" #. fcsTP #: sd/uiconfig/simpress/ui/templatedialog.ui:679 @@ -10146,4 +10136,4 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:871 msgctxt "templatedialog|background" msgid "Highlighting" -msgstr "Resalte" +msgstr "Rescamplu" diff -Nru libreoffice-7.4.6/translations/source/ast/sfx2/messages.po libreoffice-7.4.7/translations/source/ast/sfx2/messages.po --- libreoffice-7.4.6/translations/source/ast/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2022-12-12 16:12+0000\n" +"PO-Revision-Date: 2023-03-22 09:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1540149375.000000\n" #. bHbFE @@ -2106,7 +2106,7 @@ #: sfx2/inc/dinfdlg.hrc:38 msgctxt "SFX_CB_PROPERTY_STRINGARRAY" msgid "Email" -msgstr "Corréu electrónicu" +msgstr "Señes electróniques" #. xNvDx #: sfx2/inc/dinfdlg.hrc:39 diff -Nru libreoffice-7.4.6/translations/source/ast/shell/source/win32/shlxthandler/res.po libreoffice-7.4.7/translations/source/ast/shell/source/win32/shlxthandler/res.po --- libreoffice-7.4.6/translations/source/ast/shell/source/win32/shlxthandler/res.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/shell/source/win32/shlxthandler/res.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-08-10 17:35+0000\n" +"PO-Revision-Date: 2023-03-27 19:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1390258684.000000\n" #. nMHZG @@ -131,7 +131,7 @@ "%GRAPHICS%\n" "LngText.text" msgid "Images" -msgstr "Imaxes" +msgstr "Imáxenes" #. WePDJ #: shlxthdl.ulf diff -Nru libreoffice-7.4.6/translations/source/ast/starmath/messages.po libreoffice-7.4.7/translations/source/ast/starmath/messages.po --- libreoffice-7.4.6/translations/source/ast/starmath/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/starmath/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:51+0200\n" -"PO-Revision-Date: 2023-02-28 18:04+0000\n" +"PO-Revision-Date: 2023-04-04 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -38,7 +38,7 @@ #: starmath/inc/smmod.hrc:25 msgctxt "RID_UI_SYMBOL_NAMES" msgid "ALPHA" -msgstr "ALPHA" +msgstr "ALFA" #. U3CqD #: starmath/inc/smmod.hrc:26 @@ -56,13 +56,13 @@ #: starmath/inc/smmod.hrc:28 msgctxt "RID_UI_SYMBOL_NAMES" msgid "gamma" -msgstr "gamma" +msgstr "gama" #. 4Cw8A #: starmath/inc/smmod.hrc:29 msgctxt "RID_UI_SYMBOL_NAMES" msgid "GAMMA" -msgstr "GAMMA" +msgstr "GAMA" #. uMmke #: starmath/inc/smmod.hrc:30 @@ -80,13 +80,13 @@ #: starmath/inc/smmod.hrc:32 msgctxt "RID_UI_SYMBOL_NAMES" msgid "epsilon" -msgstr "epsilon" +msgstr "épsilon" #. jSZ7F #: starmath/inc/smmod.hrc:33 msgctxt "RID_UI_SYMBOL_NAMES" msgid "EPSILON" -msgstr "EPSILON" +msgstr "ÉPSILON" #. kRvNs #: starmath/inc/smmod.hrc:34 @@ -140,13 +140,13 @@ #: starmath/inc/smmod.hrc:42 msgctxt "RID_UI_SYMBOL_NAMES" msgid "kappa" -msgstr "kappa" +msgstr "kapa" #. PGGyZ #: starmath/inc/smmod.hrc:43 msgctxt "RID_UI_SYMBOL_NAMES" msgid "KAPPA" -msgstr "KAPPA" +msgstr "KAPA" #. QhGid #: starmath/inc/smmod.hrc:44 @@ -164,25 +164,25 @@ #: starmath/inc/smmod.hrc:46 msgctxt "RID_UI_SYMBOL_NAMES" msgid "mu" -msgstr "mu" +msgstr "mi" #. t4RFD #: starmath/inc/smmod.hrc:47 msgctxt "RID_UI_SYMBOL_NAMES" msgid "MU" -msgstr "MU" +msgstr "MI" #. DwBRA #: starmath/inc/smmod.hrc:48 msgctxt "RID_UI_SYMBOL_NAMES" msgid "nu" -msgstr "nu" +msgstr "ni" #. sDc6Z #: starmath/inc/smmod.hrc:49 msgctxt "RID_UI_SYMBOL_NAMES" msgid "NU" -msgstr "NU" +msgstr "NI" #. dMns2 #: starmath/inc/smmod.hrc:50 @@ -200,13 +200,13 @@ #: starmath/inc/smmod.hrc:52 msgctxt "RID_UI_SYMBOL_NAMES" msgid "omicron" -msgstr "omicron" +msgstr "ómicron" #. ZvPw7 #: starmath/inc/smmod.hrc:53 msgctxt "RID_UI_SYMBOL_NAMES" msgid "OMICRON" -msgstr "OMICRON" +msgstr "ÓMICRON" #. VmDhA #: starmath/inc/smmod.hrc:54 @@ -224,13 +224,13 @@ #: starmath/inc/smmod.hrc:56 msgctxt "RID_UI_SYMBOL_NAMES" msgid "rho" -msgstr "rho" +msgstr "ro" #. HjNFe #: starmath/inc/smmod.hrc:57 msgctxt "RID_UI_SYMBOL_NAMES" msgid "RHO" -msgstr "RHO" +msgstr "RO" #. 9Aa3V #: starmath/inc/smmod.hrc:58 @@ -260,7 +260,7 @@ #: starmath/inc/smmod.hrc:62 msgctxt "RID_UI_SYMBOL_NAMES" msgid "upsilon" -msgstr "ipsilon" +msgstr "ípsilon" #. ymFBb #: starmath/inc/smmod.hrc:63 @@ -1852,7 +1852,7 @@ #: starmath/inc/strings.hrc:258 msgctxt "RID_ALIGNLX_HELP" msgid "Align Left" -msgstr "Alliñar a la esquierda" +msgstr "Alliniar a la izquierda" #. BpAbA #: starmath/inc/strings.hrc:259 @@ -1864,19 +1864,19 @@ #: starmath/inc/strings.hrc:260 msgctxt "RID_ALIGNRX_HELP" msgid "Align Right" -msgstr "Alliñar a la drecha" +msgstr "Alliniar a la derecha" #. rBXQx #: starmath/inc/strings.hrc:261 msgctxt "RID_ALEPH_HELP" msgid "Aleph" -msgstr "Aleph" +msgstr "Alef" #. ixk6B #: starmath/inc/strings.hrc:262 msgctxt "RID_EMPTYSET_HELP" msgid "Empty Set" -msgstr "Conxuntu Baleru" +msgstr "Conxuntu baleru" #. fbVuw #: starmath/inc/strings.hrc:263 @@ -2780,7 +2780,7 @@ #: starmath/uiconfig/smath/ui/catalogdialog.ui:31 msgctxt "catalogdialog|extended_tip|edit" msgid "Click here to open the Edit Symbols dialog." -msgstr "Calque equí p'abrir el diálogu Editar símbolos." +msgstr "Calca equí p'abrir el diálogu Editar símbolos." #. F86fN #: starmath/uiconfig/smath/ui/catalogdialog.ui:43 @@ -2792,7 +2792,7 @@ #: starmath/uiconfig/smath/ui/catalogdialog.ui:52 msgctxt "catalogdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. zzUYb #: starmath/uiconfig/smath/ui/catalogdialog.ui:113 @@ -2870,7 +2870,7 @@ #: starmath/uiconfig/smath/ui/fontdialog.ui:230 msgctxt "fontdialog|extended_tip|italic" msgid "Check this box to assign the italic attribute to the font." -msgstr "Si calca esti caxellu de verificación, la fonte va representar en cursiva." +msgstr "Si calques esti caxellu de verificación, la fonte va representase en cursiva." #. uvvT5 #: starmath/uiconfig/smath/ui/fontdialog.ui:245 @@ -2949,24 +2949,21 @@ #. Dxb8V #: starmath/uiconfig/smath/ui/fontsizedialog.ui:293 -#, fuzzy msgctxt "fontsizedialog|label5" msgid "_Text:" -msgstr "_Testu" +msgstr "_Testu:" #. NydaV #: starmath/uiconfig/smath/ui/fontsizedialog.ui:307 -#, fuzzy msgctxt "fontsizedialog|label7" msgid "_Functions:" -msgstr "_Funciones" +msgstr "_Funciones:" #. nPkA2 #: starmath/uiconfig/smath/ui/fontsizedialog.ui:321 -#, fuzzy msgctxt "fontsizedialog|label6" msgid "_Indexes:" -msgstr "Índ_ices" +msgstr "Índ_ices:" #. 2bdgv #: starmath/uiconfig/smath/ui/fontsizedialog.ui:341 @@ -2982,7 +2979,6 @@ #. Gj8QQ #: starmath/uiconfig/smath/ui/fontsizedialog.ui:375 -#, fuzzy msgctxt "fontsizedialog|label1" msgid "Relative Sizes" msgstr "Tamaños relativos" @@ -3068,31 +3064,27 @@ #. EhoBp #: starmath/uiconfig/smath/ui/fonttypedialog.ui:207 -#, fuzzy msgctxt "fonttypedialog|label1" msgid "_Variables:" -msgstr "_Variables" +msgstr "_Variables:" #. BCVC9 #: starmath/uiconfig/smath/ui/fonttypedialog.ui:224 -#, fuzzy msgctxt "fonttypedialog|label2" msgid "_Functions:" -msgstr "_Funciones" +msgstr "_Funciones:" #. zFooF #: starmath/uiconfig/smath/ui/fonttypedialog.ui:241 -#, fuzzy msgctxt "fonttypedialog|label3" msgid "_Numbers:" -msgstr "_Númberos" +msgstr "_Númberos:" #. bYvD9 #: starmath/uiconfig/smath/ui/fonttypedialog.ui:258 -#, fuzzy msgctxt "fonttypedialog|label4" msgid "_Text:" -msgstr "_Testu" +msgstr "_Testu:" #. daPBN #: starmath/uiconfig/smath/ui/fonttypedialog.ui:278 diff -Nru libreoffice-7.4.6/translations/source/ast/svtools/messages.po libreoffice-7.4.7/translations/source/ast/svtools/messages.po --- libreoffice-7.4.6/translations/source/ast/svtools/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/svtools/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-12-10 11:04+0000\n" +"PO-Revision-Date: 2023-03-28 21:33+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: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542195213.000000\n" #. fLdeV @@ -1409,7 +1409,7 @@ #: include/svtools/strings.hrc:288 msgctxt "STR_DESCRIPTION_GLOBALDOC" msgid "StarWriter 4.0 / 5.0 Master Document" -msgstr "Documentu maestru de StarWriter 4.0 / 5.0" +msgstr "Documentu principal de StarWriter 4.0 / 5.0" #. 33Dez #: include/svtools/strings.hrc:289 @@ -1499,7 +1499,7 @@ #: include/svtools/strings.hrc:303 msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC" msgid "Master document" -msgstr "Documentu maestru" +msgstr "Documentu principal" #. FF4fa #: include/svtools/strings.hrc:304 @@ -1619,7 +1619,7 @@ #: include/svtools/strings.hrc:323 msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC" msgid "OpenOffice.org 1.0 Master Document" -msgstr "Documentu maestru d'OpenOffice.org 1.0" +msgstr "Documentu principal d'OpenOffice.org 1.0" #. t6krU #: include/svtools/strings.hrc:324 @@ -1649,7 +1649,7 @@ #: include/svtools/strings.hrc:328 msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC" msgid "OpenDocument Master Document" -msgstr "Documentu maestru OpenDocument" +msgstr "Documentu principal OpenDocument" #. ufLx7 #: include/svtools/strings.hrc:329 @@ -2562,7 +2562,7 @@ #: svtools/inc/langtab.hrc:29 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "[None]" -msgstr "[None]" +msgstr "[Nengún]" #. aUWzb #: svtools/inc/langtab.hrc:30 @@ -5352,7 +5352,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:663 msgctxt "graphicexport|extended_tip|binarycb" msgid "Exports the file in binary format. The resulting file is smaller than a text file." -msgstr "Esportar el ficheru en formatu binariu. El ficheru resultante ye mas pequeñu que un ficheru de testu" +msgstr "Esporta'l ficheru en formatu binariu. El ficheru resultante ye más pequeñu qu'un ficheru de testu." #. 8cZsH #: svtools/uiconfig/ui/graphicexport.ui:674 diff -Nru libreoffice-7.4.6/translations/source/ast/svx/messages.po libreoffice-7.4.7/translations/source/ast/svx/messages.po --- libreoffice-7.4.6/translations/source/ast/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-03-02 16:09+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+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: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542022499.000000\n" #. 3GkZj @@ -428,7 +428,7 @@ #: include/svx/strings.hrc:93 msgctxt "STR_ObjNamePluralGRAF" msgid "Images" -msgstr "Imaxes" +msgstr "Imáxenes" #. E9w8q #: include/svx/strings.hrc:94 @@ -440,7 +440,7 @@ #: include/svx/strings.hrc:95 msgctxt "STR_ObjNamePluralGRAFLNK" msgid "Linked images" -msgstr "Enllaces enllazaes" +msgstr "Imáxenes enllazaes" #. wWACk #: include/svx/strings.hrc:96 @@ -518,25 +518,25 @@ #: include/svx/strings.hrc:108 msgctxt "STR_ObjNamePluralGRAFBMP" msgid "Images" -msgstr "Imaxes" +msgstr "Imáxenes" #. mjfjF #: include/svx/strings.hrc:109 msgctxt "STR_ObjNamePluralGRAFBMPTRANS" msgid "Images with transparency" -msgstr "Imaxes con tresparencia" +msgstr "Imáxenes con tresparencia" #. 8kaaN #: include/svx/strings.hrc:110 msgctxt "STR_ObjNamePluralGRAFBMPLNK" msgid "Linked images" -msgstr "" +msgstr "Imáxenes enllazaes" #. DKMiE #: include/svx/strings.hrc:111 msgctxt "STR_ObjNamePluralGRAFBMPTRANSLNK" msgid "Linked images with transparency" -msgstr "Imaxes enllazaes con tresparencia" +msgstr "Imáxenes enllazaes con tresparencia" #. aeEoK #: include/svx/strings.hrc:112 @@ -829,7 +829,7 @@ #: include/svx/strings.hrc:159 msgctxt "STR_SortShapes" msgid "Sort shapes" -msgstr "" +msgstr "Ordenar les formes" #. cALbH #: include/svx/strings.hrc:160 @@ -2945,7 +2945,7 @@ #: include/svx/strings.hrc:514 msgctxt "SIP_SA_GRAFGAMMA" msgid "Gamma" -msgstr "Gamma" +msgstr "Gama" #. 2ESVA #: include/svx/strings.hrc:515 @@ -3319,7 +3319,7 @@ #: include/svx/strings.hrc:579 msgctxt "RID_SVXSTR_COLOR_RED" msgid "Red" -msgstr "Coloráu" +msgstr "Bermeyu" #. 7xMrN #: include/svx/strings.hrc:580 @@ -3922,7 +3922,7 @@ #: include/svx/strings.hrc:684 msgctxt "RID_SVXSTR_TBLAFMT_RED" msgid "Red" -msgstr "Coloráu" +msgstr "Bermeyu" #. GsAVb #: include/svx/strings.hrc:685 @@ -5560,7 +5560,7 @@ #: include/svx/strings.hrc:985 msgctxt "RID_SVXSTR_LEND20" msgid "Dimension Line Arrow" -msgstr "" +msgstr "Flecha de la llinia de cota" #. epSjr #. To translators: this is an arrow head style @@ -5862,7 +5862,7 @@ #: include/svx/strings.hrc:1052 msgctxt "RID_GALLERYSTR_THEME_PHOTOS" msgid "Images" -msgstr "Imaxes" +msgstr "Imáxenes" #. sqh2w #: include/svx/strings.hrc:1053 @@ -6221,10 +6221,9 @@ #. uDT6G #: include/svx/strings.hrc:1115 -#, fuzzy msgctxt "RID_SVXSTR_BY_AUTHOR" msgid "By author" -msgstr "Por autor" +msgstr "Per autor" #. q2Le9 #: include/svx/strings.hrc:1116 @@ -6814,7 +6813,7 @@ #: include/svx/strings.hrc:1222 msgctxt "RID_STR_PROPTITLE_COMBOBOX" msgid "Combo Box" -msgstr "Campu combináu" +msgstr "Caxa combinada" #. WiNUf #: include/svx/strings.hrc:1223 @@ -7950,7 +7949,7 @@ #: include/svx/strings.hrc:1425 msgctxt "RID_SVXSTR_UNDO_GRAFRED" msgid "Red" -msgstr "Coloráu" +msgstr "Bermeyu" #. CiQvY #: include/svx/strings.hrc:1426 @@ -7980,7 +7979,7 @@ #: include/svx/strings.hrc:1430 msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA" msgid "Gamma" -msgstr "Gamma" +msgstr "Gama" #. ernMB #: include/svx/strings.hrc:1431 @@ -8118,7 +8117,7 @@ #: include/svx/strings.hrc:1454 msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR" msgid "Mirrored" -msgstr "Espeyau" +msgstr "Espeyáu" #. dcvEJ #: include/svx/strings.hrc:1455 @@ -10850,7 +10849,7 @@ #: svx/inc/fmstring.hrc:38 msgctxt "RID_RSC_SQL_INTERNATIONAL" msgid "Average" -msgstr "Promediu" +msgstr "Permediu" #. cTfDS #: svx/inc/fmstring.hrc:39 @@ -13037,7 +13036,7 @@ #, fuzzy msgctxt "acceptrejectchangesdialog|writersort" msgid "Sort By" -msgstr "Ordenar por" +msgstr "Ordenar per" #. EYaEE #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:173 @@ -13086,27 +13085,25 @@ #: svx/uiconfig/ui/addconditiondialog.ui:8 msgctxt "addconditiondialog|AddConditionDialog" msgid "Add Condition" -msgstr "" +msgstr "Amestar una condición" #. zVZ7P #: svx/uiconfig/ui/addconditiondialog.ui:88 -#, fuzzy msgctxt "addconditiondialog|label1" msgid "_Condition:" -msgstr "_Condición" +msgstr "_Condición:" #. CBWg9 #: svx/uiconfig/ui/addconditiondialog.ui:114 msgctxt "addconditiondialog|extended_tip|condition" msgid "Enter a condition." -msgstr "" +msgstr "Introduz una condición." #. GztAA #: svx/uiconfig/ui/addconditiondialog.ui:144 -#, fuzzy msgctxt "addconditiondialog|label2" msgid "_Result:" -msgstr "Resultáu" +msgstr "_Resultáu:" #. 2aknP #: svx/uiconfig/ui/addconditiondialog.ui:156 @@ -14222,7 +14219,7 @@ #: svx/uiconfig/ui/compressgraphicdialog.ui:144 msgctxt "compressgraphicdialog|radio-jpeg" msgid "JPEG Quality" -msgstr "" +msgstr "Calidá JPEG" #. JwCYu #: svx/uiconfig/ui/compressgraphicdialog.ui:148 @@ -15556,10 +15553,9 @@ #. Qkzsq #: svx/uiconfig/ui/docking3deffects.ui:2344 -#, fuzzy msgctxt "docking3deffects|assign|tooltip_text" msgid "Assign" -msgstr "Asignar" +msgstr "Atribuyir" #. cjrJ9 #: svx/uiconfig/ui/docking3deffects.ui:2358 @@ -15985,7 +15981,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:221 msgctxt "dockingfontwork|right|tooltip_text" msgid "Align Right" -msgstr "Alliñar a la drecha" +msgstr "Alliniar a la derecha" #. 5HCvt #: svx/uiconfig/ui/dockingfontwork.ui:227 @@ -17208,10 +17204,9 @@ #. qmc4k #: svx/uiconfig/ui/floatingcontour.ui:412 -#, fuzzy msgctxt "floatingcontour|TBI_REDO" msgid "Redo" -msgstr "Bermeyu" +msgstr "Refacer" #. B2hrL #: svx/uiconfig/ui/floatingcontour.ui:416 @@ -17483,7 +17478,7 @@ #: svx/uiconfig/ui/functionmenu.ui:12 msgctxt "functionmenu|avg" msgid "Average" -msgstr "Promediu" +msgstr "Permediu" #. FomTX #: svx/uiconfig/ui/functionmenu.ui:20 @@ -17860,10 +17855,9 @@ #. UnkbT #: svx/uiconfig/ui/imapdialog.ui:377 -#, fuzzy msgctxt "imapdialog|TBI_REDO" msgid "Redo" -msgstr "Bermeyu" +msgstr "Refacer" #. bc2XY #: svx/uiconfig/ui/imapdialog.ui:389 @@ -18306,7 +18300,7 @@ #: svx/uiconfig/ui/optgridpage.ui:388 msgctxt "optgridpage|label3" msgid "Subdivision" -msgstr "Subdivisión" +msgstr "Sodivisión" #. Bk6ie #: svx/uiconfig/ui/optgridpage.ui:430 @@ -20266,10 +20260,9 @@ #. 8sKCs #: svx/uiconfig/ui/stylemenu.ui:20 -#, fuzzy msgctxt "stylemenu|edit" msgid "Edit Style..." -msgstr "Editar estilos..." +msgstr "Editar l'estilu..." #. nQGet #: svx/uiconfig/ui/surfacewindow.ui:43 @@ -20363,7 +20356,7 @@ #: svx/uiconfig/ui/textcharacterspacingcontrol.ui:188 msgctxt "textcharacterspacingcontrol|label2" msgid "Custom Value" -msgstr "" +msgstr "Valor personalizáu" #. dmyBS #: svx/uiconfig/ui/textcontrolchardialog.ui:8 diff -Nru libreoffice-7.4.6/translations/source/ast/sw/messages.po libreoffice-7.4.7/translations/source/ast/sw/messages.po --- libreoffice-7.4.6/translations/source/ast/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-24 06:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -383,10 +383,9 @@ #. ZnprF #: sw/inc/cnttab.hrc:29 -#, fuzzy msgctxt "RES_SRCTYPES" msgid "%PRODUCTNAME Math" -msgstr "%PRODUCTNAME %s" +msgstr "Math de %PRODUCTNAME" #. wg2Rx #: sw/inc/cnttab.hrc:30 @@ -399,14 +398,13 @@ #: sw/inc/cnttab.hrc:31 msgctxt "RES_SRCTYPES" msgid "%PRODUCTNAME Calc" -msgstr "%PRODUCTNAME Calc" +msgstr "Calc de %PRODUCTNAME" #. Ybz27 #: sw/inc/cnttab.hrc:32 -#, fuzzy msgctxt "RES_SRCTYPES" msgid "%PRODUCTNAME Draw/%PRODUCTNAME Impress" -msgstr "%PRODUCTNAME Draw/%PRODUCTNAME Impress" +msgstr "Draw/Impress de %PRODUCTNAME" #. ZDymA #: sw/inc/cnttab.hrc:33 @@ -691,13 +689,13 @@ #: sw/inc/inspectorproperties.hrc:31 msgctxt "RID_CHAR_DIRECTFORMAT" msgid "Character Direct Formatting" -msgstr "" +msgstr "Formatu direutu de caráuter" #. fYAUc #: sw/inc/inspectorproperties.hrc:32 msgctxt "RID_PARA_DIRECTFORMAT" msgid "Paragraph Direct Formatting" -msgstr "" +msgstr "Formatu direutu de párrafu" #. YUbUQ #. Format names @@ -2262,7 +2260,7 @@ #: sw/inc/pageformatpanel.hrc:35 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "Mirrored" -msgstr "" +msgstr "Espeyáu" #. J9o3y #: sw/inc/pageformatpanel.hrc:41 @@ -2302,7 +2300,7 @@ #: sw/inc/pageformatpanel.hrc:51 msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM" msgid "Mirrored" -msgstr "" +msgstr "Espeyáu" #. qGjWe #. Dialog buttons @@ -3397,31 +3395,31 @@ #: sw/inc/strings.hrc:215 msgctxt "STR_POOLNUMRULE_NUM1" msgid "Numbering 123" -msgstr "" +msgstr "Numberación 123" #. AW8tm #: sw/inc/strings.hrc:216 msgctxt "STR_POOLNUMRULE_NUM2" msgid "Numbering ABC" -msgstr "" +msgstr "Numberación ABC" #. k2FEN #: sw/inc/strings.hrc:217 msgctxt "STR_POOLNUMRULE_NUM3" msgid "Numbering abc" -msgstr "" +msgstr "Numberación abc" #. 4Cgku #: sw/inc/strings.hrc:218 msgctxt "STR_POOLNUMRULE_NUM4" msgid "Numbering IVX" -msgstr "" +msgstr "Numberación IVX" #. TgZ6E #: sw/inc/strings.hrc:219 msgctxt "STR_POOLNUMRULE_NUM5" msgid "Numbering ivx" -msgstr "" +msgstr "Numberación ivx" #. M3j9C #. Bullet \u2022 @@ -3497,10 +3495,9 @@ #. fCbrD #: sw/inc/strings.hrc:238 -#, fuzzy msgctxt "STR_PARAGRAPHSTYLEFAMILY" msgid "Paragraph Styles" -msgstr "Estilos de _párrafu" +msgstr "Estilos de párrafu" #. D9yAi #: sw/inc/strings.hrc:239 @@ -3510,31 +3507,27 @@ #. vpotA #: sw/inc/strings.hrc:240 -#, fuzzy msgctxt "STR_FRAMESTYLEFAMILY" msgid "Frame Styles" -msgstr "Estilu del marcu" +msgstr "Estilos de marcu" #. KJ9Ct #: sw/inc/strings.hrc:241 -#, fuzzy msgctxt "STR_PAGESTYLEFAMILY" msgid "Page Styles" -msgstr "Estilu de páxina" +msgstr "Estilos de páxina" #. StGfs #: sw/inc/strings.hrc:242 -#, fuzzy msgctxt "STR_LISTSTYLEFAMILY" msgid "List Styles" msgstr "Estilos de llista" #. uYnHh #: sw/inc/strings.hrc:243 -#, fuzzy msgctxt "STR_TABLESTYLEFAMILY" msgid "Table Styles" -msgstr "Estilu de páxina" +msgstr "Estilos de páxina" #. 6VBtB #: sw/inc/strings.hrc:244 @@ -3576,7 +3569,7 @@ #: sw/inc/strings.hrc:251 msgctxt "STR_LOAD_GLOBAL_DOC" msgid "Name and Path of Master Document" -msgstr "Nome y camín del documentu maestru" +msgstr "Nome y camín del documentu principal" #. SSL5h #: sw/inc/strings.hrc:252 @@ -3847,7 +3840,7 @@ #: sw/inc/strings.hrc:297 msgctxt "STR_CTL_FONT" msgid "CTL text: " -msgstr "" +msgstr "Testu CTL: " #. GC6Rd #: sw/inc/strings.hrc:298 @@ -3957,7 +3950,7 @@ #: sw/inc/strings.hrc:322 msgctxt "STR_DEL_AUTOFORMAT_MSG" msgid "The following AutoFormat entry will be deleted:" -msgstr "La siguiente entrada Autoformatu será esborrada:" +msgstr "La siguiente entrada de formatu automáticu va desaniciase:" #. 7KuSQ #: sw/inc/strings.hrc:323 @@ -4081,10 +4074,9 @@ #. gEGv8 #: sw/inc/strings.hrc:342 -#, fuzzy msgctxt "STR_CAPTION_GRAPHIC" msgid "%PRODUCTNAME Writer Image" -msgstr "Marcu de %PRODUCTNAME Writer" +msgstr "Imaxe de Writer de %PRODUCTNAME" #. k8kLw #: sw/inc/strings.hrc:343 @@ -6652,7 +6644,7 @@ #: sw/inc/strings.hrc:779 msgctxt "STR_AUTH_FIELD_ADDRESS" msgid "Address" -msgstr "Direición" +msgstr "Señes" #. DquVQ #: sw/inc/strings.hrc:780 @@ -7411,7 +7403,7 @@ #: sw/inc/strings.hrc:919 msgctxt "STR_SEQFLD" msgid "Number range" -msgstr "Rangu númberos" +msgstr "Intervalu numbéricu" #. ACE5s #: sw/inc/strings.hrc:920 @@ -7454,13 +7446,13 @@ #: sw/inc/strings.hrc:927 msgctxt "STR_SETREFFLD" msgid "Set Reference" -msgstr "Afitar Referencia" +msgstr "Afitar referencia" #. FJ2X8 #: sw/inc/strings.hrc:928 msgctxt "STR_GETREFFLD" msgid "Insert Reference" -msgstr "Inxertar Referencia" +msgstr "Inxertar referencia" #. sztLS #. range database @@ -7562,13 +7554,13 @@ #: sw/inc/strings.hrc:950 msgctxt "FLD_TIME_STD" msgid "Time" -msgstr "Tiempu" +msgstr "Hora" #. 6dxVs #: sw/inc/strings.hrc:951 msgctxt "FLD_TIME_FIX" msgid "Time (fixed)" -msgstr "Tiempu (fixu)" +msgstr "Hora (fixada)" #. U3SW8 #. SubCmd Statistic @@ -7618,13 +7610,13 @@ #: sw/inc/strings.hrc:961 msgctxt "FMT_DDE_HOT" msgid "DDE automatic" -msgstr "DDE Automáticu" +msgstr "DDE automáticu" #. xPP2E #: sw/inc/strings.hrc:962 msgctxt "FMT_DDE_NORMAL" msgid "DDE manual" -msgstr "DDE Manual" +msgstr "DDE manual" #. spdXd #: sw/inc/strings.hrc:963 @@ -7699,13 +7691,13 @@ #: sw/inc/strings.hrc:978 msgctxt "FLD_EU_TELPRIV" msgid "Tel. (Home)" -msgstr "Tel. (Llar)" +msgstr "Tfnu. (llar)" #. JBZyj #: sw/inc/strings.hrc:979 msgctxt "FLD_EU_TELFIRMA" msgid "Tel. (Work)" -msgstr "Tel. (Trabayu)" +msgstr "Tfnu. (trabayu)" #. 5EmGH #: sw/inc/strings.hrc:980 @@ -7717,7 +7709,7 @@ #: sw/inc/strings.hrc:981 msgctxt "FLD_EU_EMAIL" msgid "Email" -msgstr "Corréu electrónicu" +msgstr "Señes electróniques" #. 6GBRm #: sw/inc/strings.hrc:982 @@ -7769,7 +7761,7 @@ #: sw/inc/strings.hrc:993 msgctxt "FMT_FF_UI_NAME" msgid "Template name" -msgstr "" +msgstr "Nome de la plantía" #. ANM2H #: sw/inc/strings.hrc:994 @@ -7811,25 +7803,25 @@ #: sw/inc/strings.hrc:1005 msgctxt "FMT_NUM_ABC" msgid "A B C" -msgstr "" +msgstr "A B C" #. jm7G7 #: sw/inc/strings.hrc:1006 msgctxt "FMT_NUM_SABC" msgid "a b c" -msgstr "" +msgstr "a b c" #. ETgy7 #: sw/inc/strings.hrc:1007 msgctxt "FMT_NUM_ABC_N" msgid "A .. AA .. AAA" -msgstr "" +msgstr "A .. AA .. AAA" #. m84Fb #: sw/inc/strings.hrc:1008 msgctxt "FMT_NUM_SABC_N" msgid "a .. aa .. aaa" -msgstr "" +msgstr "a .. aa .. aaa" #. d9YtB #: sw/inc/strings.hrc:1009 @@ -7853,7 +7845,7 @@ #: sw/inc/strings.hrc:1012 msgctxt "FMT_NUM_PAGEDESC" msgid "As Page Style" -msgstr "Cómo Estilu Páxina" +msgstr "Como l'estilu de páxina" #. xBKwZ #: sw/inc/strings.hrc:1013 @@ -8384,7 +8376,7 @@ #: sw/inc/strings.hrc:1120 msgctxt "STR_FRM_MINHEIGHT" msgid "Min. height:" -msgstr "" +msgstr "Altor mínimu:" #. kLiYd #: sw/inc/strings.hrc:1121 @@ -9376,7 +9368,7 @@ #: sw/inc/strings.hrc:1285 msgctxt "STR_REDLINE_TABLECHG" msgid "Table Changes" -msgstr "Camudamientu de tabla" +msgstr "Camudamientos na tabla" #. PzfQF #: sw/inc/strings.hrc:1286 @@ -9742,7 +9734,7 @@ #: sw/inc/strings.hrc:1355 msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE" msgid "%PRODUCTNAME %PRODUCTVERSION Master Document" -msgstr "Documentu maestru de %PRODUCTNAME %PRODUCTVERSION" +msgstr "Documentu principal de %PRODUCTNAME %PRODUCTVERSION" #. kWe9j #: sw/inc/strings.hrc:1357 @@ -10169,17 +10161,15 @@ #. Hzt7q #: sw/inc/utlui.hrc:37 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Automatic *bold*" msgstr "*Negrina* automática" #. oMfhs #: sw/inc/utlui.hrc:38 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Replace 1/2 ... with ½ ..." -msgstr "Reemplazar 1/2 ... con ½ ..." +msgstr "Trocar 1/2 ... con ½ ..." #. UCK6y #: sw/inc/utlui.hrc:39 @@ -10951,13 +10941,13 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:39 msgctxt "autoformattable|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. V6Tpf #: sw/uiconfig/swriter/ui/autoformattable.ui:60 msgctxt "autoformattable|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. NTY8D #: sw/uiconfig/swriter/ui/autoformattable.ui:131 @@ -12109,7 +12099,7 @@ #: sw/uiconfig/swriter/ui/characterproperties.ui:399 msgctxt "characterproperties|background" msgid "Highlighting" -msgstr "Resalte" +msgstr "Rescamplu" #. fJhsz #: sw/uiconfig/swriter/ui/characterproperties.ui:447 @@ -12334,17 +12324,15 @@ #. fEm38 #: sw/uiconfig/swriter/ui/columnpage.ui:467 -#, fuzzy msgctxt "columnpage|lineheightft" msgid "H_eight:" -msgstr "Al_tor" +msgstr "A_ltor:" #. vKEyi #: sw/uiconfig/swriter/ui/columnpage.ui:481 -#, fuzzy msgctxt "columnpage|lineposft" msgid "_Position:" -msgstr "_Posición" +msgstr "_Posición:" #. yhqBe #: sw/uiconfig/swriter/ui/columnpage.ui:504 @@ -15497,10 +15485,9 @@ #. ZEhG2 #: sw/uiconfig/swriter/ui/footnotepage.ui:351 -#, fuzzy msgctxt "footnotepage|label5" msgid "Continuation Notice" -msgstr "Notes de continuación" +msgstr "Avisu de continuación" #. jHwyG #: sw/uiconfig/swriter/ui/footnotepage.ui:382 @@ -15560,7 +15547,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:510 msgctxt "footnotepage|extended_tip|FootnotePage" msgid "Specifies the formatting for footnotes." -msgstr "" +msgstr "Especifica'l formatu de les notes al pie." #. MV5EC #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:51 @@ -16613,32 +16600,31 @@ #: sw/uiconfig/swriter/ui/frmurlpage.ui:205 msgctxt "frmurlpage|server" msgid "_Server-side image map" -msgstr "Mapa d'imaxe nel llau del _sirvidor" +msgstr "Imaxe calcable nel llau del _sirvidor" #. b7kPv #: sw/uiconfig/swriter/ui/frmurlpage.ui:214 msgctxt "frmurlpage|extended_tip|server" msgid "Uses a server-side image map." -msgstr "Usa un mapa d'imaxe dende'l sirvidor." +msgstr "Usa una imaxe calcable del llau del sirvidor." #. MWxs6 #: sw/uiconfig/swriter/ui/frmurlpage.ui:225 msgctxt "frmurlpage|client" msgid "_Client-side image map" -msgstr "Mapa d'imaxe nel llau del _cliente" +msgstr "Imaxe calcable nel llau del _veceru" #. FxBbu #: sw/uiconfig/swriter/ui/frmurlpage.ui:234 msgctxt "frmurlpage|extended_tip|client" msgid "Uses the image map that you created for the selected object." -msgstr "Usa el mapa d'imaxe que se creó pal oxetu escoyíu." +msgstr "Usa la imaxe calcable que se creó pal oxetu esbilláu." #. Y49PK #: sw/uiconfig/swriter/ui/frmurlpage.ui:249 -#, fuzzy msgctxt "frmurlpage|label2" msgid "Image Map" -msgstr "Mapa d'imaxe" +msgstr "Imaxe calcable" #. SB3EF #: sw/uiconfig/swriter/ui/frmurlpage.ui:264 @@ -16656,14 +16642,13 @@ #: sw/uiconfig/swriter/ui/gotopagedialog.ui:74 msgctxt "gotopagedialog|page_count" msgid "of $1" -msgstr "" +msgstr "de $1" #. 9aib6 #: sw/uiconfig/swriter/ui/gotopagedialog.ui:101 -#, fuzzy msgctxt "gotopagedialog|page_label" msgid "Page:" -msgstr "Páxines" +msgstr "Páxina:" #. 6mAhi #: sw/uiconfig/swriter/ui/hfmenubutton.ui:24 @@ -17399,7 +17384,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:295 msgctxt "insertbookmark|condition" msgid "Condition" -msgstr "" +msgstr "Condición" #. ACcov #: sw/uiconfig/swriter/ui/insertbookmark.ui:313 @@ -17465,7 +17450,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:140 msgctxt "insertbreak|clearlb0" msgid "[None]" -msgstr "[Dengún]" +msgstr "[Nengún]" #. dGBC7 #: sw/uiconfig/swriter/ui/insertbreak.ui:141 @@ -18170,13 +18155,13 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:61 msgctxt "inserttable|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Guarda tolos cambeos y zarra'l diálogu." #. M4Bgm #: sw/uiconfig/swriter/ui/inserttable.ui:80 msgctxt "inserttable|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Zarra'l diálogu y escarta tolos cambeos." #. zNdax #: sw/uiconfig/swriter/ui/inserttable.ui:147 @@ -19222,7 +19207,7 @@ #, fuzzy msgctxt "managechangessidebar|writersort" msgid "Sort By" -msgstr "Ordenar por" +msgstr "Ordenar per" #. HTAC6 #: sw/uiconfig/swriter/ui/managechangessidebar.ui:81 @@ -19991,23 +19976,21 @@ #. FUKtT #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:215 -#, fuzzy msgctxt "mmresultemaildialog|liststore1" msgid "OpenDocument Text" -msgstr "Testu d'Open Office" +msgstr "Testu OpenDocument" #. MUQ4h #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:216 msgctxt "mmresultemaildialog|liststore1" msgid "Adobe PDF-Document" -msgstr "" +msgstr "Documentu PDF" #. LpGGz #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:217 -#, fuzzy msgctxt "mmresultemaildialog|liststore1" msgid "Microsoft Word Document" -msgstr "Documentu de Microsoft Word" +msgstr "Documentu de Word de Microsoft" #. xSrmF #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:218 @@ -21291,10 +21274,9 @@ #. W9iAY #: sw/uiconfig/swriter/ui/newuserindexdialog.ui:127 -#, fuzzy msgctxt "newuserindexdialog|label1" msgid "New User Index" -msgstr "Nuevu indez d'usuariu" +msgstr "Índiz d'usuariu nuevu" #. pyNZP #: sw/uiconfig/swriter/ui/notebookbar.ui:3159 @@ -21330,7 +21312,7 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:5728 msgctxt "WriterNotebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "_Inxertar" #. b4aNG #: sw/uiconfig/swriter/ui/notebookbar.ui:5833 @@ -24328,10 +24310,9 @@ #. JfB3i #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:114 -#, fuzzy msgctxt "outlinenumberingpage|label3" msgid "Paragraph style:" -msgstr "E_stilu de párrafu:" +msgstr "Estilu de párrafu:" #. FwDCj #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:131 @@ -24850,10 +24831,9 @@ #. VCbfs #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:146 -#, fuzzy msgctxt "pagemargincontrol|mirrored" msgid "Mirrored" -msgstr "Espeyau" +msgstr "Espeyáu" #. qrMpD #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:163 @@ -24883,10 +24863,9 @@ #. Yf68C #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:231 -#, fuzzy msgctxt "pagemargincontrol|mirroredL" msgid "Mirrored" -msgstr "Espeyau" +msgstr "Espeyáu" #. uzwhc #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:248 @@ -24990,14 +24969,13 @@ #: sw/uiconfig/swriter/ui/pagestylespanel.ui:103 msgctxt "pagestylespanel|liststorePageLayout" msgid "Right and left" -msgstr "Derecha y esquierda" +msgstr "Derecha ya izquierda" #. NzEGF #: sw/uiconfig/swriter/ui/pagestylespanel.ui:104 -#, fuzzy msgctxt "pagestylespanel|liststorePageLayout" msgid "Mirrored" -msgstr "Espeyau" +msgstr "Espeyáu" #. 7EUgo #: sw/uiconfig/swriter/ui/pagestylespanel.ui:105 @@ -28134,7 +28112,7 @@ #: sw/uiconfig/swriter/ui/templatedialog1.ui:412 msgctxt "templatedialog1|background" msgid "Highlighting" -msgstr "Resalte" +msgstr "Rescamplu" #. gurnZ #: sw/uiconfig/swriter/ui/templatedialog1.ui:460 @@ -28296,7 +28274,7 @@ #: sw/uiconfig/swriter/ui/templatedialog2.ui:599 msgctxt "templatedialog2|highlighting" msgid "Highlighting" -msgstr "Resalte" +msgstr "Rescamplu" #. 9gGCX #: sw/uiconfig/swriter/ui/templatedialog2.ui:647 @@ -28955,7 +28933,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:375 msgctxt "tocentriespage|alignright" msgid "Align right" -msgstr "Alliniar a la drecha" +msgstr "Alliniar a la derecha" #. oqERM #: sw/uiconfig/swriter/ui/tocentriespage.ui:383 @@ -28998,7 +28976,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:432 msgctxt "tocentriespage|entryoutlinelevelft" msgid "Evaluate up to level:" -msgstr "Calcular fasta'l nivel:" +msgstr "Calcular hasta'l nivel:" #. 5RNAC #: sw/uiconfig/swriter/ui/tocentriespage.ui:453 @@ -29224,7 +29202,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:914 msgctxt "tocentriespage|label14" msgid "Sort by" -msgstr "Ordenar por" +msgstr "Ordenar per" #. UUgEC #: sw/uiconfig/swriter/ui/tocentriespage.ui:948 @@ -29236,7 +29214,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:964 msgctxt "tocentriespage|extended_tip|key1lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Escueya la entrada pola que se deben ordenar les entraes bibliográfiques. Esta opción namái ta disponible si escuéyese'l botón d'opción Conteníu nel área Ordenar por." +msgstr "Esbilla la entrada pela que se deben ordenar les entraes bibliográfiques. Esta opción namái ta disponible si s'esbilla'l botón d'opción «Conteníu» na área «Ordenar per»." #. B7NqZ #: sw/uiconfig/swriter/ui/tocentriespage.ui:977 @@ -29254,13 +29232,13 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1005 msgctxt "tocentriespage|extended_tip|key2lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Escueya la entrada pola que se deben ordenar les entraes bibliográfiques. Esta opción namái ta disponible si escuéyese'l botón d'opción Conteníu nel área Ordenar por." +msgstr "Esbilla la entrada pela que se deben ordenar les entraes bibliográfiques. Esta opción namái ta disponible si s'esbilla'l botón d'opción «Conteníu» nel área «Ordenar per»." #. tfvwe #: sw/uiconfig/swriter/ui/tocentriespage.ui:1022 msgctxt "tocentriespage|extended_tip|key3lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Escueya la entrada pola que se deben ordenar les entraes bibliográfiques. Esta opción namái ta disponible si escuéyese'l botón d'opción Conteníu nel área Ordenar por." +msgstr "Esbilla la entrada pela que se deben ordenar les entraes bibliográfiques. Esta opción namái ta disponible si s'esbilla'l botón d'opción «Conteníu» nel área «Ordenar per»." #. 6GYwu #: sw/uiconfig/swriter/ui/tocentriespage.ui:1036 @@ -29476,10 +29454,9 @@ #. DGY52 #: sw/uiconfig/swriter/ui/tocindexpage.ui:271 -#, fuzzy msgctxt "tocindexpage|levelft" msgid "Evaluate up to level:" -msgstr "Evaluar fasta'l nivel" +msgstr "Calcular hasta'l nivel:" #. zaoBB #: sw/uiconfig/swriter/ui/tocindexpage.ui:290 @@ -29754,7 +29731,6 @@ #. 2M3ZW #: sw/uiconfig/swriter/ui/tocindexpage.ui:897 -#, fuzzy msgctxt "tocindexpage|label7" msgid "Formatting of the Entries" msgstr "Formatu de les entraes" diff -Nru libreoffice-7.4.6/translations/source/ast/swext/mediawiki/help.po libreoffice-7.4.7/translations/source/ast/swext/mediawiki/help.po --- libreoffice-7.4.6/translations/source/ast/swext/mediawiki/help.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/swext/mediawiki/help.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-05-03 12:41+0000\n" +"PO-Revision-Date: 2023-03-27 19:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542022500.000000\n" #. 7EFBE @@ -284,13 +284,12 @@ #. i7MPF #: wiki.xhp -#, fuzzy msgctxt "" "wiki.xhp\n" "par_id2564165\n" "help.text" msgid "MediaWiki server: Select the wiki." -msgstr "Sirvidor MediaWiki: Escueyi'l Wiki." +msgstr "Sirvidor MediaWiki: esbilla'l wiki." #. Vghfw #: wiki.xhp @@ -322,13 +321,12 @@ #. 6qSqt #: wiki.xhp -#, fuzzy msgctxt "" "wiki.xhp\n" "par_id452284\n" "help.text" msgid "Show in web browser: Check this box to open your system web browser and show the uploaded wiki page." -msgstr "Amuesa nel restolador d'internet: Revisa esta caxella p'abrir el restolador preseleicionada del sistema y amosar la páxina Wiki cargada." +msgstr "Amosar nel restolador d'internet: marca esti caxellu p'abrir el restolador preseleicionáu del sistema y amosar la páxina wiki cargada." #. Ehnz2 #: wiki.xhp @@ -597,7 +595,7 @@ "hd_id9405499\n" "help.text" msgid "Images" -msgstr "Imaxes" +msgstr "Imáxenes" #. G3qA6 #: wikiformats.xhp diff -Nru libreoffice-7.4.6/translations/source/ast/sysui/desktop/share.po libreoffice-7.4.7/translations/source/ast/sysui/desktop/share.po --- libreoffice-7.4.6/translations/source/ast/sysui/desktop/share.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/sysui/desktop/share.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-02-24 13:39+0000\n" -"Last-Translator: Xandru Martino Ruz \n" -"Language-Team: Asturian \n" +"PO-Revision-Date: 2023-04-07 19:34+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1462697563.000000\n" #. a9uCy @@ -41,7 +41,7 @@ "master-document\n" "LngText.text" msgid "OpenOffice.org 1.0 Master Document" -msgstr "Documentu maestru d'OpenOffice.org 1.0" +msgstr "Documentu principal d'OpenOffice.org 1.0" #. 8tGE4 #: documents.ulf @@ -113,7 +113,7 @@ "oasis-text\n" "LngText.text" msgid "OpenDocument Text" -msgstr "Testu d'Open Office" +msgstr "Testu OpenDocument" #. Tvbts #: documents.ulf @@ -122,7 +122,7 @@ "oasis-text-flat-xml\n" "LngText.text" msgid "OpenDocument Text (Flat XML)" -msgstr "Testu d'OpenDocument (XML planu)" +msgstr "Testu OpenDocument (XML planu)" #. 7rxHH #: documents.ulf @@ -131,7 +131,7 @@ "oasis-text-template\n" "LngText.text" msgid "OpenDocument Text Template" -msgstr "Plantía pa testu d'Open Office" +msgstr "Plantía pa testu OpenDocument" #. qGKKU #: documents.ulf @@ -140,7 +140,7 @@ "oasis-master-document\n" "LngText.text" msgid "OpenDocument Master Document" -msgstr "Documentu maestru d'OpenDocument" +msgstr "Documentu principal OpenDocument" #. LDcMd #: documents.ulf @@ -149,7 +149,7 @@ "oasis-master-document-template\n" "LngText.text" msgid "OpenDocument Master Document Template" -msgstr "Documentu maestru d'OpenDocument" +msgstr "Plantía pa documentu principal OpenDocument" #. xUvzk #: documents.ulf @@ -176,7 +176,7 @@ "oasis-presentation-flat-xml\n" "LngText.text" msgid "OpenDocument Presentation (Flat XML)" -msgstr "Presentación d'OpenDocument (XML planu)" +msgstr "Presentación OpenDocument (XML planu)" #. r5mkr #: documents.ulf @@ -185,7 +185,7 @@ "oasis-presentation-template\n" "LngText.text" msgid "OpenDocument Presentation Template" -msgstr "Plantía de presentación d'OpenDocument" +msgstr "Plantía pa presentación OpenDocument" #. ABKBq #: documents.ulf @@ -221,7 +221,7 @@ "oasis-spreadsheet\n" "LngText.text" msgid "OpenDocument Spreadsheet" -msgstr "Fueya de cálculu d'OpenDocument" +msgstr "Fueya de cálculu OpenDocument" #. U6S6A #: documents.ulf @@ -230,7 +230,7 @@ "oasis-spreadsheet-flat-xml\n" "LngText.text" msgid "OpenDocument Spreadsheet (Flat XML)" -msgstr "Fueya de cálculu d'OpenDocument (XML planu)" +msgstr "Fueya de cálculu OpenDocument (XML planu)" #. GRcE4 #: documents.ulf @@ -239,7 +239,7 @@ "oasis-spreadsheet-template\n" "LngText.text" msgid "OpenDocument Spreadsheet Template" -msgstr "Plantía de fueya de cálculu d'OpenDocument" +msgstr "Plantía pa fueya de cálculu OpenDocument" #. FBzW7 #: documents.ulf @@ -248,7 +248,7 @@ "oasis-database\n" "LngText.text" msgid "OpenDocument Database" -msgstr "Base de datos en formatu OpenDocument" +msgstr "Base de datos OpenDocument" #. PHjCX #: documents.ulf @@ -257,7 +257,7 @@ "oasis-web-template\n" "LngText.text" msgid "HTML Document Template" -msgstr "Plantía de documentu HTML" +msgstr "Plantía pa documentu HTML" #. z5v7A #: documents.ulf @@ -275,7 +275,7 @@ "ms-excel-sheet\n" "LngText.text" msgid "Microsoft Excel Worksheet" -msgstr "Fueya de cálculu de Microsoft Excel" +msgstr "Fueya de cálculu d'Excel de Microsoft" #. GFWsF #: documents.ulf @@ -284,7 +284,7 @@ "ms-powerpoint-presentation\n" "LngText.text" msgid "Microsoft PowerPoint Presentation" -msgstr "Presentación de Microsoft PowerPoint" +msgstr "Presentación de PowerPoint de Microsoft" #. sXwCV #: documents.ulf @@ -293,7 +293,7 @@ "ms-word-document\n" "LngText.text" msgid "Microsoft Word Document" -msgstr "Documentu de Microsoft Word" +msgstr "Documentu de Word de Microsoft" #. N9WPd #: documents.ulf @@ -302,7 +302,7 @@ "ms-word-document2\n" "LngText.text" msgid "Microsoft Word Document" -msgstr "Documentu de Microsoft Word" +msgstr "Documentu de Word de Microsoft" #. jtBEd #: documents.ulf @@ -311,7 +311,7 @@ "ms-excel-sheet-12\n" "LngText.text" msgid "Microsoft Excel Worksheet" -msgstr "Fueya de cálculu de Microsoft Excel" +msgstr "Fueya de cálculu d'Excel de Microsoft" #. YMdW5 #: documents.ulf @@ -320,7 +320,7 @@ "ms-excel-template-12\n" "LngText.text" msgid "Microsoft Excel Worksheet Template" -msgstr "Plantía de fueya de cálculu Microsoft Excel" +msgstr "Plantía pa fueya de cálculu d'Excel de Microsoft" #. kg6D4 #: documents.ulf @@ -329,7 +329,7 @@ "ms-powerpoint-presentation-12\n" "LngText.text" msgid "Microsoft PowerPoint Presentation" -msgstr "Presentación de Microsoft PowerPoint" +msgstr "Presentación de PowerPoint de Microsoft" #. 7TjD7 #: documents.ulf @@ -338,7 +338,7 @@ "ms-powerpoint-template-12\n" "LngText.text" msgid "Microsoft PowerPoint Presentation Template" -msgstr "Plantía de presentación de Microsoft PowerPoint" +msgstr "Plantía pa presentación de PowerPoint de Microsoft" #. 9YtZo #: documents.ulf @@ -347,7 +347,7 @@ "ms-word-document-12\n" "LngText.text" msgid "Microsoft Word Document" -msgstr "Documentu de Microsoft Word" +msgstr "Documentu de Word de Microsoft" #. PXrJC #: documents.ulf @@ -356,7 +356,7 @@ "ms-word-template-12\n" "LngText.text" msgid "Microsoft Word Document Template" -msgstr "Plantía de documentu de Microsoft Word" +msgstr "Plantía pa documentu de Word de Microsoft" #. EENV4 #: documents.ulf @@ -365,7 +365,7 @@ "openxmlformats-officedocument-presentationml-presentation\n" "LngText.text" msgid "Microsoft PowerPoint Presentation" -msgstr "Presentación de Microsoft PowerPoint" +msgstr "Presentación de PowerPoint de Microsoft" #. aBQW3 #: documents.ulf @@ -374,7 +374,7 @@ "openxmlformats-officedocument-presentationml-template\n" "LngText.text" msgid "Microsoft PowerPoint Presentation Template" -msgstr "Plantía de presentación de Microsoft PowerPoint" +msgstr "Plantía pa presentación de PowerPoint de Microsoft" #. CTtV4 #: documents.ulf @@ -383,7 +383,7 @@ "openxmlformats-officedocument-spreadsheetml-sheet\n" "LngText.text" msgid "Microsoft Excel Worksheet" -msgstr "Fueya de cálculu de Microsoft Excel" +msgstr "Fueya de cálculu d'Excel de Microsoft" #. Dk7Bj #: documents.ulf @@ -392,7 +392,7 @@ "openxmlformats-officedocument-spreadsheetml-template\n" "LngText.text" msgid "Microsoft Excel Worksheet Template" -msgstr "Plantía de fueya de cálculu Microsoft Excel" +msgstr "Plantía pa fueya de cálculu d'Excel de Microsoft" #. So2PB #: documents.ulf @@ -401,7 +401,7 @@ "openxmlformats-officedocument-wordprocessingml-document\n" "LngText.text" msgid "Microsoft Word Document" -msgstr "Documentu de Microsoft Word" +msgstr "Documentu de Word de Microsoft" #. gHPAp #: documents.ulf @@ -410,7 +410,7 @@ "openxmlformats-officedocument-wordprocessingml-template\n" "LngText.text" msgid "Microsoft Word Document Template" -msgstr "Plantía de documentu de Microsoft Word" +msgstr "Plantía pa documentu de Word de Microsoft" #. rJW59 #: documents.ulf @@ -419,7 +419,7 @@ "ms-excel-sheet-binary-12\n" "LngText.text" msgid "Microsoft Excel Worksheet" -msgstr "Fueya de cálculu de Microsoft Excel" +msgstr "Fueya de cálculu d'Excel de Microsoft" #. Bpj3J #: launcher_comment.ulf diff -Nru libreoffice-7.4.6/translations/source/ast/vcl/messages.po libreoffice-7.4.7/translations/source/ast/vcl/messages.po --- libreoffice-7.4.6/translations/source/ast/vcl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/vcl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-08-24 12:29+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1400,7 +1400,7 @@ #: vcl/inc/font/OpenTypeFeatureStrings.hrc:46 msgctxt "STR_FONT_FEATURE_ID_HIST" msgid "Historical Forms" -msgstr "" +msgstr "Formes históriques" #. N2fJw #: vcl/inc/font/OpenTypeFeatureStrings.hrc:47 @@ -1610,7 +1610,7 @@ #: vcl/inc/font/OpenTypeFeatureStrings.hrc:81 msgctxt "STR_FONT_FEATURE_ID_SMPL" msgid "Simplified Forms" -msgstr "" +msgstr "Formes simplificaes" #. 45i5z #: vcl/inc/font/OpenTypeFeatureStrings.hrc:82 @@ -1758,10 +1758,9 @@ #. zQA7A #: vcl/uiconfig/ui/editmenu.ui:12 -#, fuzzy msgctxt "editmenu|undo" msgid "_Undo" -msgstr "~Desfacer" +msgstr "_Desfacer" #. wVVXn #: vcl/uiconfig/ui/editmenu.ui:26 diff -Nru libreoffice-7.4.6/translations/source/ast/wizards/messages.po libreoffice-7.4.7/translations/source/ast/wizards/messages.po --- libreoffice-7.4.6/translations/source/ast/wizards/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/wizards/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-19 13:14+0100\n" -"PO-Revision-Date: 2022-07-06 16:24+0000\n" +"PO-Revision-Date: 2023-03-27 19:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516047326.000000\n" #. gbiMx @@ -1581,7 +1581,6 @@ #. KgwSV #: wizards/com/sun/star/wizards/common/strings.hrc:311 -#, fuzzy msgctxt "RID_AGENDAWIZARDDIALOG_START_91" msgid "Green" msgstr "Verde" @@ -1606,7 +1605,6 @@ #. AFeWr #: wizards/com/sun/star/wizards/common/strings.hrc:315 -#, fuzzy msgctxt "RID_AGENDAWIZARDDIALOG_START_95" msgid "Red" msgstr "Bermeyu" diff -Nru libreoffice-7.4.6/translations/source/ast/wizards/source/resources.po libreoffice-7.4.7/translations/source/ast/wizards/source/resources.po --- libreoffice-7.4.6/translations/source/ast/wizards/source/resources.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ast/wizards/source/resources.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-10 11:03+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516047327.000000\n" #. 8UKfi @@ -293,7 +293,7 @@ "RID_REPORT_13\n" "property.text" msgid "Choose layout" -msgstr "Composición" +msgstr "Escueyi la composición" #. 45SFZ #: resources_en_US.properties @@ -311,7 +311,7 @@ "RID_REPORT_15\n" "property.text" msgid "Layout of data" -msgstr "Diseñu de datos" +msgstr "Organización de datos" #. HhPzF #: resources_en_US.properties @@ -338,7 +338,7 @@ "RID_REPORT_20\n" "property.text" msgid "~Sort by" -msgstr "~Ordenar por" +msgstr "~Ordenar per" #. 8CX4A #: resources_en_US.properties @@ -2384,7 +2384,7 @@ "RID_FORM_33\n" "property.text" msgid "Align left" -msgstr "Alliñar a la esquierda" +msgstr "Alliniar a la izquierda" #. Qrt6U #: resources_en_US.properties @@ -2393,7 +2393,7 @@ "RID_FORM_34\n" "property.text" msgid "Align right" -msgstr "Alliñar a la drecha" +msgstr "Alliniar a la derecha" #. KNG6r #: resources_en_US.properties @@ -2919,7 +2919,7 @@ "RID_TABLE_24\n" "property.text" msgid "Field type" -msgstr "Tipu de campu" +msgstr "Triba de campu" #. S82Up #: resources_en_US.properties @@ -4322,7 +4322,7 @@ "CorrespondenceFields_17\n" "property.text" msgid "Email" -msgstr "Corréu electrónicu" +msgstr "Señes electróniques" #. w7uK5 #: resources_en_US.properties @@ -4458,7 +4458,7 @@ "CorrespondenceNoTextmark_0\n" "property.text" msgid "The bookmark 'Recipient' is missing." -msgstr "Falta'l marcador de 'Destitarariu'." +msgstr "Falta'l marcador «Destinatariu»." #. G6KuE #: resources_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/bg/basctl/messages.po libreoffice-7.4.7/translations/source/bg/basctl/messages.po --- libreoffice-7.4.6/translations/source/bg/basctl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/basctl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2022-07-08 10:43+0000\n" +"PO-Revision-Date: 2023-03-28 15:33+0000\n" "Last-Translator: Mihail Balabanov \n" -"Language-Team: Bulgarian \n" +"Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1554813050.000000\n" #. fniWp @@ -244,7 +244,7 @@ #: basctl/inc/strings.hrc:63 msgctxt "RID_STR_WATCHNAME" msgid "Watch" -msgstr "Следене" +msgstr "Наблюдение" #. 84TYn #: basctl/inc/strings.hrc:64 @@ -308,7 +308,7 @@ #: basctl/inc/strings.hrc:73 msgctxt "RID_STR_REMOVEWATCH" msgid "Watch:" -msgstr "Следене:" +msgstr "Наблюдение:" #. ndtng #: basctl/inc/strings.hrc:74 @@ -356,7 +356,7 @@ #: basctl/inc/strings.hrc:81 msgctxt "RID_STR_REMOVEWATCHTIP" msgid "Remove Watch" -msgstr "Премахване от списъка за следене" +msgstr "Премахване на наблюдение" #. oUqF6 #: basctl/inc/strings.hrc:82 diff -Nru libreoffice-7.4.6/translations/source/bg/dbaccess/messages.po libreoffice-7.4.7/translations/source/bg/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/bg/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/dbaccess/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2022-12-10 11:03+0000\n" +"PO-Revision-Date: 2023-03-28 15:33+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" "Language: bg\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562324222.000000\n" #. BiN6g @@ -1613,7 +1613,7 @@ #: dbaccess/inc/strings.hrc:280 msgctxt "STR_ERR_USE_CONNECT_TO" msgid "Please choose 'Connect to an existing database' to connect to an existing database instead." -msgstr "За да се свържете със съществуваща база от данни, изберете 'Свързване към съществуваща база от данни'." +msgstr "За да се свържете със съществуваща база от данни, изберете „Свързване със съществуваща база от данни“." #. PfAC6 #: dbaccess/inc/strings.hrc:281 diff -Nru libreoffice-7.4.6/translations/source/bg/extensions/messages.po libreoffice-7.4.7/translations/source/bg/extensions/messages.po --- libreoffice-7.4.6/translations/source/bg/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-05-10 13:19+0000\n" +"PO-Revision-Date: 2023-04-25 07:34+0000\n" "Last-Translator: Mihail Balabanov \n" -"Language-Team: Bulgarian \n" +"Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562351698.000000\n" #. cBx8W @@ -4420,7 +4420,7 @@ #: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:166 msgctxt "labelselectiondialog|noassignment" msgid "_No assignment" -msgstr "Без назначение" +msgstr "Без присвояване" #. 8EkFC #: extensions/uiconfig/spropctrlr/ui/multiline.ui:73 diff -Nru libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/sbasic/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/sbasic/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-10-04 19:51+0200\n" -"PO-Revision-Date: 2022-05-10 09:33+0000\n" +"PO-Revision-Date: 2023-03-29 03:34+0000\n" "Last-Translator: Mihail Balabanov \n" -"Language-Team: Bulgarian \n" +"Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1555443484.000000\n" #. 6Kkin @@ -446,7 +446,7 @@ "par_id3159158\n" "help.text" msgid "To remove the variable watch, select the variable in the Watch window, and then click on the Remove Watch icon." -msgstr "За да премахнете следенето на променлива, изберете я в прозореца Следене и щракнете върху иконата Премахване от списъка за следене." +msgstr "За да премахнете наблюдението на променлива, изберете я в прозореца „Наблюдение“ и щракнете върху иконата Премахване на наблюдение." #. kfzBw #: 11090000.xhp diff -Nru libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/sbasic/shared/03.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/sbasic/shared/03.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-24 09:34+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" "Language: bg\n" @@ -9176,7 +9176,7 @@ "tit\n" "help.text" msgid "SFDialogs.Dialog service" -msgstr "" +msgstr "Услуга SFDialogs.Dialog" #. LzQoS #: sf_dialog.xhp @@ -9203,7 +9203,7 @@ "par_id831598110550771\n" "help.text" msgid "A dialog box can be displayed in modal or in non-modal modes." -msgstr "" +msgstr "Диалоговите прозорци могат да се показват в модален или немодален режим." #. LVjBj #: sf_dialog.xhp @@ -9212,7 +9212,7 @@ "par_id221598110444025\n" "help.text" msgid "In modal mode, the box is displayed and the execution of the macro process is suspended until one of the OK or Cancel buttons is pressed. In the meantime, user actions executed on the box can trigger specific actions." -msgstr "" +msgstr "В модален режим прозорецът се показва и изпълнението на макропроцеса се преустановява, докато бъде натиснат някой от бутоните OK или „Отказ“. Междувременно потребителските действия, изпълнени върху прозореца, може да активират определени действия." #. FFTSj #: sf_dialog.xhp @@ -15305,7 +15305,7 @@ "par_id141613001281573\n" "help.text" msgid "To learn more about the names of character sets, visit IANA's Character Set page. Beware that %PRODUCTNAME does not implement all existing character sets." -msgstr "" +msgstr "За да узнаете повече за имената на знаковите набори, посетете страницата Character Sets на IANA. Имайте предвид, че %PRODUCTNAME не поддържа всички съществуващи знакови набори." #. DVGxr #: sf_filesystem.xhp @@ -19859,7 +19859,7 @@ "par_id141613001281573\n" "help.text" msgid "To learn more about the names of character sets, visit IANA's Character Set page. Beware that %PRODUCTNAME does not implement all existing character sets." -msgstr "" +msgstr "За да узнаете повече за имената на знаковите набори, посетете страницата Character Sets на IANA. Имайте предвид, че %PRODUCTNAME не поддържа всички съществуващи знакови набори." #. 3ApdD #: sf_l10n.xhp @@ -27050,7 +27050,7 @@ "par_id141613001281573\n" "help.text" msgid "To learn more about the names of character sets, visit IANA's Character Set page. Beware that %PRODUCTNAME does not implement all existing character sets." -msgstr "" +msgstr "За да узнаете повече за имената на знаковите набори, посетете страницата Character Sets на IANA. Имайте предвид, че %PRODUCTNAME не поддържа всички съществуващи знакови набори." #. hKJkD #: sf_textstream.xhp diff -Nru libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/sbasic/shared.po libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/sbasic/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/sbasic/shared.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-09 20:33+0000\n" +"PO-Revision-Date: 2023-03-29 03:34+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" "Language: bg\n" @@ -3560,7 +3560,7 @@ "par_id3154686\n" "help.text" msgid "The Watch window (observer) is located below the Editor window at the left, and displays the contents of variables or arrays during a single step process." -msgstr "Прозорецът Следене се намира вляво под редактора и показва съдържанието на променливи и масиви при постъпково изпълнение на програмата." +msgstr "Прозорецът „Наблюдение“ се намира вляво под редактора и показва съдържанието на променливи и масиви при постъпково изпълнение на програмата." #. NSnQN #: 01030100.xhp @@ -3812,7 +3812,7 @@ "bm_id3153344\n" "help.text" msgid "debugging Basic programsvariables; observing valueswatching variablesrun-time errors in Basicerror codes in BasicbreakpointsCall Stack window" -msgstr "трасиране на програми на Basicпроменливи; следене на стойностиследене на променливигрешки при изпълнение в Basicкодове за грешки в Basicточки на прекъсванестек, прозорец за" +msgstr "трасиране на програми на Basicпроменливи; наблюдаване на стойностинаблюдение на променливигрешки при изпълнение в Basicкодове за грешки в Basicточки на прекъсванестек, прозорец за" #. kS45y #: 01030300.xhp @@ -3947,7 +3947,7 @@ "par_id3153368\n" "help.text" msgid "You can monitor the values of a variable by adding it to the Watch window. To add a variable to the list of watched variables, type the variable name in the Watch text box and press Enter." -msgstr "Можете да наблюдавате стойността на променлива, като я добавите в прозореца Следене. За да добавите променлива към списъка за следене, въведете името й в полето Следене и натиснете Enter." +msgstr "Можете да следите стойностите на променлива, като я добавите в прозореца Наблюдение. За да добавите променлива към списъка с наблюдавани променливи, въведете името ѝ в полето Наблюдение и натиснете Enter." #. jXfHR #: 01030300.xhp @@ -3965,7 +3965,7 @@ "par_id3145272\n" "help.text" msgid "You can also include arrays in the Watch window. If you enter the name of an array variable without an index value in the Watch text box, the content of the entire array is displayed." -msgstr "В прозореца за следене можете да включвате и масиви. Ако в текстовото поле Следене въведете име на променлива – масив без индекс, ще се покаже съдържанието на целия масив." +msgstr "В прозореца „Наблюдение“ можете да включвате и масиви. Ако в текстовото поле „Наблюдение“ въведете име на променлива масив без индекс, ще се покаже съдържанието на целия масив." #. vMioe #: 01030300.xhp @@ -5576,7 +5576,7 @@ "tit\n" "help.text" msgid "Watch Window" -msgstr "Прозорец за следене" +msgstr "Прозорец „Наблюдение“" #. FgKHh #: 01050100.xhp @@ -5585,7 +5585,7 @@ "hd_id3149457\n" "help.text" msgid "Watch Window" -msgstr "Прозорец за следене" +msgstr "Прозорец „Наблюдение“" #. sCkDE #: 01050100.xhp @@ -5594,7 +5594,7 @@ "par_id3154908\n" "help.text" msgid "The Watch window allows you to observe the value of variables during the execution of a program. Define the variable in the Watch text box. Click on Enable Watch to add the variable to the list box and to display its values." -msgstr "Прозорецът за следене ви позволява да наблюдавате стойностите на променливи по време на изпълнение на програма. Задайте променливата в текстовото поле Следене. Щракнете върху Разрешаване на следенето, за да добавите променливата към списъка и да виждате стойностите й." +msgstr "Прозорецът „Наблюдение“ ви позволява да следите стойностите на променливи по време на изпълнение на програма. Задайте променливата в текстовото поле „Наблюдение“. Щракнете върху Разрешаване на наблюдение, за да добавите променливата към списъка и да виждате стойностите ѝ." #. 9wvFG #: 01050100.xhp @@ -5603,7 +5603,7 @@ "hd_id3145173\n" "help.text" msgid "Watch" -msgstr "Следене" +msgstr "Наблюдение" #. kxkF2 #: 01050100.xhp @@ -5621,7 +5621,7 @@ "hd_id3148645\n" "help.text" msgid "Remove Watch" -msgstr "Премахване от списъка за следене" +msgstr "Премахване на наблюдение" #. yqBLC #: 01050100.xhp @@ -5630,7 +5630,7 @@ "par_id3148576\n" "help.text" msgid "Removes the selected variable from the list of watched variables." -msgstr "Премахва избраната променлива от списъка със следени променливи." +msgstr "Премахва избраната променлива от списъка с наблюдавани променливи." #. UzqEN #: 01050100.xhp @@ -5648,7 +5648,7 @@ "par_id3154012\n" "help.text" msgid "Remove Watch" -msgstr "Премахване от списъка за следене" +msgstr "Премахване на наблюдение" #. mq5A9 #: 01050100.xhp @@ -5666,7 +5666,7 @@ "par_id3156283\n" "help.text" msgid "Displays the list of watched variables. Click twice with a short pause in between on an entry to edit its value. The new value will be taken as the variable's value for the program." -msgstr "Показва списъка със следени променливи. Щракнете два пъти върху елемент с кратка пауза между щракванията, за да редактирате стойността. Новата стойност ще бъде приета като стойност на променливата в програмата." +msgstr "Показва списъка с наблюдавани променливи. Щракнете два пъти върху елемент с кратка пауза между щракванията, за да редактирате стойността. Новата стойност ще бъде приета като стойност на променливата в програмата." #. swaqV #: 01050200.xhp @@ -40712,7 +40712,7 @@ "par_id3151073\n" "help.text" msgid "Add watch for the variable at the cursor." -msgstr "Добавяне на променливата под курсора в списъка за следене." +msgstr "Включване на наблюдение за променливата под курсора." #. denBK #: keys.xhp diff -Nru libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/scalc/01.po libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/scalc/01.po --- libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/scalc/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/scalc/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-06 06:33+0000\n" +"PO-Revision-Date: 2023-03-29 03:34+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" "Language: bg\n" @@ -18303,7 +18303,7 @@ "par_id3148595\n" "help.text" msgid "=INDEX(A1:B6;1;1) indicates the value in the upper-left of the A1:B6 range." -msgstr "=INDEX(A1:B6;1;1) посочва стойността в горния ляв ъгъл на областта A1:B6." +msgstr "=INDEX(A1:B6;1;1) посочва стойността в горния ляв ъгъл на диапазона A1:B6." #. ubk4L #: 04060109.xhp @@ -18312,7 +18312,7 @@ "par_id9960020\n" "help.text" msgid "=INDEX((multi);0;0;2) returns a reference to the second range of the multiple range." -msgstr "=INDEX((multi);0;0;2) връща обръщение към втората област на несвързаната област." +msgstr "=INDEX((multi);0;0;2) връща обръщение към втория диапазон от несвързания диапазон." #. LCBWC #: 04060109.xhp diff -Nru libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/scalc/guide.po libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/scalc/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/scalc/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-07-15 17:19+0000\n" +"PO-Revision-Date: 2023-03-29 03:34+0000\n" "Last-Translator: Mihail Balabanov \n" -"Language-Team: Bulgarian \n" +"Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562356865.000000\n" @@ -6009,7 +6009,7 @@ "par_id3808404\n" "help.text" msgid "When you click Find Next, Calc will select the next cell that contains your text. You can watch and edit the text, then click Find Next again to advance to the next found cell." -msgstr "Когато натиснете Търсене - следващ, Calc ще избере следващата клетка съдържаща търсения текст. Можете да видите и редактирате текста и да натиснете Търсене - следващ отново, за да продължите към следващата намерена клетка." +msgstr "Когато натиснете Търсене - следващ, Calc ще избере следващата клетка, съдържаща търсения текст. Можете да видите и редактирате текста и да натиснете Търсене - следващ отново, за да продължите към следващата намерена клетка." #. TcnxV #: finding.xhp diff -Nru libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/sdatabase.po libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/sdatabase.po --- libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/sdatabase.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/sdatabase.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-12-15 13:35+0000\n" +"PO-Revision-Date: 2023-03-29 03:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. ugSgG #: 02000000.xhp @@ -7755,7 +7755,7 @@ "par_idN1058C\n" "help.text" msgid "Connect to an existing database" -msgstr "Създаване на връзка към съществуваща база от данни" +msgstr "Свързване със съществуваща база от данни" #. tF4HK #: dabawiz01.xhp diff -Nru libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/shared/02.po libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/shared/02.po --- libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-07-06 16:22+0000\n" +"PO-Revision-Date: 2023-04-24 09:34+0000\n" "Last-Translator: Mihail Balabanov \n" -"Language-Team: Bulgarian \n" +"Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562357690.000000\n" @@ -3291,7 +3291,7 @@ "par_id3154512\n" "help.text" msgid "Check the No assignment box to remove the link between a control and the assigned label field." -msgstr "Отметнете полето Без назначение, за да премахнете връзката между контрола и приписаното ѝ поле за етикет." +msgstr "Отметнете полето Без присвояване, за да премахнете връзката между контрола и присвоеното ѝ поле за етикет." #. 49HyB #: 01170101.xhp diff -Nru libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/swriter/01.po libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/swriter/01.po --- libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/swriter/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/swriter/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-07-19 20:03+0000\n" +"PO-Revision-Date: 2023-04-26 17:33+0000\n" "Last-Translator: Mihail Balabanov \n" -"Language-Team: Bulgarian \n" +"Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562351067.000000\n" @@ -1986,7 +1986,7 @@ "par_id3154330\n" "help.text" msgid "The entries largely correspond to those in the Navigator selection box. You can also select other jump destinations. An example are the reminders, which you can set with the Set Reminder icon in the Navigator. You can select an object from among the following options on the Navigation toolbar: table, frame, graphics, OLE object, page, headings, reminder, drawing object, control field, section, bookmark, selection, footnote, note, index entry, table formula, wrong table formula." -msgstr "Елементите съответстват предимно на тези от полето за избиране в Навигатора. Можете да избирате и други местоназначения, например напомнянията, които можете да поставяте чрез иконата Задаване на напомняне в „Навигатора“. В лентата с инструменти Навигация можете да избирате измежду следните елементи: таблица, рамка, графика, OLE обект, страница, заглавия, напомняне, рисунка, поле на контрола, раздел, показалец, селекция, бележка под линия, бележка, запис за указател, таблична формула, погрешна таблична формула." +msgstr "Елементите съответстват предимно на тези от полето за избиране в Навигатора. Можете да избирате и други местоназначения, например напомнянията, които можете да поставяте чрез иконата Задаване на напомняне в „Навигатора“. В лентата с инструменти Навигация можете да избирате измежду следните елементи: таблица, рамка, графика, OLE обект, страница, заглавия, напомняне, рисунка, поле на контрола, раздел, показалец, селекция, бележка под линия, бележка, елемент от указател, таблична формула, погрешна таблична формула." #. gVFCS #: 02110100.xhp @@ -3714,7 +3714,7 @@ "tit\n" "help.text" msgid "Edit Index Entry" -msgstr "Редактиране на запис за указател" +msgstr "Редактиране на елемент от указател" #. REcEC #: 02160000.xhp @@ -3723,7 +3723,7 @@ "hd_id3154567\n" "help.text" msgid "Edit Index Entry" -msgstr "Редактиране на запис за указател" +msgstr "Редактиране на елемент от указател" #. ZBGHN #: 02160000.xhp @@ -3741,7 +3741,7 @@ "par_id3155896\n" "help.text" msgid "To insert an index entry, select a word in the document, and then choose Insert - Table of Contents and Index - Index Entry." -msgstr "За да вмъкнете запис за указател, изберете дума от документа, после изберете Вмъкване - Съдържание и указател - Запис." +msgstr "За да вмъкнете елемент от указател, изберете дума от документа, после изберете Вмъкване - Съдържание и указател - Запис." #. qnnFh #: 02160000.xhp @@ -3759,7 +3759,7 @@ "par_id3149486\n" "help.text" msgid "Edits the selected index entry." -msgstr "Тук се редактира избраният запис за указател." +msgstr "Тук се редактира избраният елемент от указател." #. qiCQX #: 02160000.xhp @@ -3795,7 +3795,7 @@ "par_id3149823\n" "help.text" msgid "Edit the index entry if necessary. When you modify the index entry, the new text only appears in the index, and not at the index entry anchor in the document. For example, you can enter an index with comments such as \"Basics, see also General\"." -msgstr "Редактирайте записа за указател, ако е необходимо. Когато променяте запис за указател, новият текст се появява само в указателя, но не и в неговата котва в документа. Например, можете да въведете елемент с коментар като „Основни понятия, виж също Общ преглед“." +msgstr "Редактирайте елемента от указател, ако е необходимо. Когато променяте елемент от указател, новият текст се появява само в указателя, но не и в неговата котва в документа. Например, можете да въведете елемент с коментар като „Основни понятия, виж също Общ преглед“." #. c7wua #: 02160000.xhp @@ -3813,7 +3813,7 @@ "par_id3153631\n" "help.text" msgid "To create a multilevel index, type the name of the first level index entry, or select a name from the list. The current index entry is added below this name." -msgstr "За да създадете указател с няколко нива, въведете името на записа за указател от първо ниво или изберете име от списъка. Текущият запис за указател се прибавя под това име." +msgstr "За да създадете указател с няколко нива, въведете името на елемента от първо ниво на указателя или изберете име от списъка. Текущият елемент от указателя се добавя под това име." #. sHesC #: 02160000.xhp @@ -3831,7 +3831,7 @@ "par_id3145758\n" "help.text" msgid "Type the name of the second level index entry, or select a name from the list. The current index entry is added below this name." -msgstr "Въведете името на запис за указател от второ ниво или изберете име от списъка. Текущият запис за указател се прибавя под това име." +msgstr "Въведете името на елемента от второ ниво на указателя или изберете име от списъка. Текущият елемент от указателя се добавя под това име." #. TKyE4 #: 02160000.xhp @@ -3885,7 +3885,7 @@ "par_id3155869\n" "help.text" msgid "Jumps to the first index entry of the same type in the document." -msgstr "Преминава към първия запис за указател от същия тип в документа." +msgstr "Преминава към първия елемент от указател от същия тип в документа." #. y9w7C #: 02160000.xhp @@ -3921,7 +3921,7 @@ "par_id3149829\n" "help.text" msgid "Jumps to the last index entry of the same type in the document." -msgstr "Преминава към последния запис за указател от същия тип в документа." +msgstr "Преминава към последния елемент от указател от същия тип в документа." #. UmFvL #: 02160000.xhp @@ -3957,7 +3957,7 @@ "par_id3154327\n" "help.text" msgid "Jumps to the previous index entry of the same type in the document." -msgstr "Преминава към предишния запис за указател от същия тип в документа." +msgstr "Преминава към предишния елемент от указател от същия тип в документа." #. sbfHD #: 02160000.xhp @@ -3993,7 +3993,7 @@ "par_id3154633\n" "help.text" msgid "Jumps to the next index entry of the same type in the document." -msgstr "Преминава към следващия запис за указател от същия тип в документа." +msgstr "Преминава към следващия елемент от указател от същия тип в документа." #. 3nZVK #: 02160000.xhp diff -Nru libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/swriter/02.po libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/swriter/02.po --- libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/swriter/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/swriter/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-10 20:16+0200\n" -"PO-Revision-Date: 2023-02-02 12:38+0000\n" +"PO-Revision-Date: 2023-04-26 17:33+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" "Language: bg\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547852096.000000\n" #. sqxGb @@ -3218,7 +3218,7 @@ "hd_id3155861\n" "help.text" msgid "Entry" -msgstr "Запис" +msgstr "Елемент" #. nzTGs #: 18030000.xhp diff -Nru libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/swriter/guide.po libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.4.6/translations/source/bg/helpcontent2/source/text/swriter/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/helpcontent2/source/text/swriter/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-07-06 16:22+0000\n" +"PO-Revision-Date: 2023-04-26 17:33+0000\n" "Last-Translator: Mihail Balabanov \n" -"Language-Team: Bulgarian \n" +"Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564897611.000000\n" #. XAt2Y @@ -8087,7 +8087,7 @@ "par_id3155893\n" "help.text" msgid "To cycle through the index entries in your document, click the next or the previous arrows in the Edit Index Entry dialog." -msgstr "За да обхождате записите за указател в документа, щракайте върху стрелките \"предишен\" и \"следващ\" в диалоговия прозорец Редактиране на запис за указател." +msgstr "За да обхождате елементите от указател в документа, щракайте върху стрелките „предишен“ и „следващ“ в диалоговия прозорец Редактиране на елемент от указател." #. 3hNnR #: indices_edit.xhp diff -Nru libreoffice-7.4.6/translations/source/bg/svx/messages.po libreoffice-7.4.7/translations/source/bg/svx/messages.po --- libreoffice-7.4.6/translations/source/bg/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-03-22 09:33+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" "Language: bg\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562357387.000000\n" #. 3GkZj @@ -9837,7 +9837,7 @@ #: include/svx/strings.hrc:1752 msgctxt "RID_SUBSETMAP" msgid "Hanifi Rohingya" -msgstr "Ханифи рохингя" +msgstr "Ханифи рохинджа" #. FAwvP #: include/svx/strings.hrc:1753 diff -Nru libreoffice-7.4.6/translations/source/bg/sw/messages.po libreoffice-7.4.7/translations/source/bg/sw/messages.po --- libreoffice-7.4.6/translations/source/bg/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bg/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-01-30 09:57+0000\n" +"PO-Revision-Date: 2023-04-28 06:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562504032.000000\n" #. v3oJv @@ -6766,13 +6766,13 @@ #: sw/inc/strings.hrc:810 msgctxt "STR_IDXMRK_EDIT" msgid "Edit Index Entry" -msgstr "Редактиране на запис за указател" +msgstr "Редактиране на елемент от указател" #. EHTHH #: sw/inc/strings.hrc:811 msgctxt "STR_IDXMRK_INSERT" msgid "Insert Index Entry" -msgstr "Вмъкване на запис за указател" +msgstr "Вмъкване на елемент от указател" #. D2gkA #: sw/inc/strings.hrc:812 @@ -8726,7 +8726,7 @@ #: sw/inc/strings.hrc:1191 msgctxt "ST_INDEX_ENTRY" msgid "Index entry" -msgstr "Запис за указател" +msgstr "Елемент от указател" #. sfmff #: sw/inc/strings.hrc:1192 @@ -16634,7 +16634,7 @@ #: sw/uiconfig/swriter/ui/indexentry.ui:539 msgctxt "indexentry|extended_tip|previous" msgid "Jumps to the previous index entry of the same type in the document." -msgstr "Преминава към предишния запис за указател от същия тип в документа." +msgstr "Преминава към предишния елемент от указател от същия тип в документа." #. VsuQU #: sw/uiconfig/swriter/ui/indexentry.ui:557 @@ -16646,7 +16646,7 @@ #: sw/uiconfig/swriter/ui/indexentry.ui:560 msgctxt "indexentry|extended_tip|next" msgid "Jumps to the next index entry of the same type in the document." -msgstr "Преминава към следващия запис за указател от същия тип в документа." +msgstr "Преминава към следващия елемент от указател от същия тип в документа." #. KnhCr #: sw/uiconfig/swriter/ui/indexentry.ui:578 @@ -16658,7 +16658,7 @@ #: sw/uiconfig/swriter/ui/indexentry.ui:581 msgctxt "indexentry|extended_tip|first" msgid "Jumps to the previous index entry of the same type and with the same name in the document." -msgstr "Преминава към предишния запис за указател от същия тип и със същото име в документа." +msgstr "Преминава към предишния елемент от указател от същия тип и със същото име в документа." #. 2mkMr #: sw/uiconfig/swriter/ui/indexentry.ui:599 @@ -16670,7 +16670,7 @@ #: sw/uiconfig/swriter/ui/indexentry.ui:602 msgctxt "indexentry|extended_tip|last" msgid "Jumps to the next index entry of the same type and with the same name in the document." -msgstr "Преминава към следващия запис за указател от същия тип и със същото име в документа." +msgstr "Преминава към следващия елемент от указател от същия тип и със същото име в документа." #. dLE2B #: sw/uiconfig/swriter/ui/indexentry.ui:630 diff -Nru libreoffice-7.4.6/translations/source/bs/helpcontent2/source/text/swriter/guide.po libreoffice-7.4.7/translations/source/bs/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.4.6/translations/source/bs/helpcontent2/source/text/swriter/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/bs/helpcontent2/source/text/swriter/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2018-11-12 13:21+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-10 13:34+0000\n" +"Last-Translator: serval2412 \n" +"Language-Team: Bosnian \n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542028890.000000\n" #. XAt2Y @@ -7079,7 +7079,7 @@ "par_id3146863\n" "help.text" msgid "Choose Insert - Field - More Fields and click the Document tab." -msgstr "Izaberite Unesite - Polja - Ostalo i kliknite Funkcije karticu." +msgstr "Izaberite Unesite - Polja - Više polja i kliknite Dokument karticu." #. AevwX #: header_with_chapter.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/basic/messages.po libreoffice-7.4.7/translations/source/ca/basic/messages.po --- libreoffice-7.4.6/translations/source/ca/basic/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/basic/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2021-09-22 20:36+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+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.15.2\n" "X-POOTLE-MTIME: 1516016959.000000\n" #. CacXi @@ -104,7 +104,7 @@ #: basic/inc/basic.hrc:46 msgctxt "RID_BASIC_START" msgid "Resume without error." -msgstr "Continua sense error." +msgstr "Reprèn sense error." #. QGuZq #: basic/inc/basic.hrc:47 diff -Nru libreoffice-7.4.6/translations/source/ca/chart2/messages.po libreoffice-7.4.7/translations/source/ca/chart2/messages.po --- libreoffice-7.4.6/translations/source/ca/chart2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/chart2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-03-05 08:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547819235.000000\n" #. NCRDD @@ -271,7 +271,7 @@ #: chart2/inc/strings.hrc:51 msgctxt "STR_OBJECT_AVERAGE_LINE_WITH_PARAMETERS" msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION" -msgstr "Línia del valor mitjà amb valor %AVERAGE_VALUE i desviació estàndard %STD_DEVIATION" +msgstr "Línia del valor mitjà amb valor %AVERAGE_VALUE i desviació tipus %STD_DEVIATION" #. eP9wF #: chart2/inc/strings.hrc:52 @@ -1661,7 +1661,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:216 msgctxt "dlg_InsertErrorBars|liststoreFUNCTION" msgid "Standard Deviation" -msgstr "Desviació estàndard" +msgstr "Desviació tipus" #. wA6LE #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:217 @@ -2459,7 +2459,7 @@ #: chart2/uiconfig/ui/sidebarerrorbar.ui:77 msgctxt "sidebarerrorbar|comboboxtext_type" msgid "Standard deviation" -msgstr "Desviació estàndard" +msgstr "Desviació tipus" #. qUL78 #: chart2/uiconfig/ui/sidebarerrorbar.ui:78 @@ -4115,7 +4115,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:153 msgctxt "tp_ErrorBars|liststoreFUNCTION" msgid "Standard Deviation" -msgstr "Desviació estàndard" +msgstr "Desviació tipus" #. GagXt #: chart2/uiconfig/ui/tp_ErrorBars.ui:154 diff -Nru libreoffice-7.4.6/translations/source/ca/cui/messages.po libreoffice-7.4.7/translations/source/ca/cui/messages.po --- libreoffice-7.4.6/translations/source/ca/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -5015,7 +5015,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:326 msgctxt "applylocalizedpage|defaultsingle-atkobject" msgid "Single quotes default" -msgstr "Cometes simples predeterminades" +msgstr "Cometes simples per defecte" #. nHhRe #: cui/uiconfig/ui/applylocalizedpage.ui:327 @@ -5099,7 +5099,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:515 msgctxt "applylocalizedpage|defaultdouble-atkobject" msgid "Double quotes default" -msgstr "Cometes dobles predeterminades" +msgstr "Cometes dobles per defecte" #. 8oRQv #: cui/uiconfig/ui/applylocalizedpage.ui:516 @@ -6065,7 +6065,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:919 msgctxt "bulletandposition|ALlabel" msgid "Alignment:" -msgstr "Alineament:" +msgstr "Alineació:" #. BfBBW #: cui/uiconfig/ui/bulletandposition.ui:937 @@ -7965,7 +7965,7 @@ #: cui/uiconfig/ui/cuiimapdlg.ui:115 msgctxt "cuiimapdlg|extended_tip|urlentry" msgid "Enter the URL for the file that you want to open when you click the selected hotspot." -msgstr "Introduïu l'URL del fitxer que voleu obrir quan feu clic a la zona activa seleccionada." +msgstr "Introduïu l'URL del fitxer que voleu obrir quan feu clic a la zona sensible seleccionada." #. FLKr9 #: cui/uiconfig/ui/cuiimapdlg.ui:143 @@ -8493,7 +8493,7 @@ #: cui/uiconfig/ui/editmodulesdialog.ui:307 msgctxt "lingudicts" msgid "Specifies the language and the available spelling, hyphenation and Thesaurus sub-modules for the selected module." -msgstr "Especifica l'idioma i els submòduls d'ortografia, partició de mots i Tesaurus disponibles per al mòdul seleccionat." +msgstr "Especifica la llengua i els submòduls d'ortografia, de partició de mots i de tesaurus disponibles per al mòdul seleccionat." #. ZF8AG #: cui/uiconfig/ui/editmodulesdialog.ui:330 @@ -9790,7 +9790,7 @@ #: cui/uiconfig/ui/gradientpage.ui:315 msgctxt "gradientpage|centerft" msgid "Center ( X / Y ):" -msgstr "Centre ( X / Y ):" +msgstr "Centre (X/Y):" #. mP62s #: cui/uiconfig/ui/gradientpage.ui:339 @@ -11918,7 +11918,7 @@ #: cui/uiconfig/ui/langtoolconfigpage.ui:29 msgctxt "langtoolconfigpage|disclaimer" msgid "If you enable this, the data will be sent to an external server." -msgstr "En activar això, les dades s'enviaran a un servidor extern." +msgstr "En activar això, s'enviaran dades a un servidor extern." #. kF4mt #: cui/uiconfig/ui/langtoolconfigpage.ui:39 @@ -14024,7 +14024,7 @@ #: cui/uiconfig/ui/optappearancepage.ui:211 msgctxt "optappearancepage|colorsetting" msgid "Color setting" -msgstr "Configuració de color" +msgstr "Paràmetre de color" #. HFLPF #: cui/uiconfig/ui/optappearancepage.ui:242 @@ -14282,7 +14282,7 @@ #: cui/uiconfig/ui/optchartcolorspage.ui:164 msgctxt "extended_tip|default" msgid "Restores the color settings that were defined when the program was installed." -msgstr "Restaura els ajustaments de color que es van definir en instal·lar el programa." +msgstr "Restaura els paràmetres de color que es van definir en instal·lar el programa." #. KoHHw #: cui/uiconfig/ui/optchartcolorspage.ui:230 @@ -14946,7 +14946,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:405 msgctxt "optgeneralpage|FileExtCheckCheckbox" msgid "Perform check for default file associations on start-up" -msgstr "Realitzeu una comprovació de les associacions de fitxers predeterminades a l’inici." +msgstr "Realitza una comprovació de les associacions de fitxers per defecte a l'inici" #. fXjVB #: cui/uiconfig/ui/optgeneralpage.ui:423 @@ -21134,7 +21134,7 @@ #: cui/uiconfig/ui/textdialog.ui:183 msgctxt "textdialog|RID_SVXPAGE_TEXTANIMATION" msgid "Text Animation" -msgstr "Animació de text" +msgstr "Animació del text" #. iq2Cq #: cui/uiconfig/ui/textdialog.ui:231 @@ -22004,7 +22004,7 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:180 msgctxt "wordcompletionpage|extended_tip|minwordlen" msgid "Enter the minimum word length for a word to become eligible for the word completion feature." -msgstr "Introduïu la longitud mínima de les paraules perquè la característica de compleció les tingui en compte." +msgstr "Introduïu la longitud mínima de les paraules perquè la funcionalitat de compleció les tingui en compte." #. YAb3D #: cui/uiconfig/ui/wordcompletionpage.ui:193 diff -Nru libreoffice-7.4.6/translations/source/ca/dbaccess/messages.po libreoffice-7.4.7/translations/source/ca/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/ca/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/dbaccess/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2022-10-24 11:13+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562301145.000000\n" #. BiN6g @@ -3514,7 +3514,7 @@ #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:39 msgctxt "generalspecialjdbcdetailspage|label2" msgid "_Host name:" -msgstr "_Nom del servidor:" +msgstr "_Nom de l'amfitrió:" #. NmRqx #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:53 @@ -5236,7 +5236,7 @@ #: dbaccess/uiconfig/ui/userdetailspage.ui:40 msgctxt "userdetailspage|hostnameft" msgid "_Host name:" -msgstr "_Nom del servidor:" +msgstr "_Nom de l'amfitrió:" #. eDvjr #: dbaccess/uiconfig/ui/userdetailspage.ui:56 diff -Nru libreoffice-7.4.6/translations/source/ca/extras/source/autocorr/emoji.po libreoffice-7.4.7/translations/source/ca/extras/source/autocorr/emoji.po --- libreoffice-7.4.6/translations/source/ca/extras/source/autocorr/emoji.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/extras/source/autocorr/emoji.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-12-16 10:55+0000\n" -"Last-Translator: Joan Montané \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565870832.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -4694,7 +4694,7 @@ "PINEAPPLE\n" "LngText.text" msgid "pineapple" -msgstr "piña" +msgstr "ananàs" #. 🍎 (U+1F34E), see http://wiki.documentfoundation.org/Emoji #. VGJDv diff -Nru libreoffice-7.4.6/translations/source/ca/formula/messages.po libreoffice-7.4.7/translations/source/ca/formula/messages.po --- libreoffice-7.4.6/translations/source/ca/formula/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/formula/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2021-01-28 07:37+0000\n" +"PO-Revision-Date: 2023-04-04 21:33+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.15.2\n" "X-POOTLE-MTIME: 1556385376.000000\n" #. YfKFn @@ -2660,19 +2660,19 @@ #: formula/uiconfig/ui/formuladialog.ui:263 msgctxt "formuladialog|label2" msgid "Function result" -msgstr "Resultat de la funció" +msgstr "Resultat de la funció:" #. GqtY8 #: formula/uiconfig/ui/formuladialog.ui:408 msgctxt "formuladialog|formula" msgid "For_mula" -msgstr "Fór_mula" +msgstr "Fór_mula:" #. xEPEr #: formula/uiconfig/ui/formuladialog.ui:423 msgctxt "formuladialog|label1" msgid "Result" -msgstr "Resultat" +msgstr "Resultat:" #. rJsXw #: formula/uiconfig/ui/formuladialog.ui:469 diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sbasic/guide.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sbasic/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sbasic/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-05 00:45+0000\n" +"PO-Revision-Date: 2023-03-30 10:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -1023,7 +1023,7 @@ "par_id641630542724480\n" "help.text" msgid "In addition to top, bottom, left and right borders, TableBorder2 also defines vertical and horizontal borders. The macro below applies only the top and bottom borders to the range \"B2:E5\"." -msgstr "" +msgstr "A més de les vores superior, inferior, esquerra i dreta, TableBorder2 també defineix les vores horitzontals i verticals. La macro a continuació aplica només les vores superior i inferior a l'interval «B2:E5»." #. k7afV #: calc_borders.xhp @@ -1032,7 +1032,7 @@ "bas_id191630543332073\n" "help.text" msgid "' Defines the new line format" -msgstr "" +msgstr "' Defineix el format de línia nou" #. hSdDm #: calc_borders.xhp @@ -1041,7 +1041,7 @@ "bas_id281630543333061\n" "help.text" msgid "' Struct that stores the new TableBorder2 definition" -msgstr "" +msgstr "' Estructura que emmagatzema la definició del nou «TableBorder2»" #. SFrJL #: calc_borders.xhp @@ -1059,7 +1059,7 @@ "par_id401630544066231\n" "help.text" msgid "The macro can be implemented in Python as follows:" -msgstr "" +msgstr "La macro es pot implementar en Python d'aquesta manera:" #. aipfb #: calc_borders.xhp @@ -1257,7 +1257,7 @@ "tit\n" "help.text" msgid "Reading and Writing values to Ranges" -msgstr "" +msgstr "Lectura i escriptura de valors als intervals" #. 3hH3s #: read_write_values.xhp @@ -1293,7 +1293,7 @@ "hd_id331633213558740\n" "help.text" msgid "Accessing a Single Cell" -msgstr "" +msgstr "Accés a una única cel·la" #. A5M3f #: read_write_values.xhp @@ -1311,7 +1311,7 @@ "par_id131633213887433\n" "help.text" msgid "The same can be accomplished with Python:" -msgstr "" +msgstr "El mateix es pot aconseguir en Python:" #. CDmg6 #: read_write_values.xhp @@ -1356,7 +1356,7 @@ "hd_id411633215666257\n" "help.text" msgid "Values, Strings and Formulas" -msgstr "" +msgstr "Valors, cadenes i fórmules" #. MBHDg #: read_write_values.xhp @@ -1365,7 +1365,7 @@ "par_id861633215682610\n" "help.text" msgid "Calc cells can have three types of values: numeric, strings and formulas. Each type has its own set and get methods:" -msgstr "" +msgstr "Les cel·les del Calc tenen tres tipus de valors: numèric, cadena i fórmula. Cada tipus té mètodes de lectura i escriptura propis:" #. RXE76 #: read_write_values.xhp @@ -1374,7 +1374,7 @@ "par_id191633215791905\n" "help.text" msgid "Type" -msgstr "" +msgstr "Tipus" #. rYCuZ #: read_write_values.xhp @@ -1428,7 +1428,7 @@ "hd_id321633216630043\n" "help.text" msgid "Accessing Ranges in Different Sheets" -msgstr "" +msgstr "Accés a intervals definits en altres fulls" #. TFU8U #: read_write_values.xhp @@ -1482,7 +1482,7 @@ "par_id891633265000047\n" "help.text" msgid "This can be done in a similar fashion in Python:" -msgstr "" +msgstr "Això es pot fer d'una manera semblant en Python:" #. 6qHAn #: read_write_values.xhp @@ -1491,7 +1491,7 @@ "hd_id451633265241066\n" "help.text" msgid "Using the ScriptForge Library" -msgstr "" +msgstr "Ús de la biblioteca ScriptForge" #. 8CkSe #: read_write_values.xhp @@ -1500,7 +1500,7 @@ "par_id731633265268585\n" "help.text" msgid "The Calc service of the ScriptForge library can be used to get and set cell values as follows:" -msgstr "" +msgstr "El servei Calc de la biblioteca ScriptForge es pot usar per a obtenir i modificar el valors de les cel·les així:" #. DCJ2E #: read_write_values.xhp @@ -1509,7 +1509,7 @@ "par_id551633265526538\n" "help.text" msgid "' Loads the ScriptForge library" -msgstr "" +msgstr "' Carrega la biblioteca ScriptForge" #. hgDyM #: read_write_values.xhp @@ -1554,7 +1554,7 @@ "par_id521633608223310\n" "help.text" msgid "The ScriptForge library also makes it simpler to access ranges in different sheets, as demonstrated in the example below:" -msgstr "" +msgstr "La biblioteca ScriptForge també simplifica l'accés als intervals d'altres fulls, com es demostra a l'exemple següent:" #. CCeEh #: read_write_values.xhp @@ -1590,7 +1590,7 @@ "par_id431633266057163\n" "help.text" msgid "The examples above can also be implemented in Python as follows:" -msgstr "" +msgstr "Els exemples anteriors també es poden implementar en Python així:" #. ayg6P #: sample_code.xhp @@ -1788,7 +1788,7 @@ "par_id3144504\n" "help.text" msgid "oListbox.additem(\"New Item\" & iCount,0)" -msgstr "oListbox.additem(\"Nou element\" & iCount,0)" +msgstr "oListbox.additem(\"Element nou\" & iCount,0)" #. FKzdb #: sample_code.xhp @@ -1878,7 +1878,7 @@ "tit\n" "help.text" msgid "Translation of Controls in the Dialog Editor" -msgstr "Traducció dels controls de l'editor de diàlegs" +msgstr "Traducció dels controls a l'editor de diàlegs" #. 76okP #: translation.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-10 08:24+0000\n" +"PO-Revision-Date: 2023-03-24 09:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1557995155.000000\n" @@ -1284,7 +1284,7 @@ "par_id3148418\n" "help.text" msgid "Icon Combo Box" -msgstr "" +msgstr "Icona Quadre combinat" #. Vdn74 #: 20000000.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 22:04+0000\n" +"PO-Revision-Date: 2023-04-23 20:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -10436,7 +10436,7 @@ "pyc_id841620225235377\n" "help.text" msgid "# ... process the controls actual values" -msgstr "" +msgstr "# ... processa els valors reals dels controls" #. 2PPv4 #: sf_dialogcontrol.xhp @@ -13919,7 +13919,7 @@ "par_id111587141158495\n" "help.text" msgid "When an error occurs, an application macro may:" -msgstr "" +msgstr "Quan ocorreix un error, una macro d'aplicació pot:" #. hxxxr #: sf_exception.xhp @@ -27842,7 +27842,7 @@ "par_id31587913266153\n" "help.text" msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:" -msgstr "" +msgstr "El servei UI (de l'anglès, interfície d'usuari) simplifica la identificació i la manipulació de les diferents finestres que componen l'aplicació %PRODUCTNAME:" #. nTqj5 #: sf_ui.xhp @@ -27851,7 +27851,7 @@ "par_id591587913266547\n" "help.text" msgid "Windows selection" -msgstr "" +msgstr "Selecció de finestres" #. 45jFA #: sf_ui.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sbasic/shared.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sbasic/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sbasic/shared.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -1914,7 +1914,7 @@ "par_id3148797\n" "help.text" msgid "Sub is the short form of subroutine, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:" -msgstr "Sub és la forma abreujada de subrutina, que s'utilitza per gestionar una tasca determinada dins d'un programa. Les subs s'utilitzen per dividir tasques en procediments individuals. La divisió d'un programa en procediments i subprocediments millora la llegibilitat i redueix la possibilitat d'error. Una sub possiblement pren alguns arguments com a paràmetres però no torna cap valor a la sub o funció de crida, per exemple:" +msgstr "Sub és la forma abreujada de subrutina, que s'utilitza per a gestionar una tasca determinada dins d'un programa. Les subs s'utilitzen per a dividir tasques en procediments individuals. La divisió d'un programa en procediments i subprocediments millora la comprensibilitat i redueix la possibilitat d'error. Una sub possiblement pren alguns arguments com a paràmetres però no torna cap valor a la sub o funció de crida, per exemple:" #. ovUK9 #: 01010210.xhp @@ -2792,33 +2792,30 @@ #. w9moW #: 01020100.xhp -#, fuzzy msgctxt "" "01020100.xhp\n" "par_idm1341065280\n" "help.text" msgid "Dim Text$(20) '21 elements numbered from 0 to 20'" -msgstr "Dim Text$(20 '21 elements numerats de 0 a 20'" +msgstr "Dim Text$(20) '21 elements numerats de 0 a 20'" #. Tpkw3 #: 01020100.xhp -#, fuzzy msgctxt "" "01020100.xhp\n" "par_idm1341059776\n" "help.text" msgid "Dim Text$(5,4) '30 elements (a matrix of 6 x 5 elements)'" -msgstr "Dim Text$(54) '30 elements (una matriu de 6 x 5 elements)'" +msgstr "Dim Text$(5,4) '30 elements (una matriu de 6 × 5 elements)'" #. qZxBE #: 01020100.xhp -#, fuzzy msgctxt "" "01020100.xhp\n" "par_idm1341054256\n" "help.text" msgid "Dim Text$(5 To 25) '21 elements numbered from 5 to 25'" -msgstr "Dim Text$(5 a 25) '21 elements numerats de 5 a 25'" +msgstr "Dim Text$(5 To 25) '21 elements numerats de 5 a 25'" #. NfXEB #: 01020100.xhp @@ -3022,23 +3019,21 @@ #. 5SdpG #: 01020300.xhp -#, fuzzy msgctxt "" "01020300.xhp\n" "par_id3147124\n" "help.text" msgid "The parameters passed to a Sub must fit to those specified in the Sub declaration." -msgstr "Els paràmetres transferits a un Sub han d'ajustar-se als especificats en la declaració Sub." +msgstr "Els paràmetres que es passen a una Sub s'han d'ajustar als especificats a la declaració Sub." #. Zxxix #: 01020300.xhp -#, fuzzy msgctxt "" "01020300.xhp\n" "par_id3147397\n" "help.text" msgid "The same process applies to a Function. In addition, functions always return a function result. The result of a function is defined by assigning the return value to the function name:" -msgstr "El mateix procés s'aplica a una funció . A més les funcions sempre retornen un resultat de la funció. El resultat d'una funció es defineix assignant el valor de retorn al nom de la funció" +msgstr "El mateix procés s'aplica a una funció . A més, les funcions sempre retornen un resultat de funció. El resultat d’una funció es defineix assignant el valor de retorn al nom de la funció:" #. uhFkG #: 01020300.xhp @@ -3153,7 +3148,6 @@ #. AEhBY #: 01020300.xhp -#, fuzzy msgctxt "" "01020300.xhp\n" "hd_id161584366585035\n" @@ -3947,7 +3941,7 @@ "par_id3153968\n" "help.text" msgid "Click Delete to remove the breakpoint from the program." -msgstr "Feu clic a Suprimeix per suprimir el punt de ruptura del programa." +msgstr "Feu clic a Suprimeix per a suprimir el punt de ruptura del programa." #. 5MRSa #: 01030300.xhp @@ -4077,13 +4071,12 @@ #. UG2dG #: 01030400.xhp -#, fuzzy msgctxt "" "01030400.xhp\n" "par_id151574079741214\n" "help.text" msgid "My Macros: libraries stored in this container are available to all documents of your user. The container is located in the user profile area and is not accessible by another user." -msgstr "Les biblioteques My Macros emmagatzemades en aquest contenidor estan disponibles per a tots els documents del vostre usuari. El contenidor està ubicat a l'àrea del perfil d'usuari i no és accessible per a un altre usuari." +msgstr "Les meves macros: les biblioteques emmagatzemades en aquest contenidor estan disponibles per a tots els documents del vostre usuari. El contenidor es troba a l'àrea de perfil d'usuari i no és accessible per un altre usuari." #. 4ABok #: 01030400.xhp @@ -20573,7 +20566,7 @@ "par_id3149346\n" "help.text" msgid "Returns the integer value of a numeric expression by removing the fractional part of the number." -msgstr "Torna el valor enter d'una expressió numèrica eliminant la part fraccionària del número." +msgstr "Retorna el valor enter d'una expressió numèrica eliminant la part fraccionària del nombre." #. AxgCW #: 03080501.xhp @@ -25363,13 +25356,12 @@ #. 4sYHn #: 03100700.xhp -#, fuzzy msgctxt "" "03100700.xhp\n" "par_id3147264\n" "help.text" msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified." -msgstr "Una constant és una variable que ajuda a millorar la llegibilitat d'un programa. Les constants no es defineixen com un tipus específic de variable sinó que s'utilitzen com a marcadors en el codi. Només podeu definir una constant una vegada i no es pot modificar." +msgstr "Una constant és una variable que ajuda a millorar la comprensibilitat d'un programa. Les constants no es defineixen com un tipus específic de variable, sinó que s'utilitzen com a espais reservats al codi. Només es pot definir una constant un cop i no és possible modificar-la." #. ucqd6 #: 03100700.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/scalc/01.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/scalc/01.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/scalc/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/scalc/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 07:02+0000\n" +"PO-Revision-Date: 2023-04-17 22:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -1860,7 +1860,7 @@ "par_id2308201415431951090\n" "help.text" msgid "Standard Deviation: The standard deviation of the Normal distribution." -msgstr "Desviació estàndard: la desviació estàndard de la distribució normal." +msgstr "Desviació tipus: la desviació tipus de la distribució normal." #. S3iFU #: 02140700.xhp @@ -1869,7 +1869,7 @@ "par_id2308201415431990992\n" "help.text" msgid "The mean and standard deviation of the numbers generated may not equal the Mean and Standard Deviation inserted in the dialog." -msgstr "La mitjana i la desviació estàndard dels nombres generats poden ser diferents de la mitjana i desviació estàndard introduïdes al diàleg." +msgstr "La mitjana i la desviació tipus dels nombres generats poden ser diferents de la mitjana i desviació tipus introduïdes al diàleg." #. CBmEB #: 02140700.xhp @@ -2058,7 +2058,7 @@ "par_id2308201415431834837\n" "help.text" msgid "Value set to initiate the random number generator algorithm. It is used to initialize (seed) the random number generator in order to reproduce the same sequence of pseudorandom numbers. Specify a positive integer number (1, 2, ...) to produce a specific sequence, or leave the field blank if you don't need this particular feature." -msgstr "El valor establert per a iniciar l'algorisme generador de nombres aleatoris. S'utilitza per a inicialitzar (llavor) el generador de nombres aleatoris de manera que es reprodueixi la mateixa seqüència de nombres pseudoaleatoris. Especifiqueu un valor enter positiu (1, 2...) per a crear una seqüència específica o deixeu el camp en blanc si no necessiteu aquesta característica en particular." +msgstr "El valor establert per a iniciar l'algorisme generador de nombres aleatoris. S'utilitza per a inicialitzar (llavor) el generador de nombres aleatoris de manera que es reprodueixi la mateixa seqüència de nombres pseudoaleatoris. Especifiqueu un valor enter positiu (1, 2...) per a crear una seqüència específica o deixeu el camp en blanc si no necessiteu aquesta funcionalitat en particular." #. JesZo #: 02140700.xhp @@ -8443,7 +8443,7 @@ "par_id5863826\n" "help.text" msgid "=A2+B2+STYLE(IF(CURRENT()>10;\"Red\";\"Default\"))" -msgstr "=A2+B2+STYLE(IF(CURRENT()>10;\"Red\";\"Default\"))" +msgstr "=A2+B2+ESTIL(SI(ACTUAL()>10;\"Red\";\"Default\"))" #. fNamE #: 04060104.xhp @@ -35353,7 +35353,7 @@ "par_id3154740\n" "help.text" msgid "Sigma (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "Sigma (opcional) és la desviació estàndard coneguda de la població. Si s'omet, es fa servir la desviació estàndard de la mostra donada." +msgstr "Sigma (opcional) és la desviació tipus coneguda de la població. Si s'omet, es fa servir la desviació tipus de la mostra donada." #. EpJ8j #: 04060182.xhp @@ -35427,7 +35427,7 @@ "par_id2954740\n" "help.text" msgid "Sigma (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "Sigma (opcional) és la desviació estàndard coneguda de la població. Si s'omet, es fa servir la desviació estàndard de la mostra donada." +msgstr "Sigma (opcional) és la desviació tipus coneguda de la població. Si s'omet, es fa servir la desviació tipus de la mostra donada." #. sbnS9 #: 04060182.xhp @@ -35894,7 +35894,7 @@ "par_id3145324\n" "help.text" msgid "StDev is the standard deviation for the total population." -msgstr "DesvEst és la desviació estàndard de la població total." +msgstr "DesvEst és la desviació tipus de la població total." #. mHvfH #: 04060183.xhp @@ -35966,7 +35966,7 @@ "par_id2945324\n" "help.text" msgid "StDev is the standard deviation for the total population." -msgstr "DesvEst és la desviació estàndard de la població total." +msgstr "DesvEst és la desviació tipus de la població total." #. urFEo #: 04060183.xhp @@ -36038,7 +36038,7 @@ "par_id2845324\n" "help.text" msgid "StDev is the standard deviation for the total population." -msgstr "DesvEst és la desviació estàndard de la població total." +msgstr "DesvEst és la desviació tipus de la població total." #. FgvKt #: 04060183.xhp @@ -36652,7 +36652,7 @@ "par_id3155991\n" "help.text" msgid "StDev (optional) is the standard deviation of the standard logarithmic distribution." -msgstr "DesvEst (opcional) és la desviació estàndard de la distribució logarítmica estàndard." +msgstr "DesvEst (opcional) és la desviació tipus de la distribució logarítmica estàndard." #. PBogE #: 04060183.xhp @@ -36733,7 +36733,7 @@ "par_id2905991\n" "help.text" msgid "StDev (required) is the standard deviation of the standard logarithmic distribution." -msgstr "DesvEst (necessari) és la desviació estàndard de la distribució logarítmica estàndard." +msgstr "DesvEst (necessari) és la desviació tipus de la distribució logarítmica estàndard." #. ajzHR #: 04060183.xhp @@ -37609,7 +37609,7 @@ "par_id3148594\n" "help.text" msgid "StDev represents the standard deviation of the normal distribution." -msgstr "DesvEst és la desviació estàndard de la distribució normal." +msgstr "DesvEst és la desviació tipus de la distribució normal." #. TUXfC #: 04060184.xhp @@ -37618,7 +37618,7 @@ "par_id3153921\n" "help.text" msgid "=NORMINV(0.9;63;5) returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams." -msgstr "=INVNORM(0,9;63;5) retorna 69,41. Si l'ou mitjà pesa 63 grams amb una desviació estàndard de 5, hi haurà una probabilitat del 90% que l'ou no pesi més de 69,41 grams." +msgstr "=INVNORM(0,9;63;5) retorna 69,41. Si l'ou mitjà pesa 63 grams amb una desviació tipus de 5, hi haurà una probabilitat del 90% que l'ou no pesi més de 69,41 grams." #. 73wyE #: 04060184.xhp @@ -37681,7 +37681,7 @@ "par_id2948594\n" "help.text" msgid "StDev represents the standard deviation of the normal distribution." -msgstr "DesvEst és la desviació estàndard de la distribució normal." +msgstr "DesvEst és la desviació tipus de la distribució normal." #. mSfFV #: 04060184.xhp @@ -37690,7 +37690,7 @@ "par_id2953921\n" "help.text" msgid "=NORM.INV(0.9;63;5) returns 69.4077578277. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams." -msgstr "=INV.NORM(0,9;63;5) retorna 69,4077578277. Si l'ou mitjà pesa 63 grams amb una desviació estàndard de 5, hi haurà una probabilitat del 90% que l'ou no pesi més de 69,41 grams." +msgstr "=INV.NORM(0,9;63;5) retorna 69,4077578277. Si l'ou mitjà pesa 63 grams amb una desviació tipus de 5, hi haurà una probabilitat del 90% que l'ou no pesi més de 69,41 grams." #. 432JF #: 04060184.xhp @@ -37754,7 +37754,7 @@ "par_id3156295\n" "help.text" msgid "StDev is the standard deviation of the distribution." -msgstr "DesvEst és la desviació estàndard de la distribució." +msgstr "DesvEst és la desviació tipus de la distribució." #. bzaMQ #: 04060184.xhp @@ -37844,7 +37844,7 @@ "par_id2916295\n" "help.text" msgid "StDev is the standard deviation of the distribution." -msgstr "DesvEst és la desviació estàndard de la distribució." +msgstr "DesvEst és la desviació tipus de la distribució." #. kAAAs #: 04060184.xhp @@ -39367,7 +39367,7 @@ "par_id3146888\n" "help.text" msgid "Estimates the standard deviation based on a sample." -msgstr "Calcula la desviació estàndard a partir d'una mostra." +msgstr "Calcula la desviació tipus a partir d'una mostra." #. 2b5hp #: 04060185.xhp @@ -39422,7 +39422,7 @@ "par_id3151234\n" "help.text" msgid "Calculates the standard deviation of an estimation based on a sample." -msgstr "Calcula la desviació estàndard d'una estimació a partir d'una mostra." +msgstr "Calcula la desviació tipus d'una estimació a partir d'una mostra." #. JfwF6 #: 04060185.xhp @@ -39476,7 +39476,7 @@ "par_id3149187\n" "help.text" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviació estàndard a partir de tota la població." +msgstr "Calcula la desviació tipus a partir de tota la població." #. zoiE5 #: 04060185.xhp @@ -39494,7 +39494,7 @@ "par_id3153933\n" "help.text" msgid "=STDEVP(A1:A50) returns a standard deviation of the data referenced." -msgstr "=DESVESTP(A1:A50) retorna una desviació estàndard de les dades referenciades." +msgstr "=DESVESTP(A1:A50) retorna una desviació tipus de les dades referenciades." #. sQWP2 #: 04060185.xhp @@ -39521,7 +39521,7 @@ "par_id2949187\n" "help.text" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviació estàndard a partir de tota la població." +msgstr "Calcula la desviació tipus a partir de tota la població." #. J5bPQ #: 04060185.xhp @@ -39530,7 +39530,7 @@ "par_id2954392\n" "help.text" msgid "STDEV.P()" -msgstr "STDEV.P()" +msgstr "DESVEST.P()" #. 9PAi8 #: 04060185.xhp @@ -39539,7 +39539,7 @@ "par_id2953933\n" "help.text" msgid "=STDEV.P(A1:A50) returns a standard deviation of the data referenced." -msgstr "=DESVEST.P(A1:A50) retorna una desviació estàndard de les dades referenciades." +msgstr "=DESVEST.P(A1:A50) retorna una desviació tipus de les dades referenciades." #. 3VySc #: 04060185.xhp @@ -39566,7 +39566,7 @@ "par_id2849187\n" "help.text" msgid "Calculates the standard deviation based on sample of the population." -msgstr "Calcula la desviació estàndard a partir d'una mostra de la població." +msgstr "Calcula la desviació tipus a partir d'una mostra de la població." #. dG9nh #: 04060185.xhp @@ -39593,7 +39593,7 @@ "par_id2853933\n" "help.text" msgid "=STDEV.S(A1:A50) returns a standard deviation of the data referenced." -msgstr "=DESVEST.S(A1:A50) retorna una desviació estàndard de les dades referenciades." +msgstr "=DESVEST.S(A1:A50) retorna una desviació tipus de les dades referenciades." #. YJcDx #: 04060185.xhp @@ -39620,7 +39620,7 @@ "par_id3149549\n" "help.text" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviació estàndard basada en tota la població." +msgstr "Calcula la desviació tipus basada en tota la població." #. gqtD3 #: 04060185.xhp @@ -39647,7 +39647,7 @@ "par_id3145163\n" "help.text" msgid "=STDEVPA(A1:A50) returns the standard deviation of the data referenced." -msgstr "=DESVESTPA(A1:A50) retorna la desviació estàndard de les dades referenciades." +msgstr "=DESVESTPA(A1:A50) retorna la desviació tipus de les dades referenciades." #. jUrA3 #: 04060185.xhp @@ -39710,7 +39710,7 @@ "par_id3148874\n" "help.text" msgid "StDev is the standard deviation of the distribution." -msgstr "DesvEst és la desviació estàndard de la distribució." +msgstr "DesvEst és la desviació tipus de la distribució." #. vQ7nD #: 04060185.xhp @@ -39719,7 +39719,7 @@ "par_id3156067\n" "help.text" msgid "=STANDARDIZE(11;10;1) returns 1. The value 11 in a normal distribution with a mean of 10 and a standard deviation of 1 is as much above the mean of 10, as the value 1 is above the mean of the standard normal distribution." -msgstr "=ESTANDARDITZA(11;10;1) retorna 1. El valor 11, en una distribució normal amb una mitjana de 10 i una desviació estàndard d'1 està per sobre de la mitjana de 10, ja que el valor 1 està per sobre de la mitjana de la distribució normal estàndard." +msgstr "=ESTANDARDITZA(11;10;1) retorna 1. El valor 11, en una distribució normal amb una mitjana de 10 i una desviació tipus d'1 està per sobre de la mitjana de 10, ja que el valor 1 està per sobre de la mitjana de la distribució normal estàndard." #. 7Zaup #: 04060185.xhp @@ -39854,7 +39854,7 @@ "par_id3150474\n" "help.text" msgid "Returns the standard normal cumulative distribution function. The distribution has a mean of zero and a standard deviation of one." -msgstr "Retorna la funció de distribució acumulada normal estàndard. La distribució té un valor mitjà de 0 i una desviació estàndard d'1." +msgstr "Retorna la funció de distribució acumulada normal estàndard. La distribució té un valor mitjà de 0 i una desviació tipus d'1." #. uQGAH #: 04060185.xhp @@ -39917,7 +39917,7 @@ "par_id2950474\n" "help.text" msgid "Returns the standard normal cumulative distribution function. The distribution has a mean of zero and a standard deviation of one." -msgstr "Retorna la funció de distribució acumulada normal estàndard. La distribució té un valor mitjà de 0 i una desviació estàndard d'1." +msgstr "Retorna la funció de distribució acumulada normal estàndard. La distribució té un valor mitjà de 0 i una desviació tipus d'1." #. iUVFG #: 04060185.xhp @@ -46870,7 +46870,7 @@ "hd_id711619431316966\n" "help.text" msgid "Allow users of this sheet to" -msgstr "" +msgstr "Permet els usuaris d'aquest full de" #. skcWB #: 06060100.xhp @@ -47459,7 +47459,7 @@ "tit\n" "help.text" msgid "Freeze Cells" -msgstr "" +msgstr "Congela les cel·les" #. U6FYG #: 07090100.xhp @@ -47486,7 +47486,7 @@ "par_id481612313262514\n" "help.text" msgid "Freezes the first column or the first row of the current spreadsheet." -msgstr "" +msgstr "Immobilitza la primera columna o fila del full de càlcul actual." #. ozNTG #: 12010000.xhp @@ -51577,7 +51577,7 @@ "par_idN107A7\n" "help.text" msgid "Same as \"% of row\", but the grand total for the result's data field is used." -msgstr "Igual que \"% de la fila\", però s'utilitza el total general per a la columna de resultat." +msgstr "Igual que «% de la fila», però s'utilitza el total general per a la columna de resultat." #. CcmCV #: 12090105.xhp @@ -51822,7 +51822,7 @@ "par_idN1059E\n" "help.text" msgid "Displays the top or bottom nn items when you sort by a specified field." -msgstr "Mostra els elements nn superiors o inferiors quan ordeneu per un camp indicat." +msgstr "Mostra els nn elements superiors o inferiors quan ordeneu per un camp indicat." #. 9BvAe #: 12090106.xhp @@ -56116,7 +56116,7 @@ "par_id2509201519230832\n" "help.text" msgid "=AVERAGEIF(B2:B6;\">\"&SMALL(B2:B6;1))" -msgstr "=MITJANA(A1:A50)" +msgstr "=MITJANASI(B2:B6;\">\"&PETIT(B2:B6;1))" #. 6MArD #: func_averageif.xhp @@ -61289,13 +61289,12 @@ #. FowFS #: func_forecastetspiadd.xhp -#, fuzzy msgctxt "" "func_forecastetspiadd.xhp\n" "par_id0403201618595150\n" "help.text" msgid "For ETS, Calc uses an approximation based on 1000 calculations with random variations within the standard deviation of the observation data set (the historical values)." -msgstr "Per al MTS Calc utilitza una aproximació basada en 1000 càlculs amb variacions aleatòries dins de la desviació estàndard del conjunt de dades d'observació (els valors històrics)." +msgstr "Per a l'ETS, el Calc utilitza una aproximació basada en 1.000 càlculs amb variacions aleatòries dins de la desviació tipus del conjunt de dades d'observació (els valors històrics)." #. KTjG5 #: func_forecastetspiadd.xhp @@ -61428,13 +61427,12 @@ #. MWixi #: func_forecastetspimult.xhp -#, fuzzy msgctxt "" "func_forecastetspimult.xhp\n" "par_id0403201618595150\n" "help.text" msgid "For ETS, Calc uses an approximation based on 1000 calculations with random variations within the standard deviation of the observation data set (the historical values)." -msgstr "Per al MTS Calc utilitza una aproximació basada en 1000 càlculs amb variacions aleatòries dins de la desviació estàndard del conjunt de dades d'observació (els valors històrics)." +msgstr "Per a l'ETS, el Calc utilitza una aproximació basada en 1.000 càlculs amb variacions aleatòries dins de la desviació tipus del conjunt de dades d'observació (els valors històrics)." #. wtJsd #: func_forecastetspimult.xhp @@ -68662,7 +68660,7 @@ "par_id631647275500217\n" "help.text" msgid "In order to correctly identify the changes, each collaborator should enter their name in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - User Data on the Menu bar." -msgstr "" +msgstr "Perquè tots els canvis puguin identificar-se correctament, cada persona col·laboradora ha d'introduir el seu nom a %PRODUCTNAME ▸ PreferènciesEines ▸ Opcions ▸ %PRODUCTNAME ▸ Dades de l'usuari." #. k7H5Y #: solver.xhp @@ -71213,13 +71211,12 @@ #. XBfaP #: statistics_descriptive.xhp -#, fuzzy msgctxt "" "statistics_descriptive.xhp\n" "par_id1000920\n" "help.text" msgid "Standard Deviation" -msgstr "Desviació estàndard" +msgstr "Desviació tipus" #. JqtpV #: statistics_descriptive.xhp @@ -73336,13 +73333,12 @@ #. mRd9B #: xml_source.xhp -#, fuzzy msgctxt "" "xml_source.xhp\n" "bm_id240920171018528200\n" "help.text" msgid "XML Source;load XML data in spreadsheets" -msgstr "Font XML ;càrrega de dades XML en fulls de càlcul" +msgstr "font XML;càrrega de dades XML en fulls de càlcul" #. iaidA #: xml_source.xhp @@ -73385,13 +73381,12 @@ #. m8sWR #: xml_source.xhp -#, fuzzy msgctxt "" "xml_source.xhp\n" "hd_id801521494731764\n" "help.text" msgid "XML Source Dialog" -msgstr "Diàleg font XML" +msgstr "Diàleg Font XML" #. MZB9H #: xml_source.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/scalc/02.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/scalc/02.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/scalc/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/scalc/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-13 19:38+0000\n" +"PO-Revision-Date: 2023-03-24 09:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Catalan \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1549686895.000000\n" @@ -357,7 +357,7 @@ "par_id3163710\n" "help.text" msgid "Combo box sheet area" -msgstr "Àrea del full del quadre combinat" +msgstr "Quadre combinat Àrea del full" #. wFE7T #: 06010000.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/scalc/04.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/scalc/04.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/scalc/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/scalc/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-03-20 12:48+0000\n" -"Last-Translator: Jaumej \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2023-03-07 17:33+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.11.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1527510765.000000\n" @@ -33,7 +33,7 @@ "bm_id3145801\n" "help.text" msgid "spreadsheets; shortcut keys in shortcut keys; spreadsheets sheet ranges; filling" -msgstr "" +msgstr "fulls de càlcul; dreceres de teclat a dreceres de teclat; fulls de càlcul intervals de fulls; ompliment" #. CkSXA #: 01020000.xhp @@ -69,7 +69,7 @@ "par_id3166426\n" "help.text" msgid "To select multiple cells in different areas of a sheet, hold down CommandCtrl and drag in the different areas." -msgstr "Per seleccionar múltiples cel·les en àrees diferents d'un full de càlcul, manteniu premudes les tecles OrdreCtrl i arrossegueu el ratolí en cadascuna de les àrees." +msgstr "Per a seleccionar múltiples cel·les en àrees diferents d'un full de càlcul, manteniu premudes les tecles OrdreCtrl i arrossegueu el ratolí en cadascuna de les àrees." #. 3eEtd #: 01020000.xhp @@ -78,7 +78,7 @@ "par_id3150207\n" "help.text" msgid "To select multiple sheets in a spreadsheet, hold down CommandCtrl, and then click the name tabs at the lower edge of the workspace. To select only one sheet in a selection, hold down Shift, and then click the name tab of the sheet." -msgstr "Per seleccionar diversos fulls d'un full de càlcul, manteniu premuda la tecla OrdreCtrl, i després feu clic a les pestanyes amb el nom del full a la part inferior de l'espai de treball. Per seleccionar només un full mantingueu premuda la tecla Maj i alhora feu clic a la pestanya amb el nom del full." +msgstr "Per a seleccionar diversos fulls d'un full de càlcul, manteniu premuda la tecla OrdreCtrl, i després feu clic a les pestanyes amb el nom del full a la part inferior de l'espai de treball. Per a seleccionar només un full mantingueu premuda la tecla Maj i alhora feu clic a la pestanya amb el nom del full." #. DgYxH #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/scalc/guide.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/scalc/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/scalc/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-10 13:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -330,7 +330,7 @@ "par_id3155064\n" "help.text" msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button." -msgstr "Només es mostraran les files el contingut de les quals coincideixi amb els criteris del filtre, mentre que la resta de files es filtraran. Per veure si s'ha filtrat alguna fila, fixeu-vos en si els números de les files són discontinus. La columna que s'hagi utilitzat per al filtre s'identificarà amb un color diferent per al botó de fletxa." +msgstr "Només es mostraran les files el contingut de les quals coincideixi amb els criteris del filtre, mentre que la resta de files es filtraran. Per a veure si s'ha filtrat alguna fila, fixeu-vos en si els números de les files són discontinus. La columna que s'hagi utilitzat per al filtre s'identificarà amb un color diferent per al botó de fletxa." #. BTbCP #: autofilter.xhp @@ -456,7 +456,7 @@ "par_idN106D5\n" "help.text" msgid "Go to Format - AutoFormat Styles to open the AutoFormat dialog." -msgstr "" +msgstr "Aneu a Format ▸ Estils de formatació automàtica per a obrir el diàleg Formatació automàtica." #. CXiex #: autoformat.xhp @@ -1644,7 +1644,7 @@ "par_id3145271\n" "help.text" msgid "In the formula, an entire 24-hour day has a value of 1 and one hour has a value of 1/24. The logical value in parentheses is 0 or 1, corresponding to 0 or 24 hours. The result returned by the formula is automatically issued in time format due to the sequence of the operands." -msgstr "A la fórmula, un dia de 24 hores té el valor d'1 i 1 hora té el valor d'1/24. El valor lògic entre parèntesis és 0 o 1, que correspon a 0 o 24 hores. El resultat que dona la fórmula es genera automàticament en format horari a causa de la seqüència dels operands." +msgstr "A la fórmula, un dia de 24 hores té el valor d'1 i 1 hora té el valor d'1⁄24. El valor lògic entre parèntesis és 0 o 1, que correspon a 0 o 24 hores. El resultat que dona la fórmula es genera automàticament en format horari a causa de la seqüència dels operands." #. M8CyC #: calculate.xhp @@ -2778,7 +2778,7 @@ "par_id3153770\n" "help.text" msgid "\".*\" is a regular expression that designates the contents of the current cell." -msgstr "\".*\" és una expressió regular que designa el contingut de la cel·la actual." +msgstr "«.*» és una expressió regular que designa el contingut de la cel·la actual." #. r8m3j #: cellstyle_by_formula.xhp @@ -2823,7 +2823,7 @@ "par_id3147127\n" "help.text" msgid "Click Replace all." -msgstr "Feu clic a Obre." +msgstr "Feu clic a Reemplaça-ho tot." #. smBjq #: cellstyle_conditional.xhp @@ -4146,7 +4146,7 @@ "par_id3145640\n" "help.text" msgid "If, under Language, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"." -msgstr "Si a Llengua convertiu les cel·les a \"Anglès (EUA)\", el paràmetre regional de llengua (anglès) també es transferirà i el format de moneda per defecte serà \"$ 1,234.00\"." +msgstr "Si a Llengua convertiu les cel·les a «Anglès (EUA)», el paràmetre regional de llengua (anglès) també es transferirà i el format de moneda per defecte serà «$ 1,234.00»." #. CzbsK #: currency_format.xhp @@ -6153,7 +6153,7 @@ "par_id3150046\n" "help.text" msgid "To format numbers in the default currency format or as percentages, use the icons on the Formatting Bar. For other formats, choose Format - Cells. You can choose from the preset formats or define your own on the Numbers tab page." -msgstr "Per formatar nombres en el format de moneda per defecte o com a percentatges, utilitzeu les icones de la barra Formatació. Per a altres formats, trieu Format ▸ Cel·les. Podeu triar els formats predefinits o definir el vostre propi format a la pestanya Nombres." +msgstr "Per a formatar nombres en el format de moneda per defecte o com a percentatges, utilitzeu les icones de la barra Formatació. Per a altres formats, trieu Format ▸ Cel·les. Podeu triar els formats predefinits o definir el vostre propi format a la pestanya Nombres." #. QxDDZ #: format_table.xhp @@ -7161,7 +7161,7 @@ "par_id3145367\n" "help.text" msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose Format cells. Select \"Fraction\" from the Category field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8." -msgstr "Si voleu veure fraccions de més d'un dígit com ara \"1/10\", heu de canviar el format de la cel·la a la visualització de fraccions amb dígits múltiples. Obriu el menú contextual de la cel·la i trieu Formata les cel·les. Seleccioneu \"Fracció\" al camp Categoria i després seleccioneu \"-1234 10/81\". Podreu introduir fraccions com ara 12/31 o 12/32. No obstant això, les fraccions es redueixen automàticament, de manera que en l'últim exemple veuríeu 3/8." +msgstr "Si voleu veure fraccions de més d'un dígit com ara «1/10», heu de canviar el format de la cel·la a la visualització de fraccions amb dígits múltiples. Obriu el menú contextual de la cel·la i trieu Formata les cel·les. Seleccioneu «Fracció» al camp Categoria i després seleccioneu «-1234 10/81». Podreu introduir fraccions com ara 12/31 o 12/32. No obstant això, les fraccions es redueixen automàticament, de manera que en l'últim exemple veuríeu 3/8." #. ixdhC #: goalseek.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/scalc.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/scalc.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/scalc.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/scalc.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-26 20:51+0000\n" -"Last-Translator: Joan Montané \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2023-03-07 17:33+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.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1551190044.000000\n" @@ -258,7 +258,7 @@ "hd_id241636195404363\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Comentaris" #. oPaHx #: main0103.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/schart/01.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/schart/01.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/schart/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/schart/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1551858787.000000\n" @@ -636,7 +636,7 @@ "par_id1106200812112530\n" "help.text" msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled." -msgstr "Especifica la direcció del text per a un paràgraf que fa servir la disposició complexa de text (CTL). Aquesta característica només està disponible si la compatibilitat amb la disposició complexa de text està habilitada." +msgstr "Especifica la direcció del text per a un paràgraf que fa servir la disposició complexa de text (CTL). Aquesta funcionalitat només està disponible si la compatibilitat amb la disposició complexa de text està activada." #. iNVc7 #: 04020000.xhp @@ -654,7 +654,7 @@ "par_id1106200812112531\n" "help.text" msgid "Specifies whether the legend should overlap the chart. Turning off this option is useful if you want to display the legend above an empty part of the chart area instead of beside it. This way the drawing area can fill the whole chart area, increasing its readability." -msgstr "Especifica si la llegenda s'ha de superposar al diagrama. Si s'inhabilita aquesta opció podreu mostrar la llegenda per sobre d'una part buida del diagrama, en lloc de a un costat. D'aquesta manera, l'àrea de dibuix pot emplenar la totalitat del diagrama, la qual cosa n'augmenta la llegibilitat." +msgstr "Especifica si la llegenda s'ha de superposar al diagrama. Si s'inhabilita aquesta opció podreu mostrar la llegenda per sobre d'una part buida del diagrama, en lloc de a un costat. D'aquesta manera, l'àrea de dibuix pot emplenar la totalitat del diagrama, la qual cosa n'augmenta la intel·ligibilitat." #. WXyyt #: 04030000.xhp @@ -861,7 +861,7 @@ "par_id1106200812280719\n" "help.text" msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled." -msgstr "Especifica la direcció del text per a un paràgraf que fa servir la disposició complexa de text (CTL). Aquesta característica només està disponible si la compatibilitat amb la disposició complexa de text està habilitada." +msgstr "Especifica la direcció del text per a un paràgraf que fa servir la disposició complexa de text (CTL). Aquesta funcionalitat només està disponible si la compatibilitat amb la disposició complexa de text està activada." #. iCBUY #: 04030000.xhp @@ -1212,7 +1212,7 @@ "par_id3153249\n" "help.text" msgid "Standard Deviation: Displays the standard deviation (square root of the variance). Unlike other functions, error bars are centered on the mean." -msgstr "Desviació estàndard: mostra la desviació estàndard (arrel quadrada de la variància). A diferència d'altres funcions, les barres d'error se centren en la mitjana." +msgstr "Desviació tipus: mostra la desviació tipus (arrel quadrada de la variància). A diferència d'altres funcions, les barres d'error se centren en la mitjana." #. GdCG9 #: 04050000.xhp @@ -3498,7 +3498,7 @@ "par_id1106200812235271\n" "help.text" msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled." -msgstr "Especifica la direcció del text per a un paràgraf que fa servir la disposició complexa de text (CTL). Aquesta característica només està disponible si la compatibilitat amb la disposició complexa de text està habilitada." +msgstr "Especifica la direcció del text per a un paràgraf que fa servir la disposició complexa de text (CTL). Aquesta funcionalitat només està disponible si la compatibilitat amb la disposició complexa de text està activada." #. cjeWA #: 05030000.xhp @@ -3921,7 +3921,7 @@ "par_id3149129\n" "help.text" msgid "Disable this feature if you are working with \"fixed\" values, as it does not permit automatic scaling." -msgstr "Desactiveu aquesta característica si esteu treballant amb valors «fixos», ja que no permet un redimensionament automàtic." +msgstr "Desactiveu aquesta funcionalitat si esteu treballant amb valors «fixos», ja que no permet un redimensionament automàtic." #. hATXR #: 05040201.xhp @@ -3948,7 +3948,7 @@ "par_id3153956\n" "help.text" msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease." -msgstr "Utilitzeu aquesta característica si treballeu amb valors que difereixin molt els uns dels altres. Podeu utilitzar el redimensionament logarítmic a fi que les línies de graella de l'eix siguin equidistants però tinguin valors que puguin augmentar o disminuir." +msgstr "Utilitzeu aquesta funcionalitat si treballeu amb valors que difereixin molt els uns dels altres. Podeu utilitzar el redimensionament logarítmic a fi que les línies de graella de l'eix siguin equidistants però tinguin valors que puguin augmentar o disminuir." #. qtLGA #: 05040201.xhp @@ -4509,7 +4509,7 @@ "par_id3150767\n" "help.text" msgid "Opens the Chart Floor dialog, where you can modify the properties of the chart floor. The chart floor is the lower area in 3D charts. This function is only available for 3D charts." -msgstr "Obre el diàleg Base del diagrama, que us permet modificar les propietats de la base del diagrama. La base del diagrama és l'àrea inferior dels diagrames 3D. Aquesta característica només està disponible per als diagrames 3D." +msgstr "Obre el diàleg Base del diagrama, que us permet modificar les propietats de la base del diagrama. La base del diagrama és l'àrea inferior dels diagrames 3D. Aquesta funcionalitat només està disponible per als diagrames 3D." #. rVbgq #: 05080000.xhp @@ -7389,7 +7389,7 @@ "bm_id84231\n" "help.text" msgid "scatter chartsXY chartschart types;XY (scatter)error indicators in chartserror bars in chartsaverages in chartsstatistics in chartsvariances in chartsstandard deviation in charts" -msgstr "diagrames de dispersiódiagrames XYtipus de diagrama;XY (dispersió)indicadors d'error en els diagramesbarres d'error en els diagramesmitjanes en els diagramesestadístiques en els diagramesvariàncies en els diagramesdesviació estàndard en els diagrames" +msgstr "diagrames de dispersiódiagrames XYtipus de diagrama;XY (dispersió)indicadors d'error en els diagramesbarres d'error en els diagramesmitjanes en els diagramesestadístiques en els diagramesvariàncies en els diagramesdesviació tipus en els diagrames" #. QBDn7 #: type_xy.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sdatabase.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sdatabase.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sdatabase.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sdatabase.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-02-15 15:33+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -10005,7 +10005,7 @@ "par_idN105F0\n" "help.text" msgid "Opens the Connection Type Wizard." -msgstr "" +msgstr "Obre l'auxiliar de tipus de connexió." #. Rwk4Y #: menuedit.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sdraw/guide.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sdraw/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sdraw/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1547843035.000000\n" @@ -2709,7 +2709,7 @@ "par_id0930200803002463\n" "help.text" msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value." -msgstr "Feu clic dret al objecte per a obrir el menú contextual. Trieu Posició i mida ▸ Gir per a introduir un valor exacte de gir." +msgstr "Feu clic dret al objecte per a obrir el menú contextual. Trieu Posició i mida ▸ Gir per a introduir un valor de gir precís." #. G5NAB #: rotate_object.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sdraw.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sdraw.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/sdraw.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/sdraw.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-02 12:38+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1557994534.000000\n" @@ -416,7 +416,7 @@ "par_idN1061B\n" "help.text" msgid "Draws a text box where you click or drag in the current document. Click anywhere in the document, and then type or paste your text." -msgstr "Dibuixa un quadre de text en un punt qualsevol del document. Feu clic sobre un punt del document i, tot seguit, teclegeu o enganxeu-hi el text." +msgstr "Dibuixa un quadre de text allà on feu clic o arrossegueu al document actual. Feu clic a qualsevol lloc del document, i teclegeu o enganxeu el text." #. Ao4VC #: main0210.xhp @@ -794,7 +794,7 @@ "par_id3146974\n" "help.text" msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)." -msgstr "Les ordres d'aquest menú s'utilitzen per editar documents del Draw (per exemple, copiar i enganxar)." +msgstr "Les ordres d'aquest menú s'utilitzen per a editar documents del Draw (per exemple, copiar i enganxar)." #. dCFBH #: main_edit.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/00.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/00.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 07:24+0000\n" +"PO-Revision-Date: 2023-04-30 15:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -3867,7 +3867,7 @@ "hd_id3148556\n" "help.text" msgid "Importing and Exporting Spreadsheet Files" -msgstr "Importar i exportar fitxers de full de càlcul" +msgstr "Importació i exportació de fitxers de full de càlcul" #. Cdej5 #: 00000020.xhp @@ -11197,13 +11197,12 @@ #. 8AtZC #: 00040500.xhp -#, fuzzy msgctxt "" "00040500.xhp\n" "par_id3151332\n" "help.text" msgid "Menu Format - Image - Properties - Crop tab." -msgstr "Menú Format ▸ Imatge ▸ Propietats ▸ Escapça la pestanya." +msgstr "Trieu la pestanya Format ▸ Imatge ▸ Propietats ▸ Escapça." #. eREMF #: 00040500.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 07:46+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -4214,7 +4214,7 @@ "hd_id3145119\n" "help.text" msgid "Assign" -msgstr "" +msgstr "Assigna" #. 7XELF #: 01110101.xhp @@ -6334,13 +6334,12 @@ #. 8prjP #: 01160200.xhp -#, fuzzy msgctxt "" "01160200.xhp\n" "par_id3152823\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The current file format is used. If the document is new and unsaved, the format specified in %PRODUCTNAME - PreferencesTools - Options - Load/Save - General is used." -msgstr "GAobre una finestra nova en el programa de correu electrònic per defecte amb el document actual com a adjunt. S'utilitza el format de fitxer actual. Si el document és nou i no s'ha desat el format especificat a X Eines Opcions - Càrrega/Desa - General ." +msgstr "Obre una finestra nova del programa de correu electrònic per defecte amb el document actual com a adjunció. S'utilitza el format de fitxer actual. Si el document és nou i no s'ha desat, s'utilitza el format especificat a %PRODUCTNAME ▸ PreferènciesEines ▸ Opcions ▸ Carrega o desa ▸ General." #. EAoDd #: 01160200.xhp @@ -9077,13 +9076,12 @@ #. ekwoG #: 02100001.xhp -#, fuzzy msgctxt "" "02100001.xhp\n" "par_id951559576846997\n" "help.text" msgid "For example, the regular expression \"(890)7\\1\\1\" matches \"8907890890\"." -msgstr "Per exemple l'expressió regular \"(890)7\\1\\1\" coincideix amb \"8907890890\"." +msgstr "Per exemple, l'expressió regular «(890)7\\1\\1» troba «8907890890»." #. FXv6A #: 02100001.xhp @@ -11672,17 +11670,16 @@ "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 "Us permet adjuntar URL a àrees específiques, anomenades zones actives, en una imatge o en un grup d'imatges. Un mapa d'imatge és un grup d'una o més zones actives." +msgstr "Us permet adjuntar URL a àrees específiques, anomenades zones sensibles, en una imatge o en un grup d'imatges. Un mapa d'imatge és un grup d'una o més zones sensibles." #. qyFGR #: 02220000.xhp -#, fuzzy msgctxt "" "02220000.xhp\n" "par_id3149751\n" "help.text" msgid "You can draw three types of hotspots: rectangles, ellipses, and polygons. When you click a hotspot, the URL is opened in the browser window or frame that you specify. You can also specify the text that appears when your mouse rests on the hotspot." -msgstr "Podeu dibuixar tres tipus de punts calents rectangles el·lipses i polígons . Quan feu clic en un punt calent l'URL s'obre a la finestra del navegador o al marc que especifiqueu. També podeu especificar el text que apareix quan el ratolí descansa sobre el punt calent." +msgstr "Podeu traçar tres tipus de zones sensibles: rectangles, el·lipses i polígons. Quan feu clic a una zona sensible, l'URL s'obre a la finestra o el marc del navegador que especifiqueu. Podeu especificar així mateix el text que apareix quan el ratolí es posa sobre la zona sensible." #. vzWkG #: 02220000.xhp @@ -11741,13 +11738,12 @@ #. YBA3c #: 02220000.xhp -#, fuzzy msgctxt "" "02220000.xhp\n" "par_id3149795\n" "help.text" msgid "Icon Open" -msgstr "Icona Obre" +msgstr "Icona Obre" #. nGQif #: 02220000.xhp @@ -12242,7 +12238,7 @@ "par_id3157969\n" "help.text" msgid "Enter the URL for the file that you want to open when you click the selected hotspot. If you want to jump to an anchor within the document, the address should be of the form \"file:///C:/Documents/document_name#anchor_name\"." -msgstr "Introduïu l'URL del fitxer que voleu obrir quan feu clic a la zona activa seleccionada. Si voleu saltar a una àncora dins del document, l'adreça hauria de ser de la forma «file:///C:/Documents/nom_del_document#nom_de_l_àncora»." +msgstr "Introduïu l'URL del fitxer que voleu obrir quan feu clic a la zona sensible seleccionada. Si voleu saltar a una àncora dins del document, l'adreça hauria de ser de la forma «file:///C:/Documents/nom_del_document#nom_de_l_àncora»." #. DDAqK #: 02220000.xhp @@ -12260,7 +12256,7 @@ "par_id3159090\n" "help.text" msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser. If you do not enter any text, the Address is displayed." -msgstr "Introduïu el text que voleu mostrar quan el ratolí es posa a sobre de la zona activa en un navegador. Si no introduïu cap text, s'hi mostrarà l'adreça ." +msgstr "Introduïu el text que voleu mostrar quan el ratolí es posa a sobre de la zona sensible en un navegador. Si no introduïu cap text, s'hi mostrarà l'adreça ." #. DAgwb #: 02220000.xhp @@ -18229,7 +18225,6 @@ #. u9zCF #: 05020301.xhp -#, fuzzy msgctxt "" "05020301.xhp\n" "par_id3149926\n" @@ -34259,7 +34254,7 @@ "par_id3148458\n" "help.text" msgid "Enables word hyphenation for text wrapping to the next line." -msgstr "Habilita la partició de mots per a l'ajustament de text amb la línia següent." +msgstr "Activa la partició de mots per a l'ajustament de text amb la línia següent." #. LfcUR #: 05340300.xhp @@ -40254,7 +40249,7 @@ "par_id3145609\n" "help.text" msgid "Enter the minimum word length for a word to become eligible for the word completion feature." -msgstr "Introduïu la longitud mínima de les paraules perquè la característica de compleció les tingui en compte." +msgstr "Introduïu la longitud mínima de les paraules perquè la funcionalitat de compleció les tingui en compte." #. aRjTB #: 06040600.xhp @@ -43207,7 +43202,7 @@ "par_id981514310786648\n" "help.text" msgid "Insert Separator: Add a separator mark to improve menu readability and to group commands by subject." -msgstr "Insereix un separador: afegeix una marca separadora per a millorar la llegibilitat del menú i per a agrupar les ordres per tema." +msgstr "Insereix un separador: afegeix una marca separadora per a millorar la comprensibilitat del menú i per a agrupar les ordres per tema." #. EyEkZ #: 06140100.xhp @@ -43866,7 +43861,7 @@ "par_id981514310786648\n" "help.text" msgid "Insert Separator: Add a separator mark to improve menu readability and to group commands by subject." -msgstr "Insereix un separador: afegeix una marca separadora per a millorar la llegibilitat del menú i per a agrupar les ordres per tema." +msgstr "Insereix un separador: afegeix una marca separadora per a millorar la comprensibilitat del menú i per a agrupar les ordres per tema." #. vmmJm #: 06140300.xhp @@ -44201,7 +44196,7 @@ "par_id981514310786648\n" "help.text" msgid "Insert Separator: Add a separator mark to improve toolbar readability and to group commands by subject." -msgstr "Insereix un separador: afegeix una marca separadora per a millorar la llegibilitat de la barra d'eines i per a agrupar les ordres per tema." +msgstr "Insereix un separador: afegeix una marca separadora per a millorar la comprensibilitat de la barra d'eines i per a agrupar les ordres per tema." #. ZPoWt #: 06140400.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/02.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/02.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-03-27 23:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1551343529.000000\n" @@ -1073,7 +1073,7 @@ "par_id3149981\n" "help.text" msgid "Icon Combo Box" -msgstr "" +msgstr "Icona Quadre combinat" #. bUeTF #: 01170000.xhp @@ -1118,7 +1118,7 @@ "par_id3154731\n" "help.text" msgid "You can apply text and graphics to these buttons." -msgstr "Podeu aplicar text i gràfics a aquests botons." +msgstr "Podeu aplicar text i imatges a aquests botons." #. YzDya #: 01170000.xhp @@ -14016,13 +14016,12 @@ #. LFDee #: 10020000.xhp -#, fuzzy msgctxt "" "10020000.xhp\n" "par_id3154186\n" "help.text" msgid "Icon Next Page" -msgstr "Icona Pàgina següent" +msgstr "Icona Pàgina següent" #. FS8rq #: 10020000.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/06.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/06.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/06.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/06.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-10-10 09:37+0000\n" +"PO-Revision-Date: 2023-04-11 14:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1543496889.000000\n" #. EUcrc @@ -212,7 +212,7 @@ "par_id2521\n" "help.text" msgid "XML Source Dialog" -msgstr "Diàleg de codi font XML" +msgstr "Diàleg Font XML" #. Ak6ph #: shared_cui_screenshots.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/autopi.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/autopi.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/autopi.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1564507805.000000\n" @@ -5469,7 +5469,7 @@ "par_id3147102\n" "help.text" msgid "Specifies the graphics type and the target screen resolution." -msgstr "Indica el tipus de gràfics i la resolució de la pantalla de destinació." +msgstr "Indica el tipus d'imatge i la resolució de pantalla de destinació." #. C7LGE #: 01110300.xhp @@ -5703,7 +5703,7 @@ "hd_id3155392\n" "help.text" msgid "Information for the title page" -msgstr "Informació per a la pàgina de títol" +msgstr "Informació per a la portada" #. XeePD #: 01110400.xhp @@ -5775,7 +5775,7 @@ "par_id3153823\n" "help.text" msgid "Specifies additional text to appear on the title page." -msgstr "Indica el text addicional que apareixerà a la pàgina de títol." +msgstr "Indica el text addicional que apareixerà a la portada." #. upKxs #: 01110400.xhp @@ -5829,7 +5829,7 @@ "par_id3155351\n" "help.text" msgid "This page is not visible if you have unmarked the Create title page check box, or if you have selected either automatic or WebCast export." -msgstr "Aquesta pàgina no és visible si heu desactivat l'opció Crea una pàgina de títol, o si heu seleccionat l'exportació automàtica o WebCast." +msgstr "Aquesta pàgina no és visible si heu desactivat l'opció Crea una portada, o si heu seleccionat l'exportació automàtica o WebCast." #. AieZZ #: 01110500.xhp @@ -5919,7 +5919,7 @@ "par_id3150247\n" "help.text" msgid "Text formatting is obtained from the drawing or presentation. This page is skipped if you unmark the Create title page check box or if you select automatic or WebCast export." -msgstr "La formatació del text s'obté del dibuix o de la presentació. Aquesta pàgina no apareix si desactiveu la casella Crea una pàgina de títol o si seleccioneu l'exportació automàtica o WebCast." +msgstr "La formatació del text s'obté del dibuix o de la presentació. Aquesta pàgina no apareix si desactiveu la casella Crea una portada o si seleccioneu l'exportació automàtica o WebCast." #. pGnYD #: 01110600.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/guide.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/guide.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-04 11:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -6128,7 +6128,7 @@ "par_id131634735421911\n" "help.text" msgid "The text delimiter as ASCII value, like 34 for double quotes and 39 for single quotes. Example: 34 (\")." -msgstr "" +msgstr "El delimitador de textos com a valor ASCII; per exemple, 34 per a cometes dobles (\"), o 39 per a cometes simples (')." #. 5EFCS #: csv_params.xhp @@ -6542,7 +6542,7 @@ "par_id7881263433\n" "help.text" msgid "Ignore field (do not import)" -msgstr "" +msgstr "Ignora el camp (no l'importis)" #. LEJDn #: csv_params.xhp @@ -6551,7 +6551,7 @@ "par_id6920129719\n" "help.text" msgid "US-English" -msgstr "" +msgstr "Anglès (EUA)" #. wLth6 #: csv_params.xhp @@ -7424,7 +7424,7 @@ "par_id7869502\n" "help.text" msgid "Either create a new Base file using the Database Wizard, or open any existing Base file that is not read-only." -msgstr "" +msgstr "Podeu crear un fitxer nou del Base usant l'auxiliar de bases de dades o bé obrir un fitxer existent que no sigui només de lectura." #. JHYC6 #: data_im_export.xhp @@ -9053,7 +9053,7 @@ "par_id791647281944610\n" "help.text" msgid "This feature also allows to explore the document structure using the Document Object Model (DOM)." -msgstr "" +msgstr "A més, aquesta funcionalitat us permet explorar l'estructura del document a través del Model d'Objectes de Document (DOM, per les seves sigles en anglès)." #. st97j #: dev_tools.xhp @@ -9350,7 +9350,7 @@ "par_id461627914264898\n" "help.text" msgid "Property: Shows the names of the object properties." -msgstr "" +msgstr "Propietat: mostra els noms de les propietats de l'objecte." #. hDfcB #: dev_tools.xhp @@ -25683,13 +25683,12 @@ #. D3bfs #: start_parameters.xhp -#, fuzzy msgctxt "" "start_parameters.xhp\n" "par_id571571707462064\n" "help.text" msgid "The debug options --record, --backtrace, --strace and --valgrind cannot be used together. Please use them one by one." -msgstr "Les opcions de depuració --record --backtrace --strace i --valgrind no es poden utilitzar juntes. Utilitzeu-les una per una." +msgstr "Les opcions de depuració --record, --backtrace, --strace i --valgrind no es poden usar juntes. Feu-les servir una per una." #. hntPb #: start_parameters.xhp @@ -26956,7 +26955,7 @@ "par_id431607690468509\n" "help.text" msgid "Extensions Icon" -msgstr "" +msgstr "Icona Extensions" #. mwqRi #: template_manager.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/optionen.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -88,7 +88,7 @@ "par_id61597440155071\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options" -msgstr "%PRODUCTNAME - PreferènciesEines - Opcions" +msgstr "%PRODUCTNAME ▸ PreferènciesEines ▸ Opcions" #. WS53M #: 01000000.xhp @@ -3079,13 +3079,12 @@ #. BnQGA #: 01010600.xhp -#, fuzzy msgctxt "" "01010600.xhp\n" "par_id481581548792359\n" "help.text" msgid "Call Windows file associations management. This button behaves according to Microsoft file association management policy, which is to open \"Default apps\" on Windows 7, 8, and 8.1; and to show a message telling user how to open that applet manually in Windows 10." -msgstr "Truca a la gestió d'associacions de fitxer del Windows. Aquest botó es comporta d'acord amb la política de gestió d'associació de fitxers de Microsoft que és obrir \"apps predeterminades\" al Windows 7 8 i 8.1; i per mostrar un missatge explicant a l'usuari com obrir la miniaplicació manualment al Windows 10." +msgstr "Invoca la gestió d'associacions de fitxers del Windows. Aquest botó es comporta d'acord amb la política de gestió d'associació de fitxers de Microsoft que és obrir «Aplicacions per defecte» al Windows 7, 8 i 8.1; i mostrar un missatge que expliqui els usuaris com obrir aquesta miniaplicació manualment al Windows 10." #. 9MQ7V #: 01010700.xhp @@ -4547,7 +4546,7 @@ "par_id3154921\n" "help.text" msgid "The color settings for \"Visited links\" and \"Unvisited links\" only apply to documents created after the settings are applied." -msgstr "Els paràmetres de color per a «Enllaços visitats» i «Enllaços no visitats» només s'apliquen als documents creats després que s'apliqui la configuració." +msgstr "Els paràmetres de color per a «Enllaços visitats» i «Enllaços no visitats» només s'apliquen als documents creats després que s'apliquin els paràmetres." #. QiAXQ #: 01013000.xhp @@ -5431,7 +5430,7 @@ "par_id3145673\n" "help.text" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "Usa els botons de gir Mida 1 a Mida 7 per definir les mides de lletra respectives per a les etiquetes HTML a ." +msgstr "Useu els botons de selecció de valors Mida 1 a Mida 7 per a definir les respectives mides de lletra de les etiquetes HTML a ." #. gBDtB #: 01030500.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/shared.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 09:09+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -33,7 +33,7 @@ "bm_id871641583188415\n" "help.text" msgid "Find toolbar" -msgstr "" +msgstr "barra d'eines Cerca" #. WXRY5 #: find_toolbar.xhp @@ -51,7 +51,7 @@ "par_id3147762\n" "help.text" msgid "The Find toolbar can be used to quickly search the contents of %PRODUCTNAME documents." -msgstr "" +msgstr "La barra d'eines Cerca es pot usar per a cercar ràpidament entre els continguts dels documents del %PRODUCTNAME." #. wMCEY #: find_toolbar.xhp @@ -69,7 +69,7 @@ "hd_id991641581514302\n" "help.text" msgid "Find Text" -msgstr "" +msgstr "Cerca text" #. 979Nt #: find_toolbar.xhp @@ -2679,7 +2679,7 @@ "par_id3152372\n" "help.text" msgid "Cycles the case of the selected characters between Title Case, Sentence case, UPPERCASE and lowercase." -msgstr "Canvia la caixa (majúscules i minúscules) dels caràcters seleccionats entre: Majúscules Inicials, Majúscula a l'inici de frase, MAJÚSCULES i minúscules." +msgstr "Canvia la caixa (majúscules i minúscules) dels caràcters seleccionats entre «Majúscules Inicials», «Majúscula a l'inici de frase», «MAJÚSCULES» i «minúscules»." #. v24QT #: submenu_text.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/smath/01.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/smath/01.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/smath/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/smath/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-04-11 15:28+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-28 06:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -1590,7 +1590,7 @@ "par_idN10525\n" "help.text" msgid "double arrow pointing left and right Icon" -msgstr "fletxa doble apuntant a la dreta i a l'esquerra Icona" +msgstr "Icona Fletxa doble apuntant a l'esquerra i a la dreta" #. EUN9e #: 03090200.xhp @@ -9199,13 +9199,12 @@ #. CGCrv #: 03091504.xhp -#, fuzzy msgctxt "" "03091504.xhp\n" "par_id3151502\n" "help.text" msgid "Icon Sine" -msgstr "GAIcona Sine" +msgstr "Icona Sinus" #. nAEE2 #: 03091504.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/swriter/01.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/swriter/01.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/swriter/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/swriter/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-24 09:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -3552,7 +3552,7 @@ "par_id3145776\n" "help.text" msgid "To quickly jump to the footnote or endnote text, click the anchor for note in the document. You can also position the cursor in front of or behind the marker, and then press CommandCtrl+Shift+PgDn. To jump back to the anchor for the note, press PgUp." -msgstr "Per saltar ràpidament a la nota al peu o al text de la nota final, feu clic a l'àncora de la nota al document. També podeu posicionar el cursor davant o darrere del marcador i, a continuació, prémer OrdreCtrl +Maj+AvPàg . Per tornar a l'àncora de la nota, premeu RePàg," +msgstr "Per a saltar ràpidament a la nota al peu o al text de la nota final, feu clic a l'àncora de la nota al document. També podeu posicionar el cursor davant o darrere del marcador i, a continuació, prémer OrdreCtrl+Maj+AvPàg. Per a tornar a l'àncora de la nota, premeu RePàg." #. TN7ER #: 02150000.xhp @@ -7250,13 +7250,12 @@ #. Baiuy #: 04090001.xhp -#, fuzzy msgctxt "" "04090001.xhp\n" "par_id3155537\n" "help.text" msgid "To quickly insert a field from the Select list, double-click the field." -msgstr "Per inserir ràpidament un camp des de la llista seleccioneu feu doble clic al camp." +msgstr "Per a inserir ràpidament un camp de la llista Selecciona, feu doble clic al camp." #. zVKLG #: 04090001.xhp @@ -7274,7 +7273,7 @@ "par_id3145613\n" "help.text" msgid "If a field is displaying a date, time or number, then Format is used to customize the appearance of the date, time, or number. Common formats are shown in the Format window, or click \"Additional formats\" to define a custom format." -msgstr "" +msgstr "Si un camp mostra una data, una hora o un nombre, és possible fer servir el Format per a personalitzar-ne l'aspecte. Els formats més comuns són a la finestra Format, però podeu definir un format personalitzat si feu clic a «Formats addicionals»." #. ErwZ7 #: 04090001.xhp @@ -7520,7 +7519,7 @@ "par_id3146344\n" "help.text" msgid "In master documents, you can also reference from one sub-document to another. Note that the reference name will not appear in the selection field and has to be entered \"by hand\"." -msgstr "En els documents mestres, també podeu fer referències d'un subdocument a un altre. Observeu que el nom de la referència no apareixerà en el camp de selecció i s'ha d'introduir \"manualment\"." +msgstr "En els documents mestres, també podeu fer referències d'un subdocument a un altre. Observeu que el nom de la referència no apareixerà en el camp de selecció i s'ha d'introduir «a mà»." #. B2YLE #: 04090002.xhp @@ -7952,7 +7951,7 @@ "par_id757469\n" "help.text" msgid "The \"Number\" format inserts the number of the heading or numbered paragraph. The superior levels are included depending on the context, as necessary." -msgstr "El format \"Número\" insereix el número de l'encapçalament o del paràgraf numerat. Els nivells superiors s'inclouen en funció del context, si és necessari." +msgstr "El format «Número» insereix el número de l'encapçalament o del paràgraf numerat. Els nivells superiors s'inclouen en funció del context, si és necessari." #. B9MSu #: 04090002.xhp @@ -7961,7 +7960,7 @@ "par_id5189062\n" "help.text" msgid "For example, when you are in a chapter 1, subchapter 2, subpart 5, this may be numbered as 1.2.5. When you insert here a reference to text in the previous subpart \"1.2.4\" and you apply the \"Number\" format, then the reference will be shown as \"4\". If in this example the numbering is set to show more sublevels, the same reference will be shown as \"2.4\" or \"1.2.4\", depending on the setting. If you use the \"Number (full context)\" format, you will always see \"1.2.4\", no matter how the numbered paragraph is formatted." -msgstr "Per exemple, si us trobeu al capítol 1, subcapítol 2, subpart 5, això es pot numerar com 1.2.5. Quan inseriu aquí una referència al text de la subpart anterior \"1.2.4\" i apliqueu el format \"Número\", la referència es mostrarà com a \"4\". Si en aquest exemple la numeració està configurada perquè mostri més subnivells, la mateixa referència es mostrarà com a \"2.4\" o \"1.2.4\", en funció del paràmetre. Si utilitzeu el format \"Número (amb tot el context)\", sempre veureu \"1.2.4\", sigui quina sigui la formatació del paràgraf numerat." +msgstr "Per exemple, si us trobeu al capítol 1, subcapítol 2, subpart 5, això es pot numerar com 1.2.5. Quan inseriu aquí una referència al text de la subpart anterior «1.2.4» i apliqueu el format «Número», la referència es mostrarà com a «4». Si en aquest exemple la numeració està configurada perquè mostri més subnivells, la mateixa referència es mostrarà com a «2.4» o «1.2.4», en funció del paràmetre. Si utilitzeu el format «Número (amb tot el context)», sempre veureu «1.2.4», sigui quina sigui la formatació del paràgraf numerat." #. gJEWQ #: 04090002.xhp @@ -9023,7 +9022,7 @@ "par_id0903200802243625\n" "help.text" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert." -msgstr "Llista els tipus de camp disponibles. Per afegir un camp al document, feu clic en un tipus de camp, feu clic en un camp de la llista Selecciona i, a continuació, feu clic a Insereix." +msgstr "Enumera els tipus de camp disponibles. Per a afegir un camp al document, feu clic en un tipus de camp, feu clic en un camp de la llista Selecciona i, a continuació, feu clic a Insereix." #. y7FnB #: 04090005.xhp @@ -9278,7 +9277,7 @@ "par_id381583794664065\n" "help.text" msgid " This option is available for \"Set variable\", \"DDE field\", \"Number range\" and \"User Field\" field types." -msgstr "Aquesta opció està disponible per als tipus de camp «Estableix variable» «camp DDE» «Àrea de nombres» i «Camp d'usuari»." +msgstr " Aquesta opció està disponible per als tipus de camp «Estableix variable», «Camp DDE», «Interval numèric» i «Camp d'usuari»." #. KsGDR #: 04090005.xhp @@ -11606,7 +11605,7 @@ "par_id3149484\n" "help.text" msgid "Enter the phonetic reading for the corresponding entry. For example, if a Japanese Kanji word has more than one pronunciation, enter the correct pronunciation as a Katakana word. The Kanji word is then sorted according to the phonetic reading entry. This option is only available if Asian language support is enabled." -msgstr "Introduïu la lectura fonètica per a l'entrada corresponent. Per exemple, si una paraula del kanji japonès té més d'una pronunciació, introduïu la correcta com a paraula katakana. La paraula kanji aleshores s'ordena d'acord amb la lectura fonètica de l'entrada. Aquesta opció només està disponible si s'ha habilitat la compatibilitat amb les llengües asiàtiques." +msgstr "Introduïu la lectura fonètica de l'entrada corresponent. Per exemple, si una paraula del kanji japonès té més d'una pronunciació, introduïu la correcta com a paraula katakana. La paraula kanji aleshores s'ordena d'acord amb la lectura fonètica de l'entrada. Aquesta opció només està disponible si s'ha habilitat la compatibilitat amb les llengües asiàtiques." #. 79kAq #: 04120100.xhp @@ -15980,7 +15979,7 @@ "par_id3153549\n" "help.text" msgid "To reduce hyphenation, enter the length of the hyphenation zone. Instead of the possible hyphenation, the line will break between words, if the remaining horizontal space does not exceed the hyphenation zone. Hyphenation zone results in enlarged spaces between words in justified text, and greater distance from paragraph margins in non-justified text." -msgstr "" +msgstr "Per a reduir la partició de mots, introduïu la grandària de la zona de partició. En lloc d'aplicar la partició possible, la línia es partirà entre les paraules, si l'espai horitzontal restant no sobrepassa la zona de partició. La zona de partició produeix majors espais entre paraules en textos justificats o majors distàncies des dels marges del paràgraf en textos no justificats." #. RQLep #: 05030200.xhp @@ -31962,13 +31961,12 @@ #. sw2GX #: title_page.xhp -#, fuzzy msgctxt "" "title_page.xhp\n" "par_id300920161443292710\n" "help.text" msgid "Choose menu Format - Title Page" -msgstr "Trieu el menú Formata - pàgina de títol" +msgstr "Trieu el menú Format ▸ Portada" #. r7CtS #: title_page.xhp @@ -32019,13 +32017,12 @@ #. DUxW7 #: title_page.xhp -#, fuzzy msgctxt "" "title_page.xhp\n" "par_id300920161443301816\n" "help.text" msgid "From the Menu Bar, choose Format - Title page…" -msgstr "Des de la barra de menú seleccioneu el nom del menúFormata - pàgina de títol" +msgstr "Des de la barra de menús, trieu Format ▸ Portada" #. 4rBjE #: title_page.xhp @@ -32039,13 +32036,12 @@ #. 62FTe #: title_page.xhp -#, fuzzy msgctxt "" "title_page.xhp\n" "par_id300920161443301533\n" "help.text" msgid "Select the style of the title page in the Edit Page Properties area" -msgstr "Seleccioneu l'estil de la pàgina de títol a l'àrea Edita Propietats de la pàgina" +msgstr "Seleccioneu l'estil de la portada a l'àrea Edita les propietats de la pàgina" #. 3AEdA #: title_page.xhp @@ -32104,13 +32100,12 @@ #. DF7Wx #: title_page.xhp -#, fuzzy msgctxt "" "title_page.xhp\n" "par_id300920161443315460\n" "help.text" msgid "From the menu bar select Format - Title page." -msgstr "Des de la barra de menú seleccioneuFormata - pàgina de títol." +msgstr "Des de la barra de menús seleccioneu Format ▸ Portada." #. beeGV #: title_page.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/swriter/02.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/swriter/02.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/swriter/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/swriter/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-10 20:16+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-03-27 23:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1536890914.000000\n" @@ -51,7 +51,7 @@ "par_id221649422095688\n" "help.text" msgid "To define the numbering format, choose Format - Bullets and Numbering. To display the Bullets and Numbering Bar, choose View - Toolbars - Bullets and Numbering." -msgstr "" +msgstr "Per a definir el format de numeració, trieu Format ▸ Pics i numeració. Per a mostrar la barra Pics i numeració, trieu Visualitza ▸ Barres d'eines ▸ Pics i numeració." #. 8MND6 #: 02110000.xhp @@ -2124,7 +2124,7 @@ "par_id3148408\n" "help.text" msgid "Boolean Or" -msgstr "Booleà OR" +msgstr "O booleà" #. UfFLs #: 14020000.xhp @@ -2151,7 +2151,7 @@ "par_id3149434\n" "help.text" msgid "Boolean X Or" -msgstr "Operador booleà O exclusiu" +msgstr "O booleà exclusiu" #. vEKy7 #: 14020000.xhp @@ -2178,7 +2178,7 @@ "par_id3152925\n" "help.text" msgid "Boolean And" -msgstr "Booleà AND" +msgstr "I booleà" #. CPiHF #: 14020000.xhp @@ -2749,7 +2749,7 @@ "par_id3148476\n" "help.text" msgid "Number of graphics in the document" -msgstr "Nombre de gràfics en el document" +msgstr "Nombre d'imatges en el document" #. Bdc8a #: 14020000.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/swriter/04.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/swriter/04.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/swriter/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/swriter/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-01-19 07:29+0000\n" -"Last-Translator: Joan Montané \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2023-03-08 09:34+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: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1542886137.000000\n" @@ -1095,7 +1095,7 @@ "par_id9535524\n" "help.text" msgid "For sections, the cursor must be placed at the first or last character. For tables, the cursor must be placed at the first character of the first cell or the last character of the last cell." -msgstr "" +msgstr "Per a les seccions, el cursor s'ha de col·locar al primer o al darrer caràcter. Per a les taules, el cursor s'ha d'ubicar al primer caràcter de la primera cel·la o a l'últim caràcter de l'última cel·la." #. SAcMa #: 01020000.xhp @@ -1950,7 +1950,7 @@ "par_id491655382453027\n" "help.text" msgid "CommandCtrl+Shift+Tab" -msgstr "" +msgstr "OrdreCtrl+Maj+Tab" #. pARCd #: 01020000.xhp @@ -1959,7 +1959,7 @@ "par_id71655381890029\n" "help.text" msgid "With the cursor placed anywhere in a heading or list paragraph: Decreases the alignment for all headings. For list paragraphs, decreases the alignment for all paragraphs in the same list." -msgstr "" +msgstr "Amb el cursor situat a qualsevol lloc d'un encapçalament o d'un paràgraf de llista: disminueix l'alineació de tots els encapçalaments. Per als paràgrafs de llista, disminueix l'alineació de tots els paràgrafs de la mateixa llista." #. U2tpK #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/swriter/guide.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/swriter/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/swriter/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-15 15:33+0000\n" +"PO-Revision-Date: 2023-04-28 06:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -60,7 +60,7 @@ "par_id41634291500513\n" "help.text" msgid "An anchor determines the reference point for an object. The reference point could be the page or frame where the object is, a paragraph, or even a character. An object always has an anchor." -msgstr "" +msgstr "Una àncora determina el punt de referència d'un objecte. El punt de referència pot ser la pàgina o el marc on es troba l'objecte, sigui un paràgraf o fins i tot un caràcter. Un objecte sempre té una àncora." #. czeNu #: anchor_object.xhp @@ -213,7 +213,7 @@ "par_id371654784167792\n" "help.text" msgid "Objects can only be positioned on the page where their anchor is located." -msgstr "" +msgstr "Els objectes únicament es poden col·locar dins la pàgina on es troba la seva àncora." #. J6QFR #: anchor_object.xhp @@ -222,7 +222,7 @@ "hd_id341653868751593\n" "help.text" msgid "Moving an Anchor" -msgstr "" +msgstr "Moviment d'una àncora" #. 6DYVe #: anchor_object.xhp @@ -240,7 +240,7 @@ "hd_id841653869348328\n" "help.text" msgid "Changing an Anchor" -msgstr "" +msgstr "Canvi d'una àncora" #. iWVDA #: anchor_object.xhp @@ -664,7 +664,7 @@ "par_id3151245\n" "help.text" msgid "Clear the \"Replace\" check box(es)." -msgstr "Desactiveu la casella o les caselles de selecció \"Reemplaça\"." +msgstr "Desactiveu la casella o les caselles de selecció «Reemplaça»." #. 8KiPP #: auto_off.xhp @@ -727,7 +727,7 @@ "par_id3155488\n" "help.text" msgid "Clear the \"Apply border\" check box." -msgstr "Desactiveu la casella de selecció \"Aplica una vora\"." +msgstr "Desactiveu la casella de selecció «Aplica una vora»." #. F4MAM #: auto_spellcheck.xhp @@ -1159,7 +1159,7 @@ "par_id3151370\n" "help.text" msgid "For example, you can store \"read-only\" AutoText entries for your company on a central server, and user-defined AutoText entries in a local directory." -msgstr "Per exemple, podeu emmagatzemar entrades de text automàtic \"només de lectura\" per a la vostra empresa en un servidor central i entrades de text automàtic definides per l'usuari en un directori local." +msgstr "Per exemple, podeu emmagatzemar entrades de text automàtic «només de lectura» per a la vostra empresa en un servidor central i entrades de text automàtic definides per l'usuari en un directori local." #. w7E3N #: autotext.xhp @@ -1312,7 +1312,7 @@ "par_id0104201010554939\n" "help.text" msgid "To select an object in the background, hold down the CommandCtrl key and click the object. Alternatively, use the Navigator to select the object." -msgstr "Per seleccionar un objecte del fons, manteniu premuda la tecla OrdreCtrl i feu clic a l'objecte. També podeu utilitzar el Navegador per seleccionar l'objecte." +msgstr "Per a seleccionar un objecte del fons, manteniu premuda la tecla OrdreCtrl i feu clic a l'objecte. També podeu utilitzar el Navegador per a seleccionar l'objecte." #. iLoEq #: background.xhp @@ -2963,7 +2963,7 @@ "par_id3153156\n" "help.text" msgid "In text documents, you can add continuously numbered captions to graphics, tables, frames, and drawing objects." -msgstr "En els documents de text, podeu inserir llegendes numerades de manera contínua per a gràfics, taules, marcs i objectes de dibuix." +msgstr "En els documents de text, podeu inserir llegendes numerades de manera contínua per a imatges, taules, marcs i objectes de dibuix." #. fLWPD #: captions.xhp @@ -3301,13 +3301,12 @@ #. KwdyA #: change_header.xhp -#, fuzzy msgctxt "" "change_header.xhp\n" "par_id3147771\n" "help.text" msgid "In the Type area, select Page break and then select “Default Page Style” from the Style box." -msgstr "A l'àrea Type seleccioneu el salt de pàgina i després seleccioneu «Estil de pàgina predeterminat» des del quadre Estil." +msgstr "A l'àrea Tipus seleccioneu Salt de pàgina i després seleccioneu «Estil de pàgina per defecte» des del quadre Estil." #. EmHA4 #: change_header.xhp @@ -5314,7 +5313,7 @@ "par_id3406170\n" "help.text" msgid "Finding formats only finds direct character attributes, it does not find attributes applied as part of a style." -msgstr "La cerca de formats només cerca atributs de caràcter directes, i no atributs aplicats com a part d'un estil." +msgstr "La cerca de formats només troba atributs de caràcter directes, i no atributs aplicats com a part d'un estil." #. 5nDAM #: finding.xhp @@ -6944,7 +6943,7 @@ "par_id3145284\n" "help.text" msgid "Enter text or graphics in the header for the Left Page style. After the next page is added to your document, enter text or graphics in the header for the Right Page style." -msgstr "Introduïu text o gràfics a la capçalera de l'estil Pàgina esquerra. Una vegada s'hagi afegit la pàgina següent al document, introduïu text o gràfics a la capçalera de l'estil Pàgina dreta." +msgstr "Introduïu text o imatges a la capçalera de l'estil Pàgina esquerra. Una vegada s'hagi afegit la pàgina següent al document, introduïu text o imatges a la capçalera de l'estil Pàgina dreta." #. ZURPE #: header_with_chapter.xhp @@ -7088,7 +7087,7 @@ "par_id3146863\n" "help.text" msgid "Choose Insert - Field - More Fields and click the Document tab." -msgstr "Trieu Insereix - Camps - Més camps i feu clic a la pestanya Funcions." +msgstr "Trieu Insereix ▸ Camps ▸ Més camps i feu clic a la pestanya Document." #. AevwX #: header_with_chapter.xhp @@ -9131,7 +9130,7 @@ "par_id3147139\n" "help.text" msgid "Click Close." -msgstr "Feu clic a Insereix." +msgstr "Feu clic a Tanca." #. S9tTE #: indices_userdef.xhp @@ -9401,7 +9400,7 @@ "tit\n" "help.text" msgid "Inserting Graphics From $[officename] Draw or Impress" -msgstr "Inserció de gràfics des del $[officename] Draw o el $[officename] Impress" +msgstr "Inserció d'imatges des del $[officename] Draw o el $[officename] Impress" #. E5nCC #: insert_graphic_fromdraw.xhp @@ -10457,7 +10456,7 @@ "tit\n" "help.text" msgid "Defining Number Ranges" -msgstr "Definició d'intervals de nombres" +msgstr "Definició d'intervals numèrics" #. 5R8SU #: number_sequence.xhp @@ -17911,7 +17910,7 @@ "par_id5853144\n" "help.text" msgid "The AutoSize feature is available only for the last frame in a chain of linked frames." -msgstr "La característica de mida automàtica només estarà disponible per al darrer marc d'una cadena de marcs enllaçats." +msgstr "La funcionalitat de mida automàtica només estarà disponible per al darrer marc d'una cadena de marcs enllaçats." #. RdbNb #: text_nav_keyb.xhp @@ -18551,7 +18550,7 @@ "hd_id3149832\n" "help.text" msgid "To Automatically Hyphenate Text in a Paragraph" -msgstr "Per aplicar la partició de mots automàtica a un paràgraf" +msgstr "Per a aplicar la partició de mots automàtica a un paràgraf" #. rRFRE #: using_hyphen.xhp @@ -18614,7 +18613,7 @@ "par_id3149956\n" "help.text" msgid "For example, enable the automatic hyphenation option for the \"Default\" paragraph style, and then apply the style to the paragraphs that you want to hyphenate." -msgstr "Per exemple, activeu l'opció de partició de mots automàtica per a l'estil de paràgraf \"Per defecte\", i a continuació apliqueu aquest estil als paràgrafs als quals vulgueu aplicar la partició de mots." +msgstr "Per exemple, activeu l'opció de partició de mots automàtica per a l'estil de paràgraf «Per defecte» i, a continuació, apliqueu aquest estil als paràgrafs als quals vulgueu aplicar la partició de mots." #. 3E8FK #: using_hyphen.xhp @@ -19614,7 +19613,7 @@ "par_idN10BA1\n" "help.text" msgid "Use the word list to always start with a defined set of technical terms for the word completion feature." -msgstr "Utilitzeu la llista de paraules per començar sempre amb un grup definit de termes tècnics per a la característica de compleció de paraules." +msgstr "Utilitzeu la llista de paraules per a començar sempre amb un grup definit de termes tècnics per a la funcionalitat de compleció de paraules." #. ejE6F #: word_completion_adjust.xhp @@ -19659,7 +19658,7 @@ "par_idN10BC6\n" "help.text" msgid "Later you can open the reference list and automatically collect the words, so that the word completion feature starts with a defined set of words." -msgstr "Més endavant podreu obrir la llista de referència i recollir les paraules de manera automàtica, per tal que la característica de compleció de paraules s'iniciï amb un grup de paraules definit." +msgstr "Més endavant podreu obrir la llista de referència i recollir les paraules de manera automàtica, per tal que la funcionalitat de compleció de paraules s'iniciï amb un grup de paraules definit." #. r5NFf #: word_completion_adjust.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/swriter.po libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/swriter.po --- libreoffice-7.4.6/translations/source/ca/helpcontent2/source/text/swriter.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/helpcontent2/source/text/swriter.po 2023-05-03 15:22:13.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-04 18:05+0200\n" -"PO-Revision-Date: 2023-03-01 23:55+0000\n" -"Last-Translator: Joan Montané \n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -1942,7 +1942,7 @@ "par_idN10784\n" "help.text" msgid "left to right icon" -msgstr "icona d'esquerra a dreta" +msgstr "icona D'esquerra a dreta" #. Xg9vt #: main0202.xhp @@ -2410,7 +2410,7 @@ "par_id91649332206811\n" "help.text" msgid "Close Preview Icon" -msgstr "Icona de tancament de previsualització" +msgstr "Icona Tanca la previsualització" #. ZTPfH #: main0210.xhp @@ -2590,7 +2590,7 @@ "tit\n" "help.text" msgid "OLE Object Bar" -msgstr "Barra d'objectes OLE" +msgstr "Barra Objecte OLE" #. iiqD4 #: main0216.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.4.7/translations/source/ca/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.4.6/translations/source/ca/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:32+0100\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562301069.000000\n" #. tBfTE @@ -1454,7 +1454,7 @@ "OOO_CONTROL_53\n" "LngText.text" msgid "Click on an icon in the list below to change how a feature is installed." -msgstr "Feu clic en una icona de la llista de davall per a canviar com s'instal·la una característica." +msgstr "Feu clic en una icona de la llista de davall per a canviar com s'instal·la una funcionalitat." #. w5AqN #: Control.ulf @@ -1472,7 +1472,7 @@ "OOO_CONTROL_55\n" "LngText.text" msgid "Feature Description:" -msgstr "Descripció de la característica:" +msgstr "Descripció de la funcionalitat:" #. GsBZN #: Control.ulf @@ -1508,7 +1508,7 @@ "OOO_CONTROL_59\n" "LngText.text" msgid "" -msgstr "" +msgstr "" #. yPciQ #: Control.ulf @@ -1526,7 +1526,7 @@ "OOO_CONTROL_61\n" "LngText.text" msgid "Feature size" -msgstr "Mida de la característica" +msgstr "Mida de la funcionalitat" #. 6VdJ4 #: Control.ulf @@ -1562,7 +1562,7 @@ "OOO_CONTROL_67\n" "LngText.text" msgid "Will be installed on first use. (Available only if the feature supports this option.)" -msgstr "S'instal·larà en el primer ús. (Només disponible si la característica accepta aquesta opció)" +msgstr "S'instal·larà en el primer ús. (Només disponible si la funcionalitat accepta aquesta opció)" #. N5QGm #: Control.ulf @@ -1571,7 +1571,7 @@ "OOO_CONTROL_68\n" "LngText.text" msgid "This install state means the feature..." -msgstr "Aquest estat d'instal·lació significa que la característica..." +msgstr "Aquest estat d'instal·lació significa que la funcionalitat..." #. avGdu #: Control.ulf @@ -1589,7 +1589,7 @@ "OOO_CONTROL_70\n" "LngText.text" msgid "The icon next to the feature name indicates the install state of the feature. Click the icon to drop down the install state menu for each feature." -msgstr "La icona del costat del nom de la característica indica l'estat d'instal·lació de la característica. Feu clic a la icona per a desplegar el menú d'estat de cada característica." +msgstr "La icona del costat del nom de la funcionalitat n'indica l'estat d'instal·lació. Feu clic a la icona per a desplegar el menú d'estat de cada funcionalitat." #. nABcc #: Control.ulf @@ -1598,7 +1598,7 @@ "OOO_CONTROL_71\n" "LngText.text" msgid "Will be installed to run from the network. (Available only if the feature supports this option.)" -msgstr "S'instal·larà per tal d'executar-se des de la xarxa. (Només disponible si la característica accepta aquesta opció.)" +msgstr "S'instal·larà per tal d'executar-se des de la xarxa. (Només disponible si la funcionalitat accepta aquesta opció.)" #. CB9Ew #: Control.ulf @@ -4649,7 +4649,7 @@ "OOO_UITEXT_5\n" "LngText.text" msgid "This feature will not be available." -msgstr "Aquesta característica no estarà disponible." +msgstr "Aquesta funcionalitat no estarà disponible." #. r3Efh #: UIText.ulf @@ -4658,7 +4658,7 @@ "OOO_UITEXT_6\n" "LngText.text" msgid "This feature will be installed when required." -msgstr "Aquesta característica s'instal·larà quan es necessiti." +msgstr "Aquesta funcionalitat s'instal·larà quan es necessiti." #. 26Mpo #: UIText.ulf @@ -4694,7 +4694,7 @@ "OOO_UITEXT_10\n" "LngText.text" msgid "This feature will be installed to run from CD." -msgstr "Aquesta característica s'instal·larà per tal d'executar-se des del CD." +msgstr "Aquesta funcionalitat s'instal·larà per tal d'executar-se des del CD." #. GT8NC #: UIText.ulf @@ -4703,7 +4703,7 @@ "OOO_UITEXT_11\n" "LngText.text" msgid "This feature will be installed on local hard drive." -msgstr "Aquesta característica s'instal·larà al disc dur." +msgstr "Aquesta funcionalitat s'instal·larà al disc dur." #. AUGeW #: UIText.ulf @@ -4712,7 +4712,7 @@ "OOO_UITEXT_12\n" "LngText.text" msgid "This feature will be installed to run from network." -msgstr "Aquesta característica s'instal·larà per tal d'executar-se des de la xarxa." +msgstr "Aquesta funcionalitat s'instal·larà per tal d'executar-se des de la xarxa." #. 8CXdg #: UIText.ulf @@ -4730,7 +4730,7 @@ "OOO_UITEXT_14\n" "LngText.text" msgid "This feature will remain uninstalled." -msgstr "Aquesta característica continuarà desinstal·lada." +msgstr "Aquesta funcionalitat continuarà desinstal·lada." #. 9qKMG #: UIText.ulf @@ -4739,7 +4739,7 @@ "OOO_UITEXT_15\n" "LngText.text" msgid "This feature will be set to be installed when required." -msgstr "Aquesta característica es marcarà per ser instal·lada quan sigui necessària." +msgstr "Aquesta funcionalitat es marcarà per ser instal·lada quan sigui necessària." #. o9isw #: UIText.ulf @@ -4748,7 +4748,7 @@ "OOO_UITEXT_16\n" "LngText.text" msgid "This feature will be installed to run from CD." -msgstr "Aquesta característica s'instal·larà per tal d'executar-se des del CD." +msgstr "Aquesta funcionalitat s'instal·larà per tal d'executar-se des del CD." #. DzJTi #: UIText.ulf @@ -4757,7 +4757,7 @@ "OOO_UITEXT_17\n" "LngText.text" msgid "This feature will be installed on the local hard drive." -msgstr "Aquesta característica s'instal·larà en el disc dur local." +msgstr "Aquesta funcionalitat s'instal·larà en el disc dur local." #. cyGEM #: UIText.ulf @@ -4766,7 +4766,7 @@ "OOO_UITEXT_18\n" "LngText.text" msgid "This feature will be installed to run from the network." -msgstr "Aquesta característica s'instal·larà per ser executada des de la xarxa." +msgstr "Aquesta funcionalitat s'instal·larà per a ser executada des de la xarxa." #. Qz6jp #: UIText.ulf @@ -4775,7 +4775,7 @@ "OOO_UITEXT_19\n" "LngText.text" msgid "This feature will become unavailable." -msgstr "Aquesta característica esdevindrà no disponible." +msgstr "Aquesta funcionalitat esdevindrà no disponible." #. EjtVV #: UIText.ulf @@ -4793,7 +4793,7 @@ "OOO_UITEXT_21\n" "LngText.text" msgid "This feature will be available to run from CD." -msgstr "Aquesta característica estarà disponible per a executar-se des del CD." +msgstr "Aquesta funcionalitat estarà disponible per a executar-se des del CD." #. yejCc #: UIText.ulf @@ -4802,7 +4802,7 @@ "OOO_UITEXT_22\n" "LngText.text" msgid "This feature will be installed on your local hard drive." -msgstr "Aquesta característica s'instal·larà en el disc dur local." +msgstr "Aquesta funcionalitat s'instal·larà en el disc dur local." #. NUAL8 #: UIText.ulf @@ -4811,7 +4811,7 @@ "OOO_UITEXT_23\n" "LngText.text" msgid "This feature will be available to run from the network." -msgstr "Aquesta característica estarà disponible per a executar-se des de la xarxa." +msgstr "Aquesta funcionalitat estarà disponible per a executar-se des de la xarxa." #. KLMrs #: UIText.ulf @@ -4820,7 +4820,7 @@ "OOO_UITEXT_24\n" "LngText.text" msgid "This feature will be uninstalled completely, and you won't be able to run it from CD." -msgstr "Aquesta característica es desinstal·larà completament, i no la podreu executar des del CD." +msgstr "Aquesta funcionalitat es desinstal·larà completament, i no la podreu executar des del CD." #. ATGde #: UIText.ulf @@ -4829,7 +4829,7 @@ "OOO_UITEXT_25\n" "LngText.text" msgid "This feature was run from the CD but will be set to be installed when required." -msgstr "Aquesta característica s'ha executat des del CD però es marcarà per instal·lar-se quan sigui necessari." +msgstr "Aquesta funcionalitat s'ha executat des del CD però es marcarà per a instal·lar-se quan sigui necessari." #. Ce3o2 #: UIText.ulf @@ -4838,7 +4838,7 @@ "OOO_UITEXT_26\n" "LngText.text" msgid "This feature will continue to be run from the CD" -msgstr "Aquesta característica es continuarà executant des del CD" +msgstr "Aquesta funcionalitat es continuarà executant des del CD" #. vtfBk #: UIText.ulf @@ -4847,7 +4847,7 @@ "OOO_UITEXT_27\n" "LngText.text" msgid "This feature was run from the CD but will be installed on the local hard drive." -msgstr "Aquesta característica s'ha executat des del CD però s'instal·larà en el disc dur local." +msgstr "Aquesta funcionalitat s'ha executat des del CD però s'instal·larà en el disc dur local." #. NTbAF #: UIText.ulf @@ -4856,7 +4856,7 @@ "OOO_UITEXT_28\n" "LngText.text" msgid "This feature frees up [1] on your hard drive." -msgstr "Aquesta característica allibera [1] del disc dur." +msgstr "Aquesta funcionalitat allibera [1] del disc dur." #. oJ7mG #: UIText.ulf @@ -4865,7 +4865,7 @@ "OOO_UITEXT_29\n" "LngText.text" msgid "This feature requires [1] on your hard drive." -msgstr "Aquesta característica requereix [1] del disc dur." +msgstr "Aquesta funcionalitat requereix [1] del disc dur." #. FBJDk #: UIText.ulf @@ -4874,7 +4874,7 @@ "OOO_UITEXT_30\n" "LngText.text" msgid "Compiling cost for this feature..." -msgstr "S'està determinant el cost d'aquesta característica..." +msgstr "S'està determinant el cost d'aquesta funcionalitat..." #. ELDvk #: UIText.ulf @@ -4883,7 +4883,7 @@ "OOO_UITEXT_31\n" "LngText.text" msgid "This feature will be completely removed." -msgstr "Aquesta característica s'eliminarà completament." +msgstr "Aquesta funcionalitat s'eliminarà completament." #. xdW8B #: UIText.ulf @@ -4892,7 +4892,7 @@ "OOO_UITEXT_32\n" "LngText.text" msgid "This feature will be removed from your local hard drive but will be set to be installed when required." -msgstr "Aquesta característica s'eliminarà del disc dur local però es marcarà per instal·lar-se quan es necessiti." +msgstr "Aquesta funcionalitat s'eliminarà del disc dur local però es marcarà per a instal·lar-se quan es necessiti." #. MgAtM #: UIText.ulf @@ -4901,7 +4901,7 @@ "OOO_UITEXT_33\n" "LngText.text" msgid "This feature will be removed from your local hard drive but will still be available to run from CD." -msgstr "Aquesta característica s'eliminarà del disc dur local però encara estarà disponible des del CD." +msgstr "Aquesta funcionalitat s'eliminarà del disc dur local però encara estarà disponible des del CD." #. cwcP2 #: UIText.ulf @@ -4910,7 +4910,7 @@ "OOO_UITEXT_34\n" "LngText.text" msgid "This feature will remain on your local hard drive." -msgstr "Aquesta característica es mantindrà en el disc dur local." +msgstr "Aquesta funcionalitat es mantindrà en el disc dur local." #. VMpij #: UIText.ulf @@ -4919,7 +4919,7 @@ "OOO_UITEXT_35\n" "LngText.text" msgid "This feature will be removed from your local hard drive, but will be still available to run from the network." -msgstr "Aquesta característica s'eliminarà del disc dur local, però encara estarà disponible des de la xarxa." +msgstr "Aquesta funcionalitat s'eliminarà del disc dur local, però encara estarà disponible des de la xarxa." #. ryj7R #: UIText.ulf @@ -4928,7 +4928,7 @@ "OOO_UITEXT_36\n" "LngText.text" msgid "This feature will be uninstalled completely, and you won't be able to run it from the network." -msgstr "Aquesta característica es desinstal·larà completament, i no la podreu executar des de la xarxa." +msgstr "Aquesta funcionalitat es desinstal·larà completament, i no la podreu executar des de la xarxa." #. ZGYT7 #: UIText.ulf @@ -4937,7 +4937,7 @@ "OOO_UITEXT_37\n" "LngText.text" msgid "This feature was run from the network but will be installed when required." -msgstr "Aquesta característica s'ha executat des de la xarxa, però s'instal·larà quan sigui necessari." +msgstr "Aquesta funcionalitat s'ha executat des de la xarxa, però s'instal·larà quan sigui necessari." #. fDT9F #: UIText.ulf @@ -4946,7 +4946,7 @@ "OOO_UITEXT_38\n" "LngText.text" msgid "This feature was run from the network but will be installed on the local hard drive." -msgstr "Aquesta característica s'ha executat des de la xarxa, però s'instal·larà en el disc dur local." +msgstr "Aquesta funcionalitat s'ha executat des de la xarxa, però s'instal·larà en el disc dur local." #. bMoyv #: UIText.ulf @@ -4955,7 +4955,7 @@ "OOO_UITEXT_39\n" "LngText.text" msgid "This feature will continue to be run from the network" -msgstr "Aquesta característica es continuarà executant des de la xarxa" +msgstr "Aquesta funcionalitat es continuarà executant des de la xarxa" #. hVVmF #: UIText.ulf diff -Nru libreoffice-7.4.6/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -17654,7 +17654,7 @@ "Label\n" "value.text" msgid "Plain Text" -msgstr "Text" +msgstr "Text sense format" #. rCAZo #: GenericCommands.xcu @@ -23326,7 +23326,7 @@ "Label\n" "value.text" msgid "Text Animation" -msgstr "Animació de text" +msgstr "Animació del text" #. UjbXz #: GenericCommands.xcu @@ -24486,7 +24486,7 @@ "Label\n" "value.text" msgid "Text -> Record" -msgstr "Text -> registre" +msgstr "Text → registre" #. MQUxx #: GenericCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/ca/officecfg/registry/data/org/openoffice.po libreoffice-7.4.7/translations/source/ca/officecfg/registry/data/org/openoffice.po --- libreoffice-7.4.6/translations/source/ca/officecfg/registry/data/org/openoffice.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/officecfg/registry/data/org/openoffice.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2018-03-02 13:08+0000\n" -"Last-Translator: Joan Montané \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-05-03 11:51+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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1519996114.000000\n" #. foAxC @@ -44,7 +44,7 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Relation Design" -msgstr "Base: disseny de relació" +msgstr "Base: disseny de relacions" #. uEmjY #: Setup.xcu @@ -54,7 +54,7 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Query Design" -msgstr "Base: disseny de consulta" +msgstr "Base: disseny de consultes" #. X5S6E #: Setup.xcu @@ -64,7 +64,7 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: View Design" -msgstr "Base: disseny de visualització" +msgstr "Base: disseny de visualitzacions" #. Lsw4Y #: Setup.xcu diff -Nru libreoffice-7.4.6/translations/source/ca/reportdesign/messages.po libreoffice-7.4.7/translations/source/ca/reportdesign/messages.po --- libreoffice-7.4.6/translations/source/ca/reportdesign/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/reportdesign/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:20+0100\n" -"PO-Revision-Date: 2022-03-15 14:37+0000\n" +"PO-Revision-Date: 2023-03-27 19:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Catalan \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516016991.000000\n" #. FBVr9 @@ -798,7 +798,7 @@ #: reportdesign/inc/strings.hrc:124 msgctxt "RID_STR_IMPORT_GRAPHIC" msgid "Insert graphics" -msgstr "Insereix gràfics" +msgstr "Insereix imatges" #. cT8od #: reportdesign/inc/strings.hrc:125 diff -Nru libreoffice-7.4.6/translations/source/ca/sc/messages.po libreoffice-7.4.7/translations/source/ca/sc/messages.po --- libreoffice-7.4.6/translations/source/ca/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562916192.000000\n" #. kBovX @@ -1122,13 +1122,13 @@ #: sc/inc/globstr.hrc:194 msgctxt "STR_FUN_TEXT_MAX" msgid "Max" -msgstr "Màx" +msgstr "Màxim" #. A8fBH #: sc/inc/globstr.hrc:195 msgctxt "STR_FUN_TEXT_MIN" msgid "Min" -msgstr "Mín" +msgstr "Mínim" #. oZVg5 #: sc/inc/globstr.hrc:196 @@ -1140,13 +1140,13 @@ #: sc/inc/globstr.hrc:197 msgctxt "STR_FUN_TEXT_STDDEV" msgid "StDev" -msgstr "DesvEst" +msgstr "Desviació tipus" #. NhH7q #: sc/inc/globstr.hrc:198 msgctxt "STR_FUN_TEXT_VAR" msgid "Var" -msgstr "Var" +msgstr "Variància" #. XyzD7 #: sc/inc/globstr.hrc:199 @@ -3320,13 +3320,13 @@ #: sc/inc/pvfundlg.hrc:32 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Max" -msgstr "Màx" +msgstr "Màxim" #. GMhuR #: sc/inc/pvfundlg.hrc:33 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Min" -msgstr "Mín" +msgstr "Mínim" #. Feqkk #: sc/inc/pvfundlg.hrc:34 @@ -3356,7 +3356,7 @@ #: sc/inc/pvfundlg.hrc:38 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Var (Sample)" -msgstr "Var (mostra)" +msgstr "Variància (mostra)" #. yazAP #: sc/inc/pvfundlg.hrc:39 @@ -3905,7 +3905,7 @@ #: sc/inc/scfuncs.hrc:122 msgctxt "SC_OPCODE_DB_STD_DEV" msgid "Calculates the standard deviation of all cells in a data range whose contents match the search criteria." -msgstr "Calcula la desviació estàndard de totes les cel·les d'un interval de dades el contingut de les quals coincideix amb els criteris de cerca." +msgstr "Calcula la desviació tipus de totes les cel·les d'un interval de dades el contingut de les quals coincideix amb els criteris de cerca." #. abeZd #: sc/inc/scfuncs.hrc:123 @@ -3947,7 +3947,7 @@ #: sc/inc/scfuncs.hrc:134 msgctxt "SC_OPCODE_DB_STD_DEV_P" msgid "Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria." -msgstr "Retorna la desviació estàndard, quant a la població, de totes les cel·les d'un interval de dades que coincideixin amb els criteris de cerca." +msgstr "Retorna la desviació tipus relativa a la població de totes les cel·les d'un interval de dades que coincideixin amb els criteris de cerca." #. pEAMu #: sc/inc/scfuncs.hrc:135 @@ -8417,7 +8417,7 @@ #: sc/inc/scfuncs.hrc:1640 msgctxt "SC_OPCODE_LINEST" msgid "The Y data array." -msgstr "Matriu de dades Y." +msgstr "La matriu de dades Y." #. 53VYE #: sc/inc/scfuncs.hrc:1641 @@ -8429,7 +8429,7 @@ #: sc/inc/scfuncs.hrc:1642 msgctxt "SC_OPCODE_LINEST" msgid "The X data array." -msgstr "Matriu de dades X." +msgstr "La matriu de dades X." #. mdXQk #: sc/inc/scfuncs.hrc:1643 @@ -8471,7 +8471,7 @@ #: sc/inc/scfuncs.hrc:1654 msgctxt "SC_OPCODE_LOGEST" msgid "The Y data array." -msgstr "Matriu de dades Y." +msgstr "La matriu de dades Y." #. ThcLS #: sc/inc/scfuncs.hrc:1655 @@ -8483,7 +8483,7 @@ #: sc/inc/scfuncs.hrc:1656 msgctxt "SC_OPCODE_LOGEST" msgid "The X data array." -msgstr "Matriu de dades X." +msgstr "La matriu de dades X." #. DNNRH #: sc/inc/scfuncs.hrc:1657 @@ -8525,7 +8525,7 @@ #: sc/inc/scfuncs.hrc:1668 msgctxt "SC_OPCODE_TREND" msgid "The Y data array." -msgstr "Matriu de dades Y." +msgstr "La matriu de dades Y." #. gfEwT #: sc/inc/scfuncs.hrc:1669 @@ -8537,19 +8537,19 @@ #: sc/inc/scfuncs.hrc:1670 msgctxt "SC_OPCODE_TREND" msgid "The X data array as the basis for the regression." -msgstr "Matriu de dades X com a la base per a la regressió." +msgstr "La matriu de dades X com a base per a la regressió." #. rVGjP #: sc/inc/scfuncs.hrc:1671 msgctxt "SC_OPCODE_TREND" msgid "New data X" -msgstr "Dades noves X" +msgstr "Dades X noves" #. JedWB #: sc/inc/scfuncs.hrc:1672 msgctxt "SC_OPCODE_TREND" msgid "The array of X data for recalculating the values." -msgstr "Matriu de dades X per recalcular els valors." +msgstr "La matriu de dades X per a recalcular els valors." #. s3wFj #: sc/inc/scfuncs.hrc:1673 @@ -8579,7 +8579,7 @@ #: sc/inc/scfuncs.hrc:1682 msgctxt "SC_OPCODE_GROWTH" msgid "The Y data array." -msgstr "Matriu de dades Y." +msgstr "La matriu de dades Y." #. f6ix4 #: sc/inc/scfuncs.hrc:1683 @@ -8591,19 +8591,19 @@ #: sc/inc/scfuncs.hrc:1684 msgctxt "SC_OPCODE_GROWTH" msgid "The X data array as the basis for the regression." -msgstr "Matriu de dades X com a la base per a la regressió." +msgstr "La matriu de dades X com a base per a la regressió." #. L8Rx3 #: sc/inc/scfuncs.hrc:1685 msgctxt "SC_OPCODE_GROWTH" msgid "New data X" -msgstr "Dades noves X" +msgstr "Dades X noves" #. kFxgD #: sc/inc/scfuncs.hrc:1686 msgctxt "SC_OPCODE_GROWTH" msgid "The array of X data for recalculating the values." -msgstr "Matriu de dades X per recalcular els valors." +msgstr "La matriu de dades X per a recalcular els valors." #. brbfA #: sc/inc/scfuncs.hrc:1687 @@ -8837,7 +8837,7 @@ #: sc/inc/scfuncs.hrc:1790 msgctxt "SC_OPCODE_ST_DEV" msgid "Calculates the standard deviation based on a sample." -msgstr "Calcula la desviació estàndard basada en una mostra." +msgstr "Calcula la desviació tipus basada en una mostra." #. 6ANXx #: sc/inc/scfuncs.hrc:1791 @@ -8855,7 +8855,7 @@ #: sc/inc/scfuncs.hrc:1798 msgctxt "SC_OPCODE_ST_DEV_S" msgid "Calculates the standard deviation based on a sample." -msgstr "Calcula la desviació estàndard basada en una mostra." +msgstr "Calcula la desviació tipus basada en una mostra." #. cGxRb #: sc/inc/scfuncs.hrc:1799 @@ -8873,7 +8873,7 @@ #: sc/inc/scfuncs.hrc:1806 msgctxt "SC_OPCODE_ST_DEV_A" msgid "Returns the standard deviation based on a sample. Text is evaluated as zero." -msgstr "Retorna la desviació estàndard basada en una mostra. El text s'avalua com a zero." +msgstr "Retorna la desviació tipus basada en una mostra. El text es calcula com a zero." #. Smbhk #: sc/inc/scfuncs.hrc:1807 @@ -8891,7 +8891,7 @@ #: sc/inc/scfuncs.hrc:1814 msgctxt "SC_OPCODE_ST_DEV_P" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviació estàndard basada en tota la població." +msgstr "Calcula la desviació tipus basada en tota la població." #. h6Evi #: sc/inc/scfuncs.hrc:1815 @@ -8903,13 +8903,13 @@ #: sc/inc/scfuncs.hrc:1816 msgctxt "SC_OPCODE_ST_DEV_P" msgid "Number 1, number 2, ... are numerical arguments which portray a population." -msgstr "Nombre 1, nombre 2... són arguments numèrics que representen una mostra d'una població." +msgstr "Nombre 1, nombre 2... són arguments numèrics que representen una població." #. MH6d3 #: sc/inc/scfuncs.hrc:1822 msgctxt "SC_OPCODE_ST_DEV_P_MS" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviació estàndard basada en tota la població." +msgstr "Calcula la desviació tipus basada en tota la població." #. 4JaDC #: sc/inc/scfuncs.hrc:1823 @@ -8921,13 +8921,13 @@ #: sc/inc/scfuncs.hrc:1824 msgctxt "SC_OPCODE_ST_DEV_P_MS" msgid "Number 1, number 2, ... are numerical arguments which portray a population." -msgstr "Nombre 1, nombre 2... són arguments numèrics que representen una mostra d'una població." +msgstr "Nombre 1, nombre 2... són arguments numèrics que representen una població." #. mLDRD #: sc/inc/scfuncs.hrc:1830 msgctxt "SC_OPCODE_ST_DEV_P_A" msgid "Returns the standard deviation based on the entire population. Text is evaluated as zero." -msgstr "Retorna la desviació estàndard basada en tota la població. El text s'avalua com a zero." +msgstr "Retorna la desviació tipus basada en tota la població. El text es calcula com a zero." #. XaMUA #: sc/inc/scfuncs.hrc:1831 @@ -8981,7 +8981,7 @@ #: sc/inc/scfuncs.hrc:1854 msgctxt "SC_OPCODE_DEV_SQ" msgid "Returns the sum of squares of deviations from the sample mean value" -msgstr "Retorna la suma dels quadrats de les desviacions dels valors de la mostra amb la mitjana corresponent." +msgstr "Retorna la suma dels quadrats de les desviacions del valor mitjà de la mostra" #. FMeFc #: sc/inc/scfuncs.hrc:1855 @@ -9047,7 +9047,7 @@ #: sc/inc/scfuncs.hrc:1880 msgctxt "SC_OPCODE_SKEWP" msgid "Number 1, number 2, ... are numerical arguments portraying the population." -msgstr "Nombre 1, nombre 2... són arguments numèrics que representen una mostra d'una població." +msgstr "Nombre 1, nombre 2... són arguments numèrics que representen la població." #. wwgFL #: sc/inc/scfuncs.hrc:1886 @@ -9125,7 +9125,7 @@ #: sc/inc/scfuncs.hrc:1918 msgctxt "SC_OPCODE_MODAL_VALUE_MS" msgid "Returns the most common value in a sample." -msgstr "Retorna el valor més comú en un una mostra." +msgstr "Retorna el valor més comú en una mostra." #. BH4Gt #: sc/inc/scfuncs.hrc:1919 @@ -9143,7 +9143,7 @@ #: sc/inc/scfuncs.hrc:1926 msgctxt "SC_OPCODE_MODAL_VALUE_MULTI" msgid "Returns the most common value in a sample." -msgstr "Retorna el valor més freqüent en una mostra." +msgstr "Retorna el valor més comú en una mostra." #. gXx2e #: sc/inc/scfuncs.hrc:1927 @@ -9191,7 +9191,7 @@ #: sc/inc/scfuncs.hrc:1944 msgctxt "SC_OPCODE_PERCENTILE" msgid "The array of the data in the sample." -msgstr "Matriu de les dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. ojZCE #: sc/inc/scfuncs.hrc:1945 @@ -9221,7 +9221,7 @@ #: sc/inc/scfuncs.hrc:1954 msgctxt "SC_OPCODE_PERCENTILE_EXC" msgid "The array of the data in the sample." -msgstr "Matriu de les dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. 2Xss9 #: sc/inc/scfuncs.hrc:1955 @@ -9251,7 +9251,7 @@ #: sc/inc/scfuncs.hrc:1964 msgctxt "SC_OPCODE_PERCENTILE_INC" msgid "The array of the data in the sample." -msgstr "La matriu de dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. KCoTn #: sc/inc/scfuncs.hrc:1965 @@ -9281,7 +9281,7 @@ #: sc/inc/scfuncs.hrc:1974 msgctxt "SC_OPCODE_QUARTILE" msgid "The array of the data in the sample." -msgstr "Matriu de les dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. FTjuA #: sc/inc/scfuncs.hrc:1975 @@ -9311,7 +9311,7 @@ #: sc/inc/scfuncs.hrc:1984 msgctxt "SC_OPCODE_QUARTILE_EXC" msgid "The array of the data in the sample." -msgstr "Matriu de les dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. awisv #: sc/inc/scfuncs.hrc:1985 @@ -9371,7 +9371,7 @@ #: sc/inc/scfuncs.hrc:2004 msgctxt "SC_OPCODE_LARGE" msgid "The array of the data in the sample." -msgstr "Matriu de les dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. PjGgh #: sc/inc/scfuncs.hrc:2005 @@ -9401,7 +9401,7 @@ #: sc/inc/scfuncs.hrc:2014 msgctxt "SC_OPCODE_SMALL" msgid "The array of the data in the sample." -msgstr "Matriu de les dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. ceVdB #: sc/inc/scfuncs.hrc:2015 @@ -9431,7 +9431,7 @@ #: sc/inc/scfuncs.hrc:2024 msgctxt "SC_OPCODE_PERCENT_RANK" msgid "The array of the data in the sample." -msgstr "Matriu de les dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. wDy3T #: sc/inc/scfuncs.hrc:2025 @@ -9515,7 +9515,7 @@ #: sc/inc/scfuncs.hrc:2048 msgctxt "SC_OPCODE_PERCENT_RANK_INC" msgid "The array of the data in the sample." -msgstr "Matriu de les dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. CDS3K #: sc/inc/scfuncs.hrc:2049 @@ -9569,7 +9569,7 @@ #: sc/inc/scfuncs.hrc:2062 msgctxt "SC_OPCODE_RANK" msgid "The array of the data in the sample." -msgstr "Matriu de les dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. YmafZ #: sc/inc/scfuncs.hrc:2063 @@ -9611,7 +9611,7 @@ #: sc/inc/scfuncs.hrc:2074 msgctxt "SC_OPCODE_RANK_EQ" msgid "The array of the data in the sample." -msgstr "Matriu de les dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. aFChD #: sc/inc/scfuncs.hrc:2075 @@ -9653,7 +9653,7 @@ #: sc/inc/scfuncs.hrc:2086 msgctxt "SC_OPCODE_RANK_AVG" msgid "The array of the data in the sample." -msgstr "Matriu de les dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. 5e2Co #: sc/inc/scfuncs.hrc:2087 @@ -9683,7 +9683,7 @@ #: sc/inc/scfuncs.hrc:2096 msgctxt "SC_OPCODE_TRIM_MEAN" msgid "The array of the data in the sample." -msgstr "Matriu de les dades de la mostra." +msgstr "La matriu de les dades de la mostra." #. cHNxJ #: sc/inc/scfuncs.hrc:2097 @@ -9713,7 +9713,7 @@ #: sc/inc/scfuncs.hrc:2106 msgctxt "SC_OPCODE_PROB" msgid "The sample data array." -msgstr "Matriu de dades de mostra." +msgstr "La matriu de dades de mostra." #. XF3fT #: sc/inc/scfuncs.hrc:2107 @@ -10289,7 +10289,7 @@ #: sc/inc/scfuncs.hrc:2272 msgctxt "SC_OPCODE_NORM_DIST" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "Desviació estàndard. La desviació estàndard de la distribució normal." +msgstr "Desviació tipus. La desviació tipus de la distribució normal." #. qMewn #: sc/inc/scfuncs.hrc:2273 @@ -10343,7 +10343,7 @@ #: sc/inc/scfuncs.hrc:2286 msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "Desviació estàndard. La desviació estàndard de la distribució normal." +msgstr "Desviació tipus. La desviació tipus de la distribució normal." #. CqHN6 #: sc/inc/scfuncs.hrc:2287 @@ -10397,7 +10397,7 @@ #: sc/inc/scfuncs.hrc:2300 msgctxt "SC_OPCODE_NORM_INV" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "Desviació estàndard. La desviació estàndard de la distribució normal." +msgstr "Desviació tipus. La desviació tipus de la distribució normal." #. wodEb #: sc/inc/scfuncs.hrc:2306 @@ -10439,7 +10439,7 @@ #: sc/inc/scfuncs.hrc:2312 msgctxt "SC_OPCODE_NORM_INV_MS" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "Desviació estàndard. La desviació estàndard de la distribució normal." +msgstr "Desviació tipus. La desviació tipus de la distribució normal." #. yX9mS #: sc/inc/scfuncs.hrc:2318 @@ -10565,7 +10565,7 @@ #: sc/inc/scfuncs.hrc:2358 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "The standard deviation of the log normal distribution. It is set to 1 if omitted." -msgstr "La desviació estàndard de la distribució log normal. Si s'omet, s'estableix a 1." +msgstr "La desviació tipus de la distribució logarítmica normal. Si s'omet, s'estableix a 1." #. VsLsD #: sc/inc/scfuncs.hrc:2359 @@ -10619,7 +10619,7 @@ #: sc/inc/scfuncs.hrc:2372 msgctxt "SC_OPCODE_LOG_NORM_DIST_MS" msgid "The standard deviation of the log normal distribution." -msgstr "La desviació estàndard de la distribució log-normal." +msgstr "La desviació tipus de la distribució logarítmica normal." #. JeiQB #: sc/inc/scfuncs.hrc:2373 @@ -10673,7 +10673,7 @@ #: sc/inc/scfuncs.hrc:2386 msgctxt "SC_OPCODE_LOG_INV" msgid "Standard deviation. The standard deviation of the log normal distribution." -msgstr "Desviació estàndard. La desviació estàndard de la distribució log normal." +msgstr "Desviació tipus. La desviació tipus de la distribució logarítmica normal." #. T4N5D #: sc/inc/scfuncs.hrc:2392 @@ -10715,7 +10715,7 @@ #: sc/inc/scfuncs.hrc:2398 msgctxt "SC_OPCODE_LOG_INV_MS" msgid "Standard deviation. The standard deviation of the log normal distribution." -msgstr "Desviació estàndard. La desviació estàndard de la distribució log normal." +msgstr "Desviació tipus. La desviació tipus de la distribució logarítmica normal." #. 8wWP2 #: sc/inc/scfuncs.hrc:2404 @@ -11459,7 +11459,7 @@ #: sc/inc/scfuncs.hrc:2604 msgctxt "SC_OPCODE_HYP_GEOM_DIST" msgid "The number of successes in the sample." -msgstr "Nombre d'èxits de la mostra." +msgstr "El nombre d'èxits de la mostra." #. 3jPV7 #: sc/inc/scfuncs.hrc:2605 @@ -11471,7 +11471,7 @@ #: sc/inc/scfuncs.hrc:2606 msgctxt "SC_OPCODE_HYP_GEOM_DIST" msgid "The size of the sample." -msgstr "Mida de la mostra." +msgstr "La mida de la mostra." #. idG5B #: sc/inc/scfuncs.hrc:2607 @@ -11525,7 +11525,7 @@ #: sc/inc/scfuncs.hrc:2620 msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS" msgid "The number of successes in the sample." -msgstr "Nombre d'èxits de la mostra." +msgstr "El nombre d'èxits de la mostra." #. tssd5 #: sc/inc/scfuncs.hrc:2621 @@ -11537,7 +11537,7 @@ #: sc/inc/scfuncs.hrc:2622 msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS" msgid "The size of the sample." -msgstr "Mida de la mostra." +msgstr "La mida de la mostra." #. 54WRs #: sc/inc/scfuncs.hrc:2623 @@ -12377,7 +12377,7 @@ #: sc/inc/scfuncs.hrc:2879 msgctxt "SC_OPCODE_STANDARD" msgid "The standard deviation used for scaling." -msgstr "Desviació estàndard utilitzada per al redimensionament." +msgstr "La desviació tipus utilitzada per al redimensionament." #. bDxG9 #: sc/inc/scfuncs.hrc:2885 @@ -12467,7 +12467,7 @@ #: sc/inc/scfuncs.hrc:2909 msgctxt "SC_OPCODE_CONFIDENCE" msgid "The standard deviation of the population." -msgstr "Desviació estàndard de la població." +msgstr "La desviació tipus de la població." #. SfSN7 #: sc/inc/scfuncs.hrc:2910 @@ -12509,7 +12509,7 @@ #: sc/inc/scfuncs.hrc:2921 msgctxt "SC_OPCODE_CONFIDENCE_N" msgid "The standard deviation of the population." -msgstr "Desviació estàndard de la població." +msgstr "La desviació tipus de la població." #. 5y2Nz #: sc/inc/scfuncs.hrc:2922 @@ -12551,7 +12551,7 @@ #: sc/inc/scfuncs.hrc:2933 msgctxt "SC_OPCODE_CONFIDENCE_T" msgid "The standard deviation of the population." -msgstr "Desviació estàndard de la població." +msgstr "La desviació tipus de la població." #. KrmhU #: sc/inc/scfuncs.hrc:2934 @@ -12605,7 +12605,7 @@ #: sc/inc/scfuncs.hrc:2947 msgctxt "SC_OPCODE_Z_TEST" msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "La desviació estàndard coneguda de la població. Si s'omet, es fa servir la desviació estàndard de la mostra donada." +msgstr "La desviació tipus coneguda de la població. Si s'omet, es fa servir la desviació tipus de la mostra donada." #. wxJ43 #: sc/inc/scfuncs.hrc:2953 @@ -12647,7 +12647,7 @@ #: sc/inc/scfuncs.hrc:2959 msgctxt "SC_OPCODE_Z_TEST_MS" msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "La desviació estàndard coneguda de la població. Si s'omet, es fa servir la desviació estàndard de la mostra donada." +msgstr "La desviació tipus coneguda de la població. Si s'omet, es fa servir la desviació tipus de la mostra donada." #. msJXN #: sc/inc/scfuncs.hrc:2965 @@ -12665,7 +12665,7 @@ #: sc/inc/scfuncs.hrc:2967 msgctxt "SC_OPCODE_CHI_TEST" msgid "The observed data array." -msgstr "Matriu de dades observada." +msgstr "La matriu de dades observada." #. MAJEC #: sc/inc/scfuncs.hrc:2968 @@ -12695,7 +12695,7 @@ #: sc/inc/scfuncs.hrc:2977 msgctxt "SC_OPCODE_CHI_TEST_MS" msgid "The observed data array." -msgstr "Matriu de dades observada." +msgstr "La matriu de dades observada." #. Ncp5A #: sc/inc/scfuncs.hrc:2978 @@ -12725,7 +12725,7 @@ #: sc/inc/scfuncs.hrc:2987 msgctxt "SC_OPCODE_F_TEST" msgid "The first record array." -msgstr "Primera matriu de registres." +msgstr "La primera matriu de registres." #. HcSHD #: sc/inc/scfuncs.hrc:2988 @@ -12737,7 +12737,7 @@ #: sc/inc/scfuncs.hrc:2989 msgctxt "SC_OPCODE_F_TEST" msgid "The second record array." -msgstr "Segona matriu de registres." +msgstr "La segona matriu de registres." #. xAyB8 #: sc/inc/scfuncs.hrc:2995 @@ -12755,7 +12755,7 @@ #: sc/inc/scfuncs.hrc:2997 msgctxt "SC_OPCODE_F_TEST_MS" msgid "The first record array." -msgstr "Primera matriu de registres." +msgstr "La primera matriu de registres." #. 45maL #: sc/inc/scfuncs.hrc:2998 @@ -12767,7 +12767,7 @@ #: sc/inc/scfuncs.hrc:2999 msgctxt "SC_OPCODE_F_TEST_MS" msgid "The second record array." -msgstr "Segona matriu de registres." +msgstr "La segona matriu de registres." #. TZSAL #: sc/inc/scfuncs.hrc:3005 @@ -12785,7 +12785,7 @@ #: sc/inc/scfuncs.hrc:3007 msgctxt "SC_OPCODE_T_TEST" msgid "The first record array." -msgstr "Primera matriu de registres." +msgstr "La primera matriu de registres." #. YWjTr #: sc/inc/scfuncs.hrc:3008 @@ -12797,7 +12797,7 @@ #: sc/inc/scfuncs.hrc:3009 msgctxt "SC_OPCODE_T_TEST" msgid "The second record array." -msgstr "Segona matriu de registres." +msgstr "La segona matriu de registres." #. hWPAL #: sc/inc/scfuncs.hrc:3010 @@ -12839,7 +12839,7 @@ #: sc/inc/scfuncs.hrc:3021 msgctxt "SC_OPCODE_T_TEST_MS" msgid "The first record array." -msgstr "Primera matriu de registres." +msgstr "La primera matriu de registres." #. QdUAu #: sc/inc/scfuncs.hrc:3022 @@ -12851,7 +12851,7 @@ #: sc/inc/scfuncs.hrc:3023 msgctxt "SC_OPCODE_T_TEST_MS" msgid "The second record array." -msgstr "Segona matriu de registres." +msgstr "La segona matriu de registres." #. 7UpjE #: sc/inc/scfuncs.hrc:3024 @@ -12893,7 +12893,7 @@ #: sc/inc/scfuncs.hrc:3035 msgctxt "SC_OPCODE_RSQ" msgid "The Y data array." -msgstr "Matriu de dades Y." +msgstr "La matriu de dades Y." #. kARX2 #: sc/inc/scfuncs.hrc:3036 @@ -12905,7 +12905,7 @@ #: sc/inc/scfuncs.hrc:3037 msgctxt "SC_OPCODE_RSQ" msgid "The X data array." -msgstr "Matriu de dades X." +msgstr "La matriu de dades X." #. EeGGQ #: sc/inc/scfuncs.hrc:3043 @@ -12923,7 +12923,7 @@ #: sc/inc/scfuncs.hrc:3045 msgctxt "SC_OPCODE_INTERCEPT" msgid "The Y data array." -msgstr "Matriu de dades Y." +msgstr "La matriu de dades Y." #. TdM7y #: sc/inc/scfuncs.hrc:3046 @@ -12935,7 +12935,7 @@ #: sc/inc/scfuncs.hrc:3047 msgctxt "SC_OPCODE_INTERCEPT" msgid "The X data array." -msgstr "Matriu de dades X." +msgstr "La matriu de dades X." #. DCeGA #: sc/inc/scfuncs.hrc:3053 @@ -12953,7 +12953,7 @@ #: sc/inc/scfuncs.hrc:3055 msgctxt "SC_OPCODE_SLOPE" msgid "The Y data array." -msgstr "Matriu de dades Y." +msgstr "La matriu de dades Y." #. rknKp #: sc/inc/scfuncs.hrc:3056 @@ -12965,7 +12965,7 @@ #: sc/inc/scfuncs.hrc:3057 msgctxt "SC_OPCODE_SLOPE" msgid "The X data array." -msgstr "Matriu de dades X." +msgstr "La matriu de dades X." #. xfNoa #: sc/inc/scfuncs.hrc:3063 @@ -12983,7 +12983,7 @@ #: sc/inc/scfuncs.hrc:3065 msgctxt "SC_OPCODE_STEYX" msgid "The Y data array." -msgstr "Matriu de dades Y." +msgstr "La matriu de dades Y." #. QEGMx #: sc/inc/scfuncs.hrc:3066 @@ -12995,7 +12995,7 @@ #: sc/inc/scfuncs.hrc:3067 msgctxt "SC_OPCODE_STEYX" msgid "The X data array." -msgstr "Matriu de dades X." +msgstr "La matriu de dades X." #. pamGW #: sc/inc/scfuncs.hrc:3073 @@ -13013,7 +13013,7 @@ #: sc/inc/scfuncs.hrc:3075 msgctxt "SC_OPCODE_PEARSON" msgid "The first record array." -msgstr "Primera matriu de registres." +msgstr "La primera matriu de registres." #. wbKnK #: sc/inc/scfuncs.hrc:3076 @@ -13025,7 +13025,7 @@ #: sc/inc/scfuncs.hrc:3077 msgctxt "SC_OPCODE_PEARSON" msgid "The second record array." -msgstr "Segona matriu de registres." +msgstr "La segona matriu de registres." #. WDcKB #: sc/inc/scfuncs.hrc:3083 @@ -13043,7 +13043,7 @@ #: sc/inc/scfuncs.hrc:3085 msgctxt "SC_OPCODE_CORREL" msgid "The first record array." -msgstr "Primera matriu de registres." +msgstr "La primera matriu de registres." #. hqTcz #: sc/inc/scfuncs.hrc:3086 @@ -13055,7 +13055,7 @@ #: sc/inc/scfuncs.hrc:3087 msgctxt "SC_OPCODE_CORREL" msgid "The second record array." -msgstr "Segona matriu de registres." +msgstr "La segona matriu de registres." #. QR42t #: sc/inc/scfuncs.hrc:3093 @@ -13073,7 +13073,7 @@ #: sc/inc/scfuncs.hrc:3095 msgctxt "SC_OPCODE_COVAR" msgid "The first record array." -msgstr "Primera matriu de registres." +msgstr "La primera matriu de registres." #. 2Da2J #: sc/inc/scfuncs.hrc:3096 @@ -13085,7 +13085,7 @@ #: sc/inc/scfuncs.hrc:3097 msgctxt "SC_OPCODE_COVAR" msgid "The second record array." -msgstr "Segona matriu de registres." +msgstr "La segona matriu de registres." #. fbobA #: sc/inc/scfuncs.hrc:3103 @@ -13103,7 +13103,7 @@ #: sc/inc/scfuncs.hrc:3105 msgctxt "SC_OPCODE_COVARIANCE_P" msgid "The first record array." -msgstr "Primera matriu de registres." +msgstr "La primera matriu de registres." #. FKuFq #: sc/inc/scfuncs.hrc:3106 @@ -13115,7 +13115,7 @@ #: sc/inc/scfuncs.hrc:3107 msgctxt "SC_OPCODE_COVARIANCE_P" msgid "The second record array." -msgstr "Segona matriu de registres." +msgstr "La segona matriu de registres." #. 3L3ku #: sc/inc/scfuncs.hrc:3113 @@ -13133,7 +13133,7 @@ #: sc/inc/scfuncs.hrc:3115 msgctxt "SC_OPCODE_COVARIANCE_S" msgid "The first record array." -msgstr "Primera matriu de registres." +msgstr "La primera matriu de registres." #. pYdps #: sc/inc/scfuncs.hrc:3116 @@ -13145,7 +13145,7 @@ #: sc/inc/scfuncs.hrc:3117 msgctxt "SC_OPCODE_COVARIANCE_S" msgid "The second record array." -msgstr "Segona matriu de registres." +msgstr "La segona matriu de registres." #. BiBeC #: sc/inc/scfuncs.hrc:3123 @@ -13175,7 +13175,7 @@ #: sc/inc/scfuncs.hrc:3127 msgctxt "SC_OPCODE_FORECAST" msgid "The Y data array." -msgstr "Matriu de dades Y." +msgstr "La matriu de dades Y." #. RvAhN #: sc/inc/scfuncs.hrc:3128 @@ -13187,7 +13187,7 @@ #: sc/inc/scfuncs.hrc:3129 msgctxt "SC_OPCODE_FORECAST" msgid "The X data array." -msgstr "Matriu de dades X." +msgstr "La matriu de dades X." #. XHpHo #: sc/inc/scfuncs.hrc:3135 @@ -17175,19 +17175,19 @@ #: sc/inc/strings.hrc:128 msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1" msgid "Calc A1" -msgstr "Calc A1" +msgstr "A1 del Calc" #. xEQCB #: sc/inc/strings.hrc:129 msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1" msgid "Excel A1" -msgstr "Excel A1" +msgstr "A1 de l'Excel" #. KLkBH #: sc/inc/strings.hrc:130 msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1" msgid "Excel R1C1" -msgstr "Excel R1C1" +msgstr "R1C1 de l'Excel" #. pr4wW #: sc/inc/strings.hrc:131 @@ -17812,7 +17812,7 @@ #: sc/inc/strings.hrc:247 msgctxt "STRID_CALC_STD_DEVIATION" msgid "Standard Deviation" -msgstr "Desviació estàndard" +msgstr "Desviació tipus" #. JTx7f #: sc/inc/strings.hrc:248 @@ -17951,7 +17951,7 @@ #: sc/inc/strings.hrc:271 msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION" msgid "Standard Deviation" -msgstr "Desviació estàndard" +msgstr "Desviació tipus" #. ChwWE #: sc/inc/strings.hrc:272 @@ -18624,13 +18624,13 @@ #: sc/inc/subtotals.hrc:31 msgctxt "subtotalgrppage|liststore1" msgid "Max" -msgstr "Màx" +msgstr "Màxim" #. iidBk #: sc/inc/subtotals.hrc:32 msgctxt "subtotalgrppage|liststore1" msgid "Min" -msgstr "Mín" +msgstr "Mínim" #. VqvEW #: sc/inc/subtotals.hrc:33 @@ -18660,7 +18660,7 @@ #: sc/inc/subtotals.hrc:37 msgctxt "subtotalgrppage|liststore1" msgid "Var (Sample)" -msgstr "Var (mostra)" +msgstr "Variància (mostra)" #. bcyAy #: sc/inc/subtotals.hrc:38 @@ -19218,13 +19218,13 @@ #: sc/uiconfig/scalc/ui/autosum.ui:28 msgctxt "autosum|min" msgid "Min" -msgstr "Mín." +msgstr "Mínim" #. pWv7a #: sc/uiconfig/scalc/ui/autosum.ui:36 msgctxt "autosum|max" msgid "Max" -msgstr "Màx." +msgstr "Màxim" #. mAz9L #: sc/uiconfig/scalc/ui/autosum.ui:44 @@ -19248,7 +19248,7 @@ #: sc/uiconfig/scalc/ui/autosum.ui:68 msgctxt "autosum|stdev" msgid "Stdev" -msgstr "DesvEst" +msgstr "Desviació tipus" #. cAEpr #: sc/uiconfig/scalc/ui/autosum.ui:76 @@ -19260,7 +19260,7 @@ #: sc/uiconfig/scalc/ui/autosum.ui:84 msgctxt "autosum|var" msgid "Var" -msgstr "Var" +msgstr "Variància" #. 7GuBA #: sc/uiconfig/scalc/ui/autosum.ui:92 @@ -19656,13 +19656,13 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:216 msgctxt "conditionalentry|colscalemin" msgid "Min" -msgstr "Mín" +msgstr "Mínim" #. HAuKu #: sc/uiconfig/scalc/ui/conditionalentry.ui:217 msgctxt "conditionalentry|colscalemin" msgid "Max" -msgstr "Màx" +msgstr "Màxim" #. ciYfw #: sc/uiconfig/scalc/ui/conditionalentry.ui:218 @@ -19698,13 +19698,13 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:235 msgctxt "conditionalentry|colscalemiddle" msgid "Min" -msgstr "Mín" +msgstr "Mínim" #. qC8Zo #: sc/uiconfig/scalc/ui/conditionalentry.ui:236 msgctxt "conditionalentry|colscalemiddle" msgid "Max" -msgstr "Màx" +msgstr "Màxim" #. 7bxeC #: sc/uiconfig/scalc/ui/conditionalentry.ui:237 @@ -19740,13 +19740,13 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:254 msgctxt "conditionalentry|colscalemax" msgid "Min" -msgstr "Mín" +msgstr "Mínim" #. JBX6r #: sc/uiconfig/scalc/ui/conditionalentry.ui:255 msgctxt "conditionalentry|colscalemax" msgid "Max" -msgstr "Màx" +msgstr "Màxim" #. uPGWW #: sc/uiconfig/scalc/ui/conditionalentry.ui:256 @@ -20424,13 +20424,13 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:144 msgctxt "consolidatedialog|func" msgid "Max" -msgstr "Màx" +msgstr "Màxim" #. fiQPH #: sc/uiconfig/scalc/ui/consolidatedialog.ui:145 msgctxt "consolidatedialog|func" msgid "Min" -msgstr "Mín" +msgstr "Mínim" #. cbwPv #: sc/uiconfig/scalc/ui/consolidatedialog.ui:146 @@ -20460,7 +20460,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:150 msgctxt "consolidatedialog|func" msgid "Var (sample)" -msgstr "Var (mostra)" +msgstr "Variància (mostra)" #. gEiNo #: sc/uiconfig/scalc/ui/consolidatedialog.ui:151 @@ -33170,7 +33170,7 @@ #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:23 msgctxt "xmlsourcedialog|XMLSourceDialog" msgid "XML Source" -msgstr "Codi font XML" +msgstr "Font XML" #. E5nmH #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:39 diff -Nru libreoffice-7.4.6/translations/source/ca/scaddins/messages.po libreoffice-7.4.7/translations/source/ca/scaddins/messages.po --- libreoffice-7.4.6/translations/source/ca/scaddins/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/scaddins/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-19 12:58+0000\n" -"Last-Translator: Joan Montané \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2023-04-11 03:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1549871614.000000\n" #. i8Y7Z @@ -26,13 +26,13 @@ #: scaddins/inc/analysis.hrc:29 msgctxt "ANALYSIS_Workday" msgid "Start date" -msgstr "Data inicial" +msgstr "Data d'inici" #. VQvrc #: scaddins/inc/analysis.hrc:30 msgctxt "ANALYSIS_Workday" msgid "The start date" -msgstr "La data inicial" +msgstr "La data d'inici" #. yAENf #: scaddins/inc/analysis.hrc:31 @@ -44,7 +44,7 @@ #: scaddins/inc/analysis.hrc:32 msgctxt "ANALYSIS_Workday" msgid "The number of workdays before or after the start date" -msgstr "El nombre de dies feiners abans o després de la data inicial" +msgstr "El nombre de dies feiners abans o després de la data d'inici" #. tDjjf #: scaddins/inc/analysis.hrc:33 @@ -68,13 +68,13 @@ #: scaddins/inc/analysis.hrc:40 msgctxt "ANALYSIS_Yearfrac" msgid "Start date" -msgstr "Data inicial" +msgstr "Data d'inici" #. 7GV4n #: scaddins/inc/analysis.hrc:41 msgctxt "ANALYSIS_Yearfrac" msgid "The start date" -msgstr "La data inicial" +msgstr "La data d'inici" #. mEZVs #: scaddins/inc/analysis.hrc:42 @@ -110,13 +110,13 @@ #: scaddins/inc/analysis.hrc:51 msgctxt "ANALYSIS_Edate" msgid "Start date" -msgstr "Data inicial" +msgstr "Data d'inici" #. 7e2EC #: scaddins/inc/analysis.hrc:52 msgctxt "ANALYSIS_Edate" msgid "The start date" -msgstr "La data inicial" +msgstr "La data d'inici" #. uYXaX #: scaddins/inc/analysis.hrc:53 @@ -128,7 +128,7 @@ #: scaddins/inc/analysis.hrc:54 msgctxt "ANALYSIS_Edate" msgid "Number of months before or after the start date" -msgstr "Nombre de mesos abans o després de la data inicial" +msgstr "Nombre de mesos abans o després de la data d'inici" #. hxh8D #: scaddins/inc/analysis.hrc:59 @@ -168,19 +168,19 @@ #: scaddins/inc/analysis.hrc:68 msgctxt "ANALYSIS_Eomonth" msgid "Returns the serial number of the last day of the month that comes a certain number of months before or after the start date" -msgstr "Retorna el número de sèrie de l'últim dia del mes que es troba un nombre de mesos abans de la data inicial" +msgstr "Retorna el número de sèrie de l'últim dia del mes que es troba un nombre de mesos abans de la data d'inici" #. uk8iG #: scaddins/inc/analysis.hrc:69 msgctxt "ANALYSIS_Eomonth" msgid "Start date" -msgstr "Data inicial" +msgstr "Data d'inici" #. FqaAT #: scaddins/inc/analysis.hrc:70 msgctxt "ANALYSIS_Eomonth" msgid "The start date" -msgstr "La data inicial" +msgstr "La data d'inici" #. h3ArQ #: scaddins/inc/analysis.hrc:71 @@ -192,7 +192,7 @@ #: scaddins/inc/analysis.hrc:72 msgctxt "ANALYSIS_Eomonth" msgid "Number of months before or after the start date" -msgstr "Nombre de mesos abans o després de la data inicial" +msgstr "Nombre de mesos abans o després de la data d'inici" #. EEad9 #: scaddins/inc/analysis.hrc:77 @@ -208,13 +208,13 @@ #: scaddins/inc/analysis.hrc:78 msgctxt "ANALYSIS_Networkdays" msgid "Start date" -msgstr "Data inicial" +msgstr "Data d'inici" #. Czzcp #: scaddins/inc/analysis.hrc:79 msgctxt "ANALYSIS_Networkdays" msgid "The start date" -msgstr "La data inicial" +msgstr "La data d'inici" #. GRYzo #: scaddins/inc/analysis.hrc:80 @@ -4139,7 +4139,7 @@ #: scaddins/inc/datefunc.hrc:29 msgctxt "DATE_FUNCDESC_DiffWeeks" msgid "Start date" -msgstr "Data inicial" +msgstr "Data d'inici" #. cP4gN #: scaddins/inc/datefunc.hrc:30 @@ -4181,7 +4181,7 @@ #: scaddins/inc/datefunc.hrc:40 msgctxt "DATE_FUNCDESC_DiffMonths" msgid "Start date" -msgstr "Data inicial" +msgstr "Data d'inici" #. joP95 #: scaddins/inc/datefunc.hrc:41 @@ -4223,7 +4223,7 @@ #: scaddins/inc/datefunc.hrc:51 msgctxt "DATE_FUNCDESC_DiffYears" msgid "Start date" -msgstr "Data inicial" +msgstr "Data d'inici" #. 86b9L #: scaddins/inc/datefunc.hrc:52 diff -Nru libreoffice-7.4.6/translations/source/ca/scp2/source/writer.po libreoffice-7.4.7/translations/source/ca/scp2/source/writer.po --- libreoffice-7.4.6/translations/source/ca/scp2/source/writer.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/scp2/source/writer.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-05-23 12:13+0000\n" +"PO-Revision-Date: 2023-04-06 20:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Catalan \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1390248204.000000\n" #. V3iDr @@ -257,4 +257,4 @@ "STR_REG_VAL_T602_TEXT_FILE\n" "LngText.text" msgid "T602 Text File" -msgstr "Fitxer de text T602" +msgstr "Fitxer de text del T602" diff -Nru libreoffice-7.4.6/translations/source/ca/sd/messages.po libreoffice-7.4.7/translations/source/ca/sd/messages.po --- libreoffice-7.4.6/translations/source/ca/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-01-30 09:57+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562916317.000000\n" #. WDjkB @@ -845,7 +845,7 @@ #: sd/inc/strings.hrc:98 msgctxt "STR_ALL_SUPPORTED_FORMATS" msgid "All supported formats" -msgstr "Totes les formats compatibles" +msgstr "Tots els formats compatibles" #. F8m2G #: sd/inc/strings.hrc:99 @@ -9644,7 +9644,7 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:121 msgctxt "slidetransitionspanel|extended_tip|transition_duration" msgid "Sets the duration of the slide transition." -msgstr "Permet definir la durada de la transició de la diapositiva." +msgstr "Permet definir la durada de la transició entre diapositives." #. VrA9B #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:135 @@ -9896,7 +9896,7 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:583 msgctxt "templatedialog|animation" msgid "Text Animation" -msgstr "Animació de text" +msgstr "Animació del text" #. dyjNi #: sd/uiconfig/simpress/ui/templatedialog.ui:631 diff -Nru libreoffice-7.4.6/translations/source/ca/svx/messages.po libreoffice-7.4.7/translations/source/ca/svx/messages.po --- libreoffice-7.4.6/translations/source/ca/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-03-01 07:50+0000\n" +"PO-Revision-Date: 2023-03-28 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559651913.000000\n" #. 3GkZj @@ -17508,7 +17508,7 @@ #: svx/uiconfig/ui/imapdialog.ui:233 msgctxt "imapdialog|extended_tip|TBI_RECT" msgid "Draws a rectangular hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Dibuixa una zona activa rectangular on arrossegueu a la imatge. Podeu introduir l'adreça i el text per a la zona activa i després seleccionar el marc on voleu que s'obri l'URL." +msgstr "Dibuixa una zona sensible rectangular on arrossegueu a la imatge. Podeu introduir l'adreça i el text per a la zona sensible i després seleccionar el marc on voleu que s'obri l'URL." #. CxNuP #: svx/uiconfig/ui/imapdialog.ui:246 @@ -17520,7 +17520,7 @@ #: svx/uiconfig/ui/imapdialog.ui:250 msgctxt "imapdialog|extended_tip|TBI_CIRCLE" msgid "Draws an elliptical hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Dibuixa una zona activa el·líptica on arrossegueu a la imatge. Podeu introduir l'adreça i el text per a la zona activa i després seleccionar el marc on voleu que s'obri l'URL." +msgstr "Dibuixa una zona sensible el·líptica on arrossegueu a la imatge. Podeu introduir l'adreça i el text per a la zona sensible i després seleccionar el marc on voleu que s'obri l'URL." #. SGPH5 #: svx/uiconfig/ui/imapdialog.ui:263 @@ -17532,7 +17532,7 @@ #: svx/uiconfig/ui/imapdialog.ui:267 msgctxt "imapdialog|extended_tip|TBI_POLY" msgid "Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Dibuixa una zona activa poligonal en la imatge. Feu clic en aquesta icona, arrossegueu a la imatge i, a continuació, feu-hi clic per a definir un costat del polígon. Moveu-vos cap a on voleu col·locar el final del costat següent i feu-hi clic. Repetiu fins que hàgiu dibuixat tots els costats del polígon. Quan hàgiu acabat, feu doble clic per a tancar el polígon. Després podeu introduir l'adreça i el text de la zona activa i seleccionar el marc on voleu que s'obri l'URL." +msgstr "Dibuixa una zona sensible poligonal en la imatge. Feu clic en aquesta icona, arrossegueu a la imatge i, a continuació, feu-hi clic per a definir un costat del polígon. Moveu-vos cap a on voleu col·locar el final del costat següent i feu-hi clic. Repetiu fins que hàgiu dibuixat tots els costats del polígon. Quan hàgiu acabat, feu doble clic per a tancar el polígon. Després podeu introduir l'adreça i el text de la zona sensible i seleccionar el marc on voleu que s'obri l'URL." #. zUUCB #: svx/uiconfig/ui/imapdialog.ui:280 @@ -17544,7 +17544,7 @@ #: svx/uiconfig/ui/imapdialog.ui:284 msgctxt "imapdialog|extended_tip|TBI_FREEPOLY" msgid "Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Dibuixa una zona activa basada en un polígon de forma lliure. Feu clic en aquesta icona i moveu-vos cap a on voleu dibuixar la zona activa. Arrossegueu una línia de forma lliure i deixeu anar per a tancar la forma. Després podreu introduir l'adreça i el text de la zona activa i a continuació seleccionar el marc on voleu que s'obri l'URL." +msgstr "Dibuixa una zona sensible basada en un polígon de forma lliure. Feu clic en aquesta icona i moveu-vos cap a on voleu dibuixar la zona sensible. Arrossegueu una línia de forma lliure i deixeu anar per a tancar la forma. Després podreu introduir l'adreça i el text de la zona sensible i a continuació seleccionar el marc on voleu que s'obri l'URL." #. kG6AK #: svx/uiconfig/ui/imapdialog.ui:297 @@ -17658,7 +17658,7 @@ #: svx/uiconfig/ui/imapdialog.ui:495 msgctxt "imapdialog|extended_tip|text" msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser. This text is also used by assistive technologies" -msgstr "Introduïu el text que voleu mostrar quan el ratolí es quedi en la zona activa en un navegador. Aquest text també s'utilitza per a tecnologies d'assistència" +msgstr "Introduïu el text que voleu mostrar quan el ratolí es quedi en la zona sensible en un navegador. Aquest text també s'utilitza per a tecnologies d'assistència" #. b8MfH #: svx/uiconfig/ui/imapdialog.ui:533 @@ -17676,7 +17676,7 @@ #: svx/uiconfig/ui/imapdialog.ui:557 msgctxt "imapdialog|extended_tip|url" msgid "Enter the URL for the file that you want to open when you click the selected hotspot." -msgstr "Introduïu l'URL del fitxer que voleu obrir quan feu clic a la zona activa seleccionada." +msgstr "Introduïu l'URL del fitxer que voleu obrir quan feu clic a la zona sensible seleccionada." #. CnDFH #: svx/uiconfig/ui/imapdialog.ui:597 @@ -17688,7 +17688,7 @@ #: svx/uiconfig/ui/imapdialog.ui:625 msgctxt "imapdialog|extended_tip|ImapDialog" msgid "Allows you to attach URLs to specific areas, called hotspots, on a graphic or a group of graphics. An image map is a group of one or more hotspots." -msgstr "Us permet adjuntar URL a àrees específiques, anomenades zones actives, en una imatge o un grup d'imatges. Un mapa d'imatge és un grup d'una o més zones actives." +msgstr "Us permet adjuntar URL a àrees específiques, anomenades zones sensibles, en una imatge o un grup d'imatges. Un mapa d'imatge és un grup d'una o més zones sensibles." #. aHyrG #: svx/uiconfig/ui/imapmenu.ui:12 diff -Nru libreoffice-7.4.6/translations/source/ca/sw/messages.po libreoffice-7.4.7/translations/source/ca/sw/messages.po --- libreoffice-7.4.6/translations/source/ca/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-28 18:05+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -679,13 +679,13 @@ #: sw/inc/inspectorproperties.hrc:31 msgctxt "RID_CHAR_DIRECTFORMAT" msgid "Character Direct Formatting" -msgstr "Format directe de caràcters" +msgstr "Formatació directa de caràcters" #. fYAUc #: sw/inc/inspectorproperties.hrc:32 msgctxt "RID_PARA_DIRECTFORMAT" msgid "Paragraph Direct Formatting" -msgstr "Format directe dels paràgrafs" +msgstr "Formatació directa de paràgrafs" #. YUbUQ #. Format names @@ -3422,7 +3422,7 @@ #: sw/inc/strings.hrc:223 msgctxt "STR_POOLNUMRULE_BUL2" msgid "Bullet –" -msgstr "Pics –" +msgstr "Pic –" #. hDdJw #. Bullet \uE4C4 @@ -6766,13 +6766,13 @@ #: sw/inc/strings.hrc:810 msgctxt "STR_IDXMRK_EDIT" msgid "Edit Index Entry" -msgstr "Edita entrada d'índex" +msgstr "Edita l'entrada d'índex" #. EHTHH #: sw/inc/strings.hrc:811 msgctxt "STR_IDXMRK_INSERT" msgid "Insert Index Entry" -msgstr "Insereix entrada d'índex" +msgstr "Insereix una entrada d'índex" #. D2gkA #: sw/inc/strings.hrc:812 @@ -7341,7 +7341,7 @@ #: sw/inc/strings.hrc:919 msgctxt "STR_SEQFLD" msgid "Number range" -msgstr "Interval de nombres" +msgstr "Interval numèric" #. ACE5s #: sw/inc/strings.hrc:920 @@ -8690,7 +8690,7 @@ #: sw/inc/strings.hrc:1185 msgctxt "ST_OUTL" msgid "Headings" -msgstr "Capçaleres" +msgstr "Encapçalaments" #. Cbktp #: sw/inc/strings.hrc:1186 @@ -10492,7 +10492,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:291 msgctxt "asciifilterdialog|extended_tip|includebom" msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file." -msgstr "Només per al conjunt de caràcters Unicode, una marca d'ordre de bytes (BOM) és una seqüència de bytes utilitzada per indicar la codificació Unicode d'un fitxer de text." +msgstr "Només per al conjunt de caràcters Unicode, una marca d'ordre de bytes (BOM) és una seqüència de bytes utilitzada per a indicar la codificació Unicode d'un fitxer de text." #. B2ofV #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309 @@ -19731,7 +19731,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:216 msgctxt "mmresultemaildialog|liststore1" msgid "Adobe PDF-Document" -msgstr "Document PDF d'Adobe" +msgstr "Document PDF" #. LpGGz #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:217 @@ -28838,7 +28838,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:964 msgctxt "tocentriespage|extended_tip|key1lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Seleccioneu l'entrada a partir de la qual voleu ordenar les entrades bibliogràfiques. Aquesta opció només està disponible si seleccioneu el botó d'opció Contingut a l'àrea Ordena per." +msgstr "Seleccioneu l'entrada a partir de la qual voleu ordenar les entrades bibliogràfiques. Aquesta opció només està disponible si seleccioneu el botó d'opció «Contingut» a l'àrea «Ordena per»." #. B7NqZ #: sw/uiconfig/swriter/ui/tocentriespage.ui:977 @@ -28856,13 +28856,13 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1005 msgctxt "tocentriespage|extended_tip|key2lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Seleccioneu l'entrada a partir de la qual voleu ordenar les entrades bibliogràfiques. Aquesta opció només està disponible si seleccioneu el botó d'opció Contingut a l'àrea Ordena per." +msgstr "Seleccioneu l'entrada a partir de la qual voleu ordenar les entrades bibliogràfiques. Aquesta opció només està disponible si seleccioneu el botó d'opció «Contingut» a l'àrea «Ordena per»." #. tfvwe #: sw/uiconfig/swriter/ui/tocentriespage.ui:1022 msgctxt "tocentriespage|extended_tip|key3lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Seleccioneu l'entrada a partir de la qual voleu ordenar les entrades bibliogràfiques. Aquesta opció només està disponible si seleccioneu el botó d'opció Contingut a l'àrea Ordena per." +msgstr "Seleccioneu l'entrada a partir de la qual voleu ordenar les entrades bibliogràfiques. Aquesta opció només està disponible si seleccioneu el botó d'opció «Contingut» a l'àrea «Ordena per»." #. 6GYwu #: sw/uiconfig/swriter/ui/tocentriespage.ui:1036 diff -Nru libreoffice-7.4.6/translations/source/ca/swext/mediawiki/help.po libreoffice-7.4.7/translations/source/ca/swext/mediawiki/help.po --- libreoffice-7.4.6/translations/source/ca/swext/mediawiki/help.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/swext/mediawiki/help.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-08-19 12:58+0000\n" -"Last-Translator: Joan Montané \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2023-03-27 19:33+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542716476.000000\n" #. 7EFBE @@ -284,7 +284,7 @@ "par_id2564165\n" "help.text" msgid "MediaWiki server: Select the wiki." -msgstr "Servidor MediaWiki: Seleccioneu la Wiki." +msgstr "Servidor MediaWiki: seleccioneu el wiki." #. Vghfw #: wiki.xhp @@ -320,7 +320,7 @@ "par_id452284\n" "help.text" msgid "Show in web browser: Check this box to open your system web browser and show the uploaded wiki page." -msgstr "Mostra-ho al navegador web: Marqueu aquesta casella per a obrir el navegador web del sistema i mostrar la pàgina wiki pujada." +msgstr "Mostra-ho al navegador web: marqueu aquesta casella per a obrir el navegador web del sistema i mostrar la pàgina wiki pujada." #. Ehnz2 #: wiki.xhp diff -Nru libreoffice-7.4.6/translations/source/ca/uui/messages.po libreoffice-7.4.7/translations/source/ca/uui/messages.po --- libreoffice-7.4.6/translations/source/ca/uui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ca/uui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-04-26 13:59+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1548164027.000000\n" #. DLY8p @@ -298,13 +298,13 @@ #: uui/inc/ids.hrc:119 msgctxt "RID_UUI_ERRHDL" msgid "The installed Java version is not supported, at least version $(ARG1) is required." -msgstr "No es permet la versió del Java instal·lada, es requereix com a mínim la versió $(ARG1)." +msgstr "No es permet la versió del Java instal·lada; es requereix com a mínim la versió $(ARG1)." #. bNWmn #: uui/inc/ids.hrc:121 msgctxt "RID_UUI_ERRHDL" msgid "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required." -msgstr "No es permet la versió del Java $(ARG1) instal·lada, es requereix com a mínim la versió $(ARG2)." +msgstr "No es permet la versió del Java $(ARG1) instal·lada; es requereix com a mínim la versió $(ARG2)." #. 5MfGQ #: uui/inc/ids.hrc:123 @@ -389,8 +389,8 @@ "Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\n" "Do you want to continue startup of %PRODUCTNAME without the corrupted configuration data?" msgstr "" -"La configuració de les dades a $(ARG1) ha quedat malmesa. Sense aquestes dades algunes funcions potser no operen correctament.\n" -"Esteu segur de voler iniciar el %PRODUCTNAME sense les dades corruptes de configuració?" +"Les dades de configuración a «$(ARG1)» han quedat malmeses. Sense aquestes dades, algunes funcions potser no operaran correctament.\n" +"Esteu segur de voler iniciar el %PRODUCTNAME sense les dades de configuració malmeses?" #. QCACp #: uui/inc/ids.hrc:145 diff -Nru libreoffice-7.4.6/translations/source/cs/sw/messages.po libreoffice-7.4.7/translations/source/cs/sw/messages.po --- libreoffice-7.4.6/translations/source/cs/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/cs/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-12-27 12:05+0000\n" +"PO-Revision-Date: 2023-03-27 19:34+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \n" "Language: cs\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563223676.000000\n" #. v3oJv @@ -3600,7 +3600,7 @@ #: sw/inc/strings.hrc:258 msgctxt "SW_STR_NONE" msgid "[None]" -msgstr "[žádná]" +msgstr "[Žádný]" #. C4tz3 #: sw/inc/strings.hrc:259 @@ -17475,7 +17475,7 @@ #: sw/uiconfig/swriter/ui/insertcaption.ui:429 msgctxt "insertcaption|liststore1" msgid "[None]" -msgstr "[žádná]" +msgstr "[Žádná]" #. hKFSr #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:57 diff -Nru libreoffice-7.4.6/translations/source/de/basctl/messages.po libreoffice-7.4.7/translations/source/de/basctl/messages.po --- libreoffice-7.4.6/translations/source/de/basctl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/basctl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1555473992.000000\n" #. fniWp @@ -986,7 +986,7 @@ #: basctl/uiconfig/basicide/ui/gotolinedialog.ui:8 msgctxt "gotolinedialog|GotoLineDialog" msgid "Go to Line" -msgstr "Zu Zeilennummer wechseln" +msgstr "Wechseln zu Zeilennummer" #. GbpSc #: basctl/uiconfig/basicide/ui/gotolinedialog.ui:88 diff -Nru libreoffice-7.4.6/translations/source/de/cui/messages.po libreoffice-7.4.7/translations/source/de/cui/messages.po --- libreoffice-7.4.6/translations/source/de/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-24 06:33+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -3157,7 +3157,7 @@ #: cui/inc/tipoftheday.hrc:212 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…" -msgstr "Sie können Folien in Impress umbenennen, um einfacher Aktionen wie \"Gehe zu Folie\" zu definieren und um eine verständlichere Zusammenfassung als Folie 1, Folie 2 und so weiter zu haben." +msgstr "Sie können Folien in Impress umbenennen, um einfacher Aktionen wie \"Wechseln zu Folie\" zu definieren und um eine verständlichere Zusammenfassung als Folie 1, Folie 2 und so weiter zu haben." #. JBgEb #: cui/inc/tipoftheday.hrc:213 @@ -19060,7 +19060,7 @@ #: cui/uiconfig/ui/recordnumberdialog.ui:81 msgctxt "recordnumberdialog|label2" msgid "go to record" -msgstr "gehe zu Datensatz" +msgstr "Wechseln zu Datensatz" #. aEKBj #: cui/uiconfig/ui/rotationtabpage.ui:53 diff -Nru libreoffice-7.4.6/translations/source/de/extensions/messages.po libreoffice-7.4.7/translations/source/de/extensions/messages.po --- libreoffice-7.4.6/translations/source/de/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-02 08:34+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1555474560.000000\n" #. cBx8W @@ -1381,7 +1381,7 @@ #: extensions/inc/strings.hrc:121 msgctxt "RID_STR_SUBMIT_METHOD" msgid "Type of submission" -msgstr "Art des Submits" +msgstr "Art der Übermittlung" #. pQPY9 #: extensions/inc/strings.hrc:122 @@ -1393,7 +1393,7 @@ #: extensions/inc/strings.hrc:123 msgctxt "RID_STR_SUBMIT_ENCODING" msgid "Submission encoding" -msgstr "Codierung beim Submit" +msgstr "Codierung der Übermittlung" #. eaUUN #: extensions/inc/strings.hrc:124 @@ -1999,7 +1999,7 @@ #: extensions/inc/strings.hrc:224 msgctxt "RID_STR_SUBMISSION_ID" msgid "Submission" -msgstr "Vorlage" +msgstr "Übermittlung" #. 8RLNd #: extensions/inc/strings.hrc:225 diff -Nru libreoffice-7.4.6/translations/source/de/filter/source/config/fragments/filters.po libreoffice-7.4.7/translations/source/de/filter/source/config/fragments/filters.po --- libreoffice-7.4.6/translations/source/de/filter/source/config/fragments/filters.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/filter/source/config/fragments/filters.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-10-24 11:13+0000\n" +"PO-Revision-Date: 2023-03-19 05:32+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559618281.000000\n" #. FR4Ff @@ -984,7 +984,7 @@ "UIName\n" "value.text" msgid "Rich Text Format (Calc)" -msgstr "Rich Text Format (Calc)" +msgstr "Rich Text-Format (Calc)" #. KbNXG #: SVG___Scalable_Vector_Graphics.xcu diff -Nru libreoffice-7.4.6/translations/source/de/forms/messages.po libreoffice-7.4.7/translations/source/de/forms/messages.po --- libreoffice-7.4.6/translations/source/de/forms/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/forms/messages.po 2023-05-03 15:22:13.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-11-16 12:50+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2023-05-03 05:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1512244912.000000\n" #. naBgZ @@ -300,13 +300,13 @@ #: forms/inc/strings.hrc:73 msgctxt "RID_STR_DATATYPE_FLOAT" msgid "Floating point" -msgstr "Fließkomma" +msgstr "Single-Variable" #. kGdUi #: forms/inc/strings.hrc:74 msgctxt "RID_STR_DATATYPE_DOUBLE" msgid "Double" -msgstr "Doppelt" +msgstr "Double" #. ki4Gz #: forms/inc/strings.hrc:75 diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/sbasic/python.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/sbasic/python.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/sbasic/python.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-04-11 15:28+0200\n" -"PO-Revision-Date: 2023-02-06 06:33+0000\n" +"PO-Revision-Date: 2023-03-18 18:32+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -212,7 +212,7 @@ "N0347\n" "help.text" msgid "'''Grab Basic script object before invocation.'''" -msgstr "'''Grundlegendes Skript-Objekt vor dem Aufruf abrufen.'''" +msgstr "'''Ruft das Basic-Skript-Objekt vor dem Aufruf ab.'''" #. PnPTm #: python_2_basic.xhp @@ -716,7 +716,7 @@ "N0580\n" "help.text" msgid "def sleep(self, *args): # OnUnload at the latest (optional)" -msgstr "def sleep(self, *args): # OnUnload frühestens (optional)" +msgstr "def sleep(self, *args): # OnUnload spätestens (optional)" #. QiSAD #: python_document_events.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/sbasic/shared/03.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/sbasic/shared/03.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-12-10 08:24+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565407061.000000\n" #. ViEWM @@ -10436,7 +10436,7 @@ "pyc_id841620225235377\n" "help.text" msgid "# ... process the controls actual values" -msgstr "# ... die aktuellen Werte der Steuerung verarbeiten" +msgstr "# … die aktuellen Werte der Steuerung verarbeiten" #. 2PPv4 #: sf_dialogcontrol.xhp @@ -20093,7 +20093,7 @@ "par_id311614361926844\n" "help.text" msgid "The msgid string may contain any number of placeholders (%1 %2 %3 ...) for dynamically modifying the string at runtime." -msgstr "msgid kann beliebig viele Platzhalter (%1 %2 %3 ...) enthalten, um die Zeichenfolgen zur Laufzeit dynamisch zu verändern." +msgstr "msgid kann beliebig viele Platzhalter (%1 %2 %3 …) enthalten, um die Zeichenfolgen zur Laufzeit dynamisch zu verändern." #. ioGmP #: sf_l10n.xhp @@ -20291,7 +20291,7 @@ "par_id291614365296959\n" "help.text" msgid "A list of arguments may be specified to replace the placeholders (%1, %2, ...) in the string." -msgstr "Eine Liste von Argumenten kann angegeben werden, um die Platzhalter (%1, %2, ...) in der Zeichenfolge zu ersetzen." +msgstr "Eine Liste von Argumenten kann angegeben werden, um die Platzhalter (%1, %2, …) in der Zeichenfolge zu ersetzen." #. 9DBFa #: sf_l10n.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/scalc/00.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/scalc/00.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/scalc/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/scalc/00.po 2023-05-03 15:22:13.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-21 12:31+0100\n" -"PO-Revision-Date: 2022-10-24 11:22+0000\n" -"Last-Translator: Annabelle Wübbelsmann \n" +"PO-Revision-Date: 2023-04-01 21:32+0000\n" +"Last-Translator: Christian Kühl \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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564805193.000000\n" #. E9tti @@ -572,7 +572,7 @@ "par_id3147075\n" "help.text" msgid "Insert - Function - Category Spreadsheet" -msgstr "Einfügen – Funktion… – Kategorie… Tabellendokument" +msgstr "Einfügen – Funktion… – Kategorie: Tabelle" #. hY4RC #: 00000404.xhp @@ -1184,7 +1184,7 @@ "par_id21645217233263\n" "help.text" msgid "Press Shift+CommandCtrl+F9" -msgstr "Drücken Sie BefehlStrg+Umschalt+F9" +msgstr "Drücken Sie Umschalt+BefehlStrg+F9" #. soEE4 #: 00000406.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/scalc/01.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/scalc/01.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/scalc/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/scalc/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:10+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -5639,7 +5639,7 @@ "par_id121616181037440\n" "help.text" msgid "Returns a #NUM! error if exactly one record matches the specified search criteria, or if there is only one numeric value in the cells of the specified column for the matching records." -msgstr "Gibt einen Fehler #NUM! zurück, wenn genau ein Datensatz mit den angegebenen Suchkriterien übereinstimmt oder wenn in den Zellen der angegebenen Spalte für die übereinstimmenden Datensätze nur ein numerischer Wert vorhanden ist." +msgstr "Gibt einen Fehler #ZAHL! zurück, wenn genau ein Datensatz mit den angegebenen Suchkriterien übereinstimmt oder wenn in den Zellen der angegebenen Spalte für die übereinstimmenden Datensätze nur ein numerischer Wert vorhanden ist." #. r6onB #: 04060101.xhp @@ -5711,7 +5711,7 @@ "par_id541616181205698\n" "help.text" msgid "Returns a #NUM! error if no records match the specified search criteria, or if there are no numeric values in the cells of the specified column for the matching records." -msgstr "Gibt einen Fehler #NUM! zurück, wenn keine Datensätze mit den angegebenen Suchkriterien übereinstimmen oder wenn in den Zellen der angegebenen Spalte für die übereinstimmenden Datensätze keine numerischen Werte vorhanden sind." +msgstr "Gibt einen Fehler #ZAHL! zurück, wenn keine Datensätze mit den angegebenen Suchkriterien übereinstimmen oder wenn in den Zellen der angegebenen Spalte für die übereinstimmenden Datensätze keine numerischen Werte vorhanden sind." #. uGaWp #: 04060101.xhp @@ -5837,7 +5837,7 @@ "par_id301616181465164\n" "help.text" msgid "Returns a #NUM! error if exactly one record matches the specified search criteria, or if there is only one numeric value in the cells of the specified column for the matching records." -msgstr "Gibt einen Fehler #NUM! zurück, wenn genau ein Datensatz mit den angegebenen Suchkriterien übereinstimmt oder wenn in den Zellen der angegebenen Spalte für die übereinstimmenden Datensätze nur ein numerischer Wert vorhanden ist." +msgstr "Gibt einen Fehler #ZAHL! zurück, wenn genau ein Datensatz mit den angegebenen Suchkriterien übereinstimmt oder wenn in den Zellen der angegebenen Spalte für die übereinstimmenden Datensätze nur ein numerischer Wert vorhanden ist." #. gW4LZ #: 04060101.xhp @@ -5909,7 +5909,7 @@ "par_id301616181648263\n" "help.text" msgid "Returns a #NUM! error if no records match the specified search criteria, or if there are no numeric values in the cells of the specified column for the matching records." -msgstr "Gibt einen Fehler #NUM! zurück, wenn keine Datensätze mit den angegebenen Suchkriterien übereinstimmen oder wenn in den Zellen der angegebenen Spalte für die übereinstimmenden Datensätze keine numerischen Werte vorhanden sind." +msgstr "Gibt einen Fehler #ZAHL! zurück, wenn keine Datensätze mit den angegebenen Suchkriterien übereinstimmen oder wenn in den Zellen der angegebenen Spalte für die übereinstimmenden Datensätze keine numerischen Werte vorhanden sind." #. BygUf #: 04060101.xhp @@ -10724,7 +10724,7 @@ "par_id3153570\n" "help.text" msgid "Complements (inverts) a logical value." -msgstr "Komplementiert (invertiert) einen logischen Wert.." +msgstr "Komplementiert (invertiert) einen logischen Wert." #. CDMvz #: 04060105.xhp @@ -10976,7 +10976,7 @@ "tit\n" "help.text" msgid "Mathematical Functions" -msgstr "Kategorie Mathematik" +msgstr "Mathematische Funktionen" #. MfxvG #: 04060106.xhp @@ -15593,7 +15593,7 @@ "hd_id3155588\n" "help.text" msgid "Using Array Formulas in $[officename] Calc" -msgstr "Arbeiten mit Matrixformeln in $[officename] Calc" +msgstr "Arbeiten mit Matrixformeln in $[officename]-Calc" #. zMZBQ #: 04060107.xhp @@ -17627,7 +17627,7 @@ "tit\n" "help.text" msgid "Spreadsheet Functions" -msgstr "Funktionen für Tabellen" +msgstr "Tabellenfunktionen" #. WoHfE #: 04060109.xhp @@ -17645,7 +17645,7 @@ "hd_id3148522\n" "help.text" msgid "Spreadsheet Functions" -msgstr "Funktionen für Tabellen" +msgstr "Tabellenfunktionen" #. BceQk #: 04060109.xhp @@ -48110,7 +48110,7 @@ "hd_id401621534105620\n" "help.text" msgid "Top 10" -msgstr "Top 10" +msgstr "Oberste 10" #. onMjn #: 12040100.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/scalc/05.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/scalc/05.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/scalc/05.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/scalc/05.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-12-10 08:24+0000\n" +"PO-Revision-Date: 2023-04-16 05:33+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565271401.000000\n" #. Cxzki @@ -185,7 +185,7 @@ "par_id3154015\n" "help.text" msgid "503
#NUM!" -msgstr "503
#NUM!" +msgstr "503
#ZAHL!" #. JWvJX #: 02140000.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/scalc/guide.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/scalc/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/scalc/guide.po 2023-05-03 15:22:13.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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:10+0000\n" -"Last-Translator: Annabelle Wübbelsmann \n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -1571,7 +1571,7 @@ "par_idN10747\n" "help.text" msgid "If you select a date series, the increment that you enter is added to the time unit that you specify." -msgstr "Wenn Sie eine Reihe mit Daten auswählen, wird die von Ihnen eingegebene Schrittweite zu jeder von Ihnen angegebenen Zeiteinheit hinzugefügt." +msgstr "Wenn Sie eine Reihe mit Datum auswählen, wird die von Ihnen eingegebene Schrittweite zu jeder von Ihnen angegebenen Zeiteinheit hinzugefügt." #. NqenD #: calc_series.xhp @@ -6377,7 +6377,7 @@ "par_id3152596\n" "help.text" msgid "0.0,, \"Million\"" -msgstr "0,0.. \"Million(en)\"" +msgstr "0,0‥ \"Million(en)\"" #. tRigu #: format_value_userdef.xhp @@ -6413,7 +6413,7 @@ "par_id3154757\n" "help.text" msgid ".#,, \"Million\"" -msgstr "0,#.. \"Million(en)\"" +msgstr "0,#‥ \"Million(en)\"" #. ZDWJV #: format_value_userdef.xhp @@ -6422,7 +6422,7 @@ "par_id3147338\n" "help.text" msgid "0.0,, \"Million\"" -msgstr "0,0.. \"Million(en)\"" +msgstr "0,0‥ \"Million(en)\"" #. F3THi #: format_value_userdef.xhp @@ -6431,7 +6431,7 @@ "par_id3146920\n" "help.text" msgid "#,, \"Million\"" -msgstr "#.. \"Million(en)\"" +msgstr "#‥ \"Million(en)\"" #. CWvSi #: format_value_userdef.xhp @@ -13415,7 +13415,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 BefehlStrg +Umschalt+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 Umschalt+BefehlStrg+Tabulator, um sich rückwärts durch die Namen zu bewegen." #. VDbbB #: value_with_name.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/sdatabase.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/sdatabase.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/sdatabase.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/sdatabase.po 2023-05-03 15:22:13.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-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-02-28 22:04+0000\n" -"Last-Translator: Annabelle Wübbelsmann \n" +"PO-Revision-Date: 2023-03-26 19:32+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -12046,7 +12046,7 @@ "par_id3059785\n" "help.text" msgid "You can also insert text that should be the same on every page of the report. Click the Label Field icon, then drag a rectangle in the Page Header or Page Footer area. Edit the Label property to show the text you want." -msgstr "Sie können auch Text einfügen, der auf jeder Seite des Berichts gleich sein soll. Klicken Sie auf das Symbol Beschriftungsfeld und ziehen Sie dann ein Rechteck in den Bereich Seitenkopf oder Seitenfuß. Bearbeiten Sie die Eigenschaft \"Beschriftung\", um den gewünschten Text anzuzeigen." +msgstr "Sie können auch Text einfügen, der auf jeder Seite des Berichts gleich sein soll. Klicken Sie auf das Symbol für Beschriftungsfeld und ziehen Sie dann ein Rechteck im Bereich der Kopf- oder Fußzeile auf. Bearbeiten Sie die Eigenschaft „Beschriftung“, um den gewünschten Text anzuzeigen." #. yombL #: rep_insertfield.xhp @@ -12118,7 +12118,7 @@ "par_id851540564212907\n" "help.text" msgid "Undo sorting icon" -msgstr "Symbol für Sortierung rückgängig machen" +msgstr "Symbol für Ursprüngliche Sortierung wiederherstellen" #. DVAm8 #: rep_insertfield.xhp @@ -12172,7 +12172,7 @@ "par_id7128818\n" "help.text" msgid "To use the Report Builder, the Java Runtime Environment (JRE) software must be installed, and this software must be selected in %PRODUCTNAME." -msgstr "Um den Berichtdesigner zu verwenden, muss die Software „Java-Laufzeitumgebungen (JRE)“ installiert sein und diese Software muss in %PRODUCTNAME ausgewählt sein." +msgstr "Um den Berichtdesigner zu verwenden, muss eine „Java-Laufzeitumgebungen (JRE)“ installiert sein und diese in %PRODUCTNAME ausgewählt sein." #. MUFG8 #: rep_main.xhp @@ -12181,7 +12181,7 @@ "hd_id556047\n" "help.text" msgid "To install the JRE software" -msgstr "Installieren der JRE-Software" +msgstr "So installieren Sie die JRE" #. CTy58 #: rep_main.xhp @@ -12208,7 +12208,7 @@ "par_id1369060\n" "help.text" msgid "Wait up to one minute, while %PRODUCTNAME collects information on installed Java software on your system." -msgstr "Warten Sie bis zu einer Minute, während %PRODUCTNAME Informationen über installierte Java-Software auf Ihrem System sammelt." +msgstr "Warten Sie etwa bis zu einer Minute, während %PRODUCTNAME die Informationen über die installierte Java-Software auf Ihrem System einsammelt." #. oxLT3 #: rep_main.xhp @@ -12217,7 +12217,7 @@ "par_id860927\n" "help.text" msgid "If a recent JRE version is found on your system, you see an entry in the list." -msgstr "Wenn eine neuere JRE-Version auf Ihrem System gefunden wird, sehen Sie einen Eintrag in der Liste." +msgstr "Wenn auf Ihrem System eine aktuelle JRE-Version gefunden wird, sehen Sie einen Eintrag in der Liste." #. 87xW7 #: rep_main.xhp @@ -12226,7 +12226,7 @@ "par_id8581804\n" "help.text" msgid "Click the option button in front of the entry to enable this JRE version for use in %PRODUCTNAME." -msgstr "Klicken Sie auf das Optionsfeld vor dem Eintrag, um diese JRE-Version für die Verwendung in %PRODUCTNAME zu aktivieren." +msgstr "Aktivieren Sie das Optionsfeld vor dem Eintrag, um diese JRE-Version für die Nutzung in %PRODUCTNAME auszuwählen." #. KmqC6 #: rep_main.xhp @@ -12235,7 +12235,7 @@ "par_id7730033\n" "help.text" msgid "Ensure that Use a Java runtime environment is enabled." -msgstr "Stellen Sie sicher, dass Java-Laufzeitumgebung verwenden aktiviert ist." +msgstr "Stellen Sie sicher, dass Eine Java-Laufzeitumgebung (Java runtime environment) verwenden aktiviert ist." #. oeX8D #: rep_main.xhp @@ -12271,7 +12271,7 @@ "par_id7050691\n" "help.text" msgid "Click the Reports icon in the Base window, then choose Create Report in Design View." -msgstr "Klicken Sie in Base auf das Symbol „Berichte“ und wählen Sie dann „Bericht in der Entwurfsansicht erstellen“." +msgstr "Klicken Sie im Base-Fenster auf das Symbol »Berichte – Bericht in der Entwurfsansicht erstellen…«." #. u7db8 #: rep_main.xhp @@ -12298,7 +12298,7 @@ "par_id2291024\n" "help.text" msgid "On the right you see the Properties window with the property values of the currently selected object." -msgstr "Rechts sehen Sie das Fenster „Eigenschaften“ mit den Eigenschaftswerten des aktuell ausgewählten Objekts." +msgstr "Rechts sehen Sie den Bereich „Eigenschaften“ mit den Werten der Eigenschaften des aktuell ausgewählten Objekts." #. 9iUTs #: rep_main.xhp @@ -12307,7 +12307,7 @@ "par_id2100589\n" "help.text" msgid "The left part of the Report Builder window shows the Report Builder view. The Report Builder view is initially divided into three sections, from top to bottom:" -msgstr "Der linke Teil des Fensters Berichtdesigner zeigt die Ansicht Berichtdesigner. Die Ansicht Berichtdesigner ist zunächst von oben nach unten in drei Abschnitte unterteilt:" +msgstr "Der linke Teil des Fensters Bericht-Designer zeigt die Berichtsentwurfsansicht. Die Berichtsentwurfsansicht ist anfänglich in drei Abschnitte gegliedert. Von oben nach unten:" #. bpA2e #: rep_main.xhp @@ -12316,7 +12316,7 @@ "par_id5022125\n" "help.text" msgid "Page Header - drag control fields with fixed text into the Page Header area" -msgstr "Seitenkopf – Ziehen Sie Steuerelemente mit festem Text in den Bereich „Seitenkopf“" +msgstr "Seitenkopf – Ziehen Sie Steuerelemente mit festem Text in den Seitenkopfbereich" #. TcX6C #: rep_main.xhp @@ -12325,7 +12325,7 @@ "par_id6844386\n" "help.text" msgid "Detail - drag and drop database fields into the Detail area" -msgstr "Detail – Ziehen Sie Datenbankfelder in den Bereich „Detail“ und legen Sie sie dort ab" +msgstr "Detail – Ziehen Sie Datenbankfelder in den Detailbereich und legen Sie sie dort ab" #. k3qgL #: rep_main.xhp @@ -12334,7 +12334,7 @@ "par_id7018646\n" "help.text" msgid "Page Footer - drag control fields with fixed text into the Page Footer area" -msgstr "Seitenfuß – Ziehen Sie Steuerelemente mit festem Text in den Bereich „Seitenfuß“" +msgstr "Seitenfuß – Ziehen Sie Steuerelemente mit festem Text in den Seitenfußbereich" #. GbMdT #: rep_main.xhp @@ -12352,7 +12352,7 @@ "par_id6042664\n" "help.text" msgid "Click the \"-\" icon in front of an area name to collapse that area to one line in the Report Builder view. The \"-\" icon changes to a \"+\" icon, and you can click this to expand the area again." -msgstr "Klicken Sie auf das Symbol \"-\" vor einem Bereichsnamen, um diesen Bereich in der Ansicht Berichtdesigner auf eine Zeile zu reduzieren. Das Symbol \"-\" ändert sich in ein Symbol \"+\" und Sie können darauf klicken, um den Bereich wieder zu erweitern." +msgstr "Klicken Sie auf das Symbol „–“ vor einem Bereichsnamen, um diesen Bereich im Berichtdesigner auf eine Zeile zu reduzieren. Das Symbol \"–\" ändert sich in ein \"+\" und Sie können darauf klicken, um den Bereich wieder zu erweitern." #. NCMdn #: rep_main.xhp @@ -12370,7 +12370,7 @@ "par_id1278420\n" "help.text" msgid "In addition, you can click the Label Field or Text Box icon in the toolbar, then drag a rectangle in the Page Header or Page Footer area, to define a text that is the same on all pages. You enter the text in the Label box of the corresponding Properties window. You can also add graphics by using the Graphics icon." -msgstr "Außerdem können Sie in der Symbolleiste auf das Symbol „Beschriftungsfeld“ oder „Textfeld“ klicken und dann ein Rechteck in den Bereich „Seitenkopf“ oder „Seitenfuß“ ziehen, um einen Text zu definieren, der auf allen Seiten gleich ist. Den Text geben Sie im Feld Beschriftung des entsprechenden Fensters Eigenschaften ein. Sie können auch Grafiken hinzufügen, indem Sie das Symbol „Grafik“ verwenden." +msgstr "Außerdem können Sie in der Symbolleiste auf das Symbol „Beschriftungsfeld“ oder „Textfeld“ klicken und dann ein Rechteck in den Bereich „Seitenkopf“ oder „Seitenfuß“ ziehen, um einen Text festzulegen, der auf allen Seiten gleich ist. Den Text geben Sie im Feld „Beschriftung“ des entsprechenden Fensters Eigenschaften ein. Sie können auch Grafiken hinzufügen, indem Sie das Symbol »Grafik« verwenden." #. 25GDr #: rep_main.xhp @@ -12379,7 +12379,7 @@ "par_id7479476\n" "help.text" msgid "To connect the report to a database table" -msgstr "Um den Bericht mit einer Datenbanktabelle zu verbinden" +msgstr "Zum Verbinden des Berichts mit einer Datenbanktabelle" #. TuFVF #: rep_main.xhp @@ -12388,7 +12388,7 @@ "par_id2218390\n" "help.text" msgid "Move the mouse to the Properties view. You see two tab pages General and Data." -msgstr "Bewegen Sie die Maus auf die Ansicht Eigenschaften. Sie sehen zwei Registerkarten „Allgemein“ und „Daten“." +msgstr "Bewegen Sie die Maus auf die Ansicht Eigenschaften. Sie sehen zwei Register: „Allgemein“ und „Daten“." #. WdBn9 #: rep_main.xhp @@ -12415,7 +12415,7 @@ "par_id7996459\n" "help.text" msgid "After selecting the table, press the Tab key to leave the Content box." -msgstr "Nachdem Sie die Tabelle ausgewählt haben, drücken Sie [Tabulator], um das Inhaltsfeld zu verlassen." +msgstr "Nachdem Sie die Tabelle ausgewählt haben, drücken Sie die Tabulatortaste, um das Inhaltsfeld zu verlassen." #. vmDAS #: rep_main.xhp @@ -12514,7 +12514,7 @@ "par_id6765953\n" "help.text" msgid "Inserts a vertical line to the current area." -msgstr "Fügt eine vertikale Linie in den aktuellen Bereich ein." +msgstr "Fügt eine vertikale Linie im aktuellen Bereich ein." #. 5gYXB #: rep_main.xhp @@ -12550,7 +12550,7 @@ "par_id1511581\n" "help.text" msgid "After inserting fields in the Detail view, the report is ready for execution." -msgstr "Nach dem Einfügen von Feldern in der Detailansicht ist der Bericht zur Ausführung bereit." +msgstr "Nach dem Einfügen von Feldern in der Detailansicht ist der Report zur Ausführung bereit." #. j9t2k #: rep_main.xhp @@ -12568,7 +12568,7 @@ "par_id8286385\n" "help.text" msgid "Click the Execute Report icon on the toolbar." -msgstr "Klicken Sie in der Symbolleiste auf das Symbol „Bericht ausführen“." +msgstr "Klicken Sie in der Symbolleiste auf das Symbol »Bericht ausführen«." #. QxSrq #: rep_main.xhp @@ -12586,7 +12586,7 @@ "par_id71642784887822\n" "help.text" msgid "Execute Report icon" -msgstr "Symbol „Bericht ausführen“" +msgstr "Symbol »Bericht ausführen«" #. EbwoS #: rep_main.xhp @@ -12595,7 +12595,7 @@ "par_id2354197\n" "help.text" msgid "A Writer document opens and shows the report you have created, which contains all values of the database table which you have insert." -msgstr "Ein Writer-Dokument öffnet sich und zeigt den von Ihnen erstellten Bericht an, der alle Werte der von Ihnen eingefügten Datenbanktabelle enthält." +msgstr "Ein Writer-Dokument öffnet sich und zeigt den von Ihnen erstellten Bericht, der alle Werte der von Ihnen eingefügten Datenbanktabelle enthält." #. CCUrN #: rep_main.xhp @@ -12613,7 +12613,7 @@ "hd_id8746910\n" "help.text" msgid "To edit a report" -msgstr "Um einen Bericht zu bearbeiten" +msgstr "So bearbeiten Sie einen Bericht" #. GinFd #: rep_main.xhp @@ -12622,7 +12622,7 @@ "par_id9636524\n" "help.text" msgid "First decide if you want to edit the generated report, which is a static Writer document, or if you want to edit the Report Builder view and then generate a new report based on the new design." -msgstr "Entscheiden Sie zunächst, ob Sie den generierten Bericht bearbeiten möchten, der ein statisches Writer-Dokument ist, oder ob Sie die Ansicht Berichtdesign bearbeiten und dann einen neuen Bericht basierend auf dem neuen Design erstellen möchten." +msgstr "Entscheiden Sie zunächst, ob Sie den generierten Bericht bearbeiten möchten, der ein statisches Writer-Dokument ist, oder ob Sie die Berichtserstellungsansicht bearbeiten und dann einen neuen Bericht basierend auf dem geänderten Design erstellen möchten." #. awMUn #: rep_main.xhp @@ -12667,7 +12667,7 @@ "par_id12512\n" "help.text" msgid "If you close the Report Builder, you will be asked if the report should be saved. Click Yes, give the report a name, and click OK." -msgstr "Wenn Sie den Berichtdesigner schließen, werden Sie gefragt, ob der Bericht gespeichert werden soll. Klicken Sie auf Ja, geben Sie dem Bericht einen Namen und klicken Sie auf »OK«." +msgstr "Wenn Sie den Berichtdesigner schließen, werden Sie gefragt, ob der Bericht gespeichert werden soll. Klicken Sie auf »Ja«, geben Sie dem Bericht einen Namen und klicken Sie auf »OK«." #. T8vuS #: rep_main.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -53330,7 +53330,7 @@ "par_idN1058B\n" "help.text" msgid "Submissions" -msgstr "Vorlagen" +msgstr "Übermittlungen" #. SpAaA #: xformsdata.xhp @@ -53339,7 +53339,7 @@ "par_idN1058F\n" "help.text" msgid "Lists the submissions." -msgstr "Listet die Vorlagen auf." +msgstr "Listet die Übermittlungen auf." #. KhEzJ #: xformsdata.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/shared/02.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/shared/02.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -7709,7 +7709,7 @@ "hd_id3152551\n" "help.text" msgid "Type of submission" -msgstr "Art des Submits" +msgstr "Art der Übermittlung" #. CBWKj #: 01170201.xhp @@ -7745,7 +7745,7 @@ "hd_id3147275\n" "help.text" msgid "Submission encoding" -msgstr "Codierung beim Submit" +msgstr "Codierung der Übermittlung" #. HzL3W #: 01170201.xhp @@ -8168,7 +8168,7 @@ "par_id3159152\n" "help.text" msgid "The Before submitting event occurs before the form data is sent. Returning True approves the submission, False stops it." -msgstr "Das Ereignis Vor dem Absenden tritt ein, bevor die Formulardaten gesendet werden. Wenn Wahr zurückgegeben wird, wird die Übermittlung bestätigt, wenn Falsch zurückgegeben wird, wird sie abgebrochen." +msgstr "Das Ereignis Vor der Übermittlung tritt ein, bevor die Formulardaten gesendet werden. Wenn Wahr zurückgegeben wird, wird die Übermittlung bestätigt, wenn Falsch zurückgegeben wird, wird sie abgebrochen." #. uF4JK #: 01170202.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/shared/04.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/shared/04.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/shared/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/shared/04.po 2023-05-03 15:22:13.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-21 12:31+0100\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2023-05-03 11:52+0000\n" +"Last-Translator: Annabelle Wübbelsmann \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -203,7 +203,7 @@ "par_id3149785\n" "help.text" msgid "A triple-click in a text input field selects the entire field. A triple-click in a text document selects the current sentence." -msgstr "Mit Dreifachklick wird der ganze Absatz ausgewählt." +msgstr "Ein Dreifachklick in einem Texteingabefeld wählt das gesamte Feld aus. Ein Dreifachklick in einem Textdokument wählt den aktuellen Satz aus." #. o5vEt #: 01010000.xhp @@ -842,7 +842,7 @@ "par_id631612398592490\n" "help.text" msgid "CommandCtrl+Shift+F10" -msgstr "BefehlStrg+Shift+F10" +msgstr "BefehlStrg+Umschalt+F10" #. QFqB4 #: 01010000.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/shared/optionen.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/shared/optionen.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/shared/optionen.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -986,7 +986,7 @@ "par_id3147176\n" "help.text" msgid "../images/img.jpg" -msgstr "../images/img.jpg" +msgstr "‥/images/img.jpg" #. ZZ63n #: 01010200.xhp @@ -995,7 +995,7 @@ "par_id3145652\n" "help.text" msgid "../images/img.jpg" -msgstr "../images/img.jpg" +msgstr "‥/images/img.jpg" #. CpEFG #: 01010200.xhp @@ -5099,7 +5099,7 @@ "par_id3153255\n" "help.text" msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros." -msgstr "Legt die Sicherheitsoptionen für das Sichern eines Dokuments, für Webverbindungen und für das Öffnen von Dokumenten mit Makros fest.." +msgstr "Legt die Sicherheitsoptionen für das Sichern eines Dokuments, für Webverbindungen und für das Öffnen von Dokumenten mit Makros fest." #. R3Xf2 #: 01030300.xhp @@ -12524,7 +12524,7 @@ "par_id3154255\n" "help.text" msgid "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, several pages or slides will be printed on one page of paper." -msgstr "Das Papier wird gekachelt bedruckt. Sind die Seiten oder Folien kleiner als das Papier, werden mehrere Seiten oder Folien auf jede Papierseite gedruckt." +msgstr "Das Papier wird gekachelt bedruckt. Sind die FolienSeiten kleiner als das Papier, werden mehrere FolienSeiten auf jede Papierseite gedruckt." #. yLGXD #: 01070400.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/shared.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/shared.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/shared.po 2023-05-03 15:22:13.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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2023-03-26 19:32+0000\n" +"Last-Translator: Annabelle Wübbelsmann \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -1940,7 +1940,7 @@ "par_id3148420\n" "help.text" msgid "Converts a curve into a straight line or converts a straight line into a curve. If you select a single point, the curve before the point will be converted. If two points are selected, the curve between both points will be converted. If you select more than two points, each time you click this icon, a different portion of the curve will be converted. If necessary, round points are converted into corner points and corner points are converted into round points." -msgstr "Konvertiert eine Kurve in eine gerade Linie oder eine gerade Linie in eine Kurve. Wenn Sie einen einzelnen Punkt auswählen, wird der Abschnitt vor dem Punkt konvertiert. Wenn Sie zwei Punkte auswählen, wird der Abschnitt zwischen den beiden Punkten konvertiert. Bei Auswahl von mehr als zwei Punkten wird mit jedem Klick auf dieses Symbol ein anderer Abschnitt konvertiert. Falls erforderlich, werden runde Punkte in Eckpunkte und Eckpunkte in runde Punkte konvertiert." +msgstr "Konvertiert eine Kurve in eine gerade Linie oder eine gerade Linie in eine Kurve. Wenn Sie einen einzelnen Punkt auswählen, wird der Abschnitt nach dem Punkt konvertiert. Wenn Sie zwei Punkte auswählen, wird der Abschnitt zwischen den beiden Punkten konvertiert. Bei Auswahl von mehr als zwei Punkten wird mit jedem Klick auf dieses Symbol ein anderer Abschnitt konvertiert. Falls erforderlich, werden runde Punkte in Eckpunkte und Eckpunkte in runde Punkte konvertiert." #. 57eED #: main0227.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/simpress/01.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/simpress/01.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/simpress/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/simpress/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-02-07 07:32+0000\n" +"PO-Revision-Date: 2023-04-01 21:32+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -8213,7 +8213,7 @@ "par_id521623261977095\n" "help.text" msgid "Set the size of the character and graphic bullets with respect to the paragraph font size." -msgstr "Stellen Sie die Größe der Zeichen- und Grafik-Aufzählungszeichen unabhängig von der Schriftgröße des Absatzes ein." +msgstr "Stellen Sie die Größe der Zeichen- und Grafik-Aufzählungszeichen relativ zu der Schriftgröße des Absatzes ein." #. 2pjgX #: bulletandposition.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/simpress/guide.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/simpress/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/simpress/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-03-18 18:32+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1561609713.000000\n" #. S83CC @@ -50,7 +50,7 @@ "par_id3153914\n" "help.text" msgid "You can convert two-dimensional (2D) objects to create different shapes. $[officename] can convert 2D objects to the following object types:" -msgstr "Sie können zweidimensinoale (2D) Objekte umwandeln, um verschiedene Formen zu erstellen. $[officename] kann 2D-Objekte in die folgenden Objekttypen umwandeln:" +msgstr "Sie können zweidimensionale (2D) Objekte umwandeln, um verschiedene Formen zu erstellen. $[officename] kann 2D-Objekte in die folgenden Objekttypen umwandeln:" #. dog6J #: 3d_create.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/swriter/01.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/swriter/01.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/swriter/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/swriter/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-01 21:32+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -9320,7 +9320,7 @@ "par_id3146340\n" "help.text" msgid "Sets the options for resetting chapter numbers." -msgstr "Legt die Optionen zum Zurücksetzen von Kapitelnummern fest." +msgstr "Legt die Optionen zum Auslesen von Kapitelnummern fest." #. p6M67 #: 04090005.xhp @@ -9338,7 +9338,7 @@ "par_id3149836\n" "help.text" msgid "Choose the heading or chapter level at which to restart numbering in the document." -msgstr "Wählen Sie hier die Überschriften- beziehungsweise Kapitelebene, bei deren Wechsel im Dokument die Nummerierung neu beginnen soll." +msgstr "Wählen Sie hier die Überschriften- beziehungsweise Kapitelebene, bis zu der die letzte Kapitelnummer ausgelesen werden soll." #. qesfL #: 04090005.xhp @@ -9356,7 +9356,7 @@ "par_id3148846\n" "help.text" msgid "Type the character that you want to use as a separator between the heading or chapter levels." -msgstr "Geben Sie das Zeichen ein, das als Trennzeichen zwischen den Überschriften- oder Kapitel-Ebenen verwendet werden soll." +msgstr "Geben Sie das Zeichen ein, das als Trennzeichen zwischen den Überschriften- oder Kapitelebenen und dem Nummernkreis verwendet werden soll." #. FC7Cy #: 04090005.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/swriter/guide.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/swriter/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/swriter/guide.po 2023-05-03 15:22:13.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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" -"Last-Translator: Annabelle Wübbelsmann \n" +"PO-Revision-Date: 2023-03-26 19:32+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -13208,7 +13208,7 @@ "par_id4545426\n" "help.text" msgid "Protection is not intended to be an information security protection, it is a switch to prevent accidental changes." -msgstr "Der Schutz ist nicht als ein Sicherheitsschutz für Informationen gedacht, als zum Schutz vor versehentlichen Änderungen." +msgstr "Der Schutz ist nicht als ein Sicherheitsschutz für Informationen gedacht, sondern zum Schutz vor versehentlichen Änderungen." #. KZpgR #: protection.xhp diff -Nru libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/swriter/librelogo.po libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-7.4.6/translations/source/de/helpcontent2/source/text/swriter/librelogo.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/helpcontent2/source/text/swriter/librelogo.po 2023-05-03 15:22:13.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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-10 08:23+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2023-05-03 11:52+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1541671752.000000\n" #. kypzs @@ -167,7 +167,7 @@ "par_345\n" "help.text" msgid "The “magic wand” icon sets 2-page layout for program editing, expands and converts to uppercase the abbreviated, lowercase Logo commands in the Writer document. Change the language of the document (%PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages - Western) and click on this icon to translate the Logo program to the selected language." -msgstr "Das Icon mit dem Zauberstab setzt ein doppelseitiges Layout für die Programmbearbeitung, erweitert abgekürzte Logo-Befehle und konvertiert Logo-Befehle innerhalb eines Writer-Dokuments in Großbuchstaben. Wechseln Sie die Sprache des Dokuments (wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – Spracheinstellungen – Sprache – Westlich) und klicken Sie auf diese Schaltfläche, um den Logo-Programmcode in die gewählte Sprache zu übersetzen." +msgstr "Die Schaltfläche mit dem Zauberstab setzt ein doppelseitiges Layout für die Programmbearbeitung, erweitert abgekürzte Logo-Befehle und konvertiert Logo-Befehle innerhalb eines Writer-Dokuments in Großbuchstaben. Wechseln Sie die Sprache des Dokuments (wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – Spracheinstellungen – Sprache – Westlich) und klicken Sie auf diese Schaltfläche, um den Logo-Programmcode in die gewählte Sprache zu übersetzen." #. UXKqW #: LibreLogo.xhp diff -Nru libreoffice-7.4.6/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.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-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" +"Last-Translator: Annabelle Wübbelsmann \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ "Label\n" "value.text" msgid "Go to Line..." -msgstr "~Gehen zur Zeile…" +msgstr "~Wechseln zu Zeile…" #. zBWhV #: BasicIDECommands.xcu @@ -1254,7 +1254,7 @@ "Label\n" "value.text" msgid "~Go to Sheet..." -msgstr "~Zu Tabelle…" +msgstr "Wechseln ~zu Tabelle…" #. 79aNB #: CalcCommands.xcu @@ -1394,7 +1394,7 @@ "Label\n" "value.text" msgid "Conditional Formatting: Color Scale" -msgstr "Bedingte Formatierung: Farbskala" +msgstr "Bedingte Formatierung: Farbbalken" #. bkSZz #: CalcCommands.xcu @@ -8614,7 +8614,7 @@ "Label\n" "value.text" msgid "Duplicate ~Slide" -msgstr "Folie do~ppeln" +msgstr "Folie du~plizieren" #. jouok #: DrawImpressCommands.xcu @@ -32566,7 +32566,7 @@ "PopupLabel\n" "value.text" msgid "~More Options..." -msgstr "~Inhalte einfügen…" +msgstr "~Weitere Optionen…" #. V36RP #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/de/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.4.7/translations/source/de/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.4.6/translations/source/de/officecfg/registry/data/org/openoffice/Office.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/officecfg/registry/data/org/openoffice/Office.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-12 16:12+0000\n" +"PO-Revision-Date: 2023-04-24 06:33+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1548393448.000000\n" #. HhMVS @@ -2044,7 +2044,7 @@ "Right\n" "value.text" msgid "Go to that slide" -msgstr "Zur angegebenen Folie springen" +msgstr "Wechseln zur angegebenen Folie" #. bTQBv #: PresenterScreen.xcu diff -Nru libreoffice-7.4.6/translations/source/de/reportdesign/messages.po libreoffice-7.4.7/translations/source/de/reportdesign/messages.po --- libreoffice-7.4.6/translations/source/de/reportdesign/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/reportdesign/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:20+0100\n" -"PO-Revision-Date: 2022-12-12 16:12+0000\n" +"PO-Revision-Date: 2023-03-19 05:32+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1532152617.000000\n" #. FBVr9 @@ -852,7 +852,7 @@ #: reportdesign/inc/strings.hrc:133 msgctxt "RID_STR_REPORTHEADERFOOTER_INSERT" msgid "Insert Report Header/Footer" -msgstr "~Berichtskopf/Berichtsfuß einfügen" +msgstr "~Berichtskopf/-fuß einfügen" #. cF5cE #: reportdesign/inc/strings.hrc:134 diff -Nru libreoffice-7.4.6/translations/source/de/sc/messages.po libreoffice-7.4.7/translations/source/de/sc/messages.po --- libreoffice-7.4.6/translations/source/de/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/sc/messages.po 2023-05-03 15:22:13.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-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" +"Last-Translator: Annabelle Wübbelsmann \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -849,7 +849,7 @@ #: sc/inc/globstr.hrc:148 msgctxt "STR_NO_REF_TABLE" msgid "#REF!" -msgstr "#REF!" +msgstr "#BEZUG!" #. UCTdV #: sc/inc/globstr.hrc:149 @@ -1104,7 +1104,7 @@ #: sc/inc/globstr.hrc:191 msgctxt "STR_FUN_TEXT_COUNT2" msgid "CountA" -msgstr "Anzahl2" +msgstr "Anzahl 2" #. B58nD #: sc/inc/globstr.hrc:192 @@ -1122,13 +1122,13 @@ #: sc/inc/globstr.hrc:194 msgctxt "STR_FUN_TEXT_MAX" msgid "Max" -msgstr "Max" +msgstr "Maximum" #. A8fBH #: sc/inc/globstr.hrc:195 msgctxt "STR_FUN_TEXT_MIN" msgid "Min" -msgstr "Min" +msgstr "Minimum" #. oZVg5 #: sc/inc/globstr.hrc:196 @@ -1140,13 +1140,13 @@ #: sc/inc/globstr.hrc:197 msgctxt "STR_FUN_TEXT_STDDEV" msgid "StDev" -msgstr "StAbw" +msgstr "Standardabweichung" #. NhH7q #: sc/inc/globstr.hrc:198 msgctxt "STR_FUN_TEXT_VAR" msgid "Var" -msgstr "Var" +msgstr "Varianz" #. XyzD7 #: sc/inc/globstr.hrc:199 @@ -2337,13 +2337,13 @@ #: sc/inc/globstr.hrc:400 msgctxt "STR_NAME_INPUT_ROW" msgid "Go To Row" -msgstr "Gehe zu Zeile" +msgstr "Wechseln zu Zeile" #. fF3Qb #: sc/inc/globstr.hrc:401 msgctxt "STR_NAME_INPUT_SHEET" msgid "Go To Sheet" -msgstr "Gehe zu Tabelle" +msgstr "Wechseln zu Tabelle" #. xEAo2 #: sc/inc/globstr.hrc:402 @@ -16953,7 +16953,7 @@ #: sc/inc/strings.hrc:90 msgctxt "STR_DLG_SELECTTABLE_TITLE" msgid "Go to Sheet" -msgstr "Zu Tabelle" +msgstr "Wechseln zu Tabelle" #. iHTDF #: sc/inc/strings.hrc:91 @@ -19639,7 +19639,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:102 msgctxt "conditionalentry|valueft" msgid "Enter a value:" -msgstr "Geben Sie einen Wert ein:" +msgstr "Geben Sie einen Wert ein." #. TMvBu #: sc/uiconfig/scalc/ui/conditionalentry.ui:200 @@ -20017,13 +20017,13 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:441 msgctxt "conditionalentry|colorformat" msgid "Color Scale (2 Entries)" -msgstr "Farbskala (2 Einträge)" +msgstr "Farbbalken (2 Einträge)" #. U3CvE #: sc/uiconfig/scalc/ui/conditionalentry.ui:442 msgctxt "conditionalentry|colorformat" msgid "Color Scale (3 Entries)" -msgstr "Farbskala (3 Einträge)" +msgstr "Farbbalken (3 Einträge)" #. pByFi #: sc/uiconfig/scalc/ui/conditionalentry.ui:443 @@ -20065,7 +20065,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:526 msgctxt "conditionalentry|iconsettype" msgid "3 Arrows" -msgstr "3 Pfeile" +msgstr "3 farbige Pfeile" #. uC7X4 #: sc/uiconfig/scalc/ui/conditionalentry.ui:527 @@ -20077,7 +20077,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:528 msgctxt "conditionalentry|iconsettype" msgid "3 Flags" -msgstr "3 Markierungen" +msgstr "3 Flaggen" #. ABtzD #: sc/uiconfig/scalc/ui/conditionalentry.ui:529 @@ -20113,7 +20113,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:534 msgctxt "conditionalentry|iconsettype" msgid "3 Smileys" -msgstr "3 Smileys" +msgstr "3 gelbe Smileys" #. FEg5s #: sc/uiconfig/scalc/ui/conditionalentry.ui:535 @@ -20137,7 +20137,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:538 msgctxt "conditionalentry|iconsettype" msgid "4 Arrows" -msgstr "4 Pfeile" +msgstr "4 farbige Pfeile" #. 4kGKQ #: sc/uiconfig/scalc/ui/conditionalentry.ui:539 @@ -20167,7 +20167,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:543 msgctxt "conditionalentry|iconsettype" msgid "5 Arrows" -msgstr "5 Pfeile" +msgstr "5 farbige Pfeile" #. 7EuvV #: sc/uiconfig/scalc/ui/conditionalentry.ui:544 @@ -23491,7 +23491,7 @@ #: sc/uiconfig/scalc/ui/gotosheetdialog.ui:16 msgctxt "gotosheetdialog|GoToSheetDialog" msgid "Go to Sheet" -msgstr "Zu Tabelle" +msgstr "Wechseln zu Tabelle" #. ybsRg #: sc/uiconfig/scalc/ui/gotosheetdialog.ui:103 diff -Nru libreoffice-7.4.6/translations/source/de/scp2/source/writer.po libreoffice-7.4.7/translations/source/de/scp2/source/writer.po --- libreoffice-7.4.6/translations/source/de/scp2/source/writer.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/scp2/source/writer.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-02-16 16:36+0000\n" -"Last-Translator: Mister Update \n" -"Language-Team: German \n" +"PO-Revision-Date: 2023-03-19 05:32+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.4\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1532152739.000000\n" #. V3iDr @@ -230,7 +230,7 @@ "STR_REG_VAL_MS_RTF_DOCUMENT\n" "LngText.text" msgid "Rich Text Document" -msgstr "Rich Text Dokument" +msgstr "Rich Text-Dokument" #. 2xDoA #: registryitem_writer.ulf diff -Nru libreoffice-7.4.6/translations/source/de/sd/messages.po libreoffice-7.4.7/translations/source/de/sd/messages.po --- libreoffice-7.4.6/translations/source/de/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-24 06:33+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562386789.000000\n" #. WDjkB @@ -1069,37 +1069,37 @@ #: sd/inc/strings.hrc:133 msgctxt "STR_CLICK_ACTION_PREVPAGE" msgid "Go to previous slide" -msgstr "Sprung zur vorhergehenden Folie" +msgstr "Wechseln zur vorhergehenden Folie" #. MafdG #: sd/inc/strings.hrc:134 msgctxt "STR_CLICK_ACTION_NEXTPAGE" msgid "Go to next slide" -msgstr "Sprung zur nächsten Folie" +msgstr "Wechseln zur nächsten Folie" #. s5NSC #: sd/inc/strings.hrc:135 msgctxt "STR_CLICK_ACTION_FIRSTPAGE" msgid "Go to first slide" -msgstr "Sprung zur ersten Folie" +msgstr "Wechseln zur ersten Folie" #. 6orJ5 #: sd/inc/strings.hrc:136 msgctxt "STR_CLICK_ACTION_LASTPAGE" msgid "Go to last slide" -msgstr "Sprung zur letzten Folie" +msgstr "Wechseln zur letzten Folie" #. ddBWz #: sd/inc/strings.hrc:137 msgctxt "STR_CLICK_ACTION_BOOKMARK" msgid "Go to page or object" -msgstr "Sprung zu Seite oder Objekt" +msgstr "Wechseln zu Seite oder Objekt" #. TMn3K #: sd/inc/strings.hrc:138 msgctxt "STR_CLICK_ACTION_DOCUMENT" msgid "Go to document" -msgstr "Sprung zu Dokument" +msgstr "Wechseln zu Dokument" #. 3h9F4 #: sd/inc/strings.hrc:139 @@ -9482,7 +9482,7 @@ #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:12 msgctxt "slidecontextmenu|goto" msgid "_Go to Slide" -msgstr "_Gehe zu Folie" +msgstr "_Wechseln zu Folie" #. rCXNj #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:38 diff -Nru libreoffice-7.4.6/translations/source/de/sfx2/messages.po libreoffice-7.4.7/translations/source/de/sfx2/messages.po --- libreoffice-7.4.6/translations/source/de/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/sfx2/messages.po 2023-05-03 15:22:13.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-09-21 11:43+0200\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2023-04-19 00:34+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.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560714585.000000\n" #. bHbFE @@ -1844,7 +1844,7 @@ #: include/sfx2/strings.hrc:327 msgctxt "STR_TEMPLATE_NAME30" msgid "Businesscard with logo" -msgstr "Geschäftsbrief, mit Logo" +msgstr "Visitenkarte, mit Logo" #. UAmSj #: include/sfx2/strings.hrc:328 @@ -3027,7 +3027,7 @@ #: sfx2/uiconfig/ui/descriptioninfopage.ui:32 msgctxt "descriptioninfopage|label28" msgid "_Subject:" -msgstr "_Betreff:" +msgstr "Th_ema:" #. gEGPn #: sfx2/uiconfig/ui/descriptioninfopage.ui:46 diff -Nru libreoffice-7.4.6/translations/source/de/svx/messages.po libreoffice-7.4.7/translations/source/de/svx/messages.po --- libreoffice-7.4.6/translations/source/de/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-02 08:34+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.15.2\n" "X-POOTLE-MTIME: 1559619898.000000\n" #. 3GkZj @@ -7100,9 +7100,9 @@ "\n" "Do you really want to delete this submission?" msgstr "" -"Das Löschen der Vorlage '$SUBMISSIONNAME' wirkt sich auf alle Steuerelemente aus, die damit verbunden sind.\n" +"Das Löschen der Übermittlung '$SUBMISSIONNAME' wirkt sich auf alle Steuerelemente aus, die damit verbunden sind.\n" "\n" -"Möchten Sie die Vorlage wirklich löschen?" +"Möchten Sie die Übermittlung wirklich löschen?" #. SGiK5 #: include/svx/strings.hrc:1276 @@ -7138,7 +7138,7 @@ #: include/svx/strings.hrc:1280 msgctxt "RID_STR_EMPTY_SUBMISSIONNAME" msgid "The submission must have a name." -msgstr "Die Submission muss einen Namen haben." +msgstr "Die Übermittlung muss einen Namen haben." #. xcAaD #: include/svx/strings.hrc:1281 @@ -7264,19 +7264,19 @@ #: include/svx/strings.hrc:1301 msgctxt "RID_STR_DATANAV_ADD_SUBMISSION" msgid "Add Submission" -msgstr "Submission hinzufügen" +msgstr "Übermittlung hinzufügen" #. AX58u #: include/svx/strings.hrc:1302 msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION" msgid "Edit Submission" -msgstr "Submission bearbeiten" +msgstr "Übermittlung bearbeiten" #. DFxmD #: include/svx/strings.hrc:1303 msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION" msgid "Delete Submission" -msgstr "Submission löschen" +msgstr "Übermittlung löschen" #. qvvD7 #: include/svx/strings.hrc:1304 @@ -13328,7 +13328,7 @@ #: svx/uiconfig/ui/addsubmissiondialog.ui:8 msgctxt "addsubmissiondialog|AddSubmissionDialog" msgid "Add Submission" -msgstr "Submission hinzufügen" +msgstr "Übermittlung hinzufügen" #. Q6TEm #: svx/uiconfig/ui/addsubmissiondialog.ui:105 @@ -14432,7 +14432,7 @@ #: svx/uiconfig/ui/datanavigator.ui:271 msgctxt "datanavigator|submissions" msgid "Submissions" -msgstr "Vorlagen" +msgstr "Übermittlungen" #. hHddS #: svx/uiconfig/ui/datanavigator.ui:319 diff -Nru libreoffice-7.4.6/translations/source/de/sw/messages.po libreoffice-7.4.7/translations/source/de/sw/messages.po --- libreoffice-7.4.6/translations/source/de/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-24 06:33+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -6376,7 +6376,7 @@ #: sw/inc/strings.hrc:744 msgctxt "FLD_DOCINFO_THEMA" msgid "Subject" -msgstr "Betreff" +msgstr "Thema" #. FCVZS #: sw/inc/strings.hrc:745 @@ -7753,13 +7753,13 @@ #: sw/inc/strings.hrc:1007 msgctxt "FMT_NUM_ABC_N" msgid "A .. AA .. AAA" -msgstr "A .. AA .. AAA" +msgstr "A ‥ AA ‥ AAA" #. m84Fb #: sw/inc/strings.hrc:1008 msgctxt "FMT_NUM_SABC_N" msgid "a .. aa .. aaa" -msgstr "a .. aa .. aaa" +msgstr "a ‥ aa ‥ aaa" #. d9YtB #: sw/inc/strings.hrc:1009 @@ -11650,7 +11650,7 @@ #: sw/uiconfig/swriter/ui/captionoptions.ui:152 msgctxt "captionoptions|label6" msgid "_Separator:" -msgstr "_Trenner:" +msgstr "_Trennzeichen:" #. ycswr #: sw/uiconfig/swriter/ui/captionoptions.ui:168 @@ -11680,7 +11680,7 @@ #: sw/uiconfig/swriter/ui/captionoptions.ui:239 msgctxt "captionoptions|extended_tip|border_and_shadow" msgid "Applies the border and shadow of the object to the caption frame." -msgstr "Versieht den Beschriftungsrahmen mit einer Umrandung oder einem Schatten." +msgstr "Versieht den Kapitelrahmen mit einer Umrandung oder einem Schatten." #. 2Fy5S #: sw/uiconfig/swriter/ui/captionoptions.ui:255 @@ -17204,7 +17204,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:335 msgctxt "insertbookmark|goto" msgid "Go to" -msgstr "Gehe zu" +msgstr "Wechseln zu" #. AfRGE #: sw/uiconfig/swriter/ui/insertbookmark.ui:349 @@ -17426,7 +17426,7 @@ #: sw/uiconfig/swriter/ui/insertcaption.ui:262 msgctxt "insertcaption|extended_tip|num_separator_edit" msgid "Type the text that you want to appear after the caption number." -msgstr "Geben Sie den Text ein, der hinter der Nummerierung angezeigt werden soll." +msgstr "Geben Sie den Text ein, der hinter der Beschriftungsnummer angezeigt werden soll." #. DS3Qi #: sw/uiconfig/swriter/ui/insertcaption.ui:278 @@ -17444,7 +17444,7 @@ #: sw/uiconfig/swriter/ui/insertcaption.ui:315 msgctxt "insertcaption|extended_tip|category" msgid "Select the caption category, or type a name to create a new category. The category text appears before the caption number in the caption label. Each predefined caption category is formatted with a paragraph style of the same name." -msgstr "Wählen Sie die Kategorie für die Beschriftung aus oder geben Sie einen Namen ein, um eine neue Kategorie zu erstellen. Der Text der Kategorie erscheint vor der Nummer der Beschriftung im Namen der Beschriftung. Jede vordefinierte Kategorie der Beschriftung wird mit einer gleichnamigen Absatzvorlage formatiert." +msgstr "Wählen Sie die Beschriftungskategorie aus oder geben Sie einen Namen ein, um eine neue Kategorie zu erstellen. Der Text der Kategorie erscheint vor der Beschriftungsnummer im Beschriftungseintrag. Jede vordefinierte Beschriftungskategorie wird mit einer gleichnamigen Absatzvorlage formatiert." #. rJDNR #: sw/uiconfig/swriter/ui/insertcaption.ui:330 @@ -20420,7 +20420,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:34 msgctxt "navigatorcontextmenu|STR_GOTO" msgid "Go to" -msgstr "Gehe zu" +msgstr "Wechseln zu" #. VCmAZ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:43 diff -Nru libreoffice-7.4.6/translations/source/de/wizards/messages.po libreoffice-7.4.7/translations/source/de/wizards/messages.po --- libreoffice-7.4.6/translations/source/de/wizards/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/de/wizards/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-19 13:14+0100\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1557207162.000000\n" #. gbiMx @@ -758,7 +758,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:164 msgctxt "RID_FAXWIZARDDIALOG_START_24" msgid "To create another new fax out of the template, go to the location where you saved the template and double-click the file." -msgstr "Um ein weiteres Fax mit dieser Dokumentvorlage zu erstellen, gehen Sie zum Speicherort der Dokumentvorlage und doppelklicken Sie auf die Datei." +msgstr "Um ein weiteres Fax mit dieser Dokumentvorlage zu erstellen, wechseln Sie zum Speicherort der Dokumentvorlage und doppelklicken Sie auf die Datei." #. keXXU #: wizards/com/sun/star/wizards/common/strings.hrc:165 diff -Nru libreoffice-7.4.6/translations/source/dsb/chart2/messages.po libreoffice-7.4.7/translations/source/dsb/chart2/messages.po --- libreoffice-7.4.6/translations/source/dsb/chart2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/chart2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547385228.000000\n" #. NCRDD @@ -559,7 +559,7 @@ #: chart2/inc/strings.hrc:99 msgctxt "STR_OBJECT_SHAPE" msgid "Drawing Object" -msgstr "Kresleński objekt" +msgstr "Kreslański objekt" #. dNCXG #: chart2/inc/strings.hrc:100 diff -Nru libreoffice-7.4.6/translations/source/dsb/cui/messages.po libreoffice-7.4.7/translations/source/dsb/cui/messages.po --- libreoffice-7.4.6/translations/source/dsb/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-02 12:41+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564571080.000000\n" #. GyY9M @@ -2370,7 +2370,7 @@ #: cui/inc/tipoftheday.hrc:82 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to add many of the same shapes in Draw/Impress? Double-click a tool in the drawing toolbar to use it for repeated tasks." -msgstr "Cośo wjele samskich formow w Draw/Impress pśidaś? Klikniśo dwójcy na rěd w kresleńskej symbolowej rědce, aby jen za wóspjetowane nadawki wužywał." +msgstr "Cośo wjele samskich formow w Draw/Impress pśidaś? Klikniśo dwójcy na rěd w kreslańskej symbolowej rědce, aby jen za wóspjetowane nadawki wužywał." #. DDGnC #: cui/inc/tipoftheday.hrc:83 @@ -2958,7 +2958,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 "Wužywajśo rěd Zwězowak z kresleńskeje symboloweje rědki w Draw/Impress, aby rědne běžne diagramy napórał a objekt pó žycenju do Writer kopěrował." +msgstr "Wužywajśo rěd Zwězowak z kreslańskeje symboloweje rědki w Draw/Impress, aby rědne běžne diagramy napórał a objekt pó žycenju do Writer kopěrował." #. Uq3tZ #: cui/inc/tipoftheday.hrc:181 @@ -3175,7 +3175,7 @@ #: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages for Documents ▸ Asian (and make the button visible with right-click and then Visible Buttons ▸ Vertical Text)." -msgstr "Aby w Draw rěd „Wertikalny tekst“ w kresleńskej symbolowej rědce zmóžnił, wubjeŕśo „Rědy ▸ Nastajenja ▸ Rěcne nastajenja ▸ Standardne rěcy za dokumenty ▸ Aziske“ (a cyńśo jen widobny z kliknjenim z pšaweju tastu na rědku a pótom na „Widobne tłocaški“ ▸ Wertikalny tekst)." +msgstr "Aby w Draw rěd „Wertikalny tekst“ w kreslańskej symbolowej rědce zmóžnił, wubjeŕśo „Rědy ▸ Nastajenja ▸ Rěcne nastajenja ▸ Standardne rěcy za dokumenty ▸ Aziske“ (a cyńśo jen widobny z kliknjenim z pšaweju tastu na rědku a pótom na „Widobne tłocaški“ ▸ Wertikalny tekst)." #. mmG7g #: cui/inc/tipoftheday.hrc:216 @@ -5173,7 +5173,7 @@ #: cui/uiconfig/ui/areadialog.ui:257 msgctxt "areadialog|extended_tip|AreaDialog" msgid "Sets the fill properties of the selected drawing object." -msgstr "Nastaja połnjeńske kakosći za wubrany kresleński objekt." +msgstr "Nastaja połnjeńske kakosći za wubrany kreslański objekt." #. as89H #: cui/uiconfig/ui/areatabpage.ui:34 @@ -5197,7 +5197,7 @@ #: cui/uiconfig/ui/areatabpage.ui:40 msgctxt "areatabpage|extended_tip|tablelb" msgid "Set the fill options for the selected drawing object or document element." -msgstr "Póstajśo połnjeńske nastajenja za wubrany kresleński objekt abo dokumentowy element." +msgstr "Póstajśo połnjeńske nastajenja za wubrany kreslański objekt abo dokumentowy element." #. 2kC9i #: cui/uiconfig/ui/areatabpage.ui:52 @@ -5287,7 +5287,7 @@ #: cui/uiconfig/ui/areatabpage.ui:220 msgctxt "areatabpage|extended_tip|AreaTabPage" msgid "Set the fill options for the selected drawing object or document element." -msgstr "Póstajśo połnjeńske nastajenja za wubrany kresleński objekt abo dokumentowy element." +msgstr "Póstajśo połnjeńske nastajenja za wubrany kreslański objekt abo dokumentowy element." #. GSXcM #: cui/uiconfig/ui/asiantypography.ui:21 @@ -6379,7 +6379,7 @@ #: cui/uiconfig/ui/cellalignment.ui:224 msgctxt "cellalignment|checkWrapTextAuto" msgid "_Wrap text automatically" -msgstr "_Awtomatiske łamanje smužki" +msgstr "Tekst _awtomatiski łamaś" #. warfE #: cui/uiconfig/ui/cellalignment.ui:234 @@ -19498,7 +19498,7 @@ #: cui/uiconfig/ui/shadowtabpage.ui:50 msgctxt "shadowtabpage|extended_tip|TSB_SHOW_SHADOW" msgid "Adds a shadow to the selected drawing object." -msgstr "Pśidawa wubranemu kresleńskemu objektoju seń." +msgstr "Pśidawa wubranemu kreslańskemu objektoju seń." #. GGsRg #: cui/uiconfig/ui/shadowtabpage.ui:78 @@ -19570,7 +19570,7 @@ #: cui/uiconfig/ui/shadowtabpage.ui:325 msgctxt "shadowtabpage|extended_tip|ShadowTabPage" msgid "Add a shadow to the selected drawing object, and define the properties of the shadow." -msgstr "Pśidajśo wubranemu kresleńskemu objektoju seń, a definěrujśo kakosći sni." +msgstr "Pśidajśo wubranemu kreslańskemu objektoju seń, a definěrujśo kakosći sni." #. C7Ct3 #: cui/uiconfig/ui/showcoldialog.ui:16 @@ -20728,7 +20728,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:74 msgctxt "textanimtabpage|extended_tip|LB_EFFECT" msgid "Select the animation effect that you want to apply to the text in the selected drawing object. To remove an animation effect, select No Effect." -msgstr "Wubjeŕśo animaciski efekt, kótaryž cośo na tekst we wubranem kresleńskem objekśe nałožyś. Aby animaciski efekt wótwónoźeł, wubjeŕśo „Žeden efekt“." +msgstr "Wubjeŕśo animaciski efekt, kótaryž cośo na tekst we wubranem kreslańskem objekśe nałožyś. Aby animaciski efekt wótwónoźeł, wubjeŕśo „Žeden efekt“." #. FpCUy #: cui/uiconfig/ui/textanimtabpage.ui:95 @@ -20824,7 +20824,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:274 msgctxt "textanimtabpage|extended_tip|TSB_START_INSIDE" msgid "Text is visible and inside the drawing object when the effect is applied." -msgstr "Tekst jo widobny a w kresleńskem objekśe, gaž se efekt nałožujo." +msgstr "Tekst jo widobny a w kreslańskem objekśe, gaž se efekt nałožujo." #. AojvU #: cui/uiconfig/ui/textanimtabpage.ui:286 @@ -20920,7 +20920,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:543 msgctxt "textanimtabpage|extended_tip|TextAnimation" msgid "Adds an animation effect to the text in the selected drawing object." -msgstr "Pśidawa tekst we wubranem kresleńskem objekśe animaciski efekt." +msgstr "Pśidawa tekst we wubranem kreslańskem objekśe animaciski efekt." #. 4iDya #: cui/uiconfig/ui/textattrtabpage.ui:58 @@ -20956,7 +20956,7 @@ #: cui/uiconfig/ui/textattrtabpage.ui:107 msgctxt "textattrtabpage|extended_tip|TSB_FIT_TO_SIZE" msgid "Resizes the text to fit the entire area of the drawing or text object." -msgstr "Změnijo wjelikosć teksta, aby do cełego wobceŕka kresleńskego abo tekstoweho objekta pasował." +msgstr "Změnijo wjelikosć teksta, aby do cełego wobceŕka kreslańskego abo tekstowego objekta pasował." #. HNhqB #: cui/uiconfig/ui/textattrtabpage.ui:118 @@ -20968,13 +20968,13 @@ #: cui/uiconfig/ui/textattrtabpage.ui:127 msgctxt "textattrtabpage|extended_tip|TSB_CONTOUR" msgid "Adapts the text flow so that it matches the contours of the selected drawing object." -msgstr "Pśiměrjujo tekstowy běg na kontury wubranego kresleńskego objekta." +msgstr "Pśiměrjujo tekstowy běg na kontury wubranego kreslańskego objekta." #. ZxFbp #: cui/uiconfig/ui/textattrtabpage.ui:142 msgctxt "textattrtabpage|label1" msgid "Drawing Object Text" -msgstr "Tekst kresleńskego teksta" +msgstr "Tekst kreslańskego teksta" #. E7JrK #: cui/uiconfig/ui/textattrtabpage.ui:172 @@ -21034,25 +21034,25 @@ #: cui/uiconfig/ui/textattrtabpage.ui:322 msgctxt "textattrtabpage|extended_tip|MTR_FLD_LEFT" msgid "Enter the amount of space to leave between the left edge of the drawing or text object and the left border of the text." -msgstr "Zapódajśo wótkłon, kótaryž cośo mjazy lěweju kšomu kresleńskego abo tekstowego objekta a lěwym ramikom teksta wóstajiś." +msgstr "Zapódajśo wótkłon, kótaryž cośo mjazy lěweju kšomu kreslańskego abo tekstowego objekta a lěwym ramikom teksta wóstajiś." #. Gscsa #: cui/uiconfig/ui/textattrtabpage.ui:341 msgctxt "textattrtabpage|extended_tip|MTR_FLD_RIGHT" msgid "Enter the amount of space to leave between the right edge of the drawing or text object and the right border of the text." -msgstr "Zapódajśo wótkłon, kótaryž cośo mjazy pšaweju kšomu kresleńskego abo tekstowego objekta a pšawym ramikom teksta wóstajiś." +msgstr "Zapódajśo wótkłon, kótaryž cośo mjazy pšaweju kšomu kreslańskego abo tekstowego objekta a pšawym ramikom teksta wóstajiś." #. 7CCsd #: cui/uiconfig/ui/textattrtabpage.ui:360 msgctxt "textattrtabpage|extended_tip|MTR_FLD_TOP" msgid "Enter the amount of space to leave between the top edge of the drawing or text object and the upper border of the text." -msgstr "Zapódajśo wótkłon, kótaryž cośo mjazy górneju kšomu kresleńskego abo tekstowego objekta a górnym ramikom teksta wóstajiś." +msgstr "Zapódajśo wótkłon, kótaryž cośo mjazy górneju kšomu kreslańskego abo tekstowego objekta a górnym ramikom teksta wóstajiś." #. T3o9E #: cui/uiconfig/ui/textattrtabpage.ui:379 msgctxt "textattrtabpage|extended_tip|MTR_FLD_BOTTOM" msgid "Enter the amount of space to leave between the bottom edge of the drawing or text object and the lower border of the text." -msgstr "Zapódajśo wótkłon, kótaryž cośo mjazy dolneju kšomu kresleńskego abo tekstowego objekta a dolnym ramikom teksta wóstajiś." +msgstr "Zapódajśo wótkłon, kótaryž cośo mjazy dolneju kšomu kreslańskego abo tekstowego objekta a dolnym ramikom teksta wóstajiś." #. aYFEA #: cui/uiconfig/ui/textattrtabpage.ui:394 @@ -21076,7 +21076,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 "Zakokulujo tekst na połnej šyrokosći kresleńskego abo tekstowego objekta." +msgstr "Zakokulujo tekst na połnej šyrokosći kreslańskego abo tekstowego objekta." #. BP2Vk #: cui/uiconfig/ui/textattrtabpage.ui:483 @@ -21088,7 +21088,7 @@ #: cui/uiconfig/ui/textattrtabpage.ui:505 msgctxt "textattrtabpage|extended_tip|TextAttributesPage" msgid "Sets the layout and anchoring properties for text in the selected drawing or text object." -msgstr "Nastaja kakosći wugótowanja a zakokulenja za tekst we wubranem kresleńskem abo tekstowem objekśe." +msgstr "Nastaja kakosći wugótowanja a zakokulenja za tekst we wubranem kreslańskem abo tekstowem objekśe." #. DCdet #: cui/uiconfig/ui/textcolumnstabpage.ui:37 @@ -21118,7 +21118,7 @@ #: cui/uiconfig/ui/textcolumnstabpage.ui:108 msgctxt "textcolumnstabpage|extended_tip|TextColumnsPage" msgid "Sets the columns’ layout properties for text in the selected drawing or text object." -msgstr "Nastaja kakosći wugótowanja słupow za tekst we wubranem kresleńskem abo tekstowem objekśe." +msgstr "Nastaja kakosći wugótowanja słupow za tekst we wubranem kreslańskem abo tekstowem objekśe." #. 3Huae #: cui/uiconfig/ui/textdialog.ui:8 diff -Nru libreoffice-7.4.6/translations/source/dsb/extras/source/autocorr/emoji.po libreoffice-7.4.7/translations/source/dsb/extras/source/autocorr/emoji.po --- libreoffice-7.4.6/translations/source/dsb/extras/source/autocorr/emoji.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/extras/source/autocorr/emoji.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-07-04 16:16+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Lower Sorbian \n" +"Language-Team: Lower Sorbian \n" "Language: dsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542473760.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -11344,7 +11344,7 @@ "LOWER_LEFT_CRAYON\n" "LngText.text" msgid "crayon" -msgstr "kresleński barwik" +msgstr "kreslański barwik" #. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji #. 6mFoM diff -Nru libreoffice-7.4.6/translations/source/dsb/forms/messages.po libreoffice-7.4.7/translations/source/dsb/forms/messages.po --- libreoffice-7.4.6/translations/source/dsb/forms/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/forms/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-01-28 07:37+0000\n" +"PO-Revision-Date: 2023-04-06 20:34+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Lower Sorbian \n" +"Language-Team: Lower Sorbian \n" "Language: dsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1526225051.000000\n" #. naBgZ @@ -306,7 +306,7 @@ #: forms/inc/strings.hrc:74 msgctxt "RID_STR_DATATYPE_DOUBLE" msgid "Double" -msgstr "Dwójny" +msgstr "Datowy typ Double" #. ki4Gz #: forms/inc/strings.hrc:75 diff -Nru libreoffice-7.4.6/translations/source/dsb/formula/messages.po libreoffice-7.4.7/translations/source/dsb/formula/messages.po --- libreoffice-7.4.6/translations/source/dsb/formula/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/formula/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-04-04 21:33+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. YfKFn #: formula/inc/core_resource.hrc:2278 @@ -115,7 +115,7 @@ #: formula/inc/core_resource.hrc:2298 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "RAND" -msgstr "RAND" +msgstr "PŚIPADNALICBA" #. FJXfC #: formula/inc/core_resource.hrc:2299 @@ -361,7 +361,7 @@ #: formula/inc/core_resource.hrc:2339 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "INT" -msgstr "INT" +msgstr "CEŁALICBA" #. gQnYU #: formula/inc/core_resource.hrc:2340 @@ -1207,7 +1207,7 @@ #: formula/inc/core_resource.hrc:2480 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "SUBTOTAL" -msgstr "ŹĚLNYWUSLĚDK" +msgstr "MJAZYREZULTAT" #. nggfn #: formula/inc/core_resource.hrc:2481 @@ -2510,13 +2510,13 @@ #: formula/inc/core_resource.hrc:2712 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "RAND.NV" -msgstr "PŚIPADNALICBA.NZ" +msgstr "PŚIPADNALICBA.NB" #. uYSAT #: formula/inc/core_resource.hrc:2713 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "RANDBETWEEN.NV" -msgstr "PŚIPADNYWOBCERK.NZ" +msgstr "PŚIPADNYWOBCERK.NB" #. wH3TZ msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-02 12:41+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565003328.000000\n" #. W5ukN @@ -4414,7 +4414,7 @@ "Label\n" "value.text" msgid "~Group and Outline" -msgstr "~Kupki a rozrědowanje" +msgstr "~Zrědowanje a rozrědowanje" #. ctLL9 #: CalcCommands.xcu @@ -5364,7 +5364,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "Kakosći kresleńskego objekta" +msgstr "Kakosći kreslańskego objekta" #. bFPQ6 #: CalcWindowState.xcu @@ -7064,7 +7064,7 @@ "UIName\n" "value.text" msgid "Drawing objects" -msgstr "Kresleńske objekty" +msgstr "Kreslańske objekty" #. LCJ8Q #: DbReportWindowState.xcu @@ -9034,7 +9034,7 @@ "Label\n" "value.text" msgid "~Drawing View" -msgstr "~Kresleński naglěd" +msgstr "~Kreslański naglěd" #. coDkB #: DrawImpressCommands.xcu @@ -11684,7 +11684,7 @@ "UIName\n" "value.text" msgid "Group" -msgstr "Kupka" +msgstr "Rědowaś" #. kmM5g #: DrawWindowState.xcu @@ -20846,7 +20846,7 @@ "Label\n" "value.text" msgid "~Group..." -msgstr "~Kupku wutwóriś..." +msgstr "~Rědowaś..." #. nEL3F #: GenericCommands.xcu @@ -20866,7 +20866,7 @@ "Label\n" "value.text" msgid "~Ungroup..." -msgstr "Kupku wó~tpóraś..." +msgstr "Zrědowanje wó~tpóraś..." #. emKjD #: GenericCommands.xcu @@ -21616,7 +21616,7 @@ "Label\n" "value.text" msgid "Draw Functions" -msgstr "Kresleńske funkcije" +msgstr "Kreslańske funkcije" #. 38Vrk #: GenericCommands.xcu @@ -21626,7 +21626,7 @@ "TooltipLabel\n" "value.text" msgid "Show Draw Functions" -msgstr "Kresleńske funkcije pokazaś" +msgstr "Kreslańske funkcije pokazaś" #. cM5es #: GenericCommands.xcu @@ -23176,7 +23176,7 @@ "Label\n" "value.text" msgid "~Ungroup" -msgstr "~Kupku wótpóraś" +msgstr "~Zrědowanje wótpóraś" #. aAbAV #: GenericCommands.xcu @@ -27316,7 +27316,7 @@ "UIName\n" "value.text" msgid "Group" -msgstr "Kupka" +msgstr "Rědowaś" #. QF4PS #: ImpressWindowState.xcu @@ -29626,7 +29626,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "Kompaktne kupki" +msgstr "Kompaktnje zrědowany" #. qM7MP #: ToolbarMode.xcu @@ -29636,7 +29636,7 @@ "Label\n" "value.text" msgid "Groupedbar" -msgstr "Kupki" +msgstr "Zrědowany" #. jjRxj #: ToolbarMode.xcu @@ -29716,7 +29716,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "Kompaktne kupki" +msgstr "Kompaktnje zrědowany" #. is78h #: ToolbarMode.xcu @@ -29726,7 +29726,7 @@ "Label\n" "value.text" msgid "Groupedbar" -msgstr "Kupki" +msgstr "Zrědowany" #. GPGPB #: ToolbarMode.xcu @@ -29796,7 +29796,7 @@ "Label\n" "value.text" msgid "Groupedbar" -msgstr "Kupki" +msgstr "Zrědowany" #. WcJLU #: ToolbarMode.xcu @@ -29856,7 +29856,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "Kompaktne kupki" +msgstr "Kompaktnje zrědowany" #. FncB5 #: ToolbarMode.xcu @@ -36226,7 +36226,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "Kakosći kresleńskego objekta" +msgstr "Kakosći kreslańskego objekta" #. oZKsf #: WriterFormWindowState.xcu @@ -36716,7 +36716,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "Kakosći kresleńskego objekta" +msgstr "Kakosći kreslańskego objekta" #. MavEo #: WriterGlobalWindowState.xcu @@ -37226,7 +37226,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "Kakosći kresleńskego objekta" +msgstr "Kakosći kreslańskego objekta" #. ifLHA #: WriterReportWindowState.xcu @@ -37726,7 +37726,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "Kakosći kresleńskego objekta" +msgstr "Kakosći kreslańskego objekta" #. AVubD #: WriterWebWindowState.xcu @@ -38196,7 +38196,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "Kakosći kresleńskego objekta" +msgstr "Kakosći kreslańskego objekta" #. roe9Y #: WriterWindowState.xcu @@ -38726,7 +38726,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "Kakosći kresleńskego objekta" +msgstr "Kakosći kreslańskego objekta" #. GYYzn #: XFormsWindowState.xcu diff -Nru libreoffice-7.4.6/translations/source/dsb/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.4.7/translations/source/dsb/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.4.6/translations/source/dsb/officecfg/registry/data/org/openoffice/Office.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/officecfg/registry/data/org/openoffice/Office.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-10 11:03+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547386603.000000\n" #. HhMVS @@ -204,7 +204,7 @@ "Title\n" "value.text" msgid "~Labels" -msgstr "~Pópisanja" +msgstr "~Etikety" #. fD6ro #: Common.xcu diff -Nru libreoffice-7.4.6/translations/source/dsb/sc/messages.po libreoffice-7.4.7/translations/source/dsb/sc/messages.po --- libreoffice-7.4.6/translations/source/dsb/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-28 18:04+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -889,7 +889,7 @@ #: sc/inc/globstr.hrc:154 msgctxt "STR_DATAPILOT_SUBTOTAL" msgid "The source range contains subtotals which may distort the results. Use it anyway?" -msgstr "Žrědłowy wobceŕk źělne wuslědki wopśimujo, kótarež mógu wuslědk zwopacniś. Ma se weto wužywaś?" +msgstr "Žrědłowy wobceŕk mjazyrezlutaty wopśimujo, kótarež mógu wuslědk zwopacniś. Ma se weto wužywaś?" #. gX9QE #: sc/inc/globstr.hrc:155 @@ -1838,7 +1838,7 @@ #: sc/inc/globstr.hrc:320 msgctxt "STR_VOBJ_DRAWINGS" msgid "Drawing Objects" -msgstr "Kresleńske objekty" +msgstr "Kreslańske objekty" #. JGftp #: sc/inc/globstr.hrc:321 @@ -17401,7 +17401,7 @@ #: sc/inc/strings.hrc:166 msgctxt "SCSTR_CONTENT_DRAWING" msgid "Drawing objects" -msgstr "Kresleńske objekty" +msgstr "Kreslańske objekty" #. sCafb #: sc/inc/strings.hrc:167 @@ -18603,7 +18603,7 @@ #: sc/inc/strings.hrc:391 msgctxt "subtotaloptionspage|extended_tip|lbuserdef" msgid "Uses a custom sorting order that you defined in the Options dialog box at %PRODUCTNAME Calc - Sort Lists." -msgstr "Wuž\\wa swójski sortěrowański pórěd, kótaryž sćo definěrował w dialogowem pólu Nastajenja pód %PRODUCTNAME Calc - Sortěrowańske lisćiny." +msgstr "Wužywa swójski sortěrowański pórěd, kótaryž sćo definěrował w dialogowem pólu Nastajenja pód %PRODUCTNAME Calc - Sortěrowańske lisćiny." #. gbz6Y #: sc/inc/strings.hrc:392 @@ -21111,7 +21111,7 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:145 msgctxt "datafielddialog|extended_tip|functions" msgid "Click the type of subtotal that you want to calculate. This option is only available if the User-defined option is selected." -msgstr "Klikniśo na typ źělnego wuslědka, kótaryž cośo wulicyś. Toś to nastajenje jo jano k dispoziciji, jolic nastajenje Swójski jo wubrane." +msgstr "Klikniśo na typ mjazyrezultata, kótaryž cośo wulicyś. Toś to nastajenje jo jano k dispoziciji, jolic nastajenje Swójski jo wubrane." #. oY6n8 #: sc/uiconfig/scalc/ui/datafielddialog.ui:162 @@ -21339,13 +21339,13 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:292 msgctxt "datafieldoptionsdialog|layout" msgid "Outline layout with subtotals at the top" -msgstr "Rozrědowański naglěd z źělnymi wuslědkami górjejce" +msgstr "Rozrědowański naglěd z mjazyrezultatami górjejce" #. 2aDMy #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:293 msgctxt "datafieldoptionsdialog|layout" msgid "Outline layout with subtotals at the bottom" -msgstr "Rozrědowański naglěd z źělnymi wuslědkami dołojce" +msgstr "Rozrědowański naglěd z mjazyrezultatami dołojce" #. CocpF #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:297 @@ -26507,7 +26507,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:111 msgctxt "optcalculatepage|calc" msgid "_Precision as shown" -msgstr "_Dokradnosć kaž se pokazujo" +msgstr "_Dokradnosć kaž pokazana" #. YGAFd #: sc/uiconfig/scalc/ui/optcalculatepage.ui:119 @@ -26861,7 +26861,7 @@ #: sc/uiconfig/scalc/ui/optdlg.ui:50 msgctxt "extended_tip|suppressCB" msgid "Specifies that empty pages that have no cell contents or draw objects are not printed." -msgstr "Pódawa, až se prozne boki, kótarež celowe wopśimjeśe njamaju abo kresleńskeobjekty njeśišće." +msgstr "Pódawa, až se prozne boki, kótarež celowe wopśimjeśe njamaju abo kreslańske objekty njeśišće." #. udgBk #: sc/uiconfig/scalc/ui/optdlg.ui:66 @@ -27515,7 +27515,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:412 msgctxt "pastespecial|extended_tip|objects" msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects." -msgstr "Zasajźujo objekty, kótarež su we wubranem celowem wobceŕku wopśimjone. Te mógu OLE-objekty, diagramowe objekty abo kresleńske objekty byś." +msgstr "Zasajźujo objekty, kótarež su we wubranem celowem wobceŕku wopśimjone. Te mógu OLE-objekty, diagramowe objekty abo kreslańske objekty byś." #. 2wYuG #: sc/uiconfig/scalc/ui/pastespecial.ui:423 @@ -27737,7 +27737,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:211 msgctxt "pivotfielddialog|extended_tip|functions" msgid "Click the type of subtotal that you want to calculate. This option is only available if the User-defined option is selected." -msgstr "Klikniśo na typ źělnego wuslědka, kótaryž cośo wulicyś. Toś to nastajenje jo jano k dispoziciji, jolic nastajenje Swójski jo wubrane." +msgstr "Klikniśo na typ mjazyrezultata, kótaryž cośo wulicyś. Toś to nastajenje jo jano k dispoziciji, jolic nastajenje Swójski jo wubrane." #. vDXUZ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:228 @@ -27953,7 +27953,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:48 msgctxt "pivottablelayoutdialog|PivotTableLayout" msgid "Pivot Table Layout" -msgstr "Wugótwanje pivotowych tabelow" +msgstr "Wugótowanje pivotowych tabelow" #. FCKww #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:75 @@ -28355,7 +28355,7 @@ #: sc/uiconfig/scalc/ui/printeroptions.ui:29 msgctxt "printeroptions|extended_tip|suppressemptypages" msgid "If checked, empty pages that have no cell contents or drawing objects are not printed." -msgstr "Pódawa, jolic zmóžnjone, až se prozne boki, kótarež celowe wopśimjeśe njamaju abo kresleńske objekty njeśišće." +msgstr "Pódawa, jolic zmóžnjone, až se prozne boki, kótarež celowe wopśimjeśe njamaju abo kreslańske objekty njeśišće." #. tkryr #: sc/uiconfig/scalc/ui/printeroptions.ui:38 @@ -29663,7 +29663,7 @@ #: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:123 msgctxt "sharedocumentdlg|warning" msgid "Note: Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities." -msgstr "Glědajśo: Změny formatěrowańskich atributow kaž pismow, barwow a licbowych formatow njebudu se składowaś a někotare funkcije kaž wobźěłowanje diagramow a kresleńskich objektow njejsu k dispoziciji w źělonym modusu. Znjemóžniśo źělony modus, aby ekskluziwny pśistup k tym změnam a funkcijam dostał." +msgstr "Glědajśo: Změny formatěrowańskich atributow kaž pismow, barwow a licbowych formatow njebudu se składowaś a někotare funkcije kaž wobźěłowanje diagramow a kreslańskich objektow njejsu k dispoziciji w źělonym modusu. Znjemóžniśo źělony modus, aby ekskluziwny pśistup k tym změnam a funkcijam dostał." #. dQz77 #: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:187 @@ -29693,7 +29693,7 @@ #: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:13 msgctxt "sharedwarningdialog|SharedWarningDialog" msgid "Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities." -msgstr "Změny formatěrowańskich atributow kaž pismow, barwow a licbowych formatow njebudu se składowaś a někotare funkcije kaž wobźěłowanje diagramow a kresleńskich objektow njejsu k dispoziciji w źělonym modusu. Znjemóžniśo źělony modus, aby ekskluziwny pśistup k tym změnam a funkcijam dostał." +msgstr "Změny formatěrowańskich atributow kaž pismow, barwow a licbowych formatow njebudu se składowaś a někotare funkcije kaž wobźěłowanje diagramow a kreslańskich objektow njejsu k dispoziciji w źělonym modusu. Znjemóžniśo źělony modus, aby ekskluziwny pśistup k tym změnam a funkcijam dostał." #. AWccB #: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:32 @@ -29813,13 +29813,13 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:331 msgctxt "sheetprintpage|checkBTN_DRAWINGS" msgid "_Drawing objects" -msgstr "_Kresleńske objekty" +msgstr "_Kreslańske objekty" #. iqL8r #: sc/uiconfig/scalc/ui/sheetprintpage.ui:339 msgctxt "sheetprintpage|extended_tip|checkBTN_DRAWINGS" msgid "Includes all drawing objects in the printed document." -msgstr "Zapśimujo wšykne kresleńske objekty do wuśišćanego dokumenta." +msgstr "Zapśimujo wšykne kreslańske objekty do wuśišćanego dokumenta." #. ideQb #: sc/uiconfig/scalc/ui/sheetprintpage.ui:350 @@ -31907,7 +31907,7 @@ #: sc/uiconfig/scalc/ui/subtotalgrppage.ui:61 msgctxt "subtotalgrppage|extended_tip|group_by" msgid "Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated." -msgstr "Wubjeŕśo słup, wót kótaregož ma woblicenje mjazyrezultata wótwisowaś. Jolic se wopśimjeśe wubranego słupa změnja, se mjazyrezultaty atwomatiski znowego woblicuju." +msgstr "Wubjeŕśo słup, wót kótaregož ma woblicenje mjazyrezultata wótwisowaś. Jolic se wopśimjeśe wubranego słupa změnja, se mjazyrezultaty awtomatiski znowego woblicuju." #. gL3Zy #: sc/uiconfig/scalc/ui/subtotalgrppage.ui:73 @@ -32729,7 +32729,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:590 msgctxt "tpviewpage|draw_label" msgid "_Drawing objects:" -msgstr "_Kresleńske objekty:" +msgstr "_Kreslańske objekty:" #. mpELg #: sc/uiconfig/scalc/ui/tpviewpage.ui:605 @@ -32783,7 +32783,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:648 msgctxt "extended_tip|draw" msgid "Defines if drawing objects in your document are shown or hidden." -msgstr "Definěrujo, lěc se kresleńske objekty we wašom dokumenśe pokazuju abo chowaju." +msgstr "Definěrujo, lěc se kreslańske objekty we wašom dokumenśe pokazuju abo chowaju." #. E6GxC #: sc/uiconfig/scalc/ui/tpviewpage.ui:663 diff -Nru libreoffice-7.4.6/translations/source/dsb/scaddins/messages.po libreoffice-7.4.7/translations/source/dsb/scaddins/messages.po --- libreoffice-7.4.6/translations/source/dsb/scaddins/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/scaddins/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-01-20 15:36+0000\n" +"PO-Revision-Date: 2023-04-04 21:33+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Lower Sorbian \n" +"Language-Team: Lower Sorbian \n" "Language: dsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542827720.000000\n" #. i8Y7Z @@ -5214,7 +5214,7 @@ #: scaddins/inc/strings.hrc:91 msgctxt "ANALYSIS_FUNCNAME_Randbetween" msgid "RANDBETWEEN" -msgstr "PŚIPADWOBCEŔK" +msgstr "PŚIPADNYWOBCEŔK" #. EWZAR #: scaddins/inc/strings.hrc:92 @@ -5298,7 +5298,7 @@ #: scaddins/inc/strings.hrc:105 msgctxt "ANALYSIS_FUNCNAME_Gestep" msgid "GESTEP" -msgstr "GESTEP" +msgstr "GCEŁALICBA" #. WpRkG #: scaddins/inc/strings.hrc:106 diff -Nru libreoffice-7.4.6/translations/source/dsb/sd/messages.po libreoffice-7.4.7/translations/source/dsb/sd/messages.po --- libreoffice-7.4.6/translations/source/dsb/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562269141.000000\n" #. WDjkB @@ -1423,7 +1423,7 @@ #: sd/inc/strings.hrc:195 msgctxt "STR_BREAK_FAIL" msgid "It was not possible to ungroup all drawing objects." -msgstr "Njejo móžno było, kupku wšych kresleńskich objektow rozpušćiś." +msgstr "Njejo móžno było, kupku wšych kreslańskich objektow rozpušćiś." #. zjsSM #: sd/inc/strings.hrc:196 @@ -2164,7 +2164,7 @@ #: sd/inc/strings.hrc:320 msgctxt "STR_STANDARD_STYLESHEET_NAME" msgid "Default Drawing Style" -msgstr "Standardny kresleński stil" +msgstr "Standardny kreslański stil" #. pxfDw #: sd/inc/strings.hrc:321 @@ -2442,13 +2442,13 @@ #: sd/inc/strings.hrc:374 msgctxt "SID_SD_A11Y_D_DRAWVIEW_N" msgid "Drawing View" -msgstr "Kresleński naglěd" +msgstr "Kreslański naglěd" #. GfnmX #: sd/inc/strings.hrc:375 msgctxt "SID_SD_A11Y_I_DRAWVIEW_N" msgid "Drawing View" -msgstr "Kresleński naglěd" +msgstr "Kreslański naglěd" #. YCVqM #: sd/inc/strings.hrc:376 @@ -3084,7 +3084,7 @@ #: sd/uiconfig/sdraw/ui/breakdialog.ui:80 msgctxt "breakdialog|label3" msgid "Inserted drawing objects:" -msgstr "Zasajźone kresleńske objekty:" +msgstr "Zasajźone kreslańske objekty:" #. 7gBGN #: sd/uiconfig/sdraw/ui/bulletsandnumbering.ui:8 @@ -3324,7 +3324,7 @@ #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:203 msgctxt "crossfadedialog|extended_tip|CrossFadeDialog" msgid "Creates shapes and distributes them by uniform increments between two drawing objects." -msgstr "Napórajo formy a rozdźělujo je w jadnakich kšacach mjazy dwěma kresleńskima objektoma." +msgstr "Napórajo formy a rozdźělujo je w jadnakich kšacach mjazy dwěma kreslańskima objektoma." #. 9Ga7E #: sd/uiconfig/sdraw/ui/dlgsnap.ui:8 @@ -8080,7 +8080,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:670 msgctxt "extended_tip|scaleBox" msgid "Determines the drawing scale on the status bar." -msgstr "Póstaja kresleńske měritko na statusowej rědce." +msgstr "Póstaja kreslańske měritko na statusowej rědce." #. E2cEn #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:691 @@ -8092,7 +8092,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:705 msgctxt "extended_tip|OptSavePage" msgid "Defines the general options for drawing or presentation documents." -msgstr "Definěrujo powšykne nastajenja za kresleńske abo prezentaciske dokumenty." +msgstr "Definěrujo powšykne nastajenja za kreslańske abo prezentaciske dokumenty." #. sGCUC #: sd/uiconfig/simpress/ui/photoalbum.ui:16 @@ -8674,7 +8674,7 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:539 msgctxt "extended_tip|prntopts" msgid "Specifies print settings within a drawing or presentation document." -msgstr "Pódawa śišćaŕske nastajenja w kresleńskem abo prezentaciskem dokumenśe." +msgstr "Pódawa śišćaŕske nastajenja w kreslańskem abo prezentaciskem dokumenśe." #. QRYoE #: sd/uiconfig/simpress/ui/publishingdialog.ui:21 diff -Nru libreoffice-7.4.6/translations/source/dsb/svtools/messages.po libreoffice-7.4.7/translations/source/dsb/svtools/messages.po --- libreoffice-7.4.6/translations/source/dsb/svtools/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/svtools/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-07-08 10:43+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Lower Sorbian \n" +"Language-Team: Lower Sorbian \n" "Language: dsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559381574.000000\n" #. fLdeV @@ -5340,7 +5340,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:627 msgctxt "graphicexport|labe" msgid "Drawing Objects" -msgstr "Kresleńske objekty" +msgstr "Kreslańske objekty" #. KMCxb #: svtools/uiconfig/ui/graphicexport.ui:654 diff -Nru libreoffice-7.4.6/translations/source/dsb/svx/messages.po libreoffice-7.4.7/translations/source/dsb/svx/messages.po --- libreoffice-7.4.6/translations/source/dsb/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,20 +13,20 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559381585.000000\n" #. 3GkZj #: include/svx/strings.hrc:25 msgctxt "STR_ObjNameSingulNONE" msgid "Drawing object" -msgstr "Kresleński objekt" +msgstr "Kreslański objekt" #. 9yvmF #: include/svx/strings.hrc:26 msgctxt "STR_ObjNamePluralNONE" msgid "Drawing objects" -msgstr "Kresleńske objekty" +msgstr "Kreslańske objekty" #. MLbZt #: include/svx/strings.hrc:27 @@ -686,19 +686,19 @@ #: include/svx/strings.hrc:136 msgctxt "STR_ObjNamePlural" msgid "Drawing objects" -msgstr "Kresleńske objekty" +msgstr "Kreslańske objekty" #. xHrgo #: include/svx/strings.hrc:137 msgctxt "STR_ObjNameNoObj" msgid "No draw object" -msgstr "Žeden kresleński objekt" +msgstr "Žeden kreslański objekt" #. EEKnk #: include/svx/strings.hrc:138 msgctxt "STR_ObjNameSingulPlural" msgid "Draw object(s)" -msgstr "Kresleńske objekty" +msgstr "Kreslańske objekty" #. LYyRP #: include/svx/strings.hrc:139 @@ -17934,7 +17934,7 @@ #: svx/uiconfig/ui/optgridpage.ui:78 msgctxt "extended_tip|usegridsnap" msgid "Specifies whether to move frames, drawing elements, and controls only between grid points." -msgstr "Pódawa, lěc maju se wobłuki, kresleńske elementy a wóźeńske elementy jano mjazy kśidnowymi dypkami pśesunuś." +msgstr "Pódawa, lěc maju se wobłuki, kreslańske elementy a wóźeńske elementy jano mjazy kśidnowymi dypkami pśesunuś." #. nQZB9 #: svx/uiconfig/ui/optgridpage.ui:89 diff -Nru libreoffice-7.4.6/translations/source/dsb/sw/messages.po libreoffice-7.4.7/translations/source/dsb/sw/messages.po --- libreoffice-7.4.6/translations/source/dsb/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-12-15 13:35+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" "Language: dsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562269173.000000\n" #. v3oJv @@ -4240,7 +4240,7 @@ #: sw/inc/strings.hrc:372 msgctxt "STR_CONTENT_TYPE_DRAWOBJECT" msgid "Drawing objects" -msgstr "Kresleńske objekty" +msgstr "Kreslańske objekty" #. GDSbW #: sw/inc/strings.hrc:373 @@ -4426,7 +4426,7 @@ #: sw/inc/strings.hrc:403 msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT" msgid "Draw object" -msgstr "Kresleński objekt" +msgstr "Kreslański objekt" #. PTFow #: sw/inc/strings.hrc:404 @@ -4827,7 +4827,7 @@ #: sw/inc/strings.hrc:471 msgctxt "STR_INSERTDRAW" msgid "Insert drawing object: $1" -msgstr "Kresleński objekt zasajźiś: $1" +msgstr "Kreslański objekt zasajźiś: $1" #. ErB3W #: sw/inc/strings.hrc:472 @@ -4917,25 +4917,25 @@ #: sw/inc/strings.hrc:486 msgctxt "STR_DRAWUNDO" msgid "Drawing objects: $1" -msgstr "Kresleńske objekty: $1" +msgstr "Kreslańske objekty: $1" #. FG7rN #: sw/inc/strings.hrc:487 msgctxt "STR_DRAWGROUP" msgid "Group draw objects" -msgstr "Kresleńske objekty rědowaś" +msgstr "Kreslańske objekty rědowaś" #. xZqoJ #: sw/inc/strings.hrc:488 msgctxt "STR_DRAWUNGROUP" msgid "Ungroup drawing objects" -msgstr "Kupku kresleńskich objektow wótpóraś" +msgstr "Kupku kreslańskich objektow wótpóraś" #. FA3Vo #: sw/inc/strings.hrc:489 msgctxt "STR_DRAWDELETE" msgid "Delete drawing objects" -msgstr "Kresleńske objekty wulašowaś" +msgstr "Kreslańske objekty wulašowaś" #. MbJSs #: sw/inc/strings.hrc:490 @@ -5466,7 +5466,7 @@ #: sw/inc/strings.hrc:577 msgctxt "STR_DRAWING_OBJECTS" msgid "drawing object(s)" -msgstr "kresleńske objekty" +msgstr "kreslańske objekty" #. rYPFG #: sw/inc/strings.hrc:578 @@ -11718,7 +11718,7 @@ #: sw/uiconfig/swriter/ui/captionoptions.ui:306 msgctxt "captionoptions|liststore1" msgid "Numbering first" -msgstr "Numerěrowanje nejpjerwjej" +msgstr "Numerěrowanje ako prědne" #. cET3M #: sw/uiconfig/swriter/ui/captionoptions.ui:320 @@ -17122,7 +17122,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:429 msgctxt "inputwinmenu|int" msgid "Int" -msgstr "INT" +msgstr "Cełalicba" #. ytZBB #: sw/uiconfig/swriter/ui/inputwinmenu.ui:437 @@ -18106,7 +18106,7 @@ #: sw/uiconfig/swriter/ui/labeldialog.ui:8 msgctxt "labeldialog|LabelDialog" msgid "Labels" -msgstr "Pópisanja" +msgstr "Etikety" #. jnQsV #: sw/uiconfig/swriter/ui/labeldialog.ui:25 @@ -18124,7 +18124,7 @@ #: sw/uiconfig/swriter/ui/labeldialog.ui:144 msgctxt "labeldialog|labels" msgid "Labels" -msgstr "Pópisanja" +msgstr "Etikety" #. G378Z #: sw/uiconfig/swriter/ui/labeldialog.ui:192 @@ -20614,7 +20614,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:306 msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING" msgid "Drawing Object Tracking" -msgstr "Kresleńskemu objektoju slědowaś" +msgstr "Kreslańskemu objektoju slědowaś" #. w8FTW #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:314 @@ -22725,7 +22725,7 @@ #: sw/uiconfig/swriter/ui/optcaptionpage.ui:571 msgctxt "optcaptionpage|captionorder" msgid "Numbering first" -msgstr "Numerěrowanje nejpjerwjej" +msgstr "Numerěrowanje ako prědne" #. gB7ua #: sw/uiconfig/swriter/ui/optcaptionpage.ui:579 @@ -29607,7 +29607,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:140 msgctxt "extended_tip|drawings" msgid "Displays the drawings and controls contained in your document." -msgstr "Pokazujo kresleńske a wóźeńske elementy we wašom dokumenśe." +msgstr "Pokazujo kreslańske a wóźeńske elementy we wašom dokumenśe." #. YonUg #: sw/uiconfig/swriter/ui/viewoptionspage.ui:151 diff -Nru libreoffice-7.4.6/translations/source/dsb/sysui/desktop/share.po libreoffice-7.4.7/translations/source/dsb/sysui/desktop/share.po --- libreoffice-7.4.6/translations/source/dsb/sysui/desktop/share.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/dsb/sysui/desktop/share.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2016-12-10 16:27+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Lower Sorbian \n" "Language: dsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1481387259.000000\n" #. a9uCy @@ -535,7 +536,7 @@ "draw\n" "LngText.text" msgid "Drawing Program" -msgstr "Kresleński program" +msgstr "Kreslański program" #. DdFuQ #: launcher_genericname.ulf diff -Nru libreoffice-7.4.6/translations/source/es/basctl/messages.po libreoffice-7.4.7/translations/source/es/basctl/messages.po --- libreoffice-7.4.6/translations/source/es/basctl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/basctl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2022-09-09 11:26+0000\n" -"Last-Translator: drodriguez \n" -"Language-Team: Spanish \n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1557224224.000000\n" #. fniWp @@ -128,7 +128,7 @@ #: basctl/inc/strings.hrc:42 msgctxt "RID_STR_SEARCHFROMSTART" msgid "Search to last module complete. Continue at first module?" -msgstr "Se buscó hasta el último módulo. ¿Continuar la búsqueda en el primer módulo?" +msgstr "Se buscó hasta el último módulo. ¿Quiere continuar desde el primer módulo?" #. 4yDcC #: basctl/inc/strings.hrc:43 @@ -296,7 +296,7 @@ "Continue?" msgstr "" "Tendrá que reiniciar el programa después de estas modificaciones.\n" -"¿Continuar?" +"¿Quiere continuar?" #. 4qWED #: basctl/inc/strings.hrc:72 @@ -543,7 +543,7 @@ #: basctl/inc/strings.hrc:109 msgctxt "RID_STR_CREATE_LANG" msgid "" -msgstr "" +msgstr "" #. jnJoF #: basctl/inc/strings.hrc:110 diff -Nru libreoffice-7.4.6/translations/source/es/basic/messages.po libreoffice-7.4.7/translations/source/es/basic/messages.po --- libreoffice-7.4.6/translations/source/es/basic/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/basic/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2022-09-09 11:26+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507239731.000000\n" #. CacXi @@ -104,7 +104,7 @@ #: basic/inc/basic.hrc:46 msgctxt "RID_BASIC_START" msgid "Resume without error." -msgstr "Continuar sin error." +msgstr "Reanudar sin error." #. QGuZq #: basic/inc/basic.hrc:47 diff -Nru libreoffice-7.4.6/translations/source/es/chart2/messages.po libreoffice-7.4.7/translations/source/es/chart2/messages.po --- libreoffice-7.4.6/translations/source/es/chart2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/chart2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-03-05 08:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1548565962.000000\n" #. NCRDD @@ -271,7 +271,7 @@ #: chart2/inc/strings.hrc:51 msgctxt "STR_OBJECT_AVERAGE_LINE_WITH_PARAMETERS" msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION" -msgstr "La línea del valor medio con un valor de %AVERAGE_VALUE y una desviación estándar del %STD_DEVIATION" +msgstr "La línea del valor medio con un valor de %AVERAGE_VALUE y una desviación típica del %STD_DEVIATION" #. eP9wF #: chart2/inc/strings.hrc:52 @@ -1661,7 +1661,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:216 msgctxt "dlg_InsertErrorBars|liststoreFUNCTION" msgid "Standard Deviation" -msgstr "Desviación estándar" +msgstr "Desviación típica" #. wA6LE #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:217 @@ -2459,7 +2459,7 @@ #: chart2/uiconfig/ui/sidebarerrorbar.ui:77 msgctxt "sidebarerrorbar|comboboxtext_type" msgid "Standard deviation" -msgstr "Desviación estándar" +msgstr "Desviación típica" #. qUL78 #: chart2/uiconfig/ui/sidebarerrorbar.ui:78 @@ -4115,7 +4115,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:153 msgctxt "tp_ErrorBars|liststoreFUNCTION" msgid "Standard Deviation" -msgstr "Desviación estándar" +msgstr "Desviación típica" #. GagXt #: chart2/uiconfig/ui/tp_ErrorBars.ui:154 diff -Nru libreoffice-7.4.6/translations/source/es/cui/messages.po libreoffice-7.4.7/translations/source/es/cui/messages.po --- libreoffice-7.4.6/translations/source/es/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-28 18:05+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1562,7 +1562,7 @@ #: cui/inc/strings.hrc:291 msgctxt "RID_SVXSTR_HYPH" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. XGkt6 #: cui/inc/strings.hrc:292 @@ -4546,7 +4546,7 @@ #: cui/uiconfig/ui/acorexceptpage.ui:67 msgctxt "acorexceptpage|autoabbrev" msgid "Auto_Include" -msgstr "_Incluir automáticamente" +msgstr "_Inclusión automática" #. KRr5y #: cui/uiconfig/ui/acorexceptpage.ui:73 @@ -5765,7 +5765,7 @@ #: cui/uiconfig/ui/breaknumberoption.ui:29 msgctxt "breaknumberoption|BreakNumberOption" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. kmYk5 #: cui/uiconfig/ui/breaknumberoption.ui:106 @@ -5795,7 +5795,7 @@ #: cui/uiconfig/ui/breaknumberoption.ui:184 msgctxt "wordlength" msgid "Specifies the minimum number of characters required for automatic hyphenation to be applied." -msgstr "Especifica la cantidad mínima de caracteres necesarios para aplicar la división de palabras automática." +msgstr "Especifica la cantidad mínima de caracteres necesarios para aplicar el corte de palabras automático." #. sAo4B #: cui/uiconfig/ui/breaknumberoption.ui:193 @@ -6401,13 +6401,13 @@ #: cui/uiconfig/ui/cellalignment.ui:265 msgctxt "cellalignment|checkHyphActive" msgid "Hyphenation _active" -msgstr "División de palabras _activa" +msgstr "Corte de palabras _activo" #. XLgra #: cui/uiconfig/ui/cellalignment.ui:276 msgctxt "cellalignment|extended_tip|checkHyphActive" msgid "Enables word hyphenation for text wrapping to the next line." -msgstr "Permite la separación de sílabas en el ajuste del texto a la línea siguiente." +msgstr "Activa el corte de palabras para el ajuste del texto al renglón siguiente." #. pQLTe #: cui/uiconfig/ui/cellalignment.ui:294 @@ -8493,7 +8493,7 @@ #: cui/uiconfig/ui/editmodulesdialog.ui:307 msgctxt "lingudicts" msgid "Specifies the language and the available spelling, hyphenation and Thesaurus sub-modules for the selected module." -msgstr "Especifica el idioma y los submódulos de ortografía, separación de sílabas y diccionario de sinónimos disponibles para el módulo seleccionado." +msgstr "Especifica el idioma y los submódulos de ortografía, corte de palabras y sinónimos del módulo seleccionado." #. ZF8AG #: cui/uiconfig/ui/editmodulesdialog.ui:330 @@ -11092,7 +11092,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:163 msgctxt "hyperlinknewdocpage|extended_tip|path" msgid "Enter a URL for the file that you want to open when you click the hyperlink." -msgstr "Especifique un URL para el archivo que quiera abrir al pulsar en el hiperenlace." +msgstr "Especifique un URL que apunte al archivo que quiera que se abra cuando se pulse en el hiperenlace." #. Ee4g2 #: cui/uiconfig/ui/hyperlinknewdocpage.ui:203 @@ -11182,7 +11182,7 @@ #: cui/uiconfig/ui/hyphenate.ui:18 msgctxt "hyphenate|HyphenateDialog" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. N4zDD #: cui/uiconfig/ui/hyphenate.ui:50 @@ -11918,7 +11918,7 @@ #: cui/uiconfig/ui/langtoolconfigpage.ui:29 msgctxt "langtoolconfigpage|disclaimer" msgid "If you enable this, the data will be sent to an external server." -msgstr "Si lo activa, los datos se enviarán a un servidor externo." +msgstr "Si lo activa, se enviarán datos a un servidor externo." #. kF4mt #: cui/uiconfig/ui/langtoolconfigpage.ui:39 @@ -14048,7 +14048,7 @@ #: cui/uiconfig/ui/optasianpage.ui:36 msgctxt "extended_tip|charkerning" msgid "Specifies that kerning is only applied to western text." -msgstr "Especifica que el ajuste entre caracteres sólo se aplica al texto occidental." +msgstr "Especifica que el cranaje solo se aplica al texto occidental." #. WEFrz #: cui/uiconfig/ui/optasianpage.ui:48 @@ -15672,7 +15672,7 @@ #: cui/uiconfig/ui/optlingupage.ui:344 msgctxt "lingudictsedit" msgid "Opens the Edit custom dictionary dialog, in which you can add to your custom dictionary or edit existing entries." -msgstr "" +msgstr "Abre el cuadro de diálogo Editar diccionario personalizado, que le permite efectuar adiciones en el diccionario personalizado o editar las entradas actuales." #. WCFD5 #: cui/uiconfig/ui/optlingupage.ui:356 @@ -15732,7 +15732,7 @@ #: cui/uiconfig/ui/optlingupage.ui:612 msgctxt "OptLinguPage" msgid "Specifies the properties of the spelling, thesaurus and hyphenation." -msgstr "Permite especificar las propiedades de la revisión ortográfica, los sinónimos y la división de palabras." +msgstr "Permite especificar las propiedades de la revisión ortográfica, los sinónimos y el corte de palabras." #. ADZ8E #: cui/uiconfig/ui/optnewdictionarydialog.ui:8 @@ -17944,7 +17944,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:463 msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text" msgid "Applies page line-spacing (register-true) if set for the Page Style." -msgstr "" +msgstr "Aplica la conformidad de registro si se ha establecido para el estilo de página." #. MwL9j #: cui/uiconfig/ui/paraindentspacing.ui:469 @@ -19388,7 +19388,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:297 msgctxt "extended_tip|removepersonal" msgid "Select to always remove user data from the file properties. If this option is not selected, you can still remove the personal information for the current document with the Reset Properties button on File - Properties - General." -msgstr "Seleccione esta opción para eliminar siempre los datos del usuario de las propiedades del archivo. Si no se selecciona, puede eliminar la información personal del documento actual mediante el botón Restablecer propiedades de Archivo ▸ Propiedades ▸ General." +msgstr "Seleccione esta opción para eliminar siempre los datos identitarios de las propiedades del archivo. Si no se selecciona, puede eliminar la información personal del documento actual mediante el botón Restablecer propiedades de Archivo ▸ Propiedades ▸ General." #. y5FFs #: cui/uiconfig/ui/securityoptionsdialog.ui:308 @@ -21164,7 +21164,7 @@ #: cui/uiconfig/ui/textflowpage.ui:131 msgctxt "textflowpage|extended_tip|spinMaxNum" msgid "Enter the maximum number of consecutive lines that can be hyphenated." -msgstr "Escriba el número máximo de renglones consecutivos en los que se puede efectuar división de palabras." +msgstr "Escriba el número máximo de renglones consecutivos en los que se puede efectuar corte de palabras." #. zBD7h #: cui/uiconfig/ui/textflowpage.ui:151 @@ -21224,7 +21224,7 @@ #: cui/uiconfig/ui/textflowpage.ui:315 msgctxt "textflowpage|LabelHyphenation" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. ZLB8K #: cui/uiconfig/ui/textflowpage.ui:344 @@ -21410,7 +21410,7 @@ #: cui/uiconfig/ui/textflowpage.ui:724 msgctxt "textflowpage|extended_tip|TextFlowPage" msgid "Specify hyphenation and pagination options." -msgstr "Especifique opciones de división de palabras y paginación." +msgstr "Especifique opciones de corte de palabras y paginación." #. K58BF #: cui/uiconfig/ui/themetabpage.ui:30 diff -Nru libreoffice-7.4.6/translations/source/es/dbaccess/messages.po libreoffice-7.4.7/translations/source/es/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/es/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dbaccess/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2022-09-26 19:50+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562301625.000000\n" #. BiN6g @@ -1287,7 +1287,7 @@ #: dbaccess/inc/strings.hrc:233 msgctxt "STR_TAB_FIELD_COLUMN_DATATYPE" msgid "Field Type" -msgstr "Tipo del campo" +msgstr "Tipo de campo" #. LFBuq #: dbaccess/inc/strings.hrc:234 @@ -1543,7 +1543,7 @@ #: dbaccess/inc/strings.hrc:268 msgctxt "STR_CHANGE_COLUMN_TYPE" msgid "change field type" -msgstr "cambiar tipo del campo" +msgstr "cambiar tipo de campo" #. Z2B9o #: dbaccess/inc/strings.hrc:269 @@ -1929,7 +1929,7 @@ #: dbaccess/inc/strings.hrc:338 msgctxt "STR_NO_ADDITIONAL_SETTINGS" msgid "No more settings are necessary. To verify that the connection is working, click the '%test' button." -msgstr "No se necesitan más parámetros. Para comprobar que la conexión funcione, pulse el botón «%test»." +msgstr "No se necesitan más parámetros. Para comprobar que la conexión funcione, pulse en el botón «%test»." #. DDLwe #: dbaccess/inc/strings.hrc:339 @@ -1941,7 +1941,7 @@ #: dbaccess/inc/strings.hrc:340 msgctxt "STR_HOSTNAME" msgid "~Host name" -msgstr "Nombre del ~servidor" +msgstr "~Nombre de anfitrión" #. Gdbjz #: dbaccess/inc/strings.hrc:341 @@ -2333,7 +2333,7 @@ #: dbaccess/inc/strings.hrc:404 msgctxt "STR_TAB_INDEX_FIELD" msgid "Index field" -msgstr "Campo del índice" +msgstr "Campo de índice" #. rCZbG #: dbaccess/inc/strings.hrc:405 @@ -2573,7 +2573,7 @@ #: dbaccess/inc/strings.hrc:450 msgctxt "STR_QUERY_REL_DELETE_WINDOW" msgid "When you delete this table all corresponding relations will be deleted as well. Continue?" -msgstr "Si elimina esta tabla se eliminarán también todas las relaciones correspondientes. ¿Continuar?" +msgstr "Si elimina esta tabla se eliminarán también todas las relaciones correspondientes. ¿Quiere continuar?" #. Wzf9T #: dbaccess/inc/strings.hrc:451 @@ -3516,7 +3516,7 @@ #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:39 msgctxt "generalspecialjdbcdetailspage|label2" msgid "_Host name:" -msgstr "Nombre del _servidor:" +msgstr "_Nombre de anfitrión:" #. NmRqx #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:53 @@ -5238,7 +5238,7 @@ #: dbaccess/uiconfig/ui/userdetailspage.ui:40 msgctxt "userdetailspage|hostnameft" msgid "_Host name:" -msgstr "Nombre del _servidor:" +msgstr "_Nombre de anfitrión:" #. eDvjr #: dbaccess/uiconfig/ui/userdetailspage.ui:56 diff -Nru libreoffice-7.4.6/translations/source/es/desktop/messages.po libreoffice-7.4.7/translations/source/es/desktop/messages.po --- libreoffice-7.4.6/translations/source/es/desktop/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/desktop/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-09-21 09:48+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565190821.000000\n" #. v2iwK @@ -1055,7 +1055,7 @@ #: desktop/uiconfig/ui/licensedialog.ui:70 msgctxt "licensedialog|head" msgid "Please follow these steps to proceed with the installation of the extension:" -msgstr "Siga estos pasos para continuar con la instalación de la extensión:" +msgstr "Siga estos pasos para proceder con la instalación de la extensión:" #. tEDSx #: desktop/uiconfig/ui/licensedialog.ui:92 diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/af_ZA.po libreoffice-7.4.7/translations/source/es/dictionaries/af_ZA.po --- libreoffice-7.4.6/translations/source/es/dictionaries/af_ZA.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/af_ZA.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:03+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407506600.000000\n" #. iTCNn @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Afrikaans spelling dictionary, and hyphenation rules" -msgstr "Afrikáans: corrector ortográfico y reglas de división de palabras" +msgstr "Afrikáans: corrector ortográfico y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/be_BY.po libreoffice-7.4.7/translations/source/es/dictionaries/be_BY.po --- libreoffice-7.4.6/translations/source/es/dictionaries/be_BY.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/be_BY.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-27 19:08+0200\n" -"PO-Revision-Date: 2021-10-25 11:09+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1449075425.000000\n" #. ASUni @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Belarusian spelling dictionary and hyphenation: official orthography 2008" -msgstr "Bielorruso (ortografía oficial de 2008): corrector ortográfico y reglas de división de palabras" +msgstr "Bielorruso (ortografía oficial de 2008): corrector ortográfico y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/bg_BG.po libreoffice-7.4.7/translations/source/es/dictionaries/bg_BG.po --- libreoffice-7.4.6/translations/source/es/dictionaries/bg_BG.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/bg_BG.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:05+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407506738.000000\n" #. g34TG @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Bulgarian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Búlgaro: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Búlgaro: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/ca.po libreoffice-7.4.7/translations/source/es/dictionaries/ca.po --- libreoffice-7.4.6/translations/source/es/dictionaries/ca.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/ca.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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: 2017-10-06 19:53+0000\n" +"PO-Revision-Date: 2023-04-17 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507319581.000000\n" #. PAXGz @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Catalan spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Catalán: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Catalán: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/cs_CZ.po libreoffice-7.4.7/translations/source/es/dictionaries/cs_CZ.po --- libreoffice-7.4.6/translations/source/es/dictionaries/cs_CZ.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/cs_CZ.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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: 2017-10-06 19:53+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507319593.000000\n" #. DG9ET @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Czech spell check dictionary, hyphenation rules and thesaurus" -msgstr "Checo: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Checo: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/da_DK.po libreoffice-7.4.7/translations/source/es/dictionaries/da_DK.po --- libreoffice-7.4.6/translations/source/es/dictionaries/da_DK.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/da_DK.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-25 14:55+0100\n" -"PO-Revision-Date: 2021-01-26 17:37+0000\n" +"PO-Revision-Date: 2023-04-17 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407506780.000000\n" #. M5yh2 @@ -23,7 +23,7 @@ "dispname\n" "description.text" msgid "Danish spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Danés: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Danés: corrector ortográfico, sinónimos y reglas de corte de palabras" #. CSpFA #: description.xml @@ -44,4 +44,4 @@ "(Sociedad Danesa de Lengua y Literatura), http://www.dsl.dk.\n" "El tesauro danés se basa en datos provistos por Det Danske Sprog- og Litteraturselskab\n" "y el Center for Sprogteknologi de la Universidad de Copenhague\n" -"Las reglas de división de palabras se basan en las tablas de partición silábica de TeX.\n" +"Las reglas de corte de palabras se basan en las tablas de partición silábica de TeX.\n" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/de.po libreoffice-7.4.7/translations/source/es/dictionaries/de.po --- libreoffice-7.4.6/translations/source/es/dictionaries/de.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/de.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2015-12-07 11:09+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1449486565.000000\n" #. N47Mb @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "German (Austria, Germany, Switzerland) spelling dictionaries, hyphenation rules, and thesaurus" -msgstr "Alemán (Alemania, Austria, Suiza): corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Alemán (Alemania, Austria, Suiza): corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/el_GR.po libreoffice-7.4.7/translations/source/es/dictionaries/el_GR.po --- libreoffice-7.4.6/translations/source/es/dictionaries/el_GR.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/el_GR.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:07+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407506852.000000\n" #. 23zDf @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Greek spelling dictionary, and hyphenation rules" -msgstr "Griego: corrector ortográfico y reglas de división de palabras" +msgstr "Griego: corrector ortográfico y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/en.po libreoffice-7.4.7/translations/source/es/dictionaries/en.po --- libreoffice-7.4.6/translations/source/es/dictionaries/en.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/en.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:08+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407506922.000000\n" #. X9B3t @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "English spelling dictionaries, hyphenation rules, thesaurus, and grammar checker" -msgstr "Inglés: correctores ortográficos y gramaticales, sinónimos y reglas de división de palabras" +msgstr "Inglés: correctores ortográficos y gramaticales, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/eo.po libreoffice-7.4.7/translations/source/es/dictionaries/eo.po --- libreoffice-7.4.6/translations/source/es/dictionaries/eo.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/eo.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-04-12 12:05+0200\n" -"PO-Revision-Date: 2021-04-15 08:37+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.15.2\n" #. 8TKYb #: description.xml @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "Spelling dictionary, thesaurus, and hyphenator for Esperanto" -msgstr "Esperanto: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Esperanto: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/es.po libreoffice-7.4.7/translations/source/es/dictionaries/es.po --- libreoffice-7.4.6/translations/source/es/dictionaries/es.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/es.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 18:08+0100\n" -"PO-Revision-Date: 2021-01-15 13:28+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.15.2\n" #. RvfxU #: description.xml @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "Spanish spelling dictionary, hyphenation rules, and thesaurus for all variants of Spanish." -msgstr "Español (todas las variantes): corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Español (todas las variantes): corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/et_EE.po libreoffice-7.4.7/translations/source/es/dictionaries/et_EE.po --- libreoffice-7.4.6/translations/source/es/dictionaries/et_EE.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/et_EE.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:09+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407506963.000000\n" #. ik2Hz @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Estonian spelling dictionary, and hyphenation rules" -msgstr "Estonio: corrector ortográfico y reglas de división de palabras" +msgstr "Estonio: corrector ortográfico y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/fr_FR.po libreoffice-7.4.7/translations/source/es/dictionaries/fr_FR.po --- libreoffice-7.4.6/translations/source/es/dictionaries/fr_FR.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/fr_FR.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:09+0000\n" +"PO-Revision-Date: 2023-04-17 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407506981.000000\n" #. 2uDqM @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "French spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Francés: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Francés: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/gl.po libreoffice-7.4.7/translations/source/es/dictionaries/gl.po --- libreoffice-7.4.6/translations/source/es/dictionaries/gl.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/gl.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:11+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507086.000000\n" #. vgdB6 @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Galician spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Gallego: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Gallego: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/hr_HR.po libreoffice-7.4.7/translations/source/es/dictionaries/hr_HR.po --- libreoffice-7.4.6/translations/source/es/dictionaries/hr_HR.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/hr_HR.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:11+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507105.000000\n" #. 4dSZm @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Croatian spelling dictionary, and hyphenation rules" -msgstr "Croata: corrector ortográfico y reglas de división de palabras" +msgstr "Croata: corrector ortográfico y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/hu_HU/dialog.po libreoffice-7.4.7/translations/source/es/dictionaries/hu_HU/dialog.po --- libreoffice-7.4.6/translations/source/es/dictionaries/hu_HU/dialog.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/hu_HU/dialog.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-03-03 13:16+0000\n" +"PO-Revision-Date: 2023-04-17 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1403279268.000000\n" #. jFVKx @@ -302,4 +302,4 @@ "hyphen\n" "property.text" msgid "Hyphenation of ambiguous words" -msgstr "División de palabras ambiguas" +msgstr "Corte de palabras ambiguas" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/hu_HU.po libreoffice-7.4.7/translations/source/es/dictionaries/hu_HU.po --- libreoffice-7.4.6/translations/source/es/dictionaries/hu_HU.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/hu_HU.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-26 14:47+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1409064458.000000\n" #. nmJB3 @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Hungarian spelling dictionary, hyphenation rules, thesaurus, and grammar checker" -msgstr "Húngaro: corrector ortográfico y gramatical, sinónimos y reglas de división de palabras" +msgstr "Húngaro: corrector ortográfico y gramatical, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/id.po libreoffice-7.4.7/translations/source/es/dictionaries/id.po --- libreoffice-7.4.6/translations/source/es/dictionaries/id.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/id.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-07-06 02:02+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1530842552.000000\n" #. nEMzy @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Indonesian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Indonesio: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Indonesio: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/is.po libreoffice-7.4.7/translations/source/es/dictionaries/is.po --- libreoffice-7.4.6/translations/source/es/dictionaries/is.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/is.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2015-11-11 18:17+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1447265873.000000\n" #. EPeKz @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Icelandic spelling dictionary, hyphenation rules and thesaurus" -msgstr "Islandés: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Islandés: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/it_IT.po libreoffice-7.4.7/translations/source/es/dictionaries/it_IT.po --- libreoffice-7.4.6/translations/source/es/dictionaries/it_IT.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/it_IT.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:12+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507171.000000\n" #. Vn53T @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Italian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Italiano: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Italiano: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/lt_LT.po libreoffice-7.4.7/translations/source/es/dictionaries/lt_LT.po --- libreoffice-7.4.6/translations/source/es/dictionaries/lt_LT.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/lt_LT.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:13+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507187.000000\n" #. HNGCr @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Lithuanian spelling dictionary, and hyphenation rules" -msgstr "Lituano: corrector ortográfico y reglas de división de palabras" +msgstr "Lituano: corrector ortográfico y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/lv_LV.po libreoffice-7.4.7/translations/source/es/dictionaries/lv_LV.po --- libreoffice-7.4.6/translations/source/es/dictionaries/lv_LV.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/lv_LV.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:13+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507207.000000\n" #. J5QQq @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Latvian spelling dictionary, and hyphenation rules" -msgstr "Letón: corrector ortográfico y reglas de división de palabras" +msgstr "Letón: corrector ortográfico y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/mn_MN.po libreoffice-7.4.7/translations/source/es/dictionaries/mn_MN.po --- libreoffice-7.4.6/translations/source/es/dictionaries/mn_MN.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/mn_MN.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-04-27 17:02+0200\n" -"PO-Revision-Date: 2021-04-28 11:49+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.15.2\n" #. UsF8V #: description.xml @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "Mongolian spelling and hyphenation dictionaries" -msgstr "Mongol: corrector ortográfico y reglas de división de palabras" +msgstr "Mongol: corrector ortográfico y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/nl_NL.po libreoffice-7.4.7/translations/source/es/dictionaries/nl_NL.po --- libreoffice-7.4.6/translations/source/es/dictionaries/nl_NL.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/nl_NL.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:13+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507227.000000\n" #. EGax2 @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Dutch spelling dictionary, and hyphenation rules" -msgstr "Neerlandés: corrector ortográfico y reglas de división de palabras" +msgstr "Neerlandés: corrector ortográfico y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/no.po libreoffice-7.4.7/translations/source/es/dictionaries/no.po --- libreoffice-7.4.6/translations/source/es/dictionaries/no.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/no.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:14+0000\n" +"PO-Revision-Date: 2023-04-17 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507277.000000\n" #. ykygF @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Norwegian (Nynorsk and Bokmål) spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Noruego (nynorsk y bokmål): corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Noruego (nynorsk y bokmål): corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/pl_PL.po libreoffice-7.4.7/translations/source/es/dictionaries/pl_PL.po --- libreoffice-7.4.6/translations/source/es/dictionaries/pl_PL.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/pl_PL.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:15+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507303.000000\n" #. F8DK3 @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Polish spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Polaco: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Polaco: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/pt_BR.po libreoffice-7.4.7/translations/source/es/dictionaries/pt_BR.po --- libreoffice-7.4.6/translations/source/es/dictionaries/pt_BR.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/pt_BR.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-11-16 12:08+0100\n" -"PO-Revision-Date: 2021-11-17 12:37+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507400.000000\n" #. svvMk @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Spelling, thesaurus, hyphenation and grammar checking tools for Brazilian Portuguese" -msgstr "Portugués (Brasil): corrector ortográfico y gramatical, sinónimos y reglas de división de palabras" +msgstr "Portugués (Brasil): corrector ortográfico y gramatical, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/pt_PT.po libreoffice-7.4.7/translations/source/es/dictionaries/pt_PT.po --- libreoffice-7.4.6/translations/source/es/dictionaries/pt_PT.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/pt_PT.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 18:08+0100\n" -"PO-Revision-Date: 2021-01-18 17:36+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.15.2\n" #. H9tN6 #: description.xml @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "Portuguese, Portugal spelling and hyphenation dictionaries and thesaurus." -msgstr "Portugués (Portugal): corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Portugués (Portugal): corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/ro.po libreoffice-7.4.7/translations/source/es/dictionaries/ro.po --- libreoffice-7.4.6/translations/source/es/dictionaries/ro.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/ro.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:17+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507434.000000\n" #. syfj5 @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Romanian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Rumano: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Rumano: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/ru_RU.po libreoffice-7.4.7/translations/source/es/dictionaries/ru_RU.po --- libreoffice-7.4.6/translations/source/es/dictionaries/ru_RU.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/ru_RU.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:17+0000\n" +"PO-Revision-Date: 2023-04-17 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507473.000000\n" #. hkYDW @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Russian spelling dictionary, hyphenation rules, thesaurus, and grammar checker" -msgstr "Ruso: corrector ortográfico y gramatical, sinónimos y reglas de división de palabras" +msgstr "Ruso: corrector ortográfico y gramatical, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/sk_SK.po libreoffice-7.4.7/translations/source/es/dictionaries/sk_SK.po --- libreoffice-7.4.6/translations/source/es/dictionaries/sk_SK.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/sk_SK.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:18+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507497.000000\n" #. BNRdU @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Slovak spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Eslovaco: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Eslovaco: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/sl_SI.po libreoffice-7.4.7/translations/source/es/dictionaries/sl_SI.po --- libreoffice-7.4.6/translations/source/es/dictionaries/sl_SI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/sl_SI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:18+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507533.000000\n" #. wSSE5 @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Slovenian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Esloveno: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Esloveno: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/sq_AL.po libreoffice-7.4.7/translations/source/es/dictionaries/sq_AL.po --- libreoffice-7.4.6/translations/source/es/dictionaries/sq_AL.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/sq_AL.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 18:08+0100\n" -"PO-Revision-Date: 2021-01-18 17:36+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1511592221.000000\n" #. WxvKp @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Albanian spelling dictionary, and hyphenation rules" -msgstr "Albanés: corrector ortográfico y reglas de división de palabras" +msgstr "Albanés: corrector ortográfico y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/sr.po libreoffice-7.4.7/translations/source/es/dictionaries/sr.po --- libreoffice-7.4.6/translations/source/es/dictionaries/sr.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/sr.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:19+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507572.000000\n" #. GWwoG @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Serbian (Cyrillic and Latin) spelling dictionary, and hyphenation rules" -msgstr "Serbio (cirílico y latino): corrector ortográfico y reglas de división de palabras" +msgstr "Serbio (cirílico y latino): corrector ortográfico y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/te_IN.po libreoffice-7.4.7/translations/source/es/dictionaries/te_IN.po --- libreoffice-7.4.6/translations/source/es/dictionaries/te_IN.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/te_IN.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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: 2017-10-05 21:42+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507239753.000000\n" #. mgjk8 @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Telugu spelling dictionary, and hyphenation rules" -msgstr "Telugú: corrector ortográfico y reglas de división de palabras" +msgstr "Telugú: corrector ortográfico y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/uk_UA.po libreoffice-7.4.7/translations/source/es/dictionaries/uk_UA.po --- libreoffice-7.4.6/translations/source/es/dictionaries/uk_UA.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/uk_UA.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:25+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507903.000000\n" #. iCnNA @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Ukrainian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Ucraniano: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Ucraniano: corrector ortográfico, sinónimos y reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/dictionaries/zu_ZA.po libreoffice-7.4.7/translations/source/es/dictionaries/zu_ZA.po --- libreoffice-7.4.6/translations/source/es/dictionaries/zu_ZA.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/dictionaries/zu_ZA.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-08-08 14:25+0000\n" +"PO-Revision-Date: 2023-04-17 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: none\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1407507932.000000\n" #. ccA4G @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Zulu hyphenation rules" -msgstr "Zulú: reglas de división de palabras" +msgstr "Zulú: reglas de corte de palabras" diff -Nru libreoffice-7.4.6/translations/source/es/editeng/messages.po libreoffice-7.4.7/translations/source/es/editeng/messages.po --- libreoffice-7.4.6/translations/source/es/editeng/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/editeng/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:49+0200\n" -"PO-Revision-Date: 2022-10-24 11:13+0000\n" +"PO-Revision-Date: 2023-04-17 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1548051066.000000\n" #. BHYB4 @@ -1337,7 +1337,7 @@ #: include/editeng/editrids.hrc:236 msgctxt "RID_SVXITEMS_HYPHEN_ZONE" msgid "Hyphenation zone " -msgstr "Zona de división de palabras " +msgstr "Zona de corte de palabras " #. zVxGk #: include/editeng/editrids.hrc:237 diff -Nru libreoffice-7.4.6/translations/source/es/extensions/messages.po libreoffice-7.4.7/translations/source/es/extensions/messages.po --- libreoffice-7.4.6/translations/source/es/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-09-09 11:26+0000\n" +"PO-Revision-Date: 2023-04-18 10:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1566234639.000000\n" #. cBx8W @@ -853,7 +853,7 @@ #: extensions/inc/strings.hrc:33 msgctxt "RID_STR_LINECOUNT" msgid "Line count" -msgstr "Conteo de líneas" +msgstr "Recuento de líneas" #. auFfe #: extensions/inc/strings.hrc:34 @@ -1051,7 +1051,7 @@ #: extensions/inc/strings.hrc:66 msgctxt "RID_STR_WORDBREAK" msgid "Word break" -msgstr "División de palabras" +msgstr "Salto de palabra" #. BtyAC #: extensions/inc/strings.hrc:67 diff -Nru libreoffice-7.4.6/translations/source/es/filter/messages.po libreoffice-7.4.7/translations/source/es/filter/messages.po --- libreoffice-7.4.6/translations/source/es/filter/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/filter/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-15 22:28+0200\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-05-03 11:51+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -658,7 +658,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:657 msgctxt "pdfgeneralpage|pdfa" msgid "Archive (P_DF/A, ISO 19005)" -msgstr "Archivador (P_DF/A, ISO 19005)" +msgstr "Archivística (P_DF/A, ISO 19005)" #. qQjPA #: filter/uiconfig/ui/pdfgeneralpage.ui:661 @@ -742,7 +742,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:862 msgctxt "pdfgeneralpage|emptypages" msgid "Exp_ort automatically inserted blank pages" -msgstr "Exp_ortar páginas vacías insertadas automáticamente" +msgstr "Exportar páginas vacías _insertadas automáticamente" #. Drp3w #: filter/uiconfig/ui/pdfgeneralpage.ui:871 @@ -1210,19 +1210,19 @@ #: filter/uiconfig/ui/pdfsignpage.ui:149 msgctxt "pdfsignpage|extended_tip|location" msgid "These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank." -msgstr "Estos tres campos le permiten, facultativamente, proporcionar información adicional tocante a la firma digital que podrá aplicar al PDF (dónde, por quién y por qué se firmó, respectivamente). Estos datos se incorporarán en los campos pertinentes del PDF y serán visibles a todos quienes visualicen el PDF. Puede dejar cualquiera de estos campos en blanco." +msgstr "Estos tres campos le permiten, facultativamente, proporcionar información adicional tocante a la firma digital que podrá aplicar al PDF (dónde, por quién y por qué se firmó, respectivamente). Estos datos se incorporarán en los campos pertinentes del PDF y serán visibles a cualquier persona que visualice el PDF. Puede dejar cualquiera de estos campos en blanco." #. uVShK #: filter/uiconfig/ui/pdfsignpage.ui:167 msgctxt "pdfsignpage|extended_tip|contact" msgid "These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank." -msgstr "Estos tres campos le permiten, facultativamente, proporcionar información adicional tocante a la firma digital que podrá aplicar al PDF (dónde, por quién y por qué se firmó, respectivamente). Estos datos se incorporarán en los campos pertinentes del PDF y serán visibles a todos quienes visualicen el PDF. Puede dejar cualquiera de estos campos en blanco." +msgstr "Estos tres campos le permiten, facultativamente, proporcionar información adicional tocante a la firma digital que podrá aplicar al PDF (dónde, por quién y por qué se firmó, respectivamente). Estos datos se incorporarán en los campos pertinentes del PDF y serán visibles a cualquier persona que visualice el PDF. Puede dejar cualquiera de estos campos en blanco." #. 5QBRv #: filter/uiconfig/ui/pdfsignpage.ui:185 msgctxt "pdfsignpage|extended_tip|reason" msgid "These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank." -msgstr "Estos tres campos le permiten, facultativamente, proporcionar información adicional tocante a la firma digital que podrá aplicar al PDF (dónde, por quién y por qué se firmó, respectivamente). Estos datos se incorporarán en los campos pertinentes del PDF y serán visibles a todos quienes visualicen el PDF. Puede dejar cualquiera de estos campos en blanco." +msgstr "Estos tres campos le permiten, facultativamente, proporcionar información adicional tocante a la firma digital que podrá aplicar al PDF (dónde, por quién y por qué se firmó, respectivamente). Estos datos se incorporarán en los campos pertinentes del PDF y serán visibles a cualquier persona que visualice el PDF. Puede dejar cualquiera de estos campos en blanco." #. wHqcD #: filter/uiconfig/ui/pdfsignpage.ui:200 diff -Nru libreoffice-7.4.6/translations/source/es/formula/messages.po libreoffice-7.4.7/translations/source/es/formula/messages.po --- libreoffice-7.4.6/translations/source/es/formula/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/formula/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-09-09 11:26+0000\n" +"PO-Revision-Date: 2023-04-04 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1554909614.000000\n" #. YfKFn @@ -2660,19 +2660,19 @@ #: formula/uiconfig/ui/formuladialog.ui:263 msgctxt "formuladialog|label2" msgid "Function result" -msgstr "Resultado de la función" +msgstr "Resultado de la función:" #. GqtY8 #: formula/uiconfig/ui/formuladialog.ui:408 msgctxt "formuladialog|formula" msgid "For_mula" -msgstr "Fór_mula" +msgstr "Fór_mula:" #. xEPEr #: formula/uiconfig/ui/formuladialog.ui:423 msgctxt "formuladialog|label1" msgid "Result" -msgstr "Resultado" +msgstr "Resultado:" #. rJsXw #: formula/uiconfig/ui/formuladialog.ui:469 diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/sbasic/guide.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/sbasic/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/sbasic/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-03-22 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560719923.000000\n" #. WcTKB @@ -1040,7 +1040,7 @@ "bas_id281630543333061\n" "help.text" msgid "' Struct that stores the new TableBorder2 definition" -msgstr "' Estructura que almacena la nueva definición TableBorder2" +msgstr "' Estructura que almacena la definición de TableBorder2 nueva" #. SFrJL #: calc_borders.xhp @@ -1787,7 +1787,7 @@ "par_id3144504\n" "help.text" msgid "oListbox.additem(\"New Item\" & iCount,0)" -msgstr "oListbox.additem(\"Nuevo elemento\" & iCount,0)" +msgstr "oListbox.additem(\"Elemento nuevo\" & iCount,0)" #. FKzdb #: sample_code.xhp @@ -1877,7 +1877,7 @@ "tit\n" "help.text" msgid "Translation of Controls in the Dialog Editor" -msgstr "Traducción de controles en el diálogo del editor." +msgstr "Traducción de controles en el editor de diálogos" #. 76okP #: translation.xhp @@ -1913,7 +1913,7 @@ "par_id9538560\n" "help.text" msgid "By default, any dialog that you create only contains string resources for one language. You may want to create dialogs that automatically show localized strings according to the user's language settings." -msgstr "Predeterminado, cualquier diálogo que creas solo contiene cadenas de recursos por un idioma. Quizas quieras crear diálogos que automaticamente muestra cadenas localizadas de acuerdo a la configuración del idioma por el usuario." +msgstr "De manera predeterminada, cualesquier diálogos que cree solo contendrán recursos de cadenas para un idioma. Quizá quiera crear diálogos que de forma automática muestren cadenas regionalizadas acorde a la configuración lingüística de cada persona usuaria." #. DP4Qb #: translation.xhp @@ -1985,7 +1985,7 @@ "hd_id6596881\n" "help.text" msgid "To enable localizable dialogs" -msgstr "Para activar la traducción de los cuadros de diálogo" +msgstr "Para activar los cuadros de diálogo regionalizables" #. uS4tc #: translation.xhp @@ -2093,7 +2093,7 @@ "hd_id631733\n" "help.text" msgid "To edit localizable controls in your dialog" -msgstr "Para editar los controles localizables del cuadro de diálogo" +msgstr "Para editar los controles regionalizables del cuadro de diálogo" #. hrvxW #: translation.xhp @@ -2174,4 +2174,4 @@ "par_id3050325\n" "help.text" msgid "If the user has an older version of %PRODUCTNAME that does not know localizable string resources for Basic dialogs, the user will see the default language strings." -msgstr "Si el usuario tiene una versión antigua de %PRODUCTNAME que no reconosca los recursos de cadeanas localizables para el diálogo de Basic, el usuario verá las cadenas en el idioma predeterminado." +msgstr "Si quien utilice %PRODUCTNAME tiene una versión antigua que no reconozca los recursos de cadenas regionalizables para diálogos BASIC, se mostrarán las cadenas en el idioma predefinido." diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-10 08:24+0000\n" +"PO-Revision-Date: 2023-04-09 03:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1534393940.000000\n" #. 6Kkin @@ -923,7 +923,7 @@ "par_id0929200903505340\n" "help.text" msgid "Add: The additional languages from the imported dialog will be added to the already existing dialog. The resources from the library's default language will be used for the new languages. This is the same as if you add these languages manually." -msgstr "Agregar: Los idiomas adicionales del diálogo importado se agregarán a los de los diálogos existentes. Los recursos del idioma predeterminado de la biblioteca se usarán para los nuevos idiomas. Es lo mismo que cuando agrega los idiomas manualmente." +msgstr "Añadir: los idiomas adicionales del diálogo importado se agregarán a los de los diálogos existentes. Los recursos del idioma predeterminado de la biblioteca se usarán para los idiomas nuevos. Es lo mismo que cuando agrega los idiomas manualmente." #. GzYU9 #: 11180000.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/sbasic/shared/03.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/sbasic/shared/03.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 10:46+0000\n" +"PO-Revision-Date: 2023-05-03 11:52+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1573,7 +1573,7 @@ "par_id431585757822181\n" "help.text" msgid "Stack all single items of an array and all items in its subarrays into one new array without subarrays. Empty subarrays are ignored and subarrays with a number of dimensions greater than one are not flattened." -msgstr "Apile todos los elementos individuales de una matriz y todos los elementos en sus subarreglos en una nueva matriz sin subarreglos. Los subarreglos vacíos se ignoran y los subarreglos con un número de dimensiones mayor que uno no se aplanan." +msgstr "Apile todos los elementos individuales de una matriz y todos los elementos de sus submatrices en una matriz nueva sin submatrices. Las submatrices vacías se ignoran y aquellas con un número de dimensiones mayor que uno no se aplanan." #. CNFGJ #: sf_array.xhp @@ -10438,7 +10438,7 @@ "pyc_id841620225235377\n" "help.text" msgid "# ... process the controls actual values" -msgstr "" +msgstr "# … procesar los valores reales de los controles" #. 2PPv4 #: sf_dialogcontrol.xhp @@ -13921,7 +13921,7 @@ "par_id111587141158495\n" "help.text" msgid "When an error occurs, an application macro may:" -msgstr "" +msgstr "Cuando se produce un error, una macro de aplicación puede:" #. hxxxr #: sf_exception.xhp @@ -19546,7 +19546,7 @@ "par_id721623369245475\n" "help.text" msgid "To run Python scripts from a separate process, you need to start %PRODUCTNAME with a few additional options that specify the hostname and port through which the external process will communicate with the %PRODUCTNAME component process." -msgstr "" +msgstr "Para ejecutar las secuencias Python desde un proceso separado, es necesario iniciar %PRODUCTNAME con algunas opciones adicionales que especifican el nombre de anfitrión y el puerto a través del cual el proceso externo se comunicará con el proceso del componente de %PRODUCTNAME." #. mfbEM #: sf_intro.xhp @@ -20122,7 +20122,7 @@ "par_id1001585843659821\n" "help.text" msgid "Automatically extracts strings from a dialog and adds them to the list of localizable text strings. The following strings are extracted:" -msgstr "" +msgstr "Extrae automáticamente las cadenas de un cuadro de diálogo y las añade a la lista de cadenas de texto regionalizables. Se extraen las cadenas siguientes:" #. bS7ZL #: sf_l10n.xhp @@ -27844,7 +27844,7 @@ "par_id31587913266153\n" "help.text" msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:" -msgstr "" +msgstr "El servicio UI (del inglés, interfaz de usuario) simplifica la identificación y la manipulación de las diferentes ventanas que componen la aplicación %PRODUCTNAME en su conjunto:" #. nTqj5 #: sf_ui.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/sbasic/shared.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:10+0000\n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1913,7 +1913,7 @@ "par_id3148797\n" "help.text" msgid "Sub is the short form of subroutine, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:" -msgstr "Sub es la contracción de subrutina, que se utiliza para manejar una tarea concreta dentro de un programa. Las Sub se utilizan para dividir una tarea en procedimientos individuales. Dividir un programa en procedimientos y subprocedimientos mejora su legibilidad y reduce la posibilidad de errores. Una sub puede tomar algunos argumentos como parámetros, pero no devuelve ningún valor a la sub o función que la ha llamado, por ejemplo:" +msgstr "Sub es la contracción de subrutina, que se utiliza para manejar una tarea concreta dentro de un programa. Las sub se utilizan para dividir una tarea en procedimientos individuales. Dividir un programa en procedimientos y subprocedimientos mejora su comprensibilidad y reduce la posibilidad de errores. Una sub puede tomar algunos argumentos como parámetros, pero no devuelve ningún valor a la sub o función que la ha llamado, por ejemplo:" #. ovUK9 #: 01010210.xhp @@ -3029,7 +3029,7 @@ "par_id3147397\n" "help.text" msgid "The same process applies to a Function. In addition, functions always return a function result. The result of a function is defined by assigning the return value to the function name:" -msgstr "" +msgstr "El mismo proceso se aplica a una Function. Así también, las funciones siempre devuelven un resultado de función. El resultado de una función se define asignando el valor de retorno al nombre de la función:" #. uhFkG #: 01020300.xhp @@ -3146,7 +3146,7 @@ "hd_id161584366585035\n" "help.text" msgid "Defining Optional Parameters" -msgstr "" +msgstr "Definir parámetros opcionales" #. 4Ghzx #: 01020300.xhp @@ -3155,7 +3155,7 @@ "par_id31584367006971\n" "help.text" msgid "Functions, procedures or properties can be defined with optional parameters, for example:" -msgstr "" +msgstr "Es posible definir funciones, procedimientos o propiedades con parámetros opcionales; por ejemplo:" #. JKj8y #: 01020300.xhp @@ -25178,7 +25178,7 @@ "par_id3147264\n" "help.text" msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified." -msgstr "Una constante es una variable que ayuda a mejorar la legibilidad de un programa. Las constantes no se definen como un tipo de variable específico, sino como sustitutivos en el código. Puede definir las constantes solamente una vez y no es posible modificarlas." +msgstr "Una constante es una variable que ayuda a mejorar la comprensibilidad de un programa. Las constantes no se definen como un tipo de variable específico, sino como sustitutivos en el código. Puede definir las constantes solamente una vez y no es posible modificarlas." #. ucqd6 #: 03100700.xhp @@ -29660,7 +29660,7 @@ "par_id231641251937406\n" "help.text" msgid "Dates are converted into locale-dependent strings." -msgstr "" +msgstr "Las fechas se convierten en cadenas dependientes de la configuración regional." #. NEAum #: 03120103.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/scalc/00.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/scalc/00.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/scalc/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/scalc/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:31+0100\n" -"PO-Revision-Date: 2022-10-05 08:58+0000\n" +"PO-Revision-Date: 2023-04-16 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1561323262.000000\n" #. E9tti @@ -977,7 +977,7 @@ "par_id3154123\n" "help.text" msgid "Menu Tools - Language - Hyphenation." -msgstr "Vaya a Herramientas ▸ Idioma ▸ División de palabras." +msgstr "Vaya a Herramientas ▸ Idioma ▸ Corte de palabras." #. kGGCG #: 00000406.xhp @@ -1049,7 +1049,7 @@ "par_id3156284\n" "help.text" msgid "Choose Tools - Detective - Mark Invalid Data." -msgstr "Vaya a Herramientas ▸ Detective ▸ Marcar datos incorrectos." +msgstr "Vaya a Herramientas ▸ Detective ▸ Marcar datos no válidos." #. vVZWK #: 00000406.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/scalc/01.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/scalc/01.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/scalc/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/scalc/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 10:59+0000\n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -230,7 +230,7 @@ "par_id3152994\n" "help.text" msgid "Icon Start" -msgstr "Icono Inicio" +msgstr "Icono Comienzo" #. JRnuj #: 02110000.xhp @@ -1859,7 +1859,7 @@ "par_id2308201415431951090\n" "help.text" msgid "Standard Deviation: The standard deviation of the Normal distribution." -msgstr "Desviación estándar: la desviación estándar de la distribución normal." +msgstr "Desviación típica: la desviación típica de la distribución normal." #. S3iFU #: 02140700.xhp @@ -1868,7 +1868,7 @@ "par_id2308201415431990992\n" "help.text" msgid "The mean and standard deviation of the numbers generated may not equal the Mean and Standard Deviation inserted in the dialog." -msgstr "La media y la desviación estándar de los números generados puede no ser igual a la media y la desviación estándar introducidas en el cuadro de diálogo." +msgstr "La media y la desviación típica de los números generados puede no ser igual a la media y la desviación típica introducidas en el cuadro de diálogo." #. CBmEB #: 02140700.xhp @@ -2057,7 +2057,7 @@ "par_id2308201415431834837\n" "help.text" msgid "Value set to initiate the random number generator algorithm. It is used to initialize (seed) the random number generator in order to reproduce the same sequence of pseudorandom numbers. Specify a positive integer number (1, 2, ...) to produce a specific sequence, or leave the field blank if you don't need this particular feature." -msgstr "El valor establecido para iniciar el algoritmo del generador de números aleatorios. Es utilizado para inicializar (semilla) el generador de números aleatorios, de modo que se reproduzca la misma secuencia de números seudoaleatorios. Especifique un valor positivo entero (1, 2…) para crear una secuencia específica o deje el campo vacío si no necesita esta funcionalidad." +msgstr "El valor establecido para iniciar el algoritmo del generador de números aleatorios. Es utilizado para inicializar (semilla) el generador de números aleatorios, de modo que se reproduzca la misma secuencia de números seudoaleatorios. Especifique un valor positivo entero (1, 2…) para crear una secuencia específica o deje el campo vacío si no necesita esta funcionalidad concreta." #. JesZo #: 02140700.xhp @@ -4586,7 +4586,7 @@ "par_id761615889163416\n" "help.text" msgid "The Database argument may also be specified by passing the name of a named range or database range. Using a meaningful name to define the cell range can enhance formula readability and document maintenance. If the name does not match the name of a defined range, Calc reports a #NAME? error." -msgstr "El argumento BaseDeDatos también se puede especificar pasando el nombre de un intervalo con nombre o intervalo de base de datos. El uso de un nombre significativo para definir el intervalo de celdas puede mejorar la legibilidad de la fórmula y el mantenimiento del documento. Si el nombre no coincide con el nombre de un intervalo definido, Calc emite un error #¿NOMBRE?" +msgstr "El argumento Base de datos también se puede especificar pasando el nombre de un intervalo con nombre o intervalo de base de datos. El uso de un nombre expresivo para definir el intervalo de celdas puede mejorar la comprensibilidad de la fórmula y el mantenimiento del documento. Si el nombre no coincide con el nombre de un intervalo definido, Calc emite un error #¿NOMBRE?" #. 7L4XM #: 04060101.xhp @@ -5615,7 +5615,7 @@ "bm_id3148462\n" "help.text" msgid "DSTDEV functionstandard deviations in databases;based on a sample" -msgstr "Función BDDESVESTdesviaciones estándar en bases de datos; basadas en una muestra" +msgstr "función BDDESVESTdesviaciones típicas en bases de datos; basadas en una muestra" #. EvGNP #: 04060101.xhp @@ -5687,7 +5687,7 @@ "bm_id3150429\n" "help.text" msgid "DSTDEVP functionstandard deviations in databases;based on populations" -msgstr "función BDDESVESTPdesviaciones estándar en bases de datos;basadas en poblaciones" +msgstr "función BDDESVESTPdesviaciones típicas en bases de datos;basadas en poblaciones" #. FpESx #: 04060101.xhp @@ -9098,7 +9098,7 @@ "par_id3146992\n" "help.text" msgid "Value is any value or expression where a test is performed to determine whether it is a text or numbers or a Boolean value." -msgstr "Valor es un valor o una expresión en que se comprueba si es texto o numérico o si se trata de un valor lógico." +msgstr "Valor es un valor o una expresión cualquiera en que se comprueba si es texto o numérico o si se trata de un valor booleano." #. Es2Py #: 04060104.xhp @@ -9422,7 +9422,7 @@ "par_id3150417\n" "help.text" msgid "Value is a value, number, Boolean value, or an error value to be tested." -msgstr "Valor es el valor, número o valor lógico o de error que se va a comprobar." +msgstr "Valor es el valor, número o valor booleano o de error que se va a someter a prueba." #. RmeYe #: 04060104.xhp @@ -34973,7 +34973,7 @@ "par_id3156257\n" "help.text" msgid "Returns the geometric mean of a sample." -msgstr "Calcula la media geométrica de una muestra." +msgstr "Devuelve la media geométrica de una muestra." #. YBnZG #: 04060182.xhp @@ -35000,7 +35000,7 @@ "bm_id3152966\n" "help.text" msgid "TRIMMEAN function means;of data set without margin data" -msgstr "MEDIA.ACOTADA medias;de grupo de datos sin datos de margen" +msgstr "MEDIA.ACOTADA medias;de grupo de datos sin datos marginales" #. EAAVp #: 04060182.xhp @@ -35099,7 +35099,7 @@ "par_id3156109\n" "help.text" msgid "Data is the given sample, drawn from a normally distributed population." -msgstr "Datos es la muestra indicada, extraida de una población distribuida en forma normal." +msgstr "Datos es la muestra dada, extraída de una población distribuida normalmente." #. E3dLC #: 04060182.xhp @@ -35117,7 +35117,7 @@ "par_id3154740\n" "help.text" msgid "Sigma (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "Sigma (opcional) es la desviación estándar conocida de la población. Si se omite, se utiliza la desviación estándar de la muestra indicada." +msgstr "Sigma (opcional) es la desviación típica conocida de la población. Si se omite, se utiliza la desviación típica de la muestra indicada." #. EpJ8j #: 04060182.xhp @@ -35171,7 +35171,7 @@ "par_id2956109\n" "help.text" msgid "Data is the given sample, drawn from a normally distributed population." -msgstr "Datos es la muestra indicada, extraida de una población distribuida en forma normal." +msgstr "Datos es la muestra dada, extraída de una población distribuida normalmente." #. havEd #: 04060182.xhp @@ -35189,7 +35189,7 @@ "par_id2954740\n" "help.text" msgid "Sigma (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "Sigma (opcional) es la desviación estándar conocida de la población. Si se omite, se utiliza la desviación estándar de la muestra indicada." +msgstr "Sigma (opcional) es la desviación típica conocida de la población. Si se omite, se utiliza la desviación típica de la muestra indicada." #. sbnS9 #: 04060182.xhp @@ -35495,7 +35495,7 @@ "par_id3152986\n" "help.text" msgid "Data is the cell range of data." -msgstr "Datos es la matriz de los datos de la muestra." +msgstr "Datos es el intervalo de celdas con datos." #. PqrWi #: 04060183.xhp @@ -35567,7 +35567,7 @@ "par_id3154540\n" "help.text" msgid "Data is the cell range of data." -msgstr "Datos es la matriz de los datos de la muestra." +msgstr "Datos es el intervalo de celdas con datos." #. oJV9f #: 04060183.xhp @@ -36872,7 +36872,7 @@ "bm_id3145824\n" "help.text" msgid "AVERAGE function" -msgstr "PROMEDIO" +msgstr "función PROMEDIO" #. TFPEi #: 04060184.xhp @@ -36890,7 +36890,7 @@ "par_id3150482\n" "help.text" msgid "Returns the average of the arguments." -msgstr "Calcula la media de los argumentos." +msgstr "Calcula el promedio de los argumentos." #. K8QCj #: 04060184.xhp @@ -36917,7 +36917,7 @@ "bm_id3148754\n" "help.text" msgid "AVERAGEA function" -msgstr "PROMEDIOA" +msgstr "función PROMEDIOA" #. nwGjw #: 04060184.xhp @@ -36935,7 +36935,7 @@ "par_id3145138\n" "help.text" msgid "Returns the average of the arguments. The value of a text is 0." -msgstr "Calcula la media de los argumentos. El valor del texto es 0." +msgstr "Calcula el promedio de los argumentos. El valor del texto es 0." #. opsEb #: 04060184.xhp @@ -36953,7 +36953,7 @@ "par_id3150864\n" "help.text" msgid "=AVERAGEA(A1:A50)" -msgstr "=PROMEDIO(A1:A50)" +msgstr "=PROMEDIOA(A1:A50)" #. iLCTX #: 04060184.xhp @@ -37349,7 +37349,7 @@ "par_id3148594\n" "help.text" msgid "StDev represents the standard deviation of the normal distribution." -msgstr "Desv_estándar es la desviación estándar de la distribución normal." +msgstr "Desviación típica representa la desviación típica de la distribución normal." #. TUXfC #: 04060184.xhp @@ -37358,7 +37358,7 @@ "par_id3153921\n" "help.text" msgid "=NORMINV(0.9;63;5) returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams." -msgstr "=DISTR.NORM.INV(0,9;63;5) devuelve 69,41. Si un huevo de gallina pesa una media de 63 gramos, con una desviación estándar de 5, la probabilidad de que un huevo no pese más de 69,41 gramos es del 90%." +msgstr "=DISTR.NORM.INV(0,9;63;5) devuelve 69,41. Si un huevo de gallina pesa una media de 63 gramos, con una desviación típica de 5, la probabilidad de que un huevo no pese más de 69,41 gramos es del 90 %." #. 73wyE #: 04060184.xhp @@ -37421,7 +37421,7 @@ "par_id2948594\n" "help.text" msgid "StDev represents the standard deviation of the normal distribution." -msgstr "Desv_estándar es la desviación estándar de la distribución normal." +msgstr "Desviación típica representa la desviación típica de la distribución normal." #. mSfFV #: 04060184.xhp @@ -37430,7 +37430,7 @@ "par_id2953921\n" "help.text" msgid "=NORM.INV(0.9;63;5) returns 69.4077578277. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams." -msgstr "=INV.NORM(0,9;63;5) devuelve 69,4077578277. Si un huevo de gallina pesa una media de 63 gramos, con una desviación estándar de 5, la probabilidad de que un huevo no pese más de 69,41 gramos es del 90 %." +msgstr "=INV.NORM(0,9;63;5) devuelve 69,4077578277. Si un huevo de gallina pesa una media de 63 gramos, con una desviación típica de 5, la probabilidad de que un huevo no pese más de 69,41 gramos es del 90 %." #. 432JF #: 04060184.xhp @@ -37493,7 +37493,7 @@ "par_id3156295\n" "help.text" msgid "StDev is the standard deviation of the distribution." -msgstr "Desv_estándar es la desviación estándar de la distribución." +msgstr "Desviación típica es la desviación típica de la distribución." #. bzaMQ #: 04060184.xhp @@ -37583,7 +37583,7 @@ "par_id2916295\n" "help.text" msgid "StDev is the standard deviation of the distribution." -msgstr "Desv_estándar es la desviación estándar de la distribución." +msgstr "Desviación típica es la desviación típica de la distribución." #. kAAAs #: 04060184.xhp @@ -39068,7 +39068,7 @@ "bm_id3149143\n" "help.text" msgid "STDEV function standard deviations in statistics;based on a sample" -msgstr "DESVEST desviación estándar en estadísticas;basadas en un ejemplo" +msgstr "función DESVESTdesviación típica en estadística;basadas en una muestra" #. X7TFm #: 04060185.xhp @@ -39086,7 +39086,7 @@ "par_id3146888\n" "help.text" msgid "Estimates the standard deviation based on a sample." -msgstr "Realiza una estimación de la desviación estándar a partir de una muestra." +msgstr "Estima la desviación típica a partir de una muestra." #. 2b5hp #: 04060185.xhp @@ -39095,7 +39095,7 @@ "par_id3149946\n" "help.text" msgid "STDEV()" -msgstr "DESVIACIÓN ESTÁNDAR " +msgstr "DESVEST()" #. H3V9F #: 04060185.xhp @@ -39113,7 +39113,7 @@ "par_id3149434\n" "help.text" msgid "=STDEV(A1:A50) returns the estimated standard deviation based on the data referenced." -msgstr " = DESVIACIÓN ESTÁNDAR (A1:A50) devuelve la desviación estándar estimada en base a los datos referenciados." +msgstr "=DESVEST(A1:A50) devuelve la desviación típica estimada con base en los datos referenciados." #. EaGD7 #: 04060185.xhp @@ -39140,7 +39140,7 @@ "par_id3151234\n" "help.text" msgid "Calculates the standard deviation of an estimation based on a sample." -msgstr "Calcula una estimación de la desviación estándar a partir de una muestra." +msgstr "Calcula la desviación típica de una estimación a partir de una muestra." #. JfwF6 #: 04060185.xhp @@ -39194,7 +39194,7 @@ "par_id3149187\n" "help.text" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviación estándar a partir de la población total." +msgstr "Calcula la desviación típica a partir de la población total." #. zoiE5 #: 04060185.xhp @@ -39203,7 +39203,7 @@ "par_id3154392\n" "help.text" msgid "STDEVP()" -msgstr "DESVIACIÓN ESTÁNDAR P" +msgstr "DESVESTP()" #. ADXhB #: 04060185.xhp @@ -39212,7 +39212,7 @@ "par_id3153933\n" "help.text" msgid "=STDEVP(A1:A50) returns a standard deviation of the data referenced." -msgstr "=DESVESTP(A1:A50) calcula la desviación estándar de los datos referenciados." +msgstr "=DESVESTP(A1:A50) calcula la desviación típica de los datos referenciados." #. sQWP2 #: 04060185.xhp @@ -39221,7 +39221,7 @@ "bm_id2949734\n" "help.text" msgid "STDEV.P function standard deviations in statistics;based on a population" -msgstr "DESVEST.P desviación estándar en estadística;basadas en una población" +msgstr "DESVEST.P desviación típica en estadística;basadas en una población" #. tcxC7 #: 04060185.xhp @@ -39239,7 +39239,7 @@ "par_id2949187\n" "help.text" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviación estándar a partir de la población total." +msgstr "Calcula la desviación típica a partir de la población total." #. J5bPQ #: 04060185.xhp @@ -39248,7 +39248,7 @@ "par_id2954392\n" "help.text" msgid "STDEV.P()" -msgstr "DESVIACIÓN ESTÁNDAR.P" +msgstr "DESVEST.P" #. 9PAi8 #: 04060185.xhp @@ -39293,7 +39293,7 @@ "par_id2854392\n" "help.text" msgid "STDEV.S()" -msgstr "DESVIACIÓN ESTÁNDAR.S" +msgstr "DESVEST.M()" #. fPUck #: 04060185.xhp @@ -39311,7 +39311,7 @@ "par_id2853933\n" "help.text" msgid "=STDEV.S(A1:A50) returns a standard deviation of the data referenced." -msgstr "=DESVEST.M(A1:A50) calcula la desviación estándar de los datos referenciados." +msgstr "=DESVEST.M(A1:A50) devuelve la desviación típica de los datos referenciados." #. YJcDx #: 04060185.xhp @@ -39338,7 +39338,7 @@ "par_id3149549\n" "help.text" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviación estándar a partir de la población total." +msgstr "Calcula la desviación típica a partir de la población total." #. gqtD3 #: 04060185.xhp @@ -39428,7 +39428,7 @@ "par_id3148874\n" "help.text" msgid "StDev is the standard deviation of the distribution." -msgstr "Desv_estándar es la desviación estándar de la distribución." +msgstr "Desviación típica es la desviación típica de la distribución." #. vQ7nD #: 04060185.xhp @@ -40112,7 +40112,7 @@ "par_id3155327\n" "help.text" msgid "Type is the kind of t-test to perform. Type 1 means paired. Type 2 means two samples, equal variance (homoscedastic). Type 3 means two samples, unequal variance (heteroscedastic)." -msgstr "Tipo es un tipo de prueba t que se va a realizar. Tipo 1 significa pareada. Tipo 2 significa dos muestras, igual varianza (homoscedástica). Tipo 3 significa dos muestras, varianza distinta (heteroscedástica)." +msgstr "Tipo es el tipo de prueba t que se va a realizar. Tipo 1 significa pareada. Tipo 2 significa dos muestras, igual varianza (homoscedástica). Tipo 3 significa dos muestras, varianza distinta (heteroscedástica)." #. zT8kK #: 04060185.xhp @@ -40607,7 +40607,7 @@ "par_id3155122\n" "help.text" msgid "Estimates a variance based on a sample. The value of text is 0." -msgstr "Realiza una estimación de la varianza a partir de una muestra. El valor del texto es 0." +msgstr "Estima una varianza a partir de una muestra. El valor del texto es 0." #. mrEpZ #: 04060185.xhp @@ -45512,7 +45512,7 @@ "tit\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. fFwFU #: 06020000.xhp @@ -45521,7 +45521,7 @@ "bm_id3159399\n" "help.text" msgid "automatic hyphenation in spreadsheetshyphenation; in spreadsheetssyllables in spreadsheets" -msgstr "división de palabras automática en hojas de cálculodivisión de palabras; en hojas de cálculosílabas en hojas de cálculo" +msgstr "corte de palabras automático en hojas de cálculocorte de palabras; en hojas de cálculosílabas en hojas de cálculo" #. RFvCe #: 06020000.xhp @@ -45530,7 +45530,7 @@ "hd_id3159399\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. uDEz3 #: 06020000.xhp @@ -45539,7 +45539,7 @@ "par_id3145068\n" "help.text" msgid "The Hyphenation command calls the dialog for setting the hyphenation in $[officename] Calc." -msgstr "La orden División de palabras abre el cuadro de diálogo para establecer el silabeo en $[officename] Calc." +msgstr "La orden Corte de palabras abre el cuadro de diálogo para establecer el silabeo en $[officename] Calc." #. xwmmG #: 06020000.xhp @@ -45557,7 +45557,7 @@ "hd_id3153192\n" "help.text" msgid "Hyphenation for selected cells." -msgstr "División de palabras en las celdas seleccionadas." +msgstr "Corte de palabras en las celdas seleccionadas." #. g7WAn #: 06020000.xhp @@ -45566,7 +45566,7 @@ "par_id3150868\n" "help.text" msgid "Select the cells for which you want to change the hyphenation." -msgstr "Seleccione las celdas para las que desee modificar la división de palabras." +msgstr "Seleccione las celdas para las que desee modificar el corte de palabras." #. cECJ8 #: 06020000.xhp @@ -45575,7 +45575,7 @@ "par_id3150440\n" "help.text" msgid "Choose Tools - Language - Hyphenation." -msgstr "Vaya a Herramientas ▸ Idioma ▸ División de palabras." +msgstr "Vaya a Herramientas ▸ Idioma ▸ Corte de palabras." #. DWP9n #: 06020000.xhp @@ -45593,7 +45593,7 @@ "par_id3149260\n" "help.text" msgid "Mark the Wrap text automatically and Hyphenation active check boxes." -msgstr "Marque las casillas de verificación Ajustar texto automáticamente y División de palabras activa." +msgstr "Marque las casillas de verificación Ajustar texto automáticamente y Corte de palabras activo." #. isLg3 #: 06020000.xhp @@ -45602,7 +45602,7 @@ "hd_id3153094\n" "help.text" msgid "Hyphenation for Drawing Objects" -msgstr "División de palabras en objetos de dibujo" +msgstr "Corte de palabras en objetos de dibujo" #. jMPZJ #: 06020000.xhp @@ -45620,7 +45620,7 @@ "par_id3156285\n" "help.text" msgid "Choose Tools - Language - Hyphenation." -msgstr "Vaya a Herramientas ▸ Idioma ▸ División de palabras." +msgstr "Vaya a Herramientas ▸ Idioma ▸ Corte de palabras." #. EyCsS #: 06020000.xhp @@ -45629,7 +45629,7 @@ "par_id3147394\n" "help.text" msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status." -msgstr "Con cada ejecución de la orden se activará o desactivará la división de palabras en el objeto de dibujo. Una marca muestra el estado actual." +msgstr "Con cada ejecución de la orden se activará o desactivará el corte de palabras en el objeto de dibujo. Una marca muestra el estado actual." #. HDYd5 #: 06030000.xhp @@ -45980,7 +45980,7 @@ "tit\n" "help.text" msgid "Mark Invalid Data" -msgstr "Marcar los datos incorrectos" +msgstr "Marcar datos no válidos" #. kDvoF #: 06030800.xhp @@ -46385,7 +46385,7 @@ "par_idN10780\n" "help.text" msgid "You can only edit cell values if the Prevent changes option is selected, if the Copy back is option is not selected, and if the cells are not protected." -msgstr "Los valores de celdas sólo se pueden editar si la opción Evitar cambios está seleccionada, la opción Copiar reverso no está seleccionada y las celdas no están protegidas." +msgstr "Los valores de las celdas solo se pueden editar si la opción Impedir cambios está seleccionada, la opción Copiar de vuelta no está seleccionada y las celdas no están protegidas." #. yMejD #: 06050000.xhp @@ -46394,7 +46394,7 @@ "par_idN1078C\n" "help.text" msgid "You can only change scenario cell values and write them back into the scenario if the Prevent changes option is not selected, if the Copy back option is selected, and if the cells are not protected." -msgstr "Sólo se pueden cambiar los valores de las celdas del escenario y volver a escribirlos en el mismo si la opción Evitar cambios no está seleccionada, la opción Copiar reverso está seleccionada y las celdas no están protegidas." +msgstr "Solo se pueden cambiar los valores de las celdas del escenario y volver a escribirlos en el mismo si la opción Impedir cambios no está seleccionada, la opción Copiar de vuelta está seleccionada y las celdas no están protegidas." #. AMrfx #: 06060000.xhp @@ -46538,7 +46538,7 @@ "hd_id711619431316966\n" "help.text" msgid "Allow users of this sheet to" -msgstr "Permitir a los usuarios ésta hoja" +msgstr "Permitir a los usuarios de esta hoja" #. skcWB #: 06060100.xhp @@ -46592,7 +46592,7 @@ "par_id311619430374686\n" "help.text" msgid "Delete columns: Allow column deletions. Note that column deletions are only allowed on unprotected cells." -msgstr "Eliminar columnasPermitir eliminar las columnas. Tenga en cuenta que la eliminación de columnas sólo se permiten en las celdas no protegidas." +msgstr "Eliminar columnas: permite eliminar las columnas. Tenga en cuenta que las eliminaciones de columnas solo se permiten en las celdas no protegidas." #. ebwLU #: 06060100.xhp @@ -47089,7 +47089,7 @@ "tit\n" "help.text" msgid "Freeze Rows and Columns" -msgstr "Congelar filas y columnas" +msgstr "Inmovilizar filas y columnas" #. nwRKF #: 07090000.xhp @@ -47116,7 +47116,7 @@ "tit\n" "help.text" msgid "Freeze Cells" -msgstr "Congelar celdas" +msgstr "Inmovilizar celdas" #. U6FYG #: 07090100.xhp @@ -47143,7 +47143,7 @@ "par_id481612313262514\n" "help.text" msgid "Freezes the first column or the first row of the current spreadsheet." -msgstr "Congela la primera columna o la primera fila de la hoja de cálculo actual." +msgstr "Fija la primera columna o la primera fila de la hoja de cálculo actual." #. ozNTG #: 12010000.xhp @@ -47152,7 +47152,7 @@ "tit\n" "help.text" msgid "Define Database Range" -msgstr "Definir área de base de datos" +msgstr "Definir intervalo de base de datos" #. 3F2WA #: 12010000.xhp @@ -50257,7 +50257,7 @@ "par_id3166426\n" "help.text" msgid "Calculates and displays the grand total of the column calculation." -msgstr "Calcula y muestra el total del cálculo de la columna." +msgstr "Calcula y muestra el total general del cálculo de la columna." #. KpRF2 #: 12090102.xhp @@ -50275,7 +50275,7 @@ "par_id3152583\n" "help.text" msgid "Calculates and displays the grand total of the row calculation." -msgstr "Calcula y muestra el total del cálculo de la fila." +msgstr "Calcula y muestra el total general del cálculo de la fila." #. D5zQr #: 12090102.xhp @@ -51220,7 +51220,7 @@ "par_idN107A7\n" "help.text" msgid "Same as \"% of row\", but the grand total for the result's data field is used." -msgstr "Igual que \"% de fila\", pero utiliza el total del campo de datos del resultado." +msgstr "Igual que «% de fila», pero utiliza el total general del campo de datos del resultado." #. CcmCV #: 12090105.xhp @@ -51247,7 +51247,7 @@ "par_idN107B7\n" "help.text" msgid "( original result * grand total ) / ( row total * column total )" -msgstr "( resultado original * total del cálculo ) / ( total de fila * total de columna )" +msgstr "( resultado original * total general ) / ( total de fila * total de columna )" #. Kfgj3 #: 12090105.xhp @@ -51463,7 +51463,7 @@ "par_idN1059E\n" "help.text" msgid "Displays the top or bottom nn items when you sort by a specified field." -msgstr "Muestra los elementos nn superiores o inferiores cuando se ordena por un campo específico." +msgstr "Muestra los nn elementos superiores o inferiores cuando se ordena por un campo específico." #. 9BvAe #: 12090106.xhp @@ -51724,7 +51724,7 @@ "par_idN1057A\n" "help.text" msgid "Specifies whether to enter the start value for grouping yourself." -msgstr "Especifica si se va a introducir manualmente el valor de inicio para la agrupación." +msgstr "Especifica si se va a introducir manualmente el valor inicial de la agrupación." #. BEFPa #: 12090400.xhp @@ -51778,7 +51778,7 @@ "par_idN1058F\n" "help.text" msgid "Specifies whether to enter the end value for grouping yourself." -msgstr "Especifica si se va a introducir manualmente el valor de fin para la agrupación." +msgstr "Especifica si se va a introducir manualmente el valor final de la agrupación." #. h5kF4 #: 12090400.xhp @@ -52192,7 +52192,7 @@ "par_id3153967\n" "help.text" msgid "In conjunction with Tools - Detective - Mark invalid Data, this defines that blank cells are shown as invalid data (disabled) or not (enabled)." -msgstr "En combinación con Herramientas ▸ Detective ▸ Marcar los datos incorrectos, esta función establece que las celdas en blanco se mostrarán como datos incorrectos (desactivadas) o no (activadas)." +msgstr "En combinación con Herramientas ▸ Detective ▸ Marcar datos no válidos, esta función establece que las celdas en blanco se muestren como datos no válidos (desactivada) o no (activada)." #. knPBu #: 12120100.xhp @@ -52318,7 +52318,7 @@ "par_id3153199\n" "help.text" msgid "Enter the minimum value for the data validation option that you selected in the Allow box." -msgstr "Escriba el valor mínimo para la opción de validación de datos seleccionada en el cuadro Permitirbox." +msgstr "Introduzca el valor mínimo para la opción de validación de datos seleccionada en el cuadro Permitir." #. qjCBG #: 12120100.xhp @@ -52435,7 +52435,7 @@ "par_id3150752\n" "help.text" msgid "Enter the message that you want to display when the cell or cell range is selected." -msgstr "Escriba el mensaje que desea que se muestre al seleccionar la celda o el área de celdas." +msgstr "Escriba el mensaje que desea que se muestre al seleccionar la celda o el intervalo de celdas." #. w7EtY #: 12120300.xhp @@ -60616,7 +60616,7 @@ "par_id0403201618595150\n" "help.text" msgid "For ETS, Calc uses an approximation based on 1000 calculations with random variations within the standard deviation of the observation data set (the historical values)." -msgstr "Para ETS, Calc utiliza una aproximación basada en 1000 cálculos con variaciones aleatorias dentro de la desviación estándar del conjunto de datos de observación (los valores históricos)." +msgstr "Para ETS, Calc utiliza una aproximación basada en 1000 cálculos con variaciones aleatorias dentro de la desviación típica del conjunto de datos de observación (los valores históricos)." #. KTjG5 #: func_forecastetspiadd.xhp @@ -60742,7 +60742,7 @@ "par_id0403201618595150\n" "help.text" msgid "For ETS, Calc uses an approximation based on 1000 calculations with random variations within the standard deviation of the observation data set (the historical values)." -msgstr "Para ETS, Calc utiliza una aproximación basada en 1000 cálculos con variaciones aleatorias dentro de la desviación estándar del conjunto de datos de observación (los valores históricos)." +msgstr "Para ETS, Calc utiliza una aproximación basada en 1000 cálculos con variaciones aleatorias dentro de la desviación típica del conjunto de datos de observación (los valores históricos)." #. wtJsd #: func_forecastetspimult.xhp @@ -67663,7 +67663,7 @@ "par_id631647275500217\n" "help.text" msgid "In order to correctly identify the changes, each collaborator should enter their name in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - User Data on the Menu bar." -msgstr "Para identificar correctamente los cambios, cada colaborador debe ingresar su nombre en%PRODUCTNAME - PreferenciasOpciones de herramientas- %PRODUCTNAME Datos del usuarioen la barra de Menú." +msgstr "Para identificar correctamente los cambios, cada colaborador debe proporcionar su nombre en %PRODUCTNAME ▸ PreferenciasHerramientas ▸ Opciones ▸ %PRODUCTNAME ▸ Datos de identidad." #. k7H5Y #: solver.xhp @@ -67699,7 +67699,7 @@ "par_id9210486\n" "help.text" msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods." -msgstr "Abre el cuadro de diálogo Solucionador. Un solucionador le permite resolver problemas matemáticos con múltiples variables desconocidas y un conjunto de restricciones sobre las variables mediante métodos de búsqueda de objetivos." +msgstr "Abre el cuadro de diálogo Solver. Un Solver le permite resolver problemas matemáticos con múltiples variables desconocidas y un conjunto de restricciones sobre las variables mediante métodos de búsqueda de valores objetivo." #. wszcE #: solver.xhp @@ -67960,7 +67960,7 @@ "hd_id0603200910430882\n" "help.text" msgid "Using Non-Linear solvers" -msgstr "Uso de solucionadores no lineales" +msgstr "Uso de Solvers no lineales" #. UTzzV #: solver.xhp @@ -68131,7 +68131,7 @@ "par_id271589981559367\n" "help.text" msgid "Wiki page on non-linear solvers and theirs algorithms" -msgstr "Página wiki sobre solucionadores no lineales y sus algoritmos" +msgstr "Página wiki sobre Solvers no lineales y sus algoritmos" #. A843R #: solver_options_algo.xhp @@ -68428,7 +68428,7 @@ "par_id0503200917103792\n" "help.text" msgid "Use Random Starting Point" -msgstr "Utilizar el punto de inicio aleatorio" +msgstr "Utilizar punto inicial aleatorio" #. EdJoF #: solver_options_algo.xhp @@ -68707,7 +68707,7 @@ "par_id271589981559367\n" "help.text" msgid "Wiki page on non-linear solvers and theirs algorithms" -msgstr "Página wiki sobre solucionadores no lineales y sus algoritmos" +msgstr "Página del wiki sobre Solvers no lineales y sus algoritmos" #. D2nCR #: solver_options_algo.xhp @@ -69490,7 +69490,7 @@ "par_id1001380\n" "help.text" msgid "Mean" -msgstr "Promedio" +msgstr "Media" #. CnFDW #: statistics_anova.xhp @@ -70057,7 +70057,7 @@ "par_id1000920\n" "help.text" msgid "Standard Deviation" -msgstr "Desviación estándar" +msgstr "Desviación típica" #. JqtpV #: statistics_descriptive.xhp @@ -70156,7 +70156,7 @@ "par_id1002120\n" "help.text" msgid "Results in a smoothed data series" -msgstr "Da como resultado una serie de datos suavizados" +msgstr "Da como resultado una serie de datos alisados" #. CA94C #: statistics_exposmooth.xhp @@ -70201,9 +70201,7 @@ "par_id1002160\n" "help.text" msgid "Smoothing Factor: A parameter between 0 and 1 that represents the damping factor Alpha in the smoothing equation." -msgstr "" -"Factor de alisamiento: Un parámetro entre 0 y 1 que representa el factor de amortiguamiento Alfa en la ecuación de alisamiento\n" -"ingles" +msgstr "Factor de alisamiento: un parámetro entre 0 y 1 que representa el factor de amortiguamiento Alfa en la ecuación de alisamiento." #. b4y8A #: statistics_exposmooth.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/scalc/guide.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/scalc/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/scalc/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 09:50+0000\n" +"PO-Revision-Date: 2023-04-10 13:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -293,7 +293,7 @@ "par_id3147427\n" "help.text" msgid "The AutoFilter function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed." -msgstr "La función AutoFilter inserta en una o más columnas de datos un cuadro combinado que permite seleccionar los registros (filas) que se deben mostrar." +msgstr "La función Filtro automático inserta en una o más columnas de datos un cuadro combinado que permite seleccionar los registros (filas) que se deben mostrar." #. BCGPe #: autofilter.xhp @@ -302,7 +302,7 @@ "par_id3152576\n" "help.text" msgid "Select the columns you want to use AutoFilter on." -msgstr "Seleccione las columnas en las que desee utilizar el AutoFilter." +msgstr "Seleccione las columnas en las que desee utilizar el filtro automático." #. Qk7GY #: autofilter.xhp @@ -329,7 +329,7 @@ "par_id3155064\n" "help.text" msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button." -msgstr "Sólo se muestran las filas cuyo contenido cumple los criterios de filtro. Las otras filas se filtran. Es posible ver si las filas se han filtrado a partir de números de fila discontinuos. La columna que se ha utilizado para el filtro se identifica mediante un botón de flecha de color distinto." +msgstr "Solo se muestran las filas cuyo contenido cumple los criterios de filtro. Las otras filas se filtran. Es posible ver si las filas se han filtrado a partir de números de fila discontinuos. La columna que se ha utilizado para el filtro se identifica mediante un botón de flecha de color distinto." #. BTbCP #: autofilter.xhp @@ -455,7 +455,7 @@ "par_idN106D5\n" "help.text" msgid "Go to Format - AutoFormat Styles to open the AutoFormat dialog." -msgstr "" +msgstr "Diríjase a Formato ▸ Estilos de formato automático para abrir el cuadro de diálogo Formato automático." #. CXiex #: autoformat.xhp @@ -1643,7 +1643,7 @@ "par_id3145271\n" "help.text" msgid "In the formula, an entire 24-hour day has a value of 1 and one hour has a value of 1/24. The logical value in parentheses is 0 or 1, corresponding to 0 or 24 hours. The result returned by the formula is automatically issued in time format due to the sequence of the operands." -msgstr "La fórmula parte de la base de que un día entero con sus 24 horas tiene el valor 1 y que, por lo tanto, una hora representa 1/24 parte de ese valor. El valor lógico entre paréntesis es 0 ó 1 que corresponde a 0 ó 24 horas. El resultado de la fórmula se mostrará automáticamente en formato de hora gracias al orden de los operandos." +msgstr "La fórmula parte de la base de que un día entero con sus 24 horas tiene el valor 1 y que, por lo tanto, una hora representa 1⁄24 parte de ese valor. El valor lógico entre paréntesis es 0 o 1, que corresponde a 0 o 24 horas. El resultado de la fórmula se mostrará automáticamente en formato horario gracias al orden de los operandos." #. M8CyC #: calculate.xhp @@ -4145,7 +4145,7 @@ "par_id3145640\n" "help.text" msgid "If, under Language, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"." -msgstr "Si, en Idioma, convierte las celdas a \"Inglés (EE. UU.)\", también se transferirá la configuración regional de inglés y el formato de moneda predeterminado será \"$ 1,234.00\"." +msgstr "Si, en Idioma, convierte las celdas a «Inglés (EE. UU.)», también se transferirá la configuración regional de inglés y el formato monetario predeterminado será «$ 1,234.00»." #. CzbsK #: currency_format.xhp @@ -7160,7 +7160,7 @@ "par_id3145367\n" "help.text" msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose Format cells. Select \"Fraction\" from the Category field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8." -msgstr "Si desea ver fracciones de varios dígitos deberá cambiar el formato de la celda para que se muestren las fracciones con varios dígitos. Abra el menú contextual de la celda y seleccione Formato de celdas. Seleccione \"Fracción\" en el campo Categoría y, a continuación, seleccione \"-1234 10/81\". Ahora podrá escribir fracciones como 12/31 o 12/32; sin embargo, las fracciones se simplifican de forma automática, por lo que en el caso del último ejemplo se mostrará 3/8." +msgstr "Si desea ver fracciones de varios dígitos deberá cambiar el formato de la celda para que se muestren las fracciones con varios dígitos. Abra el menú contextual de la celda y seleccione Formato de celdas. Seleccione «Fracción» en el campo Categoría y, a continuación, seleccione «-1234 10/81». Ahora podrá escribir fracciones como 12/31 o 12/32; sin embargo, las fracciones se simplifican de forma automática, por lo que en el caso del último ejemplo se mostrará 3/8." #. ixdhC #: goalseek.xhp @@ -7484,7 +7484,7 @@ "par_id3154013\n" "help.text" msgid "Format a cell with a number format such as \\0000. This format can be assigned in the Format code field under the Format - Cells - Numbers tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"." -msgstr "Formatear una celda con un número de formato tal como \\0000. Éste formato puede ser asignado en el campo Código de Formato en la pestaña Formato - Celdas - Números , y define que la celda sea mostrada como \" siempre poner un cero primero y después el entero teniendo al menos tres lugares, y llenados con ceros a la izquierda si hay menos de tres dígitos. \"." +msgstr "Formatee una celda con un formato numérico tal como \\0000. Este formato puede asignarse en el campo Código de formato del cuadro de diálogo Formato ▸ Celdas ▸ pestaña Números, y define la visualización de la celda como «siempre poner un cero al principio y luego el entero, con al menos tres decimales, y rellenar con ceros a la izquierda si hay menos de tres dígitos»." #. 9RanL #: integer_leading_zero.xhp @@ -13019,7 +13019,7 @@ "tit\n" "help.text" msgid "Validity of Cell Contents" -msgstr "Validez de contenidos de celda" +msgstr "Validez del contenido de las celdas" #. N5T5g #: validity.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/scalc.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/scalc.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/scalc.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/scalc.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-03-07 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1548565117.000000\n" #. ZxQeC @@ -257,7 +257,7 @@ "hd_id241636195404363\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Comentarios" #. oPaHx #: main0103.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/schart/01.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/schart/01.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/schart/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/schart/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-03-01 09:47+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -653,7 +653,7 @@ "par_id1106200812112531\n" "help.text" msgid "Specifies whether the legend should overlap the chart. Turning off this option is useful if you want to display the legend above an empty part of the chart area instead of beside it. This way the drawing area can fill the whole chart area, increasing its readability." -msgstr "Especifica si la leyenda puede superponerse al gráfico. Desactivar esta opción resulta útil si quiere que la leyenda se muestre sobre una zona vacía del gráfico, en vez de a un costado. De esta manera, el área de dibujo puede llenar totalmente el área del gráfico, lo que mejora su legibilidad." +msgstr "Especifica si la leyenda puede superponerse al gráfico. Desactivar esta opción resulta útil si quiere que la leyenda se muestre sobre una zona vacía del gráfico, en vez de a un costado. De esta manera, el área de dibujo puede llenar totalmente el área del gráfico, lo que mejora su inteligibilidad." #. WXyyt #: 04030000.xhp @@ -1076,7 +1076,7 @@ "par_id3149666\n" "help.text" msgid "Use the X or Y Error Bars dialog to display error bars for 2D charts." -msgstr "Utilice el cuadro de diálogo Barraas de error X o Y para mostrar barras de error en gráficos 2D." +msgstr "Utilice el cuadro de diálogo Barras de error X o Y para mostrar barras de error en gráficos 2D." #. dw9Dz #: 04050000.xhp @@ -1211,7 +1211,7 @@ "par_id3153249\n" "help.text" msgid "Standard Deviation: Displays the standard deviation (square root of the variance). Unlike other functions, error bars are centered on the mean." -msgstr "Desviación estándar: muestra la desviación estándar (raíz cuadrada de la varianza). A diferencia de otras funciones, las barras de error se centran en la media." +msgstr "Desviación típica: muestra la desviación típica (raíz cuadrada de la varianza). A diferencia de otras funciones, las barras de error se centran en la media." #. GdCG9 #: 04050000.xhp @@ -4586,7 +4586,7 @@ "par_id3154757\n" "help.text" msgid "This function is only available if you have data displayed in columns. It is not possible to switch to data display in rows." -msgstr "Esta función sólo está disponible si hay datos en las columnas. No es posible cambiar a la visualización de datos por filas." +msgstr "Esta función solo está disponible si hay datos en las columnas. No es posible cambiar a la visualización de datos por filas." #. oMeCC #: 05120000.xhp @@ -6296,7 +6296,7 @@ "par_id2655720\n" "help.text" msgid "Mark Stack series to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select Percent, the y values are scaled as percentage of the category total." -msgstr "Marcar Series apiladas para arreglar los puntos y valores acumulados por encima de los demás. Los valores ya no representan valores absolutos, a excepción de la primera columna que se dibuja en el botón de los puntos aplicados. Si usted selecciona Porcentaje, los valores son escalados como porcentaje de la categoría total." +msgstr "Active Series apiladas para disponer los valores Y de los puntos acumulados por encima de los demás. Los valores Y ya no representan valores absolutos, salvo por la primera columna, que se dibuja en el fondo de los puntos apilados. Si selecciona Porcentaje, los valores Y se escalan como porcentaje del total de la categoría." #. mwECA #: type_line.xhp @@ -7385,7 +7385,7 @@ "bm_id84231\n" "help.text" msgid "scatter chartsXY chartschart types;XY (scatter)error indicators in chartserror bars in chartsaverages in chartsstatistics in chartsvariances in chartsstandard deviation in charts" -msgstr "gráficos de dispersióngráficos XYtipos de gráfico;XY (disperso)indicadores de error en gráficosbarras de error en gráficospromedios en gráficosestadísticas en gráficosvarianzas en gráficosdesviación estándar en gráficos" +msgstr "gráficos de dispersióngráficos XYtipos de gráfico;XY (disperso)indicadores de error en gráficosbarras de error en gráficospromedios en gráficosestadísticas en gráficosvarianzas en gráficosdesviación típica en gráficos" #. QBDn7 #: type_xy.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/sdatabase.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/sdatabase.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/sdatabase.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/sdatabase.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-03-30 10:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. ugSgG #: 02000000.xhp @@ -2506,7 +2506,7 @@ "par_id191120151939594217\n" "help.text" msgid "The user can use the SQL wild-card characters \"%\" (arbitrary string) or \"_\" (arbitrary single character) as part of the value to retrieve records with more complex criteria." -msgstr "" +msgstr "Es posible utilizar los caracteres comodín «%» (cadena arbitraria) y «_» (carácter único arbitrario) de SQL como parte del valor para recuperar registros con criterios más complejos." #. wRe6v #: 02010100.xhp @@ -2542,7 +2542,7 @@ "par_id3152412\n" "help.text" msgid "You can formulate your query directly in SQL code. Note, however, that the special syntax is dependent upon the database system that you use." -msgstr "" +msgstr "Puede formular su consulta directamente en lenguaje SQL. Es oportuno recordar, empero, que la sintaxis exacta depende del sistema de bases de datos que se utilice." #. kkuBG #: 02010100.xhp @@ -2578,7 +2578,7 @@ "bm_id3154015\n" "help.text" msgid "links;relational databases (Base) inner joins (Base) joins in databases (Base) left joins (Base) right joins (Base) full joins (Base)" -msgstr "" +msgstr "enlaces;bases de datos relacionales (Base)uniones internas (Base)uniones en bases de datos (Base)uniones izquierdas (Base) uniones derechas (Base)uniones completas (Base)" #. DG7RD #: 02010101.xhp @@ -2668,7 +2668,7 @@ "hd_id3155334\n" "help.text" msgid "Inner Join" -msgstr "" +msgstr "Unión interior" #. 356Dv #: 02010101.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/sdraw/guide.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/sdraw/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/sdraw/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547843369.000000\n" #. cZbDh @@ -1112,7 +1112,7 @@ "par_id3147344\n" "help.text" msgid "You can also use the Transparency option to replace the transparent areas of an image with a color." -msgstr "El atributo Transparencia se considera también un color. La transparencia de una imagen se puede sustituir por otro color, por ejemplo, blanco. Esto sería aconsejable si el controlador de la impresora tuviera problemas con la impresión de imágenes transparentes." +msgstr "También existe la posibilidad de usar la opción Transparencia para reemplazar las áreas transparentes de una imagen por algún color." #. Ze6JL #: eyedropper.xhp @@ -2516,7 +2516,7 @@ "par_id3153085\n" "help.text" msgid "The Dimension Lines layer is where you draw, for example, the dimension lines. By switching the layer to show or hide, you can easily switch these lines on and off." -msgstr "En la capa Líneas de cota puede trazar, por ejemplo, las mencionadas líneas para dimensionamiento. Puede mostrar u ocultar esta capa para activar o desactivar las líneas con facilidad." +msgstr "En la capa Líneas de cota puede trazar, por ejemplo, las mencionadas líneas para acotación. Puede mostrar u ocultar esta capa para activar o desactivar las líneas con facilidad." #. zDY7B #: layers.xhp @@ -2678,7 +2678,7 @@ "par_id0930200803002463\n" "help.text" msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value." -msgstr "Pulse con el botón secundario del ratón para abrir el menú contextual. Elija Posición y tamaño ▸ Giro para introducir un valor de giro exacto." +msgstr "Pulse sobre el objeto con el botón secundario del ratón para abrir el menú contextual. Elija Posición y tamaño ▸ Giro para introducir un valor de giro exacto." #. G5NAB #: rotate_object.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/00.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/00.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 07:23+0000\n" +"PO-Revision-Date: 2023-04-30 15:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1139,7 +1139,7 @@ "par_id3149483\n" "help.text" msgid "$[officename] creates ImageMaps for both methods. Select the format from the File type list in the Save As dialog in the ImageMap Editor. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program." -msgstr "$[officename] crea mapas de imágenes para ambos métodos. Seleccione el formato desde Tipo de Archivo en el diálogo Guardar como, en el Editor de mapa de imágenes. Se deben enviar al servidor cada uno de los archivos de mapas creados. Debe preguntar a su proveedor o administrador de redes qué tipo de mapa de imágenes admite el servidor y cómo acceder al programa de evaluación." +msgstr "$[officename] crea imágenes interactivas para ambos métodos. Seleccione el formato en la lista Tipo de archivo del cuadro de diálogo Guardar como, en el Editor de imágenes interactivas. Se crearán archivos separados que deben cargarse en el servidor. Pregunte a su proveedor o administrador de redes qué tipo de imagen interactiva admite el servidor y cómo acceder al programa de evaluación." #. TZxFS #: 00000002.xhp @@ -2795,7 +2795,7 @@ "hd_id551604189872115\n" "help.text" msgid "Page line-spacing (register-true)" -msgstr "" +msgstr "Conformidad de registro" #. yspD9 #: 00000005.xhp @@ -3839,7 +3839,7 @@ "hd_id3148556\n" "help.text" msgid "Importing and Exporting Spreadsheet Files" -msgstr "Importación y exportación de los archivos de hojas de cálculo" +msgstr "Importar y exportar archivos de hoja de cálculo" #. Cdej5 #: 00000020.xhp @@ -11066,7 +11066,7 @@ "par_id3151332\n" "help.text" msgid "Menu Format - Image - Properties - Crop tab." -msgstr "" +msgstr "Vaya a Formato ▸ Imagen ▸ Propiedades ▸ pestaña Recortar." #. eREMF #: 00040500.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 10:44+0000\n" +"PO-Revision-Date: 2023-05-03 11:52+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -3416,7 +3416,7 @@ "hd_id3149182\n" "help.text" msgid "Modified" -msgstr "" +msgstr "Modificado el" #. g5sGH #: 01100200.xhp @@ -3551,7 +3551,7 @@ "hd_id3154810\n" "help.text" msgid "Apply User Data" -msgstr "Utilizar datos de usuario" +msgstr "Aplicar datos de identidad" #. EPUeH #: 01100200.xhp @@ -9959,7 +9959,7 @@ "hd_id3147124\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. NN2ds #: 02100200.xhp @@ -9968,7 +9968,7 @@ "par_id3153877\n" "help.text" msgid "Finds the Hyphenation attribute." -msgstr "Encuentra el atributo de división de palabras." +msgstr "Encuentra el atributo Corte de palabras." #. 5AbaD #: 02100200.xhp @@ -11120,7 +11120,7 @@ "par_id3150008\n" "help.text" msgid "Lets you edit a selected OLE object that you inserted with the Insert – OLE Object command." -msgstr "" +msgstr "Le permite editar un objeto OLE seleccionado que se haya insertado mediante la orden Insertar ▸ Objeto OLE." #. PXv8N #: 02200200.xhp @@ -11165,7 +11165,7 @@ "par_id3154230\n" "help.text" msgid "This menu command is inserted into Edit – Objects submenu by the application that created the linked object. Depending on the application, the Open command for the OLE object might have a different name." -msgstr "" +msgstr "Esta orden del menú la inserta en el submenú Editar ▸ Objetos la aplicación que creó el objeto enlazado. Según la aplicación utilizada, la orden Abrir del objeto OLE puede tener un nombre diferente." #. 2hNUE #: 02200200.xhp @@ -11525,7 +11525,7 @@ "par_id3149751\n" "help.text" msgid "You can draw three types of hotspots: rectangles, ellipses, and polygons. When you click a hotspot, the URL is opened in the browser window or frame that you specify. You can also specify the text that appears when your mouse rests on the hotspot." -msgstr "" +msgstr "Puede trazar tres tipos de zonas activas: rectángulos, elipses y polígonos. Cuando pulsa en una zona activa, el URL se abre en la ventana o el marco del navegador que especifique. Puede especificar asimismo el texto que aparece cuando el ratón se posa sobre la zona activa." #. vzWkG #: 02220000.xhp @@ -15476,7 +15476,7 @@ "par_id3159079\n" "help.text" msgid "Inserts an embedded or linked object into your document, including formulas, QR codes, and OLE objects." -msgstr "" +msgstr "Inserta un objeto incrustado o enlazado en el documento, el cual puede ser una fórmula, un código QR o un objeto OLE." #. PuimY #: 04150000.xhp @@ -15638,7 +15638,7 @@ "par_id3155434\n" "help.text" msgid "Enter the name of the file that you want to link or embed, or click Search to locate the file." -msgstr "" +msgstr "Introduzca el nombre del archivo que quiere enlazar o incrustar, o bien, pulse en Buscar para localizar el archivo." #. CHtvz #: 04150100.xhp @@ -17951,7 +17951,7 @@ "par_id1002200811423556\n" "help.text" msgid "For example, if your software is set to an English locale, and you want to format a year with four digits, you enter YYYY as a formatting code. When you switch to a German locale, you must use JJJJ instead. The following table lists only the localized differences." -msgstr "Por ejemplo, si su software está configurado para un Inglés local, y desea dar formato a un año con cuatro dígitos, introduzca AAAA como un código de formato. Al cambiar a un local alemán, debe utilizar en lugar JJJJ. La siguiente tabla muestra sólo las diferencias locales." +msgstr "Por ejemplo, si su programa tiene establecida una configuración regional inglesa, y desea formatear un año con cuatro dígitos, el código necesario para ello es YYYY. Si cambia a una configuración alemana, deberá utilizar JJJJ. La tabla siguiente enumera las diferencias por configuración regional." #. FAbZk #: 05020301.xhp @@ -31217,7 +31217,7 @@ "par_id3152924\n" "help.text" msgid "To align an image, frame, or OLE object relative to the anchored character, right-click the object, and choose Properties. Click the Position and Size tab, and in the Position area, select Character in the to boxes." -msgstr "" +msgstr "Para alinear una imagen, un marco o un objeto OLE de manera relativa al carácter anclado, pulse con el botón secundario del ratón sobre el objeto y seleccione Propiedades. Pulse en la pestaña Posición y tamaño, y, en el apartado Posición, elija Carácter en los cuadros A." #. 3kEAV #: 05260400.xhp @@ -33647,7 +33647,7 @@ "hd_id3147380\n" "help.text" msgid "Hyphenation active" -msgstr "División de palabras activada" +msgstr "Corte de palabras activado" #. QiwiB #: 05340300.xhp @@ -33656,7 +33656,7 @@ "par_id3148458\n" "help.text" msgid "Enables word hyphenation for text wrapping to the next line." -msgstr "Permite la separación de sílabas en el ajuste del texto a la línea siguiente." +msgstr "Activa el corte de palabras para el ajuste del texto al renglón siguiente." #. LfcUR #: 05340300.xhp @@ -36869,7 +36869,7 @@ "par_id1507309\n" "help.text" msgid "Opens a submenu. Choose a language for the selected text.
Choose None to exclude the selected text from spellchecking and hyphenation.
Choose More to open a dialog with more options.
" -msgstr "Abre un submenú. Elija el idioma del texto seleccionado.
Seleccione «Ninguno» para excluir el texto seleccionado de la revisión de ortografía y la división de palabras.
Seleccione «Más» para abrir un cuadro de diálogo con más opciones.
" +msgstr "Abre un submenú. Elija el idioma del texto seleccionado.
Seleccione «Ninguno» para excluir el texto seleccionado de la revisión de ortografía y el corte de palabras.
Seleccione «Más» para abrir un cuadro de diálogo con más opciones.
" #. wPKdz #: 06010500.xhp @@ -36905,7 +36905,7 @@ "par_id5735953\n" "help.text" msgid "Opens a submenu. Choose a language for all text.
Choose None to exclude all text from spellchecking and hyphenation.
Choose More to open a dialog with more options.
" -msgstr "Abre un submenú. Elija el idioma de todo el texto.
Seleccione «Ninguno» para excluir el texto de la revisión de ortografía y la división de palabras.
Seleccione «Más» para abrir un cuadro de diálogo con más opciones.
" +msgstr "Abre un submenú. Elija el idioma de todo el texto.
Seleccione «Ninguno» para excluir el texto de la revisión de ortografía y el corte de palabras.
Seleccione «Más» para abrir un cuadro de diálogo con más opciones.
" #. DRSYa #: 06010500.xhp @@ -36914,7 +36914,7 @@ "par_idN105AF\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. q4h2B #: 06010500.xhp @@ -36932,7 +36932,7 @@ "par_idN105D0\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. AL6nJ #: 06010500.xhp @@ -36941,7 +36941,7 @@ "par_idN105D4\n" "help.text" msgid "Turns hyphenation on and off." -msgstr "Activa y desactiva la división de palabras." +msgstr "Activa y desactiva el corte de palabras." #. EczZc #: 06010500.xhp @@ -36950,7 +36950,7 @@ "par_idN105E7\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. vFxAn #: 06010500.xhp @@ -36959,7 +36959,7 @@ "par_idN105EB\n" "help.text" msgid "Turns hyphenation on and off." -msgstr "Activa y desactiva la división de palabras." +msgstr "Activa y desactiva el corte de palabras." #. pSG6a #: 06010500.xhp @@ -39011,7 +39011,7 @@ "hd_id3149762\n" "help.text" msgid "AutoInclude" -msgstr "Incluir automáticamente" +msgstr "Inclusión automática" #. BZ8y7 #: 06040300.xhp @@ -42449,7 +42449,7 @@ "par_id981514310786648\n" "help.text" msgid "Insert Separator: Add a separator mark to improve menu readability and to group commands by subject." -msgstr "Insertar separador: añade una barra separadora para mejorar la legibilidad del menú al agrupar las órdenes por tema." +msgstr "Insertar separador: añade una barra separadora para mejorar la comprensibilidad del menú al agrupar las órdenes por tema." #. EyEkZ #: 06140100.xhp @@ -43097,7 +43097,7 @@ "par_id981514310786648\n" "help.text" msgid "Insert Separator: Add a separator mark to improve menu readability and to group commands by subject." -msgstr "Insertar separador: añade una barra separadora para mejorar la legibilidad del menú al agrupar las órdenes por tema." +msgstr "Insertar separador: añade una barra separadora para mejorar la comprensibilidad del menú al agrupar las órdenes por tema." #. vmmJm #: 06140300.xhp @@ -43412,7 +43412,7 @@ "par_id981514310786648\n" "help.text" msgid "Insert Separator: Add a separator mark to improve toolbar readability and to group commands by subject." -msgstr "Insertar separador: añade una barra separadora para mejorar la legibilidad de la barra de herramientas al agrupar las órdenes por tema." +msgstr "Insertar separador: añade una barra separadora para mejorar la comprensibilidad de la barra de herramientas al agrupar las órdenes por tema." #. ZPoWt #: 06140400.xhp @@ -44870,7 +44870,7 @@ "par_id3159157\n" "help.text" msgid "Normally in a mixed text selection made of Hangul and Hanja characters, all Hangul characters will be converted to Hanja and all Hanja characters will be converted to Hangul. If you want to convert a mixed text selection only in one direction, use the following conversion options." -msgstr "Normalmente, en una selección combinada de texto compuesto por caracteres hangul y hanja, todos los caracteres hangul se convertirán en hanja y viceversa. Si desea convertir una selección de texto combinado sólo en un sentido, use las opciones de conversión siguientes." +msgstr "Normalmente, en una selección combinada de texto compuesto por caracteres hangul y hanja, todos los caracteres hangul se convertirán en hanja y viceversa. Si desea convertir una selección de texto combinado solamente en un sentido, use las opciones de conversión siguientes." #. TEgnJ #: 06200000.xhp @@ -45203,7 +45203,7 @@ "par_idN10655\n" "help.text" msgid "Automatically replaces words that only have one suggested word replacement." -msgstr "Sustituye automáticamente las palabras que sólo tienen un reemplazo en las sugerencias de palabras." +msgstr "Sustituye automáticamente las palabras que solo tienen un reemplazo en las sugerencias de palabras." #. mTBV7 #: 06202000.xhp @@ -46463,7 +46463,7 @@ "par_id701638101681340\n" "help.text" msgid "On Windows systems, the default certificate manager is Certmgr.msc, a Microsoft Management Console snap-in using Certmgr.exe, and does not manage OpenPGP certificates. To manage both X509 and OpenPGP certificates install the gpg4win tool." -msgstr "" +msgstr "En sistemas Windows, el gestor de certificados predeterminado es Certmgr.msc, un complemento de la Microsoft Management Console que se ejecuta a través de Certmgr.exe, el cual no permite gestionar certificados OpenGPG. Para gestionar certificados X509 y OpenPGP, instale la herramienta gpg4win." #. Bsfs2 #: digitalsignaturespdf.xhp @@ -50675,7 +50675,7 @@ "par_id11371501\n" "help.text" msgid "These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank." -msgstr "Estos tres campos le permiten, facultativamente, proporcionar información adicional tocante a la firma digital que podrá aplicar al PDF (dónde, por quién y por qué se firmó, respectivamente). Estos datos se incorporarán en los campos pertinentes del PDF y serán visibles a todos quienes visualicen el PDF. Puede dejar cualquiera de estos campos en blanco." +msgstr "Estos tres campos le permiten, facultativamente, proporcionar información adicional tocante a la firma digital que podrá aplicar al PDF (dónde, por quién y por qué se firmó, respectivamente). Estos datos se incorporarán en los campos pertinentes del PDF y serán visibles a cualquier persona que visualice el PDF. Puede dejar cualquiera de estos campos en blanco." #. Po9jA #: ref_pdf_export_digital_signature.xhp @@ -51044,7 +51044,7 @@ "hd_id2796411\n" "help.text" msgid "Archive (PDF/A, ISO 19005)" -msgstr "Archivador (PDF/A, ISO 19005)" +msgstr "Archivística (PDF/A, ISO 19005)" #. ELsXa #: ref_pdf_export_general.xhp @@ -51062,7 +51062,7 @@ "par_id301602634061241\n" "help.text" msgid "PDF/A-2b is recommended for most users, because it allows for layers and transparency with shapes and images. It also compresses better (JPEG 2000) than PDF/A-1b, usually producing smaller files. PDF/A-3b is identical to PDF/A-2b, but also accepts embedding of other file formats." -msgstr "Se recomienda PDF/A-2b como la opción más adecuada para la mayoría de los usuarios porque permite emplear capas y transparencias en las formas y las imágenes. Además se comprime mejor (en JPEG 2000) que PDF/A-1b, lo que a menudo resulta en archivos más pequeños. PDF/A-3b es idéntico a PDF/A-2b, pero también acepta incrustar otros formatos de archivo." +msgstr "Se recomienda PDF/A-2b como la opción más adecuada para la mayoría de los usuarios porque permite emplear capas y transparencias en las formas y las imágenes. Además se comprime mejor (en JPEG 2000) que PDF/A-1b, lo que a menudo produce archivos más pequeños. PDF/A-3b es idéntico a PDF/A-2b, pero también permite incrustar otros formatos de archivo." #. UTPZ7 #: ref_pdf_export_general.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/02.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/02.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-03-01 09:35+0000\n" +"PO-Revision-Date: 2023-04-16 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1067,7 +1067,7 @@ "par_id3149981\n" "help.text" msgid "Icon Combo Box" -msgstr "" +msgstr "Icono Cuadro combinado" #. bUeTF #: 01170000.xhp @@ -4118,7 +4118,7 @@ "par_idN114EF\n" "help.text" msgid "Word break" -msgstr "División de palabras" +msgstr "Corte de palabras" #. GEFfK #: 01170101.xhp @@ -5639,7 +5639,7 @@ "par_id3145295\n" "help.text" msgid "For list boxes, you can use value lists. Value lists are lists that define reference values. In this way, the control in the form does not directly display the content of a database field, but rather values assigned in the value list." -msgstr "En los listados se pueden utilizar listas de valores, que definen valores referenciales. De esta manera, el campo de control no muestra directamente en el formulario un contenido de un campo de datos, sino los valores asignados mediante la lista de valores." +msgstr "En los cuadros de lista se pueden utilizar listas de valores, que definen valores referenciales. De esta manera, el control en el formulario no muestra directamente el contenido de un campo de base de datos, sino los valores asignados mediante la lista de valores." #. EycVV #: 01170102.xhp @@ -5936,7 +5936,7 @@ "par_id3159171\n" "help.text" msgid "With database forms, specifies the data source for the list content of the form-element. This field can be used to define a value list for documents without a database connection." -msgstr "" +msgstr "En los formularios de base de datos, especifica el origen de datos del contenido de la lista del elemento del formulario. Este campo puede utilizarse para definir una lista de valores para los documentos sin efectuar una conexión con una base de datos." #. 2DrgS #: 01170102.xhp @@ -6080,7 +6080,7 @@ "par_id3158404\n" "help.text" msgid "Entry in value list of the control (List content)" -msgstr "Entrada en la lista de valores del campo de control (Contenido de lista)" +msgstr "Entrada en la lista de valores del control (Contenido de lista)" #. Fyj6B #: 01170102.xhp @@ -6089,7 +6089,7 @@ "par_id3151198\n" "help.text" msgid "Transmitted data" -msgstr "Transmisión..." +msgstr "Datos transmitidos" #. R7Fmj #: 01170102.xhp @@ -8897,7 +8897,7 @@ "par_id3154360\n" "help.text" msgid "Determines if data can be added." -msgstr "" +msgstr "Determina si es posible añadir datos." #. B4Bj2 #: 01170203.xhp @@ -8933,7 +8933,7 @@ "par_id3148995\n" "help.text" msgid "Determines if the data can be deleted." -msgstr "" +msgstr "Determina si los datos pueden eliminarse." #. TGmFA #: 01170203.xhp @@ -9167,7 +9167,7 @@ "par_id3109850\n" "help.text" msgid "If form elements are inserted into a document, %PRODUCTNAME automatically determines in which order to move from one control to the next when using the Tab key. Every new control added is automatically placed at the end of this series. In the Tab Order dialog, you can adapt the order of this series to your individual needs." -msgstr "Si se insertan elementos de formulario en un documento, %PRODUCTNAME determina automáticamente en qué orden se debe ir de un campo de control al siguiente al pulsar la tecla de tabulación. Cada campo de control que se agrega se sitúa automáticamente al final de la serie. El diálogo Secuencia de activación permite adaptar el orden de esta serie a sus necesidades individuales." +msgstr "Si se insertan elementos de formulario en un documento, %PRODUCTNAME determina automáticamente en qué secuencia se debe ir de un control al siguiente al presionar la tecla de tabulación. Cada control que se añade se sitúa automáticamente al final de la serie. El cuadro de diálogo Orden de tabulación permite adaptar el orden de esta serie a sus necesidades individuales." #. DTro2 #: 01170300.xhp @@ -13712,7 +13712,7 @@ "par_id8894009\n" "help.text" msgid "Enter a URL for the file that you want to open when you click the hyperlink." -msgstr "" +msgstr "Introduzca un URL que apunte hacia el archivo que quiera que se abra cuando se pulse en el enlace." #. cEeaU #: 09070400.xhp @@ -13739,7 +13739,7 @@ "hd_id3151110\n" "help.text" msgid "File type" -msgstr "Tipo" +msgstr "Tipo de archivo" #. et8Zs #: 09070400.xhp @@ -13829,7 +13829,7 @@ "par_id3154186\n" "help.text" msgid "Icon Next Page" -msgstr "" +msgstr "Icono Página siguiente" #. FS8rq #: 10020000.xhp @@ -14711,7 +14711,7 @@ "hd_id3158407\n" "help.text" msgid "Create row only" -msgstr "Crear sólo fila" +msgstr "Crear fila solo" #. bsfkt #: 12070100.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/04.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/04.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:31+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-03-27 23:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560900244.000000\n" #. GEuoc @@ -2174,7 +2174,7 @@ "par_id3152955\n" "help.text" msgid "Selects the next point of the drawing object (Point Selection mode)." -msgstr "" +msgstr "Selecciona el punto ulterior del objeto de dibujo (modo de selección de puntos)." #. vEJKn #: 01010000.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/autopi.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/autopi.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/autopi.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564411282.000000\n" #. hCAzG @@ -131,7 +131,7 @@ "par_id3093440\n" "help.text" msgid "Starts the wizard for a letter template. You can use this template for both business and personal correspondence." -msgstr "Inicia el asistente para una plantilla de carta. Puede servirse de esta plantilla tanto para correspondencia comercial como personal." +msgstr "Inicia el asistente para una plantilla de carta. Puede valerse de esta plantilla tanto para correspondencia comercial como personal." #. 7uF5N #: 01010000.xhp @@ -5828,7 +5828,7 @@ "par_id3155351\n" "help.text" msgid "This page is not visible if you have unmarked the Create title page check box, or if you have selected either automatic or WebCast export." -msgstr "Esta página no está visible si se ha deseleccionado la casilla de verificación Crear portada o si se ha seleccionado exportación automática o WebCast." +msgstr "Esta página no es visible si se ha deseleccionado la casilla de verificación Crear portada o si se ha seleccionado exportación automática o WebCast." #. AieZZ #: 01110500.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/guide.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/guide.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 10:47+0000\n" +"PO-Revision-Date: 2023-05-03 11:52+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -6071,7 +6071,7 @@ "par_id661634735416764\n" "help.text" msgid "Text Delimiter" -msgstr "" +msgstr "Delimitador de textos" #. A3NpW #: csv_params.xhp @@ -6080,7 +6080,7 @@ "par_id131634735421911\n" "help.text" msgid "The text delimiter as ASCII value, like 34 for double quotes and 39 for single quotes. Example: 34 (\")." -msgstr "" +msgstr "El delimitador de textos como valor ASCII; por ejemplo, 34 para comillas dobles (\"), o 39 para comillas simples (')." #. 5EFCS #: csv_params.xhp @@ -6494,7 +6494,7 @@ "par_id7881263433\n" "help.text" msgid "Ignore field (do not import)" -msgstr "" +msgstr "Ignorar campo (no importar)" #. LEJDn #: csv_params.xhp @@ -6503,7 +6503,7 @@ "par_id6920129719\n" "help.text" msgid "US-English" -msgstr "" +msgstr "Inglés (EE. UU.)" #. wLth6 #: csv_params.xhp @@ -7376,7 +7376,7 @@ "par_id7869502\n" "help.text" msgid "Either create a new Base file using the Database Wizard, or open any existing Base file that is not read-only." -msgstr "" +msgstr "Puede crear un archivo nuevo de Base mediante el asistente para bases de datos o abrir un archivo de Base existente que no sea de solo lectura." #. JHYC6 #: data_im_export.xhp @@ -10364,7 +10364,7 @@ "par_id3153526\n" "help.text" msgid "This command saves the information necessary to restore the current document in case of a crash. Additionally, in case of a crash %PRODUCTNAME tries automatically to save AutoRecovery information for all open documents, if possible." -msgstr "Esta orden guarda la información necesaria para restaurar el documento actual en caso de bloqueo. Asimismo, en caso de bloqueo, %PRODUCTNAME intenta guardar automáticamente la información de recuperación automática para todos los documentos abiertos, si es posible." +msgstr "Esta orden guarda la información necesaria para restaurar el documento actual si se produce un cierre inesperado. Asimismo, en estos casos, %PRODUCTNAME intenta guardar automáticamente la información de recuperación automática para todos los documentos abiertos, si es posible." #. RZr2e #: doc_autosave.xhp @@ -13955,7 +13955,7 @@ "par_idN1067E\n" "help.text" msgid "Position the cursor where you want the ImageMap in your document." -msgstr "Coloque el cursor donde desee colocar el mapa de imágenes en el documento." +msgstr "Coloque el cursor donde desee colocar la imagen interactiva en el documento." #. AuLFm #: imagemap.xhp @@ -14018,7 +14018,7 @@ "par_idN106B3\n" "help.text" msgid "Click the Apply button to apply your changes, and close the ImageMap Editor." -msgstr "Pulse en el botón Aplicar para que los cambios surtan efecto y cierre el Editor de mapa de imágenes." +msgstr "Pulse en el botón Aplicar para que los cambios surtan efecto y cierre el Editor de imágenes interactivas." #. 7kkzm #: imagemap.xhp @@ -14036,7 +14036,7 @@ "par_idN106BA\n" "help.text" msgid "You may save the ImageMap as a file and upload that file to a Web server, for example." -msgstr "El mapa de imágenes se puede guardar como archivo y cargarlo en un servidor web, por ejemplo." +msgstr "La imagen interactiva se puede guardar como archivo y cargarse en un servidor web, por ejemplo." #. LkKHd #: import_ms.xhp @@ -15809,7 +15809,7 @@ "par_id3156016\n" "help.text" msgid "If you press Enter while the icon Select is selected, the focus is set into the image window of the ImageMap Editor. Press Esc to set the focus back to the icons and input boxes." -msgstr "" +msgstr "Si presiona Intro mientras el icono Seleccionar esté activado, el foco se establece sobre la ventana de la imagen del Editor de imágenes interactivas. Presione Esc para que el foco vuelva a los iconos y cuadros de entrada." #. 2DD3n #: keyboard.xhp @@ -21173,7 +21173,7 @@ "par_id331543694947279\n" "help.text" msgid "When you save a document with a password, you must remember the password inserted to open the document later. Anyone else that needs to open the document must also know the password used at save time. Therefore, the Save password must be transmitted to be known by other users." -msgstr "" +msgstr "Cuando guarda un documento con contraseña, debe recordar esta para poder abrir el documento después. Cualquier otra persona que necesite abrir el documento debe conocer también la contraseña que se usó al momento de guardarlo. Por lo tanto, hace falta transmitir la contraseña de guardado para que se conozca." #. MGvAn #: openpgp.xhp @@ -21191,7 +21191,7 @@ "par_id681543694965846\n" "help.text" msgid "With document OpenPGP encryption, you define the set of users that can decrypt the document and you don’t need to send passwords through channels which security is unknown. Besides, the OpenPGP application manages the key chain of public keys more efficiently." -msgstr "" +msgstr "Con el cifrado OpenGPG de documentos, usted puede definir qué usuarios podrán descifrar el documento y no tendrá que enviar contraseñas por vías de dudosa seguridad. Además, la aplicación OpenPGP gestiona las claves públicas más eficientemente." #. uvff4 #: openpgp.xhp @@ -21803,7 +21803,7 @@ "hd_id3150435\n" "help.text" msgid "To load a gradient and hatching palette:" -msgstr "" +msgstr "Para cargar una paleta de degradados y tramas:" #. tEhw5 #: palette_files.xhp @@ -24431,7 +24431,7 @@ "par_id3154306\n" "help.text" msgid "To support automatic hyphenation by entering a soft hyphen inside a word yourself, use the keys CommandCtrl+minus sign. The word is separated at this position when it is at the end of the line, even if automatic hyphenation for this paragraph is switched off." -msgstr "Para activar la división de palabras automática cuando se inserte manualmente un guion discrecional en una palabra, oprima ⌘-Ctrl + -. La palabra se separará en la posición del carácter cuando se encuentre a final de renglón, aunque esté desactivada la división de palabras automática para el párrafo." +msgstr "Para activar el corte de palabras automático cuando se inserte manualmente un guion discrecional en una palabra, oprima ⌘-Ctrl + -. La palabra se separará en la posición del carácter cuando se encuentre a final de renglón, aunque esté desactivado el corte de palabras automático para el párrafo." #. hiwHr #: space_hyphen.xhp @@ -25475,7 +25475,7 @@ "par_id571571707462064\n" "help.text" msgid "The debug options --record, --backtrace, --strace and --valgrind cannot be used together. Please use them one by one." -msgstr "" +msgstr "Las opciones de depuración --record, --backtrace, --strace y --valgrind no se pueden utilizar juntas. Úselas una a la vez." #. hntPb #: start_parameters.xhp @@ -26699,7 +26699,7 @@ "par_id431607690468509\n" "help.text" msgid "Extensions Icon" -msgstr "" +msgstr "Icono Extensiones" #. mwqRi #: template_manager.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/optionen.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/shared/optionen.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/shared/optionen.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-23 20:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -878,7 +878,7 @@ "par_id3149560\n" "help.text" msgid "Specifies that %PRODUCTNAME saves the information needed to restore all open documents in case of a crash. You can specify the saving time interval." -msgstr "Especifica que %PRODUCTNAME guardará la información necesaria para restaurar todos los documentos abiertos en caso de bloqueo. Es posible indicar el intervalo de tiempo de guardado." +msgstr "Especifica que %PRODUCTNAME guardará la información necesaria para restaurar todos los documentos abiertos si se llegare a producir un cierre inesperado. Es posible indicar el intervalo de tiempo de guardado." #. rSxfE #: 01010200.xhp @@ -1715,7 +1715,7 @@ "bm_id7986388\n" "help.text" msgid "writing aids optionscustom dictionaries; editinguser-defined dictionaries; editingdictionaries; editing user-definedexceptions; user-defined dictionariesuser-defined dictionaries; dictionary of exceptionsspellcheck; dictionary of exceptionsignore list for spellcheckspellcheck; ignore listspelling; dictionary of exceptionsignore list for spellingspelling; ignore listhyphenation; minimal number of characters" -msgstr "opciones de ayuda a la escrituradiccionarios personalizados; editardiccionarios definidos por el usuario; editardiccionarios; editar definidos por el usuarioexcepciones; diccionarios definidos por el usuariodiccionarios definidos por el usuario; diccionario de excepcionesrevisión ortográfica; diccionario de excepcioneslista de términos ignorados al revisar ortografíarevisión ortográfica; lista de ignoradosortografía; diccionario de excepcioneslista de términos ignorados en ortografíaortografía; lista de términos ignoradosdivisión de palabras; número mínimo de caracteres" +msgstr "opciones de ayuda a la escrituradiccionarios personalizados; editardiccionarios definidos por el usuario; editardiccionarios; editar definidos por el usuarioexcepciones; diccionarios definidos por el usuariodiccionarios definidos por el usuario; diccionario de excepcionesrevisión ortográfica; diccionario de excepcioneslista de términos ignorados al revisar ortografíarevisión ortográfica; lista de ignoradosortografía; diccionario de excepcioneslista de términos ignorados en ortografíaortografía; lista de términos ignoradoscorte de palabras; número mínimo de caracteres" #. BfSt6 #: 01010400.xhp @@ -1733,7 +1733,7 @@ "par_id3153527\n" "help.text" msgid "Specifies the properties of the spelling, thesaurus and hyphenation." -msgstr "Permite especificar las propiedades de la ortografía, los sinónimos y la división de palabras." +msgstr "Permite especificar las propiedades de la ortografía, los sinónimos y el corte de palabras." #. u8YqG #: 01010400.xhp @@ -2084,7 +2084,7 @@ "par_id3145259\n" "help.text" msgid "Defines the options for the spellcheck and hyphenation." -msgstr "Define las opciones de revisión ortográfica y división de palabras." +msgstr "Define las opciones de revisión ortográfica y corte de palabras." #. s6eeZ #: 01010400.xhp @@ -2201,7 +2201,7 @@ "hd_id3150111\n" "help.text" msgid "Minimal number of characters for hyphenation" -msgstr "Cantidad mínima de caracteres para la división de palabras" +msgstr "Cantidad mínima de caracteres para dividir palabras" #. XBxeP #: 01010400.xhp @@ -2210,7 +2210,7 @@ "par_id3150316\n" "help.text" msgid "Specifies the minimum number of characters required for automatic hyphenation to be applied." -msgstr "Determina el número mínimo de caracteres necesarios para que se aplique la división de palabras automática." +msgstr "Determina el número mínimo de caracteres necesarios para que se aplique el corte de palabras automático." #. 256wd #: 01010400.xhp @@ -2282,7 +2282,7 @@ "par_id3155098\n" "help.text" msgid "Specifies that hyphenation will also be carried out in footnotes, headers and footers." -msgstr "Especifica que la división de palabras también se efectuará en las notas al pie, las cabeceras y los pies de página." +msgstr "Especifica que el corte de palabras también se efectuará en las notas al pie, las cabeceras y los pies de página." #. xh8LV #: 01010401.xhp @@ -2327,7 +2327,7 @@ "par_id3148473\n" "help.text" msgid "Specifies the language and the available spelling, hyphenation and Thesaurus sub-modules for the selected module. You can arrange the sub-modules by priority." -msgstr "Especifica el idioma y la ortografía disponible, la división de palabras y los submódulos del diccionario de sinónimos para el módulo seleccionado. Puede ordenar los submódulos por prioridad." +msgstr "Especifica el idioma y los submódulos de ortografía, corte de palabras y sinónimos del módulo seleccionado. Puede organizar los submódulos por prioridad." #. hxdgC #: 01010401.xhp @@ -2345,7 +2345,7 @@ "par_id3144510\n" "help.text" msgid "Mark all modules that are to be activated for this language under the headings Spelling, Hyphenation and Thesaurus." -msgstr "Marque todos los módulos que se deben activar para este idioma en Ortografía, División de palabras y Sinónimos." +msgstr "Marque todos los módulos que se deben activar para este idioma en Ortografía, Corte de palabras y Sinónimos." #. RmC8D #: 01010401.xhp @@ -2363,7 +2363,7 @@ "par_id3148663\n" "help.text" msgid "Only one sub-module can be activated under Hyphenation." -msgstr "Solo se puede activar un submódulo en División de palabras." +msgstr "Solo se puede activar un submódulo en Corte de palabras." #. svUFH #: 01010401.xhp @@ -3065,7 +3065,7 @@ "par_id481581548792359\n" "help.text" msgid "Call Windows file associations management. This button behaves according to Microsoft file association management policy, which is to open \"Default apps\" on Windows 7, 8, and 8.1; and to show a message telling user how to open that applet manually in Windows 10." -msgstr "" +msgstr "Invoca el gestor de asociaciones de archivos de Windows. Este botón se comporta en virtud de la directiva de gestión de asociaciones de archivos de Microsoft, que es abrir «Aplicaciones predeterminadas» en Windows 7, 8 y 8.1, y mostrar un mensaje que explique cómo abrir este gestor en Windows 10." #. 9MQ7V #: 01010700.xhp @@ -6215,7 +6215,7 @@ "par_id3150010\n" "help.text" msgid "Specifies the font used for the captions of images and tables." -msgstr "Especifica el tipo de letra que se usará en los pies de las imágenes y las tablas." +msgstr "Especifica el tipo de letra que se usará en las leyendas de las imágenes y las tablas." #. VCMPs #: 01040300.xhp @@ -7133,7 +7133,7 @@ "par_id3147230\n" "help.text" msgid "Specifies whether soft hyphens (called also as optional or discretionary hyphens) are displayed. These are hidden user-defined delimiters that you enter within a word by pressing Command+Hyphen(-)Ctrl+Hyphen(-). Words with soft hyphens are only separated at the end of a line at the point where a soft hyphen has been inserted, irrespective of whether the automatic hyphenation is activated or deactivated." -msgstr "Especifica si se mostrarán los guiones discrecionales (también llamados opcionales o de división; en inglés «soft hyphen»). Estos delimitadores definidos por el usuario pueden insertarse al presionar ⌘-Ctrl + guion. Las palabras con guiones discrecionales se separarán a final de renglón solo en el punto de inserción del guion, independientemente de que la división de palabras automática esté activada o no." +msgstr "Especifica si se mostrarán los guiones discrecionales (también llamados opcionales o de división; en inglés «soft hyphen»). Estos delimitadores definidos por el usuario pueden insertarse al presionar ⌘-Ctrl + guion. Las palabras con guiones discrecionales se separarán a final de renglón solo en el punto de inserción del guion, independientemente de que el corte de palabras automático esté activado o no." #. 7DBG4 #: 01040600.xhp @@ -8186,7 +8186,7 @@ "hd_id3166976\n" "help.text" msgid "Word count" -msgstr "Conteo de palabras" +msgstr "Recuento de palabras" #. vfrbi #: 01040900.xhp @@ -14099,7 +14099,7 @@ "par_id3149763\n" "help.text" msgid "Specifies the languages for spelling, thesaurus and hyphenation." -msgstr "Permite especificar las lenguas de revisión ortográfica, de sinonimia y de división de palabras." +msgstr "Permite especificar las lenguas de revisión ortográfica, de sinonimia y de corte de palabras." #. CebA4 #: 01140000.xhp @@ -15314,7 +15314,7 @@ "par_id2507201509570353\n" "help.text" msgid "Correct cases of Basic variables and keywords while typing. %PRODUCTNAME Basic IDE will modify the typing of Basic statements and Basic variables of your code to improve coding style and readability. Modifications of the code are based on the program's variables declarations and on the %PRODUCTNAME Basic commands parsed." -msgstr "Corrige instancias de variables y palabras clave de Basic mientras se escribe. El EID de Basic de %PRODUCTNAME modificará la escritura de instrucciones y variables de Basic en su código para mejorar el estilo y la legibilidad. Las modificaciones al código se basan en las declaraciones de variables del programa y en las órdenes de %PRODUCTNAME Basic que se analicen." +msgstr "Corrige la mayusculación de variables y palabras clave de BASIC mientras se escribe. El EID de BASIC de %PRODUCTNAME modificará la escritura de instrucciones y variables de BASIC en su código para mejorar el estilo y la comprensibilidad. Las modificaciones al código se basan en las declaraciones de variables del programa y en las órdenes de %PRODUCTNAME BASIC que se analicen." #. 4C7QZ #: BasicIDE.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/simpress/00.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/simpress/00.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/simpress/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/simpress/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-09-09 14:35+0000\n" +"PO-Revision-Date: 2023-04-16 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560857928.000000\n" #. sqmGT @@ -842,7 +842,7 @@ "par_id3153727\n" "help.text" msgid "Choose Tools - Language - Hyphenation" -msgstr "Vaya a Herramientas ▸ Idioma ▸ División de palabras" +msgstr "Vaya a Herramientas ▸ Idioma ▸ Corte de palabras" #. DpRab #: 00000406.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/simpress/01.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/simpress/01.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/simpress/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/simpress/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-17 22:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1544632647.000000\n" #. mu9aV @@ -4847,7 +4847,7 @@ "tit\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. aAUhF #: 06030000.xhp @@ -4865,7 +4865,7 @@ "par_id3153728\n" "help.text" msgid "Turns hyphenation option for text objects on or off. You can turn hyphenation on or off for each paragraph." -msgstr "Activa o desactiva la opción de división de palabras en los objetos de texto. Puede activar o desactivar la división de palabras en cada párrafo." +msgstr "Activa o desactiva la opción de corte de palabras en los objetos de texto. Puede activar o desactivar el corte de palabras en cada párrafo." #. uKZt8 #: 06040000.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/simpress/04.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/simpress/04.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/simpress/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/simpress/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-04-17 22:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1513969565.000000\n" #. mYCYv @@ -851,7 +851,7 @@ "par_ii3150712\n" "help.text" msgid "Soft hyphens; hyphenation set by you." -msgstr "Guiones discrecionales; división de palabras definida por el usuario." +msgstr "Guiones discrecionales; corte de palabras definido por usted." #. uuUzt #: 01020000.xhp @@ -869,7 +869,7 @@ "par_ii3148394\n" "help.text" msgid "Non-breaking hyphen (is not used for hyphenation)" -msgstr "Guion indivisible (no se utiliza para división de palabras)" +msgstr "Guion indivisible (no se utiliza para corte de palabras)" #. 5kU8S #: 01020000.xhp @@ -887,7 +887,7 @@ "par_ii3150260\n" "help.text" msgid "Non-breaking spaces. Non-breaking spaces are not used for hyphenation and are not expanded if the text is justified." -msgstr "Espacios indivisibles. Esos espacios no se utilizan en la división de palabras y no se expanden si se justifica el texto." +msgstr "Espacios indivisibles. Esos espacios no se utilizan para el corte de palabras y no se expanden si se justifica el texto." #. RJCFu #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/smath/01.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/smath/01.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/smath/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/smath/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-04-11 15:28+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-25 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -5405,7 +5405,7 @@ "par_id3149035\n" "help.text" msgid "Intersection" -msgstr "Promedio" +msgstr "Intersección" #. jaBUA #: 03090800.xhp @@ -9023,7 +9023,7 @@ "par_id3165282\n" "help.text" msgid "Icon n-th root of x" -msgstr "" +msgstr "Icono Enésima raíz de x" #. QCzga #: 03091504.xhp @@ -9032,7 +9032,7 @@ "par_id3165402\n" "help.text" msgid "n-th root of x" -msgstr "raíz n de x" +msgstr "Enésima raíz de x" #. CGCrv #: 03091504.xhp @@ -9041,7 +9041,7 @@ "par_id3151502\n" "help.text" msgid "Icon Sine" -msgstr "" +msgstr "Icono Seno" #. nAEE2 #: 03091504.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/smath/04.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/smath/04.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/smath/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/smath/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-05-25 10:44+0000\n" +"PO-Revision-Date: 2023-04-09 03:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507941002.000000\n" #. fW4At @@ -194,7 +194,7 @@ "par_id3145249\n" "help.text" msgid "Move left or right to the next category or function." -msgstr "Mover a la derecha o izquierda a la siguiente categoría ó función." +msgstr "Mover a la derecha o izquierda a la siguiente categoría o función." #. r7rNS #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/smath/guide.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/smath/guide.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/smath/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/smath/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-10-24 11:22+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1500579424.000000\n" #. P9FEQ @@ -167,7 +167,7 @@ "bm_id3152596\n" "help.text" msgid "brackets; merging formula partsformula parts; mergingfractions in formulasmerging;formula parts" -msgstr "paréntesis;combinar partes de fórmulapartes de fórmula;combinarfracciones en fórmulascombinar;partes de fórmula" +msgstr "paréntesis;combinar partes de fórmulaspartes de fórmula;combinarfracciones en fórmulascombinar;partes de fórmulas" #. J7BeM #: brackets.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter/00.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter/00.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-16 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563615688.000000\n" #. E9tti @@ -2696,7 +2696,7 @@ "par_id3150710\n" "help.text" msgid "Choose Tools - Language - Hyphenation" -msgstr "Vaya a Herramientas ▸ Idioma ▸ División de palabras" +msgstr "Vaya a Herramientas ▸ Idioma ▸ Corte de palabras" #. DE6CF #: 00000406.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter/01.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter/01.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-18 19:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -3614,7 +3614,7 @@ "hd_id3156111\n" "help.text" msgid "Endnote" -msgstr "Nota al final" +msgstr "Nota final" #. NRJAC #: 02150000.xhp @@ -5540,7 +5540,7 @@ "hd_id3153644\n" "help.text" msgid "Endnote" -msgstr "Nota al final" +msgstr "Nota final" #. KBmnh #: 04030000.xhp @@ -5558,7 +5558,7 @@ "tit\n" "help.text" msgid "Insert Bookmark" -msgstr "Insertar marca de texto" +msgstr "Insertar marcador" #. FuA3L #: 04040000.xhp @@ -7196,7 +7196,7 @@ "par_id3155537\n" "help.text" msgid "To quickly insert a field from the Select list, double-click the field." -msgstr "" +msgstr "Para insertar rápidamente un campo de la lista Seleccionar, haga una pulsación doble sobre el campo." #. zVKLG #: 04090001.xhp @@ -7214,7 +7214,7 @@ "par_id3145613\n" "help.text" msgid "If a field is displaying a date, time or number, then Format is used to customize the appearance of the date, time, or number. Common formats are shown in the Format window, or click \"Additional formats\" to define a custom format." -msgstr "" +msgstr "Si un campo muestra una fecha, una hora o un número, se puede utilizar Formato para personalizar la apariencia del dato. Los formatos más habituales se muestran en la ventana Formato, y puede pulsar en «Formatos adicionales» para definir uno personalizado." #. ErwZ7 #: 04090001.xhp @@ -9086,7 +9086,7 @@ "par_id3149034\n" "help.text" msgid "Number range" -msgstr "Secuencia" +msgstr "Intervalo numérico" #. 7amgE #: 04090005.xhp @@ -9131,7 +9131,7 @@ "par_id3150588\n" "help.text" msgid "Displays the number of pages from the \"Set page variable\" reference point to this field." -msgstr "Muestra el número de páginas desde el punto de referencia \"Determinar variable de página\" hasta este campo." +msgstr "Muestra el número de páginas desde el punto de referencia «Establecer variable de página» hasta este campo." #. 6SKyt #: 04090005.xhp @@ -9203,7 +9203,7 @@ "par_id381583794664065\n" "help.text" msgid " This option is available for \"Set variable\", \"DDE field\", \"Number range\" and \"User Field\" field types." -msgstr "" +msgstr " Esta opción está disponible para los tipos de campo «Establecer variable», «Campo DDE», «Intervalo numérico» y «Campo de usuario»." #. KsGDR #: 04090005.xhp @@ -11525,7 +11525,7 @@ "par_id3149484\n" "help.text" msgid "Enter the phonetic reading for the corresponding entry. For example, if a Japanese Kanji word has more than one pronunciation, enter the correct pronunciation as a Katakana word. The Kanji word is then sorted according to the phonetic reading entry. This option is only available if Asian language support is enabled." -msgstr "Escriba la lectura fonética en la entrada correspondiente. Por ejemplo, si una palabra en japonés kanji tiene más de una pronunciación, escriba la correcta como palabra katakana. Como consecuencia, la palabra kanji se ordena según la entrada de la lectura fonética. Esta opción solo está disponible si está activada la compatibilidad con idiomas asiáticos." +msgstr "Introduzca la lectura fonética de la entrada correspondiente. Por ejemplo, si una palabra kanji japonesa tiene más de una pronunciación, escriba la correcta como palabra katakana. Como consecuencia, la palabra kanji se ordena según la entrada de la lectura fonética. Esta opción solo está disponible si está activada la compatibilidad con idiomas asiáticos." #. 79kAq #: 04120100.xhp @@ -15729,7 +15729,7 @@ "hd_id3149882\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. 6C5wi #: 05030200.xhp @@ -15846,7 +15846,7 @@ "par_id3153536\n" "help.text" msgid "Enter the maximum number of consecutive lines that can be hyphenated." -msgstr "Escriba el número máximo de renglones consecutivos en los que se puede efectuar división de palabras." +msgstr "Escriba el número máximo de renglones consecutivos en los que se puede efectuar corte de palabras." #. iLGFh #: 05030200.xhp @@ -15873,7 +15873,7 @@ "hd_id3149818\n" "help.text" msgid "Hyphenation zone" -msgstr "Zona de división de palabras" +msgstr "Zona de corte de palabras" #. iKBAb #: 05030200.xhp @@ -15882,7 +15882,7 @@ "par_id3153549\n" "help.text" msgid "To reduce hyphenation, enter the length of the hyphenation zone. Instead of the possible hyphenation, the line will break between words, if the remaining horizontal space does not exceed the hyphenation zone. Hyphenation zone results in enlarged spaces between words in justified text, and greater distance from paragraph margins in non-justified text." -msgstr "" +msgstr "Para reducir el corte de palabras, introduzca el tamaño de la zona de corte. En lugar de aplicar el corte posible, el renglón se quebrará entre las palabras, si el espacio horizontal restante no sobrepasa la zona de corte. La zona de corte produce mayores espacios entre palabras en textos justificados o mayores distancias desde los márgenes del párrafo en textos no justificados." #. RQLep #: 05030200.xhp @@ -24999,7 +24999,7 @@ "tit\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. 9uZNy #: 06030000.xhp @@ -25008,7 +25008,7 @@ "hd_id3154657\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. nUqc5 #: 06030000.xhp @@ -25017,7 +25017,7 @@ "par_id3148572\n" "help.text" msgid "Inserts hyphens in words that are too long to fit at the end of a line. $[officename] searches the document and suggests hyphenation that you can accept or reject. If text is selected, the Hyphenation dialog works on the selected text only. If no text is selected, the Hyphenation dialog works on the whole document." -msgstr "Inserta guiones en las palabras demasiado largas para caber al final de un renglón. $[officename] busca en el documento y propone divisiones que puede aceptar o rechazar. Si se selecciona algún texto, el cuadro de diálogo de división de palabras se aplica solo al texto seleccionado. Si no hay texto seleccionado, se aplica a todo el documento." +msgstr "Inserta guiones en las palabras demasiado largas para caber al final de un renglón. $[officename] busca en el documento y propone cortes que puede aceptar o rechazar. Si se selecciona algún texto, el cuadro de diálogo Corte de palabras se aplica solo al texto seleccionado. Si no hay texto seleccionado, se aplica a todo el documento." #. AWz4F #: 06030000.xhp @@ -25035,7 +25035,7 @@ "par_id3151389\n" "help.text" msgid "When $[officename] finds a word that requires hyphenation, do one of the following options:" -msgstr "Cuando $[officename] encuentre una palabra que necesita división, elija una de estas opciones:" +msgstr "Cuando $[officename] encuentre una palabra que necesita corte, elija una de estas opciones:" #. BAtw4 #: 06030000.xhp @@ -25044,7 +25044,7 @@ "par_id3155622\n" "help.text" msgid "To accept the hyphenation of the displayed word, click Hyphenate." -msgstr "Para aceptar la división de la palabra mostrada, pulse en Dividir." +msgstr "Para aceptar el corte de la palabra mostrada, pulse en Dividir." #. d9ENA #: 06030000.xhp @@ -25053,7 +25053,7 @@ "par_id3154558\n" "help.text" msgid "To change the hyphenation of the displayed word, click the left or right arrow below the word, and then click Hyphenate. The left and right buttons are enabled for words with multiple hyphenation points." -msgstr "Para cambiar la división de la palabra mostrada, utilice las flechas izquierda o derecha debajo de la palabra y pulse en Dividir. Los botones de flecha izquierda y derecha se activan en caso de palabras con varios sitios de división." +msgstr "Para cambiar el corte de la palabra mostrada, utilice las flechas izquierda o derecha debajo de la palabra y pulse en Dividir. Los botones de flecha izquierda y derecha se activan en caso de palabras con varios sitios de corte." #. TBH2B #: 06030000.xhp @@ -25062,7 +25062,7 @@ "par_id3150017\n" "help.text" msgid "To reject the hyphenation of the displayed word, click Skip. This word will not be hyphenated." -msgstr "Para rechazar la división de la palabra mostrada, pulse en Omitir. Esta palabra no se dividirá." +msgstr "Para rechazar el corte de la palabra mostrada, pulse en Omitir. Esta palabra no se partirá." #. wexph #: 06030000.xhp @@ -25071,7 +25071,7 @@ "par_id3150018\n" "help.text" msgid "To automatically hyphenate the remaining part of the selection or the document, click Hyphenate All and answer \"Yes\" to the following question." -msgstr "Para dividir automáticamente las palabras del resto de la selección o del documento, pulse en Dividir todo y responda «Sí» a la solicitud que aparecerá." +msgstr "Para partir automáticamente las palabras del resto de la selección o del documento, pulse en Dividir todo y responda «Sí» a la solicitud que aparecerá." #. S7Qtb #: 06030000.xhp @@ -25080,7 +25080,7 @@ "par_id3150019\n" "help.text" msgid "To end hyphenation, click Close. The hyphenation that is applied already will not be reverted. You can use Edit - Undo to undo all hyphenation that was applied while the Hyphenation dialog was open." -msgstr "Para finalizar la división de palabras pulse en Cerrar. La división de palabras que se aplicó hasta ahora no será revertida. Puede usar la función Editar ▸ Deshacer para quitar los cambios realizados mediante el cuadro de diálogo División de palabras." +msgstr "Para finalizar el corte de palabras pulse en Cerrar. El corte de palabras que se aplicó hasta ahora no se revertirá. Puede usar la función Editar ▸ Deshacer para quitar los cambios realizados mediante el cuadro de diálogo Corte de palabras." #. qc5UE #: 06030000.xhp @@ -25089,7 +25089,7 @@ "par_id3147562\n" "help.text" msgid "To exclude paragraphs from the automatic hyphenation, select the paragraphs, choose Format - Paragraph, click the Text Flow tab, and then clear the Automatically check box in the Hyphenation area." -msgstr "Para excluir párrafos de la división de palabras automática, seleccione los párrafos, vaya a Formato ▸ Párrafo, pulse en la pestaña Flujo del texto y desmarque la casilla Automáticamente en el área División de palabras." +msgstr "Para excluir párrafos del corte de palabras automático, seleccione los párrafos, vaya a Formato ▸ Párrafo, pulse en la pestaña Flujo del texto y desmarque la casilla Automáticamente en el apartado Corte de palabras." #. k84at #: 06030000.xhp @@ -27330,7 +27330,7 @@ "par_id3151272\n" "help.text" msgid "Enter the counting interval for the line numbers." -msgstr "Proporcione el intervalo de conteo de los números de renglones." +msgstr "Proporcione el intervalo de recuento de los números de renglones." #. R6DLD #: 06180000.xhp @@ -27429,7 +27429,7 @@ "par_id3150973\n" "help.text" msgid "Includes empty paragraphs in the line count." -msgstr "Incluye párrafos vacíos en el conteo de los renglones." +msgstr "Incluye párrafos vacíos en el recuento de los renglones." #. yz57v #: 06180000.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter/02.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter/02.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-10 20:16+0200\n" -"PO-Revision-Date: 2023-02-15 15:33+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2120,7 +2120,7 @@ "par_id3148408\n" "help.text" msgid "Boolean Or" -msgstr "O lógico" +msgstr "O booleano" #. UfFLs #: 14020000.xhp @@ -2147,7 +2147,7 @@ "par_id3149434\n" "help.text" msgid "Boolean X Or" -msgstr "O lógico exclusivo" +msgstr "O booleano exclusivo" #. vEKy7 #: 14020000.xhp @@ -2174,7 +2174,7 @@ "par_id3152925\n" "help.text" msgid "Boolean And" -msgstr "Y lógico" +msgstr "Y booleano" #. CPiHF #: 14020000.xhp @@ -2201,7 +2201,7 @@ "par_id3153938\n" "help.text" msgid "Boolean Not" -msgstr "No lógico" +msgstr "No booleano" #. i4SeE #: 14020000.xhp @@ -2273,7 +2273,7 @@ "par_id3153176\n" "help.text" msgid "Mean" -msgstr "Promedio" +msgstr "Media" #. Gu59Y #: 14020000.xhp @@ -3560,7 +3560,7 @@ "bm_id3147167\n" "help.text" msgid "graphics;do not show images;do not show pictures;do not show" -msgstr "imágenes;no mostrarimágenes;no mostrarimágenes;no mostrar" +msgstr "gráficos;no mostrarimágenes;no mostrarfotos;no mostrar" #. gHWtd #: 18120000.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter/04.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter/04.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter/04.po 2023-05-03 15:22:13.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-04 18:05+0200\n" -"PO-Revision-Date: 2022-10-24 11:21+0000\n" -"Last-Translator: Daniela Rosales Espino \n" +"PO-Revision-Date: 2023-04-17 22:33+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1529889107.000000\n" #. brcGC @@ -941,7 +941,7 @@ "par_id3150712\n" "help.text" msgid "Soft hyphens; hyphenation set by you." -msgstr "Guiones discrecionales; división de palabras definida por el usuario." +msgstr "Guiones discrecionales; corte de palabras definido por usted." #. EFKvp #: 01020000.xhp @@ -959,7 +959,7 @@ "par_id3148394\n" "help.text" msgid "Non-breaking hyphen (is not used for hyphenation)" -msgstr "Guion indivisible (no se utiliza para división de palabras)" +msgstr "Guion indivisible (no se utiliza para corte de palabras)" #. GbHDz #: 01020000.xhp @@ -995,7 +995,7 @@ "par_id3150260\n" "help.text" msgid "Non-breaking spaces. Non-breaking spaces are not used for hyphenation and are not expanded if the text is justified." -msgstr "Espacios indivisibles. Esos espacios no se utilizan en la división de palabras y no se expanden si se justifica el texto." +msgstr "Espacios indivisibles. Esos espacios no se utilizan para el corte de palabras y no se expanden si se justifica el texto." #. xsddz #: 01020000.xhp @@ -1949,7 +1949,7 @@ "par_id491655382453027\n" "help.text" msgid "CommandCtrl+Shift+Tab" -msgstr "OrdenCtrl+Mayús + Tab" +msgstr "⌘⇧↹Ctrl + Mayús + Tab" #. pARCd #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter/guide.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1566235756.000000\n" #. XAt2Y @@ -68,7 +68,7 @@ "par_id3147251\n" "help.text" msgid "An anchor moves with the element it is attached to as the document is edited. An object retains its position relative to the reference point determined by its anchor, such that, whenever the reference point moves or changes, the object moves relative to it." -msgstr "" +msgstr "Un ancla se mueve con el elemento al que está adjunto a medida que se edita el documento. Un objeto conserva su posición en relación con el punto de referencia determinado por su ancla, de modo que, cada vez que el punto de referencia se mueve o cambia, el objeto se mueve en relación con él." #. ELWph #: anchor_object.xhp @@ -221,7 +221,7 @@ "hd_id341653868751593\n" "help.text" msgid "Moving an Anchor" -msgstr "" +msgstr "Mover un ancla" #. 6DYVe #: anchor_object.xhp @@ -230,7 +230,7 @@ "par_id3145715\n" "help.text" msgid "When you insert a shape, textbox, OLE object, image, or frame in your document, an anchor icon appears where the object is anchored. You can move an anchor or, keeping other object constraints in mind, position an object relative to the anchor's reference point by dragging the object." -msgstr "" +msgstr "Cuando inserta una forma, un cuadro de texto, un objeto OLE, una imagen o un marco en su documento, aparece un icono de ancla donde está anclado el objeto. Puede mover un ancla o, teniendo en cuenta otras restricciones de objetos, colocar un objeto en relación con el punto de referencia del ancla arrastrando el objeto." #. eH7Gv #: anchor_object.xhp @@ -239,7 +239,7 @@ "hd_id841653869348328\n" "help.text" msgid "Changing an Anchor" -msgstr "" +msgstr "Cambiar un ancla" #. iWVDA #: anchor_object.xhp @@ -1157,7 +1157,7 @@ "par_id3151370\n" "help.text" msgid "For example, you can store \"read-only\" AutoText entries for your company on a central server, and user-defined AutoText entries in a local directory." -msgstr "Por ejemplo, puede almacenar entradas de texto automático de solo lectura para la empresa en un servidor central y las entradas del usuario en un directorio local." +msgstr "Por ejemplo, puede almacenar entradas de texto automático «de solo lectura» para la empresa en un servidor central y las entradas del usuario en un directorio local." #. w7E3N #: autotext.xhp @@ -5306,7 +5306,7 @@ "par_id3406170\n" "help.text" msgid "Finding formats only finds direct character attributes, it does not find attributes applied as part of a style." -msgstr "La opción de búsqueda de formatos sólo busca atributos directos de los caracteres, pero no atributos aplicados como parte de un estilo." +msgstr "La búsqueda de formatos encuentra únicamente atributos de carácter directos, pero no atributos aplicados como parte de un estilo." #. 5nDAM #: finding.xhp @@ -5621,7 +5621,7 @@ "hd_id2988677\n" "help.text" msgid "To Additionally Add a Page Count" -msgstr "Para agregar además un conteo de las páginas" +msgstr "Para agregar además un recuento de las páginas" #. GBNZo #: footer_pagenumber.xhp @@ -7709,7 +7709,7 @@ "tit\n" "help.text" msgid "Preventing Hyphenation of Specific Words" -msgstr "Evitar la división de palabras concretas" +msgstr "Evitar el corte de palabras concretas" #. jKDe6 #: hyphen_prevent.xhp @@ -7727,7 +7727,7 @@ "hd_id3149695\n" "help.text" msgid "Preventing Hyphenation of Specific Words" -msgstr "Evitar la división de palabras concretas" +msgstr "Evitar el corte de palabras concretas" #. BrdxF #: hyphen_prevent.xhp @@ -7772,7 +7772,7 @@ "par_id3150218\n" "help.text" msgid "In the Word box, type the word you want to exclude from hyphenation, followed by an equal sign (=), for example, \"pretentious=\"." -msgstr "En el cuadro Palabra, escriba la palabra que quiera excluir de la división, seguida de un signo de igual (=), por ejemplo, «pomposo=»." +msgstr "En el cuadro Palabra, escriba la palabra que quiera excluir de la división, seguida de un signo de igualdad (=), por ejemplo, «Chicago=»." #. GACxk #: hyphen_prevent.xhp @@ -7808,7 +7808,7 @@ "par_id0302200910262837\n" "help.text" msgid "Position the cursor at the place where no hyphenation should occur." -msgstr "Coloque el cursor en el lugar donde no se debe producir la división de palabras." +msgstr "Coloque el cursor en el lugar donde no se deben producir cortes de palabras." #. eFYEG #: hyphen_prevent.xhp @@ -10157,7 +10157,7 @@ "hd_id3154324\n" "help.text" msgid "Spelling, Dictionaries, Hyphenation" -msgstr "Ortografía, diccionarios, división de palabras" +msgstr "Ortografía, diccionarios, corte de palabras" #. rxjfD #: main.xhp @@ -10436,7 +10436,7 @@ "tit\n" "help.text" msgid "Defining Number Ranges" -msgstr "Definir secuencias numéricas" +msgstr "Definir intervalos numéricos" #. 5R8SU #: number_sequence.xhp @@ -14441,7 +14441,7 @@ "par_id3149843\n" "help.text" msgid "In the Find box, type the search term and the regular expression(s) that you want to use in your search." -msgstr "" +msgstr "En el cuadro Buscar, escriba el término de búsqueda y la o las expresiones regulares que desee utilizar en su búsqueda." #. FqLDU #: search_regexp.xhp @@ -17780,7 +17780,7 @@ "par_id5853144\n" "help.text" msgid "The AutoSize feature is available only for the last frame in a chain of linked frames." -msgstr "La función de tamaño automático solo está disponible para el último cuadro de una serie de marcos enlazados entre sí." +msgstr "La funcionalidad de tamaño automático solo está disponible para el último cuadro de una serie de marcos enlazados entre sí." #. RdbNb #: text_nav_keyb.xhp @@ -18365,7 +18365,7 @@ "tit\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. UnByp #: using_hyphen.xhp @@ -18374,7 +18374,7 @@ "bm_id3149695\n" "help.text" msgid "hyphenation;manual/automatic separation, see hyphenation automatic hyphenation in text manual hyphenation in text" -msgstr "división de palabras;manual/automática división, véase división de palabras división de palabras automática en texto división de palabras manual en texto" +msgstr "corte de palabras;manual/automáticocorte, véase corte de palabrascorte de palabras automático en textocorte de palabras manual en texto" #. fZxFB #: using_hyphen.xhp @@ -18392,7 +18392,7 @@ "par_id3155918\n" "help.text" msgid "By default, $[officename] moves words that do not fit on a line to the next line. If you want, you can use automatic or manual hyphenation to avoid this behavior:" -msgstr "De manera predeterminada, $[officename] traslada palabras que no encajan en un renglón al siguiente. Si lo desea, puede emplear la división de palabras automática o manual para evitar este comportamiento:" +msgstr "De manera predeterminada, $[officename] traslada palabras que no encajan en un renglón al siguiente. Si lo desea, puede emplear el corte de palabras automático o manual para evitar este comportamiento:" #. 2xYjC #: using_hyphen.xhp @@ -18401,7 +18401,7 @@ "hd_id3155864\n" "help.text" msgid "Automatic Hyphenation" -msgstr "División de palabras automática" +msgstr "Corte de palabras automático" #. Mr7ZE #: using_hyphen.xhp @@ -18410,7 +18410,7 @@ "par_id3147414\n" "help.text" msgid "Automatic hyphenation inserts hyphens where they are needed in a paragraph. This option is only available for paragraph styles and individual paragraphs." -msgstr "La división de palabras automática inserta guiones donde se necesiten dentro del párrafo. Esta opción solo está disponible en los estilos de párrafos y en párrafos concretos." +msgstr "El corte de palabras automático inserta guiones donde se necesiten dentro del párrafo. Esta opción solo está disponible en los estilos de párrafos y en párrafos concretos." #. ryaCG #: using_hyphen.xhp @@ -18419,7 +18419,7 @@ "hd_id3149832\n" "help.text" msgid "To Automatically Hyphenate Text in a Paragraph" -msgstr "Para dividir las palabras del texto de forma automática en varios párrafos" +msgstr "Para dividir las palabras del texto de forma automática en un párrafo" #. rRFRE #: using_hyphen.xhp @@ -18446,7 +18446,7 @@ "par_id3150101\n" "help.text" msgid "In the Hyphenation area, select the Automatically check box." -msgstr "En el área División de palabras, seleccione la casilla de verificación «Automáticamente»." +msgstr "En el apartado Corte de palabras, seleccione la casilla de verificación «Automáticamente»." #. XEi9z #: using_hyphen.xhp @@ -18473,7 +18473,7 @@ "par_id3149644\n" "help.text" msgid "If you want to automatically hyphenate more than one paragraph, use a paragraph style." -msgstr "Si desea establecer la división de palabras automática en más de un párrafo, utilice un estilo." +msgstr "Si desea establecer el corte de palabras automático en más de un párrafo, utilice un estilo." #. Yb7d8 #: using_hyphen.xhp @@ -18482,7 +18482,7 @@ "par_id3149956\n" "help.text" msgid "For example, enable the automatic hyphenation option for the \"Default\" paragraph style, and then apply the style to the paragraphs that you want to hyphenate." -msgstr "Por ejemplo, active la división de palabras en el estilo de párrafo «Predeterminado» y aplique este a los párrafos que desee dividir." +msgstr "Por ejemplo, active el corte de palabras automático en el estilo de párrafo «Predeterminado» y aplique este a los párrafos cuyos renglones desee partir al margen." #. 3E8FK #: using_hyphen.xhp @@ -18500,7 +18500,7 @@ "par_id3149867\n" "help.text" msgid "Right-click the paragraph style that you want to hyphenate, and then choose Modify." -msgstr "Pulse con el botón secundario del ratón sobre el estilo de párrafo en el que quiera establecer la división de palabras y seleccione Modificar." +msgstr "Pulse con el botón secundario del ratón sobre el estilo de párrafo en el que quiera establecer el corte de palabras y seleccione Modificar." #. Azcdj #: using_hyphen.xhp @@ -18518,7 +18518,7 @@ "par_id3149582\n" "help.text" msgid "In the Hyphenation area, select the Automatically check box." -msgstr "En el área División de palabras active la casilla Automáticamente." +msgstr "En el área Corte de palabras active la casilla Automáticamente." #. DNQm3 #: using_hyphen.xhp @@ -18545,7 +18545,7 @@ "hd_id3145417\n" "help.text" msgid "Manual Hyphenation" -msgstr "División de palabras manual" +msgstr "Corte de palabras manual" #. kBNEq #: using_hyphen.xhp @@ -18599,7 +18599,7 @@ "par_id3154869\n" "help.text" msgid "Select the text that you want to hyphenate." -msgstr "Seleccione el texto al que quiera aplicar la división de palabras." +msgstr "Seleccione el texto al que quiera aplicar el corte de palabras." #. CHAVx #: using_hyphen.xhp @@ -18608,7 +18608,7 @@ "par_id3155886\n" "help.text" msgid "Choose Tools - Language - Hyphenation." -msgstr "Vaya a Herramientas ▸ Idioma ▸ División de palabras." +msgstr "Vaya a Herramientas ▸ Idioma ▸ Corte de palabras." #. nfKuZ #: using_hyphen.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter/librelogo.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter/librelogo.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter/librelogo.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-04-17 22:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1551390710.000000\n" #. kypzs @@ -2228,7 +2228,7 @@ "hd_2440\n" "help.text" msgid "COUNT" -msgstr "COUNT" +msgstr "RECUENTO/CONTEO" #. oqkjJ #: LibreLogo.xhp diff -Nru libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter.po libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter.po --- libreoffice-7.4.6/translations/source/es/helpcontent2/source/text/swriter.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/helpcontent2/source/text/swriter.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-03-01 12:22+0000\n" +"PO-Revision-Date: 2023-03-12 04:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2489,7 +2489,7 @@ "tit\n" "help.text" msgid "Frame Bar" -msgstr "Barra de marco" +msgstr "Barra Marco" #. uWTF7 #: main0215.xhp diff -Nru libreoffice-7.4.6/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.4.7/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.4.6/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:32+0100\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-03-31 22:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564070793.000000\n" #. tBfTE @@ -1589,7 +1589,7 @@ "OOO_CONTROL_70\n" "LngText.text" msgid "The icon next to the feature name indicates the install state of the feature. Click the icon to drop down the install state menu for each feature." -msgstr "El icono al lado del nombre del componente indica el estado de instalación del componente. Pulse el icono para desplegar el menú de estado de instalación de cada componente." +msgstr "El icono al lado del nombre del componente indica el estado de instalación de este. Pulse el icono para desplegar el menú de estado de instalación de cada componente." #. nABcc #: Control.ulf @@ -4496,7 +4496,7 @@ "OOO_STR_MS_POWERPOINT_SHOW\n" "LngText.text" msgid "Microsoft PowerPoint Show" -msgstr "Presentación de Microsoft PowerPoint" +msgstr "Pase de diapositivas de Microsoft PowerPoint" #. UGGXo #: Property.ulf diff -Nru libreoffice-7.4.6/translations/source/es/librelogo/source/pythonpath.po libreoffice-7.4.7/translations/source/es/librelogo/source/pythonpath.po --- libreoffice-7.4.6/translations/source/es/librelogo/source/pythonpath.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/librelogo/source/pythonpath.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-06-29 13:09+0200\n" -"PO-Revision-Date: 2022-06-06 17:38+0000\n" -"Last-Translator: drodriguez \n" -"Language-Team: Spanish \n" +"PO-Revision-Date: 2023-04-17 21:33+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1548562703.000000\n" #. tFoAo @@ -770,7 +770,7 @@ "COUNT\n" "property.text" msgid "count" -msgstr "conteo" +msgstr "recuento|conteo" #. REzwU #: LibreLogo_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-7.4.7/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-7.4.6/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:19+0200\n" -"PO-Revision-Date: 2022-07-26 09:17+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1511581803.000000\n" #. XpeLj @@ -122,7 +122,7 @@ "par_id0503200917103740\n" "help.text" msgid "Use ACR Comparator" -msgstr "Utilizar el comparador ACR" +msgstr "Utilizar comparador ACR" #. eVij6 #: Options.xhp @@ -149,7 +149,7 @@ "par_id0503200917103792\n" "help.text" msgid "Use Random Starting Point" -msgstr "Usar un punto de inicio aleatorio" +msgstr "Utilizar punto inicial aleatorio" #. pt3XB #: Options.xhp diff -Nru libreoffice-7.4.6/translations/source/es/nlpsolver/src/locale.po libreoffice-7.4.7/translations/source/es/nlpsolver/src/locale.po --- libreoffice-7.4.6/translations/source/es/nlpsolver/src/locale.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/nlpsolver/src/locale.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-09-13 16:36+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1511581807.000000\n" #. sv3GB @@ -86,7 +86,7 @@ "NLPSolverCommon.Properties.UseRandomStartingPoint\n" "property.text" msgid "Use Random starting point" -msgstr "Utilizar punto de inicio aleatorio" +msgstr "Utilizar punto inicial aleatorio" #. r8nEN #: NLPSolverCommon_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -714,7 +714,7 @@ "Label\n" "value.text" msgid "~Mark Invalid Data" -msgstr "~Marcar los datos incorrectos" +msgstr "~Marcar datos no válidos" #. tZSSA #: CalcCommands.xcu @@ -784,7 +784,7 @@ "Label\n" "value.text" msgid "~Hyphenation..." -msgstr "~División de palabras…" +msgstr "Co~rte de palabras…" #. AQgBD #: CalcCommands.xcu @@ -2264,7 +2264,7 @@ "TooltipLabel\n" "value.text" msgid "Show Track Changes" -msgstr "Mostrar cambios" +msgstr "Mostrar control de cambios" #. Cs6vq #: CalcCommands.xcu @@ -8584,7 +8584,7 @@ "Label\n" "value.text" msgid "~Hyphenation" -msgstr "~División de palabras" +msgstr "Co~rte de palabras" #. CQf4G #: DrawImpressCommands.xcu @@ -21006,7 +21006,7 @@ "Label\n" "value.text" msgid "OLE Ob~ject" -msgstr "" +msgstr "Ob~jeto OLE" #. o5DE2 #: GenericCommands.xcu @@ -24466,7 +24466,7 @@ "Label\n" "value.text" msgid "Add Field..." -msgstr "Añadir campo..." +msgstr "Añadir campo…" #. MxzR7 #: GenericCommands.xcu @@ -24486,7 +24486,7 @@ "Label\n" "value.text" msgid "Text -> Record" -msgstr "Texto -> Registro" +msgstr "Texto → registro" #. MQUxx #: GenericCommands.xcu @@ -24546,7 +24546,7 @@ "Label\n" "value.text" msgid "Undo: Data entry" -msgstr "Deshacer: Entrada" +msgstr "Deshacer: entrada de datos" #. bk5GC #: GenericCommands.xcu @@ -34527,7 +34527,7 @@ "Label\n" "value.text" msgid "~Hyphenation..." -msgstr "~División de palabras…" +msgstr "Co~rte de palabras…" #. ngTBv #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/es/officecfg/registry/data/org/openoffice.po libreoffice-7.4.7/translations/source/es/officecfg/registry/data/org/openoffice.po --- libreoffice-7.4.6/translations/source/es/officecfg/registry/data/org/openoffice.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/officecfg/registry/data/org/openoffice.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2018-03-02 14:54+0000\n" +"PO-Revision-Date: 2023-05-03 11:51+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1520002453.000000\n" #. foAxC @@ -54,7 +54,7 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Query Design" -msgstr "Base: diseño de consulta" +msgstr "Base: diseño de consultas" #. X5S6E #: Setup.xcu @@ -64,7 +64,7 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: View Design" -msgstr "Base: diseño de visualización" +msgstr "Base: diseño de vistas" #. Lsw4Y #: Setup.xcu diff -Nru libreoffice-7.4.6/translations/source/es/sc/messages.po libreoffice-7.4.7/translations/source/es/sc/messages.po --- libreoffice-7.4.6/translations/source/es/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -505,7 +505,7 @@ #: sc/inc/globstr.hrc:93 msgctxt "STR_UNDO_DETINVALID" msgid "Mark invalid data" -msgstr "Marcar los datos no válidos" +msgstr "Marcar datos no válidos" #. NBgVC #: sc/inc/globstr.hrc:94 @@ -1122,13 +1122,13 @@ #: sc/inc/globstr.hrc:194 msgctxt "STR_FUN_TEXT_MAX" msgid "Max" -msgstr "Máx" +msgstr "Máximo" #. A8fBH #: sc/inc/globstr.hrc:195 msgctxt "STR_FUN_TEXT_MIN" msgid "Min" -msgstr "Mín" +msgstr "Mínimo" #. oZVg5 #: sc/inc/globstr.hrc:196 @@ -1140,13 +1140,13 @@ #: sc/inc/globstr.hrc:197 msgctxt "STR_FUN_TEXT_STDDEV" msgid "StDev" -msgstr "DesvEst" +msgstr "Desviación típica" #. NhH7q #: sc/inc/globstr.hrc:198 msgctxt "STR_FUN_TEXT_VAR" msgid "Var" -msgstr "Var" +msgstr "Varianza" #. XyzD7 #: sc/inc/globstr.hrc:199 @@ -1390,7 +1390,7 @@ #: sc/inc/globstr.hrc:249 msgctxt "STR_TARGETNOTFOUND" msgid "The target database range does not exist." -msgstr "No existe el área de la base de datos destino." +msgstr "No existe el intervalo de base de datos de destino." #. j8G3g #: sc/inc/globstr.hrc:250 @@ -3320,13 +3320,13 @@ #: sc/inc/pvfundlg.hrc:32 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Max" -msgstr "Máx" +msgstr "Máximo" #. GMhuR #: sc/inc/pvfundlg.hrc:33 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Min" -msgstr "Mín" +msgstr "Mínimo" #. Feqkk #: sc/inc/pvfundlg.hrc:34 @@ -3338,13 +3338,13 @@ #: sc/inc/pvfundlg.hrc:35 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Count (Numbers only)" -msgstr "Conteo (solo números)" +msgstr "Recuento (solo números)" #. q5wsn #: sc/inc/pvfundlg.hrc:36 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "StDev (Sample)" -msgstr "DesvEst (muestra)" +msgstr "Desviación típica (muestra)" #. Jj49u #: sc/inc/pvfundlg.hrc:37 @@ -3356,7 +3356,7 @@ #: sc/inc/pvfundlg.hrc:38 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Var (Sample)" -msgstr "Var (muestra)" +msgstr "Varianza (muestra)" #. yazAP #: sc/inc/pvfundlg.hrc:39 @@ -3905,7 +3905,7 @@ #: sc/inc/scfuncs.hrc:122 msgctxt "SC_OPCODE_DB_STD_DEV" msgid "Calculates the standard deviation of all cells in a data range whose contents match the search criteria." -msgstr "Calcula la desviación predeterminada basándose en una muestra de las entradas seleccionadas de una base de datos." +msgstr "Calcula la desviación típica de todas las celdas en un intervalo cuyo contenido coincide con los criterios de búsqueda." #. abeZd #: sc/inc/scfuncs.hrc:123 @@ -3947,7 +3947,7 @@ #: sc/inc/scfuncs.hrc:134 msgctxt "SC_OPCODE_DB_STD_DEV_P" msgid "Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria." -msgstr "Calcula la desviación predeterminada basándose en la población total de las entradas seleccionadas de una base de datos." +msgstr "Calcula la desviación típica a partir de la población total de todas las celdas de un intervalo de datos que coincide con los criterios de búsqueda." #. pEAMu #: sc/inc/scfuncs.hrc:135 @@ -6316,7 +6316,7 @@ #: sc/inc/scfuncs.hrc:857 msgctxt "SC_OPCODE_NOT" msgid "Reverses the value of the argument." -msgstr "Invierte el valor lógico del argumento." +msgstr "Invierte el valor del argumento." #. RFgjB #: sc/inc/scfuncs.hrc:858 @@ -7378,7 +7378,7 @@ #: sc/inc/scfuncs.hrc:1278 msgctxt "SC_OPCODE_RAD" msgid "Converts degrees to radians" -msgstr "Convierte grados a radianes" +msgstr "Convierte grados en radianes" #. n5GJL #: sc/inc/scfuncs.hrc:1279 @@ -8430,7 +8430,7 @@ #: sc/inc/scfuncs.hrc:1642 msgctxt "SC_OPCODE_LINEST" msgid "The X data array." -msgstr "La matriz de datos X" +msgstr "La matriz de datos X." #. mdXQk #: sc/inc/scfuncs.hrc:1643 @@ -8484,7 +8484,7 @@ #: sc/inc/scfuncs.hrc:1656 msgctxt "SC_OPCODE_LOGEST" msgid "The X data array." -msgstr "La matriz de datos X" +msgstr "La matriz de datos X." #. DNNRH #: sc/inc/scfuncs.hrc:1657 @@ -8514,7 +8514,7 @@ #: sc/inc/scfuncs.hrc:1666 msgctxt "SC_OPCODE_TREND" msgid "Calculates points along a regression line." -msgstr "Devuelve valores que resultan de una tendencia lineal." +msgstr "Calcula puntos a lo largo de una línea de regresión." #. Jh8vp #: sc/inc/scfuncs.hrc:1667 @@ -8538,19 +8538,19 @@ #: sc/inc/scfuncs.hrc:1670 msgctxt "SC_OPCODE_TREND" msgid "The X data array as the basis for the regression." -msgstr "es un conjunto opcional de valores x en la relación y = mx+b." +msgstr "La matriz de datos X como base para la regresión." #. rVGjP #: sc/inc/scfuncs.hrc:1671 msgctxt "SC_OPCODE_TREND" msgid "New data X" -msgstr "Datos nuevos X" +msgstr "Datos X nuevos" #. JedWB #: sc/inc/scfuncs.hrc:1672 msgctxt "SC_OPCODE_TREND" msgid "The array of X data for recalculating the values." -msgstr "La matriz de X datos para recalcular los valores." +msgstr "La matriz de datos X para recalcular los valores." #. s3wFj #: sc/inc/scfuncs.hrc:1673 @@ -8592,19 +8592,19 @@ #: sc/inc/scfuncs.hrc:1684 msgctxt "SC_OPCODE_GROWTH" msgid "The X data array as the basis for the regression." -msgstr "es un conjunto opcional de valores x en la relación y = mx+b." +msgstr "La matriz de datos X como base para la regresión." #. L8Rx3 #: sc/inc/scfuncs.hrc:1685 msgctxt "SC_OPCODE_GROWTH" msgid "New data X" -msgstr "Datos nuevos X" +msgstr "Datos X nuevos" #. kFxgD #: sc/inc/scfuncs.hrc:1686 msgctxt "SC_OPCODE_GROWTH" msgid "The array of X data for recalculating the values." -msgstr "La matriz de X datos para recalcular los valores." +msgstr "La matriz de datos X para recalcular los valores." #. brbfA #: sc/inc/scfuncs.hrc:1687 @@ -8766,7 +8766,7 @@ #: sc/inc/scfuncs.hrc:1758 msgctxt "SC_OPCODE_VAR_A" msgid "Returns the variance based on a sample. Text is evaluated as zero." -msgstr "Calcula la variancia a partir de una muestra. El texto se valorará como cero." +msgstr "Devuelve la varianza a partir de una muestra. El texto se calcula como cero." #. Q4kGy #: sc/inc/scfuncs.hrc:1759 @@ -8838,7 +8838,7 @@ #: sc/inc/scfuncs.hrc:1790 msgctxt "SC_OPCODE_ST_DEV" msgid "Calculates the standard deviation based on a sample." -msgstr "Calcula la desviación predeterminada de una muestra." +msgstr "Calcula la desviación típica a partir de una muestra." #. 6ANXx #: sc/inc/scfuncs.hrc:1791 @@ -8856,7 +8856,7 @@ #: sc/inc/scfuncs.hrc:1798 msgctxt "SC_OPCODE_ST_DEV_S" msgid "Calculates the standard deviation based on a sample." -msgstr "Calcula la desviación predeterminada de una muestra." +msgstr "Calcula la desviación típica a partir de una muestra." #. cGxRb #: sc/inc/scfuncs.hrc:1799 @@ -8874,7 +8874,7 @@ #: sc/inc/scfuncs.hrc:1806 msgctxt "SC_OPCODE_ST_DEV_A" msgid "Returns the standard deviation based on a sample. Text is evaluated as zero." -msgstr "Calcula la desviación predeterminada a partir de una muestra. El texto se valorará como cero." +msgstr "Devuelve la desviación típica a partir de una muestra. El texto se valorará como cero." #. Smbhk #: sc/inc/scfuncs.hrc:1807 @@ -8892,7 +8892,7 @@ #: sc/inc/scfuncs.hrc:1814 msgctxt "SC_OPCODE_ST_DEV_P" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviación predeterminada de la población total determinada por los argumentos." +msgstr "Calcula la desviación típica a partir de toda la población." #. h6Evi #: sc/inc/scfuncs.hrc:1815 @@ -8910,7 +8910,7 @@ #: sc/inc/scfuncs.hrc:1822 msgctxt "SC_OPCODE_ST_DEV_P_MS" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviación predeterminada de la población total determinada por los argumentos." +msgstr "Calcula la desviación típica a partir de toda la población." #. 4JaDC #: sc/inc/scfuncs.hrc:1823 @@ -8928,7 +8928,7 @@ #: sc/inc/scfuncs.hrc:1830 msgctxt "SC_OPCODE_ST_DEV_P_A" msgid "Returns the standard deviation based on the entire population. Text is evaluated as zero." -msgstr "Calcula la desviación predeterminada a partir de la población total. El texto se valorará como cero." +msgstr "Calcula la desviación típica a partir de toda la población. El texto se valorará como cero." #. XaMUA #: sc/inc/scfuncs.hrc:1831 @@ -8946,7 +8946,7 @@ #: sc/inc/scfuncs.hrc:1838 msgctxt "SC_OPCODE_AVERAGE" msgid "Returns the average of a sample." -msgstr "Devuelve el promedio de los argumentos." +msgstr "Devuelve el promedio de una muestra." #. mPAXh #: sc/inc/scfuncs.hrc:1839 @@ -8964,7 +8964,7 @@ #: sc/inc/scfuncs.hrc:1846 msgctxt "SC_OPCODE_AVERAGE_A" msgid "Returns the average value for a sample. Text is evaluated as zero." -msgstr "Calcula la media de una muestra. El texto se valorará como cero." +msgstr "Devuelve el valor promedio de una muestra. El texto se calcula como cero." #. eCCGY #: sc/inc/scfuncs.hrc:1847 @@ -8994,13 +8994,13 @@ #: sc/inc/scfuncs.hrc:1856 msgctxt "SC_OPCODE_DEV_SQ" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "Número 1; número 2,… son argumentos numéricos que representan una muestra." +msgstr "Número 1, número 2,… son argumentos numéricos que representan una muestra." #. zhbqF #: sc/inc/scfuncs.hrc:1862 msgctxt "SC_OPCODE_AVE_DEV" msgid "Returns the average of the absolute deviations of a sample from the mean." -msgstr "Devuelve el promedio de las desviaciones absolutas de la media de los puntos de datos." +msgstr "Devuelve el promedio de las desviaciones absolutas de una muestra a partir de la media." #. GBAFj #: sc/inc/scfuncs.hrc:1863 @@ -9126,7 +9126,7 @@ #: sc/inc/scfuncs.hrc:1918 msgctxt "SC_OPCODE_MODAL_VALUE_MS" msgid "Returns the most common value in a sample." -msgstr "Devuelve el valor que se repite con más frecuencia en una muestra." +msgstr "Devuelve el valor más común en una muestra." #. BH4Gt #: sc/inc/scfuncs.hrc:1919 @@ -9144,7 +9144,7 @@ #: sc/inc/scfuncs.hrc:1926 msgctxt "SC_OPCODE_MODAL_VALUE_MULTI" msgid "Returns the most common value in a sample." -msgstr "Devuelve el valor que se repite con más frecuencia en una muestra." +msgstr "Devuelve el valor más común en una muestra." #. gXx2e #: sc/inc/scfuncs.hrc:1927 @@ -10290,7 +10290,7 @@ #: sc/inc/scfuncs.hrc:2272 msgctxt "SC_OPCODE_NORM_DIST" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "es la desviación predeterminada de la distribución." +msgstr "Desviación típica. La desviación típica de la distribución normal." #. qMewn #: sc/inc/scfuncs.hrc:2273 @@ -10344,7 +10344,7 @@ #: sc/inc/scfuncs.hrc:2286 msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "es la desviación predeterminada de la distribución." +msgstr "Desviación típica. La desviación típica de la distribución normal." #. CqHN6 #: sc/inc/scfuncs.hrc:2287 @@ -10398,7 +10398,7 @@ #: sc/inc/scfuncs.hrc:2300 msgctxt "SC_OPCODE_NORM_INV" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "es la desviación predeterminada de la distribución." +msgstr "Desviación típica. La desviación típica de la distribución normal." #. wodEb #: sc/inc/scfuncs.hrc:2306 @@ -10440,7 +10440,7 @@ #: sc/inc/scfuncs.hrc:2312 msgctxt "SC_OPCODE_NORM_INV_MS" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "es la desviación predeterminada de la distribución." +msgstr "Desviación típica. La desviación típica de la distribución normal." #. yX9mS #: sc/inc/scfuncs.hrc:2318 @@ -10566,7 +10566,7 @@ #: sc/inc/scfuncs.hrc:2358 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "The standard deviation of the log normal distribution. It is set to 1 if omitted." -msgstr "La desviación estándar es el registro de distribución normal. Este se establece si el 1 es omitido." +msgstr "La desviación típica de la distribución logarítmica normal. Se establece a 1 si se omite." #. VsLsD #: sc/inc/scfuncs.hrc:2359 @@ -10620,7 +10620,7 @@ #: sc/inc/scfuncs.hrc:2372 msgctxt "SC_OPCODE_LOG_NORM_DIST_MS" msgid "The standard deviation of the log normal distribution." -msgstr "La desviación estándar de la distribución logarítmica normal." +msgstr "La desviación típica de la distribución logarítmica normal." #. JeiQB #: sc/inc/scfuncs.hrc:2373 @@ -10650,7 +10650,7 @@ #: sc/inc/scfuncs.hrc:2382 msgctxt "SC_OPCODE_LOG_INV" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "es una probabilidad asociada con la distribución logarítmico-normal." +msgstr "El valor de probabilidad para el cual se debe calcular la distribución normal logarítmica inversa." #. DcZBh #: sc/inc/scfuncs.hrc:2383 @@ -10674,7 +10674,7 @@ #: sc/inc/scfuncs.hrc:2386 msgctxt "SC_OPCODE_LOG_INV" msgid "Standard deviation. The standard deviation of the log normal distribution." -msgstr "Desviación estándar. Es la desviación estándar del registro normal de distribución." +msgstr "Desviación típica. La desviación típica de la distribución logarítmica normal." #. T4N5D #: sc/inc/scfuncs.hrc:2392 @@ -10692,7 +10692,7 @@ #: sc/inc/scfuncs.hrc:2394 msgctxt "SC_OPCODE_LOG_INV_MS" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "El valor de probabilidad para calcular la inversa de la distribución normal logarítmica." +msgstr "El valor de probabilidad para el cual se debe calcular la distribución normal logarítmica inversa." #. BgAcE #: sc/inc/scfuncs.hrc:2395 @@ -10716,7 +10716,7 @@ #: sc/inc/scfuncs.hrc:2398 msgctxt "SC_OPCODE_LOG_INV_MS" msgid "Standard deviation. The standard deviation of the log normal distribution." -msgstr "La desviación estándar de la distribución logarítmica normal." +msgstr "Desviación típica. La desviación típica de la distribución logarítmica normal." #. 8wWP2 #: sc/inc/scfuncs.hrc:2404 @@ -10734,7 +10734,7 @@ #: sc/inc/scfuncs.hrc:2406 msgctxt "SC_OPCODE_EXP_DIST" msgid "The value to which the exponential distribution is to be calculated." -msgstr "es el valor de la función." +msgstr "El valor para el cual se debe calcular la distribución exponencial." #. VTtEt #: sc/inc/scfuncs.hrc:2407 @@ -10776,7 +10776,7 @@ #: sc/inc/scfuncs.hrc:2418 msgctxt "SC_OPCODE_EXP_DIST_MS" msgid "The value to which the exponential distribution is to be calculated." -msgstr "es el valor de la función." +msgstr "El valor para el cual se debe calcular la distribución exponencial." #. U2dx6 #: sc/inc/scfuncs.hrc:2419 @@ -10818,7 +10818,7 @@ #: sc/inc/scfuncs.hrc:2430 msgctxt "SC_OPCODE_GAMMA_DIST" msgid "The value for which the gamma distribution is to be calculated." -msgstr "es el valor al que desea evaluar la distribución." +msgstr "El valor para el cual se debe calcular la distribución gamma." #. ptWdK #: sc/inc/scfuncs.hrc:2431 @@ -10830,7 +10830,7 @@ #: sc/inc/scfuncs.hrc:2432 msgctxt "SC_OPCODE_GAMMA_DIST" msgid "The Alpha parameter of the Gamma distribution." -msgstr "es un parámetro de la distribución." +msgstr "El parámetro Alfa de la distribución gamma." #. LUBxW #: sc/inc/scfuncs.hrc:2433 @@ -10842,7 +10842,7 @@ #: sc/inc/scfuncs.hrc:2434 msgctxt "SC_OPCODE_GAMMA_DIST" msgid "The Beta parameter of the Gamma distribution." -msgstr "es un parámetro de la distribución." +msgstr "El parámetro Beta de la distribución gamma." #. MsyLG #: sc/inc/scfuncs.hrc:2435 @@ -10872,7 +10872,7 @@ #: sc/inc/scfuncs.hrc:2444 msgctxt "SC_OPCODE_GAMMA_DIST_MS" msgid "The value for which the gamma distribution is to be calculated." -msgstr "es el valor al que desea evaluar la distribución." +msgstr "El valor para el cual se debe calcular la distribución gamma." #. VHMzm #: sc/inc/scfuncs.hrc:2445 @@ -10884,7 +10884,7 @@ #: sc/inc/scfuncs.hrc:2446 msgctxt "SC_OPCODE_GAMMA_DIST_MS" msgid "The Alpha parameter of the Gamma distribution." -msgstr "es un parámetro de la distribución." +msgstr "El parámetro Alfa de la distribución gamma." #. 2XRcY #: sc/inc/scfuncs.hrc:2447 @@ -10896,7 +10896,7 @@ #: sc/inc/scfuncs.hrc:2448 msgctxt "SC_OPCODE_GAMMA_DIST_MS" msgid "The Beta parameter of the Gamma distribution." -msgstr "es un parámetro de la distribución." +msgstr "El parámetro Beta de la distribución gamma." #. KbAwa #: sc/inc/scfuncs.hrc:2449 @@ -12378,7 +12378,7 @@ #: sc/inc/scfuncs.hrc:2879 msgctxt "SC_OPCODE_STANDARD" msgid "The standard deviation used for scaling." -msgstr "La desviación estándar usada para la escala." +msgstr "La desviación típica usada para la escala." #. bDxG9 #: sc/inc/scfuncs.hrc:2885 @@ -12390,7 +12390,7 @@ #: sc/inc/scfuncs.hrc:2886 msgctxt "SC_OPCODE_PERMUT" msgid "Count 1" -msgstr "Conteo 1" +msgstr "Recuento 1" #. Mhy9M #: sc/inc/scfuncs.hrc:2887 @@ -12402,7 +12402,7 @@ #: sc/inc/scfuncs.hrc:2888 msgctxt "SC_OPCODE_PERMUT" msgid "Count 2" -msgstr "Conteo 2" +msgstr "Recuento 2" #. B6kTa #: sc/inc/scfuncs.hrc:2889 @@ -12420,7 +12420,7 @@ #: sc/inc/scfuncs.hrc:2896 msgctxt "SC_OPCODE_PERMUTATION_A" msgid "Count 1" -msgstr "Conteo 1" +msgstr "Recuento 1" #. fddDy #: sc/inc/scfuncs.hrc:2897 @@ -12432,7 +12432,7 @@ #: sc/inc/scfuncs.hrc:2898 msgctxt "SC_OPCODE_PERMUTATION_A" msgid "Count 2" -msgstr "Conteo 2" +msgstr "Recuento 2" #. TRZcL #: sc/inc/scfuncs.hrc:2899 @@ -12468,7 +12468,7 @@ #: sc/inc/scfuncs.hrc:2909 msgctxt "SC_OPCODE_CONFIDENCE" msgid "The standard deviation of the population." -msgstr "es la desviación predeterminada de la población" +msgstr "La desviación típica de la población." #. SfSN7 #: sc/inc/scfuncs.hrc:2910 @@ -12498,7 +12498,7 @@ #: sc/inc/scfuncs.hrc:2919 msgctxt "SC_OPCODE_CONFIDENCE_N" msgid "The level of the confidence interval." -msgstr "es el nivel de significación empleado para calcular el nivel de confianza." +msgstr "El nivel del intervalo de confianza." #. YJwYV #: sc/inc/scfuncs.hrc:2920 @@ -12510,7 +12510,7 @@ #: sc/inc/scfuncs.hrc:2921 msgctxt "SC_OPCODE_CONFIDENCE_N" msgid "The standard deviation of the population." -msgstr "es la desviación predeterminada de la población" +msgstr "La desviación típica de la población." #. 5y2Nz #: sc/inc/scfuncs.hrc:2922 @@ -12522,7 +12522,7 @@ #: sc/inc/scfuncs.hrc:2923 msgctxt "SC_OPCODE_CONFIDENCE_N" msgid "The size of the population." -msgstr "es el tamaño de la muestra." +msgstr "El tamaño de la población." #. zAcVE #: sc/inc/scfuncs.hrc:2929 @@ -12540,7 +12540,7 @@ #: sc/inc/scfuncs.hrc:2931 msgctxt "SC_OPCODE_CONFIDENCE_T" msgid "The level of the confidence interval." -msgstr "es el nivel de significación empleado para calcular el nivel de confianza." +msgstr "El nivel del intervalo de confianza." #. YGBES #: sc/inc/scfuncs.hrc:2932 @@ -12552,7 +12552,7 @@ #: sc/inc/scfuncs.hrc:2933 msgctxt "SC_OPCODE_CONFIDENCE_T" msgid "The standard deviation of the population." -msgstr "es la desviación predeterminada de la población" +msgstr "La desviación típica de la población." #. KrmhU #: sc/inc/scfuncs.hrc:2934 @@ -12582,7 +12582,7 @@ #: sc/inc/scfuncs.hrc:2943 msgctxt "SC_OPCODE_Z_TEST" msgid "The given sample, drawn from a normally distributed population." -msgstr "La muestra dada, dibuja de una población distribuida normalmente." +msgstr "La muestra dada, tomada de una población distribuida normalmente." #. j6cxd #: sc/inc/scfuncs.hrc:2944 @@ -12594,7 +12594,7 @@ #: sc/inc/scfuncs.hrc:2945 msgctxt "SC_OPCODE_Z_TEST" msgid "The known mean of the population." -msgstr "La media conocida de una población" +msgstr "La media conocida de la población." #. ZngJE #: sc/inc/scfuncs.hrc:2946 @@ -12606,7 +12606,7 @@ #: sc/inc/scfuncs.hrc:2947 msgctxt "SC_OPCODE_Z_TEST" msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "La desviación estándar de una población conocida. Si es omitida, la desviación estándar de la muestra dada se usada." +msgstr "La desviación típica conocida de la población. Si se omite, se usará la desviación típica de la muestra dada." #. wxJ43 #: sc/inc/scfuncs.hrc:2953 @@ -12624,7 +12624,7 @@ #: sc/inc/scfuncs.hrc:2955 msgctxt "SC_OPCODE_Z_TEST_MS" msgid "The given sample, drawn from a normally distributed population." -msgstr "La muestra dada, dibuja de una población distribuida normalmente." +msgstr "La muestra dada, tomada de una población distribuida normalmente." #. Bj2P8 #: sc/inc/scfuncs.hrc:2956 @@ -12636,7 +12636,7 @@ #: sc/inc/scfuncs.hrc:2957 msgctxt "SC_OPCODE_Z_TEST_MS" msgid "The known mean of the population." -msgstr "La media conocida de una población" +msgstr "La media conocida de la población." #. Bxo8Y #: sc/inc/scfuncs.hrc:2958 @@ -12648,13 +12648,13 @@ #: sc/inc/scfuncs.hrc:2959 msgctxt "SC_OPCODE_Z_TEST_MS" msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "La desviación estándar conocida de la población. Si se omite, se usará la desviación estándar de la muestra dada." +msgstr "La desviación típica conocida de la población. Si se omite, se usará la desviación típica de la muestra dada." #. msJXN #: sc/inc/scfuncs.hrc:2965 msgctxt "SC_OPCODE_CHI_TEST" msgid "Returns the chi square independence test." -msgstr "Devuelve la prueba de independencia." +msgstr "Devuelve la prueba de independencia ji al cuadrado." #. ryBne #: sc/inc/scfuncs.hrc:2966 @@ -12684,7 +12684,7 @@ #: sc/inc/scfuncs.hrc:2975 msgctxt "SC_OPCODE_CHI_TEST_MS" msgid "Returns the chi square independence test." -msgstr "Devuelve la prueba de independencia." +msgstr "Devuelve la prueba de independencia ji al cuadrado." #. yNywg #: sc/inc/scfuncs.hrc:2976 @@ -12714,7 +12714,7 @@ #: sc/inc/scfuncs.hrc:2985 msgctxt "SC_OPCODE_F_TEST" msgid "Calculates the F test." -msgstr "Devuelve el resultado de una prueba F." +msgstr "Calcula la prueba F." #. EeFFo #: sc/inc/scfuncs.hrc:2986 @@ -12744,7 +12744,7 @@ #: sc/inc/scfuncs.hrc:2995 msgctxt "SC_OPCODE_F_TEST_MS" msgid "Calculates the F test." -msgstr "Devuelve el resultado de una prueba F." +msgstr "Calcula la prueba F." #. K37cV #: sc/inc/scfuncs.hrc:2996 @@ -12774,7 +12774,7 @@ #: sc/inc/scfuncs.hrc:3005 msgctxt "SC_OPCODE_T_TEST" msgid "Calculates the T test." -msgstr "Devuelve la probabilidad asociada con la prueba t de Student." +msgstr "Calcula la prueba T." #. vU5V2 #: sc/inc/scfuncs.hrc:3006 @@ -12828,7 +12828,7 @@ #: sc/inc/scfuncs.hrc:3019 msgctxt "SC_OPCODE_T_TEST_MS" msgid "Calculates the T test." -msgstr "Devuelve la probabilidad asociada con la prueba t de Student." +msgstr "Calcula la prueba T." #. 5fHC3 #: sc/inc/scfuncs.hrc:3020 @@ -12906,7 +12906,7 @@ #: sc/inc/scfuncs.hrc:3037 msgctxt "SC_OPCODE_RSQ" msgid "The X data array." -msgstr "La matriz de datos X" +msgstr "La matriz de datos X." #. EeGGQ #: sc/inc/scfuncs.hrc:3043 @@ -12936,7 +12936,7 @@ #: sc/inc/scfuncs.hrc:3047 msgctxt "SC_OPCODE_INTERCEPT" msgid "The X data array." -msgstr "La matriz de datos X" +msgstr "La matriz de datos X." #. DCeGA #: sc/inc/scfuncs.hrc:3053 @@ -12966,7 +12966,7 @@ #: sc/inc/scfuncs.hrc:3057 msgctxt "SC_OPCODE_SLOPE" msgid "The X data array." -msgstr "La matriz de datos X" +msgstr "La matriz de datos X." #. xfNoa #: sc/inc/scfuncs.hrc:3063 @@ -12996,13 +12996,13 @@ #: sc/inc/scfuncs.hrc:3067 msgctxt "SC_OPCODE_STEYX" msgid "The X data array." -msgstr "La matriz de datos X" +msgstr "La matriz de datos X." #. pamGW #: sc/inc/scfuncs.hrc:3073 msgctxt "SC_OPCODE_PEARSON" msgid "Returns the Pearson product moment correlation coefficient." -msgstr "Devuelve el coeficiente de correlación producto o momento r de Pearson.." +msgstr "Devuelve el coeficiente de correlación producto-momento de Pearson." #. ZhepS #: sc/inc/scfuncs.hrc:3074 @@ -13164,7 +13164,7 @@ #: sc/inc/scfuncs.hrc:3125 msgctxt "SC_OPCODE_FORECAST" msgid "The X value for which the Y value on the regression linear is to be calculated." -msgstr "es el dato cuyo valor desea predecir." +msgstr "El valor X para el cual se debe calcular el valor Y en la recta de regresión." #. bxLgC #: sc/inc/scfuncs.hrc:3126 @@ -13188,7 +13188,7 @@ #: sc/inc/scfuncs.hrc:3129 msgctxt "SC_OPCODE_FORECAST" msgid "The X data array." -msgstr "La matriz de datos X" +msgstr "La matriz de datos X." #. XHpHo #: sc/inc/scfuncs.hrc:3135 @@ -13752,7 +13752,7 @@ #: sc/inc/scfuncs.hrc:3263 msgctxt "SC_OPCODE_FORECAST_LIN" msgid "The X value for which the Y value on the regression linear is to be calculated." -msgstr "El valor de X según el cual se calculará el valor de Y en la regresión lineal." +msgstr "El valor X para el cual se debe calcular el valor Y en la recta de regresión." #. gZDa7 #: sc/inc/scfuncs.hrc:3264 @@ -13914,7 +13914,7 @@ #: sc/inc/scfuncs.hrc:3315 msgctxt "SC_OPCODE_ROW" msgid "Defines the internal row number of a reference." -msgstr "Devuelve el número de fila de una referencia." +msgstr "Define el número de fila interno de una referencia." #. 4jGH3 #: sc/inc/scfuncs.hrc:3316 @@ -14016,7 +14016,7 @@ #: sc/inc/scfuncs.hrc:3357 msgctxt "SC_OPCODE_H_LOOKUP" msgid "The value to be found in the first row." -msgstr "El valor que se encontrará en la primera fila." +msgstr "El valor que se debe encontrar en la primera fila." #. C2C5B #: sc/inc/scfuncs.hrc:3358 @@ -14328,7 +14328,7 @@ #: sc/inc/scfuncs.hrc:3439 msgctxt "SC_OPCODE_OFFSET" msgid "The number of rows of the moved reference." -msgstr "La cantidad de filas de la referencia desplazada." +msgstr "La cantidad de filas de la referencia movida." #. Y5Gux #: sc/inc/scfuncs.hrc:3440 @@ -14490,7 +14490,7 @@ #: sc/inc/scfuncs.hrc:3491 msgctxt "SC_OPCODE_HYPERLINK" msgid "The clickable URL." -msgstr "El URL accesible con el ratón." +msgstr "El URL pulsable con el ratón." #. AufAt #: sc/inc/scfuncs.hrc:3492 @@ -14820,7 +14820,7 @@ #: sc/inc/scfuncs.hrc:3611 msgctxt "SC_OPCODE_SWITCH_MS" msgid "Value to compare against expression. If no result is given, then value is returned as default result." -msgstr "" +msgstr "Valor para comparar con la expresión. Si no se proporciona ningún resultado, el valor se devuelve como resultado predeterminado." #. dsARv #: sc/inc/scfuncs.hrc:3612 @@ -14922,7 +14922,7 @@ #: sc/inc/scfuncs.hrc:3641 msgctxt "SC_OPCODE_EXACT" msgid "Specifies whether two texts are identical." -msgstr "Compara si dos textos son idénticos" +msgstr "Indica si dos textos son idénticos." #. Mypx3 #: sc/inc/scfuncs.hrc:3642 @@ -14934,7 +14934,7 @@ #: sc/inc/scfuncs.hrc:3643 msgctxt "SC_OPCODE_EXACT" msgid "The first text to be used for comparing texts." -msgstr "es la primera cadena de texto, entre comillas." +msgstr "El primer texto que se usará en la comparación textual." #. 2s4vu #: sc/inc/scfuncs.hrc:3644 @@ -14946,13 +14946,13 @@ #: sc/inc/scfuncs.hrc:3645 msgctxt "SC_OPCODE_EXACT" msgid "The second text for comparing texts." -msgstr "es la segunda cadena de texto, entre comillas." +msgstr "El segundo texto de la comparación." #. 8sCqL #: sc/inc/scfuncs.hrc:3651 msgctxt "SC_OPCODE_FIND" msgid "Looks for a string of text within another (case sensitive)" -msgstr "Busca un valor de texto dentro de otro tomando en cuenta las mayúsculas y minúsculas." +msgstr "Busca una cadena de texto dentro de otra (distinguiendo la mayusculación)." #. 2CUai #: sc/inc/scfuncs.hrc:3652 @@ -14988,13 +14988,13 @@ #: sc/inc/scfuncs.hrc:3657 msgctxt "SC_OPCODE_FIND" msgid "The position in the text from which the search starts." -msgstr "especifica el carácter a partir del que comenzará la búsqueda" +msgstr "La posición en el texto a partir de la cual comenzará la búsqueda." #. XLB5s #: sc/inc/scfuncs.hrc:3663 msgctxt "SC_OPCODE_SEARCH" msgid "Looks for one text value within another (not case-sensitive)." -msgstr "Busca un valor de texto dentro de otro (sin reconocer mayúsculas o minúsculas)." +msgstr "Busca una cadena de texto dentro de otra (sin distinguir la mayusculación)." #. q9HgD #: sc/inc/scfuncs.hrc:3664 @@ -15084,13 +15084,13 @@ #: sc/inc/scfuncs.hrc:3693 msgctxt "SC_OPCODE_UPPER" msgid "The text in which lower case letters are to be converted to capitals." -msgstr "es el texto que se desea convertir en mayúsculas." +msgstr "El texto cuyas minúsculas se transformarán en mayúsculas." #. CqaAp #: sc/inc/scfuncs.hrc:3699 msgctxt "SC_OPCODE_LOWER" msgid "Converts text to lowercase." -msgstr "Convierte todas las mayúsculas de una cadena de texto en minúsculas." +msgstr "Convierte el texto en minúsculas." #. 3pTMV #: sc/inc/scfuncs.hrc:3700 @@ -17465,7 +17465,7 @@ #: sc/inc/strings.hrc:180 msgctxt "SCSTR_QHELP_BTNCALC" msgid "Function Wizard" -msgstr "Asistente de funciones" +msgstr "Asistente para funciones" #. rU6xA #: sc/inc/strings.hrc:181 @@ -17813,7 +17813,7 @@ #: sc/inc/strings.hrc:247 msgctxt "STRID_CALC_STD_DEVIATION" msgid "Standard Deviation" -msgstr "Desviación estándar" +msgstr "Desviación típica" #. JTx7f #: sc/inc/strings.hrc:248 @@ -17952,7 +17952,7 @@ #: sc/inc/strings.hrc:271 msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION" msgid "Standard Deviation" -msgstr "Desviación estándar" +msgstr "Desviación típica" #. ChwWE #: sc/inc/strings.hrc:272 @@ -18625,13 +18625,13 @@ #: sc/inc/subtotals.hrc:31 msgctxt "subtotalgrppage|liststore1" msgid "Max" -msgstr "Máx." +msgstr "Máximo" #. iidBk #: sc/inc/subtotals.hrc:32 msgctxt "subtotalgrppage|liststore1" msgid "Min" -msgstr "Mín." +msgstr "Mínimo" #. VqvEW #: sc/inc/subtotals.hrc:33 @@ -18649,7 +18649,7 @@ #: sc/inc/subtotals.hrc:35 msgctxt "subtotalgrppage|liststore1" msgid "StDev (Sample)" -msgstr "DesvEst (muestra)" +msgstr "Desviación típica (muestra)" #. RGUzn #: sc/inc/subtotals.hrc:36 @@ -18661,7 +18661,7 @@ #: sc/inc/subtotals.hrc:37 msgctxt "subtotalgrppage|liststore1" msgid "Var (Sample)" -msgstr "Var (muestra)" +msgstr "Varianza (muestra)" #. bcyAy #: sc/inc/subtotals.hrc:38 @@ -19219,13 +19219,13 @@ #: sc/uiconfig/scalc/ui/autosum.ui:28 msgctxt "autosum|min" msgid "Min" -msgstr "Mín." +msgstr "Mínimo" #. pWv7a #: sc/uiconfig/scalc/ui/autosum.ui:36 msgctxt "autosum|max" msgid "Max" -msgstr "Máx." +msgstr "Máximo" #. mAz9L #: sc/uiconfig/scalc/ui/autosum.ui:44 @@ -19249,7 +19249,7 @@ #: sc/uiconfig/scalc/ui/autosum.ui:68 msgctxt "autosum|stdev" msgid "Stdev" -msgstr "DesvEst" +msgstr "Desviación típica" #. cAEpr #: sc/uiconfig/scalc/ui/autosum.ui:76 @@ -19261,7 +19261,7 @@ #: sc/uiconfig/scalc/ui/autosum.ui:84 msgctxt "autosum|var" msgid "Var" -msgstr "Var" +msgstr "Varianza" #. 7GuBA #: sc/uiconfig/scalc/ui/autosum.ui:92 @@ -19657,13 +19657,13 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:216 msgctxt "conditionalentry|colscalemin" msgid "Min" -msgstr "Mín." +msgstr "Mínimo" #. HAuKu #: sc/uiconfig/scalc/ui/conditionalentry.ui:217 msgctxt "conditionalentry|colscalemin" msgid "Max" -msgstr "Máx." +msgstr "Máximo" #. ciYfw #: sc/uiconfig/scalc/ui/conditionalentry.ui:218 @@ -19699,13 +19699,13 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:235 msgctxt "conditionalentry|colscalemiddle" msgid "Min" -msgstr "Mín." +msgstr "Mínimo" #. qC8Zo #: sc/uiconfig/scalc/ui/conditionalentry.ui:236 msgctxt "conditionalentry|colscalemiddle" msgid "Max" -msgstr "Máx." +msgstr "Máximo" #. 7bxeC #: sc/uiconfig/scalc/ui/conditionalentry.ui:237 @@ -19741,13 +19741,13 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:254 msgctxt "conditionalentry|colscalemax" msgid "Min" -msgstr "Mín." +msgstr "Mínimo" #. JBX6r #: sc/uiconfig/scalc/ui/conditionalentry.ui:255 msgctxt "conditionalentry|colscalemax" msgid "Max" -msgstr "Máx." +msgstr "Máximo" #. uPGWW #: sc/uiconfig/scalc/ui/conditionalentry.ui:256 @@ -20425,13 +20425,13 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:144 msgctxt "consolidatedialog|func" msgid "Max" -msgstr "Máx." +msgstr "Máximo" #. fiQPH #: sc/uiconfig/scalc/ui/consolidatedialog.ui:145 msgctxt "consolidatedialog|func" msgid "Min" -msgstr "Mín." +msgstr "Mínimo" #. cbwPv #: sc/uiconfig/scalc/ui/consolidatedialog.ui:146 @@ -20449,7 +20449,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:148 msgctxt "consolidatedialog|func" msgid "StDev (sample)" -msgstr "DesvEst (muestra)" +msgstr "Desviación típica (muestra)" #. JTcFT #: sc/uiconfig/scalc/ui/consolidatedialog.ui:149 @@ -20461,7 +20461,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:150 msgctxt "consolidatedialog|func" msgid "Var (sample)" -msgstr "Var (muestra)" +msgstr "Varianza (muestra)" #. gEiNo #: sc/uiconfig/scalc/ui/consolidatedialog.ui:151 @@ -22951,7 +22951,7 @@ #: sc/uiconfig/scalc/ui/findreplaceentry.ui:28 msgctxt "findreplace|label_action" msgid "Find Replace Action" -msgstr "Acción Buscar/reemplazar" +msgstr "Acción de Buscar/reemplazar" #. T9kUg #: sc/uiconfig/scalc/ui/findreplaceentry.ui:45 @@ -28063,7 +28063,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:672 msgctxt "pivottablelayoutdialog|extended_tip|check-total-rows" msgid "Calculates and displays the grand total of the row calculation." -msgstr "Calcula y muestra el total del cálculo de la fila." +msgstr "Calcula y muestra el total general del cálculo de la fila." #. Br8BE #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:683 @@ -28075,7 +28075,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:691 msgctxt "pivottablelayoutdialog|extended_tip|check-total-columns" msgid "Calculates and displays the grand total of the column calculation." -msgstr "Calcula y muestra el total del cálculo de la columna." +msgstr "Calcula y muestra el total general del cálculo de la columna." #. VXEdh #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:702 @@ -32089,7 +32089,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:133 msgctxt "textimportcsv|textlanguage" msgid "_Locale:" -msgstr "" +msgstr "Configuración regiona_l:" #. GAQTV #: sc/uiconfig/scalc/ui/textimportcsv.ui:147 @@ -33007,7 +33007,7 @@ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:129 msgctxt "validationcriteriapage|extended_tip|min" msgid "Enter the minimum value for the data validation option that you selected in the Allow box." -msgstr "Escriba el valor mínimo para la opción de validación de datos seleccionada en el cuadro Permitirbox." +msgstr "Introduzca el valor mínimo para la opción de validación de datos seleccionada en el cuadro Permitir." #. ywVMA #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:172 @@ -33031,7 +33031,7 @@ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:213 msgctxt "validationcriteriapage|extended_tip|allowempty" msgid "In conjunction with Tools - Detective - Mark invalid Data, this defines that blank cells are shown as invalid data (disabled) or not (enabled)." -msgstr "En combinación con Herramientas ▸ Detective ▸ Marcar los datos incorrectos, esta función establece que las celdas en blanco se mostrarán como datos incorrectos (desactivadas) o no (activadas)." +msgstr "En combinación con Herramientas ▸ Detective ▸ Marcar datos no válidos, esta función establece que las celdas en blanco se muestren como datos no válidos (desactivada) o no (activada)." #. tsgJF #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:224 @@ -33163,7 +33163,7 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:148 msgctxt "validationhelptabpage|extended_tip|ValidationHelpTabPage" msgid "Enter the message that you want to display when the cell or cell range is selected in the sheet." -msgstr "Escriba el mensaje que desea que se muestre al seleccionar la celda o área de celdas en la hoja." +msgstr "Escriba el mensaje que desea que se muestre al seleccionar la celda o intervalo de celdas en la hoja." #. XEHEu #: sc/uiconfig/scalc/ui/warnautocorrect.ui:13 diff -Nru libreoffice-7.4.6/translations/source/es/scaddins/messages.po libreoffice-7.4.7/translations/source/es/scaddins/messages.po --- libreoffice-7.4.6/translations/source/es/scaddins/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/scaddins/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-10 11:04+0000\n" +"PO-Revision-Date: 2023-04-18 10:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1512860287.000000\n" #. i8Y7Z @@ -44,7 +44,7 @@ #: scaddins/inc/analysis.hrc:32 msgctxt "ANALYSIS_Workday" msgid "The number of workdays before or after the start date" -msgstr "Número de días laborables anteriores o posteriores a la fecha inicial" +msgstr "Número de días laborables anteriores o posteriores a la fecha de inicio" #. tDjjf #: scaddins/inc/analysis.hrc:33 @@ -654,7 +654,7 @@ #: scaddins/inc/analysis.hrc:215 msgctxt "ANALYSIS_Bin2Dec" msgid "Converts a binary number to a decimal number" -msgstr "Convierte und número binario en uno decimal." +msgstr "Convierte un número binario en uno decimal" #. YFu9X #: scaddins/inc/analysis.hrc:216 diff -Nru libreoffice-7.4.6/translations/source/es/scp2/source/impress.po libreoffice-7.4.7/translations/source/es/scp2/source/impress.po --- libreoffice-7.4.6/translations/source/es/scp2/source/impress.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/scp2/source/impress.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-02-17 15:02+0000\n" +"PO-Revision-Date: 2023-03-31 22:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1461741198.000000\n" #. USjxN @@ -158,7 +158,7 @@ "STR_REG_VAL_MS_POWERPOINT_SHOW\n" "LngText.text" msgid "Microsoft PowerPoint Show" -msgstr "Presentación automática de Microsoft PowerPoint" +msgstr "Pase de diapositivas de Microsoft PowerPoint" #. c8FUE #: registryitem_impress.ulf diff -Nru libreoffice-7.4.6/translations/source/es/scp2/source/ooo.po libreoffice-7.4.7/translations/source/es/scp2/source/ooo.po --- libreoffice-7.4.6/translations/source/es/scp2/source/ooo.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/scp2/source/ooo.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-02-21 15:23+0100\n" -"PO-Revision-Date: 2022-03-13 03:06+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559315871.000000\n" #. CYBGJ @@ -4298,7 +4298,7 @@ "STR_DESC_MODULE_DICTIONARIES\n" "LngText.text" msgid "Spelling dictionaries, hyphenation rules, thesauri and grammar checkers." -msgstr "Correctores ortográficos y gramaticales, sinónimos y reglas de división de palabras." +msgstr "Correctores ortográficos y gramaticales, sinónimos y reglas de corte de palabras." #. MYXBi #: module_ooo.ulf @@ -4316,7 +4316,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_AF\n" "LngText.text" msgid "Afrikaans spelling dictionary, and hyphenation rules" -msgstr "Afrikáans: corrector ortográfico y reglas de división de palabras" +msgstr "Afrikáans: corrector ortográfico y reglas de corte de palabras" #. iZib4 #: module_ooo.ulf @@ -4388,7 +4388,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_BG\n" "LngText.text" msgid "Bulgarian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Búlgaro: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Búlgaro: corrector ortográfico, sinónimos y reglas de corte de palabras" #. BTti9 #: module_ooo.ulf @@ -4478,7 +4478,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_CA\n" "LngText.text" msgid "Catalan spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Catalán: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Catalán: corrector ortográfico, sinónimos y reglas de corte de palabras" #. CVnGE #: module_ooo.ulf @@ -4514,7 +4514,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_CS\n" "LngText.text" msgid "Czech spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Checo: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Checo: corrector ortográfico, sinónimos y reglas de corte de palabras" #. gS2wr #: module_ooo.ulf @@ -4532,7 +4532,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_DA\n" "LngText.text" msgid "Danish spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Danés: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Danés: corrector ortográfico, sinónimos y reglas de corte de palabras" #. 7swZQ #: module_ooo.ulf @@ -4550,7 +4550,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_DE\n" "LngText.text" msgid "German (Austria, Germany, Switzerland) spelling dictionaries, hyphenation rules, and thesauri" -msgstr "Alemán (Alemania, Austria, Suiza): corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Alemán (Alemania, Austria, Suiza): corrector ortográfico, sinónimos y reglas de corte de palabras" #. CkBTE #: module_ooo.ulf @@ -4568,7 +4568,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_EN\n" "LngText.text" msgid "English spelling dictionaries, hyphenation rules, thesaurus, and grammar checker" -msgstr "Inglés: correctores ortográficos y gramaticales, sinónimos y reglas de división de palabras" +msgstr "Inglés: correctores ortográficos y gramaticales, sinónimos y reglas de corte de palabras" #. 2DiA4 #: module_ooo.ulf @@ -4586,7 +4586,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_EL\n" "LngText.text" msgid "Greek spelling dictionary, and hyphenation rules" -msgstr "Griego: corrector ortográfico y reglas de división de palabras" +msgstr "Griego: corrector ortográfico y reglas de corte de palabras" #. d5cqB #: module_ooo.ulf @@ -4604,7 +4604,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_EO\n" "LngText.text" msgid "Esperanto spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Esperanto: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Esperanto: corrector ortográfico, sinónimos y reglas de corte de palabras" #. 6Mzvn #: module_ooo.ulf @@ -4622,7 +4622,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_ES\n" "LngText.text" msgid "Spanish spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Español: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Español: corrector ortográfico, sinónimos y reglas de corte de palabras" #. KRfJz #: module_ooo.ulf @@ -4640,7 +4640,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_ET\n" "LngText.text" msgid "Estonian spelling dictionary, and hyphenation rules" -msgstr "Estonio: corrector ortográfico y reglas de división de palabras" +msgstr "Estonio: corrector ortográfico y reglas de corte de palabras" #. 5QqAr #: module_ooo.ulf @@ -4658,7 +4658,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_FR\n" "LngText.text" msgid "French spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Francés: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Francés: corrector ortográfico, sinónimos y reglas de corte de palabras" #. gFGrA #: module_ooo.ulf @@ -4766,7 +4766,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_HU\n" "LngText.text" msgid "Hungarian spelling dictionary, hyphenation rules, thesaurus, and grammar checker" -msgstr "Húngaro: corrector ortográfico y gramatical, sinónimos y reglas de división de palabras" +msgstr "Húngaro: corrector ortográfico y gramatical, sinónimos y reglas de corte de palabras" #. QDFn9 #: module_ooo.ulf @@ -4784,7 +4784,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_HR\n" "LngText.text" msgid "Croatian spelling dictionary, and hyphenation rules" -msgstr "Croata: corrector ortográfico y reglas de división de palabras" +msgstr "Croata: corrector ortográfico y reglas de corte de palabras" #. kfnGf #: module_ooo.ulf @@ -4802,7 +4802,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_ID\n" "LngText.text" msgid "Indonesian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Indonesio: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Indonesio: corrector ortográfico, sinónimos y reglas de corte de palabras" #. G6XKV #: module_ooo.ulf @@ -4838,7 +4838,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_IT\n" "LngText.text" msgid "Italian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Italiano: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Italiano: corrector ortográfico, sinónimos y reglas de corte de palabras" #. FVsWA #: module_ooo.ulf @@ -4910,7 +4910,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_LT\n" "LngText.text" msgid "Lithuanian spelling dictionary, and hyphenation rules" -msgstr "Lituano: corrector ortográfico y reglas de división de palabras" +msgstr "Lituano: corrector ortográfico y reglas de corte de palabras" #. f8VcG #: module_ooo.ulf @@ -4928,7 +4928,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_LV\n" "LngText.text" msgid "Latvian spelling dictionary, and hyphenation rules" -msgstr "Letón: corrector ortográfico y reglas de división de palabras" +msgstr "Letón: corrector ortográfico y reglas de corte de palabras" #. bPEcW #: module_ooo.ulf @@ -4946,7 +4946,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_MN\n" "LngText.text" msgid "Mongolian spelling dictionary, and hyphenation rules" -msgstr "Mongol: corrector ortográfico y reglas de división de palabras" +msgstr "Mongol: corrector ortográfico y reglas de corte de palabras" #. s33jG #: module_ooo.ulf @@ -4982,7 +4982,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_NL\n" "LngText.text" msgid "Dutch spelling dictionary, and hyphenation rules" -msgstr "Neerlandés: corrector ortográfico y reglas de división de palabras" +msgstr "Neerlandés: corrector ortográfico y reglas de corte de palabras" #. DJA8F #: module_ooo.ulf @@ -5000,7 +5000,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_NO\n" "LngText.text" msgid "Norwegian (Nynorsk and Bokmal) spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Noruego (nynorsk y bokmål): corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Noruego (nynorsk y bokmål): corrector ortográfico, sinónimos y reglas de corte de palabras" #. FDCJV #: module_ooo.ulf @@ -5036,7 +5036,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_PL\n" "LngText.text" msgid "Polish spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Polaco: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Polaco: corrector ortográfico, sinónimos y reglas de corte de palabras" #. QGpSq #: module_ooo.ulf @@ -5054,7 +5054,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_PT_BR\n" "LngText.text" msgid "Portuguese (Brazil) spelling Dictionary (1990 Spelling Agreement), and hyphenation rules" -msgstr "Portugués (Brasil): corrector ortográfico (acuerdo de 1990) y reglas de división de palabras" +msgstr "Portugués (Brasil): corrector ortográfico (acuerdo de 1990) y reglas de corte de palabras" #. KZETs #: module_ooo.ulf @@ -5072,7 +5072,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_PT_PT\n" "LngText.text" msgid "European Portuguese spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Portugués (Portugal): corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Portugués (Portugal): corrector ortográfico, sinónimos y reglas de corte de palabras" #. pBzE7 #: module_ooo.ulf @@ -5090,7 +5090,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_RO\n" "LngText.text" msgid "Romanian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Rumano: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Rumano: corrector ortográfico, sinónimos y reglas de corte de palabras" #. wUTBC #: module_ooo.ulf @@ -5108,7 +5108,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_RU\n" "LngText.text" msgid "Russian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Ruso: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Ruso: corrector ortográfico, sinónimos y reglas de corte de palabras" #. LvDHM #: module_ooo.ulf @@ -5144,7 +5144,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_SK\n" "LngText.text" msgid "Slovak spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Eslovaco: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Eslovaco: corrector ortográfico, sinónimos y reglas de corte de palabras" #. ypzEV #: module_ooo.ulf @@ -5162,7 +5162,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_SL\n" "LngText.text" msgid "Slovenian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Esloveno: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Esloveno: corrector ortográfico, sinónimos y reglas de corte de palabras" #. S7shF #: module_ooo.ulf @@ -5198,7 +5198,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_SR\n" "LngText.text" msgid "Serbian (Cyrillic and Latin) spelling dictionary, and hyphenation rules" -msgstr "Serbio (cirílico y latino): corrector ortográfico y reglas de división de palabras" +msgstr "Serbio (cirílico y latino): corrector ortográfico y reglas de corte de palabras" #. a5sxo #: module_ooo.ulf @@ -5252,7 +5252,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_TE\n" "LngText.text" msgid "Telugu spelling dictionary, and hyphenation rules" -msgstr "Telugu: corrector ortográfico y reglas de división de palabras" +msgstr "Telugu: corrector ortográfico y reglas de corte de palabras" #. w2MSG #: module_ooo.ulf @@ -5306,7 +5306,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_UK\n" "LngText.text" msgid "Ukrainian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "Ucraniano: corrector ortográfico, sinónimos y reglas de división de palabras" +msgstr "Ucraniano: corrector ortográfico, sinónimos y reglas de corte de palabras" #. azarG #: module_ooo.ulf @@ -5342,7 +5342,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_ZU\n" "LngText.text" msgid "Zulu hyphenation rules" -msgstr "Zulú: reglas de división de palabras" +msgstr "Zulú: reglas de corte de palabras" #. pxQ5u #: module_reportbuilder.ulf diff -Nru libreoffice-7.4.6/translations/source/es/scp2/source/xsltfilter.po libreoffice-7.4.7/translations/source/es/scp2/source/xsltfilter.po --- libreoffice-7.4.6/translations/source/es/scp2/source/xsltfilter.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/scp2/source/xsltfilter.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2013-05-24 07:16+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1369379785.000000\n" #. VPt2X @@ -23,7 +23,7 @@ "STR_NAME_MODULE_OPTIONAL_XSLTFILTERSAMPLES\n" "LngText.text" msgid "XSLT Sample Filters" -msgstr "Filtros de ejemplo XSLT" +msgstr "Filtros XSLT de ejemplo" #. QqGa5 #: module_xsltfilter.ulf @@ -32,4 +32,4 @@ "STR_DESC_MODULE_OPTIONAL_XSLTFILTERSAMPLES\n" "LngText.text" msgid "XSLT Sample Filters" -msgstr "Filtros de ejemplo XSLT" +msgstr "Filtros XSLT de ejemplo" diff -Nru libreoffice-7.4.6/translations/source/es/sd/messages.po libreoffice-7.4.7/translations/source/es/sd/messages.po --- libreoffice-7.4.6/translations/source/es/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-10 11:03+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563809077.000000\n" #. WDjkB @@ -845,7 +845,7 @@ #: sd/inc/strings.hrc:98 msgctxt "STR_ALL_SUPPORTED_FORMATS" msgid "All supported formats" -msgstr "Todos los formatos compatibles" +msgstr "Todos los formatos admitidos" #. F8m2G #: sd/inc/strings.hrc:99 @@ -1391,7 +1391,7 @@ #: sd/inc/strings.hrc:190 msgctxt "STR_NEW_CUSTOMSHOW" msgid "New Custom Slide Show" -msgstr "Nueva presentación personalizada" +msgstr "Pase personalizado nuevo" #. FDwKp #: sd/inc/strings.hrc:191 @@ -6345,7 +6345,7 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:427 msgctxt "impressprinteroptions|label6" msgid "Size" -msgstr "Tamaño" +msgstr "Tamaño" #. JxDBz #: sd/uiconfig/simpress/ui/insertslides.ui:8 @@ -8329,7 +8329,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:437 msgctxt "presentationdialog|extended_tip|window" msgid "Slide show runs in the Impress program window." -msgstr "" +msgstr "El pase de diapositivas se ejecuta en la ventana del programa Impress." #. DAKWY #: sd/uiconfig/simpress/ui/presentationdialog.ui:448 @@ -8449,7 +8449,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:655 msgctxt "presentationdialog|extended_tip|alwaysontop" msgid "The Impress window remains on top during the presentation. No other program will show its window in front of your presentation." -msgstr "" +msgstr "La ventana de Impress permanece en primer plano durante la presentación. Ningún otro programa mostrará ventanas frente al pase." #. zdH6V #: sd/uiconfig/simpress/ui/presentationdialog.ui:673 @@ -9655,7 +9655,7 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:121 msgctxt "slidetransitionspanel|extended_tip|transition_duration" msgid "Sets the duration of the slide transition." -msgstr "Establece la duración de la transición de diapositiva." +msgstr "Establece la duración de la transición entre diapositivas." #. VrA9B #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:135 @@ -9907,13 +9907,13 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:583 msgctxt "templatedialog|animation" msgid "Text Animation" -msgstr "Animación del texto" +msgstr "Animación de texto" #. dyjNi #: sd/uiconfig/simpress/ui/templatedialog.ui:631 msgctxt "templatedialog|dimensioning" msgid "Dimensioning" -msgstr "Dimensionamiento" +msgstr "Acotación" #. fcsTP #: sd/uiconfig/simpress/ui/templatedialog.ui:679 diff -Nru libreoffice-7.4.6/translations/source/es/sfx2/messages.po libreoffice-7.4.7/translations/source/es/sfx2/messages.po --- libreoffice-7.4.6/translations/source/es/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2022-12-10 11:04+0000\n" +"PO-Revision-Date: 2023-04-08 19:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562302714.000000\n" #. bHbFE @@ -3323,7 +3323,7 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:183 msgctxt "documentinfopage|userdatacb" msgid "_Apply user data" -msgstr "_Utilizar datos de usuario" +msgstr "Aplicar datos de _identidad" #. JFxmP #: sfx2/uiconfig/ui/documentinfopage.ui:197 @@ -3341,7 +3341,7 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:215 msgctxt "documentinfopage|signature" msgid "Di_gital Signatures..." -msgstr "F_irmas digitales…" +msgstr "_Firmas digitales…" #. rEEgJ #: sfx2/uiconfig/ui/documentinfopage.ui:234 @@ -4637,7 +4637,7 @@ #: sfx2/uiconfig/ui/securityinfopage.ui:31 msgctxt "securityinfopage|extended_tip|readonly" msgid "Select to allow this document to be opened in read-only mode only." -msgstr "Seleccione esta opción para permitir que este documento sólo pueda abrirse en modo de lectura." +msgstr "Seleccione esta opción para que este documento pueda abrirse solamente en modo de lectura." #. GvCw9 #: sfx2/uiconfig/ui/securityinfopage.ui:42 diff -Nru libreoffice-7.4.6/translations/source/es/starmath/messages.po libreoffice-7.4.7/translations/source/es/starmath/messages.po --- libreoffice-7.4.6/translations/source/es/starmath/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/starmath/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:51+0200\n" -"PO-Revision-Date: 2023-02-28 18:04+0000\n" +"PO-Revision-Date: 2023-03-27 19:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1844,7 +1844,7 @@ #: starmath/inc/strings.hrc:257 msgctxt "RID_MATRIX_HELP" msgid "Matrix Stack" -msgstr "Disposición matriz" +msgstr "Disposición matricial" #. qGAFn #: starmath/inc/strings.hrc:258 diff -Nru libreoffice-7.4.6/translations/source/es/svx/messages.po libreoffice-7.4.7/translations/source/es/svx/messages.po --- libreoffice-7.4.6/translations/source/es/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565118157.000000\n" #. 3GkZj @@ -2429,7 +2429,7 @@ #: include/svx/strings.hrc:429 msgctxt "SIP_SA_MEASUREBELOWREFEDGE" msgid "Lower edge dimensioning" -msgstr "Dimensiones borde inferior" +msgstr "Acotación de borde inferior" #. cFVVA #: include/svx/strings.hrc:430 @@ -2735,7 +2735,7 @@ #: include/svx/strings.hrc:480 msgctxt "SIP_EE_PARA_HYPHENATE" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. HMmA6 #: include/svx/strings.hrc:481 @@ -6212,7 +6212,7 @@ #: include/svx/strings.hrc:1117 msgctxt "RID_SVXSTR_CLEARFORM" msgid "Clear formatting" -msgstr "Limpiar el formato" +msgstr "Limpiar formato" #. f6nP8 #: include/svx/strings.hrc:1118 @@ -10477,7 +10477,7 @@ #: include/svx/svxitems.hrc:58 msgctxt "RID_ATTR_NAMES" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. ZCVVC #: include/svx/svxitems.hrc:59 @@ -11660,7 +11660,7 @@ #: svx/inc/svxerr.hrc:35 msgctxt "RID_SVXERRCTX" msgid "$(ERR) executing the hyphenation." -msgstr "$(ERR) al ejecutar la división de palabras." +msgstr "$(ERR) al ejecutar el corte de palabras." #. G3CuN #: svx/inc/svxerr.hrc:37 @@ -17199,10 +17199,9 @@ #. mAEnN #: svx/uiconfig/ui/formnavimenu.ui:72 -#, fuzzy msgctxt "formnavimenu|taborder" msgid "Tab Order..." -msgstr "Secuencia de activación..." +msgstr "Orden de tabulación…" #. Zjtdb #: svx/uiconfig/ui/formnavimenu.ui:80 @@ -18864,7 +18863,7 @@ #: svx/uiconfig/ui/rowsmenu.ui:28 msgctxt "rowsmenu|undo" msgid "Undo: Data entry" -msgstr "Deshacer entrada de datos" +msgstr "Deshacer: entrada de datos" #. xHAu7 #: svx/uiconfig/ui/rulermenu.ui:12 diff -Nru libreoffice-7.4.6/translations/source/es/sw/messages.po libreoffice-7.4.7/translations/source/es/sw/messages.po --- libreoffice-7.4.6/translations/source/es/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -32,7 +32,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:18 msgctxt "STR_FAKE_NUMBERING" msgid "Fake numbering '%NUMBERING%'" -msgstr "Numeración falsa «%NUMBERING%»" +msgstr "Numeración simulada «%NUMBERING%»" #. zE4PU #: sw/inc/AccessibilityCheckStrings.hrc:19 @@ -679,13 +679,13 @@ #: sw/inc/inspectorproperties.hrc:31 msgctxt "RID_CHAR_DIRECTFORMAT" msgid "Character Direct Formatting" -msgstr "Formato directo de carácter" +msgstr "Formato directo de caracteres" #. fYAUc #: sw/inc/inspectorproperties.hrc:32 msgctxt "RID_PARA_DIRECTFORMAT" msgid "Paragraph Direct Formatting" -msgstr "Formato directo de párrafo" +msgstr "Formato directo de párrafos" #. YUbUQ #. Format names @@ -1058,7 +1058,7 @@ #: sw/inc/inspectorproperties.hrc:96 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char No Hyphenation" -msgstr "Cter.: sin división de palabras" +msgstr "Cter.: sin corte de palabras" #. ioDYE #: sw/inc/inspectorproperties.hrc:97 @@ -1352,25 +1352,25 @@ #: sw/inc/inspectorproperties.hrc:145 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Rectangle Point" -msgstr "Punto del rectángulo de la imagen de mapa de bits de relleno" +msgstr "Relleno: mapa de bits: punto de rectángulo" #. GrmLm #: sw/inc/inspectorproperties.hrc:146 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size X" -msgstr "Tamaño X del mapa de bits de fondo" +msgstr "Relleno: mapa de bits: tamaño de X" #. stSMW #: sw/inc/inspectorproperties.hrc:147 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size Y" -msgstr "Tamaño Y del mapa de bits de fondo" +msgstr "Relleno: mapa de bits: tamaño de Y" #. zJV5G #: sw/inc/inspectorproperties.hrc:148 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Stretch" -msgstr "Ampliación del mapa de bits de fondo" +msgstr "Relleno: mapa de bits: estirar" #. HMq2D #: sw/inc/inspectorproperties.hrc:149 @@ -1382,25 +1382,25 @@ #: sw/inc/inspectorproperties.hrc:150 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap URL" -msgstr "URL del mapa de bits de fondo" +msgstr "Relleno: mapa de bits: URL" #. Fd28G #: sw/inc/inspectorproperties.hrc:151 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Color" -msgstr "Color de relleno" +msgstr "Relleno: color" #. neFA2 #: sw/inc/inspectorproperties.hrc:152 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Color2" -msgstr "Color2 de relleno" +msgstr "Relleno: color 2" #. 72i4Q #: sw/inc/inspectorproperties.hrc:153 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient" -msgstr "Gradiente de relleno" +msgstr "Relleno: degradado" #. uWcQT #: sw/inc/inspectorproperties.hrc:154 @@ -1736,7 +1736,7 @@ #: sw/inc/inspectorproperties.hrc:209 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation No Last Word" -msgstr "Párr.: división de palabras salvo la última" +msgstr "Párr.: corte de palabras salvo la última" #. 32PM5 #: sw/inc/inspectorproperties.hrc:210 @@ -1748,7 +1748,7 @@ #: sw/inc/inspectorproperties.hrc:211 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Zone" -msgstr "Párr.: zona de división de palabras" +msgstr "Párr.: zona de corte de palabras" #. 4bemD #: sw/inc/inspectorproperties.hrc:212 @@ -1790,7 +1790,7 @@ #: sw/inc/inspectorproperties.hrc:218 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hyphenation" -msgstr "Párr. con división de palabras" +msgstr "Párr. con corte de palabras" #. mHDWE #: sw/inc/inspectorproperties.hrc:219 @@ -3703,7 +3703,7 @@ #: sw/inc/strings.hrc:276 msgctxt "STR_STATSTR_HYPHEN" msgid "Hyphenation..." -msgstr "División de palabras…" +msgstr "Corte de palabras…" #. Dku8Y #: sw/inc/strings.hrc:277 @@ -3835,7 +3835,7 @@ #: sw/inc/strings.hrc:298 msgctxt "STR_REDLINE_UNKNOWN_AUTHOR" msgid "Unknown Author" -msgstr "Autor desconocido" +msgstr "Autoría desconocida" #. XUSDj #: sw/inc/strings.hrc:299 @@ -4475,26 +4475,26 @@ "The interactive hyphenation is already active\n" "in a different document" msgstr "" -"La división de palabras interactiva ya está activa\n" +"El corte de palabras interactivo ya está activo\n" "en otro documento" #. 68AYK #: sw/inc/strings.hrc:413 msgctxt "STR_HYPH_TITLE" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. EDxsk #: sw/inc/strings.hrc:414 msgctxt "STR_HYPH_MISSING" msgid "Missing hyphenation data" -msgstr "Faltan datos de división de palabras" +msgstr "Faltan datos de corte de palabras" #. TEP66 #: sw/inc/strings.hrc:415 msgctxt "STR_HYPH_MISSING" msgid "Please install the hyphenation package for locale “%1”." -msgstr "Instale el paquete de división de palabras para el idioma y región «%1»." +msgstr "Instale el paquete de corte de palabras para el idioma y región «%1»." #. bJFYS #: sw/inc/strings.hrc:416 @@ -7341,7 +7341,7 @@ #: sw/inc/strings.hrc:919 msgctxt "STR_SEQFLD" msgid "Number range" -msgstr "Secuencia" +msgstr "Intervalo numérico" #. ACE5s #: sw/inc/strings.hrc:920 @@ -8384,13 +8384,13 @@ #: sw/inc/strings.hrc:1133 msgctxt "STR_REGISTER_ON" msgid "Page line-spacing" -msgstr "" +msgstr "Conformidad de registro" #. Cui3U #: sw/inc/strings.hrc:1134 msgctxt "STR_REGISTER_OFF" msgid "Not page line-spacing" -msgstr "" +msgstr "Sin conformidad de registro" #. 4RL9X #: sw/inc/strings.hrc:1135 @@ -9650,7 +9650,7 @@ #: sw/inc/strings.hrc:1361 msgctxt "STR_HYP_OK" msgid "Hyphenation completed" -msgstr "Ha terminado la división de palabras." +msgstr "Ha terminado el corte de palabras." #. rZBXF #: sw/inc/strings.hrc:1362 @@ -10048,7 +10048,7 @@ #: sw/inc/utlui.hrc:37 msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Automatic *bold*" -msgstr "*Negritas* automáticas" +msgstr "*Negrita* automática" #. oMfhs #: sw/inc/utlui.hrc:38 @@ -10492,7 +10492,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:291 msgctxt "asciifilterdialog|extended_tip|includebom" msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file." -msgstr "" +msgstr "Una marca de orden de bytes (BOM, siglas en inglés) es una secuencia de bytes que se utiliza para señalar la codificación Unicode de un archivo de texto. Es aplicable únicamente al conjunto de caracteres Unicode." #. B2ofV #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309 @@ -11992,7 +11992,7 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:109 msgctxt "charurlpage|extended_tip|urled" msgid "Enter a URL for the file that you want to open when you click the hyperlink." -msgstr "Especifique un URL para el archivo que quiera abrir al pulsar en el hiperenlace." +msgstr "Especifique un URL que apunte al archivo que quiera que se abra cuando se pulse en el hiperenlace." #. YGnoF #: sw/uiconfig/swriter/ui/charurlpage.ui:127 @@ -15368,7 +15368,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:510 msgctxt "footnotepage|extended_tip|FootnotePage" msgid "Specifies the formatting for footnotes." -msgstr "" +msgstr "Permite especificar el formato de las notas al pie." #. MV5EC #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:51 @@ -16718,13 +16718,13 @@ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:31 msgctxt "inputfielddialog|next" msgid "_Previous" -msgstr "" +msgstr "_Anterior" #. iwh9e #: sw/uiconfig/swriter/ui/inputfielddialog.ui:45 msgctxt "inputfielddialog|next" msgid "_Next" -msgstr "" +msgstr "_Siguiente" #. YpSqb #: sw/uiconfig/swriter/ui/inputfielddialog.ui:52 @@ -18470,7 +18470,7 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:298 msgctxt "linenumbering|extended_tip|intervalspin" msgid "Enter the counting interval for the line numbers." -msgstr "Proporcione el intervalo de conteo de los números de renglones." +msgstr "Proporcione el intervalo de recuento de los números de renglones." #. YatD8 #: sw/uiconfig/swriter/ui/linenumbering.ui:312 @@ -18530,7 +18530,7 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:495 msgctxt "linenumbering|extended_tip|blanklines" msgid "Includes empty paragraphs in the line count." -msgstr "Incluye párrafos vacíos en el conteo de los renglones." +msgstr "Incluye párrafos vacíos en el recuento de los renglones." #. qnnhG #: sw/uiconfig/swriter/ui/linenumbering.ui:507 @@ -19730,7 +19730,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:216 msgctxt "mmresultemaildialog|liststore1" msgid "Adobe PDF-Document" -msgstr "Documento PDF de Adobe" +msgstr "Documento PDF" #. LpGGz #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:217 @@ -22903,7 +22903,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:288 msgctxt "extended_tip|OptCompatPage" msgid "Specifies compatibility settings for text documents. These options help in fine-tuning Writer when importing Microsoft Word documents." -msgstr "" +msgstr "Permite especificar configuraciones de compatibilidad para documentos de texto. Estas opciones contribuyen a optimizar la importación de documentos de Microsoft Word." #. kHud8 #: sw/uiconfig/swriter/ui/optfonttabpage.ui:35 @@ -22939,7 +22939,7 @@ #: sw/uiconfig/swriter/ui/optfonttabpage.ui:103 msgctxt "optfonttabpage|caption_label" msgid "C_aption:" -msgstr "_Pie:" +msgstr "Leye_nda:" #. mBVuP #: sw/uiconfig/swriter/ui/optfonttabpage.ui:117 @@ -22969,7 +22969,7 @@ #: sw/uiconfig/swriter/ui/optfonttabpage.ui:214 msgctxt "extended_tip|labelbox" msgid "Specifies the font used for the captions of images and tables." -msgstr "Especifica el tipo de letra que se usará en los pies de las imágenes y las tablas." +msgstr "Especifica el tipo de letra que se usará en las leyendas de las imágenes y las tablas." #. v8res #: sw/uiconfig/swriter/ui/optfonttabpage.ui:238 @@ -23047,7 +23047,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:61 msgctxt "extended_tip|hyphens" msgid "Specifies whether soft hyphens (called also as optional or discretionary hyphens) are displayed. These are hidden user-defined delimiters that you enter within a word by pressing Ctrl+Hyphen(-). Words with soft hyphens are only separated at the end of a line at the point where a soft hyphen has been inserted, irrespective of whether the automatic hyphenation is activated or deactivated." -msgstr "Especifica si se mostrarán los guiones discrecionales (también llamados opcionales o de división; en inglés «soft hyphen»). Estos delimitadores definidos por el usuario pueden insertarse al presionar Ctrl + guion. Las palabras con guiones discrecionales se separarán a final de renglón solo en el punto de inserción del guion, independientemente de que la división de palabras automática esté activada o no." +msgstr "Especifica si se mostrarán los guiones discrecionales (también llamados opcionales o de división; en inglés «soft hyphen»). Estos delimitadores definidos por el usuario pueden insertarse al presionar Ctrl + guion. Las palabras con guiones discrecionales se separarán a final de renglón solo en el punto de inserción del guion, independientemente de que el corte de palabras automático esté activado o no." #. GTJrw #: sw/uiconfig/swriter/ui/optformataidspage.ui:72 @@ -25371,7 +25371,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:378 msgctxt "printoptionspage|extended_tip|inmargins" msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes." -msgstr "" +msgstr "Incluya los cuadros de los comentarios en el margen de la página. El contenido de la página se representa de forma tal que tanto el contenido como los comentarios quepan." #. VeG6V #: sw/uiconfig/swriter/ui/printoptionspage.ui:393 @@ -28579,7 +28579,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:413 msgctxt "tocentriespage|chapterentry" msgid "Number range only" -msgstr "Solo la secuencia" +msgstr "Solo el intervalo" #. TyVE4 #: sw/uiconfig/swriter/ui/tocentriespage.ui:414 @@ -28591,7 +28591,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:415 msgctxt "tocentriespage|chapterentry" msgid "Number range and description" -msgstr "Secuencia y descripción" +msgstr "Intervalo numérico y descripción" #. bmtXn #: sw/uiconfig/swriter/ui/tocentriespage.ui:419 @@ -28837,7 +28837,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:964 msgctxt "tocentriespage|extended_tip|key1lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Seleccione la entrada por la que deben ordenarse las entradas bibliográficas. Esta opción solo está disponible si se selecciona el botón de opción Contenido en el apartado Ordenar por." +msgstr "Seleccione la entrada por la que deben ordenarse las entradas bibliográficas. Esta opción solo está disponible si se selecciona el botón de opción «Contenido» en el apartado «Ordenar por»." #. B7NqZ #: sw/uiconfig/swriter/ui/tocentriespage.ui:977 @@ -28855,13 +28855,13 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1005 msgctxt "tocentriespage|extended_tip|key2lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Seleccione la entrada por la que deben ordenarse las entradas bibliográficas. Esta opción solo está disponible si se selecciona el botón de opción Contenido en el apartado Ordenar por." +msgstr "Seleccione la entrada por la que deben ordenarse las entradas bibliográficas. Esta opción solo está disponible si se selecciona el botón de opción «Contenido» en el apartado «Ordenar por»." #. tfvwe #: sw/uiconfig/swriter/ui/tocentriespage.ui:1022 msgctxt "tocentriespage|extended_tip|key3lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Seleccione la entrada por la que deben ordenarse las entradas bibliográficas. Esta opción solo está disponible si se selecciona el botón de opción Contenido en el apartado Ordenar por." +msgstr "Seleccione la entrada por la que deben ordenarse las entradas bibliográficas. Esta opción solo está disponible si se selecciona el botón de opción «Contenido» en el apartado «Ordenar por»." #. 6GYwu #: sw/uiconfig/swriter/ui/tocentriespage.ui:1036 @@ -29773,7 +29773,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:614 msgctxt "viewoptionspage|suboutlinelevelscontent" msgid "Include sub _levels" -msgstr "" +msgstr "Incluir sub_niveles" #. yqTFr #: sw/uiconfig/swriter/ui/viewoptionspage.ui:623 diff -Nru libreoffice-7.4.6/translations/source/es/swext/mediawiki/help.po libreoffice-7.4.7/translations/source/es/swext/mediawiki/help.po --- libreoffice-7.4.6/translations/source/es/swext/mediawiki/help.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/swext/mediawiki/help.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-03 07:39+0000\n" +"PO-Revision-Date: 2023-03-15 14:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1548051207.000000\n" #. 7EFBE @@ -590,7 +590,7 @@ "par_id3541673\n" "help.text" msgid "Images cannot be exported by a transformation producing a single file of wiki text. However, if the image is already uploaded to the target wiki domain (e. g., Wikimedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported." -msgstr "No se pueden exportar imágenes en una transformación que produzca un solo archivo de texto de wiki. No obstante, si la imagen que quiere emplear ya se ha cargado en el dominio del wiki de destino (p. ej., Wikimedia Commons), la transformación producirá una etiqueta de imagen válida que incluirá la imagen. Se admite asimismo la adición de pies de imagen." +msgstr "No se pueden exportar imágenes en una transformación que produzca un solo archivo de texto de wiki. No obstante, si la imagen que quiere emplear ya se ha cargado en el dominio del wiki de destino (p. ej., Wikimedia Commons), la transformación producirá una etiqueta de imagen válida que incluirá la imagen. Se admite asimismo la adición de leyendas de imagen." #. nGuGG #: wikiformats.xhp diff -Nru libreoffice-7.4.6/translations/source/es/wizards/source/resources.po libreoffice-7.4.7/translations/source/es/wizards/source/resources.po --- libreoffice-7.4.6/translations/source/es/wizards/source/resources.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/es/wizards/source/resources.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-14 11:05+0000\n" +"PO-Revision-Date: 2023-03-27 19:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1556397922.000000\n" #. 8UKfi @@ -212,7 +212,7 @@ "RID_COMMON_21\n" "property.text" msgid "The wizard could not be run, because important files were not found.\\nUnder 'Tools - Options - %PRODUCTNAME - Paths' click the 'Default' button to reset the paths to the original default settings.\\nThen run the wizard again." -msgstr "No se pudo ejecutar el asistente porque no se han encontrado archivos importantes.\\nEn «Herramientas > Opciones > %PRODUCTNAME > Rutas», pulse el botón «Predeterminar» para restablecer las rutas a su configuración original.\\nA continuación, vuelva a ejecutar el asistente." +msgstr "No se pudo ejecutar el asistente porque no se han encontrado archivos importantes.\\nEn «Herramientas ▸ Opciones ▸ %PRODUCTNAME ▸ Rutas», pulse en el botón «Predeterminar» para restablecer las rutas a su configuración original.\\nA continuación, vuelva a ejecutar el asistente." #. GohbP #: resources_en_US.properties @@ -3236,7 +3236,7 @@ "STEP_CONVERTER_1\n" "property.text" msgid "Selection" -msgstr "Selección" +msgstr "Selección" #. NCtfG #: resources_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/fa/dictionaries/ckb.po libreoffice-7.4.7/translations/source/fa/dictionaries/ckb.po --- libreoffice-7.4.6/translations/source/fa/dictionaries/ckb.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fa/dictionaries/ckb.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,14 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-02-18 12:38+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-25 07:34+0000\n" +"Last-Translator: goodosuser \n" +"Language-Team: Persian \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" #. UGHNx #: description.xml @@ -20,4 +22,4 @@ "dispname\n" "description.text" msgid "Central Kurdish (Sorani) spelling dictionary" -msgstr "" +msgstr "واژه‌نامه املایی کردی مرکزی(سورانی)" diff -Nru libreoffice-7.4.6/translations/source/fa/editeng/messages.po libreoffice-7.4.7/translations/source/fa/editeng/messages.po --- libreoffice-7.4.6/translations/source/fa/editeng/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fa/editeng/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:49+0200\n" -"PO-Revision-Date: 2021-02-26 09:37+0000\n" -"Last-Translator: Hossein \n" -"Language-Team: Persian \n" +"PO-Revision-Date: 2023-04-29 09:35+0000\n" +"Last-Translator: goodosuser \n" +"Language-Team: Persian \n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1522622415.000000\n" #. BHYB4 @@ -1319,25 +1319,25 @@ #: include/editeng/editrids.hrc:233 msgctxt "RID_SVXITEMS_HYPHEN_NO_CAPS_TRUE" msgid "Not hyphenated CAPS" -msgstr "" +msgstr "حروف برزرگ ابتدا خط تیره گذاری نشد." #. EnQvu #: include/editeng/editrids.hrc:234 msgctxt "RID_SVXITEMS_HYPHEN_NO_CAPS_FALSE" msgid "Not hyphenated last word" -msgstr "" +msgstr "آخرین کلمه خط تیره گذاری نیست." #. gphfE #: include/editeng/editrids.hrc:235 msgctxt "RID_SVXITEMS_HYPHEN_MINWORDLEN" msgid "%1 characters in words" -msgstr "" +msgstr "%1 نویسه ها در کلمات" #. imVah #: include/editeng/editrids.hrc:236 msgctxt "RID_SVXITEMS_HYPHEN_ZONE" msgid "Hyphenation zone " -msgstr "" +msgstr "ناحیه خط تیره گذاری شده " #. zVxGk #: include/editeng/editrids.hrc:237 diff -Nru libreoffice-7.4.6/translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,28 +4,27 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-03-03 18:39+0000\n" +"PO-Revision-Date: 2023-04-06 20:34+0000\n" "Last-Translator: Hossein \n" -"Language-Team: Persian \n" +"Language-Team: Persian \n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542023219.000000\n" #. W5ukN #: BaseWindowState.xcu -#, fuzzy msgctxt "" "BaseWindowState.xcu\n" "..BaseWindowState.UIElements.States.private:resource/popupmenu/edit\n" "UIName\n" "value.text" msgid "Database Object" -msgstr "اشیاء پایگاه‌داده‌ای" +msgstr "شیء پایگاه‌داده" #. AGLtk #: BaseWindowState.xcu @@ -135,7 +134,7 @@ "Label\n" "value.text" msgid "Form List Box" -msgstr "" +msgstr "جعبهٔ فهرست فرم" #. C9VnM #: BasicIDECommands.xcu @@ -179,7 +178,6 @@ #. Hw5Uq #: BasicIDECommands.xcu -#, fuzzy msgctxt "" "BasicIDECommands.xcu\n" "..BasicIDECommands.UserInterface.Commands..uno:NewModule\n" @@ -190,14 +188,13 @@ #. iPA78 #: BasicIDECommands.xcu -#, fuzzy msgctxt "" "BasicIDECommands.xcu\n" "..BasicIDECommands.UserInterface.Commands..uno:NewDialog\n" "Label\n" "value.text" msgid "BASIC Dialog" -msgstr "محاورهٔ بیسیک" +msgstr "کادر گفتگوی بیسیک" #. aMskS #: BasicIDECommands.xcu @@ -21159,7 +21156,7 @@ "Label\n" "value.text" msgid "Copy Hyperlink Location" -msgstr "" +msgstr "رونوشت مکان فراپیوند" #. EaNDM #: GenericCommands.xcu @@ -24629,7 +24626,7 @@ "Label\n" "value.text" msgid "Con~trol Properties..." -msgstr "" +msgstr "گ~زینه‌های کنترل…" #. TcfRB #: GenericCommands.xcu @@ -29093,14 +29090,13 @@ #. MgnKX #: ReportCommands.xcu -#, fuzzy msgctxt "" "ReportCommands.xcu\n" ".ReportCommands.UserInterface.Commands..uno:EditControlMenu\n" "Label\n" "value.text" msgid "Control" -msgstr "کنترل‌ها" +msgstr "کنترل" #. VhGHC #: ReportCommands.xcu @@ -31140,7 +31136,7 @@ "Label\n" "value.text" msgid "Content Control Properties" -msgstr "" +msgstr "گزینه‌های کنترل محتوا" #. npNpZ #: WriterCommands.xcu @@ -31313,7 +31309,7 @@ "Label\n" "value.text" msgid "Content Controls" -msgstr "" +msgstr "کنترل‌های محتوا" #. isyh9 #: WriterCommands.xcu @@ -33823,7 +33819,7 @@ "Label\n" "value.text" msgid "Previous Page" -msgstr "صفحه‌ی قبل" +msgstr "صفحهٔ قبل" #. 8QF3y #: WriterCommands.xcu @@ -33843,7 +33839,7 @@ "Label\n" "value.text" msgid "Next Page" -msgstr "صفحه‌ی بعد" +msgstr "صفحهٔ بعد" #. pWNTi #: WriterCommands.xcu @@ -36408,7 +36404,7 @@ "Label\n" "value.text" msgid "Content Controls" -msgstr "" +msgstr "کنترل‌های محتوا" #. SGVjq #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/fi/basctl/messages.po libreoffice-7.4.7/translations/source/fi/basctl/messages.po --- libreoffice-7.4.6/translations/source/fi/basctl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/basctl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-19 15:28+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564226374.000000\n" #. fniWp @@ -433,7 +433,7 @@ "\n" "$(ARG1)\n" "\n" -"Anna valintaikkunalle uusi nimi säilyttääksesi nykyisen valintaikkunan, tai korvaa nykyinen valintaikkuna.\n" +"Nimeä valintaikkuna uudelleen säilyttääksesi nykyisen valintaikkunan tai korvaa olemassa oleva valintaikkuna.\n" " " #. FRQSJ @@ -452,7 +452,7 @@ #: basctl/inc/strings.hrc:95 msgctxt "RID_STR_DLGIMP_MISMATCH_TITLE" msgid "Dialog Import - Language Mismatch" -msgstr "Valintaikkunan tuonti - Kielet eivät täsmää" +msgstr "Valintaikkunan tuonti – kielet eivät täsmää" #. zcJw8 #: basctl/inc/strings.hrc:96 @@ -1016,7 +1016,7 @@ #: basctl/uiconfig/basicide/ui/importlibdialog.ui:133 msgctxt "importlibdialog|replace" msgid "Replace existing libraries" -msgstr "Korvaa nykyiset kirjastot" +msgstr "Korvaa olemassa olevat kirjastot" #. AyUpF #: basctl/uiconfig/basicide/ui/importlibdialog.ui:141 diff -Nru libreoffice-7.4.6/translations/source/fi/cui/messages.po libreoffice-7.4.7/translations/source/fi/cui/messages.po --- libreoffice-7.4.6/translations/source/fi/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-25 07:34+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -2207,7 +2207,7 @@ #: cui/inc/tipoftheday.hrc:55 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create editable Hybrid PDFs with %PRODUCTNAME." -msgstr "" +msgstr "%PRODUCTNAMEn avulla voi luoda muokattavia hybridi-PDF-tiedostoja." #. LBkjN #: cui/inc/tipoftheday.hrc:56 @@ -2225,7 +2225,7 @@ #: cui/inc/tipoftheday.hrc:58 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create fillable form documents (even PDFs) with %PRODUCTNAME." -msgstr "" +msgstr "%PRODUCTNAMEn avulla voi luoda täytettäviä lomakeasiakirjoja (myös PDF-tiedostoina)." #. BSUoN #: cui/inc/tipoftheday.hrc:59 @@ -2249,25 +2249,25 @@ #: cui/inc/tipoftheday.hrc:62 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Icon Theme." -msgstr "" +msgstr "Vaihda kuvakkeita valitsemalla Työkalut ▸ Asetukset ▸ %PRODUCTNAME ▸ Näkymä ▸ Kuvaketeema." #. Udk4L #: cui/inc/tipoftheday.hrc:63 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can display a number as a fraction (0.125 = 1/8): Format ▸ Cells, under Numbers tab in the Category select Fraction." -msgstr "" +msgstr "Luvun voi näyttää murtolukuna (0,125 = 1/8): Valitse Muotoilu ▸ Solut ja valitse Luvut-välilehdeltä Luokka-kohdasta Murtoluku." #. VxuFm #: cui/inc/tipoftheday.hrc:64 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To remove a hyperlink but keep its text, right-click on the hyperlink, and use “Remove Hyperlink”." -msgstr "Poistaaksesi hyperlinkin, mutta säilyttääksesi sen tekstin, napsauta hyperlinkkiä hiiren oikealla painikkeella ja valitse \"Poista hyperlinkki\"." +msgstr "Poista hyperlinkki, mutta säilytä sen teksti napsauttamalla hyperlinkkiä hiiren oikealla painikkeella ja valitsemalla ”Poista hyperlinkki”." #. FeNXF #: cui/inc/tipoftheday.hrc:65 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To remove several hyperlinks at once, select the text with the hyperlinks, then right-click and use “Remove Hyperlink”." -msgstr "Poistaaksesi useita hyperlinkkejä kerralla valitse teksti, jossa hyperlinkit ovat, napsauta hiiren oikealla painikkeella ja valitse \"Poista hyperlinkki\"." +msgstr "Poista useita hyperlinkkejä kerralla valitsemalla teksti, jossa hyperlinkit ovat, napsauttamalla hiiren oikealla painikkeella ja valitsemalla ”Poista hyperlinkki”." #. VnFnz #: cui/inc/tipoftheday.hrc:66 @@ -2291,13 +2291,13 @@ #: cui/inc/tipoftheday.hrc:69 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To distribute some text in multi-columns select the text and apply Format ▸ Columns." -msgstr "" +msgstr "Jaa teksti usealle palstalle valitsemalla teksti ja valitsemalla Muotoilu ▸ Palstat." #. hr7ym #: cui/inc/tipoftheday.hrc:70 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use View ▸ Value Highlighting to display cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected cells/grey background." -msgstr "" +msgstr "Näytä ▸ Arvojen korostus näyttää solujen sisällön väreissä: teksti mustana, kaavat vihreinä, luvut sinisinä, suojatut solut harmaalla taustalla." #. kKdqp #. local help missing @@ -2347,7 +2347,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 "" +msgstr "Taulukon rivit voi numeroida automaattisesti Writerissä valitsemalla sarakkeen ja käyttämällä luettelotyyliä." #. AzNEm #. no local help URI @@ -2652,7 +2652,7 @@ #: cui/inc/tipoftheday.hrc:130 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via View ▸ User Interface." -msgstr "" +msgstr "%PRODUCTNAMEn ulkoasua voi muuttaa valitsemalla Näytä ▸ Käyttöliittymä." #. J853i #: cui/inc/tipoftheday.hrc:131 @@ -2694,7 +2694,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 "Vaihto+%MOD1+Delete poistaa kohdistimen kohdalta nykyisen virkkeen loppuun." +msgstr "Vaihto+%MOD1+Delete poistaa kohdistimen kohdasta alkaen virkkeen loppuun." #. XDhNo #: cui/inc/tipoftheday.hrc:138 @@ -2724,7 +2724,7 @@ #: cui/inc/tipoftheday.hrc:142 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert." -msgstr "" +msgstr "Napsautttamalla erikoismerkin kuvaketta työkalurivillä pääset lisäämään nopeasti suosikki- ja viimeksi käytettyjä erikoismerkkejä." #. 7UE7V #: cui/inc/tipoftheday.hrc:143 @@ -2821,7 +2821,7 @@ #: cui/inc/tipoftheday.hrc:158 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering." -msgstr "" +msgstr "Haluatko lisätä arvon samaan paikkaan useissa taulukoissa? Valitse taulukot pitämällä %MOD1-näppäintä painettuna ja napsauttamalla välilehtiä ennen arvon syöttämistä." #. XsdGx #: cui/inc/tipoftheday.hrc:159 @@ -2834,13 +2834,13 @@ #: cui/inc/tipoftheday.hrc:160 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button by going to Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Mouse ▸ Middle button." -msgstr "" +msgstr "Voit mukauttaa hiiren keskimmäisen painikkeen toimintaa kohdasta Työkalut ▸ Asetukset ▸ %PRODUCTNAME ▸ Näkymä ▸ Hiiri ▸ Keskipainike." #. qQsXD #: cui/inc/tipoftheday.hrc:161 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”." -msgstr "" +msgstr "Haluatko tulostaa kaksi pystysivua yhtelle vaakasivulle (pienentäen A4:t A5:ksi)? Tiedosto ▸ Tulosta ja valitse ”Sivuja arkille”-kohdassa 2." #. GmBZk #: cui/inc/tipoftheday.hrc:162 @@ -3073,7 +3073,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 "" +msgstr "Älä käytä sarkaimia kohteiden asetteluun Writer-asiakirjassa. Riippuen mitä olet tekemässä, reunaton taulukko voi olla parempi valinta." #. 6GtGH #: cui/inc/tipoftheday.hrc:199 @@ -3111,7 +3111,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 "" +msgstr "Käytä Otsikko-kappaletyylejä Writerissä pikanäppäimillä: %MOD1+1 käyttää Otsikko 1 -tyyliä, %MOD1+2 käyttää Otsikko 2 -tyyliä jne." #. DA82R #: cui/inc/tipoftheday.hrc:205 @@ -3141,7 +3141,7 @@ #: cui/inc/tipoftheday.hrc:209 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." -msgstr "Lisätäksesi nykyisen päivämäärän asiakirjaan, valitse Lisää ▸ Kenttä ▸ Päivämäärä." +msgstr "Lisää tämänhetkinen päivämäärä asiakirjaan valitsemalla Lisää ▸ Kenttä ▸ Päivämäärä." #. vGKBe #: cui/inc/tipoftheday.hrc:210 @@ -3247,7 +3247,7 @@ #: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)." -msgstr "" +msgstr "Kun olet luonut tyylin toisen tyylin pohjalta, voit antaa joko prosenttiarvon tai pistearvon (esim. 110 % tai −2 pt tai +5 pt)." #. PBjFr #: cui/inc/tipoftheday.hrc:227 @@ -3259,7 +3259,7 @@ #: cui/inc/tipoftheday.hrc:228 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Batch-convert your Microsoft Office documents to the OpenDocument format by using the Document Converter wizard in menu File ▸ Wizards ▸ Document Converter." -msgstr "" +msgstr "Muunna Microsoft Office -asiakirjat OpenDocument-muotoon eräajona käyttämällä asiakirjamuunninta (Tiedosto ▸ Ohjatut toiminnot ▸ Asiakirjamuunnin)." #. WMueE #: cui/inc/tipoftheday.hrc:229 @@ -3289,7 +3289,7 @@ #: cui/inc/tipoftheday.hrc:233 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number." -msgstr "" +msgstr "Säilytä nollat luvun edessä ”Etunollia”-solumuotoiluasetuksella tai muotoile solu tekstiksi ennen luvun syöttämistä." #. jkXFE #: cui/inc/tipoftheday.hrc:234 @@ -3301,7 +3301,7 @@ #: cui/inc/tipoftheday.hrc:235 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." -msgstr "" +msgstr "Poista kaikki tulostusalueet kerralla valitsemalla kaikki taulukot ja valitsemalla sitten Muotoilu ▸ Tulostusalueet ▸ Tyhjennä." #. Cqtjg #: cui/inc/tipoftheday.hrc:236 @@ -3350,7 +3350,7 @@ #: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing." -msgstr "" +msgstr "Kehyksiä voi linkittää siten, että teksti rivittyy yhdestä kehyksestä toiseen kuten julkaisuohjelmistoissa." #. AjBA3 #. local help missing @@ -3458,7 +3458,7 @@ #: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." -msgstr "" +msgstr "Sisällysluetteloiden lisäksi %PRODUCTNAME voi luoda aakkosellisia-, kuva-, taulukko-, objekti-, lähdeluettelo- ja käyttäjän määrittämiä hakemistoja." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html @@ -3496,7 +3496,7 @@ #: cui/inc/tipoftheday.hrc:266 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." -msgstr "Etsiäksesi useista laskentataulukoista, valitse ne ennen haun aloittamista." +msgstr "Etsi useista laskentataulukoista valitsemalla ne ennen haun aloittamista." #. Jd6KJ #: cui/inc/tipoftheday.hrc:267 @@ -9874,7 +9874,7 @@ #: cui/uiconfig/ui/gradientpage.ui:477 msgctxt "gradientpage|extended_tip|colortomtr" msgid "Enter the intensity for the color in the To Color box, where 0% corresponds to black, and 100 % to the selected color." -msgstr "" +msgstr "Syötä Väriin-ruudussa valitun värin intensiteetti. 0 % vastaa mustaa ja 100 % valittua väriä." #. C6iys #: cui/uiconfig/ui/gradientpage.ui:499 @@ -9898,7 +9898,7 @@ #: cui/uiconfig/ui/gradientpage.ui:553 msgctxt "gradientpage|extended_tip|colorfrommtr" msgid "Enter the intensity for the color in the From Color box, where 0% corresponds to black, and 100 % to the selected color." -msgstr "" +msgstr "Syötä Väristä-ruudussa valitun värin intensiteetti. 0 % vastaa mustaa ja 100 % valittua väriä." #. TQFE8 #: cui/uiconfig/ui/gradientpage.ui:566 @@ -21668,7 +21668,7 @@ #: cui/uiconfig/ui/tipofthedaydialog.ui:29 msgctxt "TipOfTheDay|Checkbox_Tooltip" msgid "Enable the dialog again at Tools ▸ Options ▸ General, or Help ▸ Show Tip of the Day" -msgstr "" +msgstr "Ikkunan saa uudelleen näkyviin valitsemalla Työkalut ▸ Asetukset ▸ Yleistä tai Ohje ▸ Näytä päivän vinkki" #. GALqP #: cui/uiconfig/ui/tipofthedaydialog.ui:43 diff -Nru libreoffice-7.4.6/translations/source/fi/extensions/messages.po libreoffice-7.4.7/translations/source/fi/extensions/messages.po --- libreoffice-7.4.6/translations/source/fi/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-02-03 15:33+0000\n" +"PO-Revision-Date: 2023-03-08 23:34+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -3320,7 +3320,7 @@ #: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:371 msgctxt "gridfieldsselectionpage|label1" msgid "Existing fields" -msgstr "Nykyiset kentät" +msgstr "Olemassa olevat kentät" #. PDhUx #: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:389 diff -Nru libreoffice-7.4.6/translations/source/fi/filter/messages.po libreoffice-7.4.7/translations/source/fi/filter/messages.po --- libreoffice-7.4.6/translations/source/fi/filter/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/filter/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-15 22:28+0200\n" -"PO-Revision-Date: 2023-02-02 20:34+0000\n" +"PO-Revision-Date: 2023-04-29 09:35+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -658,7 +658,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:657 msgctxt "pdfgeneralpage|pdfa" msgid "Archive (P_DF/A, ISO 19005)" -msgstr "Arkisto (P_DF/A, ISO 19005)" +msgstr "Arkistointi (P_DF/A, ISO 19005)" #. qQjPA #: filter/uiconfig/ui/pdfgeneralpage.ui:661 diff -Nru libreoffice-7.4.6/translations/source/fi/helpcontent2/source/auxiliary.po libreoffice-7.4.7/translations/source/fi/helpcontent2/source/auxiliary.po --- libreoffice-7.4.6/translations/source/fi/helpcontent2/source/auxiliary.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/helpcontent2/source/auxiliary.po 2023-05-03 15:22:13.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: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2022-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-04-19 15:29+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1532004622.000000\n" #. fEEXD @@ -311,7 +311,7 @@ "0815\n" "node.text" msgid "Writing Calc Macros" -msgstr "" +msgstr "Calc-makrojen kirjoittaminen" #. vBXqp #: scalc.tree @@ -851,7 +851,7 @@ "030101\n" "node.text" msgid "%PRODUCTNAME Formula Elements" -msgstr "" +msgstr "%PRODUCTNAMEn kaavaelementit" #. V99im #: smath.tree @@ -1049,7 +1049,7 @@ "0218\n" "node.text" msgid "Troubleshooting Tips" -msgstr "Vihjeitä vianetsintään" +msgstr "Vinkkejä ongelmien ratkaisuun" #. qLMLk #: swriter.tree @@ -1103,4 +1103,4 @@ "06\n" "help_section.text" msgid "HTML Documents (Writer Web)" -msgstr "" +msgstr "HTML-asiakirjat (Writer Web)" diff -Nru libreoffice-7.4.6/translations/source/fi/helpcontent2/source/text/smath/guide.po libreoffice-7.4.7/translations/source/fi/helpcontent2/source/text/smath/guide.po --- libreoffice-7.4.6/translations/source/fi/helpcontent2/source/text/smath/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/helpcontent2/source/text/smath/guide.po 2023-05-03 15:22:13.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-04 18:05+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: Tuomo Keskitalo \n" +"PO-Revision-Date: 2023-03-09 16:34+0000\n" +"Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1494370118.000000\n" #. P9FEQ @@ -392,7 +392,7 @@ "bm_id52164185802587\n" "help.text" msgid "List of predefined colors" -msgstr "" +msgstr "Värien nimilista" #. wbRDh #: color.xhp @@ -554,7 +554,7 @@ "par_id841641846836253\n" "help.text" msgid "Hot pink" -msgstr "" +msgstr "pinkki" #. 9oHjZ #: color.xhp @@ -599,7 +599,7 @@ "par_id841641846837653\n" "help.text" msgid "Midnight" -msgstr "" +msgstr "yönsininen" #. Ymn82 #: color.xhp @@ -635,7 +635,7 @@ "par_id841641846836041\n" "help.text" msgid "Orange red" -msgstr "" +msgstr "punaoranssi" #. opiDJ #: color.xhp @@ -680,7 +680,7 @@ "par_id841641846896587\n" "help.text" msgid "Teal" -msgstr "" +msgstr "sinivihreä" #. KejUr #: color.xhp @@ -842,7 +842,7 @@ "par_id3150213\n" "help.text" msgid "Choose the command Insert - OLE Object - Formula Object." -msgstr "" +msgstr "Valitse Lisää - OLE-objekti - Kaavaobjekti." #. aowxC #: keyboard.xhp @@ -860,7 +860,7 @@ "par_id3149875\n" "help.text" msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command Insert - OLE Object - Formula Object without any text selected." -msgstr "" +msgstr "Jos haluat käyttää $[officename] Mathin käyttöliittymää muokataksesi kaavaa, valitse Lisää - OLE-objekti - Kaavaobjekti ilman, että tekstiä on valittuna." #. sEBBM #: keyboard.xhp diff -Nru libreoffice-7.4.6/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.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: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-25 07:34+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -2234,7 +2234,7 @@ "Label\n" "value.text" msgid "~Record" -msgstr "" +msgstr "Nauhoita" #. Vmt38 #: CalcCommands.xcu @@ -10639,14 +10639,13 @@ #. bjdy5 #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Popups..uno:SetMinimalColumnWidth\n" "Label\n" "value.text" msgid "Minimal Column Width" -msgstr "Sarakkeen vähimmäisleveys" +msgstr "Vähimmäissarakeleveys" #. GubJq #: DrawImpressCommands.xcu @@ -10670,14 +10669,13 @@ #. EEKov #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Popups..uno:SetMinimalRowHeight\n" "Label\n" "value.text" msgid "Minimal Row Height" -msgstr "Rivin vähimmäiskorkeus" +msgstr "Vähimmäisrivikorkeus" #. DBq3k #: DrawImpressCommands.xcu @@ -10687,7 +10685,7 @@ "Label\n" "value.text" msgid "Optimal Row Height" -msgstr "Optimaalinen rivin korkeus" +msgstr "Optimaalinen rivikorkeus" #. wppz5 #: DrawImpressCommands.xcu @@ -21743,6 +21741,7 @@ #. AiLcR #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:SaveAsUrl\n" @@ -34091,7 +34090,7 @@ "Label\n" "value.text" msgid "Minimal Column Width" -msgstr "" +msgstr "Vähimmäissarakeleveys" #. TEEVY #: WriterCommands.xcu @@ -34101,7 +34100,7 @@ "TooltipLabel\n" "value.text" msgid "Minimal Column Width: Adjust width of selected columns to fit content" -msgstr "" +msgstr "Vähimmäissarakeleveys: Säädä valittujen sarakkeiden leveys sisällön mukaan" #. vGAT7 #: WriterCommands.xcu @@ -34131,7 +34130,7 @@ "Label\n" "value.text" msgid "Minimal Row Height" -msgstr "" +msgstr "Vähimmäisrivikorkeus" #. wJUJV #: WriterCommands.xcu @@ -34141,7 +34140,7 @@ "TooltipLabel\n" "value.text" msgid "Minimal Row Height: Adjust height of selected rows to fit content" -msgstr "" +msgstr "Vähimmäisrivikorkeus: Säädä valittujen rivien korkeus sisällön mukaan" #. 9RUey #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/fi/sc/messages.po libreoffice-7.4.7/translations/source/fi/sc/messages.po --- libreoffice-7.4.6/translations/source/fi/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-11-16 12:50+0000\n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565038740.000000\n" #. kBovX @@ -3126,7 +3126,7 @@ #: sc/inc/globstr.hrc:521 msgctxt "STR_PERCENT" msgid "Percent" -msgstr "Prosenttia" +msgstr "Prosenttiosuus" #. 7G5Cc #: sc/inc/globstr.hrc:522 @@ -18238,6 +18238,7 @@ #. KuttF #: sc/inc/strings.hrc:321 +#, fuzzy msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH" msgid "Multivariate regression : The observation count in X and Y must match." msgstr "Usean muuttujan regressio: X:n ja Y:n havaintojen lukumäärän täytyy täsmätä." diff -Nru libreoffice-7.4.6/translations/source/fi/scp2/source/draw.po libreoffice-7.4.7/translations/source/fi/scp2/source/draw.po --- libreoffice-7.4.6/translations/source/fi/scp2/source/draw.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/scp2/source/draw.po 2023-05-03 15:22:13.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: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2022-10-24 11:12+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1388826228.000000\n" #. txsAG @@ -356,7 +356,7 @@ "STR_REG_VAL_TAGGED_IMAGE_FILE_FORMAT\n" "LngText.text" msgid "Tagged Image File" -msgstr "Tagged Image -tiedosto" +msgstr "Tagged Image File" #. amCHi #: registryitem_draw.ulf diff -Nru libreoffice-7.4.6/translations/source/fi/scp2/source/impress.po libreoffice-7.4.7/translations/source/fi/scp2/source/impress.po --- libreoffice-7.4.6/translations/source/fi/scp2/source/impress.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/scp2/source/impress.po 2023-05-03 15:22:13.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: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2022-10-24 11:13+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1429866507.000000\n" #. USjxN @@ -203,4 +203,4 @@ "STR_REG_VAL_COMPUTER_GRAPHICS_METAFILE\n" "LngText.text" msgid "Computer Graphics Metafile" -msgstr "Computer Graphics -metatiedosto" +msgstr "Computer Graphics Metafile" diff -Nru libreoffice-7.4.6/translations/source/fi/sfx2/messages.po libreoffice-7.4.7/translations/source/fi/sfx2/messages.po --- libreoffice-7.4.6/translations/source/fi/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -537,7 +537,7 @@ #: include/sfx2/strings.hrc:106 msgctxt "STR_NO_ABS_URI_REF" msgid "\"$(ARG1)\" cannot be passed to an external application to open it (e.g., it might not be an absolute URL, or might denote no existing file)." -msgstr "" +msgstr "Kohdetta \"$(ARG1)\" ei voida välittää avattavaksi ulkoiseen sovellukseen (esim. se ei ehkä ole absoluuttinen URL-osoite tai ei ehkä viittaa olemassa olevaan tiedostoon)." #. XDUCY #: include/sfx2/strings.hrc:107 @@ -5135,7 +5135,7 @@ #: sfx2/uiconfig/ui/versionscmis.ui:226 msgctxt "versionscmis|label2" msgid "Existing Versions" -msgstr "Nykyiset versiot" +msgstr "Olemassa olevat versiot" #. A4BT2 #: sfx2/uiconfig/ui/versionsofdialog.ui:33 @@ -5243,7 +5243,7 @@ #: sfx2/uiconfig/ui/versionsofdialog.ui:332 msgctxt "versionsofdialog|label2" msgid "Existing Versions" -msgstr "Nykyiset versiot" +msgstr "Olemassa olevat versiot" #. 5BdCA #: sfx2/uiconfig/ui/versionsofdialog.ui:367 diff -Nru libreoffice-7.4.6/translations/source/fi/svl/messages.po libreoffice-7.4.7/translations/source/fi/svl/messages.po --- libreoffice-7.4.6/translations/source/fi/svl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/svl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:20+0100\n" -"PO-Revision-Date: 2021-03-04 19:36+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Tuomas Hietala \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1519742347.000000\n" #. PDMJD @@ -34,25 +34,25 @@ #: include/svl/svl.hrc:30 msgctxt "GRTSTR_PASSED" msgid "PASSED" -msgstr "" +msgstr "HYVÄKSYTTY" #. CreDg #: include/svl/svl.hrc:31 msgctxt "GRTSTR_QUIRKY" msgid "QUIRKY" -msgstr "" +msgstr "OIKUKAS" #. DAmDx #: include/svl/svl.hrc:32 msgctxt "GRTSTR_FAILED" msgid "FAILED" -msgstr "" +msgstr "HYLÄTTY" #. kR2Uu #: include/svl/svl.hrc:33 msgctxt "GRTSTR_SKIPPED" msgid "SKIPPED" -msgstr "" +msgstr "OHITETTU" #. wH3TZ msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/fi/svx/messages.po libreoffice-7.4.7/translations/source/fi/svx/messages.po --- libreoffice-7.4.6/translations/source/fi/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-02-02 20:34+0000\n" +"PO-Revision-Date: 2023-04-29 09:35+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564950000.000000\n" #. 3GkZj @@ -12976,7 +12976,7 @@ #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:154 msgctxt "acceptrejectchangesdialog|extended_tip|writeredit" msgid "Edit the comment for the selected change." -msgstr "" +msgstr "Muokkaa valitun muutoksen huomautusta." #. 75VLB #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:163 diff -Nru libreoffice-7.4.6/translations/source/fi/sw/messages.po libreoffice-7.4.7/translations/source/fi/sw/messages.po --- libreoffice-7.4.6/translations/source/fi/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-04 21:33+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -9563,7 +9563,7 @@ #: sw/inc/strings.hrc:1338 msgctxt "STR_AUTOMARK_TYPE" msgid "Selection file for the alphabetical index (*.sdi)" -msgstr "Aakkostetun hakemiston (*.sdi) luontitiedosto" +msgstr "Aakkosellisen hakemiston (*.sdi) valintatiedosto" #. Rvcdk #. ----------------------------------------------------------------------- @@ -22117,10 +22117,9 @@ #. ZLYnH #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:528 -#, fuzzy msgctxt "notebookbar_groups|rowmenuminimalrow" msgid "Minimal Row Height" -msgstr "Rivin vähimmäiskorkeus" +msgstr "Vähimmäisrivikorkeus" #. 75tn7 #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:537 @@ -29981,48 +29980,48 @@ #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:82 msgctxt "wordcount-mobile|label9" msgid "Selection" -msgstr "Valinta" +msgstr "Valinnassa" #. CNFqp #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:109 msgctxt "wordcount-mobile|label10" msgid "Document" -msgstr "Asiakirja" +msgstr "Asiakirjassa" #. RBG3u #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:135 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:327 msgctxt "wordcount-mobile|label1" msgid "Words" -msgstr "Sanat" +msgstr "Sanoja" #. sTP2G #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:159 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:621 msgctxt "wordcount-mobile|label2" msgid "Characters including spaces" -msgstr "Merkit, sisältäen välit" +msgstr "Merkkejä, sisältäen välit" #. 9Wbgf #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:183 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:303 msgctxt "wordcount-mobile|label3" msgid "Characters excluding spaces" -msgstr "Merkit, ilman välejä" +msgstr "Merkkejä, ilman välejä" #. wZHMX #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:207 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:279 msgctxt "wordcount-mobile|cjkcharsft" msgid "Asian characters and Korean syllables" -msgstr "Aasialaiset merkit ja korean tavut" +msgstr "Aasialaisia merkkejä ja korean tavuja" #. mfBEG #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:231 #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:255 msgctxt "wordcount-mobile|standardizedpages" msgid "Standardized pages" -msgstr "Standardisivut" +msgstr "Standardisivuja" #. bNHAL #: sw/uiconfig/swriter/ui/wordcount.ui:8 @@ -30034,61 +30033,61 @@ #: sw/uiconfig/swriter/ui/wordcount.ui:34 msgctxt "wordcount|extended_tip|close" msgid "Counts the words and characters, with or without spaces, in the current selection and in the whole document. The count is kept up to date as you type or change the selection." -msgstr "" +msgstr "Laskee sanat ja merkit, mukaan- tai poislukien välit, tämänhetkisestä valinnasta tai koko asiakirjasta. Lukumäärä päivittyy, kun kirjoitat tai muutat valintaa." #. mqnk8 #: sw/uiconfig/swriter/ui/wordcount.ui:53 msgctxt "wordcount|extended_tip|help" msgid "Counts the words and characters, with or without spaces, in the current selection and in the whole document. The count is kept up to date as you type or change the selection." -msgstr "" +msgstr "Laskee sanat ja merkit, mukaan- tai poislukien välit, tämänhetkisestä valinnasta tai koko asiakirjasta. Lukumäärä päivittyy, kun kirjoitat tai muutat valintaa." #. 4rhHV #: sw/uiconfig/swriter/ui/wordcount.ui:86 msgctxt "wordcount|label1" msgid "Words" -msgstr "Sanat" +msgstr "Sanoja" #. MjCM7 #: sw/uiconfig/swriter/ui/wordcount.ui:98 msgctxt "wordcount|label2" msgid "Characters including spaces" -msgstr "Merkit (sisältäen välit)" +msgstr "Merkkejä, sisältäen välit" #. cnynW #: sw/uiconfig/swriter/ui/wordcount.ui:110 msgctxt "wordcount|label3" msgid "Characters excluding spaces" -msgstr "Merkit (ei välejä)" +msgstr "Merkkejä, ilman välejä" #. 2Dc8B #: sw/uiconfig/swriter/ui/wordcount.ui:168 msgctxt "wordcount|label9" msgid "Selection" -msgstr "Valinta" +msgstr "Valinnassa" #. Jy4dh #: sw/uiconfig/swriter/ui/wordcount.ui:183 msgctxt "wordcount|label10" msgid "Document" -msgstr "Asiakirja" +msgstr "Asiakirjassa" #. 2tUdA #: sw/uiconfig/swriter/ui/wordcount.ui:242 msgctxt "wordcount|cjkcharsft" msgid "Asian characters and Korean syllables" -msgstr "Aasialaiset merkit ja korean tavut" +msgstr "Aasialaisia merkkejä ja korean tavuja" #. dZmso #: sw/uiconfig/swriter/ui/wordcount.ui:284 msgctxt "wordcount|standardizedpages" msgid "Standardized pages" -msgstr "Standardisivut" +msgstr "Standardisivuja" #. mQfaX #: sw/uiconfig/swriter/ui/wordcount.ui:343 msgctxt "wordcount|extended_tip|WordCountDialog" msgid "Counts the words and characters, with or without spaces, in the current selection and in the whole document. The count is kept up to date as you type or change the selection." -msgstr "" +msgstr "Laskee sanat ja merkit, mukaan- tai poislukien välit, tämänhetkisestä valinnasta tai koko asiakirjasta. Lukumäärä päivittyy, kun kirjoitat tai muutat valintaa." #. A2jUj #: sw/uiconfig/swriter/ui/wrapdialog.ui:8 diff -Nru libreoffice-7.4.6/translations/source/fi/xmlsecurity/messages.po libreoffice-7.4.7/translations/source/fi/xmlsecurity/messages.po --- libreoffice-7.4.6/translations/source/fi/xmlsecurity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fi/xmlsecurity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:21+0100\n" -"PO-Revision-Date: 2023-02-03 15:33+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -502,7 +502,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:259 msgctxt "digitalsignaturesdialog|extended_tip|remove" msgid "Removes the selected signature from the list. Removes all subsequent signatures as well, in case of PDF." -msgstr "" +msgstr "Poistaa valitun allekirjoituksen luettelosta. Jos kyseessä on PDF-tiedosto, poistaa myös myöhemmät allekirjoitukset." #. yQ9ju #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:271 diff -Nru libreoffice-7.4.6/translations/source/fr/helpcontent2/source/text/swriter/guide.po libreoffice-7.4.7/translations/source/fr/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.4.6/translations/source/fr/helpcontent2/source/text/swriter/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fr/helpcontent2/source/text/swriter/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-04-10 03:34+0000\n" "Last-Translator: serval2412 \n" "Language-Team: French \n" "Language: fr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562257671.000000\n" @@ -7080,7 +7080,7 @@ "par_id3146863\n" "help.text" msgid "Choose Insert - Field - More Fields and click the Document tab." -msgstr "Choisissez Insertion - Champ - Autres champs, puis cliquez sur l'onglet Fonctions." +msgstr "Choisissez Insertion - Champ - Autres champs, puis cliquez sur l'onglet Document." #. AevwX #: header_with_chapter.xhp diff -Nru libreoffice-7.4.6/translations/source/fur/cui/messages.po libreoffice-7.4.7/translations/source/fur/cui/messages.po --- libreoffice-7.4.6/translations/source/fur/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fur/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2021-09-05 11:21+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: tmtfx \n" -"Language-Team: Friulian \n" +"Language-Team: Friulian \n" "Language: fur\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1542195456.000000\n" #. GyY9M @@ -496,7 +496,7 @@ #: cui/inc/strings.hrc:87 msgctxt "RID_SVXSTR_PRODMACROS" msgid "Application Macros" -msgstr "" +msgstr "Macros de aplicazion" #. RGCGW #: cui/inc/strings.hrc:88 @@ -1748,7 +1748,7 @@ #: cui/inc/strings.hrc:322 msgctxt "RID_SVXSTR_DESC_LINEEND" msgid "Please enter a name for the new arrow style:" -msgstr "" +msgstr "Inserìs un non pal gnûf stîl de frece:" #. xD9BU #: cui/inc/strings.hrc:323 @@ -2109,31 +2109,31 @@ #: cui/inc/strings.hrc:392 msgctxt "RID_SVXSTR_ADDITIONS_DICTIONARY" msgid "Extensions: Dictionary" -msgstr "" +msgstr "Estensions: dizionari" #. MEZpu #: cui/inc/strings.hrc:393 msgctxt "RID_SVXSTR_ADDITIONS_GALLERY" msgid "Extensions: Gallery" -msgstr "" +msgstr "Estensions: galarie" #. R8obE #: cui/inc/strings.hrc:394 msgctxt "RID_SVXSTR_ADDITIONS_ICONS" msgid "Extensions: Icons" -msgstr "" +msgstr "Estensions: iconis" #. AqGWn #: cui/inc/strings.hrc:395 msgctxt "RID_SVXSTR_ADDITIONS_PALETTES" msgid "Extensions: Color Palette" -msgstr "" +msgstr "Estensions: palete dai colôrs" #. mncuJ #: cui/inc/strings.hrc:396 msgctxt "RID_SVXSTR_ADDITIONS_TEMPLATES" msgid "Extensions: Templates" -msgstr "" +msgstr "Estensions: modei" #. KTtQE #: cui/inc/strings.hrc:398 @@ -2145,25 +2145,25 @@ #: cui/inc/strings.hrc:400 msgctxt "RID_SVXSTR_OLE_INSERT" msgid "Inserting OLE object..." -msgstr "" +msgstr "Daûr a inserî l'ogjet OLE..." #. QMiCF #: cui/inc/strings.hrc:402 msgctxt "RID_CUISTR_CLICK_RESULT" msgid "(Click on any test to view its resultant bitmap image)" -msgstr "" +msgstr "(Fâs clic suntune prove par visualizâ la sô imagjin bitmap risultante)" #. BT9KG #: cui/inc/strings.hrc:403 msgctxt "RID_CUISTR_ZIPFAIL" msgid "Creation of ZIP file failed." -msgstr "" +msgstr "Creazion dal file ZIP falide." #. 9QSQr #: cui/inc/strings.hrc:404 msgctxt "RID_CUISTR_SAVED" msgid "The results have been successfully saved in the file 'GraphicTestResults.zip'!" -msgstr "" +msgstr "I risultâts a son stâts salvâts cun sucès tal file 'GraphicTestResults.zip'!" #. mpS3V #: cui/inc/tipoftheday.hrc:50 @@ -2182,7 +2182,7 @@ #: cui/inc/tipoftheday.hrc:52 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To print the notes of your slides go to File ▸ Print ▸ %PRODUCTNAME Impress tab and select Notes under Document ▸ Type." -msgstr "" +msgstr "Par stampâ lis notis des tôs diapositivis va su File ▸ Stampe ▸ schede %PRODUCTNAME Impress e selezione Notis sot Document ▸ Gjenar." #. TWjA5 #: cui/inc/tipoftheday.hrc:53 @@ -2244,13 +2244,13 @@ #: cui/inc/tipoftheday.hrc:62 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Icon Theme." -msgstr "" +msgstr "Selezione un insiemi di iconis diferent di Struments ▸ Opzions ▸ %PRODUCTNAME ▸ Viodude ▸ Teme iconis." #. Udk4L #: cui/inc/tipoftheday.hrc:63 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can display a number as a fraction (0.125 = 1/8): Format ▸ Cells, under Numbers tab in the Category select Fraction." -msgstr "" +msgstr "Tu puedis visualizâ un numar come frazion (0,125 = 1/8): Formât ▸ Celis, sot de schede Numars te Categorie selezione Frazion." #. VxuFm #: cui/inc/tipoftheday.hrc:64 @@ -2280,7 +2280,7 @@ #: cui/inc/tipoftheday.hrc:68 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can restart the slide show after a pause specified at Slide Show ▸ Slide Show Settings ▸ Loop and repeat after." -msgstr "" +msgstr "Tu puedis tornâ a inviâ la presentazion dopo une pause specificade in Presentazion ▸ Impostazions presentazion ▸ Cicli e ripet dopo." #. 5SoBD #: cui/inc/tipoftheday.hrc:69 @@ -2404,7 +2404,7 @@ #: cui/inc/tipoftheday.hrc:88 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to quickly insert or delete rows? Select the desired number of rows (or columns) and press %MOD1+Plus sign (+) to add or %MOD1+Minus sign (-) to delete." -msgstr "" +msgstr "Desideristu inserî o eliminâ in mût svelt lis riis? Selezione il numar di riis (o colonis) e frache %MOD1+segn Plui (+) par zontâ o %MOD1+segn Mancul (-) par eliminâ." #. gEysu #: cui/inc/tipoftheday.hrc:89 @@ -2416,7 +2416,7 @@ #: cui/inc/tipoftheday.hrc:90 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Insert images and photos into shapes in Draw and Impress. Right-click on a shape, choose Area ▸ Image ▸ Add / Import, and use Options to adjust appearance." -msgstr "" +msgstr "Inserìs imagjins e fotos tes formis in Draw e Impress. Fâs clic diestri suntune forme, sielç Aree ▸ Imagjin ▸ Zonte / Impuarte e dopre lis opzions par justâ l'aspiet." #. W6E2A #: cui/inc/tipoftheday.hrc:91 diff -Nru libreoffice-7.4.6/translations/source/fur/dictionaries/es.po libreoffice-7.4.7/translations/source/fur/dictionaries/es.po --- libreoffice-7.4.6/translations/source/fur/dictionaries/es.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/fur/dictionaries/es.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,14 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 18:08+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" +"Last-Translator: tmtfx \n" +"Language-Team: Friulian \n" +"Language: fur\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" #. RvfxU #: description.xml @@ -20,4 +22,4 @@ "dispname\n" "description.text" msgid "Spanish spelling dictionary, hyphenation rules, and thesaurus for all variants of Spanish." -msgstr "" +msgstr "Dizionari ortografic dai sinonims e regulis di silabazion par dutis lis variantis dal spagnûl." diff -Nru libreoffice-7.4.6/translations/source/gl/cui/messages.po libreoffice-7.4.7/translations/source/gl/cui/messages.po --- libreoffice-7.4.6/translations/source/gl/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gl/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-04-19 15:28+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -15964,7 +15964,7 @@ #: cui/uiconfig/ui/optopenclpage.ui:53 msgctxt "optopenclpage|openclnotused" msgid "OpenCL is not used." -msgstr "OpenCL non se utiliza." +msgstr "Non se está a utilizar OpenCL." #. xWE5i #: cui/uiconfig/ui/optopenclpage.ui:67 diff -Nru libreoffice-7.4.6/translations/source/gl/filter/source/config/fragments/filters.po libreoffice-7.4.7/translations/source/gl/filter/source/config/fragments/filters.po --- libreoffice-7.4.6/translations/source/gl/filter/source/config/fragments/filters.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gl/filter/source/config/fragments/filters.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-02-04 11:39+0000\n" +"PO-Revision-Date: 2023-04-12 10:32+0000\n" "Last-Translator: Xosé \n" -"Language-Team: Galician \n" +"Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559593028.000000\n" #. FR4Ff @@ -614,7 +614,7 @@ "UIName\n" "value.text" msgid "Microsoft Write" -msgstr "Write de Microsoft" +msgstr "Write da Microsoft" #. umheT #: MWAW_Bitmap.xcu diff -Nru libreoffice-7.4.6/translations/source/gl/helpcontent2/source/text/scalc/01.po libreoffice-7.4.7/translations/source/gl/helpcontent2/source/text/scalc/01.po --- libreoffice-7.4.6/translations/source/gl/helpcontent2/source/text/scalc/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gl/helpcontent2/source/text/scalc/01.po 2023-05-03 15:22:13.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: 2022-07-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-10 22:32+0000\n" +"PO-Revision-Date: 2023-04-16 05:33+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -4667,7 +4667,7 @@ "par_id841615891322513\n" "help.text" msgid "SearchCriteria argument" -msgstr "" +msgstr "Argumento CriteriosBusca" #. 9eBBv #: 04060101.xhp @@ -14531,7 +14531,7 @@ "par_id20082017075118422\n" "help.text" msgid "QUANTITY" -msgstr "" +msgstr "CANTIDADE" #. yEGKp #: 04060106.xhp @@ -14630,7 +14630,7 @@ "par_id3143748\n" "help.text" msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\" [; full_precision [; triangulation_precision]])" -msgstr "" +msgstr "CONVERTEREURO(Valor; \"De_moeda\"; \"Para_modea\" [; precisión_total [; precisión_triangulación]])" #. 4KJUc #: 04060106.xhp @@ -14648,7 +14648,7 @@ "par_id3143782\n" "help.text" msgid "From_currency and To_currency are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission." -msgstr "" +msgstr "De_moeda e Para_moeda son as unidades monetarias da que hai que converter e á que hai que converter respectivamente. Deben ser texto, a abreviatura oficial da moeda (por exemplo, «EUR»). As taxas (mostradas por euro) foron definidas pola Comunidade Europea." #. xRkH7 #: 04060106.xhp @@ -14666,7 +14666,7 @@ "par_id0119200904301815\n" "help.text" msgid "Triangulation_precision is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied." -msgstr "" +msgstr "Precisión_triangulación é opcional. Se se indica Precisión_triangulación e >=3, o resultado intermedio da conversión triangular (moeda1,EUR,moeda2) arredóndase a esa precisión. Se se omite Precisión_triangulación, o resultado intermedio non se arredonda. Tamén, se a moeda de destino for «EUR», Precisión_triangulación emprégase como se a triangulación fose necesaria e aplícase a conversión de EUR a EUR." #. YmarB #: 04060106.xhp diff -Nru libreoffice-7.4.6/translations/source/gl/helpcontent2/source/text/scalc/guide.po libreoffice-7.4.7/translations/source/gl/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.4.6/translations/source/gl/helpcontent2/source/text/scalc/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gl/helpcontent2/source/text/scalc/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:10+0000\n" +"PO-Revision-Date: 2023-03-10 18:33+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -2282,7 +2282,7 @@ "par_id3154371\n" "help.text" msgid "By default, all cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted. Restrict the selection to visible rows choosing Edit - Select - Select Visible Rows Only or to visible columns choosing Edit - Select - Select Visible Columns Only." -msgstr "" +msgstr "Por omisión, todas as celas da selección, incluídas as celas agochadas, cópianse, elimínanse, móvense ou formátanse. Restrinxa a selección ás filas visíbeis escollendo Editar - Seleccionar - Seleccionar só filas visíbeis ou ás columnas visíbeis escollendo Editar - Seleccionar - Seleccionar só columnas visíbeis." #. rBtUY #: cellreference_dragdrop.xhp @@ -2597,7 +2597,7 @@ "tit\n" "help.text" msgid "References to Other Sheets and Referencing URLs" -msgstr "" +msgstr "Referencias a outras follas e referenciar URL" #. 7ELAq #: cellreferences_url.xhp @@ -2669,7 +2669,7 @@ "par_id3153914\n" "help.text" msgid "Select one or more sheets or named ranges. You can also activate the automatic update function every \"n\" seconds and click OK." -msgstr "" +msgstr "Seleccione unha ou máis follas ou intervalos con nome. Tamén pode activar a función de actualización automática cada «n» segundos e premer en Aceptar." #. BQaFB #: cellreferences_url.xhp @@ -2678,7 +2678,7 @@ "par_id3157979\n" "help.text" msgid "The contents will be inserted as a link in the $[officename] Calc document." -msgstr "" +msgstr "O contido insírese como ligazón no documento do Calc do $[officename]." #. LAC7R #: cellreferences_url.xhp @@ -2687,7 +2687,7 @@ "par_id3144768\n" "help.text" msgid "Save your spreadsheet. When you open it again later, $[officename] Calc will update the linked cells following an inquiry." -msgstr "" +msgstr "Garde a folla de cálculo. Cando o abra máis tarde, o Calc do $[officename] actualizará as celas ligadas despois dunha consulta." #. qJWx2 #: cellreferences_url.xhp @@ -2705,7 +2705,7 @@ "tit\n" "help.text" msgid "Assigning Formats by Formula" -msgstr "" +msgstr "Asignar formatos por fórmula" #. ewC9e #: cellstyle_by_formula.xhp @@ -2714,7 +2714,7 @@ "bm_id3145673\n" "help.text" msgid "formats; assigning by formulas cell formats; assigning by formulas STYLE function example cell styles;assigning by formulas formulas;assigning cell formats" -msgstr "" +msgstr "formatos; asignar por fórmulas formatos de cela; asignar por fórmulas exemplo da función ESTILO estilos de cela; asignar por fórmulas fórmulas;asignar formatos de cela" #. USRGE #: cellstyle_by_formula.xhp @@ -2732,7 +2732,7 @@ "par_id3150275\n" "help.text" msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied." -msgstr "" +msgstr "Pódese engadir a función ESTILO() a unha fórmula existente nunha cela. Por exemplo, xunto coa función ACTUAL é posíbel colorar unha cela dependendo do seu valor. A fórmula =...+ESTILO(SE(ACTUAL()>3; \"Vermello\"; \"Verde\")) aplica o estilo de cela «Vermello» ás celas se o valor é maior de 3 e, se non, aplica o estilo de cela «Verde»." #. bMcgv #: cellstyle_by_formula.xhp @@ -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 "" +msgstr "Se desexa aplicar unha fórmula a todas as celas dunha área seleccionada pode empregar a caixa de diálogo Atopar e substituír." #. qAH7F #: cellstyle_by_formula.xhp @@ -2750,7 +2750,7 @@ "par_id3149456\n" "help.text" msgid "Select all the desired cells." -msgstr "" +msgstr "Seleccione todas as celas desexadas." #. FyUDd #: cellstyle_by_formula.xhp @@ -2759,7 +2759,7 @@ "par_id3148797\n" "help.text" msgid "Select the menu command Edit - Find & Replace." -msgstr "" +msgstr "Seleccione a orde do menú Editar - Atopar e substituír." #. STxmA #: cellstyle_by_formula.xhp @@ -2768,7 +2768,7 @@ "par_id3150767\n" "help.text" msgid "For the Find term, enter: .*" -msgstr "" +msgstr "No termo Atopar, introduza: .*" #. EN8wF #: cellstyle_by_formula.xhp @@ -2777,7 +2777,7 @@ "par_id3153770\n" "help.text" msgid "\".*\" is a regular expression that designates the contents of the current cell." -msgstr "" +msgstr "\".*\" é unha expresión regular que designa o contido da cela actual." #. r8m3j #: cellstyle_by_formula.xhp @@ -2786,7 +2786,7 @@ "par_id3153143\n" "help.text" msgid "Enter the following formula in the Replace field: =&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))" -msgstr "" +msgstr "Introduza a fórmula seguinte no campo Substituír: =&+ESTILO(SE(ACTUAL()3;\"Vermello\";\"Verde\"))" #. prHDb #: cellstyle_by_formula.xhp @@ -2795,7 +2795,7 @@ "par_id3146975\n" "help.text" msgid "The \"&\" symbol designates the current contents of the Find field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist." -msgstr "" +msgstr "O símbolo «&» designa o contido actual do campo Atopar. A liña debe comezar cun signo de igual, dado que se trata dunha fórmula. Asúmese que os estilos de cela «Vermello» e «Verde» xa existen." #. 4AgNk #: cellstyle_by_formula.xhp @@ -2813,7 +2813,7 @@ "par_id3144767\n" "help.text" msgid "All cells with contents that were included in the selection are now highlighted." -msgstr "" +msgstr "Todas as celas con contido que se incluíse na selección aparecerán realzadas." #. CxKWs #: cellstyle_by_formula.xhp @@ -2822,7 +2822,7 @@ "par_id3147127\n" "help.text" msgid "Click Replace all." -msgstr "" +msgstr "Prema en Substituír todo." #. smBjq #: cellstyle_conditional.xhp @@ -2831,7 +2831,7 @@ "tit\n" "help.text" msgid "Applying Conditional Formatting" -msgstr "" +msgstr "Aplicar formato condicional" #. 3TV3y #: cellstyle_conditional.xhp @@ -2840,7 +2840,7 @@ "bm_id3149263\n" "help.text" msgid "conditional formatting; cells cells; conditional formatting formatting; conditional formatting styles;conditional styles cell formats; conditional random numbers;examples cell styles; copying copying; cell styles tables; copying cell styles" -msgstr "" +msgstr "formato condicional; celas celas; formato condicional formato; formato condicional estilos;estilos condicionais formatos de cela; condicional números aleatorios;exemplos estilos de cela; copiar copiar; estilos de cela táboas; copiar estilos de cela" #. 4jA2B #: cellstyle_conditional.xhp diff -Nru libreoffice-7.4.6/translations/source/gl/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/gl/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/gl/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gl/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.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: 2022-07-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-18 19:34+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -230,7 +230,7 @@ "par_idN108D0\n" "help.text" msgid "Opens the Database Wizard to create a database file." -msgstr "" +msgstr "Abre o Asistente de bases de datos para crear un ficheiro de base de datos." #. 9nYdo #: 01010000.xhp @@ -1913,7 +1913,7 @@ "bm_id3145211\n" "help.text" msgid "directories; creating new folder creation My Documents folder; opening multiple documents; opening opening; several files selecting; several files opening; files, with placeholders placeholders;on opening files documents; opening with templates templates; opening documents with documents; styles changed styles; changed message" -msgstr "" +msgstr "directorios; crear novos creación de cartafoles O cartafol Documentos; abrir varios documentos; abrir abrir; varios ficheiros seleccionar; varios ficheiros abrir; ficheiros, con marcadores de posición marcadores de posición;ao abrir ficheiros documentos; abrir con modelos modelos; abrir documentos con documentos; estilos cambiados estilos; mensaxe cambiada" #. ynBQx #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-12-10 11:03+0000\n" +"PO-Revision-Date: 2023-03-08 23:34+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1566398018.000000\n" #. W5ukN @@ -28486,7 +28486,7 @@ "Label\n" "value.text" msgid "~Page Numbers..." -msgstr "Número de ~páxina..." +msgstr "Números de ~páxina..." #. Q5GAj #: ReportCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/gl/sc/messages.po libreoffice-7.4.7/translations/source/gl/sc/messages.po --- libreoffice-7.4.6/translations/source/gl/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gl/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-01-30 09:57+0000\n" +"PO-Revision-Date: 2023-04-12 10:32+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562229906.000000\n" #. kBovX @@ -14400,13 +14400,13 @@ #: sc/inc/scfuncs.hrc:3466 msgctxt "SC_OPCODE_STYLE" msgid "Time" -msgstr "Hora" +msgstr "Duración" #. ckZAj #: sc/inc/scfuncs.hrc:3467 msgctxt "SC_OPCODE_STYLE" msgid "The time (in seconds) that the Style is to remain valid." -msgstr "Tempo (en segundos) de validez do estilo." +msgstr "A duración (en segundos) durante a que o estilo permanece válido." #. kcP6b #: sc/inc/scfuncs.hrc:3468 @@ -21427,7 +21427,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:557 msgctxt "datafieldoptionsdialog|label9" msgid "Hide Items" -msgstr "Agochar os elementos" +msgstr "Agochar elementos" #. foyVo #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:581 @@ -29487,13 +29487,13 @@ #: sc/uiconfig/scalc/ui/selectsource.ui:162 msgctxt "selectsource|database" msgid "_Data source registered in Calc" -msgstr "Fonte de _datos rexistrada no Calc." +msgstr "Fonte de _datos rexistrada no Calc" #. ZDHcm #: sc/uiconfig/scalc/ui/selectsource.ui:171 msgctxt "selectsource|extended_tip|database" msgid "Uses a table or query in a database that is registered in Calc as the data source for the pivot table." -msgstr "Emprega unha táboa ou consulta dunha base de datas rexistrada no Calc como fontes de datos da táboa dinámica." +msgstr "Emprega unha táboa ou consulta dunha base de datos rexistrada no Calc como fonte de datos da táboa dinámica." #. ZDghg #: sc/uiconfig/scalc/ui/selectsource.ui:183 @@ -30345,7 +30345,7 @@ #: sc/uiconfig/scalc/ui/solverdlg.ui:8 msgctxt "solverdlg|SolverDialog" msgid "Solver" -msgstr "Resolvedor" +msgstr "Solucionador" #. p9CbY #: sc/uiconfig/scalc/ui/solverdlg.ui:39 diff -Nru libreoffice-7.4.6/translations/source/gl/svtools/messages.po libreoffice-7.4.7/translations/source/gl/svtools/messages.po --- libreoffice-7.4.6/translations/source/gl/svtools/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gl/svtools/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-07-15 17:09+0000\n" +"PO-Revision-Date: 2023-03-23 11:32+0000\n" "Last-Translator: Xosé \n" -"Language-Team: Galician \n" +"Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559330420.000000\n" #. fLdeV @@ -873,13 +873,13 @@ #: include/svtools/strings.hrc:192 msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2" msgid "The image needs about %1 kB of memory; the file size is %2 kB." -msgstr "A imaxe necesita sobre %1 KB de memoria; o tamaño do ficheiro é de %2 KB." +msgstr "A imaxe necesita sobre %1 kB de memoria; o tamaño do ficheiro é de %2 kB." #. dAVBR #: include/svtools/strings.hrc:193 msgctxt "STR_SVT_ESTIMATED_SIZE_VEC" msgid "The file size is %1 kB." -msgstr "O tamaño do ficheiro é %1 KB." +msgstr "O tamaño do ficheiro é %1 kB." #. TaCaF #: include/svtools/strings.hrc:194 diff -Nru libreoffice-7.4.6/translations/source/gl/svx/messages.po libreoffice-7.4.7/translations/source/gl/svx/messages.po --- libreoffice-7.4.6/translations/source/gl/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gl/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2022-12-15 13:35+0000\n" +"PO-Revision-Date: 2023-04-12 10:32+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559330444.000000\n" #. 3GkZj @@ -7830,10 +7830,9 @@ #. 5qx2C #: include/svx/strings.hrc:1409 -#, fuzzy msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION" msgid "$(CAPACITY) KiB ($(REDUCTION)% reduction)" -msgstr "$(CAPACITY) KiB (redución de $(REDUCTION) %)" +msgstr "$(CAPACITY) KiB ($(REDUCTION)% menos)" #. ESUpG #: include/svx/strings.hrc:1410 diff -Nru libreoffice-7.4.6/translations/source/gl/sw/messages.po libreoffice-7.4.7/translations/source/gl/sw/messages.po --- libreoffice-7.4.6/translations/source/gl/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gl/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-12-15 13:35+0000\n" +"PO-Revision-Date: 2023-04-12 10:32+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562578065.000000\n" #. v3oJv @@ -10264,7 +10264,7 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:275 msgctxt "addressblockdialog|extended_tip|down" msgid "Select an item in the list and click an arrow button to move the item." -msgstr " Seleccione un elemento da lista e prema no botón de frecha para mover o elemento." +msgstr "Seleccione un elemento da lista e prema no botón de frecha para mover o elemento." #. VeEDs #: sw/uiconfig/swriter/ui/addressblockdialog.ui:309 @@ -12232,7 +12232,7 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:688 msgctxt "columnpage|extended_tip|colsnf" msgid "Enter the number of columns that you want in the page, frame, or section." -msgstr " Introduza onúmero de columnas que quere na páxina, marco ou sección." +msgstr "Introduza o número de columnas que quere na páxina, marco ou sección." #. X9vG6 #: sw/uiconfig/swriter/ui/columnpage.ui:711 @@ -12298,7 +12298,7 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:831 msgctxt "columnpage|extended_tip|valueset" msgid "Enter the number of columns that you want in the page, frame, or section." -msgstr " Introduza onúmero de columnas que quere na páxina, marco ou sección." +msgstr "Introduza o número de columnas que quere na páxina, marco ou sección." #. fEbMc #: sw/uiconfig/swriter/ui/columnpage.ui:846 @@ -16430,7 +16430,7 @@ #: sw/uiconfig/swriter/ui/frmurlpage.ui:214 msgctxt "frmurlpage|extended_tip|server" msgid "Uses a server-side image map." -msgstr " Usa un mapade imaxe do lado do servidor." +msgstr "Usa un mapa de imaxe do lado do servidor." #. MWxs6 #: sw/uiconfig/swriter/ui/frmurlpage.ui:225 @@ -28729,7 +28729,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:666 msgctxt "tocentriespage|extended_tip|pageno" msgid "Inserts the page number of the entry." -msgstr " Insire onúmero da páxina de entrada." +msgstr "Insire o número de páxina da entrada." #. 9EpS2 #: sw/uiconfig/swriter/ui/tocentriespage.ui:678 diff -Nru libreoffice-7.4.6/translations/source/gl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-7.4.7/translations/source/gl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-7.4.6/translations/source/gl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-07-06 18:56+0000\n" +"PO-Revision-Date: 2023-04-25 07:34+0000\n" "Last-Translator: Xosé \n" -"Language-Team: Galician \n" +"Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1450045687.000000\n" #. sc9Hg @@ -334,4 +334,4 @@ "Dlg_WikiPageExists_Label1\n" "value.text" msgid "A wiki article with the title '$ARG1' already exists. Do you want to replace the current article with your article? " -msgstr "Xa existe un artigo wiki co título '$ARG1'.. Quere substituír o artigo actual co seu novo artigo? " +msgstr "Xa existe un artigo wiki co título «$ARG1». Quere substituír o artigo actual co seu novo artigo? " diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/sbasic/guide.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/sbasic/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/sbasic/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-03-22 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560719923.000000\n" #. WcTKB @@ -1040,7 +1040,7 @@ "bas_id281630543333061\n" "help.text" msgid "' Struct that stores the new TableBorder2 definition" -msgstr "' Estructura que almacena la nueva definición TableBorder2" +msgstr "' Estructura que almacena la definición de TableBorder2 nueva" #. SFrJL #: calc_borders.xhp @@ -1787,7 +1787,7 @@ "par_id3144504\n" "help.text" msgid "oListbox.additem(\"New Item\" & iCount,0)" -msgstr "oListbox.additem(\"Nuevo elemento\" & iCount,0)" +msgstr "oListbox.additem(\"Elemento nuevo\" & iCount,0)" #. FKzdb #: sample_code.xhp @@ -1877,7 +1877,7 @@ "tit\n" "help.text" msgid "Translation of Controls in the Dialog Editor" -msgstr "Traducción de controles en el diálogo del editor." +msgstr "Traducción de controles en el editor de diálogos" #. 76okP #: translation.xhp @@ -1913,7 +1913,7 @@ "par_id9538560\n" "help.text" msgid "By default, any dialog that you create only contains string resources for one language. You may want to create dialogs that automatically show localized strings according to the user's language settings." -msgstr "Predeterminado, cualquier diálogo que creas solo contiene cadenas de recursos por un idioma. Quizas quieras crear diálogos que automaticamente muestra cadenas localizadas de acuerdo a la configuración del idioma por el usuario." +msgstr "De manera predeterminada, cualesquier diálogos que cree solo contendrán recursos de cadenas para un idioma. Quizá quiera crear diálogos que de forma automática muestren cadenas regionalizadas acorde a la configuración lingüística de cada persona usuaria." #. DP4Qb #: translation.xhp @@ -1985,7 +1985,7 @@ "hd_id6596881\n" "help.text" msgid "To enable localizable dialogs" -msgstr "Para activar la traducción de los cuadros de diálogo" +msgstr "Para activar los cuadros de diálogo regionalizables" #. uS4tc #: translation.xhp @@ -2093,7 +2093,7 @@ "hd_id631733\n" "help.text" msgid "To edit localizable controls in your dialog" -msgstr "Para editar los controles localizables del cuadro de diálogo" +msgstr "Para editar los controles regionalizables del cuadro de diálogo" #. hrvxW #: translation.xhp @@ -2174,4 +2174,4 @@ "par_id3050325\n" "help.text" msgid "If the user has an older version of %PRODUCTNAME that does not know localizable string resources for Basic dialogs, the user will see the default language strings." -msgstr "Si el usuario tiene una versión antigua de %PRODUCTNAME que no reconosca los recursos de cadeanas localizables para el diálogo de Basic, el usuario verá las cadenas en el idioma predeterminado." +msgstr "Si quien utilice %PRODUCTNAME tiene una versión antigua que no reconozca los recursos de cadenas regionalizables para diálogos BASIC, se mostrarán las cadenas en el idioma predefinido." diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/sbasic/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/sbasic/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-10 08:24+0000\n" +"PO-Revision-Date: 2023-04-09 03:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1534393940.000000\n" #. 6Kkin @@ -923,7 +923,7 @@ "par_id0929200903505340\n" "help.text" msgid "Add: The additional languages from the imported dialog will be added to the already existing dialog. The resources from the library's default language will be used for the new languages. This is the same as if you add these languages manually." -msgstr "Agregar: Los idiomas adicionales del diálogo importado se agregarán a los de los diálogos existentes. Los recursos del idioma predeterminado de la biblioteca se usarán para los nuevos idiomas. Es lo mismo que cuando agrega los idiomas manualmente." +msgstr "Añadir: los idiomas adicionales del diálogo importado se agregarán a los de los diálogos existentes. Los recursos del idioma predeterminado de la biblioteca se usarán para los idiomas nuevos. Es lo mismo que cuando agrega los idiomas manualmente." #. GzYU9 #: 11180000.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/sbasic/shared/03.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/sbasic/shared/03.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 10:46+0000\n" +"PO-Revision-Date: 2023-05-03 11:52+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1573,7 +1573,7 @@ "par_id431585757822181\n" "help.text" msgid "Stack all single items of an array and all items in its subarrays into one new array without subarrays. Empty subarrays are ignored and subarrays with a number of dimensions greater than one are not flattened." -msgstr "Apile todos los elementos individuales de una matriz y todos los elementos en sus subarreglos en una nueva matriz sin subarreglos. Los subarreglos vacíos se ignoran y los subarreglos con un número de dimensiones mayor que uno no se aplanan." +msgstr "Apile todos los elementos individuales de una matriz y todos los elementos de sus submatrices en una matriz nueva sin submatrices. Las submatrices vacías se ignoran y aquellas con un número de dimensiones mayor que uno no se aplanan." #. CNFGJ #: sf_array.xhp @@ -10438,7 +10438,7 @@ "pyc_id841620225235377\n" "help.text" msgid "# ... process the controls actual values" -msgstr "" +msgstr "# … procesar los valores reales de los controles" #. 2PPv4 #: sf_dialogcontrol.xhp @@ -13921,7 +13921,7 @@ "par_id111587141158495\n" "help.text" msgid "When an error occurs, an application macro may:" -msgstr "" +msgstr "Cuando se produce un error, una macro de aplicación puede:" #. hxxxr #: sf_exception.xhp @@ -19546,7 +19546,7 @@ "par_id721623369245475\n" "help.text" msgid "To run Python scripts from a separate process, you need to start %PRODUCTNAME with a few additional options that specify the hostname and port through which the external process will communicate with the %PRODUCTNAME component process." -msgstr "" +msgstr "Para ejecutar las secuencias Python desde un proceso separado, es necesario iniciar %PRODUCTNAME con algunas opciones adicionales que especifican el nombre de anfitrión y el puerto a través del cual el proceso externo se comunicará con el proceso del componente de %PRODUCTNAME." #. mfbEM #: sf_intro.xhp @@ -20122,7 +20122,7 @@ "par_id1001585843659821\n" "help.text" msgid "Automatically extracts strings from a dialog and adds them to the list of localizable text strings. The following strings are extracted:" -msgstr "" +msgstr "Extrae automáticamente las cadenas de un cuadro de diálogo y las añade a la lista de cadenas de texto regionalizables. Se extraen las cadenas siguientes:" #. bS7ZL #: sf_l10n.xhp @@ -27844,7 +27844,7 @@ "par_id31587913266153\n" "help.text" msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:" -msgstr "" +msgstr "El servicio UI (del inglés, interfaz de usuario) simplifica la identificación y la manipulación de las diferentes ventanas que componen la aplicación %PRODUCTNAME en su conjunto:" #. nTqj5 #: sf_ui.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/sbasic/shared.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/sbasic/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/sbasic/shared.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:10+0000\n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1913,7 +1913,7 @@ "par_id3148797\n" "help.text" msgid "Sub is the short form of subroutine, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:" -msgstr "Sub es la contracción de subrutina, que se utiliza para manejar una tarea concreta dentro de un programa. Las Sub se utilizan para dividir una tarea en procedimientos individuales. Dividir un programa en procedimientos y subprocedimientos mejora su legibilidad y reduce la posibilidad de errores. Una sub puede tomar algunos argumentos como parámetros, pero no devuelve ningún valor a la sub o función que la ha llamado, por ejemplo:" +msgstr "Sub es la contracción de subrutina, que se utiliza para manejar una tarea concreta dentro de un programa. Las sub se utilizan para dividir una tarea en procedimientos individuales. Dividir un programa en procedimientos y subprocedimientos mejora su comprensibilidad y reduce la posibilidad de errores. Una sub puede tomar algunos argumentos como parámetros, pero no devuelve ningún valor a la sub o función que la ha llamado, por ejemplo:" #. ovUK9 #: 01010210.xhp @@ -3029,7 +3029,7 @@ "par_id3147397\n" "help.text" msgid "The same process applies to a Function. In addition, functions always return a function result. The result of a function is defined by assigning the return value to the function name:" -msgstr "" +msgstr "El mismo proceso se aplica a una Function. Así también, las funciones siempre devuelven un resultado de función. El resultado de una función se define asignando el valor de retorno al nombre de la función:" #. uhFkG #: 01020300.xhp @@ -3146,7 +3146,7 @@ "hd_id161584366585035\n" "help.text" msgid "Defining Optional Parameters" -msgstr "" +msgstr "Definir parámetros opcionales" #. 4Ghzx #: 01020300.xhp @@ -3155,7 +3155,7 @@ "par_id31584367006971\n" "help.text" msgid "Functions, procedures or properties can be defined with optional parameters, for example:" -msgstr "" +msgstr "Es posible definir funciones, procedimientos o propiedades con parámetros opcionales; por ejemplo:" #. JKj8y #: 01020300.xhp @@ -25178,7 +25178,7 @@ "par_id3147264\n" "help.text" msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified." -msgstr "Una constante es una variable que ayuda a mejorar la legibilidad de un programa. Las constantes no se definen como un tipo de variable específico, sino como sustitutivos en el código. Puede definir las constantes solamente una vez y no es posible modificarlas." +msgstr "Una constante es una variable que ayuda a mejorar la comprensibilidad de un programa. Las constantes no se definen como un tipo de variable específico, sino como sustitutivos en el código. Puede definir las constantes solamente una vez y no es posible modificarlas." #. ucqd6 #: 03100700.xhp @@ -29660,7 +29660,7 @@ "par_id231641251937406\n" "help.text" msgid "Dates are converted into locale-dependent strings." -msgstr "" +msgstr "Las fechas se convierten en cadenas dependientes de la configuración regional." #. NEAum #: 03120103.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/scalc/00.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/scalc/00.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/scalc/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/scalc/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:31+0100\n" -"PO-Revision-Date: 2022-10-05 08:58+0000\n" +"PO-Revision-Date: 2023-04-16 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1561323262.000000\n" #. E9tti @@ -977,7 +977,7 @@ "par_id3154123\n" "help.text" msgid "Menu Tools - Language - Hyphenation." -msgstr "Vaya a Herramientas ▸ Idioma ▸ División de palabras." +msgstr "Vaya a Herramientas ▸ Idioma ▸ Corte de palabras." #. kGGCG #: 00000406.xhp @@ -1049,7 +1049,7 @@ "par_id3156284\n" "help.text" msgid "Choose Tools - Detective - Mark Invalid Data." -msgstr "Vaya a Herramientas ▸ Detective ▸ Marcar datos incorrectos." +msgstr "Vaya a Herramientas ▸ Detective ▸ Marcar datos no válidos." #. vVZWK #: 00000406.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/scalc/01.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/scalc/01.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/scalc/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/scalc/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 10:59+0000\n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -230,7 +230,7 @@ "par_id3152994\n" "help.text" msgid "Icon Start" -msgstr "Icono Inicio" +msgstr "Icono Comienzo" #. JRnuj #: 02110000.xhp @@ -1859,7 +1859,7 @@ "par_id2308201415431951090\n" "help.text" msgid "Standard Deviation: The standard deviation of the Normal distribution." -msgstr "Desviación estándar: la desviación estándar de la distribución normal." +msgstr "Desviación típica: la desviación típica de la distribución normal." #. S3iFU #: 02140700.xhp @@ -1868,7 +1868,7 @@ "par_id2308201415431990992\n" "help.text" msgid "The mean and standard deviation of the numbers generated may not equal the Mean and Standard Deviation inserted in the dialog." -msgstr "La media y la desviación estándar de los números generados puede no ser igual a la media y la desviación estándar introducidas en el cuadro de diálogo." +msgstr "La media y la desviación típica de los números generados puede no ser igual a la media y la desviación típica introducidas en el cuadro de diálogo." #. CBmEB #: 02140700.xhp @@ -2057,7 +2057,7 @@ "par_id2308201415431834837\n" "help.text" msgid "Value set to initiate the random number generator algorithm. It is used to initialize (seed) the random number generator in order to reproduce the same sequence of pseudorandom numbers. Specify a positive integer number (1, 2, ...) to produce a specific sequence, or leave the field blank if you don't need this particular feature." -msgstr "El valor establecido para iniciar el algoritmo del generador de números aleatorios. Es utilizado para inicializar (semilla) el generador de números aleatorios, de modo que se reproduzca la misma secuencia de números seudoaleatorios. Especifique un valor positivo entero (1, 2…) para crear una secuencia específica o deje el campo vacío si no necesita esta funcionalidad." +msgstr "El valor establecido para iniciar el algoritmo del generador de números aleatorios. Es utilizado para inicializar (semilla) el generador de números aleatorios, de modo que se reproduzca la misma secuencia de números seudoaleatorios. Especifique un valor positivo entero (1, 2…) para crear una secuencia específica o deje el campo vacío si no necesita esta funcionalidad concreta." #. JesZo #: 02140700.xhp @@ -4586,7 +4586,7 @@ "par_id761615889163416\n" "help.text" msgid "The Database argument may also be specified by passing the name of a named range or database range. Using a meaningful name to define the cell range can enhance formula readability and document maintenance. If the name does not match the name of a defined range, Calc reports a #NAME? error." -msgstr "El argumento BaseDeDatos también se puede especificar pasando el nombre de un intervalo con nombre o intervalo de base de datos. El uso de un nombre significativo para definir el intervalo de celdas puede mejorar la legibilidad de la fórmula y el mantenimiento del documento. Si el nombre no coincide con el nombre de un intervalo definido, Calc emite un error #¿NOMBRE?" +msgstr "El argumento Base de datos también se puede especificar pasando el nombre de un intervalo con nombre o intervalo de base de datos. El uso de un nombre expresivo para definir el intervalo de celdas puede mejorar la comprensibilidad de la fórmula y el mantenimiento del documento. Si el nombre no coincide con el nombre de un intervalo definido, Calc emite un error #¿NOMBRE?" #. 7L4XM #: 04060101.xhp @@ -5615,7 +5615,7 @@ "bm_id3148462\n" "help.text" msgid "DSTDEV functionstandard deviations in databases;based on a sample" -msgstr "Función BDDESVESTdesviaciones estándar en bases de datos; basadas en una muestra" +msgstr "función BDDESVESTdesviaciones típicas en bases de datos; basadas en una muestra" #. EvGNP #: 04060101.xhp @@ -5687,7 +5687,7 @@ "bm_id3150429\n" "help.text" msgid "DSTDEVP functionstandard deviations in databases;based on populations" -msgstr "función BDDESVESTPdesviaciones estándar en bases de datos;basadas en poblaciones" +msgstr "función BDDESVESTPdesviaciones típicas en bases de datos;basadas en poblaciones" #. FpESx #: 04060101.xhp @@ -9098,7 +9098,7 @@ "par_id3146992\n" "help.text" msgid "Value is any value or expression where a test is performed to determine whether it is a text or numbers or a Boolean value." -msgstr "Valor es un valor o una expresión en que se comprueba si es texto o numérico o si se trata de un valor lógico." +msgstr "Valor es un valor o una expresión cualquiera en que se comprueba si es texto o numérico o si se trata de un valor booleano." #. Es2Py #: 04060104.xhp @@ -9422,7 +9422,7 @@ "par_id3150417\n" "help.text" msgid "Value is a value, number, Boolean value, or an error value to be tested." -msgstr "Valor es el valor, número o valor lógico o de error que se va a comprobar." +msgstr "Valor es el valor, número o valor booleano o de error que se va a someter a prueba." #. RmeYe #: 04060104.xhp @@ -34973,7 +34973,7 @@ "par_id3156257\n" "help.text" msgid "Returns the geometric mean of a sample." -msgstr "Calcula la media geométrica de una muestra." +msgstr "Devuelve la media geométrica de una muestra." #. YBnZG #: 04060182.xhp @@ -35000,7 +35000,7 @@ "bm_id3152966\n" "help.text" msgid "TRIMMEAN function means;of data set without margin data" -msgstr "MEDIA.ACOTADA medias;de grupo de datos sin datos de margen" +msgstr "MEDIA.ACOTADA medias;de grupo de datos sin datos marginales" #. EAAVp #: 04060182.xhp @@ -35099,7 +35099,7 @@ "par_id3156109\n" "help.text" msgid "Data is the given sample, drawn from a normally distributed population." -msgstr "Datos es la muestra indicada, extraida de una población distribuida en forma normal." +msgstr "Datos es la muestra dada, extraída de una población distribuida normalmente." #. E3dLC #: 04060182.xhp @@ -35117,7 +35117,7 @@ "par_id3154740\n" "help.text" msgid "Sigma (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "Sigma (opcional) es la desviación estándar conocida de la población. Si se omite, se utiliza la desviación estándar de la muestra indicada." +msgstr "Sigma (opcional) es la desviación típica conocida de la población. Si se omite, se utiliza la desviación típica de la muestra indicada." #. EpJ8j #: 04060182.xhp @@ -35171,7 +35171,7 @@ "par_id2956109\n" "help.text" msgid "Data is the given sample, drawn from a normally distributed population." -msgstr "Datos es la muestra indicada, extraida de una población distribuida en forma normal." +msgstr "Datos es la muestra dada, extraída de una población distribuida normalmente." #. havEd #: 04060182.xhp @@ -35189,7 +35189,7 @@ "par_id2954740\n" "help.text" msgid "Sigma (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used." -msgstr "Sigma (opcional) es la desviación estándar conocida de la población. Si se omite, se utiliza la desviación estándar de la muestra indicada." +msgstr "Sigma (opcional) es la desviación típica conocida de la población. Si se omite, se utiliza la desviación típica de la muestra indicada." #. sbnS9 #: 04060182.xhp @@ -35495,7 +35495,7 @@ "par_id3152986\n" "help.text" msgid "Data is the cell range of data." -msgstr "Datos es la matriz de los datos de la muestra." +msgstr "Datos es el intervalo de celdas con datos." #. PqrWi #: 04060183.xhp @@ -35567,7 +35567,7 @@ "par_id3154540\n" "help.text" msgid "Data is the cell range of data." -msgstr "Datos es la matriz de los datos de la muestra." +msgstr "Datos es el intervalo de celdas con datos." #. oJV9f #: 04060183.xhp @@ -36872,7 +36872,7 @@ "bm_id3145824\n" "help.text" msgid "AVERAGE function" -msgstr "PROMEDIO" +msgstr "función PROMEDIO" #. TFPEi #: 04060184.xhp @@ -36890,7 +36890,7 @@ "par_id3150482\n" "help.text" msgid "Returns the average of the arguments." -msgstr "Calcula la media de los argumentos." +msgstr "Calcula el promedio de los argumentos." #. K8QCj #: 04060184.xhp @@ -36917,7 +36917,7 @@ "bm_id3148754\n" "help.text" msgid "AVERAGEA function" -msgstr "PROMEDIOA" +msgstr "función PROMEDIOA" #. nwGjw #: 04060184.xhp @@ -36935,7 +36935,7 @@ "par_id3145138\n" "help.text" msgid "Returns the average of the arguments. The value of a text is 0." -msgstr "Calcula la media de los argumentos. El valor del texto es 0." +msgstr "Calcula el promedio de los argumentos. El valor del texto es 0." #. opsEb #: 04060184.xhp @@ -36953,7 +36953,7 @@ "par_id3150864\n" "help.text" msgid "=AVERAGEA(A1:A50)" -msgstr "=PROMEDIO(A1:A50)" +msgstr "=PROMEDIOA(A1:A50)" #. iLCTX #: 04060184.xhp @@ -37349,7 +37349,7 @@ "par_id3148594\n" "help.text" msgid "StDev represents the standard deviation of the normal distribution." -msgstr "Desv_estándar es la desviación estándar de la distribución normal." +msgstr "Desviación típica representa la desviación típica de la distribución normal." #. TUXfC #: 04060184.xhp @@ -37358,7 +37358,7 @@ "par_id3153921\n" "help.text" msgid "=NORMINV(0.9;63;5) returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams." -msgstr "=DISTR.NORM.INV(0,9;63;5) devuelve 69,41. Si un huevo de gallina pesa una media de 63 gramos, con una desviación estándar de 5, la probabilidad de que un huevo no pese más de 69,41 gramos es del 90%." +msgstr "=DISTR.NORM.INV(0,9;63;5) devuelve 69,41. Si un huevo de gallina pesa una media de 63 gramos, con una desviación típica de 5, la probabilidad de que un huevo no pese más de 69,41 gramos es del 90 %." #. 73wyE #: 04060184.xhp @@ -37421,7 +37421,7 @@ "par_id2948594\n" "help.text" msgid "StDev represents the standard deviation of the normal distribution." -msgstr "Desv_estándar es la desviación estándar de la distribución normal." +msgstr "Desviación típica representa la desviación típica de la distribución normal." #. mSfFV #: 04060184.xhp @@ -37430,7 +37430,7 @@ "par_id2953921\n" "help.text" msgid "=NORM.INV(0.9;63;5) returns 69.4077578277. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams." -msgstr "=INV.NORM(0,9;63;5) devuelve 69,4077578277. Si un huevo de gallina pesa una media de 63 gramos, con una desviación estándar de 5, la probabilidad de que un huevo no pese más de 69,41 gramos es del 90 %." +msgstr "=INV.NORM(0,9;63;5) devuelve 69,4077578277. Si un huevo de gallina pesa una media de 63 gramos, con una desviación típica de 5, la probabilidad de que un huevo no pese más de 69,41 gramos es del 90 %." #. 432JF #: 04060184.xhp @@ -37493,7 +37493,7 @@ "par_id3156295\n" "help.text" msgid "StDev is the standard deviation of the distribution." -msgstr "Desv_estándar es la desviación estándar de la distribución." +msgstr "Desviación típica es la desviación típica de la distribución." #. bzaMQ #: 04060184.xhp @@ -37583,7 +37583,7 @@ "par_id2916295\n" "help.text" msgid "StDev is the standard deviation of the distribution." -msgstr "Desv_estándar es la desviación estándar de la distribución." +msgstr "Desviación típica es la desviación típica de la distribución." #. kAAAs #: 04060184.xhp @@ -39068,7 +39068,7 @@ "bm_id3149143\n" "help.text" msgid "STDEV function standard deviations in statistics;based on a sample" -msgstr "DESVEST desviación estándar en estadísticas;basadas en un ejemplo" +msgstr "función DESVESTdesviación típica en estadística;basadas en una muestra" #. X7TFm #: 04060185.xhp @@ -39086,7 +39086,7 @@ "par_id3146888\n" "help.text" msgid "Estimates the standard deviation based on a sample." -msgstr "Realiza una estimación de la desviación estándar a partir de una muestra." +msgstr "Estima la desviación típica a partir de una muestra." #. 2b5hp #: 04060185.xhp @@ -39095,7 +39095,7 @@ "par_id3149946\n" "help.text" msgid "STDEV()" -msgstr "DESVIACIÓN ESTÁNDAR " +msgstr "DESVEST()" #. H3V9F #: 04060185.xhp @@ -39113,7 +39113,7 @@ "par_id3149434\n" "help.text" msgid "=STDEV(A1:A50) returns the estimated standard deviation based on the data referenced." -msgstr " = DESVIACIÓN ESTÁNDAR (A1:A50) devuelve la desviación estándar estimada en base a los datos referenciados." +msgstr "=DESVEST(A1:A50) devuelve la desviación típica estimada con base en los datos referenciados." #. EaGD7 #: 04060185.xhp @@ -39140,7 +39140,7 @@ "par_id3151234\n" "help.text" msgid "Calculates the standard deviation of an estimation based on a sample." -msgstr "Calcula una estimación de la desviación estándar a partir de una muestra." +msgstr "Calcula la desviación típica de una estimación a partir de una muestra." #. JfwF6 #: 04060185.xhp @@ -39194,7 +39194,7 @@ "par_id3149187\n" "help.text" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviación estándar a partir de la población total." +msgstr "Calcula la desviación típica a partir de la población total." #. zoiE5 #: 04060185.xhp @@ -39203,7 +39203,7 @@ "par_id3154392\n" "help.text" msgid "STDEVP()" -msgstr "DESVIACIÓN ESTÁNDAR P" +msgstr "DESVESTP()" #. ADXhB #: 04060185.xhp @@ -39212,7 +39212,7 @@ "par_id3153933\n" "help.text" msgid "=STDEVP(A1:A50) returns a standard deviation of the data referenced." -msgstr "=DESVESTP(A1:A50) calcula la desviación estándar de los datos referenciados." +msgstr "=DESVESTP(A1:A50) calcula la desviación típica de los datos referenciados." #. sQWP2 #: 04060185.xhp @@ -39221,7 +39221,7 @@ "bm_id2949734\n" "help.text" msgid "STDEV.P function standard deviations in statistics;based on a population" -msgstr "DESVEST.P desviación estándar en estadística;basadas en una población" +msgstr "DESVEST.P desviación típica en estadística;basadas en una población" #. tcxC7 #: 04060185.xhp @@ -39239,7 +39239,7 @@ "par_id2949187\n" "help.text" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviación estándar a partir de la población total." +msgstr "Calcula la desviación típica a partir de la población total." #. J5bPQ #: 04060185.xhp @@ -39248,7 +39248,7 @@ "par_id2954392\n" "help.text" msgid "STDEV.P()" -msgstr "DESVIACIÓN ESTÁNDAR.P" +msgstr "DESVEST.P" #. 9PAi8 #: 04060185.xhp @@ -39293,7 +39293,7 @@ "par_id2854392\n" "help.text" msgid "STDEV.S()" -msgstr "DESVIACIÓN ESTÁNDAR.S" +msgstr "DESVEST.M()" #. fPUck #: 04060185.xhp @@ -39311,7 +39311,7 @@ "par_id2853933\n" "help.text" msgid "=STDEV.S(A1:A50) returns a standard deviation of the data referenced." -msgstr "=DESVEST.M(A1:A50) calcula la desviación estándar de los datos referenciados." +msgstr "=DESVEST.M(A1:A50) devuelve la desviación típica de los datos referenciados." #. YJcDx #: 04060185.xhp @@ -39338,7 +39338,7 @@ "par_id3149549\n" "help.text" msgid "Calculates the standard deviation based on the entire population." -msgstr "Calcula la desviación estándar a partir de la población total." +msgstr "Calcula la desviación típica a partir de la población total." #. gqtD3 #: 04060185.xhp @@ -39428,7 +39428,7 @@ "par_id3148874\n" "help.text" msgid "StDev is the standard deviation of the distribution." -msgstr "Desv_estándar es la desviación estándar de la distribución." +msgstr "Desviación típica es la desviación típica de la distribución." #. vQ7nD #: 04060185.xhp @@ -40112,7 +40112,7 @@ "par_id3155327\n" "help.text" msgid "Type is the kind of t-test to perform. Type 1 means paired. Type 2 means two samples, equal variance (homoscedastic). Type 3 means two samples, unequal variance (heteroscedastic)." -msgstr "Tipo es un tipo de prueba t que se va a realizar. Tipo 1 significa pareada. Tipo 2 significa dos muestras, igual varianza (homoscedástica). Tipo 3 significa dos muestras, varianza distinta (heteroscedástica)." +msgstr "Tipo es el tipo de prueba t que se va a realizar. Tipo 1 significa pareada. Tipo 2 significa dos muestras, igual varianza (homoscedástica). Tipo 3 significa dos muestras, varianza distinta (heteroscedástica)." #. zT8kK #: 04060185.xhp @@ -40607,7 +40607,7 @@ "par_id3155122\n" "help.text" msgid "Estimates a variance based on a sample. The value of text is 0." -msgstr "Realiza una estimación de la varianza a partir de una muestra. El valor del texto es 0." +msgstr "Estima una varianza a partir de una muestra. El valor del texto es 0." #. mrEpZ #: 04060185.xhp @@ -45512,7 +45512,7 @@ "tit\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. fFwFU #: 06020000.xhp @@ -45521,7 +45521,7 @@ "bm_id3159399\n" "help.text" msgid "automatic hyphenation in spreadsheetshyphenation; in spreadsheetssyllables in spreadsheets" -msgstr "división de palabras automática en hojas de cálculodivisión de palabras; en hojas de cálculosílabas en hojas de cálculo" +msgstr "corte de palabras automático en hojas de cálculocorte de palabras; en hojas de cálculosílabas en hojas de cálculo" #. RFvCe #: 06020000.xhp @@ -45530,7 +45530,7 @@ "hd_id3159399\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. uDEz3 #: 06020000.xhp @@ -45539,7 +45539,7 @@ "par_id3145068\n" "help.text" msgid "The Hyphenation command calls the dialog for setting the hyphenation in $[officename] Calc." -msgstr "La orden División de palabras abre el cuadro de diálogo para establecer el silabeo en $[officename] Calc." +msgstr "La orden Corte de palabras abre el cuadro de diálogo para establecer el silabeo en $[officename] Calc." #. xwmmG #: 06020000.xhp @@ -45557,7 +45557,7 @@ "hd_id3153192\n" "help.text" msgid "Hyphenation for selected cells." -msgstr "División de palabras en las celdas seleccionadas." +msgstr "Corte de palabras en las celdas seleccionadas." #. g7WAn #: 06020000.xhp @@ -45566,7 +45566,7 @@ "par_id3150868\n" "help.text" msgid "Select the cells for which you want to change the hyphenation." -msgstr "Seleccione las celdas para las que desee modificar la división de palabras." +msgstr "Seleccione las celdas para las que desee modificar el corte de palabras." #. cECJ8 #: 06020000.xhp @@ -45575,7 +45575,7 @@ "par_id3150440\n" "help.text" msgid "Choose Tools - Language - Hyphenation." -msgstr "Vaya a Herramientas ▸ Idioma ▸ División de palabras." +msgstr "Vaya a Herramientas ▸ Idioma ▸ Corte de palabras." #. DWP9n #: 06020000.xhp @@ -45593,7 +45593,7 @@ "par_id3149260\n" "help.text" msgid "Mark the Wrap text automatically and Hyphenation active check boxes." -msgstr "Marque las casillas de verificación Ajustar texto automáticamente y División de palabras activa." +msgstr "Marque las casillas de verificación Ajustar texto automáticamente y Corte de palabras activo." #. isLg3 #: 06020000.xhp @@ -45602,7 +45602,7 @@ "hd_id3153094\n" "help.text" msgid "Hyphenation for Drawing Objects" -msgstr "División de palabras en objetos de dibujo" +msgstr "Corte de palabras en objetos de dibujo" #. jMPZJ #: 06020000.xhp @@ -45620,7 +45620,7 @@ "par_id3156285\n" "help.text" msgid "Choose Tools - Language - Hyphenation." -msgstr "Vaya a Herramientas ▸ Idioma ▸ División de palabras." +msgstr "Vaya a Herramientas ▸ Idioma ▸ Corte de palabras." #. EyCsS #: 06020000.xhp @@ -45629,7 +45629,7 @@ "par_id3147394\n" "help.text" msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status." -msgstr "Con cada ejecución de la orden se activará o desactivará la división de palabras en el objeto de dibujo. Una marca muestra el estado actual." +msgstr "Con cada ejecución de la orden se activará o desactivará el corte de palabras en el objeto de dibujo. Una marca muestra el estado actual." #. HDYd5 #: 06030000.xhp @@ -45980,7 +45980,7 @@ "tit\n" "help.text" msgid "Mark Invalid Data" -msgstr "Marcar los datos incorrectos" +msgstr "Marcar datos no válidos" #. kDvoF #: 06030800.xhp @@ -46385,7 +46385,7 @@ "par_idN10780\n" "help.text" msgid "You can only edit cell values if the Prevent changes option is selected, if the Copy back is option is not selected, and if the cells are not protected." -msgstr "Los valores de celdas sólo se pueden editar si la opción Evitar cambios está seleccionada, la opción Copiar reverso no está seleccionada y las celdas no están protegidas." +msgstr "Los valores de las celdas solo se pueden editar si la opción Impedir cambios está seleccionada, la opción Copiar de vuelta no está seleccionada y las celdas no están protegidas." #. yMejD #: 06050000.xhp @@ -46394,7 +46394,7 @@ "par_idN1078C\n" "help.text" msgid "You can only change scenario cell values and write them back into the scenario if the Prevent changes option is not selected, if the Copy back option is selected, and if the cells are not protected." -msgstr "Sólo se pueden cambiar los valores de las celdas del escenario y volver a escribirlos en el mismo si la opción Evitar cambios no está seleccionada, la opción Copiar reverso está seleccionada y las celdas no están protegidas." +msgstr "Solo se pueden cambiar los valores de las celdas del escenario y volver a escribirlos en el mismo si la opción Impedir cambios no está seleccionada, la opción Copiar de vuelta está seleccionada y las celdas no están protegidas." #. AMrfx #: 06060000.xhp @@ -46538,7 +46538,7 @@ "hd_id711619431316966\n" "help.text" msgid "Allow users of this sheet to" -msgstr "Permitir a los usuarios ésta hoja" +msgstr "Permitir a los usuarios de esta hoja" #. skcWB #: 06060100.xhp @@ -46592,7 +46592,7 @@ "par_id311619430374686\n" "help.text" msgid "Delete columns: Allow column deletions. Note that column deletions are only allowed on unprotected cells." -msgstr "Eliminar columnasPermitir eliminar las columnas. Tenga en cuenta que la eliminación de columnas sólo se permiten en las celdas no protegidas." +msgstr "Eliminar columnas: permite eliminar las columnas. Tenga en cuenta que las eliminaciones de columnas solo se permiten en las celdas no protegidas." #. ebwLU #: 06060100.xhp @@ -47089,7 +47089,7 @@ "tit\n" "help.text" msgid "Freeze Rows and Columns" -msgstr "Congelar filas y columnas" +msgstr "Inmovilizar filas y columnas" #. nwRKF #: 07090000.xhp @@ -47116,7 +47116,7 @@ "tit\n" "help.text" msgid "Freeze Cells" -msgstr "Congelar celdas" +msgstr "Inmovilizar celdas" #. U6FYG #: 07090100.xhp @@ -47143,7 +47143,7 @@ "par_id481612313262514\n" "help.text" msgid "Freezes the first column or the first row of the current spreadsheet." -msgstr "Congela la primera columna o la primera fila de la hoja de cálculo actual." +msgstr "Fija la primera columna o la primera fila de la hoja de cálculo actual." #. ozNTG #: 12010000.xhp @@ -47152,7 +47152,7 @@ "tit\n" "help.text" msgid "Define Database Range" -msgstr "Definir área de base de datos" +msgstr "Definir intervalo de base de datos" #. 3F2WA #: 12010000.xhp @@ -50257,7 +50257,7 @@ "par_id3166426\n" "help.text" msgid "Calculates and displays the grand total of the column calculation." -msgstr "Calcula y muestra el total del cálculo de la columna." +msgstr "Calcula y muestra el total general del cálculo de la columna." #. KpRF2 #: 12090102.xhp @@ -50275,7 +50275,7 @@ "par_id3152583\n" "help.text" msgid "Calculates and displays the grand total of the row calculation." -msgstr "Calcula y muestra el total del cálculo de la fila." +msgstr "Calcula y muestra el total general del cálculo de la fila." #. D5zQr #: 12090102.xhp @@ -51220,7 +51220,7 @@ "par_idN107A7\n" "help.text" msgid "Same as \"% of row\", but the grand total for the result's data field is used." -msgstr "Igual que \"% de fila\", pero utiliza el total del campo de datos del resultado." +msgstr "Igual que «% de fila», pero utiliza el total general del campo de datos del resultado." #. CcmCV #: 12090105.xhp @@ -51247,7 +51247,7 @@ "par_idN107B7\n" "help.text" msgid "( original result * grand total ) / ( row total * column total )" -msgstr "( resultado original * total del cálculo ) / ( total de fila * total de columna )" +msgstr "( resultado original * total general ) / ( total de fila * total de columna )" #. Kfgj3 #: 12090105.xhp @@ -51463,7 +51463,7 @@ "par_idN1059E\n" "help.text" msgid "Displays the top or bottom nn items when you sort by a specified field." -msgstr "Muestra los elementos nn superiores o inferiores cuando se ordena por un campo específico." +msgstr "Muestra los nn elementos superiores o inferiores cuando se ordena por un campo específico." #. 9BvAe #: 12090106.xhp @@ -51724,7 +51724,7 @@ "par_idN1057A\n" "help.text" msgid "Specifies whether to enter the start value for grouping yourself." -msgstr "Especifica si se va a introducir manualmente el valor de inicio para la agrupación." +msgstr "Especifica si se va a introducir manualmente el valor inicial de la agrupación." #. BEFPa #: 12090400.xhp @@ -51778,7 +51778,7 @@ "par_idN1058F\n" "help.text" msgid "Specifies whether to enter the end value for grouping yourself." -msgstr "Especifica si se va a introducir manualmente el valor de fin para la agrupación." +msgstr "Especifica si se va a introducir manualmente el valor final de la agrupación." #. h5kF4 #: 12090400.xhp @@ -52192,7 +52192,7 @@ "par_id3153967\n" "help.text" msgid "In conjunction with Tools - Detective - Mark invalid Data, this defines that blank cells are shown as invalid data (disabled) or not (enabled)." -msgstr "En combinación con Herramientas ▸ Detective ▸ Marcar los datos incorrectos, esta función establece que las celdas en blanco se mostrarán como datos incorrectos (desactivadas) o no (activadas)." +msgstr "En combinación con Herramientas ▸ Detective ▸ Marcar datos no válidos, esta función establece que las celdas en blanco se muestren como datos no válidos (desactivada) o no (activada)." #. knPBu #: 12120100.xhp @@ -52318,7 +52318,7 @@ "par_id3153199\n" "help.text" msgid "Enter the minimum value for the data validation option that you selected in the Allow box." -msgstr "Escriba el valor mínimo para la opción de validación de datos seleccionada en el cuadro Permitirbox." +msgstr "Introduzca el valor mínimo para la opción de validación de datos seleccionada en el cuadro Permitir." #. qjCBG #: 12120100.xhp @@ -52435,7 +52435,7 @@ "par_id3150752\n" "help.text" msgid "Enter the message that you want to display when the cell or cell range is selected." -msgstr "Escriba el mensaje que desea que se muestre al seleccionar la celda o el área de celdas." +msgstr "Escriba el mensaje que desea que se muestre al seleccionar la celda o el intervalo de celdas." #. w7EtY #: 12120300.xhp @@ -60616,7 +60616,7 @@ "par_id0403201618595150\n" "help.text" msgid "For ETS, Calc uses an approximation based on 1000 calculations with random variations within the standard deviation of the observation data set (the historical values)." -msgstr "Para ETS, Calc utiliza una aproximación basada en 1000 cálculos con variaciones aleatorias dentro de la desviación estándar del conjunto de datos de observación (los valores históricos)." +msgstr "Para ETS, Calc utiliza una aproximación basada en 1000 cálculos con variaciones aleatorias dentro de la desviación típica del conjunto de datos de observación (los valores históricos)." #. KTjG5 #: func_forecastetspiadd.xhp @@ -60742,7 +60742,7 @@ "par_id0403201618595150\n" "help.text" msgid "For ETS, Calc uses an approximation based on 1000 calculations with random variations within the standard deviation of the observation data set (the historical values)." -msgstr "Para ETS, Calc utiliza una aproximación basada en 1000 cálculos con variaciones aleatorias dentro de la desviación estándar del conjunto de datos de observación (los valores históricos)." +msgstr "Para ETS, Calc utiliza una aproximación basada en 1000 cálculos con variaciones aleatorias dentro de la desviación típica del conjunto de datos de observación (los valores históricos)." #. wtJsd #: func_forecastetspimult.xhp @@ -67663,7 +67663,7 @@ "par_id631647275500217\n" "help.text" msgid "In order to correctly identify the changes, each collaborator should enter their name in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - User Data on the Menu bar." -msgstr "Para identificar correctamente los cambios, cada colaborador debe ingresar su nombre en%PRODUCTNAME - PreferenciasOpciones de herramientas- %PRODUCTNAME Datos del usuarioen la barra de Menú." +msgstr "Para identificar correctamente los cambios, cada colaborador debe proporcionar su nombre en %PRODUCTNAME ▸ PreferenciasHerramientas ▸ Opciones ▸ %PRODUCTNAME ▸ Datos de identidad." #. k7H5Y #: solver.xhp @@ -67699,7 +67699,7 @@ "par_id9210486\n" "help.text" msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods." -msgstr "Abre el cuadro de diálogo Solucionador. Un solucionador le permite resolver problemas matemáticos con múltiples variables desconocidas y un conjunto de restricciones sobre las variables mediante métodos de búsqueda de objetivos." +msgstr "Abre el cuadro de diálogo Solver. Un Solver le permite resolver problemas matemáticos con múltiples variables desconocidas y un conjunto de restricciones sobre las variables mediante métodos de búsqueda de valores objetivo." #. wszcE #: solver.xhp @@ -67960,7 +67960,7 @@ "hd_id0603200910430882\n" "help.text" msgid "Using Non-Linear solvers" -msgstr "Uso de solucionadores no lineales" +msgstr "Uso de Solvers no lineales" #. UTzzV #: solver.xhp @@ -68131,7 +68131,7 @@ "par_id271589981559367\n" "help.text" msgid "Wiki page on non-linear solvers and theirs algorithms" -msgstr "Página wiki sobre solucionadores no lineales y sus algoritmos" +msgstr "Página wiki sobre Solvers no lineales y sus algoritmos" #. A843R #: solver_options_algo.xhp @@ -68428,7 +68428,7 @@ "par_id0503200917103792\n" "help.text" msgid "Use Random Starting Point" -msgstr "Utilizar el punto de inicio aleatorio" +msgstr "Utilizar punto inicial aleatorio" #. EdJoF #: solver_options_algo.xhp @@ -68707,7 +68707,7 @@ "par_id271589981559367\n" "help.text" msgid "Wiki page on non-linear solvers and theirs algorithms" -msgstr "Página wiki sobre solucionadores no lineales y sus algoritmos" +msgstr "Página del wiki sobre Solvers no lineales y sus algoritmos" #. D2nCR #: solver_options_algo.xhp @@ -69490,7 +69490,7 @@ "par_id1001380\n" "help.text" msgid "Mean" -msgstr "Promedio" +msgstr "Media" #. CnFDW #: statistics_anova.xhp @@ -70057,7 +70057,7 @@ "par_id1000920\n" "help.text" msgid "Standard Deviation" -msgstr "Desviación estándar" +msgstr "Desviación típica" #. JqtpV #: statistics_descriptive.xhp @@ -70156,7 +70156,7 @@ "par_id1002120\n" "help.text" msgid "Results in a smoothed data series" -msgstr "Da como resultado una serie de datos suavizados" +msgstr "Da como resultado una serie de datos alisados" #. CA94C #: statistics_exposmooth.xhp @@ -70201,9 +70201,7 @@ "par_id1002160\n" "help.text" msgid "Smoothing Factor: A parameter between 0 and 1 that represents the damping factor Alpha in the smoothing equation." -msgstr "" -"Factor de alisamiento: Un parámetro entre 0 y 1 que representa el factor de amortiguamiento Alfa en la ecuación de alisamiento\n" -"ingles" +msgstr "Factor de alisamiento: un parámetro entre 0 y 1 que representa el factor de amortiguamiento Alfa en la ecuación de alisamiento." #. b4y8A #: statistics_exposmooth.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/scalc/guide.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/scalc/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/scalc/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 09:50+0000\n" +"PO-Revision-Date: 2023-04-10 13:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -293,7 +293,7 @@ "par_id3147427\n" "help.text" msgid "The AutoFilter function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed." -msgstr "La función AutoFilter inserta en una o más columnas de datos un cuadro combinado que permite seleccionar los registros (filas) que se deben mostrar." +msgstr "La función Filtro automático inserta en una o más columnas de datos un cuadro combinado que permite seleccionar los registros (filas) que se deben mostrar." #. BCGPe #: autofilter.xhp @@ -302,7 +302,7 @@ "par_id3152576\n" "help.text" msgid "Select the columns you want to use AutoFilter on." -msgstr "Seleccione las columnas en las que desee utilizar el AutoFilter." +msgstr "Seleccione las columnas en las que desee utilizar el filtro automático." #. Qk7GY #: autofilter.xhp @@ -329,7 +329,7 @@ "par_id3155064\n" "help.text" msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button." -msgstr "Sólo se muestran las filas cuyo contenido cumple los criterios de filtro. Las otras filas se filtran. Es posible ver si las filas se han filtrado a partir de números de fila discontinuos. La columna que se ha utilizado para el filtro se identifica mediante un botón de flecha de color distinto." +msgstr "Solo se muestran las filas cuyo contenido cumple los criterios de filtro. Las otras filas se filtran. Es posible ver si las filas se han filtrado a partir de números de fila discontinuos. La columna que se ha utilizado para el filtro se identifica mediante un botón de flecha de color distinto." #. BTbCP #: autofilter.xhp @@ -455,7 +455,7 @@ "par_idN106D5\n" "help.text" msgid "Go to Format - AutoFormat Styles to open the AutoFormat dialog." -msgstr "" +msgstr "Diríjase a Formato ▸ Estilos de formato automático para abrir el cuadro de diálogo Formato automático." #. CXiex #: autoformat.xhp @@ -1643,7 +1643,7 @@ "par_id3145271\n" "help.text" msgid "In the formula, an entire 24-hour day has a value of 1 and one hour has a value of 1/24. The logical value in parentheses is 0 or 1, corresponding to 0 or 24 hours. The result returned by the formula is automatically issued in time format due to the sequence of the operands." -msgstr "La fórmula parte de la base de que un día entero con sus 24 horas tiene el valor 1 y que, por lo tanto, una hora representa 1/24 parte de ese valor. El valor lógico entre paréntesis es 0 ó 1 que corresponde a 0 ó 24 horas. El resultado de la fórmula se mostrará automáticamente en formato de hora gracias al orden de los operandos." +msgstr "La fórmula parte de la base de que un día entero con sus 24 horas tiene el valor 1 y que, por lo tanto, una hora representa 1⁄24 parte de ese valor. El valor lógico entre paréntesis es 0 o 1, que corresponde a 0 o 24 horas. El resultado de la fórmula se mostrará automáticamente en formato horario gracias al orden de los operandos." #. M8CyC #: calculate.xhp @@ -4145,7 +4145,7 @@ "par_id3145640\n" "help.text" msgid "If, under Language, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"." -msgstr "Si, en Idioma, convierte las celdas a \"Inglés (EE. UU.)\", también se transferirá la configuración regional de inglés y el formato de moneda predeterminado será \"$ 1,234.00\"." +msgstr "Si, en Idioma, convierte las celdas a «Inglés (EE. UU.)», también se transferirá la configuración regional de inglés y el formato monetario predeterminado será «$ 1,234.00»." #. CzbsK #: currency_format.xhp @@ -7160,7 +7160,7 @@ "par_id3145367\n" "help.text" msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose Format cells. Select \"Fraction\" from the Category field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8." -msgstr "Si desea ver fracciones de varios dígitos deberá cambiar el formato de la celda para que se muestren las fracciones con varios dígitos. Abra el menú contextual de la celda y seleccione Formato de celdas. Seleccione \"Fracción\" en el campo Categoría y, a continuación, seleccione \"-1234 10/81\". Ahora podrá escribir fracciones como 12/31 o 12/32; sin embargo, las fracciones se simplifican de forma automática, por lo que en el caso del último ejemplo se mostrará 3/8." +msgstr "Si desea ver fracciones de varios dígitos deberá cambiar el formato de la celda para que se muestren las fracciones con varios dígitos. Abra el menú contextual de la celda y seleccione Formato de celdas. Seleccione «Fracción» en el campo Categoría y, a continuación, seleccione «-1234 10/81». Ahora podrá escribir fracciones como 12/31 o 12/32; sin embargo, las fracciones se simplifican de forma automática, por lo que en el caso del último ejemplo se mostrará 3/8." #. ixdhC #: goalseek.xhp @@ -7484,7 +7484,7 @@ "par_id3154013\n" "help.text" msgid "Format a cell with a number format such as \\0000. This format can be assigned in the Format code field under the Format - Cells - Numbers tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"." -msgstr "Formatear una celda con un número de formato tal como \\0000. Éste formato puede ser asignado en el campo Código de Formato en la pestaña Formato - Celdas - Números , y define que la celda sea mostrada como \" siempre poner un cero primero y después el entero teniendo al menos tres lugares, y llenados con ceros a la izquierda si hay menos de tres dígitos. \"." +msgstr "Formatee una celda con un formato numérico tal como \\0000. Este formato puede asignarse en el campo Código de formato del cuadro de diálogo Formato ▸ Celdas ▸ pestaña Números, y define la visualización de la celda como «siempre poner un cero al principio y luego el entero, con al menos tres decimales, y rellenar con ceros a la izquierda si hay menos de tres dígitos»." #. 9RanL #: integer_leading_zero.xhp @@ -13019,7 +13019,7 @@ "tit\n" "help.text" msgid "Validity of Cell Contents" -msgstr "Validez de contenidos de celda" +msgstr "Validez del contenido de las celdas" #. N5T5g #: validity.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/scalc.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/scalc.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/scalc.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/scalc.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-03-07 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1548565117.000000\n" #. ZxQeC @@ -257,7 +257,7 @@ "hd_id241636195404363\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Comentarios" #. oPaHx #: main0103.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/schart/01.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/schart/01.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/schart/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/schart/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-03-01 09:47+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -653,7 +653,7 @@ "par_id1106200812112531\n" "help.text" msgid "Specifies whether the legend should overlap the chart. Turning off this option is useful if you want to display the legend above an empty part of the chart area instead of beside it. This way the drawing area can fill the whole chart area, increasing its readability." -msgstr "Especifica si la leyenda puede superponerse al gráfico. Desactivar esta opción resulta útil si quiere que la leyenda se muestre sobre una zona vacía del gráfico, en vez de a un costado. De esta manera, el área de dibujo puede llenar totalmente el área del gráfico, lo que mejora su legibilidad." +msgstr "Especifica si la leyenda puede superponerse al gráfico. Desactivar esta opción resulta útil si quiere que la leyenda se muestre sobre una zona vacía del gráfico, en vez de a un costado. De esta manera, el área de dibujo puede llenar totalmente el área del gráfico, lo que mejora su inteligibilidad." #. WXyyt #: 04030000.xhp @@ -1076,7 +1076,7 @@ "par_id3149666\n" "help.text" msgid "Use the X or Y Error Bars dialog to display error bars for 2D charts." -msgstr "Utilice el cuadro de diálogo Barraas de error X o Y para mostrar barras de error en gráficos 2D." +msgstr "Utilice el cuadro de diálogo Barras de error X o Y para mostrar barras de error en gráficos 2D." #. dw9Dz #: 04050000.xhp @@ -1211,7 +1211,7 @@ "par_id3153249\n" "help.text" msgid "Standard Deviation: Displays the standard deviation (square root of the variance). Unlike other functions, error bars are centered on the mean." -msgstr "Desviación estándar: muestra la desviación estándar (raíz cuadrada de la varianza). A diferencia de otras funciones, las barras de error se centran en la media." +msgstr "Desviación típica: muestra la desviación típica (raíz cuadrada de la varianza). A diferencia de otras funciones, las barras de error se centran en la media." #. GdCG9 #: 04050000.xhp @@ -4586,7 +4586,7 @@ "par_id3154757\n" "help.text" msgid "This function is only available if you have data displayed in columns. It is not possible to switch to data display in rows." -msgstr "Esta función sólo está disponible si hay datos en las columnas. No es posible cambiar a la visualización de datos por filas." +msgstr "Esta función solo está disponible si hay datos en las columnas. No es posible cambiar a la visualización de datos por filas." #. oMeCC #: 05120000.xhp @@ -6296,7 +6296,7 @@ "par_id2655720\n" "help.text" msgid "Mark Stack series to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select Percent, the y values are scaled as percentage of the category total." -msgstr "Marcar Series apiladas para arreglar los puntos y valores acumulados por encima de los demás. Los valores ya no representan valores absolutos, a excepción de la primera columna que se dibuja en el botón de los puntos aplicados. Si usted selecciona Porcentaje, los valores son escalados como porcentaje de la categoría total." +msgstr "Active Series apiladas para disponer los valores Y de los puntos acumulados por encima de los demás. Los valores Y ya no representan valores absolutos, salvo por la primera columna, que se dibuja en el fondo de los puntos apilados. Si selecciona Porcentaje, los valores Y se escalan como porcentaje del total de la categoría." #. mwECA #: type_line.xhp @@ -7385,7 +7385,7 @@ "bm_id84231\n" "help.text" msgid "scatter chartsXY chartschart types;XY (scatter)error indicators in chartserror bars in chartsaverages in chartsstatistics in chartsvariances in chartsstandard deviation in charts" -msgstr "gráficos de dispersióngráficos XYtipos de gráfico;XY (disperso)indicadores de error en gráficosbarras de error en gráficospromedios en gráficosestadísticas en gráficosvarianzas en gráficosdesviación estándar en gráficos" +msgstr "gráficos de dispersióngráficos XYtipos de gráfico;XY (disperso)indicadores de error en gráficosbarras de error en gráficospromedios en gráficosestadísticas en gráficosvarianzas en gráficosdesviación típica en gráficos" #. QBDn7 #: type_xy.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/sdatabase.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/sdatabase.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/sdatabase.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/sdatabase.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-03-30 10:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. ugSgG #: 02000000.xhp @@ -2506,7 +2506,7 @@ "par_id191120151939594217\n" "help.text" msgid "The user can use the SQL wild-card characters \"%\" (arbitrary string) or \"_\" (arbitrary single character) as part of the value to retrieve records with more complex criteria." -msgstr "" +msgstr "Es posible utilizar los caracteres comodín «%» (cadena arbitraria) y «_» (carácter único arbitrario) de SQL como parte del valor para recuperar registros con criterios más complejos." #. wRe6v #: 02010100.xhp @@ -2542,7 +2542,7 @@ "par_id3152412\n" "help.text" msgid "You can formulate your query directly in SQL code. Note, however, that the special syntax is dependent upon the database system that you use." -msgstr "" +msgstr "Puede formular su consulta directamente en lenguaje SQL. Es oportuno recordar, empero, que la sintaxis exacta depende del sistema de bases de datos que se utilice." #. kkuBG #: 02010100.xhp @@ -2578,7 +2578,7 @@ "bm_id3154015\n" "help.text" msgid "links;relational databases (Base) inner joins (Base) joins in databases (Base) left joins (Base) right joins (Base) full joins (Base)" -msgstr "" +msgstr "enlaces;bases de datos relacionales (Base)uniones internas (Base)uniones en bases de datos (Base)uniones izquierdas (Base) uniones derechas (Base)uniones completas (Base)" #. DG7RD #: 02010101.xhp @@ -2668,7 +2668,7 @@ "hd_id3155334\n" "help.text" msgid "Inner Join" -msgstr "" +msgstr "Unión interior" #. 356Dv #: 02010101.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/sdraw/guide.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/sdraw/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/sdraw/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547843369.000000\n" #. cZbDh @@ -1112,7 +1112,7 @@ "par_id3147344\n" "help.text" msgid "You can also use the Transparency option to replace the transparent areas of an image with a color." -msgstr "El atributo Transparencia se considera también un color. La transparencia de una imagen se puede sustituir por otro color, por ejemplo, blanco. Esto sería aconsejable si el controlador de la impresora tuviera problemas con la impresión de imágenes transparentes." +msgstr "También existe la posibilidad de usar la opción Transparencia para reemplazar las áreas transparentes de una imagen por algún color." #. Ze6JL #: eyedropper.xhp @@ -2516,7 +2516,7 @@ "par_id3153085\n" "help.text" msgid "The Dimension Lines layer is where you draw, for example, the dimension lines. By switching the layer to show or hide, you can easily switch these lines on and off." -msgstr "En la capa Líneas de cota puede trazar, por ejemplo, las mencionadas líneas para dimensionamiento. Puede mostrar u ocultar esta capa para activar o desactivar las líneas con facilidad." +msgstr "En la capa Líneas de cota puede trazar, por ejemplo, las mencionadas líneas para acotación. Puede mostrar u ocultar esta capa para activar o desactivar las líneas con facilidad." #. zDY7B #: layers.xhp @@ -2678,7 +2678,7 @@ "par_id0930200803002463\n" "help.text" msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value." -msgstr "Pulse con el botón secundario del ratón para abrir el menú contextual. Elija Posición y tamaño ▸ Giro para introducir un valor de giro exacto." +msgstr "Pulse sobre el objeto con el botón secundario del ratón para abrir el menú contextual. Elija Posición y tamaño ▸ Giro para introducir un valor de giro exacto." #. G5NAB #: rotate_object.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/00.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/00.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 07:23+0000\n" +"PO-Revision-Date: 2023-04-30 15:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1139,7 +1139,7 @@ "par_id3149483\n" "help.text" msgid "$[officename] creates ImageMaps for both methods. Select the format from the File type list in the Save As dialog in the ImageMap Editor. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program." -msgstr "$[officename] crea mapas de imágenes para ambos métodos. Seleccione el formato desde Tipo de Archivo en el diálogo Guardar como, en el Editor de mapa de imágenes. Se deben enviar al servidor cada uno de los archivos de mapas creados. Debe preguntar a su proveedor o administrador de redes qué tipo de mapa de imágenes admite el servidor y cómo acceder al programa de evaluación." +msgstr "$[officename] crea imágenes interactivas para ambos métodos. Seleccione el formato en la lista Tipo de archivo del cuadro de diálogo Guardar como, en el Editor de imágenes interactivas. Se crearán archivos separados que deben cargarse en el servidor. Pregunte a su proveedor o administrador de redes qué tipo de imagen interactiva admite el servidor y cómo acceder al programa de evaluación." #. TZxFS #: 00000002.xhp @@ -2795,7 +2795,7 @@ "hd_id551604189872115\n" "help.text" msgid "Page line-spacing (register-true)" -msgstr "" +msgstr "Conformidad de registro" #. yspD9 #: 00000005.xhp @@ -3839,7 +3839,7 @@ "hd_id3148556\n" "help.text" msgid "Importing and Exporting Spreadsheet Files" -msgstr "Importación y exportación de los archivos de hojas de cálculo" +msgstr "Importar y exportar archivos de hoja de cálculo" #. Cdej5 #: 00000020.xhp @@ -11066,7 +11066,7 @@ "par_id3151332\n" "help.text" msgid "Menu Format - Image - Properties - Crop tab." -msgstr "" +msgstr "Vaya a Formato ▸ Imagen ▸ Propiedades ▸ pestaña Recortar." #. eREMF #: 00040500.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 10:44+0000\n" +"PO-Revision-Date: 2023-05-03 11:52+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -3416,7 +3416,7 @@ "hd_id3149182\n" "help.text" msgid "Modified" -msgstr "" +msgstr "Modificado el" #. g5sGH #: 01100200.xhp @@ -3551,7 +3551,7 @@ "hd_id3154810\n" "help.text" msgid "Apply User Data" -msgstr "Utilizar datos de usuario" +msgstr "Aplicar datos de identidad" #. EPUeH #: 01100200.xhp @@ -9959,7 +9959,7 @@ "hd_id3147124\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. NN2ds #: 02100200.xhp @@ -9968,7 +9968,7 @@ "par_id3153877\n" "help.text" msgid "Finds the Hyphenation attribute." -msgstr "Encuentra el atributo de división de palabras." +msgstr "Encuentra el atributo Corte de palabras." #. 5AbaD #: 02100200.xhp @@ -11120,7 +11120,7 @@ "par_id3150008\n" "help.text" msgid "Lets you edit a selected OLE object that you inserted with the Insert – OLE Object command." -msgstr "" +msgstr "Le permite editar un objeto OLE seleccionado que se haya insertado mediante la orden Insertar ▸ Objeto OLE." #. PXv8N #: 02200200.xhp @@ -11165,7 +11165,7 @@ "par_id3154230\n" "help.text" msgid "This menu command is inserted into Edit – Objects submenu by the application that created the linked object. Depending on the application, the Open command for the OLE object might have a different name." -msgstr "" +msgstr "Esta orden del menú la inserta en el submenú Editar ▸ Objetos la aplicación que creó el objeto enlazado. Según la aplicación utilizada, la orden Abrir del objeto OLE puede tener un nombre diferente." #. 2hNUE #: 02200200.xhp @@ -11525,7 +11525,7 @@ "par_id3149751\n" "help.text" msgid "You can draw three types of hotspots: rectangles, ellipses, and polygons. When you click a hotspot, the URL is opened in the browser window or frame that you specify. You can also specify the text that appears when your mouse rests on the hotspot." -msgstr "" +msgstr "Puede trazar tres tipos de zonas activas: rectángulos, elipses y polígonos. Cuando pulsa en una zona activa, el URL se abre en la ventana o el marco del navegador que especifique. Puede especificar asimismo el texto que aparece cuando el ratón se posa sobre la zona activa." #. vzWkG #: 02220000.xhp @@ -15476,7 +15476,7 @@ "par_id3159079\n" "help.text" msgid "Inserts an embedded or linked object into your document, including formulas, QR codes, and OLE objects." -msgstr "" +msgstr "Inserta un objeto incrustado o enlazado en el documento, el cual puede ser una fórmula, un código QR o un objeto OLE." #. PuimY #: 04150000.xhp @@ -15638,7 +15638,7 @@ "par_id3155434\n" "help.text" msgid "Enter the name of the file that you want to link or embed, or click Search to locate the file." -msgstr "" +msgstr "Introduzca el nombre del archivo que quiere enlazar o incrustar, o bien, pulse en Buscar para localizar el archivo." #. CHtvz #: 04150100.xhp @@ -17951,7 +17951,7 @@ "par_id1002200811423556\n" "help.text" msgid "For example, if your software is set to an English locale, and you want to format a year with four digits, you enter YYYY as a formatting code. When you switch to a German locale, you must use JJJJ instead. The following table lists only the localized differences." -msgstr "Por ejemplo, si su software está configurado para un Inglés local, y desea dar formato a un año con cuatro dígitos, introduzca AAAA como un código de formato. Al cambiar a un local alemán, debe utilizar en lugar JJJJ. La siguiente tabla muestra sólo las diferencias locales." +msgstr "Por ejemplo, si su programa tiene establecida una configuración regional inglesa, y desea formatear un año con cuatro dígitos, el código necesario para ello es YYYY. Si cambia a una configuración alemana, deberá utilizar JJJJ. La tabla siguiente enumera las diferencias por configuración regional." #. FAbZk #: 05020301.xhp @@ -31217,7 +31217,7 @@ "par_id3152924\n" "help.text" msgid "To align an image, frame, or OLE object relative to the anchored character, right-click the object, and choose Properties. Click the Position and Size tab, and in the Position area, select Character in the to boxes." -msgstr "" +msgstr "Para alinear una imagen, un marco o un objeto OLE de manera relativa al carácter anclado, pulse con el botón secundario del ratón sobre el objeto y seleccione Propiedades. Pulse en la pestaña Posición y tamaño, y, en el apartado Posición, elija Carácter en los cuadros A." #. 3kEAV #: 05260400.xhp @@ -33647,7 +33647,7 @@ "hd_id3147380\n" "help.text" msgid "Hyphenation active" -msgstr "División de palabras activada" +msgstr "Corte de palabras activado" #. QiwiB #: 05340300.xhp @@ -33656,7 +33656,7 @@ "par_id3148458\n" "help.text" msgid "Enables word hyphenation for text wrapping to the next line." -msgstr "Permite la separación de sílabas en el ajuste del texto a la línea siguiente." +msgstr "Activa el corte de palabras para el ajuste del texto al renglón siguiente." #. LfcUR #: 05340300.xhp @@ -36869,7 +36869,7 @@ "par_id1507309\n" "help.text" msgid "Opens a submenu. Choose a language for the selected text.
Choose None to exclude the selected text from spellchecking and hyphenation.
Choose More to open a dialog with more options.
" -msgstr "Abre un submenú. Elija el idioma del texto seleccionado.
Seleccione «Ninguno» para excluir el texto seleccionado de la revisión de ortografía y la división de palabras.
Seleccione «Más» para abrir un cuadro de diálogo con más opciones.
" +msgstr "Abre un submenú. Elija el idioma del texto seleccionado.
Seleccione «Ninguno» para excluir el texto seleccionado de la revisión de ortografía y el corte de palabras.
Seleccione «Más» para abrir un cuadro de diálogo con más opciones.
" #. wPKdz #: 06010500.xhp @@ -36905,7 +36905,7 @@ "par_id5735953\n" "help.text" msgid "Opens a submenu. Choose a language for all text.
Choose None to exclude all text from spellchecking and hyphenation.
Choose More to open a dialog with more options.
" -msgstr "Abre un submenú. Elija el idioma de todo el texto.
Seleccione «Ninguno» para excluir el texto de la revisión de ortografía y la división de palabras.
Seleccione «Más» para abrir un cuadro de diálogo con más opciones.
" +msgstr "Abre un submenú. Elija el idioma de todo el texto.
Seleccione «Ninguno» para excluir el texto de la revisión de ortografía y el corte de palabras.
Seleccione «Más» para abrir un cuadro de diálogo con más opciones.
" #. DRSYa #: 06010500.xhp @@ -36914,7 +36914,7 @@ "par_idN105AF\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. q4h2B #: 06010500.xhp @@ -36932,7 +36932,7 @@ "par_idN105D0\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. AL6nJ #: 06010500.xhp @@ -36941,7 +36941,7 @@ "par_idN105D4\n" "help.text" msgid "Turns hyphenation on and off." -msgstr "Activa y desactiva la división de palabras." +msgstr "Activa y desactiva el corte de palabras." #. EczZc #: 06010500.xhp @@ -36950,7 +36950,7 @@ "par_idN105E7\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. vFxAn #: 06010500.xhp @@ -36959,7 +36959,7 @@ "par_idN105EB\n" "help.text" msgid "Turns hyphenation on and off." -msgstr "Activa y desactiva la división de palabras." +msgstr "Activa y desactiva el corte de palabras." #. pSG6a #: 06010500.xhp @@ -39011,7 +39011,7 @@ "hd_id3149762\n" "help.text" msgid "AutoInclude" -msgstr "Incluir automáticamente" +msgstr "Inclusión automática" #. BZ8y7 #: 06040300.xhp @@ -42449,7 +42449,7 @@ "par_id981514310786648\n" "help.text" msgid "Insert Separator: Add a separator mark to improve menu readability and to group commands by subject." -msgstr "Insertar separador: añade una barra separadora para mejorar la legibilidad del menú al agrupar las órdenes por tema." +msgstr "Insertar separador: añade una barra separadora para mejorar la comprensibilidad del menú al agrupar las órdenes por tema." #. EyEkZ #: 06140100.xhp @@ -43097,7 +43097,7 @@ "par_id981514310786648\n" "help.text" msgid "Insert Separator: Add a separator mark to improve menu readability and to group commands by subject." -msgstr "Insertar separador: añade una barra separadora para mejorar la legibilidad del menú al agrupar las órdenes por tema." +msgstr "Insertar separador: añade una barra separadora para mejorar la comprensibilidad del menú al agrupar las órdenes por tema." #. vmmJm #: 06140300.xhp @@ -43412,7 +43412,7 @@ "par_id981514310786648\n" "help.text" msgid "Insert Separator: Add a separator mark to improve toolbar readability and to group commands by subject." -msgstr "Insertar separador: añade una barra separadora para mejorar la legibilidad de la barra de herramientas al agrupar las órdenes por tema." +msgstr "Insertar separador: añade una barra separadora para mejorar la comprensibilidad de la barra de herramientas al agrupar las órdenes por tema." #. ZPoWt #: 06140400.xhp @@ -44870,7 +44870,7 @@ "par_id3159157\n" "help.text" msgid "Normally in a mixed text selection made of Hangul and Hanja characters, all Hangul characters will be converted to Hanja and all Hanja characters will be converted to Hangul. If you want to convert a mixed text selection only in one direction, use the following conversion options." -msgstr "Normalmente, en una selección combinada de texto compuesto por caracteres hangul y hanja, todos los caracteres hangul se convertirán en hanja y viceversa. Si desea convertir una selección de texto combinado sólo en un sentido, use las opciones de conversión siguientes." +msgstr "Normalmente, en una selección combinada de texto compuesto por caracteres hangul y hanja, todos los caracteres hangul se convertirán en hanja y viceversa. Si desea convertir una selección de texto combinado solamente en un sentido, use las opciones de conversión siguientes." #. TEgnJ #: 06200000.xhp @@ -45203,7 +45203,7 @@ "par_idN10655\n" "help.text" msgid "Automatically replaces words that only have one suggested word replacement." -msgstr "Sustituye automáticamente las palabras que sólo tienen un reemplazo en las sugerencias de palabras." +msgstr "Sustituye automáticamente las palabras que solo tienen un reemplazo en las sugerencias de palabras." #. mTBV7 #: 06202000.xhp @@ -46463,7 +46463,7 @@ "par_id701638101681340\n" "help.text" msgid "On Windows systems, the default certificate manager is Certmgr.msc, a Microsoft Management Console snap-in using Certmgr.exe, and does not manage OpenPGP certificates. To manage both X509 and OpenPGP certificates install the gpg4win tool." -msgstr "" +msgstr "En sistemas Windows, el gestor de certificados predeterminado es Certmgr.msc, un complemento de la Microsoft Management Console que se ejecuta a través de Certmgr.exe, el cual no permite gestionar certificados OpenGPG. Para gestionar certificados X509 y OpenPGP, instale la herramienta gpg4win." #. Bsfs2 #: digitalsignaturespdf.xhp @@ -50675,7 +50675,7 @@ "par_id11371501\n" "help.text" msgid "These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank." -msgstr "Estos tres campos le permiten, facultativamente, proporcionar información adicional tocante a la firma digital que podrá aplicar al PDF (dónde, por quién y por qué se firmó, respectivamente). Estos datos se incorporarán en los campos pertinentes del PDF y serán visibles a todos quienes visualicen el PDF. Puede dejar cualquiera de estos campos en blanco." +msgstr "Estos tres campos le permiten, facultativamente, proporcionar información adicional tocante a la firma digital que podrá aplicar al PDF (dónde, por quién y por qué se firmó, respectivamente). Estos datos se incorporarán en los campos pertinentes del PDF y serán visibles a cualquier persona que visualice el PDF. Puede dejar cualquiera de estos campos en blanco." #. Po9jA #: ref_pdf_export_digital_signature.xhp @@ -51044,7 +51044,7 @@ "hd_id2796411\n" "help.text" msgid "Archive (PDF/A, ISO 19005)" -msgstr "Archivador (PDF/A, ISO 19005)" +msgstr "Archivística (PDF/A, ISO 19005)" #. ELsXa #: ref_pdf_export_general.xhp @@ -51062,7 +51062,7 @@ "par_id301602634061241\n" "help.text" msgid "PDF/A-2b is recommended for most users, because it allows for layers and transparency with shapes and images. It also compresses better (JPEG 2000) than PDF/A-1b, usually producing smaller files. PDF/A-3b is identical to PDF/A-2b, but also accepts embedding of other file formats." -msgstr "Se recomienda PDF/A-2b como la opción más adecuada para la mayoría de los usuarios porque permite emplear capas y transparencias en las formas y las imágenes. Además se comprime mejor (en JPEG 2000) que PDF/A-1b, lo que a menudo resulta en archivos más pequeños. PDF/A-3b es idéntico a PDF/A-2b, pero también acepta incrustar otros formatos de archivo." +msgstr "Se recomienda PDF/A-2b como la opción más adecuada para la mayoría de los usuarios porque permite emplear capas y transparencias en las formas y las imágenes. Además se comprime mejor (en JPEG 2000) que PDF/A-1b, lo que a menudo produce archivos más pequeños. PDF/A-3b es idéntico a PDF/A-2b, pero también permite incrustar otros formatos de archivo." #. UTPZ7 #: ref_pdf_export_general.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/02.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/02.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-03-01 09:35+0000\n" +"PO-Revision-Date: 2023-04-16 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1067,7 +1067,7 @@ "par_id3149981\n" "help.text" msgid "Icon Combo Box" -msgstr "" +msgstr "Icono Cuadro combinado" #. bUeTF #: 01170000.xhp @@ -4118,7 +4118,7 @@ "par_idN114EF\n" "help.text" msgid "Word break" -msgstr "División de palabras" +msgstr "Corte de palabras" #. GEFfK #: 01170101.xhp @@ -5639,7 +5639,7 @@ "par_id3145295\n" "help.text" msgid "For list boxes, you can use value lists. Value lists are lists that define reference values. In this way, the control in the form does not directly display the content of a database field, but rather values assigned in the value list." -msgstr "En los listados se pueden utilizar listas de valores, que definen valores referenciales. De esta manera, el campo de control no muestra directamente en el formulario un contenido de un campo de datos, sino los valores asignados mediante la lista de valores." +msgstr "En los cuadros de lista se pueden utilizar listas de valores, que definen valores referenciales. De esta manera, el control en el formulario no muestra directamente el contenido de un campo de base de datos, sino los valores asignados mediante la lista de valores." #. EycVV #: 01170102.xhp @@ -5936,7 +5936,7 @@ "par_id3159171\n" "help.text" msgid "With database forms, specifies the data source for the list content of the form-element. This field can be used to define a value list for documents without a database connection." -msgstr "" +msgstr "En los formularios de base de datos, especifica el origen de datos del contenido de la lista del elemento del formulario. Este campo puede utilizarse para definir una lista de valores para los documentos sin efectuar una conexión con una base de datos." #. 2DrgS #: 01170102.xhp @@ -6080,7 +6080,7 @@ "par_id3158404\n" "help.text" msgid "Entry in value list of the control (List content)" -msgstr "Entrada en la lista de valores del campo de control (Contenido de lista)" +msgstr "Entrada en la lista de valores del control (Contenido de lista)" #. Fyj6B #: 01170102.xhp @@ -6089,7 +6089,7 @@ "par_id3151198\n" "help.text" msgid "Transmitted data" -msgstr "Transmisión..." +msgstr "Datos transmitidos" #. R7Fmj #: 01170102.xhp @@ -8897,7 +8897,7 @@ "par_id3154360\n" "help.text" msgid "Determines if data can be added." -msgstr "" +msgstr "Determina si es posible añadir datos." #. B4Bj2 #: 01170203.xhp @@ -8933,7 +8933,7 @@ "par_id3148995\n" "help.text" msgid "Determines if the data can be deleted." -msgstr "" +msgstr "Determina si los datos pueden eliminarse." #. TGmFA #: 01170203.xhp @@ -9167,7 +9167,7 @@ "par_id3109850\n" "help.text" msgid "If form elements are inserted into a document, %PRODUCTNAME automatically determines in which order to move from one control to the next when using the Tab key. Every new control added is automatically placed at the end of this series. In the Tab Order dialog, you can adapt the order of this series to your individual needs." -msgstr "Si se insertan elementos de formulario en un documento, %PRODUCTNAME determina automáticamente en qué orden se debe ir de un campo de control al siguiente al pulsar la tecla de tabulación. Cada campo de control que se agrega se sitúa automáticamente al final de la serie. El diálogo Secuencia de activación permite adaptar el orden de esta serie a sus necesidades individuales." +msgstr "Si se insertan elementos de formulario en un documento, %PRODUCTNAME determina automáticamente en qué secuencia se debe ir de un control al siguiente al presionar la tecla de tabulación. Cada control que se añade se sitúa automáticamente al final de la serie. El cuadro de diálogo Orden de tabulación permite adaptar el orden de esta serie a sus necesidades individuales." #. DTro2 #: 01170300.xhp @@ -13712,7 +13712,7 @@ "par_id8894009\n" "help.text" msgid "Enter a URL for the file that you want to open when you click the hyperlink." -msgstr "" +msgstr "Introduzca un URL que apunte hacia el archivo que quiera que se abra cuando se pulse en el enlace." #. cEeaU #: 09070400.xhp @@ -13739,7 +13739,7 @@ "hd_id3151110\n" "help.text" msgid "File type" -msgstr "Tipo" +msgstr "Tipo de archivo" #. et8Zs #: 09070400.xhp @@ -13829,7 +13829,7 @@ "par_id3154186\n" "help.text" msgid "Icon Next Page" -msgstr "" +msgstr "Icono Página siguiente" #. FS8rq #: 10020000.xhp @@ -14711,7 +14711,7 @@ "hd_id3158407\n" "help.text" msgid "Create row only" -msgstr "Crear sólo fila" +msgstr "Crear fila solo" #. bsfkt #: 12070100.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/04.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/04.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:31+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-03-27 23:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560900244.000000\n" #. GEuoc @@ -2174,7 +2174,7 @@ "par_id3152955\n" "help.text" msgid "Selects the next point of the drawing object (Point Selection mode)." -msgstr "" +msgstr "Selecciona el punto ulterior del objeto de dibujo (modo de selección de puntos)." #. vEJKn #: 01010000.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/autopi.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/autopi.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/autopi.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564411282.000000\n" #. hCAzG @@ -131,7 +131,7 @@ "par_id3093440\n" "help.text" msgid "Starts the wizard for a letter template. You can use this template for both business and personal correspondence." -msgstr "Inicia el asistente para una plantilla de carta. Puede servirse de esta plantilla tanto para correspondencia comercial como personal." +msgstr "Inicia el asistente para una plantilla de carta. Puede valerse de esta plantilla tanto para correspondencia comercial como personal." #. 7uF5N #: 01010000.xhp @@ -5828,7 +5828,7 @@ "par_id3155351\n" "help.text" msgid "This page is not visible if you have unmarked the Create title page check box, or if you have selected either automatic or WebCast export." -msgstr "Esta página no está visible si se ha deseleccionado la casilla de verificación Crear portada o si se ha seleccionado exportación automática o WebCast." +msgstr "Esta página no es visible si se ha deseleccionado la casilla de verificación Crear portada o si se ha seleccionado exportación automática o WebCast." #. AieZZ #: 01110500.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/guide.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/guide.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 10:47+0000\n" +"PO-Revision-Date: 2023-05-03 11:52+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -6071,7 +6071,7 @@ "par_id661634735416764\n" "help.text" msgid "Text Delimiter" -msgstr "" +msgstr "Delimitador de textos" #. A3NpW #: csv_params.xhp @@ -6080,7 +6080,7 @@ "par_id131634735421911\n" "help.text" msgid "The text delimiter as ASCII value, like 34 for double quotes and 39 for single quotes. Example: 34 (\")." -msgstr "" +msgstr "El delimitador de textos como valor ASCII; por ejemplo, 34 para comillas dobles (\"), o 39 para comillas simples (')." #. 5EFCS #: csv_params.xhp @@ -6494,7 +6494,7 @@ "par_id7881263433\n" "help.text" msgid "Ignore field (do not import)" -msgstr "" +msgstr "Ignorar campo (no importar)" #. LEJDn #: csv_params.xhp @@ -6503,7 +6503,7 @@ "par_id6920129719\n" "help.text" msgid "US-English" -msgstr "" +msgstr "Inglés (EE. UU.)" #. wLth6 #: csv_params.xhp @@ -7376,7 +7376,7 @@ "par_id7869502\n" "help.text" msgid "Either create a new Base file using the Database Wizard, or open any existing Base file that is not read-only." -msgstr "" +msgstr "Puede crear un archivo nuevo de Base mediante el asistente para bases de datos o abrir un archivo de Base existente que no sea de solo lectura." #. JHYC6 #: data_im_export.xhp @@ -10364,7 +10364,7 @@ "par_id3153526\n" "help.text" msgid "This command saves the information necessary to restore the current document in case of a crash. Additionally, in case of a crash %PRODUCTNAME tries automatically to save AutoRecovery information for all open documents, if possible." -msgstr "Esta orden guarda la información necesaria para restaurar el documento actual en caso de bloqueo. Asimismo, en caso de bloqueo, %PRODUCTNAME intenta guardar automáticamente la información de recuperación automática para todos los documentos abiertos, si es posible." +msgstr "Esta orden guarda la información necesaria para restaurar el documento actual si se produce un cierre inesperado. Asimismo, en estos casos, %PRODUCTNAME intenta guardar automáticamente la información de recuperación automática para todos los documentos abiertos, si es posible." #. RZr2e #: doc_autosave.xhp @@ -13955,7 +13955,7 @@ "par_idN1067E\n" "help.text" msgid "Position the cursor where you want the ImageMap in your document." -msgstr "Coloque el cursor donde desee colocar el mapa de imágenes en el documento." +msgstr "Coloque el cursor donde desee colocar la imagen interactiva en el documento." #. AuLFm #: imagemap.xhp @@ -14018,7 +14018,7 @@ "par_idN106B3\n" "help.text" msgid "Click the Apply button to apply your changes, and close the ImageMap Editor." -msgstr "Pulse en el botón Aplicar para que los cambios surtan efecto y cierre el Editor de mapa de imágenes." +msgstr "Pulse en el botón Aplicar para que los cambios surtan efecto y cierre el Editor de imágenes interactivas." #. 7kkzm #: imagemap.xhp @@ -14036,7 +14036,7 @@ "par_idN106BA\n" "help.text" msgid "You may save the ImageMap as a file and upload that file to a Web server, for example." -msgstr "El mapa de imágenes se puede guardar como archivo y cargarlo en un servidor web, por ejemplo." +msgstr "La imagen interactiva se puede guardar como archivo y cargarse en un servidor web, por ejemplo." #. LkKHd #: import_ms.xhp @@ -15809,7 +15809,7 @@ "par_id3156016\n" "help.text" msgid "If you press Enter while the icon Select is selected, the focus is set into the image window of the ImageMap Editor. Press Esc to set the focus back to the icons and input boxes." -msgstr "" +msgstr "Si presiona Intro mientras el icono Seleccionar esté activado, el foco se establece sobre la ventana de la imagen del Editor de imágenes interactivas. Presione Esc para que el foco vuelva a los iconos y cuadros de entrada." #. 2DD3n #: keyboard.xhp @@ -21173,7 +21173,7 @@ "par_id331543694947279\n" "help.text" msgid "When you save a document with a password, you must remember the password inserted to open the document later. Anyone else that needs to open the document must also know the password used at save time. Therefore, the Save password must be transmitted to be known by other users." -msgstr "" +msgstr "Cuando guarda un documento con contraseña, debe recordar esta para poder abrir el documento después. Cualquier otra persona que necesite abrir el documento debe conocer también la contraseña que se usó al momento de guardarlo. Por lo tanto, hace falta transmitir la contraseña de guardado para que se conozca." #. MGvAn #: openpgp.xhp @@ -21191,7 +21191,7 @@ "par_id681543694965846\n" "help.text" msgid "With document OpenPGP encryption, you define the set of users that can decrypt the document and you don’t need to send passwords through channels which security is unknown. Besides, the OpenPGP application manages the key chain of public keys more efficiently." -msgstr "" +msgstr "Con el cifrado OpenGPG de documentos, usted puede definir qué usuarios podrán descifrar el documento y no tendrá que enviar contraseñas por vías de dudosa seguridad. Además, la aplicación OpenPGP gestiona las claves públicas más eficientemente." #. uvff4 #: openpgp.xhp @@ -21803,7 +21803,7 @@ "hd_id3150435\n" "help.text" msgid "To load a gradient and hatching palette:" -msgstr "" +msgstr "Para cargar una paleta de degradados y tramas:" #. tEhw5 #: palette_files.xhp @@ -24431,7 +24431,7 @@ "par_id3154306\n" "help.text" msgid "To support automatic hyphenation by entering a soft hyphen inside a word yourself, use the keys CommandCtrl+minus sign. The word is separated at this position when it is at the end of the line, even if automatic hyphenation for this paragraph is switched off." -msgstr "Para activar la división de palabras automática cuando se inserte manualmente un guion discrecional en una palabra, oprima ⌘-Ctrl + -. La palabra se separará en la posición del carácter cuando se encuentre a final de renglón, aunque esté desactivada la división de palabras automática para el párrafo." +msgstr "Para activar el corte de palabras automático cuando se inserte manualmente un guion discrecional en una palabra, oprima ⌘-Ctrl + -. La palabra se separará en la posición del carácter cuando se encuentre a final de renglón, aunque esté desactivado el corte de palabras automático para el párrafo." #. hiwHr #: space_hyphen.xhp @@ -25475,7 +25475,7 @@ "par_id571571707462064\n" "help.text" msgid "The debug options --record, --backtrace, --strace and --valgrind cannot be used together. Please use them one by one." -msgstr "" +msgstr "Las opciones de depuración --record, --backtrace, --strace y --valgrind no se pueden utilizar juntas. Úselas una a la vez." #. hntPb #: start_parameters.xhp @@ -26699,7 +26699,7 @@ "par_id431607690468509\n" "help.text" msgid "Extensions Icon" -msgstr "" +msgstr "Icono Extensiones" #. mwqRi #: template_manager.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/optionen.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/shared/optionen.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/shared/optionen.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-23 20:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -878,7 +878,7 @@ "par_id3149560\n" "help.text" msgid "Specifies that %PRODUCTNAME saves the information needed to restore all open documents in case of a crash. You can specify the saving time interval." -msgstr "Especifica que %PRODUCTNAME guardará la información necesaria para restaurar todos los documentos abiertos en caso de bloqueo. Es posible indicar el intervalo de tiempo de guardado." +msgstr "Especifica que %PRODUCTNAME guardará la información necesaria para restaurar todos los documentos abiertos si se llegare a producir un cierre inesperado. Es posible indicar el intervalo de tiempo de guardado." #. rSxfE #: 01010200.xhp @@ -1715,7 +1715,7 @@ "bm_id7986388\n" "help.text" msgid "writing aids optionscustom dictionaries; editinguser-defined dictionaries; editingdictionaries; editing user-definedexceptions; user-defined dictionariesuser-defined dictionaries; dictionary of exceptionsspellcheck; dictionary of exceptionsignore list for spellcheckspellcheck; ignore listspelling; dictionary of exceptionsignore list for spellingspelling; ignore listhyphenation; minimal number of characters" -msgstr "opciones de ayuda a la escrituradiccionarios personalizados; editardiccionarios definidos por el usuario; editardiccionarios; editar definidos por el usuarioexcepciones; diccionarios definidos por el usuariodiccionarios definidos por el usuario; diccionario de excepcionesrevisión ortográfica; diccionario de excepcioneslista de términos ignorados al revisar ortografíarevisión ortográfica; lista de ignoradosortografía; diccionario de excepcioneslista de términos ignorados en ortografíaortografía; lista de términos ignoradosdivisión de palabras; número mínimo de caracteres" +msgstr "opciones de ayuda a la escrituradiccionarios personalizados; editardiccionarios definidos por el usuario; editardiccionarios; editar definidos por el usuarioexcepciones; diccionarios definidos por el usuariodiccionarios definidos por el usuario; diccionario de excepcionesrevisión ortográfica; diccionario de excepcioneslista de términos ignorados al revisar ortografíarevisión ortográfica; lista de ignoradosortografía; diccionario de excepcioneslista de términos ignorados en ortografíaortografía; lista de términos ignoradoscorte de palabras; número mínimo de caracteres" #. BfSt6 #: 01010400.xhp @@ -1733,7 +1733,7 @@ "par_id3153527\n" "help.text" msgid "Specifies the properties of the spelling, thesaurus and hyphenation." -msgstr "Permite especificar las propiedades de la ortografía, los sinónimos y la división de palabras." +msgstr "Permite especificar las propiedades de la ortografía, los sinónimos y el corte de palabras." #. u8YqG #: 01010400.xhp @@ -2084,7 +2084,7 @@ "par_id3145259\n" "help.text" msgid "Defines the options for the spellcheck and hyphenation." -msgstr "Define las opciones de revisión ortográfica y división de palabras." +msgstr "Define las opciones de revisión ortográfica y corte de palabras." #. s6eeZ #: 01010400.xhp @@ -2201,7 +2201,7 @@ "hd_id3150111\n" "help.text" msgid "Minimal number of characters for hyphenation" -msgstr "Cantidad mínima de caracteres para la división de palabras" +msgstr "Cantidad mínima de caracteres para dividir palabras" #. XBxeP #: 01010400.xhp @@ -2210,7 +2210,7 @@ "par_id3150316\n" "help.text" msgid "Specifies the minimum number of characters required for automatic hyphenation to be applied." -msgstr "Determina el número mínimo de caracteres necesarios para que se aplique la división de palabras automática." +msgstr "Determina el número mínimo de caracteres necesarios para que se aplique el corte de palabras automático." #. 256wd #: 01010400.xhp @@ -2282,7 +2282,7 @@ "par_id3155098\n" "help.text" msgid "Specifies that hyphenation will also be carried out in footnotes, headers and footers." -msgstr "Especifica que la división de palabras también se efectuará en las notas al pie, las cabeceras y los pies de página." +msgstr "Especifica que el corte de palabras también se efectuará en las notas al pie, las cabeceras y los pies de página." #. xh8LV #: 01010401.xhp @@ -2327,7 +2327,7 @@ "par_id3148473\n" "help.text" msgid "Specifies the language and the available spelling, hyphenation and Thesaurus sub-modules for the selected module. You can arrange the sub-modules by priority." -msgstr "Especifica el idioma y la ortografía disponible, la división de palabras y los submódulos del diccionario de sinónimos para el módulo seleccionado. Puede ordenar los submódulos por prioridad." +msgstr "Especifica el idioma y los submódulos de ortografía, corte de palabras y sinónimos del módulo seleccionado. Puede organizar los submódulos por prioridad." #. hxdgC #: 01010401.xhp @@ -2345,7 +2345,7 @@ "par_id3144510\n" "help.text" msgid "Mark all modules that are to be activated for this language under the headings Spelling, Hyphenation and Thesaurus." -msgstr "Marque todos los módulos que se deben activar para este idioma en Ortografía, División de palabras y Sinónimos." +msgstr "Marque todos los módulos que se deben activar para este idioma en Ortografía, Corte de palabras y Sinónimos." #. RmC8D #: 01010401.xhp @@ -2363,7 +2363,7 @@ "par_id3148663\n" "help.text" msgid "Only one sub-module can be activated under Hyphenation." -msgstr "Solo se puede activar un submódulo en División de palabras." +msgstr "Solo se puede activar un submódulo en Corte de palabras." #. svUFH #: 01010401.xhp @@ -3065,7 +3065,7 @@ "par_id481581548792359\n" "help.text" msgid "Call Windows file associations management. This button behaves according to Microsoft file association management policy, which is to open \"Default apps\" on Windows 7, 8, and 8.1; and to show a message telling user how to open that applet manually in Windows 10." -msgstr "" +msgstr "Invoca el gestor de asociaciones de archivos de Windows. Este botón se comporta en virtud de la directiva de gestión de asociaciones de archivos de Microsoft, que es abrir «Aplicaciones predeterminadas» en Windows 7, 8 y 8.1, y mostrar un mensaje que explique cómo abrir este gestor en Windows 10." #. 9MQ7V #: 01010700.xhp @@ -6215,7 +6215,7 @@ "par_id3150010\n" "help.text" msgid "Specifies the font used for the captions of images and tables." -msgstr "Especifica el tipo de letra que se usará en los pies de las imágenes y las tablas." +msgstr "Especifica el tipo de letra que se usará en las leyendas de las imágenes y las tablas." #. VCMPs #: 01040300.xhp @@ -7133,7 +7133,7 @@ "par_id3147230\n" "help.text" msgid "Specifies whether soft hyphens (called also as optional or discretionary hyphens) are displayed. These are hidden user-defined delimiters that you enter within a word by pressing Command+Hyphen(-)Ctrl+Hyphen(-). Words with soft hyphens are only separated at the end of a line at the point where a soft hyphen has been inserted, irrespective of whether the automatic hyphenation is activated or deactivated." -msgstr "Especifica si se mostrarán los guiones discrecionales (también llamados opcionales o de división; en inglés «soft hyphen»). Estos delimitadores definidos por el usuario pueden insertarse al presionar ⌘-Ctrl + guion. Las palabras con guiones discrecionales se separarán a final de renglón solo en el punto de inserción del guion, independientemente de que la división de palabras automática esté activada o no." +msgstr "Especifica si se mostrarán los guiones discrecionales (también llamados opcionales o de división; en inglés «soft hyphen»). Estos delimitadores definidos por el usuario pueden insertarse al presionar ⌘-Ctrl + guion. Las palabras con guiones discrecionales se separarán a final de renglón solo en el punto de inserción del guion, independientemente de que el corte de palabras automático esté activado o no." #. 7DBG4 #: 01040600.xhp @@ -8186,7 +8186,7 @@ "hd_id3166976\n" "help.text" msgid "Word count" -msgstr "Conteo de palabras" +msgstr "Recuento de palabras" #. vfrbi #: 01040900.xhp @@ -14099,7 +14099,7 @@ "par_id3149763\n" "help.text" msgid "Specifies the languages for spelling, thesaurus and hyphenation." -msgstr "Permite especificar las lenguas de revisión ortográfica, de sinonimia y de división de palabras." +msgstr "Permite especificar las lenguas de revisión ortográfica, de sinonimia y de corte de palabras." #. CebA4 #: 01140000.xhp @@ -15314,7 +15314,7 @@ "par_id2507201509570353\n" "help.text" msgid "Correct cases of Basic variables and keywords while typing. %PRODUCTNAME Basic IDE will modify the typing of Basic statements and Basic variables of your code to improve coding style and readability. Modifications of the code are based on the program's variables declarations and on the %PRODUCTNAME Basic commands parsed." -msgstr "Corrige instancias de variables y palabras clave de Basic mientras se escribe. El EID de Basic de %PRODUCTNAME modificará la escritura de instrucciones y variables de Basic en su código para mejorar el estilo y la legibilidad. Las modificaciones al código se basan en las declaraciones de variables del programa y en las órdenes de %PRODUCTNAME Basic que se analicen." +msgstr "Corrige la mayusculación de variables y palabras clave de BASIC mientras se escribe. El EID de BASIC de %PRODUCTNAME modificará la escritura de instrucciones y variables de BASIC en su código para mejorar el estilo y la comprensibilidad. Las modificaciones al código se basan en las declaraciones de variables del programa y en las órdenes de %PRODUCTNAME BASIC que se analicen." #. 4C7QZ #: BasicIDE.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/simpress/00.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/simpress/00.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/simpress/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/simpress/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-09-09 14:35+0000\n" +"PO-Revision-Date: 2023-04-16 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560857928.000000\n" #. sqmGT @@ -842,7 +842,7 @@ "par_id3153727\n" "help.text" msgid "Choose Tools - Language - Hyphenation" -msgstr "Vaya a Herramientas ▸ Idioma ▸ División de palabras" +msgstr "Vaya a Herramientas ▸ Idioma ▸ Corte de palabras" #. DpRab #: 00000406.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/simpress/01.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/simpress/01.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/simpress/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/simpress/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-17 22:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1544632647.000000\n" #. mu9aV @@ -4847,7 +4847,7 @@ "tit\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. aAUhF #: 06030000.xhp @@ -4865,7 +4865,7 @@ "par_id3153728\n" "help.text" msgid "Turns hyphenation option for text objects on or off. You can turn hyphenation on or off for each paragraph." -msgstr "Activa o desactiva la opción de división de palabras en los objetos de texto. Puede activar o desactivar la división de palabras en cada párrafo." +msgstr "Activa o desactiva la opción de corte de palabras en los objetos de texto. Puede activar o desactivar el corte de palabras en cada párrafo." #. uKZt8 #: 06040000.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/simpress/04.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/simpress/04.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/simpress/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/simpress/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-04-17 22:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1513969565.000000\n" #. mYCYv @@ -851,7 +851,7 @@ "par_ii3150712\n" "help.text" msgid "Soft hyphens; hyphenation set by you." -msgstr "Guiones discrecionales; división de palabras definida por el usuario." +msgstr "Guiones discrecionales; corte de palabras definido por usted." #. uuUzt #: 01020000.xhp @@ -869,7 +869,7 @@ "par_ii3148394\n" "help.text" msgid "Non-breaking hyphen (is not used for hyphenation)" -msgstr "Guion indivisible (no se utiliza para división de palabras)" +msgstr "Guion indivisible (no se utiliza para corte de palabras)" #. 5kU8S #: 01020000.xhp @@ -887,7 +887,7 @@ "par_ii3150260\n" "help.text" msgid "Non-breaking spaces. Non-breaking spaces are not used for hyphenation and are not expanded if the text is justified." -msgstr "Espacios indivisibles. Esos espacios no se utilizan en la división de palabras y no se expanden si se justifica el texto." +msgstr "Espacios indivisibles. Esos espacios no se utilizan para el corte de palabras y no se expanden si se justifica el texto." #. RJCFu #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/smath/01.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/smath/01.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/smath/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/smath/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-04-11 15:28+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-25 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -5405,7 +5405,7 @@ "par_id3149035\n" "help.text" msgid "Intersection" -msgstr "Promedio" +msgstr "Intersección" #. jaBUA #: 03090800.xhp @@ -9023,7 +9023,7 @@ "par_id3165282\n" "help.text" msgid "Icon n-th root of x" -msgstr "" +msgstr "Icono Enésima raíz de x" #. QCzga #: 03091504.xhp @@ -9032,7 +9032,7 @@ "par_id3165402\n" "help.text" msgid "n-th root of x" -msgstr "raíz n de x" +msgstr "Enésima raíz de x" #. CGCrv #: 03091504.xhp @@ -9041,7 +9041,7 @@ "par_id3151502\n" "help.text" msgid "Icon Sine" -msgstr "" +msgstr "Icono Seno" #. nAEE2 #: 03091504.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/smath/04.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/smath/04.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/smath/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/smath/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-05-25 10:44+0000\n" +"PO-Revision-Date: 2023-04-09 03:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507941002.000000\n" #. fW4At @@ -194,7 +194,7 @@ "par_id3145249\n" "help.text" msgid "Move left or right to the next category or function." -msgstr "Mover a la derecha o izquierda a la siguiente categoría ó función." +msgstr "Mover a la derecha o izquierda a la siguiente categoría o función." #. r7rNS #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/smath/guide.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/smath/guide.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/smath/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/smath/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-10-24 11:22+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1500579424.000000\n" #. P9FEQ @@ -167,7 +167,7 @@ "bm_id3152596\n" "help.text" msgid "brackets; merging formula partsformula parts; mergingfractions in formulasmerging;formula parts" -msgstr "paréntesis;combinar partes de fórmulapartes de fórmula;combinarfracciones en fórmulascombinar;partes de fórmula" +msgstr "paréntesis;combinar partes de fórmulaspartes de fórmula;combinarfracciones en fórmulascombinar;partes de fórmulas" #. J7BeM #: brackets.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter/00.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter/00.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-16 21:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563615688.000000\n" #. E9tti @@ -2696,7 +2696,7 @@ "par_id3150710\n" "help.text" msgid "Choose Tools - Language - Hyphenation" -msgstr "Vaya a Herramientas ▸ Idioma ▸ División de palabras" +msgstr "Vaya a Herramientas ▸ Idioma ▸ Corte de palabras" #. DE6CF #: 00000406.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter/01.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter/01.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-18 19:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -3614,7 +3614,7 @@ "hd_id3156111\n" "help.text" msgid "Endnote" -msgstr "Nota al final" +msgstr "Nota final" #. NRJAC #: 02150000.xhp @@ -5540,7 +5540,7 @@ "hd_id3153644\n" "help.text" msgid "Endnote" -msgstr "Nota al final" +msgstr "Nota final" #. KBmnh #: 04030000.xhp @@ -5558,7 +5558,7 @@ "tit\n" "help.text" msgid "Insert Bookmark" -msgstr "Insertar marca de texto" +msgstr "Insertar marcador" #. FuA3L #: 04040000.xhp @@ -7196,7 +7196,7 @@ "par_id3155537\n" "help.text" msgid "To quickly insert a field from the Select list, double-click the field." -msgstr "" +msgstr "Para insertar rápidamente un campo de la lista Seleccionar, haga una pulsación doble sobre el campo." #. zVKLG #: 04090001.xhp @@ -7214,7 +7214,7 @@ "par_id3145613\n" "help.text" msgid "If a field is displaying a date, time or number, then Format is used to customize the appearance of the date, time, or number. Common formats are shown in the Format window, or click \"Additional formats\" to define a custom format." -msgstr "" +msgstr "Si un campo muestra una fecha, una hora o un número, se puede utilizar Formato para personalizar la apariencia del dato. Los formatos más habituales se muestran en la ventana Formato, y puede pulsar en «Formatos adicionales» para definir uno personalizado." #. ErwZ7 #: 04090001.xhp @@ -9086,7 +9086,7 @@ "par_id3149034\n" "help.text" msgid "Number range" -msgstr "Secuencia" +msgstr "Intervalo numérico" #. 7amgE #: 04090005.xhp @@ -9131,7 +9131,7 @@ "par_id3150588\n" "help.text" msgid "Displays the number of pages from the \"Set page variable\" reference point to this field." -msgstr "Muestra el número de páginas desde el punto de referencia \"Determinar variable de página\" hasta este campo." +msgstr "Muestra el número de páginas desde el punto de referencia «Establecer variable de página» hasta este campo." #. 6SKyt #: 04090005.xhp @@ -9203,7 +9203,7 @@ "par_id381583794664065\n" "help.text" msgid " This option is available for \"Set variable\", \"DDE field\", \"Number range\" and \"User Field\" field types." -msgstr "" +msgstr " Esta opción está disponible para los tipos de campo «Establecer variable», «Campo DDE», «Intervalo numérico» y «Campo de usuario»." #. KsGDR #: 04090005.xhp @@ -11525,7 +11525,7 @@ "par_id3149484\n" "help.text" msgid "Enter the phonetic reading for the corresponding entry. For example, if a Japanese Kanji word has more than one pronunciation, enter the correct pronunciation as a Katakana word. The Kanji word is then sorted according to the phonetic reading entry. This option is only available if Asian language support is enabled." -msgstr "Escriba la lectura fonética en la entrada correspondiente. Por ejemplo, si una palabra en japonés kanji tiene más de una pronunciación, escriba la correcta como palabra katakana. Como consecuencia, la palabra kanji se ordena según la entrada de la lectura fonética. Esta opción solo está disponible si está activada la compatibilidad con idiomas asiáticos." +msgstr "Introduzca la lectura fonética de la entrada correspondiente. Por ejemplo, si una palabra kanji japonesa tiene más de una pronunciación, escriba la correcta como palabra katakana. Como consecuencia, la palabra kanji se ordena según la entrada de la lectura fonética. Esta opción solo está disponible si está activada la compatibilidad con idiomas asiáticos." #. 79kAq #: 04120100.xhp @@ -15729,7 +15729,7 @@ "hd_id3149882\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. 6C5wi #: 05030200.xhp @@ -15846,7 +15846,7 @@ "par_id3153536\n" "help.text" msgid "Enter the maximum number of consecutive lines that can be hyphenated." -msgstr "Escriba el número máximo de renglones consecutivos en los que se puede efectuar división de palabras." +msgstr "Escriba el número máximo de renglones consecutivos en los que se puede efectuar corte de palabras." #. iLGFh #: 05030200.xhp @@ -15873,7 +15873,7 @@ "hd_id3149818\n" "help.text" msgid "Hyphenation zone" -msgstr "Zona de división de palabras" +msgstr "Zona de corte de palabras" #. iKBAb #: 05030200.xhp @@ -15882,7 +15882,7 @@ "par_id3153549\n" "help.text" msgid "To reduce hyphenation, enter the length of the hyphenation zone. Instead of the possible hyphenation, the line will break between words, if the remaining horizontal space does not exceed the hyphenation zone. Hyphenation zone results in enlarged spaces between words in justified text, and greater distance from paragraph margins in non-justified text." -msgstr "" +msgstr "Para reducir el corte de palabras, introduzca el tamaño de la zona de corte. En lugar de aplicar el corte posible, el renglón se quebrará entre las palabras, si el espacio horizontal restante no sobrepasa la zona de corte. La zona de corte produce mayores espacios entre palabras en textos justificados o mayores distancias desde los márgenes del párrafo en textos no justificados." #. RQLep #: 05030200.xhp @@ -24999,7 +24999,7 @@ "tit\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. 9uZNy #: 06030000.xhp @@ -25008,7 +25008,7 @@ "hd_id3154657\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. nUqc5 #: 06030000.xhp @@ -25017,7 +25017,7 @@ "par_id3148572\n" "help.text" msgid "Inserts hyphens in words that are too long to fit at the end of a line. $[officename] searches the document and suggests hyphenation that you can accept or reject. If text is selected, the Hyphenation dialog works on the selected text only. If no text is selected, the Hyphenation dialog works on the whole document." -msgstr "Inserta guiones en las palabras demasiado largas para caber al final de un renglón. $[officename] busca en el documento y propone divisiones que puede aceptar o rechazar. Si se selecciona algún texto, el cuadro de diálogo de división de palabras se aplica solo al texto seleccionado. Si no hay texto seleccionado, se aplica a todo el documento." +msgstr "Inserta guiones en las palabras demasiado largas para caber al final de un renglón. $[officename] busca en el documento y propone cortes que puede aceptar o rechazar. Si se selecciona algún texto, el cuadro de diálogo Corte de palabras se aplica solo al texto seleccionado. Si no hay texto seleccionado, se aplica a todo el documento." #. AWz4F #: 06030000.xhp @@ -25035,7 +25035,7 @@ "par_id3151389\n" "help.text" msgid "When $[officename] finds a word that requires hyphenation, do one of the following options:" -msgstr "Cuando $[officename] encuentre una palabra que necesita división, elija una de estas opciones:" +msgstr "Cuando $[officename] encuentre una palabra que necesita corte, elija una de estas opciones:" #. BAtw4 #: 06030000.xhp @@ -25044,7 +25044,7 @@ "par_id3155622\n" "help.text" msgid "To accept the hyphenation of the displayed word, click Hyphenate." -msgstr "Para aceptar la división de la palabra mostrada, pulse en Dividir." +msgstr "Para aceptar el corte de la palabra mostrada, pulse en Dividir." #. d9ENA #: 06030000.xhp @@ -25053,7 +25053,7 @@ "par_id3154558\n" "help.text" msgid "To change the hyphenation of the displayed word, click the left or right arrow below the word, and then click Hyphenate. The left and right buttons are enabled for words with multiple hyphenation points." -msgstr "Para cambiar la división de la palabra mostrada, utilice las flechas izquierda o derecha debajo de la palabra y pulse en Dividir. Los botones de flecha izquierda y derecha se activan en caso de palabras con varios sitios de división." +msgstr "Para cambiar el corte de la palabra mostrada, utilice las flechas izquierda o derecha debajo de la palabra y pulse en Dividir. Los botones de flecha izquierda y derecha se activan en caso de palabras con varios sitios de corte." #. TBH2B #: 06030000.xhp @@ -25062,7 +25062,7 @@ "par_id3150017\n" "help.text" msgid "To reject the hyphenation of the displayed word, click Skip. This word will not be hyphenated." -msgstr "Para rechazar la división de la palabra mostrada, pulse en Omitir. Esta palabra no se dividirá." +msgstr "Para rechazar el corte de la palabra mostrada, pulse en Omitir. Esta palabra no se partirá." #. wexph #: 06030000.xhp @@ -25071,7 +25071,7 @@ "par_id3150018\n" "help.text" msgid "To automatically hyphenate the remaining part of the selection or the document, click Hyphenate All and answer \"Yes\" to the following question." -msgstr "Para dividir automáticamente las palabras del resto de la selección o del documento, pulse en Dividir todo y responda «Sí» a la solicitud que aparecerá." +msgstr "Para partir automáticamente las palabras del resto de la selección o del documento, pulse en Dividir todo y responda «Sí» a la solicitud que aparecerá." #. S7Qtb #: 06030000.xhp @@ -25080,7 +25080,7 @@ "par_id3150019\n" "help.text" msgid "To end hyphenation, click Close. The hyphenation that is applied already will not be reverted. You can use Edit - Undo to undo all hyphenation that was applied while the Hyphenation dialog was open." -msgstr "Para finalizar la división de palabras pulse en Cerrar. La división de palabras que se aplicó hasta ahora no será revertida. Puede usar la función Editar ▸ Deshacer para quitar los cambios realizados mediante el cuadro de diálogo División de palabras." +msgstr "Para finalizar el corte de palabras pulse en Cerrar. El corte de palabras que se aplicó hasta ahora no se revertirá. Puede usar la función Editar ▸ Deshacer para quitar los cambios realizados mediante el cuadro de diálogo Corte de palabras." #. qc5UE #: 06030000.xhp @@ -25089,7 +25089,7 @@ "par_id3147562\n" "help.text" msgid "To exclude paragraphs from the automatic hyphenation, select the paragraphs, choose Format - Paragraph, click the Text Flow tab, and then clear the Automatically check box in the Hyphenation area." -msgstr "Para excluir párrafos de la división de palabras automática, seleccione los párrafos, vaya a Formato ▸ Párrafo, pulse en la pestaña Flujo del texto y desmarque la casilla Automáticamente en el área División de palabras." +msgstr "Para excluir párrafos del corte de palabras automático, seleccione los párrafos, vaya a Formato ▸ Párrafo, pulse en la pestaña Flujo del texto y desmarque la casilla Automáticamente en el apartado Corte de palabras." #. k84at #: 06030000.xhp @@ -27330,7 +27330,7 @@ "par_id3151272\n" "help.text" msgid "Enter the counting interval for the line numbers." -msgstr "Proporcione el intervalo de conteo de los números de renglones." +msgstr "Proporcione el intervalo de recuento de los números de renglones." #. R6DLD #: 06180000.xhp @@ -27429,7 +27429,7 @@ "par_id3150973\n" "help.text" msgid "Includes empty paragraphs in the line count." -msgstr "Incluye párrafos vacíos en el conteo de los renglones." +msgstr "Incluye párrafos vacíos en el recuento de los renglones." #. yz57v #: 06180000.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter/02.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter/02.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-10 20:16+0200\n" -"PO-Revision-Date: 2023-02-15 15:33+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2120,7 +2120,7 @@ "par_id3148408\n" "help.text" msgid "Boolean Or" -msgstr "O lógico" +msgstr "O booleano" #. UfFLs #: 14020000.xhp @@ -2147,7 +2147,7 @@ "par_id3149434\n" "help.text" msgid "Boolean X Or" -msgstr "O lógico exclusivo" +msgstr "O booleano exclusivo" #. vEKy7 #: 14020000.xhp @@ -2174,7 +2174,7 @@ "par_id3152925\n" "help.text" msgid "Boolean And" -msgstr "Y lógico" +msgstr "Y booleano" #. CPiHF #: 14020000.xhp @@ -2201,7 +2201,7 @@ "par_id3153938\n" "help.text" msgid "Boolean Not" -msgstr "No lógico" +msgstr "No booleano" #. i4SeE #: 14020000.xhp @@ -2273,7 +2273,7 @@ "par_id3153176\n" "help.text" msgid "Mean" -msgstr "Promedio" +msgstr "Media" #. Gu59Y #: 14020000.xhp @@ -3560,7 +3560,7 @@ "bm_id3147167\n" "help.text" msgid "graphics;do not show images;do not show pictures;do not show" -msgstr "imágenes;no mostrarimágenes;no mostrarimágenes;no mostrar" +msgstr "gráficos;no mostrarimágenes;no mostrarfotos;no mostrar" #. gHWtd #: 18120000.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter/04.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter/04.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter/04.po 2023-05-03 15:22:13.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-04 18:05+0200\n" -"PO-Revision-Date: 2022-10-24 11:21+0000\n" -"Last-Translator: Daniela Rosales Espino \n" +"PO-Revision-Date: 2023-04-17 22:33+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1529889107.000000\n" #. brcGC @@ -941,7 +941,7 @@ "par_id3150712\n" "help.text" msgid "Soft hyphens; hyphenation set by you." -msgstr "Guiones discrecionales; división de palabras definida por el usuario." +msgstr "Guiones discrecionales; corte de palabras definido por usted." #. EFKvp #: 01020000.xhp @@ -959,7 +959,7 @@ "par_id3148394\n" "help.text" msgid "Non-breaking hyphen (is not used for hyphenation)" -msgstr "Guion indivisible (no se utiliza para división de palabras)" +msgstr "Guion indivisible (no se utiliza para corte de palabras)" #. GbHDz #: 01020000.xhp @@ -995,7 +995,7 @@ "par_id3150260\n" "help.text" msgid "Non-breaking spaces. Non-breaking spaces are not used for hyphenation and are not expanded if the text is justified." -msgstr "Espacios indivisibles. Esos espacios no se utilizan en la división de palabras y no se expanden si se justifica el texto." +msgstr "Espacios indivisibles. Esos espacios no se utilizan para el corte de palabras y no se expanden si se justifica el texto." #. xsddz #: 01020000.xhp @@ -1949,7 +1949,7 @@ "par_id491655382453027\n" "help.text" msgid "CommandCtrl+Shift+Tab" -msgstr "OrdenCtrl+Mayús + Tab" +msgstr "⌘⇧↹Ctrl + Mayús + Tab" #. pARCd #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter/guide.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1566235756.000000\n" #. XAt2Y @@ -68,7 +68,7 @@ "par_id3147251\n" "help.text" msgid "An anchor moves with the element it is attached to as the document is edited. An object retains its position relative to the reference point determined by its anchor, such that, whenever the reference point moves or changes, the object moves relative to it." -msgstr "" +msgstr "Un ancla se mueve con el elemento al que está adjunto a medida que se edita el documento. Un objeto conserva su posición en relación con el punto de referencia determinado por su ancla, de modo que, cada vez que el punto de referencia se mueve o cambia, el objeto se mueve en relación con él." #. ELWph #: anchor_object.xhp @@ -221,7 +221,7 @@ "hd_id341653868751593\n" "help.text" msgid "Moving an Anchor" -msgstr "" +msgstr "Mover un ancla" #. 6DYVe #: anchor_object.xhp @@ -230,7 +230,7 @@ "par_id3145715\n" "help.text" msgid "When you insert a shape, textbox, OLE object, image, or frame in your document, an anchor icon appears where the object is anchored. You can move an anchor or, keeping other object constraints in mind, position an object relative to the anchor's reference point by dragging the object." -msgstr "" +msgstr "Cuando inserta una forma, un cuadro de texto, un objeto OLE, una imagen o un marco en su documento, aparece un icono de ancla donde está anclado el objeto. Puede mover un ancla o, teniendo en cuenta otras restricciones de objetos, colocar un objeto en relación con el punto de referencia del ancla arrastrando el objeto." #. eH7Gv #: anchor_object.xhp @@ -239,7 +239,7 @@ "hd_id841653869348328\n" "help.text" msgid "Changing an Anchor" -msgstr "" +msgstr "Cambiar un ancla" #. iWVDA #: anchor_object.xhp @@ -1157,7 +1157,7 @@ "par_id3151370\n" "help.text" msgid "For example, you can store \"read-only\" AutoText entries for your company on a central server, and user-defined AutoText entries in a local directory." -msgstr "Por ejemplo, puede almacenar entradas de texto automático de solo lectura para la empresa en un servidor central y las entradas del usuario en un directorio local." +msgstr "Por ejemplo, puede almacenar entradas de texto automático «de solo lectura» para la empresa en un servidor central y las entradas del usuario en un directorio local." #. w7E3N #: autotext.xhp @@ -5306,7 +5306,7 @@ "par_id3406170\n" "help.text" msgid "Finding formats only finds direct character attributes, it does not find attributes applied as part of a style." -msgstr "La opción de búsqueda de formatos sólo busca atributos directos de los caracteres, pero no atributos aplicados como parte de un estilo." +msgstr "La búsqueda de formatos encuentra únicamente atributos de carácter directos, pero no atributos aplicados como parte de un estilo." #. 5nDAM #: finding.xhp @@ -5621,7 +5621,7 @@ "hd_id2988677\n" "help.text" msgid "To Additionally Add a Page Count" -msgstr "Para agregar además un conteo de las páginas" +msgstr "Para agregar además un recuento de las páginas" #. GBNZo #: footer_pagenumber.xhp @@ -7709,7 +7709,7 @@ "tit\n" "help.text" msgid "Preventing Hyphenation of Specific Words" -msgstr "Evitar la división de palabras concretas" +msgstr "Evitar el corte de palabras concretas" #. jKDe6 #: hyphen_prevent.xhp @@ -7727,7 +7727,7 @@ "hd_id3149695\n" "help.text" msgid "Preventing Hyphenation of Specific Words" -msgstr "Evitar la división de palabras concretas" +msgstr "Evitar el corte de palabras concretas" #. BrdxF #: hyphen_prevent.xhp @@ -7772,7 +7772,7 @@ "par_id3150218\n" "help.text" msgid "In the Word box, type the word you want to exclude from hyphenation, followed by an equal sign (=), for example, \"pretentious=\"." -msgstr "En el cuadro Palabra, escriba la palabra que quiera excluir de la división, seguida de un signo de igual (=), por ejemplo, «pomposo=»." +msgstr "En el cuadro Palabra, escriba la palabra que quiera excluir de la división, seguida de un signo de igualdad (=), por ejemplo, «Chicago=»." #. GACxk #: hyphen_prevent.xhp @@ -7808,7 +7808,7 @@ "par_id0302200910262837\n" "help.text" msgid "Position the cursor at the place where no hyphenation should occur." -msgstr "Coloque el cursor en el lugar donde no se debe producir la división de palabras." +msgstr "Coloque el cursor en el lugar donde no se deben producir cortes de palabras." #. eFYEG #: hyphen_prevent.xhp @@ -10157,7 +10157,7 @@ "hd_id3154324\n" "help.text" msgid "Spelling, Dictionaries, Hyphenation" -msgstr "Ortografía, diccionarios, división de palabras" +msgstr "Ortografía, diccionarios, corte de palabras" #. rxjfD #: main.xhp @@ -10436,7 +10436,7 @@ "tit\n" "help.text" msgid "Defining Number Ranges" -msgstr "Definir secuencias numéricas" +msgstr "Definir intervalos numéricos" #. 5R8SU #: number_sequence.xhp @@ -14441,7 +14441,7 @@ "par_id3149843\n" "help.text" msgid "In the Find box, type the search term and the regular expression(s) that you want to use in your search." -msgstr "" +msgstr "En el cuadro Buscar, escriba el término de búsqueda y la o las expresiones regulares que desee utilizar en su búsqueda." #. FqLDU #: search_regexp.xhp @@ -17780,7 +17780,7 @@ "par_id5853144\n" "help.text" msgid "The AutoSize feature is available only for the last frame in a chain of linked frames." -msgstr "La función de tamaño automático solo está disponible para el último cuadro de una serie de marcos enlazados entre sí." +msgstr "La funcionalidad de tamaño automático solo está disponible para el último cuadro de una serie de marcos enlazados entre sí." #. RdbNb #: text_nav_keyb.xhp @@ -18365,7 +18365,7 @@ "tit\n" "help.text" msgid "Hyphenation" -msgstr "División de palabras" +msgstr "Corte de palabras" #. UnByp #: using_hyphen.xhp @@ -18374,7 +18374,7 @@ "bm_id3149695\n" "help.text" msgid "hyphenation;manual/automatic separation, see hyphenation automatic hyphenation in text manual hyphenation in text" -msgstr "división de palabras;manual/automática división, véase división de palabras división de palabras automática en texto división de palabras manual en texto" +msgstr "corte de palabras;manual/automáticocorte, véase corte de palabrascorte de palabras automático en textocorte de palabras manual en texto" #. fZxFB #: using_hyphen.xhp @@ -18392,7 +18392,7 @@ "par_id3155918\n" "help.text" msgid "By default, $[officename] moves words that do not fit on a line to the next line. If you want, you can use automatic or manual hyphenation to avoid this behavior:" -msgstr "De manera predeterminada, $[officename] traslada palabras que no encajan en un renglón al siguiente. Si lo desea, puede emplear la división de palabras automática o manual para evitar este comportamiento:" +msgstr "De manera predeterminada, $[officename] traslada palabras que no encajan en un renglón al siguiente. Si lo desea, puede emplear el corte de palabras automático o manual para evitar este comportamiento:" #. 2xYjC #: using_hyphen.xhp @@ -18401,7 +18401,7 @@ "hd_id3155864\n" "help.text" msgid "Automatic Hyphenation" -msgstr "División de palabras automática" +msgstr "Corte de palabras automático" #. Mr7ZE #: using_hyphen.xhp @@ -18410,7 +18410,7 @@ "par_id3147414\n" "help.text" msgid "Automatic hyphenation inserts hyphens where they are needed in a paragraph. This option is only available for paragraph styles and individual paragraphs." -msgstr "La división de palabras automática inserta guiones donde se necesiten dentro del párrafo. Esta opción solo está disponible en los estilos de párrafos y en párrafos concretos." +msgstr "El corte de palabras automático inserta guiones donde se necesiten dentro del párrafo. Esta opción solo está disponible en los estilos de párrafos y en párrafos concretos." #. ryaCG #: using_hyphen.xhp @@ -18419,7 +18419,7 @@ "hd_id3149832\n" "help.text" msgid "To Automatically Hyphenate Text in a Paragraph" -msgstr "Para dividir las palabras del texto de forma automática en varios párrafos" +msgstr "Para dividir las palabras del texto de forma automática en un párrafo" #. rRFRE #: using_hyphen.xhp @@ -18446,7 +18446,7 @@ "par_id3150101\n" "help.text" msgid "In the Hyphenation area, select the Automatically check box." -msgstr "En el área División de palabras, seleccione la casilla de verificación «Automáticamente»." +msgstr "En el apartado Corte de palabras, seleccione la casilla de verificación «Automáticamente»." #. XEi9z #: using_hyphen.xhp @@ -18473,7 +18473,7 @@ "par_id3149644\n" "help.text" msgid "If you want to automatically hyphenate more than one paragraph, use a paragraph style." -msgstr "Si desea establecer la división de palabras automática en más de un párrafo, utilice un estilo." +msgstr "Si desea establecer el corte de palabras automático en más de un párrafo, utilice un estilo." #. Yb7d8 #: using_hyphen.xhp @@ -18482,7 +18482,7 @@ "par_id3149956\n" "help.text" msgid "For example, enable the automatic hyphenation option for the \"Default\" paragraph style, and then apply the style to the paragraphs that you want to hyphenate." -msgstr "Por ejemplo, active la división de palabras en el estilo de párrafo «Predeterminado» y aplique este a los párrafos que desee dividir." +msgstr "Por ejemplo, active el corte de palabras automático en el estilo de párrafo «Predeterminado» y aplique este a los párrafos cuyos renglones desee partir al margen." #. 3E8FK #: using_hyphen.xhp @@ -18500,7 +18500,7 @@ "par_id3149867\n" "help.text" msgid "Right-click the paragraph style that you want to hyphenate, and then choose Modify." -msgstr "Pulse con el botón secundario del ratón sobre el estilo de párrafo en el que quiera establecer la división de palabras y seleccione Modificar." +msgstr "Pulse con el botón secundario del ratón sobre el estilo de párrafo en el que quiera establecer el corte de palabras y seleccione Modificar." #. Azcdj #: using_hyphen.xhp @@ -18518,7 +18518,7 @@ "par_id3149582\n" "help.text" msgid "In the Hyphenation area, select the Automatically check box." -msgstr "En el área División de palabras active la casilla Automáticamente." +msgstr "En el área Corte de palabras active la casilla Automáticamente." #. DNQm3 #: using_hyphen.xhp @@ -18545,7 +18545,7 @@ "hd_id3145417\n" "help.text" msgid "Manual Hyphenation" -msgstr "División de palabras manual" +msgstr "Corte de palabras manual" #. kBNEq #: using_hyphen.xhp @@ -18599,7 +18599,7 @@ "par_id3154869\n" "help.text" msgid "Select the text that you want to hyphenate." -msgstr "Seleccione el texto al que quiera aplicar la división de palabras." +msgstr "Seleccione el texto al que quiera aplicar el corte de palabras." #. CHAVx #: using_hyphen.xhp @@ -18608,7 +18608,7 @@ "par_id3155886\n" "help.text" msgid "Choose Tools - Language - Hyphenation." -msgstr "Vaya a Herramientas ▸ Idioma ▸ División de palabras." +msgstr "Vaya a Herramientas ▸ Idioma ▸ Corte de palabras." #. nfKuZ #: using_hyphen.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter/librelogo.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter/librelogo.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter/librelogo.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-04-17 22:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1551390710.000000\n" #. kypzs @@ -2228,7 +2228,7 @@ "hd_2440\n" "help.text" msgid "COUNT" -msgstr "COUNT" +msgstr "RECUENTO/CONTEO" #. oqkjJ #: LibreLogo.xhp diff -Nru libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter.po libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter.po --- libreoffice-7.4.6/translations/source/gug/helpcontent2/source/text/swriter.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/gug/helpcontent2/source/text/swriter.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-03-01 12:22+0000\n" +"PO-Revision-Date: 2023-03-12 04:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2489,7 +2489,7 @@ "tit\n" "help.text" msgid "Frame Bar" -msgstr "Barra de marco" +msgstr "Barra Marco" #. uWTF7 #: main0215.xhp diff -Nru libreoffice-7.4.6/translations/source/he/basctl/messages.po libreoffice-7.4.7/translations/source/he/basctl/messages.po --- libreoffice-7.4.6/translations/source/he/basctl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/basctl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2021-09-08 09:16+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565194180.000000\n" #. fniWp @@ -338,19 +338,19 @@ #: basctl/inc/strings.hrc:78 msgctxt "RID_STR_SHAREMACROS" msgid "Application Macros" -msgstr "" +msgstr "תסריטי מאקרו של יישומים" #. YcXKS #: basctl/inc/strings.hrc:79 msgctxt "RID_STR_SHAREDIALOGS" msgid "Application Dialogs" -msgstr "" +msgstr "חלוניות של יישומים" #. GFbe5 #: basctl/inc/strings.hrc:80 msgctxt "RID_STR_SHAREMACROSDIALOGS" msgid "Application Macros & Dialogs" -msgstr "" +msgstr "תסריטי מאקרו וחלוניות של יישומים" #. BAMA5 #: basctl/inc/strings.hrc:81 @@ -537,7 +537,7 @@ #: basctl/inc/strings.hrc:108 msgctxt "RID_STR_DEF_LANG" msgid "[Default Language]" -msgstr "[שפת בררת מחדל]" +msgstr "[שפת ברירת מחדל]" #. uf3Kt #: basctl/inc/strings.hrc:109 @@ -632,7 +632,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:26 msgctxt "basicmacrodialog|BasicMacroDialog" msgid "BASIC Macros" -msgstr "" +msgstr "תסריטי מאקרו בשפת BASIC" #. tFg7s #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:43 @@ -644,7 +644,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:52 msgctxt "basicmacrodialog|extended_tip|ok" msgid "Runs or saves the current macro." -msgstr "מריץ או שומר את המאקרו הנוכחי." +msgstr "הרצה או שמירה של פקודת המאקרו הנוכחית." #. 6SWBt #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:156 @@ -662,7 +662,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:230 msgctxt "basicmacrodialog|extended_tip|libraries" msgid "Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog." -msgstr "" +msgstr "מפרט את הספריות והמודולים בהם ניתן לפתוח או לשמור את פקודות המאקרו שלך. לשמירת מאקרו יחד עם מסמך מסוים יש לפתוח את המסמך ואז לפתוח את תיבת הדו־שיח הזו." #. Mfysc #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:246 @@ -698,7 +698,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:337 msgctxt "basicmacrodialog|extended_tip|assign" msgid "Opens the Customize dialog, where you can assign the selected macro to a menu command, a toolbar, or an event." -msgstr "" +msgstr "פותח את חלונית ההתאמה האישית, בה ניתן להקצות את תסריט המאקרו הנבחר לפקודת תפריט, סרגל כלים או אירוע." #. dxu7W #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:349 @@ -710,7 +710,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:356 msgctxt "basicmacrodialog|extended_tip|edit" msgid "Starts the Basic editor and opens the selected macro or dialog for editing." -msgstr "" +msgstr "מתחיל את עורך ה־Basic ופותח את המאקרו או את חלונית העריכה." #. 9Uhec #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:368 @@ -722,7 +722,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:375 msgctxt "basicmacrodialog|extended_tip|delete" msgid "Creates a new macro, creates a new module or deletes the selected macro or selected module." -msgstr "" +msgstr "יוצר תסריט מאקרו חדש, יוצר מודול חדש או מוחק את תסריט המאקרי הנבחר או את המודול הנבחר." #. XkqFC #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:387 @@ -752,13 +752,13 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:425 msgctxt "basicmacrodialog|newlibrary" msgid "New Library" -msgstr "ספריה חדשה" +msgstr "ספרייה חדשה" #. E5rdD #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:432 msgctxt "basicmacrodialog|extended_tip|newlibrary" msgid "Saves the recorded macro in a new library." -msgstr "" +msgstr "שומר את המאקרו המוקלט לספרייה חדשה." #. 2xdsE #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:444 @@ -770,13 +770,13 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:451 msgctxt "basicmacrodialog|extended_tip|newmodule" msgid "Saves the recorded macro in a new module." -msgstr "" +msgstr "שומר את המאקרו המוקלט במודול חדש." #. gMDg9 #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:499 msgctxt "basicmacrodialog|extended_tip|BasicMacroDialog" msgid "Opens a dialog to organize macros." -msgstr "" +msgstr "פותח את החלונית כדי לארגן תסריטי מאקרו." #. MDBgX #: basctl/uiconfig/basicide/ui/breakpointmenus.ui:12 @@ -788,7 +788,7 @@ #: basctl/uiconfig/basicide/ui/breakpointmenus.ui:15 msgctxt "breakpointmenus|extended_tip|manage" msgid "Specifies the options for breakpoints." -msgstr "" +msgstr "מציין אפשרויות לנקודות עצירה." #. faXzj #: basctl/uiconfig/basicide/ui/breakpointmenus.ui:28 @@ -818,7 +818,7 @@ #: basctl/uiconfig/basicide/ui/defaultlanguage.ui:30 msgctxt "defaultlanguage|DefaultLanguageDialog" msgid "Set Default User Interface Language" -msgstr "הגדרת שפת מנשק המשתמש כבררת מחדל" +msgstr "הגדרת שפת מנשק המשתמש כברירת מחדל" #. xYz56 #: basctl/uiconfig/basicide/ui/defaultlanguage.ui:119 @@ -842,7 +842,7 @@ #: basctl/uiconfig/basicide/ui/defaultlanguage.ui:279 msgctxt "defaultlanguage|added" msgid "Select languages to be added. Resources for these languages will be created in the library. Strings of the current default user interface language will be copied to these new resources by default." -msgstr "נא לבחור בשפות להוספה. המשאבים עבור שפות אלו יווצרו בספרייה. מחרוזות בררת המחדל למנשק המשתמש יועתקו למשאבים החדשים האלה כבררת מחדל." +msgstr "נא לבחור בשפות להוספה. המשאבים עבור שפות אלו יווצרו בספרייה. מחרוזות בררת המחדל למנשק המשתמש יועתקו למשאבים החדשים האלה כברירת מחדל." #. QWxzi #: basctl/uiconfig/basicide/ui/defaultlanguage.ui:294 @@ -1119,7 +1119,7 @@ #: basctl/uiconfig/basicide/ui/libpage.ui:305 msgctxt "libpage|extended_tip|LibPage" msgid "Select the application or the document containing the macro libraries that you want to organize." -msgstr "" +msgstr "נא לבחור את היישום או את המסמך שמכיל את ספריות המאקרו שברצונך לארגן." #. zrJTt #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:16 @@ -1137,7 +1137,7 @@ #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:60 msgctxt "managebreakpoints|extended_tip|delete" msgid "Deletes the selected breakpoint." -msgstr "" +msgstr "מוחק את נקודת העצירה הנבחרת." #. PcuyN #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:143 @@ -1209,7 +1209,7 @@ #: basctl/uiconfig/basicide/ui/managelanguages.ui:150 msgctxt "managelanguages|default" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. aMjkJ #: basctl/uiconfig/basicide/ui/modulepage.ui:41 diff -Nru libreoffice-7.4.6/translations/source/he/connectivity/messages.po libreoffice-7.4.7/translations/source/he/connectivity/messages.po --- libreoffice-7.4.6/translations/source/he/connectivity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/connectivity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2021-01-26 17:36+0000\n" +"PO-Revision-Date: 2023-03-14 12:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1535975601.000000\n" #. 9KHB8 @@ -27,7 +27,7 @@ #: connectivity/inc/strings.hrc:26 msgctxt "STR_WRONG_PARAM_INDEX" msgid "You tried to set a parameter at position “$pos$” but there is/are only “$count$” parameter(s) allowed. One reason may be that the property “ParameterNameSubstitution” is not set to TRUE in the data source." -msgstr "" +msgstr "ניסית להגדיר משתנה במקום „$pos$” אך יש רק „$count$” פרמטרים. אחת הסיבות יכולה להיות שהמשתנה „ParameterNameSubstitution” (החלפת שמות משתנים) לא מוגדר ל־TRUE (אמת) במקור הנתונים." #. 6FnrV #: connectivity/inc/strings.hrc:27 @@ -39,7 +39,7 @@ #: connectivity/inc/strings.hrc:28 msgctxt "STR_NO_ELEMENT_NAME" msgid "There is no element named “$name$”." -msgstr "" +msgstr "אין רכיב בשם „$name$”." #. CWktu #: connectivity/inc/strings.hrc:29 @@ -75,13 +75,13 @@ #: connectivity/inc/strings.hrc:34 msgctxt "STR_UNSUPPORTED_FUNCTION" msgid "The driver does not support the function “$functionname$”." -msgstr "" +msgstr "מנהל ההתקנים לא תומך בפונקציה „$functionname$”." #. GW3L8 #: connectivity/inc/strings.hrc:35 msgctxt "STR_UNSUPPORTED_FEATURE" msgid "The driver does not support the functionality for “$featurename$”. It is not implemented." -msgstr "" +msgstr "מנהל ההתקן לא תומך ביכולת עבור „$featurename$”. היא לא מומשה." #. zXVCV #: connectivity/inc/strings.hrc:36 @@ -93,13 +93,13 @@ #: connectivity/inc/strings.hrc:37 msgctxt "STR_STRING_LENGTH_EXCEEDED" msgid "The string “$string$” exceeds the maximum length of $maxlen$ characters when converted to the target character set “$charset$”." -msgstr "" +msgstr "המחרוזת „$string$” חורגת מאורך מרבי של $maxlen$ תווים לאחר המרה לערכת התווים „$charset$”." #. THhEu #: connectivity/inc/strings.hrc:38 msgctxt "STR_CANNOT_CONVERT_STRING" msgid "The string “$string$” cannot be converted using the encoding “$charset$”." -msgstr "" +msgstr "לא ניתן להמיר את המחרוזת „$string$” באמצעות הקידוד „$charset$”." #. sSzsJ #: connectivity/inc/strings.hrc:39 @@ -111,49 +111,49 @@ #: connectivity/inc/strings.hrc:40 msgctxt "STR_QUERY_TOO_COMPLEX" msgid "The query cannot be executed. It is too complex." -msgstr "" +msgstr "לא ניתן להריץ את השאילתה. היא מורכבת מדי." #. ADy4t #: connectivity/inc/strings.hrc:41 msgctxt "STR_OPERATOR_TOO_COMPLEX" msgid "The query cannot be executed. The operator is too complex." -msgstr "" +msgstr "לא ניתן להריץ את השאילתה. האופרטור מורכב מדי." #. XZGaK #: connectivity/inc/strings.hrc:42 msgctxt "STR_QUERY_INVALID_LIKE_COLUMN" msgid "The query cannot be executed. You cannot use “LIKE” with columns of this type." -msgstr "" +msgstr "לא ניתן להריץ את השאילתה. אי אפשר להשתמש ב־„LIKE” (כמו) על עמודות מהסוג הזה." #. SsqWz #: connectivity/inc/strings.hrc:43 msgctxt "STR_QUERY_INVALID_LIKE_STRING" msgid "The query cannot be executed. “LIKE” can be used with a string argument only." -msgstr "" +msgstr "אי אפשר להריץ את השאילתה. אפשר להשתמש ב־„LIKE” (כמו) עם ארגומנטים מסוג מחרוזות בלבד." #. ZFFrf #: connectivity/inc/strings.hrc:44 msgctxt "STR_QUERY_NOT_LIKE_TOO_COMPLEX" msgid "The query cannot be executed. The “NOT LIKE” condition is too complex." -msgstr "" +msgstr "אי אפשר להריץ את השאילתה. תנאי ה־„NOT LIKE” (לא כמו) מורכב מדי." #. AaZzs #: connectivity/inc/strings.hrc:45 msgctxt "STR_QUERY_LIKE_WILDCARD" msgid "The query cannot be executed. The “LIKE” condition contains wildcard in the middle." -msgstr "" +msgstr "אי אפשר להריץ את השאילתה. תנאי ה־„LIKE” (כמו) מכיל תווי הכללה באמצע." #. GN6F9 #: connectivity/inc/strings.hrc:46 msgctxt "STR_QUERY_LIKE_WILDCARD_MANY" msgid "The query cannot be executed. The “LIKE” condition contains too many wildcards." -msgstr "" +msgstr "אי אפשר להריץ את השאילתה. תנאי ה־„LIKE” (כמו) מכיל יותר מדי תווי הכללה." #. LreLr #: connectivity/inc/strings.hrc:47 msgctxt "STR_INVALID_COLUMNNAME" msgid "The column name “$columnname$” is not valid." -msgstr "" +msgstr "שם העמודה „$coumnname$”שגוי." #. FT3Zb #: connectivity/inc/strings.hrc:48 @@ -232,13 +232,13 @@ #: connectivity/inc/strings.hrc:60 msgctxt "STR_VIEW_NO_COMMAND_ERROR" msgid "Could not create view: no command object." -msgstr "לא ניתן ליצור תצוגה: אין אובייקט פקודה." +msgstr "לא ניתן ליצור תצוגה: אין עצם פקודה." #. F6ygP #: connectivity/inc/strings.hrc:61 msgctxt "STR_NO_CONNECTION" msgid "The connection could not be created. Maybe the necessary data provider is not installed." -msgstr "" +msgstr "לא ניתן ליצור את החיבור. אולי ספק הנתונים הדרוש לא מותקן." #. GRZEu #. dbase @@ -269,7 +269,7 @@ #: connectivity/inc/strings.hrc:67 msgctxt "STR_COULD_NOT_CREATE_INDEX_NAME" msgid "The index could not be created. The file “$filename$” is used by another index." -msgstr "" +msgstr "לא ניתן ליצור את המפתח. הקובץ „$filename$” כבר נמצא בשימוש של מפתח אחר." #. GcK7B #: connectivity/inc/strings.hrc:68 @@ -281,7 +281,7 @@ #: connectivity/inc/strings.hrc:69 msgctxt "STR_SQL_NAME_ERROR" msgid "The name “$name$” does not match SQL naming constraints." -msgstr "" +msgstr "השם „$name$” לא תואם לאילוצי מתן השמות ב־SQL." #. wv2Cx #: connectivity/inc/strings.hrc:70 @@ -293,31 +293,31 @@ #: connectivity/inc/strings.hrc:71 msgctxt "STR_INVALID_COLUMN_TYPE" msgid "Invalid column type for column “$columnname$”." -msgstr "" +msgstr "סוג העמודה שגוי לעמודה „$columnname$”." #. wB2gE #: connectivity/inc/strings.hrc:72 msgctxt "STR_INVALID_COLUMN_PRECISION" msgid "Invalid precision for column “$columnname$”." -msgstr "" +msgstr "דיוק שגוי לעמודה „$columnname$”." #. v67fT #: connectivity/inc/strings.hrc:73 msgctxt "STR_INVALID_PRECISION_SCALE" msgid "Precision is less than scale for column “$columnname$”." -msgstr "" +msgstr "הדיוק הוא פחות מקנה המידה לעמודה „$columnname$”." #. J3KEu #: connectivity/inc/strings.hrc:74 msgctxt "STR_INVALID_COLUMN_NAME_LENGTH" msgid "Invalid column name length for column “$columnname$”." -msgstr "" +msgstr "אורך שם עמודה שגוי לעמודה „$columnname$”." #. ZQUww #: connectivity/inc/strings.hrc:75 msgctxt "STR_DUPLICATE_VALUE_IN_COLUMN" msgid "Duplicate value found in column “$columnname$”." -msgstr "" +msgstr "נמצא ערך כפול בעמודה „$columnname$”." #. zSeBJ #: connectivity/inc/strings.hrc:76 @@ -327,36 +327,39 @@ "\n" "The specified value “$value$” is longer than the number of digits allowed." msgstr "" +"סוג העמודה „$columnname$” הוגדר בתור „עשרוני”, האורך המרבי הוא $precision$ תווים (עם $scale$ מקומות עשרוניים).\n" +"\n" +"הערך שצוין „$value$” ארוך ממספר הספרות המותר." #. M6CvC #: connectivity/inc/strings.hrc:77 msgctxt "STR_COLUMN_NOT_ALTERABLE" msgid "The column “$columnname$” could not be altered. Maybe the file system is write-protected." -msgstr "" +msgstr "לא ניתן לשנות את העמודה „$columnname$”. אולי מערכת הקבצים מוגנת מפני כתיבה." #. st6hA #: connectivity/inc/strings.hrc:78 msgctxt "STR_INVALID_COLUMN_VALUE" msgid "The column “$columnname$” could not be updated. The value is invalid for that column." -msgstr "" +msgstr "לא ניתן לעדכן את העמודה „$columnname$”. הערך שגוי לעמודה הזאת." #. 5rH5W #: connectivity/inc/strings.hrc:79 msgctxt "STR_COLUMN_NOT_ADDABLE" msgid "The column “$columnname$” could not be added. Maybe the file system is write-protected." -msgstr "" +msgstr "לא ניתן להוסיף את העמודה „$columnname$”. אולי מערכת הקבצים מוגנת מפני כתיבה." #. B9ACk #: connectivity/inc/strings.hrc:80 msgctxt "STR_COLUMN_NOT_DROP" msgid "The column at position “$position$” could not be dropped. Maybe the file system is write-protected." -msgstr "" +msgstr "לא ניתן להשמיט את העמודה במיקום „$position$”. אולי מערכת הקבצים מוגנת מפני כתיבה." #. KfedE #: connectivity/inc/strings.hrc:81 msgctxt "STR_TABLE_NOT_DROP" msgid "The table “$tablename$” could not be dropped. Maybe the file system is write-protected." -msgstr "" +msgstr "לא ניתן להשמיט את הטבלה „$tablename$”. אולי מערכת הקבצים מוגנת מפני כתיבה." #. R3BGx #: connectivity/inc/strings.hrc:82 @@ -368,7 +371,7 @@ #: connectivity/inc/strings.hrc:83 msgctxt "STR_INVALID_DBASE_FILE" msgid "The file “$filename$” is an invalid (or unrecognized) dBASE file." -msgstr "" +msgstr "הקובץ „$filename$” הוא קובץ dBASE שגוי (או לא מזוהה)." #. LhHTA #. Evoab2 @@ -388,31 +391,31 @@ #: connectivity/inc/strings.hrc:88 msgctxt "STR_QUERY_COMPLEX_COUNT" msgid "The query cannot be executed. It is too complex. Only “COUNT(*)” is supported." -msgstr "" +msgstr "לא ניתן להריץ את השאילתה. היא מורכבת מדי. יש תמיכה רק ב־„COUNT(*)‎” (ספירה)." #. PJivi #: connectivity/inc/strings.hrc:89 msgctxt "STR_QUERY_INVALID_BETWEEN" msgid "The query cannot be executed. The “BETWEEN” arguments are not correct." -msgstr "" +msgstr "לא ניתן להריץ את השאילתה. הארגומנטים ל־„BETWEEN” (בין) שגויים." #. CHRju #: connectivity/inc/strings.hrc:90 msgctxt "STR_QUERY_FUNCTION_NOT_SUPPORTED" msgid "The query cannot be executed. The function is not supported." -msgstr "" +msgstr "לא ניתן להריץ את השאילתה. אין תמיכה בפונקציה." #. mnc5r #: connectivity/inc/strings.hrc:91 msgctxt "STR_TABLE_READONLY" msgid "The table cannot be changed. It is read only." -msgstr "" +msgstr "לא ניתן לערוך את הטבלה. היא לקריאה בלבד." #. TUUpf #: connectivity/inc/strings.hrc:92 msgctxt "STR_DELETE_ROW" msgid "The row could not be deleted. The option “Display inactive records” is set." -msgstr "" +msgstr "לא ניתן למחוק את השורה. האפשרות „הצגת רשומות בלתי־פעילות” מוגדרת." #. TZTfv #: connectivity/inc/strings.hrc:93 @@ -424,55 +427,55 @@ #: connectivity/inc/strings.hrc:94 msgctxt "STR_QUERY_MORE_TABLES" msgid "The query cannot be executed. It contains more than one table." -msgstr "" +msgstr "לא ניתן להריץ את השאילתה. היא מכילה יותר מטבלה אחת." #. L4Ffm #: connectivity/inc/strings.hrc:95 msgctxt "STR_QUERY_NO_TABLE" msgid "The query cannot be executed. It contains no valid table." -msgstr "" +msgstr "לא ניתן להריץ את השאילתה. היא לא מכילה טבלה תקפה." #. 3KADk #: connectivity/inc/strings.hrc:96 msgctxt "STR_QUERY_NO_COLUMN" msgid "The query cannot be executed. It contains no valid columns." -msgstr "" +msgstr "לא ניתן להריץ את השאילתה. היא לא מכילה עמודות תקפות." #. WcpZM #: connectivity/inc/strings.hrc:97 msgctxt "STR_INVALID_PARA_COUNT" msgid "The count of the given parameter values does not match the parameters." -msgstr "" +msgstr "כמות ערכי המשתנים שסופקו לא תואמת את המשתנים." #. CFcjS #: connectivity/inc/strings.hrc:98 msgctxt "STR_NO_VALID_FILE_URL" msgid "The URL “$URL$” is not valid. A connection cannot be created." -msgstr "" +msgstr "הכתובת „$URL$” שגויה. לא ניתן ליצור חיבור." #. YFjkG #: connectivity/inc/strings.hrc:99 msgctxt "STR_NO_CLASSNAME" msgid "The driver class “$classname$” could not be loaded." -msgstr "" +msgstr "לא ניתן לטעון את מחלקת מנהל ההתקן „$classname$”." #. jbnZZ #: connectivity/inc/strings.hrc:100 msgctxt "STR_NO_JAVA" msgid "No Java installation could be found. Please check your installation." -msgstr "לא נמצא התקנת Java. נא לבדוק את ההתקנה." +msgstr "לא נמצאה התקנת Java. נא לבדוק את ההתקנה שלך." #. GdN4i #: connectivity/inc/strings.hrc:101 msgctxt "STR_NO_RESULTSET" msgid "The execution of the query does not return a valid result set." -msgstr "" +msgstr "הרצת השאילתה לא החזירה סדרת תוצאות תקפה." #. JGxgF #: connectivity/inc/strings.hrc:102 msgctxt "STR_NO_ROWCOUNT" msgid "The execution of the update statement does not affect any rows." -msgstr "" +msgstr "הרצת פעולת ה־UPDATE (עדכון) לא השפיעה על אף שורה." #. yCACF #: connectivity/inc/strings.hrc:103 @@ -484,13 +487,13 @@ #: connectivity/inc/strings.hrc:104 msgctxt "STR_UNKNOWN_PARA_TYPE" msgid "The type of parameter at position “$position$” is unknown." -msgstr "" +msgstr "סוג המשתנה במיקום „$position$” לא ידוע." #. gSPCX #: connectivity/inc/strings.hrc:105 msgctxt "STR_UNKNOWN_COLUMN_TYPE" msgid "The type of column at position “$position$” is unknown." -msgstr "" +msgstr "סוג העמודה במיקום „$position$” לא ידוע." #. 3FmFX #. KAB @@ -510,7 +513,7 @@ #: connectivity/inc/strings.hrc:110 msgctxt "STR_NO_MAC_OS_FOUND" msgid "No suitable macOS installation was found." -msgstr "" +msgstr "לא נמצאה התקנה מתאימה של macOS." #. HNSzq #. hsqldb @@ -529,19 +532,19 @@ #: connectivity/inc/strings.hrc:114 msgctxt "STR_NO_TABLE_CONTAINER" msgid "An error occurred while obtaining the connection’s table container." -msgstr "" +msgstr "אירעה שגיאה במשיכת מארז טבלת החיבור." #. uxoGW #: connectivity/inc/strings.hrc:115 msgctxt "STR_NO_TABLENAME" msgid "There is no table named “$tablename$”." -msgstr "" +msgstr "אין טבלה בשם „$tablename$”." #. 3BxCF #: connectivity/inc/strings.hrc:116 msgctxt "STR_NO_DOCUMENTUI" msgid "The provided DocumentUI is not allowed to be NULL." -msgstr "אין הרשאה כדי שה־DocumentUI שסופק יהיה ריק (NULL)." +msgstr "אסור ל־DocumentUI שסופק להיות ריק (NULL)." #. VLEMM #: connectivity/inc/strings.hrc:117 @@ -565,7 +568,7 @@ #: connectivity/inc/strings.hrc:121 msgctxt "STR_DB_OBJECT_NAME_WITH_SLASHES" msgid "The name must not contain any slashes (“/”)." -msgstr "" +msgstr "לשם אסור להכיל לוכסנים („/”)." #. 5Te4k #: connectivity/inc/strings.hrc:122 @@ -583,7 +586,7 @@ #: connectivity/inc/strings.hrc:124 msgctxt "STR_DB_OBJECT_NAME_IS_USED" msgid "The name “$1$” is already in use in the database." -msgstr "" +msgstr "השם „$1$” כבר בשימוש במסד הנתונים." #. gD8xU #: connectivity/inc/strings.hrc:125 diff -Nru libreoffice-7.4.6/translations/source/he/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po libreoffice-7.4.7/translations/source/he/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po --- libreoffice-7.4.6/translations/source/he/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:30+0100\n" -"PO-Revision-Date: 2020-02-14 10:28+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1538497344.000000\n" #. bTkZz @@ -24,4 +24,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "MySQL/MariaDB Connector" -msgstr "" +msgstr "מגשר MySQL/MariaDB" diff -Nru libreoffice-7.4.6/translations/source/he/cui/messages.po libreoffice-7.4.7/translations/source/he/cui/messages.po --- libreoffice-7.4.6/translations/source/he/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2021-09-08 09:16+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565698564.000000\n" #. GyY9M @@ -418,13 +418,13 @@ #: cui/inc/strings.hrc:72 msgctxt "RID_SVXSTR_GROUPEDBAR" msgid "Groupedbar" -msgstr "" +msgstr "סרגל מקובץ" #. AnFxX #: cui/inc/strings.hrc:73 msgctxt "RID_SVXSTR_GROUPEDBAR_COMPACT" msgid "Groupedbar Compact" -msgstr "" +msgstr "סרגל מקובץ חסכוני" #. GN45E #: cui/inc/strings.hrc:75 @@ -781,7 +781,7 @@ #: cui/inc/strings.hrc:138 msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER" msgid "Fill parameters" -msgstr "מילוי פרמטרים" +msgstr "מילוי משתנים" #. mL59X #: cui/inc/strings.hrc:139 @@ -1532,25 +1532,25 @@ #: cui/inc/strings.hrc:285 msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE" msgid "Do you really want to delete the color scheme?" -msgstr "למחוק את סכימת הצבעים?‏" +msgstr "למחוק את סכמת הצבעים?‏" #. ybdED #: cui/inc/strings.hrc:286 msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE" msgid "Color Scheme Deletion" -msgstr "מחיקת סכימת הצבעים" +msgstr "מחיקת סכמת הצבעים" #. DoNBE #: cui/inc/strings.hrc:287 msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1" msgid "Save scheme" -msgstr "שמירת הסכימה" +msgstr "שמירת הסכמה" #. tFrki #: cui/inc/strings.hrc:288 msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2" msgid "Name of color scheme" -msgstr "שם סכימת הצבעים" +msgstr "שם סכמת הצבעים" #. BAGbe #: cui/inc/strings.hrc:290 @@ -1660,7 +1660,7 @@ #: cui/inc/strings.hrc:307 msgctxt "RID_SVXSTR_JAVA_START_PARAM" msgid "Edit Parameter" -msgstr "עריכת פרמטר" +msgstr "עריכת משתנה" #. fsbAN #: cui/inc/strings.hrc:309 @@ -1672,25 +1672,25 @@ msgstr "" "ערך לא חוקי!\n" "\n" -"הערך המירבי לכניסה (פורט) הוא 65535.‏" +"הערך המרבי לפתחה (פורט) הוא 65535.‏" #. UCFD6 #: cui/inc/strings.hrc:311 msgctxt "RID_SVXSTR_DESC_GRADIENT" msgid "Please enter a name for the gradient:" -msgstr "יש להזין שם עבור המידרג:‏" +msgstr "נא למלא שם למדרג:‏" #. UDvKR #: cui/inc/strings.hrc:312 msgctxt "RID_SVXSTR_DESC_NEW_BITMAP" msgid "Please enter a name for the bitmap:" -msgstr "יש להזין שם עבור מפת הסיביות:‏" +msgstr "נא למלא שם למפת הסיביות:‏" #. QXqJD #: cui/inc/strings.hrc:313 msgctxt "RID_SVXSTR_DESC_EXT_BITMAP" msgid "Please enter a name for the external bitmap:" -msgstr "יש להזין שם עבור מפת הסיביות החיצונית:‏" +msgstr "נא למלא שם למפת הסיביות החיצונית:‏" #. SrS6X #: cui/inc/strings.hrc:314 @@ -1748,7 +1748,7 @@ #: cui/inc/strings.hrc:322 msgctxt "RID_SVXSTR_DESC_LINEEND" msgid "Please enter a name for the new arrow style:" -msgstr "" +msgstr "נא למלא שם לסגנון החץ החדש:" #. xD9BU #: cui/inc/strings.hrc:323 @@ -2049,7 +2049,7 @@ #: cui/inc/strings.hrc:380 msgctxt "RID_SVXSTR_COMMANDEXPERIMENTAL" msgid "Experimental" -msgstr "" +msgstr "ניסיוני" #. 3FZFt #: cui/inc/strings.hrc:382 @@ -2109,67 +2109,67 @@ #: cui/inc/strings.hrc:392 msgctxt "RID_SVXSTR_ADDITIONS_DICTIONARY" msgid "Extensions: Dictionary" -msgstr "" +msgstr "הרחבות: מילון" #. MEZpu #: cui/inc/strings.hrc:393 msgctxt "RID_SVXSTR_ADDITIONS_GALLERY" msgid "Extensions: Gallery" -msgstr "" +msgstr "הרחבות: גלריה" #. R8obE #: cui/inc/strings.hrc:394 msgctxt "RID_SVXSTR_ADDITIONS_ICONS" msgid "Extensions: Icons" -msgstr "" +msgstr "הרחבות: סמלים" #. AqGWn #: cui/inc/strings.hrc:395 msgctxt "RID_SVXSTR_ADDITIONS_PALETTES" msgid "Extensions: Color Palette" -msgstr "" +msgstr "הרחבות: לוחות צבעים" #. mncuJ #: cui/inc/strings.hrc:396 msgctxt "RID_SVXSTR_ADDITIONS_TEMPLATES" msgid "Extensions: Templates" -msgstr "" +msgstr "הרחבות: תבניות" #. KTtQE #: cui/inc/strings.hrc:398 msgctxt "RID_SVXSTR_UI_APPLYALL" msgid "Apply to %MODULE" -msgstr "החל על מודול %MODULE" +msgstr "החלה על מודול %MODULE" #. Xr3W9 #: cui/inc/strings.hrc:400 msgctxt "RID_SVXSTR_OLE_INSERT" msgid "Inserting OLE object..." -msgstr "" +msgstr "עצם OLE מתווסף…" #. QMiCF #: cui/inc/strings.hrc:402 msgctxt "RID_CUISTR_CLICK_RESULT" msgid "(Click on any test to view its resultant bitmap image)" -msgstr "" +msgstr "(לחיצה על כל אחת מהבדיקות תציג את מפת הסיביות שנוצרה באמצעותה)" #. BT9KG #: cui/inc/strings.hrc:403 msgctxt "RID_CUISTR_ZIPFAIL" msgid "Creation of ZIP file failed." -msgstr "" +msgstr "יצירת קובץ ZIP נכשלה." #. 9QSQr #: cui/inc/strings.hrc:404 msgctxt "RID_CUISTR_SAVED" msgid "The results have been successfully saved in the file 'GraphicTestResults.zip'!" -msgstr "" +msgstr "התוצאות נשמרו בהצלחה בקובץ ‚GraphicTestResults.zip’!" #. mpS3V #: 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 מציעה מגוון אפשרויות ממשק משתמש כדי לגרום לך להרגיש בבית." +msgstr "תוכנת %PRODUCTNAME מציעה מגוון אפשרויות מנשק משתמש כדי לגרום לך להרגיש בבית." #. m8rYd #: cui/inc/tipoftheday.hrc:51 @@ -2368,7 +2368,7 @@ #: cui/inc/tipoftheday.hrc:82 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to add many of the same shapes in Draw/Impress? Double-click a tool in the drawing toolbar to use it for repeated tasks." -msgstr "" +msgstr "רוצה להוסיף את אותן הצורות מספר פעמים ב־Draw/‏Impress? לחיצה כפולה על כלי בסרגל הכלים של השרטוט תאפשר להשתמש בו למשימות שחוזרות על עצמן." #. DDGnC #: cui/inc/tipoftheday.hrc:83 @@ -2386,7 +2386,7 @@ #: 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 "" +msgstr "אפשר להשתמש במקש המחיקה (Backspace) במקום ללחוץ על „מחיקה” ב־Calc. אפשר לבחור מה למחוק." #. UuWHK #: cui/inc/tipoftheday.hrc:86 @@ -2434,7 +2434,7 @@ #: cui/inc/tipoftheday.hrc:93 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get help from the community via the Ask portal." -msgstr "" +msgstr "אפשר לקבל עזרה מהקהילה דרך שער המענה על שאלות (Ask Portal)." #. qnAAh #: cui/inc/tipoftheday.hrc:94 @@ -2647,7 +2647,7 @@ #: cui/inc/tipoftheday.hrc:130 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via View ▸ User Interface." -msgstr "" +msgstr "אפשר לשנות את המראה של %PRODUCTNAME דרך תצוגה ◂ מנשק משתמש." #. J853i #: cui/inc/tipoftheday.hrc:131 @@ -3018,7 +3018,7 @@ #: cui/inc/tipoftheday.hrc:190 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" -msgstr "רוצה לדעת את הפרמטרים החוקיים של שורת הפקודה? התחל את soffice עם ‭ --help וא -h וא -?" +msgstr "מעניין אותך להכיר את המשתנים התקפים בשורת הפקודה? יש להפעיל את את soffice עם ‎--help או ‎-h או ‎-?‎" #. pmP5i #. local help missing @@ -3557,56 +3557,56 @@ #: cui/inc/tipoftheday.hrc:279 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" -msgstr "" +msgstr "עזרה עבור %PRODUCTNAME" #. NG4jW #: cui/inc/tipoftheday.hrc:280 msgctxt "STR_MORE_LINK" msgid "More info" -msgstr "" +msgstr "מידע נוסף" #. sCREc #: cui/inc/tipoftheday.hrc:281 msgctxt "STR_UNO_LINK" msgid "Run this action now..." -msgstr "" +msgstr "הרצת הפקודה הזאת כעת…" #. P6JME #: cui/inc/tipoftheday.hrc:282 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" -msgstr "" +msgstr "העצה היומית: %CURRENT/%TOTAL" #. C6Dsn #: cui/inc/tipoftheday.hrc:283 msgctxt "STR_CMD" msgid "⌘ Cmd" -msgstr "" +msgstr "‎⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here #: cui/inc/tipoftheday.hrc:284 msgctxt "STR_CTRL" msgid "Ctrl" -msgstr "" +msgstr "Ctrl" #. mZWSR #: cui/inc/tipoftheday.hrc:285 msgctxt "STR_CMD" msgid "Alt" -msgstr "" +msgstr "Alt" #. QtEGa #: cui/inc/tipoftheday.hrc:286 msgctxt "STR_CTRL" msgid "⌥ Opt" -msgstr "" +msgstr "‎⌥ Opt" #. Tdqss #: 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 "" +msgstr "מנשק משתמש תקני עם תפריט, סרגל כלים וסרגל צד מצומצם. מיועד למשתמשים שמכירים את המנשק הקלסי." #. BoVy3 #: cui/inc/toolbarmode.hrc:24 @@ -3732,7 +3732,7 @@ #: cui/inc/treeopt.hrc:46 msgctxt "SID_GENERAL_OPTIONS_RES" msgid "Basic IDE" -msgstr "" +msgstr "סביבת פיתוח בייסיק" #. ZS4Sx #: cui/inc/treeopt.hrc:47 @@ -3778,7 +3778,6 @@ #. VsApk #: cui/inc/treeopt.hrc:58 -#, fuzzy msgctxt "SID_LANGUAGE_OPTIONS_RES" msgid "Complex Text Layout" msgstr "מתווה טקסט מורכב" @@ -3797,10 +3796,9 @@ #. QJNEE #: cui/inc/treeopt.hrc:65 -#, fuzzy msgctxt "SID_INET_DLG_RES" msgid "Proxy" -msgstr "פרוקסי" +msgstr "מתווך" #. EhHFs #: cui/inc/treeopt.hrc:66 @@ -3828,7 +3826,6 @@ #. MxbiL #: cui/inc/treeopt.hrc:74 -#, fuzzy msgctxt "SID_SW_EDITOPTIONS_RES" msgid "Formatting Aids" msgstr "עזרי עיצוב" @@ -3841,17 +3838,15 @@ #. Cc2Ka #: cui/inc/treeopt.hrc:76 -#, fuzzy msgctxt "SID_SW_EDITOPTIONS_RES" msgid "Basic Fonts (Western)" msgstr "גופני יסוד (מערביים)‏" #. TDUti #: cui/inc/treeopt.hrc:77 -#, fuzzy msgctxt "SID_SW_EDITOPTIONS_RES" msgid "Basic Fonts (Asian)" -msgstr "גופני יסוד (אסיה)‏" +msgstr "גופני יסוד (אסיתיים)‏" #. nfHR8 #: cui/inc/treeopt.hrc:78 @@ -3880,21 +3875,18 @@ #. 3DyC7 #: cui/inc/treeopt.hrc:82 -#, fuzzy msgctxt "SID_SW_EDITOPTIONS_RES" msgid "Comparison" msgstr "השוואה" #. AtMGC #: cui/inc/treeopt.hrc:83 -#, fuzzy msgctxt "SID_SW_EDITOPTIONS_RES" msgid "Compatibility" msgstr "תאימות" #. byMJP #: cui/inc/treeopt.hrc:84 -#, fuzzy msgctxt "SID_SW_EDITOPTIONS_RES" msgid "AutoCaption" msgstr "כתוביות אוטומטיות" @@ -3907,10 +3899,9 @@ #. trEVm #: cui/inc/treeopt.hrc:90 -#, fuzzy msgctxt "SID_SW_ONLINEOPTIONS_RES" msgid "%PRODUCTNAME Writer/Web" -msgstr "שגיאת ‏‪%PRODUCTNAME‏" +msgstr "%PRODUCTNAME Writer/Web" #. BZ7BG #: cui/inc/treeopt.hrc:91 @@ -3920,7 +3911,6 @@ #. 3q8qM #: cui/inc/treeopt.hrc:92 -#, fuzzy msgctxt "SID_SW_ONLINEOPTIONS_RES" msgid "Formatting Aids" msgstr "עזרי עיצוב" @@ -3987,7 +3977,6 @@ #. QMCfy #: cui/inc/treeopt.hrc:111 -#, fuzzy msgctxt "SID_SC_EDITOPTIONS_RES" msgid "Calculate" msgstr "חישוב" @@ -4012,7 +4001,6 @@ #. WVbFZ #: cui/inc/treeopt.hrc:115 -#, fuzzy msgctxt "SID_SC_EDITOPTIONS_RES" msgid "Compatibility" msgstr "תאימות" @@ -4103,7 +4091,6 @@ #. oUBac #: cui/inc/treeopt.hrc:146 -#, fuzzy msgctxt "SID_FILTER_DLG_RES" msgid "Load/Save" msgstr "טעינה/שמירה" @@ -4116,7 +4103,6 @@ #. 9aX4K #: cui/inc/treeopt.hrc:148 -#, fuzzy msgctxt "SID_FILTER_DLG_RES" msgid "VBA Properties" msgstr "תכונות ‏‪VBA‏" @@ -4129,7 +4115,6 @@ #. UtTyJ #: cui/inc/treeopt.hrc:150 -#, fuzzy msgctxt "SID_FILTER_DLG_RES" msgid "HTML Compatibility" msgstr "תאימות ‏‪HTML‏" @@ -4142,14 +4127,12 @@ #. 78XBF #: cui/inc/treeopt.hrc:156 -#, fuzzy msgctxt "SID_SB_STARBASEOPTIONS_RES" msgid "Connections" msgstr "חיבורים" #. 54yat #: cui/inc/treeopt.hrc:157 -#, fuzzy msgctxt "SID_SB_STARBASEOPTIONS_RES" msgid "Databases" msgstr "מסדי נתונים" @@ -4326,37 +4309,37 @@ #: cui/uiconfig/ui/aboutdialog.ui:106 msgctxt "aboutdialog|lbVersion" msgid "Version:" -msgstr "" +msgstr "גרסה:" #. W6gkc #: cui/uiconfig/ui/aboutdialog.ui:123 msgctxt "aboutdialog|lbBuild" msgid "Build:" -msgstr "" +msgstr "בנייה:" #. J78bj #: cui/uiconfig/ui/aboutdialog.ui:139 msgctxt "aboutdialog|lbEnvironment" msgid "Environment:" -msgstr "" +msgstr "סביבה:" #. c2sEB #: cui/uiconfig/ui/aboutdialog.ui:209 msgctxt "aboutdialog|lbExtra" msgid "Misc:" -msgstr "" +msgstr "שונות:" #. FwVyQ #: cui/uiconfig/ui/aboutdialog.ui:243 msgctxt "aboutdialog|lbLocale" msgid "Locale:" -msgstr "" +msgstr "הגדרות אזוריות:" #. SFbP2 #: cui/uiconfig/ui/aboutdialog.ui:275 msgctxt "aboutdialog|lbUI" msgid "User Interface:" -msgstr "" +msgstr "מנשק משתמש:" #. KFo3i #: cui/uiconfig/ui/aboutdialog.ui:316 @@ -4368,13 +4351,13 @@ #: cui/uiconfig/ui/aboutdialog.ui:350 msgctxt "aboutdialog|credits" msgid "Credits" -msgstr "" +msgstr "תודות" #. VkRAv #: cui/uiconfig/ui/aboutdialog.ui:366 msgctxt "aboutdialog|website" msgid "Website" -msgstr "" +msgstr "אתר" #. i4Jo2 #: cui/uiconfig/ui/aboutdialog.ui:382 @@ -4410,10 +4393,9 @@ #. MP3WF #: cui/uiconfig/ui/accelconfigpage.ui:129 -#, fuzzy msgctxt "accelconfigpage|label21" msgid "Shortcu_t Keys" -msgstr "מקשי קיצור" +msgstr "מקשי _קיצור" #. rEN3b #: cui/uiconfig/ui/accelconfigpage.ui:155 @@ -4543,10 +4525,9 @@ #. CqdJF #: cui/uiconfig/ui/accelconfigpage.ui:564 -#, fuzzy msgctxt "accelconfigpage|label22" msgid "F_unctions" -msgstr "פונקציות" +msgstr "_פונקציות" #. kVeWd #: cui/uiconfig/ui/accelconfigpage.ui:577 @@ -4678,7 +4659,7 @@ #: cui/uiconfig/ui/acorreplacepage.ui:40 msgctxt "acorreplacepage|extended_tip|new" msgid "Adds or replaces an entry in the replacement table." -msgstr "" +msgstr "מוסיף או מחליף רשומה בטבלת ההחלפות." #. qjPVK #: cui/uiconfig/ui/acorreplacepage.ui:52 @@ -4690,7 +4671,7 @@ #: cui/uiconfig/ui/acorreplacepage.ui:60 msgctxt "acorreplacepage|extended_tip|replace" msgid "Adds or replaces an entry in the replacement table." -msgstr "" +msgstr "מוסיף או מחליף רשומה בטבלת ההחלפות." #. 7hHNW #: cui/uiconfig/ui/acorreplacepage.ui:79 @@ -4726,7 +4707,7 @@ #: cui/uiconfig/ui/acorreplacepage.ui:217 msgctxt "acorreplacepage|label2" msgid "_With" -msgstr "" +msgstr "_עם" #. 25PQc #: cui/uiconfig/ui/acorreplacepage.ui:232 @@ -4750,55 +4731,55 @@ #: cui/uiconfig/ui/additionsdialog.ui:12 msgctxt "customanimationfragment|90" msgid "Active version only" -msgstr "" +msgstr "גרסה פעילה בלבד" #. 6ZZPG #: cui/uiconfig/ui/additionsdialog.ui:25 msgctxt "bulletandposition|gallery" msgid "Sort by" -msgstr "" +msgstr "מיון לפי" #. LhkwF #: cui/uiconfig/ui/additionsdialog.ui:34 msgctxt "menuassignpage|gear_textOnly" msgid "Voting" -msgstr "" +msgstr "הצבעה" #. KsZpM #: cui/uiconfig/ui/additionsdialog.ui:43 msgctxt "menuassignpage|gear_textOnly" msgid "Downloads" -msgstr "" +msgstr "הורדות" #. A4zUt #: cui/uiconfig/ui/additionsdialog.ui:52 msgctxt "menuassignpage|gear_textOnly" msgid "Comments" -msgstr "" +msgstr "הערות" #. ncCYE #: cui/uiconfig/ui/additionsdialog.ui:71 msgctxt "menuassignpage|gear_iconAndText" msgid "Detail view" -msgstr "" +msgstr "תצוגה מפורטת" #. SoASj #: cui/uiconfig/ui/additionsdialog.ui:82 msgctxt "menuassignpage|gear_iconAndText" msgid "Condensed list" -msgstr "" +msgstr "רשימה דחוסה" #. MdFgz #: cui/uiconfig/ui/additionsdialog.ui:98 msgctxt "additionsdialog|AdditionsDialog" msgid "Additions" -msgstr "" +msgstr "תוספות" #. wqAig #: cui/uiconfig/ui/additionsdialog.ui:123 msgctxt "additionsdialog|ProgressLabel" msgid "Progress Label" -msgstr "" +msgstr "תווית התקדמות" #. PjJ55 #: cui/uiconfig/ui/additionsdialog.ui:126 @@ -4810,7 +4791,7 @@ #: cui/uiconfig/ui/additionsdialog.ui:127 msgctxt "additionsdialog|ProgressLabel" msgid "This label shows that the progress of the operations such as loading extensions, not found, etc." -msgstr "" +msgstr "התווית הזאת מציגה התקדמותשל פעילויות כגון טעינת הרחבות, לא נמצא וכן הלאה." #. NrZT8 #: cui/uiconfig/ui/additionsdialog.ui:188 @@ -4823,19 +4804,19 @@ #: cui/uiconfig/ui/additionsdialog.ui:212 msgctxt "additionsdialog|buttonGear" msgid "Gear Menu" -msgstr "" +msgstr "תפריט גלגל שיניים" #. CbCbR #: cui/uiconfig/ui/additionsdialog.ui:213 msgctxt "additionsdialog|buttonGear" msgid "Contains commands to modify settings of the additions list such as sorting type or view type." -msgstr "" +msgstr "מכיל פקודות לשינוי הגדרות של רשימת תוספות כגון סוג מיון או סוג תצוגה." #. fUE2f #: cui/uiconfig/ui/additionsfragment.ui:16 msgctxt "additionsDialog|buttonShowMore" msgid "Show More Extensions" -msgstr "" +msgstr "הצגת הרחבות נוספות" #. 2pPGn #: cui/uiconfig/ui/additionsfragment.ui:21 @@ -4847,49 +4828,49 @@ #: cui/uiconfig/ui/additionsfragment.ui:22 msgctxt "additionsDialog|buttonShowMore" msgid "This button shows more extensions." -msgstr "" +msgstr "הכפתור הזה מציג עוד הרחבות." #. UzjvF #: cui/uiconfig/ui/additionsfragment.ui:68 msgctxt "additionsEntry|votingLabel" msgid "Voting:" -msgstr "" +msgstr "הצבעה:" #. iMQas #: cui/uiconfig/ui/additionsfragment.ui:88 msgctxt "additionsEntry|labelLicense" msgid "License:" -msgstr "" +msgstr "רישיון:" #. buPFe #: cui/uiconfig/ui/additionsfragment.ui:106 msgctxt "additionsEntry|labelVersion" msgid "Required version:" -msgstr "" +msgstr "גרסה נדרשת:" #. cFsEL #: cui/uiconfig/ui/additionsfragment.ui:124 msgctxt "additionsEntry|labelComments" msgid "Comments:" -msgstr "" +msgstr "הערות:" #. TkztG #: cui/uiconfig/ui/additionsfragment.ui:142 msgctxt "additionsEntry|labelComments" msgid "Downloads:" -msgstr "" +msgstr "הורדות:" #. JRe5b #: cui/uiconfig/ui/additionsfragment.ui:356 msgctxt "additionsEntry|buttonInstall" msgid "Install" -msgstr "" +msgstr "התקנה" #. VEbVr #: cui/uiconfig/ui/additionsfragment.ui:370 msgctxt "additionsEntry|buttonWebsite" msgid "Website" -msgstr "" +msgstr "אתר" #. BuMBh #: cui/uiconfig/ui/agingdialog.ui:15 @@ -4913,7 +4894,7 @@ #: cui/uiconfig/ui/agingdialog.ui:179 msgctxt "agingdialog|label1" msgid "Parameters" -msgstr "פרמטרים" +msgstr "משתנים" #. pciJf #: cui/uiconfig/ui/agingdialog.ui:204 @@ -5067,7 +5048,6 @@ #. VBKmS #: cui/uiconfig/ui/applylocalizedpage.ui:402 -#, fuzzy msgctxt "applylocalizedpage|label1" msgid "Single Quotes" msgstr "מירכאות בודדות" @@ -5134,10 +5114,9 @@ #. 85hDi #: cui/uiconfig/ui/applylocalizedpage.ui:554 -#, fuzzy msgctxt "applylocalizedpage|enddouble-atkobject" msgid "End quote of double quotes" -msgstr "מירכאת הפתיחה של מירכאות בודדות" +msgstr "מירכאת הסגירה של מירכאות כפולות" #. AurnH #: cui/uiconfig/ui/applylocalizedpage.ui:555 @@ -5243,7 +5222,6 @@ #. zXDcA #: cui/uiconfig/ui/areatabpage.ui:88 -#, fuzzy msgctxt "areatabpage|btngradient" msgid "Gradient" msgstr "מדרג" @@ -5268,7 +5246,6 @@ #. 9q7GD #: cui/uiconfig/ui/areatabpage.ui:124 -#, fuzzy msgctxt "areatabpage|btnpattern" msgid "Pattern" msgstr "תבנית" @@ -5330,17 +5307,15 @@ #. Xr8Ls #: cui/uiconfig/ui/asiantypography.ui:73 -#, fuzzy msgctxt "asiantypography|labelLineChange" msgid "Line Change" msgstr "שינוי קו" #. yjBU4 #: cui/uiconfig/ui/assigncomponentdialog.ui:10 -#, fuzzy msgctxt "assigncomponentdialog|AssignComponent" msgid "Assign Component" -msgstr "הקצאת הרכיב" +msgstr "הקצאת רכיב" #. EAbGN #: cui/uiconfig/ui/assigncomponentdialog.ui:95 @@ -5435,10 +5410,9 @@ #. siGFm #: cui/uiconfig/ui/baselinksdialog.ui:53 -#, fuzzy msgctxt "baselinksdialog|CHANGE_SOURCE" msgid "_Modify..." -msgstr "שינוי...‏" +msgstr "_שינוי…" #. BhCKm #: cui/uiconfig/ui/baselinksdialog.ui:60 @@ -5604,10 +5578,9 @@ #. 8B7Rg #: cui/uiconfig/ui/borderpage.ui:91 -#, fuzzy msgctxt "borderpage|userdefft" msgid "_User-defined:" -msgstr "מוגדר _משתמש" +msgstr "בהגדרת ה_משתמש" #. sRXeg #: cui/uiconfig/ui/borderpage.ui:107 @@ -5629,17 +5602,15 @@ #. 2PwAL #: cui/uiconfig/ui/borderpage.ui:167 -#, fuzzy msgctxt "borderpage|label8" msgid "Line Arrangement" msgstr "סידור קוים" #. GwAqX #: cui/uiconfig/ui/borderpage.ui:198 -#, fuzzy msgctxt "borderpage|label15" msgid "St_yle:" -msgstr "סגנון" +msgstr "ס_גנון:" #. 8UGAB #: cui/uiconfig/ui/borderpage.ui:212 @@ -5649,10 +5620,9 @@ #. Dweon #: cui/uiconfig/ui/borderpage.ui:229 -#, fuzzy msgctxt "borderpage|label17" msgid "_Color:" -msgstr "צבע" +msgstr "_צבע:" #. XcftM #: cui/uiconfig/ui/borderpage.ui:283 @@ -5704,10 +5674,9 @@ #. VeC3F #: cui/uiconfig/ui/borderpage.ui:422 -#, fuzzy msgctxt "borderpage|leftft" msgid "_Left:" -msgstr "לשמאל" +msgstr "_שמאל:" #. nULKu #: cui/uiconfig/ui/borderpage.ui:436 @@ -5741,10 +5710,9 @@ #. 76zLX #: cui/uiconfig/ui/borderpage.ui:537 -#, fuzzy msgctxt "borderpage|label22" msgid "_Position:" -msgstr "מיקום" +msgstr "מ_קום:" #. 8ojCs #: cui/uiconfig/ui/borderpage.ui:551 @@ -5754,21 +5722,18 @@ #. C7T8B #: cui/uiconfig/ui/borderpage.ui:552 -#, fuzzy msgctxt "borderpage|distanceft" msgid "Distan_ce:" -msgstr "מרחק" +msgstr "מ_רחק:" #. gEF6E #: cui/uiconfig/ui/borderpage.ui:581 -#, fuzzy msgctxt "borderpage|shadowcolorft" msgid "C_olor:" -msgstr "צבע" +msgstr "_צבע:" #. RsGNr #: cui/uiconfig/ui/borderpage.ui:614 -#, fuzzy msgctxt "borderpage|label11" msgid "Shadow Style" msgstr "סגנון הצללה" @@ -5885,7 +5850,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:309 msgctxt "bulletandposition|startat" msgid "1" -msgstr "" +msgstr "1" #. rE6Ec #: cui/uiconfig/ui/bulletandposition.ui:315 @@ -5999,7 +5964,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:657 msgctxt "bulletandposition|relsize" msgid "100" -msgstr "" +msgstr "100" #. QArnY #: cui/uiconfig/ui/bulletandposition.ui:663 @@ -6189,10 +6154,9 @@ #. cAZqx #: cui/uiconfig/ui/calloutpage.ui:76 -#, fuzzy msgctxt "calloutpage|label2" msgid "_Extension:" -msgstr "שלוחה" +msgstr "ה_רחבה:" #. vfBPx #: cui/uiconfig/ui/calloutpage.ui:91 @@ -6238,17 +6202,15 @@ #. SFvEw #: cui/uiconfig/ui/calloutpage.ui:144 -#, fuzzy msgctxt "calloutpage|lengthft" msgid "_Length:" -msgstr "אורך" +msgstr "_אורך:" #. Yb2kZ #: cui/uiconfig/ui/calloutpage.ui:162 -#, fuzzy msgctxt "calloutpage|optimal" msgid "_Optimal" -msgstr "מיטבי" +msgstr "מי_טבי" #. QEDdo #: cui/uiconfig/ui/calloutpage.ui:170 @@ -6258,10 +6220,9 @@ #. dD3os #: cui/uiconfig/ui/calloutpage.ui:190 -#, fuzzy msgctxt "calloutpage|positionft" msgid "_Position:" -msgstr "מיקום" +msgstr "מ_קום:" #. EXWoL #: cui/uiconfig/ui/calloutpage.ui:204 @@ -6319,10 +6280,9 @@ #. jG4AE #: cui/uiconfig/ui/calloutpage.ui:273 -#, fuzzy msgctxt "calloutpage|label1" msgid "_Spacing:" -msgstr "ריווח" +msgstr "_ריווח:" #. 9SDGt #: cui/uiconfig/ui/calloutpage.ui:294 @@ -6452,10 +6412,9 @@ #. pQLTe #: cui/uiconfig/ui/cellalignment.ui:294 -#, fuzzy msgctxt "cellalignment|LabelTxtDir" msgid "Te_xt direction:" -msgstr "_כיווניות טקסט" +msgstr "_כיווניות טקסט:" #. jDFtf #: cui/uiconfig/ui/cellalignment.ui:328 @@ -6473,19 +6432,19 @@ #: cui/uiconfig/ui/cellalignment.ui:377 msgctxt "cellalignment|labelHorzAlign" msgid "Hori_zontal:" -msgstr "" +msgstr "או_פקי:" #. Ck3KU #: cui/uiconfig/ui/cellalignment.ui:391 msgctxt "cellalignment|labelVertAlign" msgid "_Vertical:" -msgstr "" +msgstr "א_נכי:" #. mF2bB #: cui/uiconfig/ui/cellalignment.ui:405 msgctxt "cellalignment|labelIndent" msgid "I_ndent:" -msgstr "" +msgstr "ה_זחה:" #. FUsYk #: cui/uiconfig/ui/cellalignment.ui:420 @@ -6579,7 +6538,6 @@ #. FT9GJ #: cui/uiconfig/ui/cellalignment.ui:474 -#, fuzzy msgctxt "cellalignment|LabelTextAlig" msgid "Text Alignment" msgstr "יישור הטקסט" @@ -6709,7 +6667,7 @@ #: cui/uiconfig/ui/charnamepage.ui:233 msgctxt "charnamepage|west_features_button-cjk" msgid "Features..." -msgstr "" +msgstr "יכולות…" #. 67pMm #: cui/uiconfig/ui/charnamepage.ui:277 @@ -6751,7 +6709,7 @@ #: cui/uiconfig/ui/charnamepage.ui:464 msgctxt "charnamepage|east_features_button" msgid "Features..." -msgstr "" +msgstr "יכולות…" #. 53eGE #: cui/uiconfig/ui/charnamepage.ui:522 @@ -6799,7 +6757,7 @@ #: cui/uiconfig/ui/charnamepage.ui:730 msgctxt "charnamepage|ctl_features_button" msgid "Features..." -msgstr "" +msgstr "יכולות…" #. zCKxL #: cui/uiconfig/ui/charnamepage.ui:763 @@ -7057,19 +7015,19 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1086 msgctxt "colorconfigwin|values" msgid "Values" -msgstr "" +msgstr "ערכים" #. UfL75 #: cui/uiconfig/ui/colorconfigwin.ui:1118 msgctxt "colorconfigwin|formulas" msgid "Formulas" -msgstr "" +msgstr "נוסחאות" #. 9kx8m #: cui/uiconfig/ui/colorconfigwin.ui:1150 msgctxt "colorconfigwin|text" msgid "Text" -msgstr "" +msgstr "טקסט" #. ZCYmf #: cui/uiconfig/ui/colorconfigwin.ui:1182 @@ -7153,7 +7111,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1566 msgctxt "colorconfigwin|basic" msgid "Basic Syntax Highlighting" -msgstr "הבלטת תחביר בייסיק" +msgstr "הדגשת תחביר בייסיק" #. ERVJA #: cui/uiconfig/ui/colorconfigwin.ui:1618 @@ -7189,7 +7147,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1778 msgctxt "colorconfigwin|sqlparam" msgid "Parameter" -msgstr "פרמטר" +msgstr "משתנה" #. B7ubh #: cui/uiconfig/ui/colorconfigwin.ui:1810 @@ -7201,25 +7159,25 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1825 msgctxt "colorconfigwin|sql" msgid "SQL Syntax Highlighting" -msgstr "הבלטת תחביר SQL" +msgstr "הדגשת תחביר SQL" #. NcJi8 #: cui/uiconfig/ui/colorconfigwin.ui:1877 msgctxt "colorconfigwin|sgml" msgid "SGML syntax highlighting" -msgstr "הבלטת תחביר ‏‪SGML‏" +msgstr "הדגשת תחביר ‏‪SGML‏" #. uYB5C #: cui/uiconfig/ui/colorconfigwin.ui:1892 msgctxt "colorconfigwin|htmlcomment" msgid "Comment highlighting" -msgstr "הבלטת הערות" +msgstr "הדגשת הערות" #. 82UJf #: cui/uiconfig/ui/colorconfigwin.ui:1924 msgctxt "colorconfigwin|htmlkeyword" msgid "Keyword highlighting" -msgstr "הבלטת מילות מפתח" +msgstr "הדגשת מילות מפתח" #. otYwD #: cui/uiconfig/ui/colorconfigwin.ui:1956 @@ -7235,10 +7193,9 @@ #. ZFBK2 #: cui/uiconfig/ui/colorpage.ui:79 -#, fuzzy msgctxt "colorpage|label21" msgid "Palette:" -msgstr "לוחות צבעים" +msgstr "לוח צבעים:" #. 3L3VG #: cui/uiconfig/ui/colorpage.ui:107 @@ -7284,10 +7241,9 @@ #. 5jjvt #: cui/uiconfig/ui/colorpage.ui:302 -#, fuzzy msgctxt "colorpage|label1" msgid "Colors" -msgstr "צבע" +msgstr "צבעים" #. CvMfT #: cui/uiconfig/ui/colorpage.ui:357 @@ -7299,25 +7255,25 @@ #: cui/uiconfig/ui/colorpage.ui:392 msgctxt "colorpage|label7" msgid "B" -msgstr "" +msgstr "כ" #. DwaiD #: cui/uiconfig/ui/colorpage.ui:405 msgctxt "colorpage|label8" msgid "G" -msgstr "" +msgstr "י" #. hYiqy #: cui/uiconfig/ui/colorpage.ui:418 msgctxt "colorpage|label9" msgid "R" -msgstr "" +msgstr "א" #. MKq8c #: cui/uiconfig/ui/colorpage.ui:431 msgctxt "colorpage|label18" msgid "Hex" -msgstr "" +msgstr "הקס׳" #. nnSGG #: cui/uiconfig/ui/colorpage.ui:512 @@ -7395,7 +7351,7 @@ #: cui/uiconfig/ui/colorpage.ui:796 msgctxt "colorpage|label19" msgid "_Hex" -msgstr "" +msgstr "ה_קס׳" #. BAYSF #: cui/uiconfig/ui/colorpage.ui:840 @@ -7423,17 +7379,15 @@ #. WPVmD #: cui/uiconfig/ui/colorpage.ui:949 -#, fuzzy msgctxt "colorpage|edit" msgid "Pick" -msgstr "ורוד" +msgstr "בחירה" #. DpUCG #: cui/uiconfig/ui/colorpage.ui:970 -#, fuzzy msgctxt "colorpage|label6" msgid "New" -msgstr "_חדש" +msgstr "חדש" #. MnQ4Q #: cui/uiconfig/ui/colorpickerdialog.ui:60 @@ -7608,26 +7562,23 @@ #. Gw7rx #. This is the M of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model #: cui/uiconfig/ui/colorpickerdialog.ui:654 -#, fuzzy msgctxt "colorpickerdialog|label6" msgid "_Magenta:" -msgstr "אדום ארגמן" +msgstr "" #. Uv2KG #. This is the Y of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model #: cui/uiconfig/ui/colorpickerdialog.ui:669 -#, fuzzy msgctxt "colorpickerdialog|label7" msgid "_Yellow:" -msgstr "צהוב" +msgstr "_צהוב:" #. aFvbe #. This is the K of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model #: cui/uiconfig/ui/colorpickerdialog.ui:684 -#, fuzzy msgctxt "colorpickerdialog|label8" msgid "_Key:" -msgstr "מק_שים" +msgstr "מ_פתח:" #. bNiCN #: cui/uiconfig/ui/colorpickerdialog.ui:704 @@ -7721,10 +7672,9 @@ #. B73bz #: cui/uiconfig/ui/connectortabpage.ui:62 -#, fuzzy msgctxt "connectortabpage|FT_TYPE" msgid "_Type:" -msgstr "סוג" +msgstr "_סוג:" #. G63AW #: cui/uiconfig/ui/connectortabpage.ui:79 @@ -7734,24 +7684,21 @@ #. VnKTH #: cui/uiconfig/ui/connectortabpage.ui:115 -#, fuzzy msgctxt "connectortabpage|FT_LINE_1" msgid "Line _1:" -msgstr "קו _1" +msgstr "קו _1:" #. VHqZH #: cui/uiconfig/ui/connectortabpage.ui:129 -#, fuzzy msgctxt "connectortabpage|FT_LINE_2" msgid "Line _2:" -msgstr "קו _2" +msgstr "קו _2:" #. vx3j2 #: cui/uiconfig/ui/connectortabpage.ui:143 -#, fuzzy msgctxt "connectortabpage|FT_LINE_3" msgid "Line _3:" -msgstr "קו _3" +msgstr "קו _3:" #. vUAiW #: cui/uiconfig/ui/connectortabpage.ui:163 @@ -7907,7 +7854,7 @@ #: cui/uiconfig/ui/connpooloptions.ui:240 msgctxt "connpooloptions|pool" msgid "Pool" -msgstr "" +msgstr "מאגר" #. 7Svws #: cui/uiconfig/ui/connpooloptions.ui:253 @@ -7935,31 +7882,27 @@ #. JcdEh #: cui/uiconfig/ui/croppage.ui:121 -#, fuzzy msgctxt "croppage|label2" msgid "_Left:" -msgstr "לשמאל" +msgstr "_שמאל:" #. J8z8h #: cui/uiconfig/ui/croppage.ui:149 -#, fuzzy msgctxt "croppage|label3" msgid "_Right:" -msgstr "ימין" +msgstr "י_מין:" #. GxnM4 #: cui/uiconfig/ui/croppage.ui:190 -#, fuzzy msgctxt "croppage|label4" msgid "_Top:" -msgstr "מלמעלה" +msgstr "למ_עלה:" #. VAUDo #: cui/uiconfig/ui/croppage.ui:204 -#, fuzzy msgctxt "croppage|label5" msgid "_Bottom:" -msgstr "מלמטה" +msgstr "למ_טה:" #. BSBCG #: cui/uiconfig/ui/croppage.ui:303 @@ -7987,10 +7930,9 @@ #. JVnvr #: cui/uiconfig/ui/croppage.ui:419 -#, fuzzy msgctxt "croppage|label10" msgid "Scale" -msgstr "התאמת גודל" +msgstr "קנה מידה" #. Brcxv #: cui/uiconfig/ui/croppage.ui:450 @@ -8006,10 +7948,9 @@ #. aBkuE #: cui/uiconfig/ui/croppage.ui:508 -#, fuzzy msgctxt "croppage|label11" msgid "Image Size" -msgstr "גודל העמוד" +msgstr "גודל תמונה" #. AFMP6 #: cui/uiconfig/ui/cuiimapdlg.ui:8 @@ -8117,7 +8058,7 @@ #: cui/uiconfig/ui/customizedialog.ui:233 msgctxt "customizedialog|notebookbar" msgid "Notebookbar" -msgstr "" +msgstr "סרגל מחברת" #. CGNCy #: cui/uiconfig/ui/customizedialog.ui:281 @@ -8493,10 +8434,9 @@ #. XEUyG #: cui/uiconfig/ui/editmodulesdialog.ui:34 -#, fuzzy msgctxt "editmodulesdialog|EditModulesDialog" msgid "Edit Modules" -msgstr "מצבי עריכה" +msgstr "עריכת מודולים" #. hcGaw #: cui/uiconfig/ui/editmodulesdialog.ui:109 @@ -8506,10 +8446,9 @@ #. ibDJj #: cui/uiconfig/ui/editmodulesdialog.ui:131 -#, fuzzy msgctxt "editmodulesdialog|label2" msgid "Language:" -msgstr "_שפה:" +msgstr "שפה:" #. T7wyy #: cui/uiconfig/ui/editmodulesdialog.ui:163 @@ -8750,7 +8689,7 @@ #: cui/uiconfig/ui/effectspage.ui:291 msgctxt "effectspage|effectsft2" msgid "Effects" -msgstr "" +msgstr "אפקטים" #. FY52V #: cui/uiconfig/ui/effectspage.ui:324 @@ -8978,7 +8917,7 @@ #: cui/uiconfig/ui/effectspage.ui:634 msgctxt "effectspage|fonttransparencyft" msgid "_Transparency:" -msgstr "" +msgstr "_שקיפות:" #. vELSr #: cui/uiconfig/ui/effectspage.ui:672 @@ -9001,17 +8940,15 @@ #. uAQBB #: cui/uiconfig/ui/embossdialog.ui:134 -#, fuzzy msgctxt "embossdialog|label2" msgid "_Light source:" -msgstr "מ_קור תאורה" +msgstr "מ_קור תאורה:" #. GPyhz #: cui/uiconfig/ui/embossdialog.ui:186 -#, fuzzy msgctxt "embossdialog|label1" msgid "Parameters" -msgstr "פרמטר" +msgstr "משתנים" #. AuuQ6 #: cui/uiconfig/ui/embossdialog.ui:211 @@ -9023,19 +8960,19 @@ #: cui/uiconfig/ui/entrycontextmenu.ui:12 msgctxt "entrycontextmenu|remove" msgid "_Remove" -msgstr "" +msgstr "ה_סרה" #. ndcCo #: cui/uiconfig/ui/entrycontextmenu.ui:20 msgctxt "entrycontextmenu|rename" msgid "R_ename..." -msgstr "" +msgstr "_שינוי שם…" #. xuHT8 #: cui/uiconfig/ui/entrycontextmenu.ui:28 msgctxt "entrycontextmenu|add" msgid "_Add" -msgstr "" +msgstr "הו_ספה" #. vs8sL #: cui/uiconfig/ui/entrycontextmenu.ui:36 @@ -9057,10 +8994,9 @@ #. FoFqz #: cui/uiconfig/ui/eventassigndialog.ui:8 -#, fuzzy msgctxt "eventassigndialog|EventAssignDialog" msgid "Assign Macro" -msgstr "הקצאת מקרו..." +msgstr "הקצאת מאקרו" #. BgFFN #: cui/uiconfig/ui/eventassignpage.ui:79 @@ -9088,10 +9024,9 @@ #. dcPPB #: cui/uiconfig/ui/eventassignpage.ui:135 -#, fuzzy msgctxt "eventassignpage|assign" msgid "Assign" -msgstr "ה_קצאה" +msgstr "הקצאה" #. dMCaf #: cui/uiconfig/ui/eventassignpage.ui:143 @@ -9131,10 +9066,9 @@ #. d229E #: cui/uiconfig/ui/eventassignpage.ui:321 -#, fuzzy msgctxt "eventassignpage|existingmacrosft" msgid "Existing Macros" -msgstr "פקודות מאקרו קיימות:" +msgstr "תסריטי מאקרו קיימים" #. ZKRQr #: cui/uiconfig/ui/eventassignpage.ui:341 @@ -9144,17 +9078,15 @@ #. 83DK5 #: cui/uiconfig/ui/eventsconfigpage.ui:43 -#, fuzzy msgctxt "eventsconfigpage|label1" msgid "Assign:" -msgstr "ה_קצאה" +msgstr "הקצאה:" #. DBtDc #: cui/uiconfig/ui/eventsconfigpage.ui:62 -#, fuzzy msgctxt "eventsconfigpage|macro" msgid "M_acro..." -msgstr "מאקרו...‏" +msgstr "מא_קרו…" #. TqHir #: cui/uiconfig/ui/eventsconfigpage.ui:69 @@ -9176,10 +9108,9 @@ #. Ebcvv #: cui/uiconfig/ui/eventsconfigpage.ui:130 -#, fuzzy msgctxt "eventsconfigpage|label2" msgid "Save in:" -msgstr "_שמירה תחת" +msgstr "שמירה תחת:" #. AXbbm #: cui/uiconfig/ui/eventsconfigpage.ui:147 @@ -9297,10 +9228,9 @@ #. X9FQy #: cui/uiconfig/ui/fmsearchdialog.ui:234 -#, fuzzy msgctxt "fmsearchdialog|flSearchFor" msgid "_Search for" -msgstr "יש לחפש" +msgstr "חיפוש _אחר" #. PGaCY #: cui/uiconfig/ui/fmsearchdialog.ui:288 @@ -9334,10 +9264,9 @@ #. 64yD3 #: cui/uiconfig/ui/fmsearchdialog.ui:361 -#, fuzzy msgctxt "fmsearchdialog|ftForm" msgid "Form:" -msgstr "_ל־" +msgstr "טופס:" #. aCM9Q #: cui/uiconfig/ui/fmsearchdialog.ui:378 @@ -9353,10 +9282,9 @@ #. yqEse #: cui/uiconfig/ui/fmsearchdialog.ui:486 -#, fuzzy msgctxt "fmsearchdialog|ftPosition" msgid "_Position:" -msgstr "מיקום" +msgstr "מ_קום:" #. BLRj3 #: cui/uiconfig/ui/fmsearchdialog.ui:504 @@ -9426,10 +9354,9 @@ #. 6BpAF #: cui/uiconfig/ui/fmsearchdialog.ui:648 -#, fuzzy msgctxt "fmsearchdialog|cbCase" msgid "_Match case" -msgstr "התאמת רישיות" +msgstr "התאמת _רישיות" #. Gdo9i #: cui/uiconfig/ui/fmsearchdialog.ui:656 @@ -9439,10 +9366,9 @@ #. X5q2K #: cui/uiconfig/ui/fmsearchdialog.ui:667 -#, fuzzy msgctxt "fmsearchdialog|cbStartOver" msgid "Fr_om top" -msgstr "מלמעלה" +msgstr "מלמ_עלה" #. y83im #: cui/uiconfig/ui/fmsearchdialog.ui:675 @@ -9452,10 +9378,9 @@ #. WP3XA #: cui/uiconfig/ui/fmsearchdialog.ui:686 -#, fuzzy msgctxt "fmsearchdialog|cbRegular" msgid "_Regular expression" -msgstr "ביטויים רגולריים" +msgstr "_ביטוי רגולרי" #. 4uneg #: cui/uiconfig/ui/fmsearchdialog.ui:694 @@ -9539,7 +9464,7 @@ #: cui/uiconfig/ui/fontfeaturesdialog.ui:161 msgctxt "fontfeaturesdialog|preview-atkobject" msgid "Preview" -msgstr "" +msgstr "תצוגה מקדימה" #. hib9i #: cui/uiconfig/ui/fontfeaturesdialog.ui:195 @@ -9549,10 +9474,9 @@ #. CJQFA #: cui/uiconfig/ui/formatcellsdialog.ui:8 -#, fuzzy msgctxt "formatcellsdialog|FormatCellsDialog" msgid "Table Properties" -msgstr "מאפייני קו" +msgstr "מאפייני טבלה" #. aCkau #: cui/uiconfig/ui/formatcellsdialog.ui:138 @@ -9682,10 +9606,9 @@ #. 4Aw7C #: cui/uiconfig/ui/gallerygeneralpage.ui:59 -#, fuzzy msgctxt "gallerygeneralpage|label2" msgid "Type:" -msgstr "סוג" +msgstr "סוג:" #. EF8go #: cui/uiconfig/ui/gallerygeneralpage.ui:82 @@ -9695,10 +9618,9 @@ #. BEhhQ #: cui/uiconfig/ui/gallerygeneralpage.ui:94 -#, fuzzy msgctxt "gallerygeneralpage|label4" msgid "Contents:" -msgstr "תוכן עניינים" +msgstr "תכנים:" #. B2YS6 #: cui/uiconfig/ui/gallerygeneralpage.ui:153 @@ -9708,10 +9630,9 @@ #. US2Dq #: cui/uiconfig/ui/gallerysearchprogress.ui:8 -#, fuzzy msgctxt "gallerysearchprogress|GallerySearchProgress" msgid "Find" -msgstr "חיפוש" +msgstr "איתור" #. wvuEx #: cui/uiconfig/ui/gallerysearchprogress.ui:77 @@ -9764,10 +9685,9 @@ #. DBmvf #: cui/uiconfig/ui/gallerytitledialog.ui:86 -#, fuzzy msgctxt "gallerytitledialog|label2" msgid "Title:" -msgstr "_כותרת:" +msgstr "כותרת:" #. dMeZG #: cui/uiconfig/ui/galleryupdateprogress.ui:8 @@ -9807,17 +9727,15 @@ #. 7ipyi #: cui/uiconfig/ui/gradientpage.ui:160 -#, fuzzy msgctxt "gradientpage|label1" msgid "Gradient" msgstr "מדרג" #. GPnwG #: cui/uiconfig/ui/gradientpage.ui:203 -#, fuzzy msgctxt "gradientpage|typeft" msgid "_Type:" -msgstr "סוג" +msgstr "_סוג:" #. 8Qjgv #: cui/uiconfig/ui/gradientpage.ui:219 @@ -9859,26 +9777,25 @@ #: cui/uiconfig/ui/gradientpage.ui:228 msgctxt "gradientpage|extended_tip|gradienttypelb" msgid "Select the gradient that you want to apply." -msgstr "" +msgstr "נא לבחור את המדרג שברצונך להחיל." #. BBKZM #: cui/uiconfig/ui/gradientpage.ui:257 msgctxt "gradientpage|incrementft" msgid "Increment:" -msgstr "" +msgstr "הגדלה:" #. F5dVt #: cui/uiconfig/ui/gradientpage.ui:283 -#, fuzzy msgctxt "gradientpage|autoincrement" msgid "A_utomatic" -msgstr "אוטומטית" +msgstr "_אוטומטי" #. LAhqj #: cui/uiconfig/ui/gradientpage.ui:315 msgctxt "gradientpage|centerft" msgid "Center ( X / Y ):" -msgstr "" +msgstr "מרכז ( X / Y ):" #. mP62s #: cui/uiconfig/ui/gradientpage.ui:339 @@ -9913,10 +9830,9 @@ #. cGXmA #: cui/uiconfig/ui/gradientpage.ui:458 -#, fuzzy msgctxt "gradientpage|angleft" msgid "A_ngle:" -msgstr "זווית" +msgstr "_זווית:" #. fwB6f #: cui/uiconfig/ui/gradientpage.ui:477 @@ -9934,13 +9850,13 @@ #: cui/uiconfig/ui/gradientpage.ui:512 msgctxt "gradientpage|colortoft" msgid "_To Color:" -msgstr "" +msgstr "ל_צבע:" #. RnucA #: cui/uiconfig/ui/gradientpage.ui:536 msgctxt "gradientpage|extended_tip|colorfromlb" msgid "Select a color for the beginning point of the gradient." -msgstr "" +msgstr "נא לבחור צבע לנקודת ההתחלה של המדרג." #. B9z2L #: cui/uiconfig/ui/gradientpage.ui:553 @@ -9956,14 +9872,12 @@ #. RNhur #: cui/uiconfig/ui/gradientpage.ui:604 -#, fuzzy msgctxt "gradientpage|a11y_center_x" msgid "Center X" msgstr "מרכז X‏" #. qkLcz #: cui/uiconfig/ui/gradientpage.ui:618 -#, fuzzy msgctxt "gradientpage|a11y_center_y" msgid "Center Y" msgstr "מרכז Y‏" @@ -10008,19 +9922,19 @@ #: cui/uiconfig/ui/graphictestdlg.ui:7 msgctxt "graphictestdlg|GraphicTestsDialog" msgid "Run Graphics Tests" -msgstr "" +msgstr "הרצת בדיקות גרפיות" #. YaE3d #: cui/uiconfig/ui/graphictestdlg.ui:26 msgctxt "graphictestdlg|gptest_downld" msgid "Download Results" -msgstr "" +msgstr "הורדת תוצאות" #. RpYik #: cui/uiconfig/ui/graphictestdlg.ui:53 msgctxt "graphictestdlg|gptest_label" msgid "Helps to determine the efficiency of %PRODUCTNAME’s graphics rendering by running some tests under the hood and providing their results in the log." -msgstr "" +msgstr "מסייע בזיהוי יעילות יכולות העיבוד הגרפיות של %PRODUCTNAME על ידי הרצת בדיקות מתחת למכסה המנוע והעברת התוצאות שלהן ליומן התיעוד." #. D68dV #: cui/uiconfig/ui/graphictestdlg.ui:56 @@ -10102,10 +10016,9 @@ #. JQfs4 #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:168 -#, fuzzy msgctxt "hangulhanjaconversiondialog|find" msgid "_Find" -msgstr "חיפוש" +msgstr "_איתור" #. TqDEv #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:175 @@ -10115,24 +10028,21 @@ #. 3NS8C #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:195 -#, fuzzy msgctxt "hangulhanjaconversiondialog|label4" msgid "Suggestions" msgstr "הצעות" #. ECK62 #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:288 -#, fuzzy msgctxt "hangulhanjaconversiondialog|label5" msgid "Format" -msgstr "ת_בנית" +msgstr "תבנית" #. ZG2Bm #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306 -#, fuzzy msgctxt "hangulhanjaconversiondialog|simpleconversion" msgid "_Hangul/Hanja" -msgstr "הנגול/הנג׳ה" +msgstr "ה_נגול/הנג׳ה" #. tSGmu #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315 @@ -10142,10 +10052,9 @@ #. xwknP #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326 -#, fuzzy msgctxt "hangulhanjaconversiondialog|hangulbracket" msgid "Hanja (Han_gul)" -msgstr "הנג׳ה (הנגול)‏" +msgstr "הנג׳ה (הנ_גול)‏" #. cGuoW #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335 @@ -10155,10 +10064,9 @@ #. 6guxd #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346 -#, fuzzy msgctxt "hangulhanjaconversiondialog|hanjabracket" msgid "Hang_ul (Hanja)" -msgstr "הנגול (הנג׳ה)‏" +msgstr "ה_נגול (הנג׳ה)‏" #. Sefus #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355 @@ -10216,17 +10124,15 @@ #. 6CDaz #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572 -#, fuzzy msgctxt "hangulhanjaconversiondialog|label6" msgid "Conversion" msgstr "המרה" #. mctf7 #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589 -#, fuzzy msgctxt "hangulhanjaconversiondialog|hangulonly" msgid "Hangul _only" -msgstr "הנגול בלבד" +msgstr "הנ_גול בלבד" #. 45H2A #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597 @@ -10236,10 +10142,9 @@ #. r3HDY #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609 -#, fuzzy msgctxt "hangulhanjaconversiondialog|hanjaonly" msgid "Hanja onl_y" -msgstr "הנג׳ה בלבד" +msgstr "ה_נג׳ה בלבד" #. Fi82M #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617 @@ -10249,10 +10154,9 @@ #. db8Nj #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650 -#, fuzzy msgctxt "hangulhanjaconversiondialog|ignore" msgid "_Ignore" -msgstr "התעלמות" +msgstr "הת_עלמות" #. 3mrTE #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659 @@ -10262,10 +10166,9 @@ #. QTqcN #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671 -#, fuzzy msgctxt "hangulhanjaconversiondialog|ignoreall" msgid "Always I_gnore" -msgstr "להתעלם ת~מיד" +msgstr "התעלמות ל_תמיד" #. HBgLV #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678 @@ -10287,10 +10190,9 @@ #. DwnC2 #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709 -#, fuzzy msgctxt "hangulhanjaconversiondialog|replaceall" msgid "Always R_eplace" -msgstr "החלפה תמי~ד" +msgstr "ה_חלפה תמיד" #. 9itJD #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716 @@ -10300,10 +10202,9 @@ #. 7eniE #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728 -#, fuzzy msgctxt "hangulhanjaconversiondialog|replacebychar" msgid "Replace b_y character" -msgstr "החלפה בתו" +msgstr "החלפה ב_תו" #. F2QEt #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736 @@ -10315,7 +10216,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748 msgctxt "hangulhanjaconversiondialog|options" msgid "Options..." -msgstr "" +msgstr "אפשרויות…" #. GVqQg #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754 @@ -10397,7 +10298,6 @@ #. ZiDNN #: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:351 -#, fuzzy msgctxt "hangulhanjaeditdictdialog|label3" msgid "Suggestions" msgstr "הצעות" @@ -10410,10 +10310,9 @@ #. TLs2q #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:122 -#, fuzzy msgctxt "hangulhanjaoptdialog|new" msgid "New..." -msgstr "חדש..." +msgstr "חדש…" #. hNjua #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:129 @@ -10423,10 +10322,9 @@ #. UbGjT #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:141 -#, fuzzy msgctxt "hangulhanjaoptdialog|edit" msgid "Edit..." -msgstr "_עריכה…" +msgstr "עריכה…" #. NKvWY #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:147 @@ -10448,10 +10346,9 @@ #. DmfuX #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:248 -#, fuzzy msgctxt "hangulhanjaoptdialog|label1" msgid "User-defined Dictionaries" -msgstr "מילונים בה_גדרת המשתמש" +msgstr "מילונים בהגדרת המשתמש" #. DEoRc #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:276 @@ -10522,10 +10419,9 @@ #. HNCBu #: cui/uiconfig/ui/hatchpage.ui:163 -#, fuzzy msgctxt "hatchpage|distanceft" msgid "_Spacing:" -msgstr "ריווח" +msgstr "_ריווח:" #. 5Psyb #: cui/uiconfig/ui/hatchpage.ui:182 @@ -10535,10 +10431,9 @@ #. spGWy #: cui/uiconfig/ui/hatchpage.ui:196 -#, fuzzy msgctxt "hatchpage|angleft" msgid "A_ngle:" -msgstr "זווית" +msgstr "_זווית:" #. UBmvt #: cui/uiconfig/ui/hatchpage.ui:234 @@ -10578,10 +10473,9 @@ #. VyTto #: cui/uiconfig/ui/hatchpage.ui:291 -#, fuzzy msgctxt "hatchpage|linecolorft" msgid "Line _color:" -msgstr "צבע קו" +msgstr "_צבע קו:" #. AwxCA #: cui/uiconfig/ui/hatchpage.ui:316 @@ -10735,21 +10629,18 @@ #. pedja #: cui/uiconfig/ui/hyperlinkdocpage.ui:137 -#, fuzzy msgctxt "hyperlinkdocpage|target_label" msgid "Targ_et:" -msgstr "יעד" +msgstr "י_עד:" #. hUini #: cui/uiconfig/ui/hyperlinkdocpage.ui:152 -#, fuzzy msgctxt "hyperlinkdocpage|url_label" msgid "URL:" -msgstr "_כתובת" +msgstr "כתובת:" #. zH7Fk #: cui/uiconfig/ui/hyperlinkdocpage.ui:166 -#, fuzzy msgctxt "hyperlinkdocpage|browse|tooltip_text" msgid "Target in Document" msgstr "יעד במסמך" @@ -10768,35 +10659,30 @@ #. oUByt #: cui/uiconfig/ui/hyperlinkdocpage.ui:203 -#, fuzzy msgctxt "hyperlinkdocpage|url" msgid "Test text" msgstr "טקסט בדיקה" #. 8Gbv5 #: cui/uiconfig/ui/hyperlinkdocpage.ui:219 -#, fuzzy msgctxt "hyperlinkdocpage|label3" msgid "Target in Document" msgstr "יעד במסמך" #. VQxYG #: cui/uiconfig/ui/hyperlinkdocpage.ui:255 -#, fuzzy msgctxt "hyperlinkdocpage|frame_label" msgid "F_rame:" -msgstr "מ_סגרת" +msgstr "מ_סגרת:" #. cFnPM #: cui/uiconfig/ui/hyperlinkdocpage.ui:270 -#, fuzzy msgctxt "hyperlinkdocpage|indication_label" msgid "Te_xt:" -msgstr "טקסט:" +msgstr "ט_קסט:" #. o2Fic #: cui/uiconfig/ui/hyperlinkdocpage.ui:285 -#, fuzzy msgctxt "hyperlinkdocpage|name_label" msgid "N_ame:" msgstr "_שם:" @@ -10815,10 +10701,9 @@ #. y3amv #: cui/uiconfig/ui/hyperlinkdocpage.ui:341 -#, fuzzy msgctxt "hyperlinkdocpage|form_label" msgid "F_orm:" -msgstr "_ל־" +msgstr "_טופס:" #. 6TBzX #: cui/uiconfig/ui/hyperlinkdocpage.ui:358 @@ -10846,7 +10731,6 @@ #. frjow #: cui/uiconfig/ui/hyperlinkdocpage.ui:412 -#, fuzzy msgctxt "hyperlinkdocpage|label1" msgid "Further Settings" msgstr "הגדרות נוספות" @@ -10885,17 +10769,15 @@ #. qgyrE #: cui/uiconfig/ui/hyperlinkinternetpage.ui:87 -#, fuzzy msgctxt "hyperlinkinternetpage|target_label" msgid "_URL:" -msgstr "_כתובת" +msgstr "_כתובת:" #. YLtwS #: cui/uiconfig/ui/hyperlinkinternetpage.ui:102 -#, fuzzy msgctxt "hyperlinkinternetpage|login_label" msgid "_Login name:" -msgstr "שם ~כניסה למערכת" +msgstr "שם _כניסה למערכת:" #. GGnn8 #: cui/uiconfig/ui/hyperlinkinternetpage.ui:117 @@ -10917,10 +10799,9 @@ #. HHhGY #: cui/uiconfig/ui/hyperlinkinternetpage.ui:165 -#, fuzzy msgctxt "hyperlinkinternetpage|anonymous" msgid "Anonymous _user" -msgstr "משתמש אנונימי" +msgstr "משתמש _אלמוני" #. Ttx68 #: cui/uiconfig/ui/hyperlinkinternetpage.ui:173 @@ -10936,10 +10817,9 @@ #. XhMm4 #: cui/uiconfig/ui/hyperlinkinternetpage.ui:210 -#, fuzzy msgctxt "hyperlinkinternetpage|indication_label" msgid "Te_xt:" -msgstr "טקסט:" +msgstr "_טקסט:" #. fFLgD #: cui/uiconfig/ui/hyperlinkinternetpage.ui:228 @@ -10951,7 +10831,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:242 msgctxt "hyperlinkinternetpage|protocol_label" msgid "Proto_col:" -msgstr "" +msgstr "_פרוטוקול:" #. MoZP7 #: cui/uiconfig/ui/hyperlinkinternetpage.ui:261 @@ -10961,10 +10841,9 @@ #. x4GDd #: cui/uiconfig/ui/hyperlinkinternetpage.ui:297 -#, fuzzy msgctxt "hyperlinkinternetpage|frame_label" msgid "F_rame:" -msgstr "מ_סגרת" +msgstr "מ_סגרת:" #. aFZx3 #: cui/uiconfig/ui/hyperlinkinternetpage.ui:312 @@ -10980,10 +10859,9 @@ #. UG2wE #: cui/uiconfig/ui/hyperlinkinternetpage.ui:351 -#, fuzzy msgctxt "hyperlinkinternetpage|form_label" msgid "F_orm:" -msgstr "_ל־" +msgstr "_טופס:" #. QPMun #: cui/uiconfig/ui/hyperlinkinternetpage.ui:368 @@ -11024,10 +10902,9 @@ #. GKAsu #: cui/uiconfig/ui/hyperlinkmailpage.ui:40 -#, fuzzy msgctxt "hyperlinkmailpage|receiver_label" msgid "Re_cipient:" -msgstr "~נמען" +msgstr "_נמען:" #. 3Q6NE #: cui/uiconfig/ui/hyperlinkmailpage.ui:55 @@ -11043,10 +10920,9 @@ #. NJi4c #: cui/uiconfig/ui/hyperlinkmailpage.ui:74 -#, fuzzy msgctxt "hyperlinkmailpage|subject_label" msgid "_Subject:" -msgstr "נושא:" +msgstr "נו_שא:" #. hseLC #: cui/uiconfig/ui/hyperlinkmailpage.ui:93 @@ -11068,21 +10944,18 @@ #. Rx7bX #: cui/uiconfig/ui/hyperlinkmailpage.ui:180 -#, fuzzy msgctxt "hyperlinkmailpage|frame_label" msgid "F_rame:" -msgstr "מ_סגרת" +msgstr "מ_סגרת:" #. E6CWA #: cui/uiconfig/ui/hyperlinkmailpage.ui:195 -#, fuzzy msgctxt "hyperlinkmailpage|indication_label" msgid "Te_xt:" -msgstr "טקסט:" +msgstr "_טקסט:" #. BjAaB #: cui/uiconfig/ui/hyperlinkmailpage.ui:210 -#, fuzzy msgctxt "hyperlinkmailpage|name_label" msgid "N_ame:" msgstr "_שם:" @@ -11101,10 +10974,9 @@ #. zkpdN #: cui/uiconfig/ui/hyperlinkmailpage.ui:266 -#, fuzzy msgctxt "hyperlinkmailpage|form_label" msgid "F_orm:" -msgstr "_ל־" +msgstr "_טופס:" #. ckEPR #: cui/uiconfig/ui/hyperlinkmailpage.ui:283 @@ -11132,7 +11004,6 @@ #. BmHDh #: cui/uiconfig/ui/hyperlinkmailpage.ui:337 -#, fuzzy msgctxt "hyperlinkmailpage|label1" msgid "Further Settings" msgstr "הגדרות נוספות" @@ -11145,7 +11016,6 @@ #. FiqBU #: cui/uiconfig/ui/hyperlinkmarkdialog.ui:18 -#, fuzzy msgctxt "hyperlinkmarkdialog|HyperlinkMark" msgid "Target in Document" msgstr "יעד במסמך" @@ -11183,10 +11053,9 @@ #. tHygQ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:54 -#, fuzzy msgctxt "hyperlinknewdocpage|editnow" msgid "Edit _now" -msgstr "עריכה ע~כשיו" +msgstr "עריכה ע_כשיו" #. DENWb #: cui/uiconfig/ui/hyperlinknewdocpage.ui:63 @@ -11196,10 +11065,9 @@ #. YAeDk #: cui/uiconfig/ui/hyperlinknewdocpage.ui:74 -#, fuzzy msgctxt "hyperlinknewdocpage|editlater" msgid "Edit _later" -msgstr "עריכה מ~אוחר יותר" +msgstr "עריכה מ_אוחר יותר" #. CD5y6 #: cui/uiconfig/ui/hyperlinknewdocpage.ui:83 @@ -11245,28 +11113,24 @@ #. 9TYuE #: cui/uiconfig/ui/hyperlinknewdocpage.ui:229 -#, fuzzy msgctxt "hyperlinknewdocpage|label2" msgid "New Document" -msgstr "מסמך טקסט" +msgstr "מסמך חדש" #. uChAF #: cui/uiconfig/ui/hyperlinknewdocpage.ui:265 -#, fuzzy msgctxt "hyperlinknewdocpage|frame_label" msgid "F_rame:" -msgstr "מ_סגרת" +msgstr "מ_סגרת:" #. NG5VC #: cui/uiconfig/ui/hyperlinknewdocpage.ui:280 -#, fuzzy msgctxt "hyperlinknewdocpage|indication_label" msgid "Te_xt:" -msgstr "טקסט:" +msgstr "_טקסט:" #. SVEq9 #: cui/uiconfig/ui/hyperlinknewdocpage.ui:295 -#, fuzzy msgctxt "hyperlinknewdocpage|name_label" msgid "N_ame:" msgstr "_שם:" @@ -11285,10 +11149,9 @@ #. cSknQ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:351 -#, fuzzy msgctxt "hyperlinknewdocpage|form_label" msgid "F_orm:" -msgstr "_ל־" +msgstr "_טופס:" #. fARTX #: cui/uiconfig/ui/hyperlinknewdocpage.ui:367 @@ -11316,7 +11179,6 @@ #. MS2Cn #: cui/uiconfig/ui/hyperlinknewdocpage.ui:421 -#, fuzzy msgctxt "hyperlinknewdocpage|label1" msgid "Further Settings" msgstr "הגדרות נוספות" @@ -11371,10 +11233,9 @@ #. dsjvf #: cui/uiconfig/ui/hyphenate.ui:166 -#, fuzzy msgctxt "hyphenate|label1" msgid "Word:" -msgstr "מילה" +msgstr "מילה:" #. fvcRg #: cui/uiconfig/ui/hyphenate.ui:196 @@ -11402,35 +11263,31 @@ #. HGCp4 #: cui/uiconfig/ui/iconchangedialog.ui:62 -#, fuzzy msgctxt "iconchangedialog|label1" msgid "" "The files listed below could not be imported.\n" "The file format could not be interpreted." msgstr "" -"לא ניתן לייבא את הקבצים הרשומים מטה.\n" -"פורמט הקבצים אינו מזוהה." +"לא ניתן לייבא את הקבצים שלהלן.\n" +"סוג הקבצים אינו מזוהה." #. NA8j5 #: cui/uiconfig/ui/iconselectordialog.ui:10 -#, fuzzy msgctxt "iconselectordialog|IconSelector" msgid "Change Icon" -msgstr "שינוי צלמית" +msgstr "החלפת סמל" #. qZXP7 #: cui/uiconfig/ui/iconselectordialog.ui:138 -#, fuzzy msgctxt "iconselectordialog|label1" msgid "_Icons" -msgstr "צלמיות" +msgstr "_סמלים" #. ZyFG4 #: cui/uiconfig/ui/iconselectordialog.ui:161 -#, fuzzy msgctxt "iconselectordialog|importButton" msgid "I_mport..." -msgstr "יבוא...‏" +msgstr "יי_בוא…" #. pMDQA #: cui/uiconfig/ui/iconselectordialog.ui:168 @@ -11440,10 +11297,9 @@ #. 46d7Z #: cui/uiconfig/ui/iconselectordialog.ui:180 -#, fuzzy msgctxt "iconselectordialog|deleteButton" msgid "_Delete..." -msgstr "מחיקה..." +msgstr "מ_חיקה…" #. MEMzu #: cui/uiconfig/ui/iconselectordialog.ui:187 @@ -11669,17 +11525,15 @@ #. 6Zg6E #: cui/uiconfig/ui/insertfloatingframe.ui:143 -#, fuzzy msgctxt "insertfloatingframe|label6" msgid "Name:" -msgstr "_שם:" +msgstr "שם:" #. QFERc #: cui/uiconfig/ui/insertfloatingframe.ui:156 -#, fuzzy msgctxt "insertfloatingframe|label7" msgid "Contents:" -msgstr "תוכן עניינים" +msgstr "תכנים:" #. ExCGU #: cui/uiconfig/ui/insertfloatingframe.ui:165 @@ -11767,17 +11621,15 @@ #. RAz7e #: cui/uiconfig/ui/insertfloatingframe.ui:387 -#, fuzzy msgctxt "insertfloatingframe|widthlabel" msgid "Width:" -msgstr "רוחב" +msgstr "רוחב:" #. DMLy9 #: cui/uiconfig/ui/insertfloatingframe.ui:400 -#, fuzzy msgctxt "insertfloatingframe|heightlabel" msgid "Height:" -msgstr "גובה" +msgstr "גובה:" #. ieZRs #: cui/uiconfig/ui/insertfloatingframe.ui:418 @@ -11819,7 +11671,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:490 msgctxt "insertfloatingframe|label3" msgid "Padding" -msgstr "" +msgstr "ריפוד" #. Ehuh3 #: cui/uiconfig/ui/insertfloatingframe.ui:530 @@ -11847,17 +11699,15 @@ #. JcNDd #: cui/uiconfig/ui/insertoleobject.ui:186 -#, fuzzy msgctxt "insertoleobject|label1" msgid "Object Type" msgstr "סוג עצם" #. GYhtz #: cui/uiconfig/ui/insertoleobject.ui:230 -#, fuzzy msgctxt "insertoleobject|urlbtn" msgid "Search…" -msgstr "חיפוש" +msgstr "חיפוש…" #. PL3Eq #: cui/uiconfig/ui/insertoleobject.ui:243 @@ -12041,10 +11891,9 @@ #. F3A9L #: cui/uiconfig/ui/javastartparametersdialog.ui:204 -#, fuzzy msgctxt "javastartparametersdialog|assignbtn" msgid "_Add" -msgstr "הוספה" +msgstr "הו_ספה" #. 5DJCP #: cui/uiconfig/ui/javastartparametersdialog.ui:211 @@ -12054,10 +11903,9 @@ #. sNSWD #: cui/uiconfig/ui/javastartparametersdialog.ui:228 -#, fuzzy msgctxt "javastartparametersdialog|editbtn" msgid "_Edit" -msgstr "עריכה" +msgstr "ע_ריכה" #. 5FP58 #: cui/uiconfig/ui/javastartparametersdialog.ui:236 @@ -12087,7 +11935,7 @@ #: cui/uiconfig/ui/langtoolconfigpage.ui:39 msgctxt "langtoolconfigpage|policy" msgid "Please read the privacy policy" -msgstr "" +msgstr "נא לקרוא את מדיניות הפרטיות" #. ZRJcn #: cui/uiconfig/ui/langtoolconfigpage.ui:55 @@ -12181,10 +12029,9 @@ #. iGG25 #: cui/uiconfig/ui/lineendstabpage.ui:80 -#, fuzzy msgctxt "lineendstabpage|FT_LINE_END_STYLE" msgid "Arrow _style:" -msgstr "סגנונות חצים" +msgstr "סגנון _חץ:" #. EypwS #: cui/uiconfig/ui/lineendstabpage.ui:148 @@ -12236,10 +12083,9 @@ #. F3Hkn #: cui/uiconfig/ui/linestyletabpage.ui:99 -#, fuzzy msgctxt "linestyletabpage|FT_TYPE" msgid "_Type:" -msgstr "סוג" +msgstr "_סוג:" #. FELjh #: cui/uiconfig/ui/linestyletabpage.ui:113 @@ -12249,17 +12095,15 @@ #. ApA5k #: cui/uiconfig/ui/linestyletabpage.ui:127 -#, fuzzy msgctxt "linestyletabpage|FT_LENGTH" msgid "_Length:" -msgstr "אורך" +msgstr "_אורך:" #. UyY5P #: cui/uiconfig/ui/linestyletabpage.ui:141 -#, fuzzy msgctxt "linestyletabpage|FT_DISTANCE" msgid "_Spacing:" -msgstr "ריווח" +msgstr "_ריווח:" #. LyV8a #: cui/uiconfig/ui/linestyletabpage.ui:157 @@ -12283,10 +12127,9 @@ #. rBY7A #: cui/uiconfig/ui/linestyletabpage.ui:268 -#, fuzzy msgctxt "linestyletabpage|FT_LINESTYLE" msgid "Line _style:" -msgstr "סגנונות קווים" +msgstr "סגנון _קו:" #. MAsFg #: cui/uiconfig/ui/linestyletabpage.ui:345 @@ -12326,10 +12169,9 @@ #. 2q5YF #: cui/uiconfig/ui/linetabpage.ui:86 -#, fuzzy msgctxt "linetabpage|menuitem2" msgid "_Automatic" -msgstr "אוטומטי" +msgstr "_אוטומטי" #. WA9YD #: cui/uiconfig/ui/linetabpage.ui:94 @@ -12345,10 +12187,9 @@ #. EvAFu #: cui/uiconfig/ui/linetabpage.ui:116 -#, fuzzy msgctxt "linetabpage|menuitem5" msgid "_Symbols" -msgstr "סמלים" +msgstr "_סימנים" #. vFEBA #: cui/uiconfig/ui/linetabpage.ui:165 @@ -12376,7 +12217,6 @@ #. 6TFWn #: cui/uiconfig/ui/linetabpage.ui:343 -#, fuzzy msgctxt "linetabpage|label1" msgid "Line Properties" msgstr "מאפייני קו" @@ -12389,17 +12229,15 @@ #. aZYyn #: cui/uiconfig/ui/linetabpage.ui:430 -#, fuzzy msgctxt "linetabpage|TSB_CENTER_START" msgid "Ce_nter" -msgstr "מרכז" +msgstr "מ_רכז" #. 5RYtu #: cui/uiconfig/ui/linetabpage.ui:448 -#, fuzzy msgctxt "linetabpage|FT_LINE_START_WIDTH" msgid "Wi_dth:" -msgstr "רוחב" +msgstr "_רוחב:" #. pQfyE #: cui/uiconfig/ui/linetabpage.ui:474 @@ -12415,17 +12253,15 @@ #. zm8Ga #: cui/uiconfig/ui/linetabpage.ui:564 -#, fuzzy msgctxt "linetabpage|FT_LINE_END_WIDTH" msgid "W_idth:" -msgstr "רוחב" +msgstr "_רוחב:" #. g2gLY #: cui/uiconfig/ui/linetabpage.ui:590 -#, fuzzy msgctxt "linetabpage|TSB_CENTER_END" msgid "C_enter" -msgstr "מרכז" +msgstr "מ_רכז:" #. sged5 #: cui/uiconfig/ui/linetabpage.ui:634 @@ -12447,7 +12283,6 @@ #. Qx3Ur #: cui/uiconfig/ui/linetabpage.ui:695 -#, fuzzy msgctxt "linetabpage|liststoreEDGE_STYLE" msgid "Rounded" msgstr "מעוגל" @@ -12478,10 +12313,9 @@ #. GqrYS #: cui/uiconfig/ui/linetabpage.ui:712 -#, fuzzy msgctxt "linetabpage|liststoreCAP_STYLE" msgid "Round" -msgstr "עיגול" +msgstr "עגול" #. 3hNSB #: cui/uiconfig/ui/linetabpage.ui:713 @@ -12503,24 +12337,21 @@ #. LaBcU #: cui/uiconfig/ui/linetabpage.ui:784 -#, fuzzy msgctxt "linetabpage|FT_SYMBOL_WIDTH" msgid "Widt_h:" -msgstr "רוחב" +msgstr "_רוחב:" #. yhVmm #: cui/uiconfig/ui/linetabpage.ui:809 -#, fuzzy msgctxt "linetabpage|CB_SYMBOL_RATIO" msgid "_Keep ratio" -msgstr "שמירת יחס" +msgstr "שמירת י_חס" #. oV6GJ #: cui/uiconfig/ui/linetabpage.ui:827 -#, fuzzy msgctxt "linetabpage|FT_SYMBOL_HEIGHT" msgid "Hei_ght:" -msgstr "גובה" +msgstr "_גובה:" #. 9eaQs #: cui/uiconfig/ui/linetabpage.ui:863 @@ -12572,10 +12403,9 @@ #. YG6nV #: cui/uiconfig/ui/macroassignpage.ui:134 -#, fuzzy msgctxt "macroassignpage|assign" msgid "M_acro..." -msgstr "מאקרו...‏" +msgstr "_מאקרו…" #. ECTjc #: cui/uiconfig/ui/macroassignpage.ui:141 @@ -12587,7 +12417,7 @@ #: cui/uiconfig/ui/macroassignpage.ui:153 msgctxt "macroassignpage|component" msgid "Com_ponent..." -msgstr "" +msgstr "_רכיב…" #. UNHTV #: cui/uiconfig/ui/macroassignpage.ui:167 @@ -12603,10 +12433,9 @@ #. CqT9E #: cui/uiconfig/ui/macroassignpage.ui:190 -#, fuzzy msgctxt "macroassignpage|label1" msgid "Assign" -msgstr "ה_קצאה" +msgstr "הקצאה" #. v49A4 #: cui/uiconfig/ui/macroassignpage.ui:204 @@ -12634,7 +12463,6 @@ #. QvKmS #: cui/uiconfig/ui/macroselectordialog.ui:230 -#, fuzzy msgctxt "macroselectordialog|macronameft" msgid "Macro Name" msgstr "שם המאקרו" @@ -12647,10 +12475,9 @@ #. YTX8B #: cui/uiconfig/ui/menuassignpage.ui:46 -#, fuzzy msgctxt "menuassignpage|insertseparator" msgid "Insert Separator" -msgstr "מפריד ערכים" +msgstr "הוספת מפריד" #. RNPyo #: cui/uiconfig/ui/menuassignpage.ui:54 @@ -12662,25 +12489,25 @@ #: cui/uiconfig/ui/menuassignpage.ui:104 cui/uiconfig/ui/menuassignpage.ui:176 msgctxt "menuassignpage|gear_add" msgid "_Add..." -msgstr "" +msgstr "הו_ספה…" #. ekuNo #: cui/uiconfig/ui/menuassignpage.ui:112 cui/uiconfig/ui/menuassignpage.ui:184 msgctxt "menuassignpage|gear_delete" msgid "_Delete" -msgstr "" +msgstr "מ_חיקה" #. iRLgG #: cui/uiconfig/ui/menuassignpage.ui:120 cui/uiconfig/ui/menuassignpage.ui:192 msgctxt "menuassignpage|gear_rename" msgid "_Rename..." -msgstr "" +msgstr "_שינוי שם…" #. rE3BD #: cui/uiconfig/ui/menuassignpage.ui:128 cui/uiconfig/ui/menuassignpage.ui:200 msgctxt "menuassignpage|gear_move" msgid "_Move..." -msgstr "" +msgstr "ה_עברה…" #. iNnSq #: cui/uiconfig/ui/menuassignpage.ui:140 @@ -12690,17 +12517,15 @@ #. vtxfm #: cui/uiconfig/ui/menuassignpage.ui:148 -#, fuzzy msgctxt "menuassignpage|changeIcon" msgid "Change Icon..." -msgstr "החלפת צלמית...‏" +msgstr "החלפת סמל…" #. pisMz #: cui/uiconfig/ui/menuassignpage.ui:156 -#, fuzzy msgctxt "menuassignpage|resetIcon" msgid "Reset Icon" -msgstr "איפוס צלמית" +msgstr "איפוס סמל" #. ooFCE #: cui/uiconfig/ui/menuassignpage.ui:164 @@ -12748,7 +12573,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:305 msgctxt "menuassignpage|label33" msgid "D_escription" -msgstr "" +msgstr "_תיאור" #. KXCzA #: cui/uiconfig/ui/menuassignpage.ui:355 @@ -12770,10 +12595,9 @@ #. ZrMmi #: cui/uiconfig/ui/menuassignpage.ui:403 -#, fuzzy msgctxt "menuassignpage|contentslabel" msgid "Categor_y" -msgstr "קטגוריה" +msgstr "_קטגוריה" #. trbSd #: cui/uiconfig/ui/menuassignpage.ui:417 @@ -12855,7 +12679,6 @@ #. B32nz #: cui/uiconfig/ui/menuassignpage.ui:781 -#, fuzzy msgctxt "menuassignpage|add" msgid "Add item" msgstr "הוספת פריט" @@ -12912,7 +12735,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:913 msgctxt "menuassignpage|targetlabel" msgid "_Target" -msgstr "" +msgstr "י_עד" #. cZEBZ #: cui/uiconfig/ui/menuassignpage.ui:926 @@ -12924,7 +12747,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:939 msgctxt "menuassignpage|customizelabel" msgid "_Customize" -msgstr "" +msgstr "התאמה _אישית" #. w3brP #: cui/uiconfig/ui/menuassignpage.ui:998 @@ -12954,7 +12777,7 @@ #: cui/uiconfig/ui/mosaicdialog.ui:197 msgctxt "mosaicdialog|height" msgid "2" -msgstr "" +msgstr "2" #. zq4c3 #: cui/uiconfig/ui/mosaicdialog.ui:203 @@ -12982,10 +12805,9 @@ #. LKQEa #: cui/uiconfig/ui/mosaicdialog.ui:263 -#, fuzzy msgctxt "mosaicdialog|label1" msgid "Parameters" -msgstr "פרמטר" +msgstr "משתנים" #. LGB8f #: cui/uiconfig/ui/mosaicdialog.ui:288 @@ -13001,10 +12823,9 @@ #. kJERC #: cui/uiconfig/ui/movemenu.ui:110 -#, fuzzy msgctxt "movemenu|menunameft" msgid "Menu name:" -msgstr "שם התפריט" +msgstr "שם התפריט:" #. Dzrz4 #: cui/uiconfig/ui/movemenu.ui:130 @@ -13014,10 +12835,9 @@ #. YV2LE #: cui/uiconfig/ui/movemenu.ui:159 -#, fuzzy msgctxt "movemenu|label1" msgid "Menu _position:" -msgstr "מי_קום התפריט:" +msgstr "מ_קום התפריט:" #. HZFF5 #: cui/uiconfig/ui/movemenu.ui:232 @@ -13039,10 +12859,9 @@ #. qoE4K #: cui/uiconfig/ui/multipathdialog.ui:22 -#, fuzzy msgctxt "multipathdialog|MultiPathDialog" msgid "Select Paths" -msgstr "בחירת נתיב" +msgstr "בחירת נתיבים" #. xFCHr #: cui/uiconfig/ui/multipathdialog.ui:45 @@ -13160,17 +12979,15 @@ #. KyP6r #: cui/uiconfig/ui/newtoolbardialog.ui:97 -#, fuzzy msgctxt "newtoolbardialog|label1" msgid "_Toolbar name:" -msgstr "_שם סרגל הכלים" +msgstr "_שם סרגל הכלים:" #. keChx #: cui/uiconfig/ui/newtoolbardialog.ui:139 -#, fuzzy msgctxt "newtoolbardialog|label2" msgid "_Save in:" -msgstr "_שמירה תחת" +msgstr "_שמירה תחת:" #. BGmuQ #: cui/uiconfig/ui/numberingformatpage.ui:87 @@ -13218,7 +13035,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:172 msgctxt "numberingformatpage|commented|tooltip_text" msgid "Comment" -msgstr "" +msgstr "הערה" #. EF7pt #: cui/uiconfig/ui/numberingformatpage.ui:176 @@ -13252,10 +13069,9 @@ #. ZiPyf #: cui/uiconfig/ui/numberingformatpage.ui:299 -#, fuzzy msgctxt "numberingformatpage|decimalsft" msgid "_Decimal places:" -msgstr "מקומות עשרוניים" +msgstr "מקומות _עשרוניים:" #. jQQZk #: cui/uiconfig/ui/numberingformatpage.ui:313 @@ -13265,10 +13081,9 @@ #. EXEbk #: cui/uiconfig/ui/numberingformatpage.ui:334 -#, fuzzy msgctxt "numberingformatpage|leadzerosft" msgid "Leading _zeroes:" -msgstr "אפסים לפני" +msgstr "אפסים מו_בילים:" #. BRPVs #: cui/uiconfig/ui/numberingformatpage.ui:346 @@ -13284,10 +13099,9 @@ #. 9DhkC #: cui/uiconfig/ui/numberingformatpage.ui:372 -#, fuzzy msgctxt "numberingformatpage|engineering" msgid "_Engineering notation" -msgstr "סימון הנדסי" +msgstr "סימון _הנדסי" #. Fg7BD #: cui/uiconfig/ui/numberingformatpage.ui:379 @@ -13406,10 +13220,9 @@ #. AxmSa #: cui/uiconfig/ui/numberingoptionspage.ui:167 -#, fuzzy msgctxt "numberingoptionspage|label4" msgid "Number:" -msgstr "מ_ספר:" +msgstr "מספר:" #. CJfZf #: cui/uiconfig/ui/numberingoptionspage.ui:183 @@ -13444,17 +13257,15 @@ #. EDSiA #: cui/uiconfig/ui/numberingoptionspage.ui:262 -#, fuzzy msgctxt "numberingoptionspage|bitmapft" msgid "Graphics:" -msgstr "גרפיקה" +msgstr "גרפיקה:" #. Hooqo #: cui/uiconfig/ui/numberingoptionspage.ui:276 -#, fuzzy msgctxt "numberingoptionspage|widthft" msgid "Width:" -msgstr "רוחב" +msgstr "רוחב:" #. EetAa #: cui/uiconfig/ui/numberingoptionspage.ui:296 @@ -13464,10 +13275,9 @@ #. PBvy6 #: cui/uiconfig/ui/numberingoptionspage.ui:309 -#, fuzzy msgctxt "numberingoptionspage|heightft" msgid "Height:" -msgstr "גובה" +msgstr "גובה:" #. prqMN #: cui/uiconfig/ui/numberingoptionspage.ui:330 @@ -13489,10 +13299,9 @@ #. 7Wuu8 #: cui/uiconfig/ui/numberingoptionspage.ui:362 -#, fuzzy msgctxt "numberingoptionspage|orientft" msgid "Alignment:" -msgstr "יישור" +msgstr "יישור:" #. BJjDU #: cui/uiconfig/ui/numberingoptionspage.ui:378 @@ -13570,7 +13379,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:435 msgctxt "numberingoptionspage|extended_tip|color" msgid "Select a color for the current numbering scheme." -msgstr "" +msgstr "נא לבחור את הצבע לסכמת המספור הנוכחית." #. hJgCL #: cui/uiconfig/ui/numberingoptionspage.ui:453 @@ -13592,10 +13401,9 @@ #. RJa39 #: cui/uiconfig/ui/numberingoptionspage.ui:483 -#, fuzzy msgctxt "numberingoptionspage|prefixft" msgid "Before:" -msgstr "לפני" +msgstr "לפני:" #. EzDC5 #: cui/uiconfig/ui/numberingoptionspage.ui:498 @@ -13617,45 +13425,39 @@ #. FLJWG #: cui/uiconfig/ui/numberingoptionspage.ui:545 -#, fuzzy msgctxt "numberingoptionspage|suffixft" msgid "After:" -msgstr "אחרי" +msgstr "אחרי:" #. TZVTJ #: cui/uiconfig/ui/numberingoptionspage.ui:559 -#, fuzzy msgctxt "numberingoptionspage|sublevelsft" msgid "Show sublevels:" -msgstr "הצגת רמות משנה" +msgstr "הצגת רמות משנה:" #. FaDZX #: cui/uiconfig/ui/numberingoptionspage.ui:574 -#, fuzzy msgctxt "numberingoptionspage|bulletft" msgid "Character:" -msgstr "תווים:‏" +msgstr "תו:‏" #. 6jTGa #: cui/uiconfig/ui/numberingoptionspage.ui:588 -#, fuzzy msgctxt "numberingoptionspage|relsizeft" msgid "_Relative size:" -msgstr "גודל יחסי" +msgstr "גודל י_חסי:" #. 6r484 #: cui/uiconfig/ui/numberingoptionspage.ui:602 -#, fuzzy msgctxt "numberingoptionspage|colorft" msgid "Color:" -msgstr "_צבע:" +msgstr "צבע:" #. ksG2M #: cui/uiconfig/ui/numberingoptionspage.ui:616 -#, fuzzy msgctxt "numberingoptionspage|charstyleft" msgid "Character style:" -msgstr "סגנון תו" +msgstr "סגנון תו:" #. S9jNu #: cui/uiconfig/ui/numberingoptionspage.ui:651 @@ -13685,7 +13487,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:746 msgctxt "numberingoptionspage|previewlabel" msgid "Preview" -msgstr "" +msgstr "תצוגה מקדימה" #. oBArM #: cui/uiconfig/ui/numberingpositionpage.ui:88 @@ -13708,10 +13510,9 @@ #. Ef8hG #: cui/uiconfig/ui/numberingpositionpage.ui:158 -#, fuzzy msgctxt "numberingpositionpage|num2align" msgid "N_umbering alignment:" -msgstr "יישור מספור" +msgstr "יי_שור מספור:" #. xFfvt #: cui/uiconfig/ui/numberingpositionpage.ui:172 @@ -13777,10 +13578,9 @@ #. fXRT2 #: cui/uiconfig/ui/numberingpositionpage.ui:291 -#, fuzzy msgctxt "numberingpositionpage|indent" msgid "Indent:" -msgstr "הזחה" +msgstr "הזחה:" #. DEBG2 #: cui/uiconfig/ui/numberingpositionpage.ui:311 @@ -13802,10 +13602,9 @@ #. bt7Fj #: cui/uiconfig/ui/numberingpositionpage.ui:345 -#, fuzzy msgctxt "numberingpositionpage|numberingwidth" msgid "Width of numbering:" -msgstr "רוחב המספור" +msgstr "רוחב המספור:" #. V6FF5 #: cui/uiconfig/ui/numberingpositionpage.ui:365 @@ -13866,7 +13665,6 @@ #. 6DLtp #: cui/uiconfig/ui/numberingpositionpage.ui:464 -#, fuzzy msgctxt "numberingpositionpage|label10" msgid "Position and Spacing" msgstr "מיקום וריווח" @@ -13887,7 +13685,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:548 msgctxt "numberingpositionpage|previewframe" msgid "Preview" -msgstr "" +msgstr "תצוגה מקדימה" #. tGB4m #: cui/uiconfig/ui/objectnamedialog.ui:8 @@ -13933,10 +13731,9 @@ #. kDbQ9 #: cui/uiconfig/ui/objecttitledescdialog.ui:127 -#, fuzzy msgctxt "objecttitledescdialog|desc_label" msgid "_Description:" -msgstr "תאור" +msgstr "_תיאור:" #. EFUyD #: cui/uiconfig/ui/objecttitledescdialog.ui:129 @@ -13982,10 +13779,9 @@ #. APEfF #: cui/uiconfig/ui/optaccessibilitypage.ui:67 -#, fuzzy msgctxt "optaccessibilitypage|animatedgraphics" msgid "Allow animated _images" -msgstr "אפשרות להנפשה גרפית" +msgstr "לאפשר תמונות מו_נפשות" #. DEBEA #: cui/uiconfig/ui/optaccessibilitypage.ui:75 @@ -13997,7 +13793,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:87 msgctxt "optaccessibilitypage|animatedtext" msgid "Allow animated _text" -msgstr "אפשרות להנפשת טקסט" +msgstr "לאפשר _טקסט מונפש" #. Gc9fG #: cui/uiconfig/ui/optaccessibilitypage.ui:95 @@ -14049,7 +13845,6 @@ #. hGpaw #: cui/uiconfig/ui/optaccessibilitypage.ui:204 -#, fuzzy msgctxt "optaccessibilitypage|label2" msgid "Options for High Contrast Appearance" msgstr "אפשרויות למראה ניגודיות גבוהה" @@ -14094,7 +13889,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:135 msgctxt "optadvancedpage|parameters" msgid "_Parameters..." -msgstr "פרמטרים...‏" +msgstr "מ_שתנים…" #. DJxvJ #: cui/uiconfig/ui/optadvancedpage.ui:142 @@ -14124,7 +13919,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:246 msgctxt "optadvancedpage|version" msgid "Version" -msgstr "גירסה" +msgstr "גרסה" #. skEDW #: cui/uiconfig/ui/optadvancedpage.ui:257 @@ -14146,7 +13941,6 @@ #. 7QUQp #: cui/uiconfig/ui/optadvancedpage.ui:332 -#, fuzzy msgctxt "optadvancedpage|label1" msgid "Java Options" msgstr "אפשרויות ג׳אווה" @@ -14165,10 +13959,9 @@ #. rMVcA #: cui/uiconfig/ui/optadvancedpage.ui:384 -#, fuzzy msgctxt "optadvancedpage|macrorecording" msgid "Enable macro recording (may be limited)" -msgstr "לאפשר הקלטת מאקרו (מוגבל)" +msgstr "הפעלת הקלטת מאקרו (עלול להיות מוגבל)" #. 8Gjtp #: cui/uiconfig/ui/optadvancedpage.ui:393 @@ -14178,29 +13971,27 @@ #. NgRXw #: cui/uiconfig/ui/optadvancedpage.ui:404 -#, fuzzy msgctxt "optadvancedpage|expertconfig" msgid "Open Expert Configuration" -msgstr "הגדרות למומחים" +msgstr "פתיחת הגדרות למומחים" #. upAQw #: cui/uiconfig/ui/optadvancedpage.ui:412 msgctxt "extended_tip|expertconfig" msgid "Opens the Expert Configuration dialog for advanced settings and configuration." -msgstr "" +msgstr "פותח את חלונית ההגדרות למומחים להגדרות ותצורות מתקדמות." #. ZLtrh #: cui/uiconfig/ui/optadvancedpage.ui:427 msgctxt "optadvancedpage|label12" msgid "Optional Features" -msgstr "" +msgstr "אפשרויות כרשות" #. dmvLE #: cui/uiconfig/ui/optappearancepage.ui:33 -#, fuzzy msgctxt "optappearancepage|label3" msgid "_Scheme:" -msgstr "_סכמה" +msgstr "_סכמה:" #. epnyS #: cui/uiconfig/ui/optappearancepage.ui:44 @@ -14212,19 +14003,19 @@ #: cui/uiconfig/ui/optappearancepage.ui:51 msgctxt "extended_tip|save" msgid "Saves the current settings as a color scheme that you can reload later." -msgstr "" +msgstr "שומר את ההגדרות הנוכחיות כסכמת צבעים שניתן לרענן בהמשך." #. 4YuTW #: cui/uiconfig/ui/optappearancepage.ui:69 msgctxt "extended_tip|delete" msgid "Deletes the color scheme shown in the Scheme box. You cannot delete the Default scheme." -msgstr "" +msgstr "מוחק את סכמת הצבעים שמופיעה בתיבת הסכמה. אי אפשר למחוק את סכמת ברירת המחדל." #. Gii2p #: cui/uiconfig/ui/optappearancepage.ui:85 msgctxt "extended_tip|colorschemelb" msgid "Selects the color scheme you want to use." -msgstr "" +msgstr "בוחר את סכמת הצבעים בה ברצונך להשתמש." #. jzELX #: cui/uiconfig/ui/optappearancepage.ui:100 @@ -14237,7 +14028,7 @@ #: cui/uiconfig/ui/optappearancepage.ui:165 msgctxt "extended_tip|colorconfig" msgid "Select the colors for the user interface elements." -msgstr "" +msgstr "בחירת הצבעים לרכיבי מנשק המשתמש." #. BtFUJ #: cui/uiconfig/ui/optappearancepage.ui:198 @@ -14253,7 +14044,6 @@ #. HFLPF #: cui/uiconfig/ui/optappearancepage.ui:242 -#, fuzzy msgctxt "optappearancepage|label2" msgid "Custom Colors" msgstr "צבעים מותאמים אישית" @@ -14262,14 +14052,13 @@ #: cui/uiconfig/ui/optappearancepage.ui:257 msgctxt "extended_tip|OptAppearancePage" msgid "Sets the colors for the user interface." -msgstr "" +msgstr "מגדיר את הצבעים של מנשק המשתמש." #. nRFne #: cui/uiconfig/ui/optasianpage.ui:27 -#, fuzzy msgctxt "optasianpage|charkerning" msgid "_Western text only" -msgstr "גופן טקסט מערבי" +msgstr "טקסט מ_ערבי בלבד" #. QCvQv #: cui/uiconfig/ui/optasianpage.ui:36 @@ -14495,7 +14284,6 @@ #. vTZjC #: cui/uiconfig/ui/optchartcolorspage.ui:88 -#, fuzzy msgctxt "optchartcolorspage|label20" msgid "Chart Colors" msgstr "צבעי התרשים" @@ -14540,7 +14328,7 @@ #: cui/uiconfig/ui/optctlpage.ui:54 msgctxt "optctlpage|restricted" msgid "Restricted" -msgstr "" +msgstr "מוגבל" #. HtGj9 #: cui/uiconfig/ui/optctlpage.ui:62 @@ -14564,14 +14352,13 @@ #: cui/uiconfig/ui/optctlpage.ui:129 msgctxt "optctlpage|label3" msgid "Movement:" -msgstr "" +msgstr "תזוזה:" #. R7YUB #: cui/uiconfig/ui/optctlpage.ui:139 -#, fuzzy msgctxt "optctlpage|movementlogical" msgid "Lo_gical" -msgstr "לוגי" +msgstr "לו_גי" #. W9NrD #: cui/uiconfig/ui/optctlpage.ui:148 @@ -14583,7 +14370,7 @@ #: cui/uiconfig/ui/optctlpage.ui:159 msgctxt "optctlpage|movementvisual" msgid "_Visual" -msgstr "" +msgstr "_חזותי" #. wpUXS #: cui/uiconfig/ui/optctlpage.ui:168 @@ -14599,17 +14386,15 @@ #. LcTwD #: cui/uiconfig/ui/optctlpage.ui:217 -#, fuzzy msgctxt "optctlpage|label5" msgid "_Numerals:" -msgstr "_ספרות" +msgstr "_ספרות:" #. BdfCk #: cui/uiconfig/ui/optctlpage.ui:232 -#, fuzzy msgctxt "optctlpage|numerals" msgid "Arabic (1, 2, 3…)" -msgstr "עשרוני (3 2 1)‏" +msgstr "ערביות (1, 2, 3…)" #. 2n6dr #: cui/uiconfig/ui/optctlpage.ui:233 @@ -14700,14 +14485,14 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:82 msgctxt "optfltrembedpage|column1" msgid "[L]" -msgstr "" +msgstr "[ט]" #. 66D6D #. A column title, short for Save. This string is repeated as a prefix to an explanatory note under the widget #: cui/uiconfig/ui/optfltrembedpage.ui:104 msgctxt "optfltrembedpage|column2" msgid "[S]" -msgstr "" +msgstr "[ש]" #. 7h7h8 #: cui/uiconfig/ui/optfltrembedpage.ui:129 @@ -14731,10 +14516,9 @@ #. f2hGQ #: cui/uiconfig/ui/optfltrembedpage.ui:191 -#, fuzzy msgctxt "optfltrembedpage|label1" msgid "Embedded Objects" -msgstr "פריטים מוטמעים" +msgstr "עצמים משובצים" #. nvE89 #: cui/uiconfig/ui/optfltrembedpage.ui:221 @@ -14756,7 +14540,6 @@ #. Dnrx7 #: cui/uiconfig/ui/optfltrembedpage.ui:257 -#, fuzzy msgctxt "optfltrembedpage|shading" msgid "Shading" msgstr "הצללה" @@ -14919,17 +14702,15 @@ #. Q8yvt #: cui/uiconfig/ui/optfontspage.ui:81 -#, fuzzy msgctxt "optfontspage|label2" msgid "_Font:" -msgstr "גופן" +msgstr "_גופן:" #. TAig5 #: cui/uiconfig/ui/optfontspage.ui:95 -#, fuzzy msgctxt "optfontspage|label3" msgid "Re_place with:" -msgstr "החלפה ב" +msgstr "ה_חלפה ב־:" #. ctZBz #: cui/uiconfig/ui/optfontspage.ui:135 @@ -14941,7 +14722,7 @@ #: cui/uiconfig/ui/optfontspage.ui:156 msgctxt "optfontspage|screenonly" msgid "Screen only" -msgstr "מסך" +msgstr "מסך בלבד" #. bMguF #: cui/uiconfig/ui/optfontspage.ui:170 @@ -15005,24 +14786,21 @@ #. wDa4A #: cui/uiconfig/ui/optfontspage.ui:343 -#, fuzzy msgctxt "optfontspage|label4" msgid "Replacement Table" msgstr "טבלת החלפות" #. z93yC #: cui/uiconfig/ui/optfontspage.ui:378 -#, fuzzy msgctxt "optfontspage|label8" msgid "Fon_ts:" -msgstr "_גופנים" +msgstr "_גופנים:" #. L9aT3 #: cui/uiconfig/ui/optfontspage.ui:393 -#, fuzzy msgctxt "optfontspage|label9" msgid "_Size:" -msgstr "גודל" +msgstr "גו_דל:" #. KXCQg #: cui/uiconfig/ui/optfontspage.ui:408 @@ -15034,13 +14812,13 @@ #: cui/uiconfig/ui/optfontspage.ui:412 msgctxt "extended_tip | fontname" msgid "Select the font for the display of HTML and Basic source code." -msgstr "" +msgstr "בחירת הגופן להצגת קוד מקור ב־HTML וב־Basic." #. Cc5tn #: cui/uiconfig/ui/optfontspage.ui:423 msgctxt "optfontspage|nonpropfontonly" msgid "_Non-proportional fonts only" -msgstr "" +msgstr "גופנים ברוחב מ_שתנה בלבד" #. aUYNh #: cui/uiconfig/ui/optfontspage.ui:431 @@ -15056,16 +14834,15 @@ #. AafuA #: cui/uiconfig/ui/optfontspage.ui:466 -#, fuzzy msgctxt "optfontspage|label1" msgid "Font Settings for HTML, Basic and SQL Sources" -msgstr "הגדרת גופנים למקורות HTML,‏ Basic ו-SQL" +msgstr "הגדרות גופנים להצגת קוד מקור ב־HTML,‏ Basic ו־SQL" #. AFEDo #: cui/uiconfig/ui/optgeneralpage.ui:34 msgctxt "optgeneralpage|exthelp" msgid "_Extended tips" -msgstr "עצות מורחבות" +msgstr "עצות מו_רחבות" #. TyqBV #: cui/uiconfig/ui/optgeneralpage.ui:42 @@ -15077,13 +14854,13 @@ #: cui/uiconfig/ui/optgeneralpage.ui:53 msgctxt "optgeneralpage|popupnohelp" msgid "Warn if local help is not installed" -msgstr "" +msgstr "להזהיר אם לא מותקנת עזרה מקומית" #. YUaEz #: cui/uiconfig/ui/optgeneralpage.ui:66 msgctxt "optgeneralpage|TipOfTheDayCheckbox" msgid "Show \"Tip of the Day\" dialog on start-up" -msgstr "" +msgstr "להציג את „העצה היומית” עם ההפעלה" #. BR6gf #: cui/uiconfig/ui/optgeneralpage.ui:84 @@ -15095,26 +14872,25 @@ #: cui/uiconfig/ui/optgeneralpage.ui:112 msgctxt "optgeneralpage|filedlg" msgid "_Use %PRODUCTNAME dialogs" -msgstr "שימוש בדו-שיח ‏‪%PRODUCTNAME" +msgstr "להשתמש ב_חלוניות של %PRODUCTNAME" #. ySSsA #: cui/uiconfig/ui/optgeneralpage.ui:143 -#, fuzzy msgctxt "optgeneralpage|label2" msgid "Open/Save Dialogs" -msgstr "פתיחת/שמירת דו שיח" +msgstr "חלוניות פתיחה/שמירה" #. SFLLC #: cui/uiconfig/ui/optgeneralpage.ui:163 msgctxt "optgeneralpage|docstatus" msgid "_Printing sets \"document modified\" status" -msgstr "הדפסת המסמך משנה את מצב ה'המסמך השתנה' שלו" +msgstr "הדפסת המסמך משנה את מ_צב „המסמך נערך” שלו" #. kPEpF #: cui/uiconfig/ui/optgeneralpage.ui:173 msgctxt "extended_tip | docstatus" msgid "Specifies whether the printing of the document counts as a modification." -msgstr "" +msgstr "מציין האם הדפסת המסמך נחשב לעריכה." #. 4yo9c #: cui/uiconfig/ui/optgeneralpage.ui:182 @@ -15126,19 +14902,19 @@ #: cui/uiconfig/ui/optgeneralpage.ui:212 msgctxt "optgeneralpage|label6" msgid "_Interpret as years between " -msgstr "" +msgstr "ל_פענח כשנים בין " #. huNG6 #: cui/uiconfig/ui/optgeneralpage.ui:231 msgctxt "extended_tip | year" msgid "Defines a date range, within which the system recognizes a two-digit year." -msgstr "" +msgstr "מגדיר טווח תאריכים, שבתוכו המערכת תזהה שנה בשתי ספרות." #. AhF6m #: cui/uiconfig/ui/optgeneralpage.ui:244 msgctxt "optgeneralpage|toyear" msgid "and " -msgstr "וגם " +msgstr "לבין " #. 7r6RF #: cui/uiconfig/ui/optgeneralpage.ui:257 @@ -15150,7 +14926,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:284 msgctxt "optgeneralpage|crashreport" msgid "Sen_d crash reports to The Document Foundation" -msgstr "" +msgstr "_שליחת דוחות קריסה לקרן המסמכים" #. rS3dG #: cui/uiconfig/ui/optgeneralpage.ui:304 @@ -15162,7 +14938,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:332 msgctxt "optgeneralpage|quicklaunch" msgid "Load %PRODUCTNAME during system start-up" -msgstr "טעינת ‏‪%PRODUCTNAME‬‏ במהלך עליית המערכת" +msgstr "לטעון את %PRODUCTNAME במהלך עליית המערכת" #. MKruH #: cui/uiconfig/ui/optgeneralpage.ui:346 @@ -15174,31 +14950,31 @@ #: cui/uiconfig/ui/optgeneralpage.ui:364 msgctxt "optgeneralpage|label8" msgid "%PRODUCTNAME Quickstarter" -msgstr "הפעלה מהירה של ‏‪%PRODUCTNAME‏" +msgstr "הפעלה מהירה של %PRODUCTNAME" #. FvigS #: cui/uiconfig/ui/optgeneralpage.ui:391 msgctxt "optgeneralpage|fileassoc" msgid "Windows Default apps" -msgstr "" +msgstr "יישומי ברירת המחדל של Windows" #. 2EWmE #: cui/uiconfig/ui/optgeneralpage.ui:405 msgctxt "optgeneralpage|FileExtCheckCheckbox" msgid "Perform check for default file associations on start-up" -msgstr "" +msgstr "לבצע בדיקות לשיוכי קבצים כברירת מחדל עם ההפעלה" #. fXjVB #: cui/uiconfig/ui/optgeneralpage.ui:423 msgctxt "optgeneralpage|fileassoc" msgid "%PRODUCTNAME File Associations" -msgstr "" +msgstr "שיוכי קבצים של %PRODUCTNAME" #. KyK5F #: cui/uiconfig/ui/optgeneralpage.ui:437 msgctxt "extended_tip | OptGeneralPage" msgid "Specifies the general settings for the office suite." -msgstr "" +msgstr "מציין את ההגדרות הכלליות לחבילת הכלים המשרדיים." #. FsiDE #: cui/uiconfig/ui/opthtmlpage.ui:86 @@ -15210,7 +14986,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:103 msgctxt "extended_tip|size7" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "אפשר להשתמש בכפתורי הטווח מגודל 1 עד גודל 7 כדי להגדיר את גודלי הגונפים המתאימים לתגיות ה־HTML‏ עד ." #. SfHVG #: cui/uiconfig/ui/opthtmlpage.ui:116 @@ -15222,7 +14998,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:133 msgctxt "extended_tip|size6" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "אפשר להשתמש בכפתורי הטווח מגודל 1 עד גודל 7 כדי להגדיר את גודלי הגונפים המתאימים לתגיות ה־HTML‏ עד ." #. mbGGc #: cui/uiconfig/ui/opthtmlpage.ui:146 @@ -15234,7 +15010,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:163 msgctxt "extended_tip|size5" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "אפשר להשתמש בכפתורי הטווח מגודל 1 עד גודל 7 כדי להגדיר את גודלי הגונפים המתאימים לתגיות ה־HTML‏ עד ." #. PwaSa #: cui/uiconfig/ui/opthtmlpage.ui:176 @@ -15246,7 +15022,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:193 msgctxt "extended_tip|size4" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "אפשר להשתמש בכפתורי הטווח מגודל 1 עד גודל 7 כדי להגדיר את גודלי הגונפים המתאימים לתגיות ה־HTML‏ עד ." #. FSRpm #: cui/uiconfig/ui/opthtmlpage.ui:206 @@ -15258,7 +15034,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:223 msgctxt "extended_tip|size3" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "אפשר להשתמש בכפתורי הטווח מגודל 1 עד גודל 7 כדי להגדיר את גודלי הגונפים המתאימים לתגיות ה־HTML‏ עד ." #. unrKj #: cui/uiconfig/ui/opthtmlpage.ui:236 @@ -15270,7 +15046,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:253 msgctxt "extended_tip|size2" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "אפשר להשתמש בכפתורי הטווח מגודל 1 עד גודל 7 כדי להגדיר את גודלי הגונפים המתאימים לתגיות ה־HTML‏ עד ." #. aiSoE #: cui/uiconfig/ui/opthtmlpage.ui:266 @@ -15282,13 +15058,13 @@ #: cui/uiconfig/ui/opthtmlpage.ui:283 msgctxt "extended_tip|size1" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "אפשר להשתמש בכפתורי הטווח מגודל 1 עד גודל 7 כדי להגדיר את גודלי הגונפים המתאימים לתגיות ה־HTML‏ עד ." #. rRkQd #: cui/uiconfig/ui/opthtmlpage.ui:298 msgctxt "opthtmlpage|label1" msgid "Font Sizes" -msgstr "גדלי גופנים" +msgstr "גודלי גופנים" #. JRQrk #: cui/uiconfig/ui/opthtmlpage.ui:343 @@ -15300,62 +15076,61 @@ #: cui/uiconfig/ui/opthtmlpage.ui:352 msgctxt "extended_tip|ignorefontnames" msgid "Mark this check box to ignore all font settings when importing. The fonts that were defined in the HTML Page Style will be the fonts that will be used. " -msgstr "" +msgstr "סימון התיבה הזאת יוביל להתעלמות מכל הגדרות הגופנים בעת הייבוא. הגופנים שהוגדרו בסגנון עמוד ה־HTML יהיו הגופנים שבהם ייעשה שימוש. " #. 7bZSP #: cui/uiconfig/ui/opthtmlpage.ui:363 msgctxt "opthtmlpage|unknowntag" msgid "_Import unknown HTML tags as fields" -msgstr "" +msgstr "לייבא _תגיות HTML בלתי מוכרות כשדות" #. HUFPp #: cui/uiconfig/ui/opthtmlpage.ui:372 msgctxt "extended_tip|unknowntag" msgid "Mark this check box if you want tags that are not recognized by Writer/Web to be imported as fields." -msgstr "" +msgstr "יש לסמן את התיבה הזאת כדי שתגיות שלא מזוהות על ידי Writer/Web ייובאו כשדות." #. VFTrU #: cui/uiconfig/ui/opthtmlpage.ui:383 msgctxt "opthtmlpage|numbersenglishus" msgid "_Use '%ENGLISHUSLOCALE' locale for numbers" -msgstr "" +msgstr "להשתמש בהגדרות האזוריות ‚%ENGLISHUSLOCALE’ למספרים" #. c4j5A #: cui/uiconfig/ui/opthtmlpage.ui:392 msgctxt "extended_tip|numbersenglishus" msgid "If not checked, numbers will be interpreted according to the setting in Language Settings - Language of - Locale setting in the Options dialog box. If checked, numbers will be interpreted as 'English (USA)' locale." -msgstr "" +msgstr "אם האפשרות לא סומנה, מספרים יפוענחו בהתאם להגדרות שתחת הגדרות שפה - שפה עבור - הגדרות אזוריות באפשרויות. אם האפשרות סומנה, המספרים יפוענחו לפי ההגדרות האזוריות ‚אנגלית (ארה״ב)’." #. Fnsdh #: cui/uiconfig/ui/opthtmlpage.ui:407 msgctxt "opthtmlpage|label2" msgid "Import" -msgstr "יבוא" +msgstr "ייבוא" #. nJtoS #: cui/uiconfig/ui/opthtmlpage.ui:438 msgctxt "opthtmlpage|savegrflocal" msgid "_Copy local images to Internet" -msgstr "" +msgstr "ה_עתקת תמונות מקומיות לאינטרנט" #. fPAEu #: cui/uiconfig/ui/opthtmlpage.ui:447 msgctxt "extended_tip|savegrflocal" msgid "Mark this check box to automatically upload the embedded pictures to the Internet server when uploading using FTP. Use the Save As dialog to save the document and enter a complete FTP URL as the file name in the Internet." -msgstr "" +msgstr "יש לסמן את התיבה הזאת כדי להעלות אוטומטית תמונות משובצות לאינטרנט דרך FTP. אפשר להשתמש בחלונית שמירה בשם כדי לשמור את המסמך ולמלא את כתובת ה־FTP המלאה בתור שם קובץ באינטרנט." #. Xc4iM #: cui/uiconfig/ui/opthtmlpage.ui:458 -#, fuzzy msgctxt "opthtmlpage|printextension" msgid "_Print layout" -msgstr "מתווה הדפסה" +msgstr "_פריסת הדפסה" #. CMsrc #: cui/uiconfig/ui/opthtmlpage.ui:467 msgctxt "extended_tip|printextension" msgid "If you mark this field, the print layout of the current document (for example, table of contents with justified page numbers and dot leaders) is exported as well." -msgstr "" +msgstr "סימון התיבה הזאת יגרום לייצוא גם של פריסת ההדפסה של המסמך הנוכחי (למשל: תוכן העניינים עם מספרי עמודים ומסלול נקודות)." #. Wwuvt #: cui/uiconfig/ui/opthtmlpage.ui:478 @@ -15385,13 +15160,13 @@ #: cui/uiconfig/ui/opthtmlpage.ui:523 msgctxt "opthtmlpage|label3" msgid "Export" -msgstr "יצוא" +msgstr "ייצוא" #. TKsp4 #: cui/uiconfig/ui/opthtmlpage.ui:545 msgctxt "extended_tip|OptHtmlPage" msgid "Defines settings for HTML pages." -msgstr "" +msgstr "מגדיר הגדרות לעמודי HTML." #. ecN5A #: cui/uiconfig/ui/optionsdialog.ui:18 @@ -15665,10 +15440,9 @@ #. W92kS #: cui/uiconfig/ui/optjsearchpage.ui:408 -#, fuzzy msgctxt "optjsearchpage|ignoremiddledot" msgid "Midd_le dots" -msgstr "נקודה אמצעית" +msgstr "נקודות _אמצעיות" #. kA2cf #: cui/uiconfig/ui/optjsearchpage.ui:416 @@ -15684,22 +15458,21 @@ #. DJWap #: cui/uiconfig/ui/optlanguagespage.ui:62 -#, fuzzy msgctxt "optlanguagespage|label4" msgid "_User interface:" -msgstr "ממשק מ_שתמש" +msgstr "מנשק מ_שתמש:" #. rj5UD #: cui/uiconfig/ui/optlanguagespage.ui:80 msgctxt "extended_tip|userinterface" msgid "Select the language used for the user interface, for example menus, dialogs, help files. You must have installed at least one additional language pack." -msgstr "" +msgstr "נא לבחור את שפת מנשק המשתמש, למשל עבור תפריטים, חלוניות, קובצי עזרה ועוד. חובה להתקין לפחות חבילת שפה אחת נוספת." #. e8VE3 #: cui/uiconfig/ui/optlanguagespage.ui:95 msgctxt "optlanguagespage|label1" msgid "Language Of" -msgstr "" +msgstr "השפה של" #. E3UQs #: cui/uiconfig/ui/optlanguagespage.ui:147 @@ -15733,10 +15506,9 @@ #. zeaKX #: cui/uiconfig/ui/optlanguagespage.ui:242 -#, fuzzy msgctxt "optlanguagespage|ctlsupport" msgid "Complex _text layout:" -msgstr "מתווה טקסט מורכב" +msgstr "מתווה טקסט מו_רכב:" #. EvD7M #: cui/uiconfig/ui/optlanguagespage.ui:250 @@ -15746,10 +15518,9 @@ #. mpLF7 #: cui/uiconfig/ui/optlanguagespage.ui:261 -#, fuzzy msgctxt "optlanguagespage|asiansupport" msgid "Asian:" -msgstr "אסיאתי" +msgstr "אסיאתי:" #. jWDQg #: cui/uiconfig/ui/optlanguagespage.ui:269 @@ -15759,10 +15530,9 @@ #. QwDAK #: cui/uiconfig/ui/optlanguagespage.ui:282 -#, fuzzy msgctxt "optlanguagespage|western" msgid "Western:" -msgstr "מערבי" +msgstr "מערבי:" #. K62Ex #: cui/uiconfig/ui/optlanguagespage.ui:301 @@ -15784,7 +15554,6 @@ #. 83eTv #: cui/uiconfig/ui/optlanguagespage.ui:352 -#, fuzzy msgctxt "optlanguagespage|label3" msgid "Enhanced Language Support" msgstr "תמיכה מורחבת בשפות" @@ -15797,10 +15566,9 @@ #. Zyao3 #: cui/uiconfig/ui/optlanguagespage.ui:399 -#, fuzzy msgctxt "optlanguagespage|label6" msgid "Decimal separator key:" -msgstr "מפריד עשרוני" +msgstr "מפתח מפריד עשרוני:" #. cuqUB #: cui/uiconfig/ui/optlanguagespage.ui:413 @@ -15848,19 +15616,19 @@ #: cui/uiconfig/ui/optlanguagespage.ui:515 msgctxt "optlanguagespage|label7" msgid "Formats" -msgstr "" +msgstr "תבניות" #. HASiD #: cui/uiconfig/ui/optlanguagespage.ui:529 msgctxt "extended_tip|OptLanguagesPage" msgid "Defines the default languages and some other locale settings for documents." -msgstr "" +msgstr "מגדיר את שפות ברירת המחדל ומגוון הגדרות אזוריות נוספות למסמכים." #. CgUDR #: cui/uiconfig/ui/optlingupage.ui:130 msgctxt "lingumodules" msgid "Contains the installed language modules." -msgstr "" +msgstr "מכיל את מודולי השפה המותקנים." #. 8kxYC #: cui/uiconfig/ui/optlingupage.ui:143 @@ -15870,53 +15638,51 @@ #. va3tH #: cui/uiconfig/ui/optlingupage.ui:151 -#, fuzzy msgctxt "optlingupage|lingumodulesedit-atkobject" msgid "Edit Available language modules" -msgstr "מודולי השפה ה_זמינים" +msgstr "עריכת מודולי השפה ה_זמינים" #. peVgj #: cui/uiconfig/ui/optlingupage.ui:152 msgctxt "lingumodulesedit" msgid "To edit a language module, select it and click Edit." -msgstr "" +msgstr "כדי לערוך מודול שפה, יש לבחור בו וללחוץ על עריכה." #. SBvTc #: cui/uiconfig/ui/optlingupage.ui:218 msgctxt "optlingupage|lingumodulesft" msgid "_Available Language Modules" -msgstr "" +msgstr "מודולי שפה _זמינים" #. efvBg #: cui/uiconfig/ui/optlingupage.ui:297 msgctxt "lingudicts" msgid "Lists the available user dictionaries." -msgstr "" +msgstr "מציג את מילוני המשתמש הזמינים." #. qBrCR #: cui/uiconfig/ui/optlingupage.ui:317 msgctxt "optlingupage|lingudictsnew" msgid "_New..." -msgstr "חדש..." +msgstr "_חדש…" #. 9ozFQ #: cui/uiconfig/ui/optlingupage.ui:324 msgctxt "lingudictsnew" msgid "Opens the New Dictionary dialog, in which you can name a new user-defined dictionary or dictionary of exceptions and specify the language." -msgstr "" +msgstr "פותח חלונית מילון חדש, בה ניתן לתת שם למילון חדש שמוגדר על ידי המשתמש או מילון של החרגות וציון השפה." #. mCu3q #: cui/uiconfig/ui/optlingupage.ui:336 msgctxt "optlingupage|lingudictsedit" msgid "Ed_it..." -msgstr "_עריכה..." +msgstr "_עריכה…" #. B7nKn #: cui/uiconfig/ui/optlingupage.ui:343 -#, fuzzy msgctxt "optlingupage|lingudictsedit-atkobject" msgid "Edit User-defined dictionaries" -msgstr "מילונים המוגדרים ע‏\"י המשתמש" +msgstr "עריכת מילונים בהגדרת המשתמש" #. Y2AmA #: cui/uiconfig/ui/optlingupage.ui:344 @@ -15934,56 +15700,55 @@ #: cui/uiconfig/ui/optlingupage.ui:363 msgctxt "lingudictsdelete" msgid "Deletes the selected dictionary after a confirmation, provided it is not write-protected." -msgstr "" +msgstr "מוחק את המילון הנבחר לאחר אישור, בהנחה שהוא לא מוגן לכתיבה." #. qEqZD #: cui/uiconfig/ui/optlingupage.ui:406 msgctxt "optlingupage|lingudictsft" msgid "_User-defined Dictionaries" -msgstr "" +msgstr "מילונים בה_גדרת המשתמש" #. sE9tc #: cui/uiconfig/ui/optlingupage.ui:487 msgctxt "linguoptions" msgid "Defines the options for the spellcheck and hyphenation." -msgstr "" +msgstr "מגדיר את אפשרויות בדיקת האיות והמיקוף." #. 58e5v #: cui/uiconfig/ui/optlingupage.ui:500 msgctxt "optlingupage|linguoptionsedit" msgid "Edi_t..." -msgstr "_עריכה..." +msgstr "_עריכה…" #. 5MSSC #: cui/uiconfig/ui/optlingupage.ui:508 -#, fuzzy msgctxt "optlingupage|linguoptionsedit-atkobject" msgid "Edit Options" -msgstr "אפשרויות עריכה" +msgstr "עריכת אפשרויות" #. f85qm #: cui/uiconfig/ui/optlingupage.ui:509 msgctxt "linguoptionsedit" msgid "If you want to change a value, select the entry and then click Edit." -msgstr "" +msgstr "כדי לשנות ערך יש לבחור רשומה וללחוץ על עריכה." #. XCpcE #: cui/uiconfig/ui/optlingupage.ui:536 msgctxt "optlingupage|moredictslink" msgid "Get more dictionaries online..." -msgstr "הורדת מילונים נוספים מהאינטרנט..." +msgstr "הורדת מילונים נוספים מהאינטרנט…" #. gardH #: cui/uiconfig/ui/optlingupage.ui:577 msgctxt "optlingupage|label4" msgid "_Options" -msgstr "" +msgstr "_אפשרויות" #. ARk3s #: cui/uiconfig/ui/optlingupage.ui:612 msgctxt "OptLinguPage" msgid "Specifies the properties of the spelling, thesaurus and hyphenation." -msgstr "" +msgstr "מציין את מאפייני האיות, אוצר המילים והמיקוף." #. ADZ8E #: cui/uiconfig/ui/optnewdictionarydialog.ui:8 @@ -15995,7 +15760,7 @@ #: cui/uiconfig/ui/optnewdictionarydialog.ui:102 msgctxt "nameedit" msgid "Specifies the name of the new custom dictionary." -msgstr "" +msgstr "ציון שם המילון החדש המותאם אישית." #. XucrZ #: cui/uiconfig/ui/optnewdictionarydialog.ui:115 @@ -16013,19 +15778,19 @@ #: cui/uiconfig/ui/optnewdictionarydialog.ui:141 msgctxt "optnewdictionarydialog|except" msgid "_Exception (-)" -msgstr "" +msgstr "_חריגה (-)" #. saphk #: cui/uiconfig/ui/optnewdictionarydialog.ui:149 msgctxt "except" msgid "Specifies whether you wish to avoid certain words in your documents." -msgstr "" +msgstr "מציין האם העדפתך היא להימנע ממילים מסוימות במסמכים שלך." #. VJQ4d #: cui/uiconfig/ui/optnewdictionarydialog.ui:173 msgctxt "language" msgid "By selecting a certain language you can limit the use of the custom dictionary." -msgstr "" +msgstr "בחירת שפה מסוימת יכולה להגביל את השימוש במילון המותאם אישית." #. CpgB2 #: cui/uiconfig/ui/optnewdictionarydialog.ui:188 @@ -16043,7 +15808,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:30 msgctxt "optonlineupdatepage|autocheck" msgid "_Check for updates automatically" -msgstr "בדיקה אוטומטית לעידכונים" +msgstr "_איתור עדכונים אוטומטית" #. gxD2d #: cui/uiconfig/ui/optonlineupdatepage.ui:39 @@ -16053,55 +15818,51 @@ #. Hbe2C #: cui/uiconfig/ui/optonlineupdatepage.ui:57 -#, fuzzy msgctxt "optonlineupdatepage|everyday" msgid "Every da_y" -msgstr "פעם ביום" +msgstr "פעם ב_יום" #. yFD8D #: cui/uiconfig/ui/optonlineupdatepage.ui:67 msgctxt "extended_tip|everyday" msgid "A check will be performed once a day." -msgstr "" +msgstr "תתבצע בדיקה פעם ביום." #. 3zd7m #: cui/uiconfig/ui/optonlineupdatepage.ui:78 -#, fuzzy msgctxt "optonlineupdatepage|everyweek" msgid "Every _week" -msgstr "פעם בשבוע" +msgstr "פעם ב_שבוע" #. Xcj78 #: cui/uiconfig/ui/optonlineupdatepage.ui:88 msgctxt "extended_tip|everyweek" msgid "A check will be performed once a week. This is the default setting." -msgstr "" +msgstr "תתבצע בדיקה פעם בשבוע. זאת הגדרת ברירת המחדל." #. 29exv #: cui/uiconfig/ui/optonlineupdatepage.ui:99 -#, fuzzy msgctxt "optonlineupdatepage|everymonth" msgid "Every _month" -msgstr "פעם בחודש" +msgstr "פעם ב_חודש" #. oEWBt #: cui/uiconfig/ui/optonlineupdatepage.ui:109 msgctxt "extended_tip|everymonth" msgid "A check will be performed once a month." -msgstr "" +msgstr "תתבצע בדיקה פעם בחודש." #. pGuvH #: cui/uiconfig/ui/optonlineupdatepage.ui:127 -#, fuzzy msgctxt "optonlineupdatepage|checknow" msgid "Check _Now" -msgstr "לבדוק עכשיו" +msgstr "לבדוק _עכשיו" #. 4DhgF #: cui/uiconfig/ui/optonlineupdatepage.ui:135 msgctxt "extended_tip|checknow" msgid "A check will be performed now." -msgstr "" +msgstr "תתבצע בדיקה כעת." #. UvuAC #: cui/uiconfig/ui/optonlineupdatepage.ui:156 @@ -16119,7 +15880,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:209 msgctxt "optonlineupdatepage|autodownload" msgid "_Download updates automatically" -msgstr "הורדת עידכונים אוטומטית" +msgstr "הורדת _עדכונים אוטומטית" #. 5TCn4 #: cui/uiconfig/ui/optonlineupdatepage.ui:218 @@ -16137,7 +15898,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:246 msgctxt "extended_tip|changepath" msgid "Click to select the destination folder for downloaded files." -msgstr "" +msgstr "לחיצה תאפשר את בחירת התיקייה לקבצים שמתקבלים." #. iCVFj #: cui/uiconfig/ui/optonlineupdatepage.ui:264 @@ -16149,19 +15910,19 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:268 msgctxt "extended_tip|destpathlabel" msgid "Click to select the destination folder for downloaded files." -msgstr "" +msgstr "לחיצה תאפשר את בחירת התיקייה לקבצים שמתקבלים." #. vDRC5 #: cui/uiconfig/ui/optonlineupdatepage.ui:310 msgctxt "optonlineupdatepage|labeldest" msgid "Download Destination" -msgstr "" +msgstr "יעד הורדה" #. JqAh4 #: cui/uiconfig/ui/optonlineupdatepage.ui:341 msgctxt "optonlineupdatepage|extrabits" msgid "_Send OS version and basic hardware information" -msgstr "" +msgstr "_שליחת גרסת מערכת ההפעלה ופרטים בסיסיים על החומרה" #. b95Sc #: cui/uiconfig/ui/optonlineupdatepage.ui:345 @@ -16191,7 +15952,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:427 msgctxt "optonlineupdatepage|privacy" msgid "Privacy Policy" -msgstr "" +msgstr "מדיניות פרטיות" #. 3J5As #: cui/uiconfig/ui/optonlineupdatepage.ui:445 @@ -16291,10 +16052,9 @@ #. pQEWv #: cui/uiconfig/ui/optproxypage.ui:26 -#, fuzzy msgctxt "optproxypage|label2" msgid "Proxy s_erver:" -msgstr "שרת פרוקסי" +msgstr "_שרת מתווך:" #. KLjce #: cui/uiconfig/ui/optproxypage.ui:46 @@ -16364,31 +16124,27 @@ #. pkdvs #: cui/uiconfig/ui/optproxypage.ui:199 -#, fuzzy msgctxt "optproxypage|httpft" msgid "HT_TP proxy:" -msgstr "פרוקסי ‏‪HTTP‏" +msgstr "_מתווך ‏‪HTTP‏:" #. dGMMs #: cui/uiconfig/ui/optproxypage.ui:213 -#, fuzzy msgctxt "optproxypage|httpportft" msgid "_Port:" -msgstr "כניסה" +msgstr "_פתחה:" #. 5tuq7 #: cui/uiconfig/ui/optproxypage.ui:226 -#, fuzzy msgctxt "optproxypage|httpsft" msgid "HTTP_S proxy:" -msgstr "מתווך ‏‪HTTP‏_S" +msgstr "מת_ווך HTTPS:" #. egcgL #: cui/uiconfig/ui/optproxypage.ui:240 -#, fuzzy msgctxt "optproxypage|ftpft" msgid "_FTP proxy:" -msgstr "פרוקסי ‏‪_FTP‏" +msgstr "מתוו_ך FTP:" #. ZaUmG #: cui/uiconfig/ui/optproxypage.ui:254 @@ -16398,17 +16154,15 @@ #. UynC6 #: cui/uiconfig/ui/optproxypage.ui:268 -#, fuzzy msgctxt "optproxypage|httpsportft" msgid "P_ort:" -msgstr "מספר כניסה ‏‪(port number)‬‏‏" +msgstr "_פתחה:" #. kmBDu #: cui/uiconfig/ui/optproxypage.ui:281 -#, fuzzy msgctxt "optproxypage|ftpportft" msgid "P_ort:" -msgstr "מספר כניסה ‏‪(port number)‬‏‏" +msgstr "_פתחה:" #. RW6E4 #: cui/uiconfig/ui/optproxypage.ui:294 @@ -16460,10 +16214,9 @@ #. bLvCX #: cui/uiconfig/ui/optsavepage.ui:111 -#, fuzzy msgctxt "optsavepage|autosave" msgid "Save _AutoRecovery information every:" -msgstr "שמירת מידע להתאוששות אוטומטית כל" +msgstr "שמירת מידע להתאוששות _אוטומטית כל:" #. a9xDP #: cui/uiconfig/ui/optsavepage.ui:119 @@ -16479,7 +16232,6 @@ #. BN5Js #: cui/uiconfig/ui/optsavepage.ui:150 -#, fuzzy msgctxt "optsavepage|autosave_mins" msgid "minutes" msgstr "דקות" @@ -16583,7 +16335,6 @@ #. k3jkA #: cui/uiconfig/ui/optsavepage.ui:354 -#, fuzzy msgctxt "optsavepage|odfversion" msgid "1.2 Extended (compatibility mode)" msgstr "1.2 מורחב (מצב תאימות)" @@ -16598,7 +16349,7 @@ #: cui/uiconfig/ui/optsavepage.ui:356 msgctxt "optsavepage|odfversion" msgid "1.3" -msgstr "" +msgstr "1.3" #. e6EP2 #: cui/uiconfig/ui/optsavepage.ui:357 @@ -16764,10 +16515,9 @@ #. rDJXk #: cui/uiconfig/ui/optsecuritypage.ui:206 -#, fuzzy msgctxt "optsecuritypage|label3" msgid "Macro Security" -msgstr "אבטחת מאקרויים" +msgstr "אבטחת מאקרו" #. UGTda #: cui/uiconfig/ui/optsecuritypage.ui:243 @@ -16785,13 +16535,13 @@ #: cui/uiconfig/ui/optsecuritypage.ui:270 msgctxt "optsecuritypage|usemasterpassword" msgid "Protected _by a master password (recommended)" -msgstr "מוגן על ידי סיסמא ראשית (מומלץ)" +msgstr "מוגן בסיסמה ראשית (מומלץ)" #. ipcrn #: cui/uiconfig/ui/optsecuritypage.ui:287 msgctxt "optsecuritypage|masterpasswordtext" msgid "Passwords are protected by a master password. You will be asked to enter it once per session, if %PRODUCTNAME retrieves a password from the protected password list." -msgstr "ססמאות מוגנים על ידי ססמה ראשית. תתבקש להזין אותה עם כל הפעלה מחדש של התוכנה, אם %PRODUCTNAME מאחזר ססמה מתוך רשימת הססמאות המוגנות." +msgstr "ססמאות מוגנות בסיסמה ראשית. צריך להקליד אותה עם כל הפעלה מחדש של התוכנה, אם %PRODUCTNAME מושך סיסמה מתוך רשימת הסיסמאות המוגנות." #. 7gzb7 #: cui/uiconfig/ui/optsecuritypage.ui:306 @@ -16801,9 +16551,9 @@ "\n" "Do you want to delete password list and reset master password?" msgstr "" -"ביטול האפשרות לשמירת קבועה של ססמאות, מוחק את רשימת הססמאות השמורות, ומאפסת את הססמה הראשית.\n" +"השבתת הפונקציה לאחסון סיסמאות מוחקת את רשימת הסיסמאות המאוחסנות ומאפסת את הסיסמה הראשית.\n" "\n" -"האם אתה רוצה למחוק את רשימת הססמאות ולאפס את הססמה הראשית?" +"למחוק את רשימת הסיסמאות ולאפס את הסיסמה הראשית?" #. hwg3F #: cui/uiconfig/ui/optsecuritypage.ui:344 @@ -16815,26 +16565,25 @@ #: cui/uiconfig/ui/optsecuritypage.ui:352 msgctxt "extended_tip|connections" msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog." -msgstr "" +msgstr "מבקש את הסיסמה הראשית. אם הסיסמה הראשית נכונה, מוצגת חלונית פרטי חיבורי רשת מאוחסנים." #. SWrMn #: cui/uiconfig/ui/optsecuritypage.ui:374 msgctxt "optsecuritypage|masterpassword" msgid "_Master Password..." -msgstr "" +msgstr "סיסמה _ראשית…" #. w3TQo #: cui/uiconfig/ui/optsecuritypage.ui:382 msgctxt "extended_tip|masterpassword" msgid "Opens the Enter Master Password dialog." -msgstr "" +msgstr "פותח את חלונית מילוי הסיסמה הראשית." #. UtNEn #: cui/uiconfig/ui/optsecuritypage.ui:409 -#, fuzzy msgctxt "optsecuritypage|label2" msgid "Passwords for Web Connections" -msgstr "ססמאות לחיבורי אינטרנט" +msgstr "סיסמאות לחיבורי רשת" #. EYFvA #: cui/uiconfig/ui/optsecuritypage.ui:442 @@ -16846,17 +16595,16 @@ #: cui/uiconfig/ui/optsecuritypage.ui:455 msgctxt "optsecuritypage|options" msgid "O_ptions..." -msgstr "אפשרויות" +msgstr "_אפשרויות…" #. pepKZ #: cui/uiconfig/ui/optsecuritypage.ui:463 msgctxt "extended_tip|options" msgid "Opens the \"Security Options and Warnings\" dialog." -msgstr "" +msgstr "פותח את החלונית „אפשרויות ואזהרות אבטחה”." #. GqVkJ #: cui/uiconfig/ui/optsecuritypage.ui:478 -#, fuzzy msgctxt "optsecuritypage|label1" msgid "Security Options and Warnings" msgstr "אפשרויות ואזהרות אבטחה" @@ -16865,54 +16613,49 @@ #: cui/uiconfig/ui/optsecuritypage.ui:492 msgctxt "extended_tip|OptSecurityPage" msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros." -msgstr "" +msgstr "מגדיר את אפשרויות האבטחה לשמירת מסמכים, לחיבורי אינטרנט ולפתיחת מסמכים שמכילים תסריטי מאקרו." #. FPuvb #: cui/uiconfig/ui/optuserpage.ui:31 -#, fuzzy msgctxt "optuserpage|companyft" msgid "_Company:" -msgstr "חברה" +msgstr "_חברה:" #. 33C7p #: cui/uiconfig/ui/optuserpage.ui:46 -#, fuzzy msgctxt "optuserpage|nameft" msgid "First/last _name/initials:" -msgstr "שם פרטי/משפחה/ראשי תיבות" +msgstr "שם פרטי/משפחה/_ראשי תיבות:" #. Rgktm #: cui/uiconfig/ui/optuserpage.ui:61 -#, fuzzy msgctxt "optuserpage|streetft" msgid "_Street:" -msgstr "רחוב" +msgstr "רחו_ב:" #. 3P3Eq #: cui/uiconfig/ui/optuserpage.ui:76 -#, fuzzy msgctxt "optuserpage|cityft" msgid "City/state/_zip:" -msgstr "_עיר/מדינה/מיקוד" +msgstr "_עיר/מדינה/מיקוד:" #. 63aAc #: cui/uiconfig/ui/optuserpage.ui:91 msgctxt "optuserpage|countryft" msgid "Country/re_gion:" -msgstr "מדינה/א_זור:" +msgstr "ארץ/א_זור:" #. bBdEE #: cui/uiconfig/ui/optuserpage.ui:106 -#, fuzzy msgctxt "optuserpage|titleft" msgid "_Title/position:" -msgstr "תואר/משרה" +msgstr "_תואר/משרה:" #. AmX9k #: cui/uiconfig/ui/optuserpage.ui:121 msgctxt "optuserpage|phoneft" msgid "Telephone (home/_work):" -msgstr "" +msgstr "טלפון (_בית/עבודה):" #. pkps7 #: cui/uiconfig/ui/optuserpage.ui:127 @@ -16924,7 +16667,7 @@ #: cui/uiconfig/ui/optuserpage.ui:141 msgctxt "optuserpage|faxft" msgid "Fa_x/email:" -msgstr "" +msgstr "פ_קס/דוא״ל:" #. ZYaYQ #: cui/uiconfig/ui/optuserpage.ui:167 @@ -16936,7 +16679,7 @@ #: cui/uiconfig/ui/optuserpage.ui:168 msgctxt "extended tip | firstname" msgid "Type your first name." -msgstr "" +msgstr "נא למלא את השם הפרטי שלך." #. kW7rP #: cui/uiconfig/ui/optuserpage.ui:187 @@ -16948,7 +16691,7 @@ #: cui/uiconfig/ui/optuserpage.ui:188 msgctxt "extended tip | lastname" msgid "Type your last name." -msgstr "" +msgstr "נא למלא את שם המשפחה שלך." #. DuFHY #: cui/uiconfig/ui/optuserpage.ui:207 @@ -16960,7 +16703,7 @@ #: cui/uiconfig/ui/optuserpage.ui:208 msgctxt "extended tip | shortname" msgid "Type your initials." -msgstr "" +msgstr "נא למלא את הראשי התיבות שלך." #. Emfwm #: cui/uiconfig/ui/optuserpage.ui:239 @@ -16972,19 +16715,19 @@ #: cui/uiconfig/ui/optuserpage.ui:240 msgctxt "extended tip | city" msgid "Type the city where you live." -msgstr "" +msgstr "נא למלא את עיר מגוריך." #. CnJ3K #: cui/uiconfig/ui/optuserpage.ui:259 msgctxt "state-atkobject" msgid "State" -msgstr "מחוז" +msgstr "מדינה" #. y652V #: cui/uiconfig/ui/optuserpage.ui:260 msgctxt "extended tip | state" msgid "Type your state." -msgstr "" +msgstr "נא למלא את מדינת מגוריך." #. ADpC7 #: cui/uiconfig/ui/optuserpage.ui:279 @@ -16996,7 +16739,7 @@ #: cui/uiconfig/ui/optuserpage.ui:280 msgctxt "extended tip | zip" msgid "Type your ZIP in this field." -msgstr "" +msgstr "נא למלא את המיקוד/ZIP שלך בשדה הזה." #. p45Kt #: cui/uiconfig/ui/optuserpage.ui:312 @@ -17008,19 +16751,19 @@ #: cui/uiconfig/ui/optuserpage.ui:313 msgctxt "extended tip | title" msgid "Type your title in this field." -msgstr "" +msgstr "נא למלא את התיאור שלך בשדה הזה." #. HCiNt #: cui/uiconfig/ui/optuserpage.ui:332 msgctxt "position-atkobject" msgid "Position" -msgstr "מיקום" +msgstr "תפקיד" #. QGc4K #: cui/uiconfig/ui/optuserpage.ui:333 msgctxt "extended tip | position" msgid "Type your position in the company in this field." -msgstr "" +msgstr "נא למלא את התפקיד שלך בחברה בשדה הזה." #. qhkwG #: cui/uiconfig/ui/optuserpage.ui:364 @@ -17032,7 +16775,7 @@ #: cui/uiconfig/ui/optuserpage.ui:365 msgctxt "extended tip | home" msgid "Type your private telephone number in this field." -msgstr "" +msgstr "נא להקליד את מספר הטלפון הפרטי שלך בשדה הזה." #. SfmfD #: cui/uiconfig/ui/optuserpage.ui:384 @@ -17044,19 +16787,19 @@ #: cui/uiconfig/ui/optuserpage.ui:385 msgctxt "extended tip | work" msgid "Type your work number in this field." -msgstr "" +msgstr "נא למלא את מספר הטלפון שלך בעבודה בשדה הזה." #. VEhd3 #: cui/uiconfig/ui/optuserpage.ui:417 msgctxt "fax-atkobject" msgid "Fax number" -msgstr "" +msgstr "מספר פקס" #. CtsEr #: cui/uiconfig/ui/optuserpage.ui:418 msgctxt "extended tip | fax" msgid "Type your fax number in this field." -msgstr "" +msgstr "נא למלא את מספר הפקס שלך בשדה הזה." #. 8BG5j #: cui/uiconfig/ui/optuserpage.ui:437 @@ -17068,7 +16811,7 @@ #: cui/uiconfig/ui/optuserpage.ui:438 msgctxt "extended tip | email" msgid "Type your email address." -msgstr "" +msgstr "נא להקליד את כתובת הדוא״ל שלך." #. eygE2 #: cui/uiconfig/ui/optuserpage.ui:455 @@ -17080,13 +16823,13 @@ #: cui/uiconfig/ui/optuserpage.ui:463 msgctxt "extended tips | usefordoprop" msgid "Mark to use the data in document properties" -msgstr "" +msgstr "יש לסמן כדי להשתמש בנתונים במאפייני המסמך" #. ZngAH #: cui/uiconfig/ui/optuserpage.ui:478 msgctxt "optuserpage|rusnameft" msgid "Last/first/father’s _name/initials:" -msgstr "" +msgstr "משפחה/_פרטי/פטרונים/ראשית תיבות:" #. 9GPga #: cui/uiconfig/ui/optuserpage.ui:504 @@ -17098,19 +16841,19 @@ #: cui/uiconfig/ui/optuserpage.ui:505 msgctxt "extended tip | ruslastname" msgid "Type your last name." -msgstr "" +msgstr "נא למלא את שם המשפחה שלך." #. gCfx3 #: cui/uiconfig/ui/optuserpage.ui:524 msgctxt "rusfathersname-atkobject" msgid "Father's name" -msgstr "שם האב" +msgstr "פטרונים" #. WurmE #: cui/uiconfig/ui/optuserpage.ui:525 msgctxt "extended tips | rusfathersname" msgid "Type your father's name" -msgstr "" +msgstr "נא למלא את הפטרונים שלך" #. pAF2D #: cui/uiconfig/ui/optuserpage.ui:544 @@ -17122,7 +16865,7 @@ #: cui/uiconfig/ui/optuserpage.ui:545 msgctxt "extended tip | russhortname" msgid "Type your initials." -msgstr "" +msgstr "נא למלא את ראשי התיבות שלך." #. byLGz #: cui/uiconfig/ui/optuserpage.ui:564 @@ -17134,14 +16877,13 @@ #: cui/uiconfig/ui/optuserpage.ui:565 msgctxt "extended tip | rusfirstname" msgid "Type your first name." -msgstr "" +msgstr "נא למלא את השם הפרטי שלך." #. 4qdC2 #: cui/uiconfig/ui/optuserpage.ui:585 -#, fuzzy msgctxt "optuserpage|eastnameft" msgid "Last/first _name/initials:" -msgstr "שם פרטי/משפחה/ראשי תיבות" +msgstr "שם _פרטי/משפחה/ראשי תיבות:" #. Emtmj #: cui/uiconfig/ui/optuserpage.ui:611 @@ -17153,7 +16895,7 @@ #: cui/uiconfig/ui/optuserpage.ui:612 msgctxt "extended tip | eastlastname" msgid "Type your last name." -msgstr "" +msgstr "נא למלא את שם המשפחה שלך." #. 6MrBD #: cui/uiconfig/ui/optuserpage.ui:631 @@ -17165,7 +16907,7 @@ #: cui/uiconfig/ui/optuserpage.ui:632 msgctxt "extended tip | eastfirstname" msgid "Type your first name." -msgstr "" +msgstr "נא למלא את השם הפרטי שלך." #. mebNB #: cui/uiconfig/ui/optuserpage.ui:651 @@ -17177,14 +16919,13 @@ #: cui/uiconfig/ui/optuserpage.ui:652 msgctxt "extended tip | eastshortname" msgid "Type your initials." -msgstr "" +msgstr "נא למלא את ראשי התיבות של השם שלך." #. NGEU9 #: cui/uiconfig/ui/optuserpage.ui:672 -#, fuzzy msgctxt "optuserpage|russtreetft" msgid "_Street/apartment number:" -msgstr "_רחוב/מס׳ דירה" +msgstr "מס׳ ב_רחוב/דירה" #. oxw3f #: cui/uiconfig/ui/optuserpage.ui:698 @@ -17196,7 +16937,7 @@ #: cui/uiconfig/ui/optuserpage.ui:699 msgctxt "extended tips | russrteet" msgid "Type the name of your street in this field." -msgstr "" +msgstr "נא למלא את שם הרחוב שלך בשדה הזה." #. QxpMF #: cui/uiconfig/ui/optuserpage.ui:718 @@ -17208,14 +16949,13 @@ #: cui/uiconfig/ui/optuserpage.ui:719 msgctxt "extended tips | apartnum" msgid "Type your apartment number" -msgstr "" +msgstr "נא למלא את מספר הדירה שלך" #. 8kEFB #: cui/uiconfig/ui/optuserpage.ui:739 -#, fuzzy msgctxt "optuserpage|icityft" msgid "_Zip/city:" -msgstr "מיקוד/_עיר" +msgstr "מיקוד/_עיר:" #. RhK5j #: cui/uiconfig/ui/optuserpage.ui:765 @@ -17227,7 +16967,7 @@ #: cui/uiconfig/ui/optuserpage.ui:766 msgctxt "extended tip | icity" msgid "Type the city where you live." -msgstr "" +msgstr "נא למלא את עיר מגוריך." #. Hdniz #: cui/uiconfig/ui/optuserpage.ui:785 @@ -17239,25 +16979,25 @@ #: cui/uiconfig/ui/optuserpage.ui:786 msgctxt "extended tip | izip" msgid "Type your ZIP in this field." -msgstr "" +msgstr "נא למלא את המיקוד/ZIP שלך בשדה הזה." #. VbiGF #: cui/uiconfig/ui/optuserpage.ui:817 msgctxt "extended tip | street" msgid "Type the name of your street in this field." -msgstr "" +msgstr "נא למלא את שם רחוב מגוריך בשדה הזה." #. As2sL #: cui/uiconfig/ui/optuserpage.ui:848 msgctxt "extended tips | country" msgid "Type your country and region" -msgstr "" +msgstr "נא למלא את הארץ והאזור שלך" #. Lw69w #: cui/uiconfig/ui/optuserpage.ui:879 msgctxt "extended tip | company" msgid "Type the name of your company in this field." -msgstr "" +msgstr "נא למלא את שם החברה שלך בשדה הזה." #. 9v6o6 #: cui/uiconfig/ui/optuserpage.ui:900 @@ -17269,67 +17009,67 @@ #: cui/uiconfig/ui/optuserpage.ui:932 msgctxt "optuserpage|signingkeylabel" msgid "OpenPGP signing key:" -msgstr "" +msgstr "מפתח חתימת OpenPGP:" #. 4KEFW #: cui/uiconfig/ui/optuserpage.ui:946 msgctxt "optuserpage|encryptionkeylabel" msgid "OpenPGP encryption key:" -msgstr "" +msgstr "מפתח הצפנת OpenPGP:" #. GCS8p #: cui/uiconfig/ui/optuserpage.ui:962 cui/uiconfig/ui/optuserpage.ui:981 msgctxt "optuserpage|liststore1" msgid "No key" -msgstr "" +msgstr "אין מפתח" #. UJXE4 #: cui/uiconfig/ui/optuserpage.ui:966 msgctxt "extended tip | encryptionkey" msgid "Select your OpenPGP key from the drop-down list for encrypting ODF documents." -msgstr "" +msgstr "נא לבחור את מפתח ה־OpenPGP שלך מהרשימה הנפתחת להצפנת מסמכי ODF." #. m27Ub #: cui/uiconfig/ui/optuserpage.ui:985 msgctxt "extended tip | signingkey" msgid "Select your OpenPGP key from the drop-down list for signing ODF documents." -msgstr "" +msgstr "נא לבחור את מפתח ה־OpenPGP שלך מהרשימה הנפתחת לחתימת מסמכי ODF." #. 8USbk #: cui/uiconfig/ui/optuserpage.ui:996 msgctxt "optuserpage|encrypttoself" msgid "When encrypting documents, always encrypt to self" -msgstr "" +msgstr "בעת הצפנת מסמכים, תמיד להצפין לעצמי" #. FaxaF #: cui/uiconfig/ui/optuserpage.ui:1004 msgctxt "extended tip | encrypttoself" msgid "Mark this checkbox to also encrypt the file with your public key, so you can open the document with your private key." -msgstr "" +msgstr "יש לסמן את התיבה הזאת כדי להצפין את הקובץ גם עם המפתח הציבורי שלך, כדי לאפשר לך לפתוח את המסמך עם המפתח הפרטי שלך." #. P5BBC #: cui/uiconfig/ui/optuserpage.ui:1020 msgctxt "optuserpage|cryptographylabel" msgid "Cryptography" -msgstr "" +msgstr "קריפטוגרפיה" #. PjCQu #: cui/uiconfig/ui/optuserpage.ui:1036 msgctxt "extended tip | OptUserPage" msgid "Use this tab page to enter or edit user data." -msgstr "" +msgstr "יש להשתמש בדף לשונית זה כדי למלא או לערוך נתוני משתמש." #. DryvE #: cui/uiconfig/ui/optviewpage.ui:48 msgctxt "optviewpage|label11" msgid "_Positioning:" -msgstr "" +msgstr "מי_קום:" #. E6zhJ #: cui/uiconfig/ui/optviewpage.ui:62 msgctxt "optviewpage|label12" msgid "Middle _button:" -msgstr "" +msgstr "כפתור _אמצעי:" #. 3rdJa #: cui/uiconfig/ui/optviewpage.ui:78 @@ -17341,7 +17081,7 @@ #: cui/uiconfig/ui/optviewpage.ui:79 msgctxt "optviewpage|mousepos" msgid "Dialog center" -msgstr "מרכז הדו שיח" +msgstr "מרכז החלונית" #. UHeFm #: cui/uiconfig/ui/optviewpage.ui:80 @@ -17353,7 +17093,7 @@ #: cui/uiconfig/ui/optviewpage.ui:84 msgctxt "extended_tip | mousepos" msgid "Specifies if and how the mouse pointer will be positioned in newly opened dialogs." -msgstr "" +msgstr "מציין אם ואיך סמן העכבר יוצג בחלוניות חדשות שנפתחות." #. GCAp5 #: cui/uiconfig/ui/optviewpage.ui:99 @@ -17377,7 +17117,7 @@ #: cui/uiconfig/ui/optviewpage.ui:105 msgctxt "extended_tip | mousemiddle" msgid "Defines the function of the middle mouse button." -msgstr "" +msgstr "מגדיר את אופן תפקוד כפתור העכבר האמצעי." #. NbJKy #: cui/uiconfig/ui/optviewpage.ui:120 @@ -17413,14 +17153,13 @@ #: cui/uiconfig/ui/optviewpage.ui:179 msgctxt "extended_tip | menuicons" msgid "Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes." -msgstr "" +msgstr "מציג סמלים ליד פריטי התפריט המתאימים. יש לבחור ב„אוטומטי”, „להציג” או „להסתיר”. כאשר „אוטומטי” מציג סמלים בהתאם להגדרות וערכות העיצוב של המערכת." #. evVAC #: cui/uiconfig/ui/optviewpage.ui:207 -#, fuzzy msgctxt "optviewpage|contextmenushortcuts" msgid "Automatic" -msgstr "אוטומטית" +msgstr "אוטומטי" #. 36Dg2 #: cui/uiconfig/ui/optviewpage.ui:208 @@ -17468,7 +17207,7 @@ #: cui/uiconfig/ui/optviewpage.ui:284 msgctxt "extended_tip | notebookbariconsize" msgid "Specifies the display size of notebook bar icons." -msgstr "" +msgstr "מציין את גודל תצוגת סמלי סרגל המחברת." #. G8qAD #: cui/uiconfig/ui/optviewpage.ui:297 @@ -17498,7 +17237,7 @@ #: cui/uiconfig/ui/optviewpage.ui:319 msgctxt "extended_tip | sidebariconsize" msgid "Specifies the display size of sidebar icons." -msgstr "" +msgstr "מציין את גודל תצוגת סמלי סרגל הצד." #. kPSBA #: cui/uiconfig/ui/optviewpage.ui:332 @@ -17534,7 +17273,7 @@ #: cui/uiconfig/ui/optviewpage.ui:355 msgctxt "extended_tip | iconsize" msgid "Specifies the display size of toolbar icons." -msgstr "" +msgstr "מציין את גודל תצוגת סמלי סרגל הכלים." #. PdeBj #: cui/uiconfig/ui/optviewpage.ui:368 @@ -17546,7 +17285,7 @@ #: cui/uiconfig/ui/optviewpage.ui:384 msgctxt "optviewpage|label1" msgid "Icon Size" -msgstr "" +msgstr "גודל סמלים" #. 8CiB5 #: cui/uiconfig/ui/optviewpage.ui:418 @@ -17570,25 +17309,25 @@ #: cui/uiconfig/ui/optviewpage.ui:424 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." -msgstr "" +msgstr "מציין את סגנון הסמלים לסמלים בסרגלי כלים וחלוניות." #. SXzWW #: cui/uiconfig/ui/optviewpage.ui:437 msgctxt "optviewpage|label6" msgid "_Theme:" -msgstr "" +msgstr "_ערכת עיצוב:" #. StBQN #: cui/uiconfig/ui/optviewpage.ui:452 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" -msgstr "" +msgstr "אפשר להוסיף סמלים נוספים דרך הרחבה" #. F7kTw #: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|label1" msgid "Icon Theme" -msgstr "" +msgstr "ערכת סמלים" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:503 @@ -17702,14 +17441,13 @@ #: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" -msgstr "" +msgstr "הרצת בדיקות גרפיות" #. 872fQ #: cui/uiconfig/ui/pageformatpage.ui:41 -#, fuzzy msgctxt "pageformatpage|labelFormat" msgid "_Format:" -msgstr "ת_בנית" +msgstr "_עיצוב:" #. WTZ5A #: cui/uiconfig/ui/pageformatpage.ui:65 @@ -17755,10 +17493,9 @@ #. u8DFb #: cui/uiconfig/ui/pageformatpage.ui:264 -#, fuzzy msgctxt "pageformatpage|labelPaperFormat" msgid "Paper Format" -msgstr "צורת הדף" +msgstr "עיצוב הדף" #. 479hs #: cui/uiconfig/ui/pageformatpage.ui:309 @@ -17768,10 +17505,9 @@ #. EoGm2 #: cui/uiconfig/ui/pageformatpage.ui:323 -#, fuzzy msgctxt "pageformatpage|labelInner" msgid "I_nner:" -msgstr "~פנימי:" +msgstr "_פנימי:" #. 7FFiR #: cui/uiconfig/ui/pageformatpage.ui:361 @@ -17781,10 +17517,9 @@ #. RfnGu #: cui/uiconfig/ui/pageformatpage.ui:375 -#, fuzzy msgctxt "pageformatpage|labelOuter" msgid "O_uter:" -msgstr "~חיצוני:" +msgstr "_חיצוני:" #. tGMLA #: cui/uiconfig/ui/pageformatpage.ui:408 @@ -17905,13 +17640,13 @@ #: cui/uiconfig/ui/pageformatpage.ui:690 msgctxt "pageformatpage|liststoreGutterPosition" msgid "Left" -msgstr "" +msgstr "שמאל" #. DSBY5 #: cui/uiconfig/ui/pageformatpage.ui:691 msgctxt "pageformatpage|liststoreGutterPosition" msgid "Top" -msgstr "" +msgstr "למעלה" #. AosV5 #: cui/uiconfig/ui/pageformatpage.ui:701 @@ -17940,7 +17675,6 @@ #. xdECe #: cui/uiconfig/ui/pageformatpage.ui:754 -#, fuzzy msgctxt "pageformatpage|label5" msgid "Layout Settings" msgstr "הגדרות מתווה" @@ -17971,10 +17705,9 @@ #. uuHyT #: cui/uiconfig/ui/paragalignpage.ui:91 -#, fuzzy msgctxt "paragalignpage|radioBTN_RIGHTALIGN" msgid "_Right" -msgstr "ימין" +msgstr "י_מין" #. anEQu #: cui/uiconfig/ui/paragalignpage.ui:106 @@ -18045,10 +17778,9 @@ #. 4gLpc #: cui/uiconfig/ui/paragalignpage.ui:279 -#, fuzzy msgctxt "paragalignpage|labelFT_VERTALIGN" msgid "_Alignment:" -msgstr "יישור" +msgstr "יי_שור:" #. XsDLG #: cui/uiconfig/ui/paragalignpage.ui:296 @@ -18084,7 +17816,7 @@ #: cui/uiconfig/ui/paragalignpage.ui:315 msgctxt "paragalignpage|labelFL_VERTALIGN" msgid "Text-to-text" -msgstr "" +msgstr "טקסט-לטקסט" #. wcho5 #: cui/uiconfig/ui/paragalignpage.ui:344 @@ -18124,10 +17856,9 @@ #. jwo9n #: cui/uiconfig/ui/paraindentspacing.ui:153 -#, fuzzy msgctxt "paraindentspacing|checkCB_AUTO" msgid "_Automatic" -msgstr "אוטומטי" +msgstr "_אוטומטי" #. NE9g8 #: cui/uiconfig/ui/paraindentspacing.ui:155 @@ -18149,10 +17880,9 @@ #. RMdgy #: cui/uiconfig/ui/paraindentspacing.ui:258 -#, fuzzy msgctxt "paraindentspacing|labelFT_TOPDIST" msgid "Ab_ove paragraph:" -msgstr "הזזת פסקאות" +msgstr "מ_על לפסקה:" #. mTi8C #: cui/uiconfig/ui/paraindentspacing.ui:272 @@ -18180,17 +17910,15 @@ #. 5qPNL #: cui/uiconfig/ui/paraindentspacing.ui:379 -#, fuzzy msgctxt "paraindentspacing|liststoreLB_LINEDIST" msgid "1.15 Lines" -msgstr "1.5 רווח" +msgstr "1.15 שורות" #. GxLCB #: cui/uiconfig/ui/paraindentspacing.ui:380 -#, fuzzy msgctxt "paraindentspacing|liststoreLB_LINEDIST" msgid "1.5 Lines" -msgstr "1.5 רווח" +msgstr "1.5 שורות" #. cD4RR #: cui/uiconfig/ui/paraindentspacing.ui:381 @@ -18206,17 +17934,15 @@ #. XN6ri #: cui/uiconfig/ui/paraindentspacing.ui:383 -#, fuzzy msgctxt "paraindentspacing|liststoreLB_LINEDIST" msgid "At least" msgstr "לפחות" #. NYeFC #: cui/uiconfig/ui/paraindentspacing.ui:384 -#, fuzzy msgctxt "paraindentspacing|liststoreLB_LINEDIST" msgid "Leading" -msgstr "כותרת" +msgstr "מוביל" #. 9fdqy #: cui/uiconfig/ui/paraindentspacing.ui:397 @@ -18257,10 +17983,9 @@ #. 7wy7e #: cui/uiconfig/ui/paratabspage.ui:146 -#, fuzzy msgctxt "paratabspage|radiobuttonBTN_TABTYPE_DECIMAL" msgid "Deci_mal" -msgstr "עשרוני" +msgstr "_עשרוני" #. JHWqh #: cui/uiconfig/ui/paratabspage.ui:218 @@ -18276,10 +18001,9 @@ #. dtaBp #: cui/uiconfig/ui/paratabspage.ui:259 -#, fuzzy msgctxt "paratabspage|radiobuttonBTN_TABTYPE_RIGHT" msgid "Righ_t" -msgstr "ימין" +msgstr "י_מין" #. tGgBU #: cui/uiconfig/ui/paratabspage.ui:274 @@ -18290,10 +18014,9 @@ #. fDVEt #: cui/uiconfig/ui/paratabspage.ui:295 -#, fuzzy msgctxt "paratabspage|radiobuttonBTN_TABTYPE_CENTER" msgid "C_entered" -msgstr "ממורכז" +msgstr "_ממורכז" #. SaPSF #: cui/uiconfig/ui/paratabspage.ui:313 @@ -18309,17 +18032,15 @@ #. vFnHY #: cui/uiconfig/ui/paratabspage.ui:361 -#, fuzzy msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_NO" msgid "N_one" -msgstr "ללא" +msgstr "_ללא" #. v5JLo #: cui/uiconfig/ui/paratabspage.ui:425 -#, fuzzy msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_OTHER" msgid "C_haracter" -msgstr "תו" +msgstr "_תו" #. EsqLF #: cui/uiconfig/ui/paratabspage.ui:462 @@ -18330,10 +18051,9 @@ #. uG6Rn #: cui/uiconfig/ui/paratabspage.ui:500 -#, fuzzy msgctxt "paratabspage|buttonBTN_DELALL" msgid "Delete _all" -msgstr "מחיקת ה_אחרונים" +msgstr "מחיקה של ה_כול" #. qctkA #: cui/uiconfig/ui/paratabspage.ui:521 @@ -18349,16 +18069,15 @@ #. GcMMk #: cui/uiconfig/ui/paratabspage.ui:547 -#, fuzzy msgctxt "paratabspage|label5" msgid "dashes" -msgstr "מיקוף" +msgstr "מקפים" #. CYnkr #: cui/uiconfig/ui/paratabspage.ui:560 msgctxt "paratabspage|label6" msgid "underscores" -msgstr "" +msgstr "קווים תחתיים" #. qAMT2 #: cui/uiconfig/ui/password.ui:8 @@ -18494,21 +18213,18 @@ #. SnESZ #: cui/uiconfig/ui/patterntabpage.ui:113 -#, fuzzy msgctxt "patterntabpage|label3" msgid "Pattern" msgstr "תבנית" #. qr5PS #: cui/uiconfig/ui/patterntabpage.ui:155 -#, fuzzy msgctxt "patterntabpage|label4" msgid "Pattern Editor:" -msgstr "ערוך תבניות:" +msgstr "עורך תבניות:" #. 7nWqN #: cui/uiconfig/ui/patterntabpage.ui:186 -#, fuzzy msgctxt "patterntabpage|CTL_PIXEL-atkobject" msgid "Pattern Editor" msgstr "עורך תבניות" @@ -18521,10 +18237,9 @@ #. BvHTn #: cui/uiconfig/ui/patterntabpage.ui:218 -#, fuzzy msgctxt "patterntabpage|label5" msgid "Foreground Color:" -msgstr "צבע רקע" +msgstr "צבע חזית:" #. EkYFZ #: cui/uiconfig/ui/patterntabpage.ui:242 @@ -18534,10 +18249,9 @@ #. S8mpk #: cui/uiconfig/ui/patterntabpage.ui:269 -#, fuzzy msgctxt "patterntabpage|label6" msgid "Background Color:" -msgstr "צבע רקע" +msgstr "צבע רקע:" #. h8fmT #: cui/uiconfig/ui/patterntabpage.ui:293 @@ -18577,7 +18291,6 @@ #. ane2B #: cui/uiconfig/ui/percentdialog.ui:93 -#, fuzzy msgctxt "percentdialog|label1" msgid "Minimum Size" msgstr "גודל מזערי" @@ -18590,28 +18303,27 @@ #. 9RySH #: cui/uiconfig/ui/personalization_tab.ui:29 -#, fuzzy msgctxt "personalization_tab|no_persona" msgid "Default look, do not use Themes" -msgstr "מראה פשוט, לא להשתמש בערכות עיצוב" +msgstr "מראה ברירת מחדל, לא להשתמש בערכות עיצוב" #. 3KoUz #: cui/uiconfig/ui/personalization_tab.ui:45 msgctxt "personalization_tab|default_persona" msgid "Preinstalled Theme" -msgstr "" +msgstr "ערכת עיצוב שהותקנה מראש" #. hWiJZ #: cui/uiconfig/ui/personalization_tab.ui:181 msgctxt "personalization_tab|personas_label" msgid "LibreOffice Themes" -msgstr "" +msgstr "ערכות עיצוב של LibreOffice" #. C5MHG #: cui/uiconfig/ui/pickbulletpage.ui:37 msgctxt "pickbulletpage|extended_tip|valueset" msgid "Click the bullet style that you want to use." -msgstr "" +msgstr "יש ללחוץ על סגנון התבליט בו ברצונך להשתמש." #. K4D8E #: cui/uiconfig/ui/pickbulletpage.ui:50 @@ -19014,10 +18726,9 @@ #. 3iZDQ #: cui/uiconfig/ui/posterdialog.ui:178 -#, fuzzy msgctxt "posterdialog|label1" msgid "Parameters" -msgstr "פרמטר" +msgstr "משתנים" #. DoLFC #: cui/uiconfig/ui/posterdialog.ui:203 @@ -19093,7 +18804,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:240 msgctxt "qrcodegen|ErrorCorrection" msgid "Low" -msgstr "" +msgstr "נמוך" #. GeYR9 #: cui/uiconfig/ui/qrcodegen.ui:252 @@ -19105,7 +18816,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:263 msgctxt "qrcodegen|ErrorCorrection" msgid "Medium" -msgstr "" +msgstr "בינוני" #. 3A5XB #: cui/uiconfig/ui/qrcodegen.ui:275 @@ -19129,7 +18840,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:309 msgctxt "qrcodegen|ErrorCorrection" msgid "High" -msgstr "" +msgstr "גבוה" #. A2TRN #: cui/uiconfig/ui/qrcodegen.ui:321 @@ -19147,7 +18858,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:370 msgctxt "qrcodegen|QR Code Properties" msgid "Options" -msgstr "" +msgstr "אפשרויות" #. bAZcM #: cui/uiconfig/ui/qrcodegen.ui:398 @@ -19187,17 +18898,15 @@ #. 3eai8 #: cui/uiconfig/ui/querydeletechartcolordialog.ui:7 -#, fuzzy msgctxt "querydeletechartcolordialog|QueryDeleteChartColorDialog" msgid "Delete Color?" -msgstr "מחיקת עמודה" +msgstr "למחוק צבע?" #. RUXnG #: cui/uiconfig/ui/querydeletechartcolordialog.ui:14 -#, fuzzy msgctxt "querydeletechartcolordialog|QueryDeleteChartColorDialog" msgid "Do you really want to delete the chart color?" -msgstr "האם אכן למחוק את סכימת הצבעים?‏" +msgstr "למחוק את צבע התרשים?" #. XyDCV #: cui/uiconfig/ui/querydeletechartcolordialog.ui:15 @@ -19207,17 +18916,15 @@ #. tDhhU #: cui/uiconfig/ui/querydeletecolordialog.ui:6 -#, fuzzy msgctxt "querydeletecolordialog|AskDelColorDialog" msgid "Delete color?" -msgstr "Delete column" +msgstr "למחוק צבע?" #. mULEd #: cui/uiconfig/ui/querydeletecolordialog.ui:13 -#, fuzzy msgctxt "querydeletecolordialog|AskDelColorDialog" msgid "Do you want to delete the color?" -msgstr "האם למחוק את הערך?‏" +msgstr "למחוק את הצבע?" #. CJz4E #: cui/uiconfig/ui/querydeletedictionarydialog.ui:7 @@ -19245,10 +18952,9 @@ #. GNRDb #: cui/uiconfig/ui/querydeletegradientdialog.ui:14 -#, fuzzy msgctxt "querydeletegradientdialog|AskDelGradientDialog" msgid "Do you want to delete the gradient?" -msgstr "האם למחוק את הערך?‏" +msgstr "למחוק את המדרג?" #. ct8Th #: cui/uiconfig/ui/querydeletehatchdialog.ui:7 @@ -19289,10 +18995,9 @@ #. qLsV8 #: cui/uiconfig/ui/querydeletelinestyledialog.ui:14 -#, fuzzy msgctxt "querydeletelinestyledialog|AskDelLineStyleDialog" msgid "Do you want to delete the line style?" -msgstr "האם למחוק את הערך?‏" +msgstr "למחוק את סגנון הקו?" #. E8Wsm #: cui/uiconfig/ui/queryduplicatedialog.ui:7 @@ -19368,7 +19073,6 @@ #. YmYUq #: cui/uiconfig/ui/recordnumberdialog.ui:13 -#, fuzzy msgctxt "recordnumberdialog|RecordNumberDialog" msgid "Record Number" msgstr "מספר רשומה" @@ -19431,10 +19135,9 @@ #. w4tmF #: cui/uiconfig/ui/rotationtabpage.ui:228 -#, fuzzy msgctxt "rotationtabpage|FT_ANGLE" msgid "_Angle:" -msgstr "זווית" +msgstr "_זווית:" #. 2nqLU #: cui/uiconfig/ui/rotationtabpage.ui:250 @@ -19480,10 +19183,9 @@ #. Qu2bh #: cui/uiconfig/ui/screenshotannotationdialog.ui:42 -#, fuzzy msgctxt "screenshotannotationdialog|save" msgid "Save Screenshot..." -msgstr "שמירת צילום המסך בשם…" +msgstr "שמירת צילום מסך…" #. BsP7f #: cui/uiconfig/ui/screenshotannotationdialog.ui:70 @@ -19625,10 +19327,9 @@ #. TChw9 #: cui/uiconfig/ui/searchformatdialog.ui:473 -#, fuzzy msgctxt "searchformatdialog|labelTP_PARA_ASIAN" msgid "Asian Typography" -msgstr "טפוגרפיה אסייתית" +msgstr "טיפוגרפיה אסייתית" #. CjCNz #: cui/uiconfig/ui/searchformatdialog.ui:521 @@ -19638,7 +19339,6 @@ #. nVjsf #: cui/uiconfig/ui/securityoptionsdialog.ui:8 -#, fuzzy msgctxt "securityoptionsdialog|SecurityOptionsDialog" msgid "Security Options and Warnings" msgstr "אפשרויות ואזהרות אבטחה" @@ -19699,7 +19399,6 @@ #. 3yxBp #: cui/uiconfig/ui/securityoptionsdialog.ui:257 -#, fuzzy msgctxt "securityoptionsdialog|label1" msgid "Security Warnings" msgstr "אזהרות אבטחה" @@ -19754,7 +19453,6 @@ #. vQGT6 #: cui/uiconfig/ui/securityoptionsdialog.ui:421 -#, fuzzy msgctxt "securityoptionsdialog|label2" msgid "Security Options" msgstr "אפשרויות אבטחה" @@ -19767,10 +19465,9 @@ #. md3EB #: cui/uiconfig/ui/selectpathdialog.ui:16 -#, fuzzy msgctxt "selectpathdialog|SelectPathDialog" msgid "Select Paths" -msgstr "בחירת נתיב" +msgstr "בחירת נתיבים" #. R45hT #: cui/uiconfig/ui/selectpathdialog.ui:42 @@ -19810,10 +19507,9 @@ #. oADTt #: cui/uiconfig/ui/selectpathdialog.ui:213 -#, fuzzy msgctxt "selectpathdialog|label1" msgid "Paths" -msgstr "נתיב" +msgstr "נתיבים" #. UzFeh #: cui/uiconfig/ui/shadowtabpage.ui:41 @@ -19853,23 +19549,21 @@ #. 4BFuT #: cui/uiconfig/ui/shadowtabpage.ui:177 -#, fuzzy msgctxt "shadowtabpage|FT_DISTANCE" msgid "_Distance:" -msgstr "מרחק" +msgstr "מ_רחק:" #. 5ZBde #: cui/uiconfig/ui/shadowtabpage.ui:191 -#, fuzzy msgctxt "shadowtabpage|FT_SHADOW_COLOR" msgid "_Color:" -msgstr "צבע" +msgstr "_צבע:" #. kGyDZ #: cui/uiconfig/ui/shadowtabpage.ui:205 msgctxt "shadowtabpage|FT_SHADOW_BLUR" msgid "_Blur:" -msgstr "" +msgstr "_טשטוש:" #. DMAGP #: cui/uiconfig/ui/shadowtabpage.ui:219 @@ -19893,7 +19587,7 @@ #: cui/uiconfig/ui/shadowtabpage.ui:310 msgctxt "shadowtabpage|label" msgid "Preview" -msgstr "" +msgstr "תצוגה מקדימה" #. nxBPj #: cui/uiconfig/ui/shadowtabpage.ui:325 @@ -19903,10 +19597,9 @@ #. C7Ct3 #: cui/uiconfig/ui/showcoldialog.ui:16 -#, fuzzy msgctxt "showcoldialog|ShowColDialog" msgid "Show Columns" -msgstr "הצגת ~עמודות" +msgstr "הצגת עמודות" #. AcDS7 #: cui/uiconfig/ui/showcoldialog.ui:84 @@ -19961,21 +19654,21 @@ #: cui/uiconfig/ui/signatureline.ui:165 msgctxt "signatureline|label_name" msgid "Name:" -msgstr "" +msgstr "שם:" #. dMWtK #. Suggested Signer Title #: cui/uiconfig/ui/signatureline.ui:179 msgctxt "signatureline|label_title" msgid "Title:" -msgstr "" +msgstr "כותרת:" #. 48kX8 #. Suggested Signer email #: cui/uiconfig/ui/signatureline.ui:193 msgctxt "signatureline|label_email" msgid "Email:" -msgstr "" +msgstr "דוא״ל:" #. 4C6SW #: cui/uiconfig/ui/signatureline.ui:208 @@ -20023,7 +19716,7 @@ #: cui/uiconfig/ui/signatureline.ui:324 msgctxt "signatureline|label_more" msgid "More" -msgstr "" +msgstr "עוד" #. C5dzF #: cui/uiconfig/ui/signsignatureline.ui:8 @@ -20035,7 +19728,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:53 msgctxt "signsignatureline|ok" msgid "Sign" -msgstr "" +msgstr "חתימה" #. yE7r7 #: cui/uiconfig/ui/signsignatureline.ui:108 @@ -20061,7 +19754,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:140 msgctxt "signsignatureline|label_certificate" msgid "Certificate:" -msgstr "" +msgstr "אישור:" #. 7deCe #: cui/uiconfig/ui/signsignatureline.ui:151 @@ -20080,7 +19773,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:172 msgctxt "signsignatureline|label_name" msgid "or" -msgstr "" +msgstr "או" #. XhtMy #: cui/uiconfig/ui/signsignatureline.ui:181 @@ -20104,7 +19797,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:241 msgctxt "signsignatureline|label_sign" msgid "Sign" -msgstr "" +msgstr "חתימה" #. ViryY #: cui/uiconfig/ui/signsignatureline.ui:275 @@ -20134,7 +19827,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:352 msgctxt "signsignatureline|label_more" msgid "More" -msgstr "" +msgstr "עוד" #. 2LCZd #: cui/uiconfig/ui/similaritysearchdialog.ui:26 @@ -20151,10 +19844,9 @@ #. MDhTd #: cui/uiconfig/ui/similaritysearchdialog.ui:123 -#, fuzzy msgctxt "similaritysearchdialog|label3" msgid "_Add characters:" -msgstr "כ_תו" +msgstr "הו_ספת תווים:" #. LZcB3 #: cui/uiconfig/ui/similaritysearchdialog.ui:137 @@ -20164,10 +19856,9 @@ #. 22YmN #: cui/uiconfig/ui/similaritysearchdialog.ui:149 -#, fuzzy msgctxt "similaritysearchdialog|relaxbox" msgid "_Combine" -msgstr "שילוב" +msgstr "_שילוב" #. FBUtw #: cui/uiconfig/ui/similaritysearchdialog.ui:157 @@ -20231,10 +19922,9 @@ #. krHiw #: cui/uiconfig/ui/slantcornertabpage.ui:188 -#, fuzzy msgctxt "slantcornertabpage|FT_RADIUS" msgid "_Radius:" -msgstr "רדיוס" +msgstr "_רדיוס:" #. v8XnA #: cui/uiconfig/ui/slantcornertabpage.ui:208 @@ -20244,17 +19934,15 @@ #. WVN9Y #: cui/uiconfig/ui/slantcornertabpage.ui:223 -#, fuzzy msgctxt "slantcornertabpage|label1" msgid "Corner Radius" msgstr "רדיוס פינה" #. oVtU3 #: cui/uiconfig/ui/slantcornertabpage.ui:254 -#, fuzzy msgctxt "slantcornertabpage|FT_ANGLE" msgid "_Angle:" -msgstr "זווית" +msgstr "_זווית:" #. sUHCF #: cui/uiconfig/ui/slantcornertabpage.ui:274 @@ -20319,10 +20007,9 @@ #. vfc7b #: cui/uiconfig/ui/smarttagoptionspage.ui:75 -#, fuzzy msgctxt "smarttagoptionspage|properties" msgid "Properties..." -msgstr "תכונות" +msgstr "מאפיינים…" #. fENAa #: cui/uiconfig/ui/smarttagoptionspage.ui:83 @@ -20356,10 +20043,9 @@ #. b62Mc #: cui/uiconfig/ui/smoothdialog.ui:175 -#, fuzzy msgctxt "smoothdialog|label1" msgid "Parameters" -msgstr "פרמטר" +msgstr "משתנים" #. RHoUb #: cui/uiconfig/ui/smoothdialog.ui:200 @@ -20387,10 +20073,9 @@ #. zN2jC #: cui/uiconfig/ui/solarizedialog.ui:167 -#, fuzzy msgctxt "solarizedialog|invert" msgid "_Invert" -msgstr "הכנסה" +msgstr "הי_פוך" #. owmYE #: cui/uiconfig/ui/solarizedialog.ui:175 @@ -20400,10 +20085,9 @@ #. vd8sF #: cui/uiconfig/ui/solarizedialog.ui:196 -#, fuzzy msgctxt "solarizedialog|label1" msgid "Parameters" -msgstr "פרמטר" +msgstr "משתנים" #. Vec6B #: cui/uiconfig/ui/solarizedialog.ui:221 @@ -20431,17 +20115,15 @@ #. mPCRR #: cui/uiconfig/ui/specialcharacters.ui:123 -#, fuzzy msgctxt "specialcharacters|fontft" msgid "Font:" -msgstr "גופן" +msgstr "גופן:" #. 3LCFE #: cui/uiconfig/ui/specialcharacters.ui:137 -#, fuzzy msgctxt "specialcharacters|srchft" msgid "Search:" -msgstr "חיפוש" +msgstr "חיפוש:" #. zPCZ7 #: cui/uiconfig/ui/specialcharacters.ui:166 @@ -20459,14 +20141,13 @@ #: cui/uiconfig/ui/specialcharacters.ui:239 msgctxt "specialcharacters|hexlabel" msgid "Hexadecimal:" -msgstr "" +msgstr "הקסדצימלי:" #. XFFYD #: cui/uiconfig/ui/specialcharacters.ui:294 -#, fuzzy msgctxt "specialcharacters|decimallabel" msgid "Decimal:" -msgstr "עשרוני" +msgstr "עשרוני:" #. UAnec #: cui/uiconfig/ui/specialcharacters.ui:320 @@ -20578,10 +20259,9 @@ #. vTAkA #: cui/uiconfig/ui/spellingdialog.ui:306 -#, fuzzy msgctxt "spellingdialog|insert" msgid "Special Character" -msgstr "תווים מיוחדים" +msgstr "תו מיוחד" #. qLx9c #: cui/uiconfig/ui/spellingdialog.ui:338 @@ -20837,10 +20517,9 @@ #. UpdQN #: cui/uiconfig/ui/swpossizepage.ui:154 -#, fuzzy msgctxt "swpossizepage|ratio" msgid "_Keep ratio" -msgstr "שמירת יחס" +msgstr "שמירת י_חס" #. vRbyX #: cui/uiconfig/ui/swpossizepage.ui:162 @@ -20916,10 +20595,9 @@ #. 7XWqU #: cui/uiconfig/ui/swpossizepage.ui:367 -#, fuzzy msgctxt "swpossizepage|horiposft" msgid "Hori_zontal:" -msgstr "אופקי" +msgstr "או_פקי:" #. nCjCJ #: cui/uiconfig/ui/swpossizepage.ui:381 @@ -20960,10 +20638,9 @@ #. NKeEB #: cui/uiconfig/ui/swpossizepage.ui:472 -#, fuzzy msgctxt "swpossizepage|vertposft" msgid "_Vertical:" -msgstr "אנכי" +msgstr "א_נכי:" #. DRm4w #: cui/uiconfig/ui/swpossizepage.ui:488 @@ -21045,7 +20722,6 @@ #. C7DcB #: cui/uiconfig/ui/textanimtabpage.ui:66 -#, fuzzy msgctxt "textanimtabpage|liststoreEFFECT" msgid "No Effect" msgstr "ללא אפקט" @@ -21082,10 +20758,9 @@ #. FpCUy #: cui/uiconfig/ui/textanimtabpage.ui:95 -#, fuzzy msgctxt "textanimtabpage|FT_DIRECTION" msgid "Direction:" -msgstr "כיוון" +msgstr "כיוון:" #. XD5iJ #: cui/uiconfig/ui/textanimtabpage.ui:115 @@ -21197,10 +20872,9 @@ #. r33uA #: cui/uiconfig/ui/textanimtabpage.ui:326 -#, fuzzy msgctxt "textanimtabpage|TSB_ENDLESS" msgid "_Continuous" -msgstr "רציף" +msgstr "_רציף" #. RBFeu #: cui/uiconfig/ui/textanimtabpage.ui:338 @@ -21218,13 +20892,13 @@ #: cui/uiconfig/ui/textanimtabpage.ui:381 msgctxt "textanimtabpage|FT_AMOUNT" msgid "Increment:" -msgstr "" +msgstr "הגדלה:" #. D2oYy #: cui/uiconfig/ui/textanimtabpage.ui:398 msgctxt "textanimtabpage|TSB_PIXEL" msgid "_Pixels" -msgstr "" +msgstr "_פיקסלים" #. rwAQy #: cui/uiconfig/ui/textanimtabpage.ui:410 @@ -21240,10 +20914,9 @@ #. n9msn #: cui/uiconfig/ui/textanimtabpage.ui:453 -#, fuzzy msgctxt "textanimtabpage|FT_DELAY" msgid "Delay:" -msgstr "ה_שהיה:" +msgstr "השהיה:" #. cKvSH #: cui/uiconfig/ui/textanimtabpage.ui:470 @@ -21278,7 +20951,6 @@ #. 4iDya #: cui/uiconfig/ui/textattrtabpage.ui:58 -#, fuzzy msgctxt "textattrtabpage|TSB_AUTOGROW_WIDTH" msgid "Fit wi_dth to text" msgstr "התאמת ה_רוחב לטקסט" @@ -21427,10 +21099,9 @@ #. PUoRb #: cui/uiconfig/ui/textattrtabpage.ui:458 -#, fuzzy msgctxt "textattrtabpage|TSB_FULL_WIDTH" msgid "Full _width" -msgstr "רוחב מלא" +msgstr "_רוחב מלא" #. jU6YX #: cui/uiconfig/ui/textattrtabpage.ui:467 @@ -21602,10 +21273,9 @@ #. JiDat #: cui/uiconfig/ui/textflowpage.ui:364 -#, fuzzy msgctxt "textflowpage|checkPageStyle" msgid "With page st_yle:" -msgstr "עם סגנון עמוד" +msgstr "_עם סגנון עמוד:" #. RFwGc #: cui/uiconfig/ui/textflowpage.ui:376 @@ -21615,10 +21285,9 @@ #. fMeRA #: cui/uiconfig/ui/textflowpage.ui:389 -#, fuzzy msgctxt "textflowpage|labelType" msgid "_Type:" -msgstr "סוג" +msgstr "_סוג:" #. tX6ag #: cui/uiconfig/ui/textflowpage.ui:411 @@ -21628,17 +21297,15 @@ #. nrtWo #: cui/uiconfig/ui/textflowpage.ui:422 -#, fuzzy msgctxt "textflowpage|labelPageNum" msgid "Page _number:" -msgstr "מספר עמוד" +msgstr "מספר _עמוד:" #. xNBLd #: cui/uiconfig/ui/textflowpage.ui:442 -#, fuzzy msgctxt "textflowpage|labelPosition" msgid "Position:" -msgstr "מיקום" +msgstr "מקום:" #. bFKWE #: cui/uiconfig/ui/textflowpage.ui:462 @@ -21756,14 +21423,12 @@ #. dcEiB #: cui/uiconfig/ui/textflowpage.ui:681 -#, fuzzy msgctxt "textflowpage|labelOrphan" msgid "lines" msgstr "שורות" #. 6swWD #: cui/uiconfig/ui/textflowpage.ui:693 -#, fuzzy msgctxt "textflowpage|labelWidow" msgid "lines" msgstr "שורות" @@ -21890,17 +21555,15 @@ #. x792E #: cui/uiconfig/ui/thesaurus.ui:103 -#, fuzzy msgctxt "thesaurus|label1" msgid "Current word:" -msgstr "מילה נוכחית" +msgstr "מילה נוכחית:" #. GQz9P #: cui/uiconfig/ui/thesaurus.ui:118 -#, fuzzy msgctxt "thesaurus|label2" msgid "Alternatives:" -msgstr "חלופות" +msgstr "חלופות:" #. DqB5k #: cui/uiconfig/ui/thesaurus.ui:133 @@ -22068,7 +21731,7 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:363 msgctxt "ToolbarmodeDialog|rightframe" msgid "Preview" -msgstr "" +msgstr "תצוגה מקדימה" #. WChLB #: cui/uiconfig/ui/transparencytabpage.ui:73 @@ -22096,10 +21759,9 @@ #. mHokD #: cui/uiconfig/ui/transparencytabpage.ui:116 -#, fuzzy msgctxt "transparencytabpage|RBT_TRANS_GRADIENT" msgid "_Gradient" -msgstr "מדרג" +msgstr "מ_דרג" #. 6WDfQ #: cui/uiconfig/ui/transparencytabpage.ui:125 diff -Nru libreoffice-7.4.6/translations/source/he/dbaccess/messages.po libreoffice-7.4.7/translations/source/he/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/he/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/dbaccess/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2021-01-28 07:37+0000\n" +"PO-Revision-Date: 2023-03-12 10:34+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1525075444.000000\n" #. BiN6g @@ -1341,7 +1341,7 @@ #: dbaccess/inc/strings.hrc:242 msgctxt "STR_DEFAULT_VALUE" msgid "~Default value" -msgstr "ערך ~בררת מחדל" +msgstr "ערך ~ברירת מחדל" #. 3AyBV #: dbaccess/inc/strings.hrc:243 @@ -1350,8 +1350,8 @@ "Select a value that is to appear in all new records as default.\n" "If the field is not to have a default value, select the empty string." msgstr "" -"יש לציין ערך בררת מחדל לשדה שיוכנס לכל רשומה חדשה.\n" -"אם לא נדרש ערך בררת מחדל ניתן להשאיר ריק." +"יש לציין ערך ברירת מחדל לשדה שיוכנס לכל רשומה חדשה.\n" +"אם לא נדרש ערך ברירת מחדל ניתן להשאיר ריק." #. AbZU4 #: dbaccess/inc/strings.hrc:244 @@ -1361,7 +1361,7 @@ "\n" "When you later enter data in the table, this string will be used in each new record for the field selected. It should, therefore, correspond to the cell format that needs to be entered below." msgstr "" -"יש לציין ערך בררת מחדל לשדה זה.\n" +"יש לציין ערך ברירת מחדל לשדה זה.\n" "\n" "ערך זה יוכנס לשדה בכל רשומה חדשה. יש להשתמש בערך מתאים לצורת התא למטה." @@ -1513,14 +1513,13 @@ #. Etkrj #: dbaccess/inc/strings.hrc:265 -#, fuzzy msgctxt "STR_HELP_AUTOINCREMENT_VALUE" msgid "" "Enter an SQL statement for the auto-increment field.\n" "\n" "This statement will be directly transferred to the database when the table is created." msgstr "" -"יש להכניס משפט ‏‪SQL‬‏ עבור שדה התיסוף האוטומטי.‏\n" +"יש למלא משפט ‏‪SQL‬‏ עבור שדה ההגדלה האוטומטית.‏\n" "\n" "משפט זה יעובר למסד הנתונים בעת יצירת הטבלה.‏" @@ -1906,13 +1905,13 @@ #: dbaccess/inc/strings.hrc:334 msgctxt "STR_WRITER_PATH_OR_FILE" msgid "Path to the Writer document" -msgstr "" +msgstr "נתיב למסמך ה־Writer" #. JScWd #: dbaccess/inc/strings.hrc:335 msgctxt "STR_MYSQL_DATABASE_NAME" msgid "Name of the MySQL/MariaDB database" -msgstr "" +msgstr "שם מסד הנתונים מסוג MySQL/MariaDB" #. uhRMQ #: dbaccess/inc/strings.hrc:336 @@ -1936,7 +1935,7 @@ #: dbaccess/inc/strings.hrc:339 msgctxt "STR_COMMONURL" msgid "Enter the DBMS/driver-specific connection string here" -msgstr "" +msgstr "נא למלא את מחרוזת החיבור מסוג DBMS/ייעודית למגשר" #. rKH3t #: dbaccess/inc/strings.hrc:340 @@ -2162,7 +2161,7 @@ #: dbaccess/inc/strings.hrc:378 msgctxt "STR_MYSQL_DEFAULT" msgid "Default: 3306" -msgstr "בררת מחדל: 3306‏" +msgstr "ברירת מחדל: 3306‏" #. zDx7G #: dbaccess/inc/strings.hrc:379 @@ -2272,7 +2271,7 @@ #: dbaccess/inc/strings.hrc:393 msgctxt "STR_ORACLE_DEFAULT" msgid "Default: 1521" -msgstr "בררת מחדל: 1521‏" +msgstr "ברירת מחדל: 1521‏" #. dnAP9 #: dbaccess/inc/strings.hrc:394 @@ -3840,7 +3839,7 @@ #: dbaccess/uiconfig/ui/ldapconnectionpage.ui:125 msgctxt "ldapconnectionpage|portNumDefLabel" msgid "Default: 389" -msgstr "בררת מחדל: 389‏" +msgstr "ברירת מחדל: 389‏" #. zAZYs #: dbaccess/uiconfig/ui/ldapconnectionpage.ui:143 @@ -3981,7 +3980,7 @@ #: dbaccess/uiconfig/ui/mysqlnativesettings.ui:139 msgctxt "mysqlnativesettings|defaultport" msgid "Default: 3306" -msgstr "בררת מחדל: 3306‏" +msgstr "ברירת מחדל: 3306‏" #. MQVfg #: dbaccess/uiconfig/ui/mysqlnativesettings.ui:185 @@ -4738,7 +4737,7 @@ #: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:153 msgctxt "specialjdbcconnectionpage|portNumDefLabel" msgid "Default: 3306" -msgstr "בררת מחדל: 3306‏" +msgstr "ברירת מחדל: 3306‏" #. o9YhU #: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:188 @@ -4955,7 +4954,7 @@ #: dbaccess/uiconfig/ui/specialsettingspage.ui:352 msgctxt "specialsettingspage|comparison" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. D7LWx #: dbaccess/uiconfig/ui/specialsettingspage.ui:353 diff -Nru libreoffice-7.4.6/translations/source/he/desktop/messages.po libreoffice-7.4.7/translations/source/he/desktop/messages.po --- libreoffice-7.4.6/translations/source/he/desktop/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/desktop/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2021-01-26 17:36+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565192715.000000\n" #. v2iwK @@ -1007,7 +1007,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:399 msgctxt "extensionmanager|extended_tip|ExtensionManagerDialog" msgid "The Extension Manager adds, removes, disables, enables, and updates extensions." -msgstr "" +msgstr "מנהל ההרחבות מוסיף, מסיר, משבית, מפעיל ומעדכן הרחבות." #. EGwkP #: desktop/uiconfig/ui/installforalldialog.ui:12 @@ -1133,7 +1133,7 @@ #: desktop/uiconfig/ui/updatedialog.ui:228 msgctxt "updatedialog|extended_tip|UPDATE_ALL" msgid "By default, only the downloadable extensions are shown in the dialog. Mark Show all Updates to see also other extensions and error messages." -msgstr "כבררת מחדל, רק ההרחבות שניתן להוריד מופיעות בחלונית. יש לסמן את הצגת כל העדכונים כדי להציג הרחבות והודעות שגיאה נוספות." +msgstr "כברירת מחדל, רק ההרחבות שניתן להוריד מופיעות בחלונית. יש לסמן את הצגת כל העדכונים כדי להציג הרחבות והודעות שגיאה נוספות." #. BriDD #: desktop/uiconfig/ui/updatedialog.ui:257 diff -Nru libreoffice-7.4.6/translations/source/he/dictionaries/ckb.po libreoffice-7.4.7/translations/source/he/dictionaries/ckb.po --- libreoffice-7.4.6/translations/source/he/dictionaries/ckb.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/dictionaries/ckb.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,14 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-02-18 12:38+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-06 11:33+0000\n" +"Last-Translator: Yaron Shahrabani \n" +"Language-Team: Hebrew \n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" #. UGHNx #: description.xml @@ -20,4 +22,4 @@ "dispname\n" "description.text" msgid "Central Kurdish (Sorani) spelling dictionary" -msgstr "" +msgstr "מילון איות לכורדית אמצעית (סוראני)" diff -Nru libreoffice-7.4.6/translations/source/he/dictionaries/pt_BR/dialog.po libreoffice-7.4.7/translations/source/he/dictionaries/pt_BR/dialog.po --- libreoffice-7.4.6/translations/source/he/dictionaries/pt_BR/dialog.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/dictionaries/pt_BR/dialog.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-10-27 20:07+0000\n" +"PO-Revision-Date: 2023-03-06 11:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1395645286.000000\n" #. Bshz7 @@ -385,7 +385,7 @@ "paronimo\n" "property.text" msgid "Paronyms" -msgstr "" +msgstr "פרונימים" #. nJ4AT #: pt_BR_en_US.properties @@ -484,7 +484,7 @@ "hlp_pronominal\n" "property.text" msgid "Position that personal pronouns occupy in relation to the verb." -msgstr "" +msgstr "מקום שכינויי גוף פרטיים ממלאים ביחס לפועל." #. FHPjP #: pt_BR_en_US.properties @@ -493,7 +493,7 @@ "pronominal\n" "property.text" msgid "Pronominal placement" -msgstr "" +msgstr "מיקום פרונומינלי" #. iiTDb #: pt_BR_en_US.properties @@ -502,7 +502,7 @@ "hlp_pronome\n" "property.text" msgid "Use of pronoun." -msgstr "" +msgstr "שימוש בכינויי גוף." #. ETD6e #: pt_BR_en_US.properties @@ -511,7 +511,7 @@ "pronome\n" "property.text" msgid "Use of pronouns" -msgstr "" +msgstr "שימוש בכינויי גוף" #. szSVE #: pt_BR_en_US.properties @@ -520,7 +520,7 @@ "hlp_porque\n" "property.text" msgid "Check for \"porque\", \"por que\", \"porquê\" and \"por quê\"." -msgstr "" +msgstr "בדיקה לאיתור „porque”,‏ „por que”,‏ „porquê” ו־„por quê”." #. 7QjsH #: pt_BR_en_US.properties @@ -529,4 +529,4 @@ "porque\n" "property.text" msgid "Use of \"porquê\"" -msgstr "" +msgstr "שימוש ב־„porquê”" diff -Nru libreoffice-7.4.6/translations/source/he/dictionaries/pt_BR.po libreoffice-7.4.7/translations/source/he/dictionaries/pt_BR.po --- libreoffice-7.4.6/translations/source/he/dictionaries/pt_BR.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/dictionaries/pt_BR.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-11-16 12:08+0100\n" -"PO-Revision-Date: 2013-05-23 23:33+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" +"Last-Translator: Yaron Shahrabani \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1369351988.000000\n" #. svvMk @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Spelling, thesaurus, hyphenation and grammar checking tools for Brazilian Portuguese" -msgstr "" +msgstr "מילון בדיקת איות, אוצר מילים, כללי מיקוף וכלי בדיקת תחביר בפורטוגלית ברזילאית" diff -Nru libreoffice-7.4.6/translations/source/he/editeng/messages.po libreoffice-7.4.7/translations/source/he/editeng/messages.po --- libreoffice-7.4.6/translations/source/he/editeng/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/editeng/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:49+0200\n" -"PO-Revision-Date: 2021-01-26 17:37+0000\n" +"PO-Revision-Date: 2023-03-06 11:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1509029559.000000\n" #. BHYB4 @@ -21,7 +21,7 @@ #: editeng/inc/strings.hrc:19 msgctxt "RID_SVXITEMS_HORJUST_STANDARD" msgid "Horizontal alignment default" -msgstr "בררת מחדל ליישור אופקי" +msgstr "ברירת מחדל ליישור אופקי" #. htWdf #: editeng/inc/strings.hrc:20 @@ -58,7 +58,7 @@ #: editeng/inc/strings.hrc:30 msgctxt "RID_SVXITEMS_VERJUST_STANDARD" msgid "Vertical alignment default" -msgstr "בררת מחדל ליישור אנכי" +msgstr "ברירת מחדל ליישור אנכי" #. xy2FG #: editeng/inc/strings.hrc:31 @@ -1319,25 +1319,25 @@ #: include/editeng/editrids.hrc:233 msgctxt "RID_SVXITEMS_HYPHEN_NO_CAPS_TRUE" msgid "Not hyphenated CAPS" -msgstr "" +msgstr "אותיות גדולות ללא מקף" #. EnQvu #: include/editeng/editrids.hrc:234 msgctxt "RID_SVXITEMS_HYPHEN_NO_CAPS_FALSE" msgid "Not hyphenated last word" -msgstr "" +msgstr "מילה אחרונה ללא מקף" #. gphfE #: include/editeng/editrids.hrc:235 msgctxt "RID_SVXITEMS_HYPHEN_MINWORDLEN" msgid "%1 characters in words" -msgstr "" +msgstr "%1 תווים במילים" #. imVah #: include/editeng/editrids.hrc:236 msgctxt "RID_SVXITEMS_HYPHEN_ZONE" msgid "Hyphenation zone " -msgstr "" +msgstr "אזור מיקוף " #. zVxGk #: include/editeng/editrids.hrc:237 diff -Nru libreoffice-7.4.6/translations/source/he/extensions/messages.po libreoffice-7.4.7/translations/source/he/extensions/messages.po --- libreoffice-7.4.6/translations/source/he/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2021-05-18 15:37+0000\n" +"PO-Revision-Date: 2023-03-26 10:32+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565192741.000000\n" #. cBx8W @@ -523,7 +523,7 @@ #: extensions/inc/stringarrays.hrc:157 msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. eponH #: extensions/inc/stringarrays.hrc:158 @@ -865,7 +865,7 @@ #: extensions/inc/strings.hrc:35 msgctxt "RID_STR_SPIN" msgid "Spin Button" -msgstr "כפתור סיבוב" +msgstr "כפתור טווח" #. L45LN #: extensions/inc/strings.hrc:36 @@ -955,7 +955,7 @@ #: extensions/inc/strings.hrc:50 msgctxt "RID_STR_DEFAULT_BUTTON" msgid "Default button" -msgstr "כפתור בררת מחדל" +msgstr "כפתור ברירת מחדל" #. xC6rd #: extensions/inc/strings.hrc:51 @@ -1387,7 +1387,7 @@ #: extensions/inc/strings.hrc:122 msgctxt "RID_STR_DEFAULT_STATE" msgid "Default status" -msgstr "מצב בררת מחדל" +msgstr "מצב ברירת מחדל" #. 7PXL5 #: extensions/inc/strings.hrc:123 @@ -1399,7 +1399,7 @@ #: extensions/inc/strings.hrc:124 msgctxt "RID_STR_DEFAULTVALUE" msgid "Default value" -msgstr "ערך בררת מחדל" +msgstr "ערך ברירת מחדל" #. CMMC4 #: extensions/inc/strings.hrc:125 @@ -1411,13 +1411,13 @@ #: extensions/inc/strings.hrc:126 msgctxt "RID_STR_DEFAULTDATE" msgid "Default date" -msgstr "תאריך בררת מחדל" +msgstr "תאריך ברירת מחדל" #. YKckN #: extensions/inc/strings.hrc:127 msgctxt "RID_STR_DEFAULTTIME" msgid "Default time" -msgstr "זמן בררת מחדל" +msgstr "זמן ברירת מחדל" #. GA9tS #: extensions/inc/strings.hrc:128 @@ -1717,7 +1717,7 @@ #: extensions/inc/strings.hrc:177 msgctxt "RID_STR_DEFAULT_SCROLLVALUE" msgid "Default scroll value" -msgstr "צעד גלילה בררת מחדל" +msgstr "צעד גלילה ברירת מחדל" #. UYujs #: extensions/inc/strings.hrc:178 @@ -2111,7 +2111,7 @@ #: extensions/inc/strings.hrc:246 msgctxt "RID_STR_FONT_DEFAULT" msgid "(Default)" -msgstr "(בררת מחדל)" +msgstr "(ברירת מחדל)" #. QBGLE #: extensions/inc/strings.hrc:247 @@ -2189,7 +2189,7 @@ #: extensions/inc/strings.hrc:259 msgctxt "RID_STR_STANDARD" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. NaDFE #: extensions/inc/strings.hrc:260 @@ -2978,7 +2978,7 @@ #: extensions/inc/strings.hrc:393 msgctxt "RID_STR_TYPE_COMMAND" msgid "SQL command" -msgstr "SQL פקודת" +msgstr "פקודת SQL" #. iiBKZ #: extensions/inc/strings.hrc:395 @@ -3024,17 +3024,15 @@ #. XPCgZ #: extensions/inc/strings.hrc:404 -#, fuzzy msgctxt "RID_STR_FIELDINFO_COMBOBOX" msgid "The contents of the field selected will be shown in the combo box list." -msgstr "תוכן השדה הנבחר יוצג ברשימת התיבה המשולבת.‏" +msgstr "תוכני השדה שנבחר יופיעו ברשימת תיבת הבחירה." #. 3XqRi #: extensions/inc/strings.hrc:405 -#, fuzzy msgctxt "RID_STR_FIELDINFO_LISTBOX" msgid "The contents of the selected field will be shown in the list box if the linked fields are identical." -msgstr "תכולת השדה הנבחר תוצג בתיבת הרשימה רק במקרה שהשדות המקושרים זהים.‏" +msgstr "תוכני השדה הנבחר יוצגו בתיבת רשימת הבחירה רק במקרה שהשדות המקושרים זהים.‏" #. sy3UG #: extensions/inc/strings.hrc:406 @@ -3068,7 +3066,6 @@ #. pa3Dg #: extensions/uiconfig/sabpilot/ui/contentfieldpage.ui:114 -#, fuzzy msgctxt "contentfieldpage|label3" msgid "Display field" msgstr "הצגת שדה" @@ -3120,22 +3117,21 @@ #. 3pJRv #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:15 -#, fuzzy msgctxt "datasourcepage|label2" msgid "" "That was all the information necessary to integrate your address data into %PRODUCTNAME.\n" "\n" "Now, just enter the name under which you want to register the data source in %PRODUCTNAME." msgstr "" -"זה היה כל המידע הנדרש לשילוב נתוני הכתובות שלך ב-%PRODUCTNAME.\n" +"זה היה כל המידע הנדרש לשילוב נתוני הכתובות שלך ב־%PRODUCTNAME.\n" "\n" -"כעת ליש לציין את השם עבורו לרשום את מקור הנתונים ב-%PRODUCTNAME." +"כעת יש לציין את השם עבורו לרשום את מקור הנתונים ב־%PRODUCTNAME." #. LaR7Y #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:43 msgctxt "datasourcepage|embed" msgid "Embed this address book definition into the current document." -msgstr "יש להטמיע את הגדרת פנקס הכתובת הזו למסמך הנוכחי." +msgstr "הטמעת הגדרת פנקס הכתובת הזו למסמך הנוכחי." #. jcF56 #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:66 @@ -3163,10 +3159,9 @@ #. 6LtJa #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:126 -#, fuzzy msgctxt "datasourcepage|available" msgid "Make this address book available to all modules in %PRODUCTNAME." -msgstr "לאפשר שימוש בספר כתובות זה על ידי כל מודול ב ‏‪%PRODUCTNAME‬‏.‏" +msgstr "להנגיש את ספר הכתובות הזה לכל מודול ב־%PRODUCTNAME" #. iPwFJ #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:134 @@ -3184,14 +3179,13 @@ #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:181 msgctxt "datasourcepage|extended_tip|name" msgid "Specifies the data source name." -msgstr "" +msgstr "מציין את שם מקור הנתונים." #. iHrkL #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:200 -#, fuzzy msgctxt "datasourcepage|warning" msgid "Another data source already has this name. As data sources have to have globally unique names, you need to choose another one." -msgstr "מקור נתונים אחר כבר מזוהה בשם זה. שמות מקורות הנתונים חייבים להיות אחידים, נא לבחור בשם אחר." +msgstr "כבר יש מקור נתונים אחר בשם הזה. כיוון שמקורות נתונים צריכים להיות שמות ייחודיים, צריך לבחור בשם אחר." #. 6ZBG5 #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:231 @@ -3203,7 +3197,7 @@ #: extensions/uiconfig/sabpilot/ui/defaultfieldselectionpage.ui:18 msgctxt "defaultfieldselectionpage|label1" msgid "Should one option field be selected as a default?" -msgstr "האם שדה רשות אחד אמור להיבחר כבררת מחדל?" +msgstr "האם שדה רשות אחד אמור להיבחר כברירת מחדל?" #. aoU8V #: extensions/uiconfig/sabpilot/ui/defaultfieldselectionpage.ui:39 @@ -3213,10 +3207,9 @@ #. gWYi6 #: extensions/uiconfig/sabpilot/ui/defaultfieldselectionpage.ui:79 -#, fuzzy msgctxt "defaultfieldselectionpage|defaultselectionno" msgid "No, one particular field is not going to be selected." -msgstr "לא, לא ייבחר שדה מסויים כלשהו.‏" +msgstr "לא, לא ייבחר שדה מסוים כלשהו.‏" #. XXEB7 #: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:15 @@ -3233,19 +3226,19 @@ #: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:38 msgctxt "fieldassignpage|assign" msgid "Field Assignment" -msgstr "השמת שדות" +msgstr "הקצאת שדות" #. 94fxb #: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:46 msgctxt "fieldassignpage|extended_tip|assign" msgid "Opens the Templates: Address Book Assignment dialog." -msgstr "" +msgstr "פותח את התבניות: חלונית הקצאת ספר כתובות." #. CuPoK #: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:77 msgctxt "fieldassignpage|extended_tip|FieldAssignPage" msgid "Opens a dialog that allows you to specify the field assignment." -msgstr "" +msgstr "פותח חלונית שמאפשרת לך להגדיר את הקצאת השדות." #. j8AYS #: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:17 @@ -3256,17 +3249,15 @@ #. cWGwU #: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:55 -#, fuzzy msgctxt "fieldlinkpage|label2" msgid "Field from the _Value Table" -msgstr "שדה מטבלת הערכים" +msgstr "שדה מטבלת ה_ערכים" #. rp7PU #: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:105 -#, fuzzy msgctxt "fieldlinkpage|label3" msgid "Field from the _List Table" -msgstr "שדה מטבלת הרשימות" +msgstr "שדה מטבלת ה_רשימות" #. GDXGP #: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:57 @@ -3332,7 +3323,7 @@ #: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:389 msgctxt "gridfieldsselectionpage|label2" msgid "Table Element" -msgstr "" +msgstr "רכיב בטבלה" #. Xk7cV #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:49 @@ -3378,16 +3369,15 @@ #. HYXrA #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:272 -#, fuzzy msgctxt "groupradioselectionpage|label1" msgid "Which _names do you want to give the option fields?" -msgstr "אלו שמות לתת לשדות האפשרויות?‏" +msgstr "אילו _שמות לתת לשדות האפשרויות?‏" #. yR2Am #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:295 msgctxt "groupradioselectionpage|label2" msgid "Table Element" -msgstr "" +msgstr "רכיב בטבלה" #. 3dtcD #: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:15 @@ -3479,10 +3469,9 @@ #. qGELF #: extensions/uiconfig/sabpilot/ui/optionvaluespage.ui:107 -#, fuzzy msgctxt "optionvaluespage|label3" msgid "_Option fields" -msgstr "שדות אפשרויות" +msgstr "שדות _אפשרויות" #. AneBw #: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:23 @@ -3805,10 +3794,9 @@ #. vsfLN #: extensions/uiconfig/sbibliography/ui/generalpage.ui:306 -#, fuzzy msgctxt "generalpage|organization" msgid "Organi_zation" -msgstr "ארגון" +msgstr "א_רגון" #. 2Fna4 #: extensions/uiconfig/sbibliography/ui/generalpage.ui:320 @@ -3890,46 +3878,43 @@ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:881 msgctxt "generalpage|localurl" msgid "Local copy" -msgstr "" +msgstr "עותק מקומי" #. ddQ5G #: extensions/uiconfig/sbibliography/ui/generalpage.ui:915 msgctxt "generalpage|browse" msgid "Browse..." -msgstr "" +msgstr "עיון…" #. vrVJF #: extensions/uiconfig/sbibliography/ui/generalpage.ui:939 msgctxt "generalpage|localpagecb" msgid "Page" -msgstr "" +msgstr "עמוד" #. x9s9K #: extensions/uiconfig/sbibliography/ui/generalpage.ui:1015 msgctxt "generalpage|extended_tip|GeneralPage" msgid "Insert, delete, edit, and organize records in the bibliography database." -msgstr "" +msgstr "הוספה, מחיקה, עריכה וארגון של רשומות במסד הנתונים הביבליוגרפי." #. 7BG4W #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:8 -#, fuzzy msgctxt "mappingdialog|MappingDialog" msgid "Column Layout for Table “%1”" -msgstr "מתווה עמודות לטבלה %1‏" +msgstr "מתווה עמודות לטבלה „%1‏”" #. ZttGm #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:101 -#, fuzzy msgctxt "mappingdialog|label2" msgid "_Short name" msgstr "שם מ_קוצר" #. PcPgF #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:115 -#, fuzzy msgctxt "mappingdialog|label3" msgid "_Author(s)" -msgstr "מחבר(ים)‏" +msgstr "מ_חבר(ים)‏" #. DBBiK #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:129 @@ -3975,24 +3960,21 @@ #. kBvqk #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:311 -#, fuzzy msgctxt "mappingdialog|label11" msgid "_ISBN" msgstr "מ_סת״ב" #. aeCGS #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:325 -#, fuzzy msgctxt "mappingdialog|label12" msgid "Pa_ge(s)" -msgstr "עמוד(ים)‏" +msgstr "_עמוד(ים)‏" #. N4Cx2 #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:375 -#, fuzzy msgctxt "mappingdialog|label13" msgid "Ed_ition" -msgstr "מ_הדורה" +msgstr "מה_דורה" #. CXnVD #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:401 @@ -4035,7 +4017,7 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:557 msgctxt "mappingdialog|label20" msgid "Type of re_port" -msgstr "סוג הד_ו\"ח" +msgstr "סוג הד_וח" #. NaFZM #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:571 @@ -4057,17 +4039,15 @@ #. ssYBx #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:637 -#, fuzzy msgctxt "mappingdialog|label24" msgid "Se_ries" -msgstr "סדרה" +msgstr "ס_דרה" #. kGM4q #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:687 -#, fuzzy msgctxt "mappingdialog|label25" msgid "Ann_otation" -msgstr "הערת הסבר" +msgstr "ה_ערת הסבר" #. 8xMvD #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:701 @@ -4115,11 +4095,10 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:955 msgctxt "mappingdialog|label33" msgid "Local copy" -msgstr "" +msgstr "עותק מקומי" #. wkCw6 #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:1051 -#, fuzzy msgctxt "mappingdialog|label1" msgid "Column Names" msgstr "שמות העמודות" @@ -4128,14 +4107,13 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:1073 msgctxt "mappingdialog|extended_tip|MappingDialog" msgid "Lets you map the column headings to data fields from a different data source. To define a different data source for your bibliography, click the Data Source button on the record's Object bar." -msgstr "" +msgstr "מאפשר לך למפות את כותרות העמודות לשדות הנתונים ממקור נתונים זר. כדי להגדיר מקור נתונים אחר לביבליוגרפיה שלך, יש ללחוץ על כפתור מקור הנתונים בסרגל העצם של הרשומה." #. k9B7a #: extensions/uiconfig/sbibliography/ui/querydialog.ui:30 -#, fuzzy msgctxt "querydialog|ask" msgid "Do not show this question again." -msgstr "לא להציג הודעה זו שוב" +msgstr "לא להציג את השאלה הזאת שוב." #. YFwPR #: extensions/uiconfig/sbibliography/ui/toolbar.ui:24 @@ -4219,13 +4197,13 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:78 msgctxt "sanedialog|deviceInfoButton" msgid "About Dev_ice" -msgstr "על אודות המ_כשיר" +msgstr "על המ_כשיר" #. 3aG8b #: extensions/uiconfig/scanner/ui/sanedialog.ui:85 msgctxt "sanedialog|extended_tip|deviceInfoButton" msgid "Displays a popup window with information obtained from the scanner driver." -msgstr "" +msgstr "הצגת חלון קופץ עם מידע שהגיע ממנהל ההתקן של הסורק." #. 3EeXn #: extensions/uiconfig/scanner/ui/sanedialog.ui:97 @@ -4237,7 +4215,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:104 msgctxt "sanedialog|extended_tip|previewButton" msgid "Scans and displays the document in the preview area." -msgstr "" +msgstr "סורק ומציג את המסמך באזור התצוגה המקדימה." #. ihLsf #: extensions/uiconfig/scanner/ui/sanedialog.ui:116 @@ -4249,7 +4227,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:123 msgctxt "sanedialog|extended_tip|ok" msgid "Scans an image, and then inserts the result into the document and closes the dialog." -msgstr "" +msgstr "סורק תמונה ואז מעביר את התוצאה למסמך וסוגר את החלונית." #. gFREe #: extensions/uiconfig/scanner/ui/sanedialog.ui:187 @@ -4271,40 +4249,39 @@ #. NGDq3 #: extensions/uiconfig/scanner/ui/sanedialog.ui:229 -#, fuzzy msgctxt "sanedialog|label6" msgid "_Bottom:" -msgstr "_תחתון" +msgstr "_תחתון:" #. nu6SM #: extensions/uiconfig/scanner/ui/sanedialog.ui:249 msgctxt "sanedialog|extended_tip|topSpinbutton" msgid "Set the top margin of the scan area." -msgstr "" +msgstr "הגדרת השול העליון של אזור הסריקה." #. oDppB #: extensions/uiconfig/scanner/ui/sanedialog.ui:268 msgctxt "sanedialog|extended_tip|rightSpinbutton" msgid "Set the right margin of the scan area." -msgstr "" +msgstr "הגדרת השול הימני של אזור הסריקה." #. EdgNn #: extensions/uiconfig/scanner/ui/sanedialog.ui:287 msgctxt "sanedialog|extended_tip|bottomSpinbutton" msgid "Set the bottom margin of the scan area." -msgstr "" +msgstr "הגדרת השול התחתון של אזור הסריקה" #. L7tZS #: extensions/uiconfig/scanner/ui/sanedialog.ui:306 msgctxt "sanedialog|extended_tip|leftSpinbutton" msgid "Set the left margin of the scan area." -msgstr "" +msgstr "הגדרת השול השמאלי של אזור הסריקה." #. YfU4m #: extensions/uiconfig/scanner/ui/sanedialog.ui:321 msgctxt "sanedialog|label1" msgid "Scan Area" -msgstr "" +msgstr "שטח סריקה" #. wECiq #: extensions/uiconfig/scanner/ui/sanedialog.ui:366 @@ -4352,7 +4329,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:500 msgctxt "sanedialog|extended_tip|advancedcheckbutton" msgid "Mark this checkbox to display more configuration options for the scanner device." -msgstr "" +msgstr "יש לסמן את התיבה הזאת כדי להציג אפשרויות הגדרה נוספות להתקן הסורק." #. gneMZ #: extensions/uiconfig/scanner/ui/sanedialog.ui:527 @@ -4364,7 +4341,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:569 msgctxt "sanedialog\\extended_tip|optionSvTreeListBox" msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below." -msgstr "" +msgstr "מציג את רשימת האפשרויות המתקדמות הזמינות של מנהל ההתקן של הסורק. לחיצה כפולה על אפשרות תציג את התוכן שלה מתחתיה." #. VDQay #: extensions/uiconfig/scanner/ui/sanedialog.ui:607 @@ -4416,10 +4393,9 @@ #. emBq6 #: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10 -#, fuzzy msgctxt "formlinksdialog|FormLinks" msgid "Link fields" -msgstr "לקשר בין שדות" +msgstr "קישור בין שדות" #. jsbRq #: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31 @@ -4454,7 +4430,6 @@ #. JJkdg #: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:18 -#, fuzzy msgctxt "labelselectiondialog|LabelSelectionDialog" msgid "Label Field Selection" msgstr "בחירת שדה תווית" @@ -4467,10 +4442,9 @@ #. GLFYG #: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:166 -#, fuzzy msgctxt "labelselectiondialog|noassignment" msgid "_No assignment" -msgstr "אין הקצאה" +msgstr "אין ה_קצאה" #. 8EkFC #: extensions/uiconfig/spropctrlr/ui/multiline.ui:73 @@ -4488,7 +4462,7 @@ #: extensions/uiconfig/spropctrlr/ui/taborder.ui:147 msgctxt "taborder|extended_tip|CTRLtree" msgid "Lists all controls in the form. These controls can be selected with the tab key in the given order from top to bottom." -msgstr "" +msgstr "מציג את כל הפקדים בטופס. אפשר לבחור את הפקדים האלה עם כפתור ה־tab בסדר הנתון מלמעלה למטה." #. WGPX4 #: extensions/uiconfig/spropctrlr/ui/taborder.ui:167 diff -Nru libreoffice-7.4.6/translations/source/he/extras/source/autocorr/emoji.po libreoffice-7.4.7/translations/source/he/extras/source/autocorr/emoji.po --- libreoffice-7.4.6/translations/source/he/extras/source/autocorr/emoji.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/extras/source/autocorr/emoji.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-09-08 09:16+0000\n" +"PO-Revision-Date: 2023-03-27 19:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.6.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516044738.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -2234,7 +2234,7 @@ "WHITE_SMILING_FACE\n" "LngText.text" msgid "smiling" -msgstr "פנים מחייכות" +msgstr "חיוך" #. ☻ (U+0263B), see http://wiki.documentfoundation.org/Emoji #. HjhDU @@ -2984,7 +2984,7 @@ "STAFF_OF_HERMES\n" "LngText.text" msgid "staff" -msgstr "" +msgstr "מטה" #. ⚛ (U+0269B), see http://wiki.documentfoundation.org/Emoji #. B96CG @@ -3334,7 +3334,7 @@ "ICE_SKATE\n" "LngText.text" msgid "skate" -msgstr "" +msgstr "מחליק" #. ⛹ (U+026F9), see http://wiki.documentfoundation.org/Emoji #. FRKEE @@ -3514,7 +3514,7 @@ "WHITE_NIB\n" "LngText.text" msgid "nib" -msgstr "חוד־עט" +msgstr "חוד" #. ✒ (U+02712), see http://wiki.documentfoundation.org/Emoji #. vbpZB @@ -3694,7 +3694,7 @@ "HEAVY_EXCLAMATION_MARK_SYMBOL\n" "LngText.text" msgid "!2" -msgstr "" +msgstr "!2" #. ❤ (U+02764), see http://wiki.documentfoundation.org/Emoji #. jEJbE @@ -3734,7 +3734,7 @@ "BLACK_LARGE_SQUARE\n" "LngText.text" msgid "large square2" -msgstr "" +msgstr "ריבוע גדול2" #. ⬜ (U+02B1C), see http://wiki.documentfoundation.org/Emoji #. HrBFD @@ -3744,23 +3744,21 @@ "WHITE_LARGE_SQUARE\n" "LngText.text" msgid "large square" -msgstr "" +msgstr "ריבוע גדול" #. ⬟ (U+02B1F), see http://wiki.documentfoundation.org/Emoji #. hRTAZ #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_PENTAGON\n" "LngText.text" msgid "pentagon2" -msgstr "מחומש" +msgstr "מחומש2" #. ⬠ (U+02B20), see http://wiki.documentfoundation.org/Emoji #. g2gFC #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_PENTAGON\n" @@ -3771,7 +3769,6 @@ #. ⬡ (U+02B21), see http://wiki.documentfoundation.org/Emoji #. 2UACw #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_HEXAGON\n" @@ -3782,24 +3779,22 @@ #. ⬢ (U+02B22), see http://wiki.documentfoundation.org/Emoji #. uqRGB #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_HEXAGON\n" "LngText.text" msgid "hexagon2" -msgstr "משושה" +msgstr "משושה2" #. ⬤ (U+02B24), see http://wiki.documentfoundation.org/Emoji #. 4BwK8 #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_LARGE_CIRCLE\n" "LngText.text" msgid "large circle2" -msgstr "עיגול גדול" +msgstr "עיגול גדול2" #. ⬭ (U+02B2D), see http://wiki.documentfoundation.org/Emoji #. gVrZC @@ -3819,18 +3814,17 @@ "WHITE_MEDIUM_STAR\n" "LngText.text" msgid "medium star" -msgstr "" +msgstr "כוכב בינוני" #. ⭑ (U+02B51), see http://wiki.documentfoundation.org/Emoji #. TSBfG #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_SMALL_STAR\n" "LngText.text" msgid "small star2" -msgstr "כוכב קטן" +msgstr "כוכב קטן2" #. ⭒ (U+02B52), see http://wiki.documentfoundation.org/Emoji #. tqdLm @@ -3850,7 +3844,7 @@ "LATIN_SMALL_LIGATURE_FF\n" "LngText.text" msgid "ff" -msgstr "" +msgstr "ff" #. fi (U+0FB01), see http://wiki.documentfoundation.org/Emoji #. neMhY @@ -3860,7 +3854,7 @@ "LATIN_SMALL_LIGATURE_FI\n" "LngText.text" msgid "fi" -msgstr "" +msgstr "fi" #. fl (U+0FB02), see http://wiki.documentfoundation.org/Emoji #. ym9RA @@ -3870,7 +3864,7 @@ "LATIN_SMALL_LIGATURE_FL\n" "LngText.text" msgid "fl" -msgstr "" +msgstr "fl" #. ffi (U+0FB03), see http://wiki.documentfoundation.org/Emoji #. HA2oJ @@ -3880,7 +3874,7 @@ "LATIN_SMALL_LIGATURE_FFI\n" "LngText.text" msgid "ffi" -msgstr "" +msgstr "ffi" #. ffl (U+0FB04), see http://wiki.documentfoundation.org/Emoji #. LcntK @@ -3890,7 +3884,7 @@ "LATIN_SMALL_LIGATURE_FFL\n" "LngText.text" msgid "ffl" -msgstr "" +msgstr "ffl" #. 𝄞 (U+1D11E), see http://wiki.documentfoundation.org/Emoji #. 6CVtL @@ -3900,7 +3894,7 @@ "MUSICAL_SYMBOL_G_CLEF\n" "LngText.text" msgid "clef" -msgstr "" +msgstr "מפתח סול" #. 𝄪 (U+1D12A), see http://wiki.documentfoundation.org/Emoji #. FJAMw @@ -3910,7 +3904,7 @@ "MUSICAL_SYMBOL_DOUBLE_SHARP\n" "LngText.text" msgid "double sharp" -msgstr "" +msgstr "דיאז כפול" #. 𝄫 (U+1D12B), see http://wiki.documentfoundation.org/Emoji #. 7ADGW @@ -3920,7 +3914,7 @@ "MUSICAL_SYMBOL_DOUBLE_FLAT\n" "LngText.text" msgid "double flat" -msgstr "" +msgstr "במול כפול" #. 𝄻 (U+1D13B), see http://wiki.documentfoundation.org/Emoji #. DdcM2 @@ -3930,7 +3924,7 @@ "WHOLE_REST\n" "LngText.text" msgid "whole rest" -msgstr "" +msgstr "שלם" #. 𝄼 (U+1D13C), see http://wiki.documentfoundation.org/Emoji #. BUYwU @@ -3940,7 +3934,7 @@ "HALF_REST\n" "LngText.text" msgid "half rest" -msgstr "" +msgstr "חצי" #. 𝄽 (U+1D13D), see http://wiki.documentfoundation.org/Emoji #. gqJAB @@ -3950,7 +3944,7 @@ "QUARTER_REST\n" "LngText.text" msgid "quarter rest" -msgstr "" +msgstr "רבע" #. 𝄾 (U+1D13E), see http://wiki.documentfoundation.org/Emoji #. ktK5s @@ -3960,7 +3954,7 @@ "EIGHTH_REST\n" "LngText.text" msgid "eighth rest" -msgstr "" +msgstr "שמינית" #. 𝅝 (U+1D15D), see http://wiki.documentfoundation.org/Emoji #. bbrCH @@ -3970,7 +3964,7 @@ "MUSICAL_SYMBOL_WHOLE_NOTE\n" "LngText.text" msgid "whole note" -msgstr "" +msgstr "תו שלם" #. 𝅗𝅥 (U+1D15E), see http://wiki.documentfoundation.org/Emoji #. RBhrQ @@ -3980,7 +3974,7 @@ "MUSICAL_SYMBOL_HALF_NOTE\n" "LngText.text" msgid "half note" -msgstr "" +msgstr "חצי תו" #. 𝅘𝅥 (U+1D15F), see http://wiki.documentfoundation.org/Emoji #. ysAGf @@ -3990,7 +3984,7 @@ "MUSICAL_SYMBOL_QUARTER_NOTE\n" "LngText.text" msgid "quarter note" -msgstr "" +msgstr "רבע תו" #. 𝅘𝅥𝅮 (U+1D160), see http://wiki.documentfoundation.org/Emoji #. VPWEh @@ -4000,7 +3994,7 @@ "MUSICAL_SYMBOL_EIGHTH_NOTE\n" "LngText.text" msgid "eighth note" -msgstr "" +msgstr "שמינית תו" #. 𝅘𝅥𝅯 (U+1D161), see http://wiki.documentfoundation.org/Emoji #. i3m8B @@ -4010,7 +4004,7 @@ "MUSICAL_SYMBOL_SIXTEENTH_NOTE\n" "LngText.text" msgid "sixteenth note" -msgstr "" +msgstr "תו חלקי 16" #. 🀄 (U+1F004), see http://wiki.documentfoundation.org/Emoji #. txbRc @@ -4020,7 +4014,7 @@ "MAHJONG_TILE_RED_DRAGON\n" "LngText.text" msgid "mahjong" -msgstr "" +msgstr "מה־ג׳ונג" #. 🁠 (U+1F060), see http://wiki.documentfoundation.org/Emoji #. vkYJP @@ -4090,7 +4084,7 @@ "CYCLONE\n" "LngText.text" msgid "cyclone" -msgstr "" +msgstr "ציקלון" #. 🌁 (U+1F301), see http://wiki.documentfoundation.org/Emoji #. E3AiK @@ -4100,7 +4094,7 @@ "FOGGY\n" "LngText.text" msgid "foggy" -msgstr "" +msgstr "מעורפל" #. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji #. LFEnJ @@ -4210,7 +4204,7 @@ "MILKY_WAY\n" "LngText.text" msgid "milky way" -msgstr "" +msgstr "שביל החלב" #. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji #. f53Lu @@ -4220,7 +4214,7 @@ "EARTH_GLOBE_EUROPE-AFRICA\n" "LngText.text" msgid "globe" -msgstr "" +msgstr "כדור הארץ" #. 🌎 (U+1F30E), see http://wiki.documentfoundation.org/Emoji #. AutYx @@ -4230,7 +4224,7 @@ "EARTH_GLOBE_AMERICAS\n" "LngText.text" msgid "globe2" -msgstr "" +msgstr "כדור הארץ2" #. 🌏 (U+1F30F), see http://wiki.documentfoundation.org/Emoji #. ACoLQ @@ -4240,7 +4234,7 @@ "EARTH_GLOBE_ASIA-AUSTRALIA\n" "LngText.text" msgid "globe3" -msgstr "" +msgstr "כדור הארץ3" #. 🌐 (U+1F310), see http://wiki.documentfoundation.org/Emoji #. JjMAs @@ -4250,7 +4244,7 @@ "GLOBE_WITH_MERIDIANS\n" "LngText.text" msgid "globe4" -msgstr "" +msgstr "כדור הארץ4" #. 🌑 (U+1F311), see http://wiki.documentfoundation.org/Emoji #. WAFzy @@ -4260,7 +4254,7 @@ "NEW_MOON_SYMBOL\n" "LngText.text" msgid "new moon" -msgstr "" +msgstr "מולד הירח" #. 🌒 (U+1F312), see http://wiki.documentfoundation.org/Emoji #. F8LCD @@ -4270,7 +4264,7 @@ "WAXING_CRESCENT_MOON_SYMBOL\n" "LngText.text" msgid "waxing crescent moon" -msgstr "" +msgstr "חרמש מתמלא ראשון" #. 🌓 (U+1F313), see http://wiki.documentfoundation.org/Emoji #. pTNhc @@ -4280,7 +4274,7 @@ "FIRST_QUARTER_MOON_SYMBOL\n" "LngText.text" msgid "first quarter" -msgstr "" +msgstr "רבע ראשון" #. 🌔 (U+1F314), see http://wiki.documentfoundation.org/Emoji #. AFBZw @@ -4290,7 +4284,7 @@ "WAXING_GIBBOUS_MOON_SYMBOL\n" "LngText.text" msgid "waxing gibbous moon" -msgstr "" +msgstr "חרמש מתמלא שני" #. 🌕 (U+1F315), see http://wiki.documentfoundation.org/Emoji #. MLLvK @@ -4300,7 +4294,7 @@ "FULL_MOON_SYMBOL\n" "LngText.text" msgid "full moon" -msgstr "" +msgstr "ירח מלא" #. 🌖 (U+1F316), see http://wiki.documentfoundation.org/Emoji #. 6ZfWf @@ -4310,7 +4304,7 @@ "WANING_GIBBOUS_MOON_SYMBOL\n" "LngText.text" msgid "waning gibbous moon" -msgstr "" +msgstr "חרמש נחסר ראשון" #. 🌗 (U+1F317), see http://wiki.documentfoundation.org/Emoji #. hfGRx @@ -4320,7 +4314,7 @@ "LAST_QUARTER_MOON_SYMBOL\n" "LngText.text" msgid "last quarter" -msgstr "" +msgstr "רבע אחרון" #. 🌘 (U+1F318), see http://wiki.documentfoundation.org/Emoji #. b3snp @@ -4330,12 +4324,11 @@ "WANING_CRESCENT_MOON_SYMBOL\n" "LngText.text" msgid "waning crescent moon" -msgstr "" +msgstr "חרמש נחסר שני" #. 🌙 (U+1F319), see http://wiki.documentfoundation.org/Emoji #. tsvS2 #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CRESCENT_MOON\n" @@ -4351,7 +4344,7 @@ "NEW_MOON_WITH_FACE\n" "LngText.text" msgid "new moon2" -msgstr "" +msgstr "מולד הירח2" #. 🌛 (U+1F31B), see http://wiki.documentfoundation.org/Emoji #. WdRzU @@ -4381,7 +4374,7 @@ "FULL_MOON_WITH_FACE\n" "LngText.text" msgid "full moon2" -msgstr "" +msgstr "ירח מלא2" #. 🌞 (U+1F31E), see http://wiki.documentfoundation.org/Emoji #. Gkxfx @@ -4396,24 +4389,22 @@ #. 🌟 (U+1F31F), see http://wiki.documentfoundation.org/Emoji #. eF8ur #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GLOWING_STAR\n" "LngText.text" msgid "star3" -msgstr "כוכב" +msgstr "כוכב3" #. 🌠 (U+1F320), see http://wiki.documentfoundation.org/Emoji #. XRohW #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SHOOTING_STAR\n" "LngText.text" msgid "star4" -msgstr "כוכב" +msgstr "כוכב4" #. 🌰 (U+1F330), see http://wiki.documentfoundation.org/Emoji #. AcuuY @@ -4428,24 +4419,22 @@ #. 🌱 (U+1F331), see http://wiki.documentfoundation.org/Emoji #. uF4tA #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SEEDLING\n" "LngText.text" msgid "seedling" -msgstr "איות" +msgstr "נבט" #. 🌲 (U+1F332), see http://wiki.documentfoundation.org/Emoji #. 3pyDD #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EVERGREEN_TREE\n" "LngText.text" msgid "pine" -msgstr "שורה" +msgstr "אורן" #. 🌳 (U+1F333), see http://wiki.documentfoundation.org/Emoji #. vgFCL @@ -4465,7 +4454,7 @@ "PALM_TREE\n" "LngText.text" msgid "palm" -msgstr "" +msgstr "דקל" #. 🌵 (U+1F335), see http://wiki.documentfoundation.org/Emoji #. okHRh @@ -4475,7 +4464,7 @@ "CACTUS\n" "LngText.text" msgid "cactus" -msgstr "" +msgstr "צבר" #. 🌷 (U+1F337), see http://wiki.documentfoundation.org/Emoji #. JHZDE @@ -4485,7 +4474,7 @@ "TULIP\n" "LngText.text" msgid "tulip" -msgstr "" +msgstr "צבעוני" #. 🌸 (U+1F338), see http://wiki.documentfoundation.org/Emoji #. eFy7r @@ -4495,18 +4484,17 @@ "CHERRY_BLOSSOM\n" "LngText.text" msgid "blossom2" -msgstr "" +msgstr "פריחה2" #. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji #. JCYis #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "ROSE\n" "LngText.text" msgid "rose" -msgstr "אף" +msgstr "ורד" #. 🌺 (U+1F33A), see http://wiki.documentfoundation.org/Emoji #. EGSrt @@ -4516,7 +4504,7 @@ "HIBISCUS\n" "LngText.text" msgid "hibiscus" -msgstr "" +msgstr "היביסקוס" #. 🌻 (U+1F33B), see http://wiki.documentfoundation.org/Emoji #. z4cHB @@ -4526,7 +4514,7 @@ "SUNFLOWER\n" "LngText.text" msgid "sunflower" -msgstr "" +msgstr "חמנייה" #. 🌼 (U+1F33C), see http://wiki.documentfoundation.org/Emoji #. pBBjC @@ -4536,7 +4524,7 @@ "BLOSSOM\n" "LngText.text" msgid "blossom" -msgstr "" +msgstr "פריחה" #. 🌽 (U+1F33D), see http://wiki.documentfoundation.org/Emoji #. wCgXh @@ -4546,7 +4534,7 @@ "EAR_OF_MAIZE\n" "LngText.text" msgid "corn" -msgstr "" +msgstr "תירס" #. 🌾 (U+1F33E), see http://wiki.documentfoundation.org/Emoji #. NSDcY @@ -4566,12 +4554,11 @@ "HERB\n" "LngText.text" msgid "herb" -msgstr "" +msgstr "צמח" #. 🍀 (U+1F340), see http://wiki.documentfoundation.org/Emoji #. YF8TS #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FOUR_LEAF_CLOVER\n" @@ -4587,7 +4574,7 @@ "MAPLE_LEAF\n" "LngText.text" msgid "leaf" -msgstr "" +msgstr "עלה" #. 🍂 (U+1F342), see http://wiki.documentfoundation.org/Emoji #. wBuCQ @@ -4597,7 +4584,7 @@ "FALLEN_LEAF\n" "LngText.text" msgid "leaf2" -msgstr "" +msgstr "עלה2" #. 🍃 (U+1F343), see http://wiki.documentfoundation.org/Emoji #. mLSzg @@ -4607,7 +4594,7 @@ "LEAF_FLUTTERING_IN_WIND\n" "LngText.text" msgid "leaf3" -msgstr "" +msgstr "עלה3" #. 🍄 (U+1F344), see http://wiki.documentfoundation.org/Emoji #. eEVDC @@ -4677,7 +4664,7 @@ "TANGERINE\n" "LngText.text" msgid "tangerine" -msgstr "" +msgstr "מנדרינה" #. 🍋 (U+1F34B), see http://wiki.documentfoundation.org/Emoji #. Rkfu2 @@ -4757,7 +4744,7 @@ "CHERRIES\n" "LngText.text" msgid "cherry" -msgstr "" +msgstr "דובדבן" #. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji #. yfRzG @@ -4807,7 +4794,7 @@ "POULTRY_LEG\n" "LngText.text" msgid "poultry leg" -msgstr "" +msgstr "רגל עוף" #. 🍘 (U+1F358), see http://wiki.documentfoundation.org/Emoji #. fzFgY @@ -4882,13 +4869,12 @@ #. 🍟 (U+1F35F), see http://wiki.documentfoundation.org/Emoji #. tfYnE #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FRENCH_FRIES\n" "LngText.text" msgid "fries" -msgstr "טלה" +msgstr "טוגנים" #. 🍠 (U+1F360), see http://wiki.documentfoundation.org/Emoji #. AZXBc @@ -4903,13 +4889,12 @@ #. 🍡 (U+1F361), see http://wiki.documentfoundation.org/Emoji #. P9LwF #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DANGO\n" "LngText.text" msgid "dango" -msgstr "סנגו" +msgstr "דנגו" #. 🍢 (U+1F362), see http://wiki.documentfoundation.org/Emoji #. VhY3g @@ -4919,18 +4904,17 @@ "ODEN\n" "LngText.text" msgid "oden" -msgstr "" +msgstr "אודן" #. 🍣 (U+1F363), see http://wiki.documentfoundation.org/Emoji #. K8uzC #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUSHI\n" "LngText.text" msgid "sushi" -msgstr "בושי" +msgstr "סושי" #. 🍤 (U+1F364), see http://wiki.documentfoundation.org/Emoji #. bpAX7 @@ -4950,7 +4934,7 @@ "FISH_CAKE_WITH_SWIRL_DESIGN\n" "LngText.text" msgid "fish cake" -msgstr "" +msgstr "קאמאבוקו" #. 🍦 (U+1F366), see http://wiki.documentfoundation.org/Emoji #. JF2mU @@ -4970,7 +4954,7 @@ "SHAVED_ICE\n" "LngText.text" msgid "shaved ice" -msgstr "" +msgstr "קרח גרוס" #. 🍨 (U+1F368), see http://wiki.documentfoundation.org/Emoji #. EqFKK @@ -4990,7 +4974,7 @@ "DOUGHNUT\n" "LngText.text" msgid "doughnut" -msgstr "" +msgstr "סופגניה" #. 🍪 (U+1F36A), see http://wiki.documentfoundation.org/Emoji #. zeBHW @@ -5070,7 +5054,7 @@ "BENTO_BOX\n" "LngText.text" msgid "bento" -msgstr "" +msgstr "בנטו" #. 🍲 (U+1F372), see http://wiki.documentfoundation.org/Emoji #. wuJ4w @@ -5090,7 +5074,7 @@ "COOKING\n" "LngText.text" msgid "cooking" -msgstr "" +msgstr "בישול" #. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji #. GBfCD @@ -5115,13 +5099,12 @@ #. 🍶 (U+1F376), see http://wiki.documentfoundation.org/Emoji #. YncQr #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SAKE_BOTTLE_AND_CUP\n" "LngText.text" msgid "sake" -msgstr "נחש" +msgstr "סאקה" #. 🍷 (U+1F377), see http://wiki.documentfoundation.org/Emoji #. xnqbf @@ -5131,7 +5114,7 @@ "WINE_GLASS\n" "LngText.text" msgid "glass" -msgstr "" +msgstr "כוס" #. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji #. Ngp7g @@ -5151,7 +5134,7 @@ "TROPICAL_DRINK\n" "LngText.text" msgid "drink2" -msgstr "" +msgstr "משקה2" #. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji #. F2TpK @@ -5181,7 +5164,7 @@ "BABY_BOTTLE\n" "LngText.text" msgid "baby bottle" -msgstr "" +msgstr "בקבוק לתינוק" #. 🎀 (U+1F380), see http://wiki.documentfoundation.org/Emoji #. RhPDQ @@ -5191,7 +5174,7 @@ "RIBBON\n" "LngText.text" msgid "ribbon2" -msgstr "" +msgstr "סרט2" #. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji #. MADiL @@ -5201,7 +5184,7 @@ "WRAPPED_PRESENT\n" "LngText.text" msgid "gift" -msgstr "" +msgstr "מתנה" #. 🎂 (U+1F382), see http://wiki.documentfoundation.org/Emoji #. tuDzb @@ -5211,7 +5194,7 @@ "BIRTHDAY_CAKE\n" "LngText.text" msgid "birthday" -msgstr "" +msgstr "יום הולדת" #. 🎃 (U+1F383), see http://wiki.documentfoundation.org/Emoji #. f26Bk @@ -5221,7 +5204,7 @@ "JACK-O-LANTERN\n" "LngText.text" msgid "halloween" -msgstr "" +msgstr "ליל כל הקדושים" #. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji #. WvFGT @@ -5231,7 +5214,7 @@ "CHRISTMAS_TREE\n" "LngText.text" msgid "christmas" -msgstr "" +msgstr "חג המולד" #. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji #. cVHdd @@ -5241,7 +5224,7 @@ "FATHER_CHRISTMAS\n" "LngText.text" msgid "santa" -msgstr "" +msgstr "סנטה" #. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji #. saFdp @@ -5251,18 +5234,17 @@ "FIREWORKS\n" "LngText.text" msgid "fireworks" -msgstr "" +msgstr "זיקוקים" #. 🎇 (U+1F387), see http://wiki.documentfoundation.org/Emoji #. ikoAR #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FIREWORK_SPARKLER\n" "LngText.text" msgid "sparkler" -msgstr "ניצוץ" +msgstr "זיקוק" #. 🎈 (U+1F388), see http://wiki.documentfoundation.org/Emoji #. xmwGc @@ -5292,7 +5274,7 @@ "CONFETTI_BALL\n" "LngText.text" msgid "party2" -msgstr "" +msgstr "מסיבה2" #. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji #. nNzUK @@ -5302,18 +5284,17 @@ "TANABATA_TREE\n" "LngText.text" msgid "tanabata tree" -msgstr "" +msgstr "עץ טנבאטה" #. 🎌 (U+1F38C), see http://wiki.documentfoundation.org/Emoji #. 4VRMn #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CROSSED_FLAGS\n" "LngText.text" msgid "flags" -msgstr "דגל" +msgstr "דגלים" #. 🎍 (U+1F38D), see http://wiki.documentfoundation.org/Emoji #. nShwB @@ -5323,7 +5304,7 @@ "PINE_DECORATION\n" "LngText.text" msgid "bamboo" -msgstr "" +msgstr "חיזרן" #. 🎎 (U+1F38E), see http://wiki.documentfoundation.org/Emoji #. HyNqD @@ -5338,13 +5319,12 @@ #. 🎏 (U+1F38F), see http://wiki.documentfoundation.org/Emoji #. MZnGF #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CARP_STREAMER\n" "LngText.text" msgid "flags2" -msgstr "דגל2" +msgstr "דגלים2" #. 🎐 (U+1F390), see http://wiki.documentfoundation.org/Emoji #. Fe2aF @@ -5354,7 +5334,7 @@ "WIND_CHIME\n" "LngText.text" msgid "wind chime" -msgstr "" +msgstr "פעמון רוח" #. 🎑 (U+1F391), see http://wiki.documentfoundation.org/Emoji #. zfHjE @@ -5364,7 +5344,7 @@ "MOON_VIEWING_CEREMONY\n" "LngText.text" msgid "rice scene" -msgstr "" +msgstr "צוקימי" #. 🎒 (U+1F392), see http://wiki.documentfoundation.org/Emoji #. nNCBc @@ -5374,7 +5354,7 @@ "SCHOOL_SATCHEL\n" "LngText.text" msgid "school satchel" -msgstr "" +msgstr "תיק בית ספר" #. 🎓 (U+1F393), see http://wiki.documentfoundation.org/Emoji #. 6PMMH @@ -5384,7 +5364,7 @@ "GRADUATION_CAP\n" "LngText.text" msgid "graduation" -msgstr "" +msgstr "סיום לימודים" #. 🎠 (U+1F3A0), see http://wiki.documentfoundation.org/Emoji #. xaH5B @@ -5394,7 +5374,7 @@ "CAROUSEL_HORSE\n" "LngText.text" msgid "fair2" -msgstr "" +msgstr "יריד2" #. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji #. 3x8hW @@ -5404,7 +5384,7 @@ "FERRIS_WHEEL\n" "LngText.text" msgid "fair" -msgstr "" +msgstr "יריד" #. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji #. PD7Cb @@ -5414,7 +5394,7 @@ "ROLLER_COASTER\n" "LngText.text" msgid "roller coaster" -msgstr "" +msgstr "רכבת הרים" #. 🎣 (U+1F3A3), see http://wiki.documentfoundation.org/Emoji #. pMccJ @@ -5424,7 +5404,7 @@ "FISHING_POLE_AND_FISH\n" "LngText.text" msgid "fishing" -msgstr "" +msgstr "דיג" #. 🎤 (U+1F3A4), see http://wiki.documentfoundation.org/Emoji #. mZABw @@ -5444,12 +5424,11 @@ "MOVIE_CAMERA\n" "LngText.text" msgid "movie camera" -msgstr "" +msgstr "מצלמת קולנוע" #. 🎦 (U+1F3A6), see http://wiki.documentfoundation.org/Emoji #. 8MDEz #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CINEMA\n" @@ -5475,7 +5454,7 @@ "ARTIST_PALETTE\n" "LngText.text" msgid "art" -msgstr "" +msgstr "אומנות" #. 🎩 (U+1F3A9), see http://wiki.documentfoundation.org/Emoji #. FHPnG @@ -5485,7 +5464,7 @@ "TOP_HAT\n" "LngText.text" msgid "top hat" -msgstr "" +msgstr "מגבעת" #. 🎪 (U+1F3AA), see http://wiki.documentfoundation.org/Emoji #. NmrUH @@ -5495,7 +5474,7 @@ "CIRCUS_TENT\n" "LngText.text" msgid "circus" -msgstr "" +msgstr "קרקס" #. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji #. gCBD6 @@ -5505,7 +5484,7 @@ "TICKET\n" "LngText.text" msgid "ticket" -msgstr "" +msgstr "כרטיס" #. 🎬 (U+1F3AC), see http://wiki.documentfoundation.org/Emoji #. EQhDu @@ -5515,7 +5494,7 @@ "CLAPPER_BOARD\n" "LngText.text" msgid "clapper" -msgstr "" +msgstr "קלאפר" #. 🎭 (U+1F3AD), see http://wiki.documentfoundation.org/Emoji #. BwNeG @@ -5525,7 +5504,7 @@ "PERFORMING_ARTS\n" "LngText.text" msgid "theatre" -msgstr "" +msgstr "תיאטרון" #. 🎮 (U+1F3AE), see http://wiki.documentfoundation.org/Emoji #. yxoXg @@ -5535,7 +5514,7 @@ "VIDEO_GAME\n" "LngText.text" msgid "video game" -msgstr "" +msgstr "משחק וידאו" #. 🎯 (U+1F3AF), see http://wiki.documentfoundation.org/Emoji #. 8GZTZ @@ -5545,7 +5524,7 @@ "DIRECT_HIT\n" "LngText.text" msgid "hit" -msgstr "" +msgstr "פגיעה" #. 🎰 (U+1F3B0), see http://wiki.documentfoundation.org/Emoji #. qnZGG @@ -5555,7 +5534,7 @@ "SLOT_MACHINE\n" "LngText.text" msgid "slot machine" -msgstr "" +msgstr "מכונת מזל" #. 🎱 (U+1F3B1), see http://wiki.documentfoundation.org/Emoji #. b5uif @@ -5565,7 +5544,7 @@ "BILLIARDS\n" "LngText.text" msgid "billiards" -msgstr "" +msgstr "ביליארד" #. 🎲 (U+1F3B2), see http://wiki.documentfoundation.org/Emoji #. zYVZW @@ -5645,7 +5624,7 @@ "MUSICAL_KEYBOARD\n" "LngText.text" msgid "piano" -msgstr "" +msgstr "פסנתר" #. 🎺 (U+1F3BA), see http://wiki.documentfoundation.org/Emoji #. tWZBJ @@ -5670,24 +5649,22 @@ #. 🎼 (U+1F3BC), see http://wiki.documentfoundation.org/Emoji #. QCnPx #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MUSICAL_SCORE\n" "LngText.text" msgid "score" -msgstr "חנות" +msgstr "תכליל" #. 🎽 (U+1F3BD), see http://wiki.documentfoundation.org/Emoji #. 8zBQp #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RUNNING_SHIRT_WITH_SASH\n" "LngText.text" msgid "shirt2" -msgstr "חולצה" +msgstr "חולצה2" #. 🎾 (U+1F3BE), see http://wiki.documentfoundation.org/Emoji #. WfH8R @@ -5697,7 +5674,7 @@ "TENNIS_RACQUET_AND_BALL\n" "LngText.text" msgid "tennis" -msgstr "" +msgstr "טניס" #. 🎿 (U+1F3BF), see http://wiki.documentfoundation.org/Emoji #. FrDyH @@ -5707,7 +5684,7 @@ "SKI_AND_SKI_BOOT\n" "LngText.text" msgid "ski" -msgstr "" +msgstr "סקי" #. 🏀 (U+1F3C0), see http://wiki.documentfoundation.org/Emoji #. ih5rC @@ -5727,7 +5704,7 @@ "CHEQUERED_FLAG\n" "LngText.text" msgid "race" -msgstr "" +msgstr "מרוץ" #. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji #. b4bAo @@ -5767,7 +5744,7 @@ "TROPHY\n" "LngText.text" msgid "trophy" -msgstr "" +msgstr "גביע" #. 🏇 (U+1F3C7), see http://wiki.documentfoundation.org/Emoji #. qjAKh @@ -5777,7 +5754,7 @@ "HORSE_RACING\n" "LngText.text" msgid "horse3" -msgstr "" +msgstr "סוס3" #. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji #. FRTc8 @@ -5787,7 +5764,7 @@ "AMERICAN_FOOTBALL\n" "LngText.text" msgid "football" -msgstr "" +msgstr "פוטבול" #. 🏉 (U+1F3C9), see http://wiki.documentfoundation.org/Emoji #. eLmcj @@ -5797,7 +5774,7 @@ "RUGBY_FOOTBALL\n" "LngText.text" msgid "rugby football" -msgstr "" +msgstr "רוגבי" #. 🏊 (U+1F3CA), see http://wiki.documentfoundation.org/Emoji #. 6acEV @@ -5847,7 +5824,7 @@ "JAPANESE_POST_OFFICE\n" "LngText.text" msgid "post office2" -msgstr "" +msgstr "משרד דואר2" #. 🏤 (U+1F3E4), see http://wiki.documentfoundation.org/Emoji #. 9qhN4 @@ -5857,7 +5834,7 @@ "EUROPEAN_POST_OFFICE\n" "LngText.text" msgid "post office" -msgstr "" +msgstr "משרד דואר" #. 🏥 (U+1F3E5), see http://wiki.documentfoundation.org/Emoji #. ttEpB @@ -5867,7 +5844,7 @@ "HOSPITAL\n" "LngText.text" msgid "hospital" -msgstr "" +msgstr "בית חולים" #. 🏦 (U+1F3E6), see http://wiki.documentfoundation.org/Emoji #. 4TaNF @@ -5957,7 +5934,7 @@ "IZAKAYA_LANTERN\n" "LngText.text" msgid "lantern" -msgstr "" +msgstr "עששית" #. 🏯 (U+1F3EF), see http://wiki.documentfoundation.org/Emoji #. ZwF6E @@ -5967,7 +5944,7 @@ "JAPANESE_CASTLE\n" "LngText.text" msgid "castle2" -msgstr "" +msgstr "טירה2" #. 🏰 (U+1F3F0), see http://wiki.documentfoundation.org/Emoji #. AVnym @@ -5977,7 +5954,7 @@ "EUROPEAN_CASTLE\n" "LngText.text" msgid "castle" -msgstr "" +msgstr "טירה" #. 🐀 (U+1F400), see http://wiki.documentfoundation.org/Emoji #. iQjEZ @@ -6017,7 +5994,7 @@ "WATER_BUFFALO\n" "LngText.text" msgid "water buffalo" -msgstr "" +msgstr "תאו מים" #. 🐄 (U+1F404), see http://wiki.documentfoundation.org/Emoji #. V3p7W @@ -6047,7 +6024,7 @@ "LEOPARD\n" "LngText.text" msgid "leopard" -msgstr "" +msgstr "נמר" #. 🐇 (U+1F407), see http://wiki.documentfoundation.org/Emoji #. CMGYf @@ -6092,13 +6069,12 @@ #. 🐋 (U+1F40B), see http://wiki.documentfoundation.org/Emoji #. h77co #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHALE\n" "LngText.text" msgid "whale2" -msgstr "לווייתן" +msgstr "לווייתן2" #. 🐌 (U+1F40C), see http://wiki.documentfoundation.org/Emoji #. hadNm @@ -6138,7 +6114,7 @@ "RAM\n" "LngText.text" msgid "ram" -msgstr "" +msgstr "איל" #. 🐐 (U+1F410), see http://wiki.documentfoundation.org/Emoji #. CVSAr @@ -6178,7 +6154,7 @@ "ROOSTER\n" "LngText.text" msgid "rooster" -msgstr "" +msgstr "תרנגול" #. 🐔 (U+1F414), see http://wiki.documentfoundation.org/Emoji #. Ag9Mg @@ -6188,7 +6164,7 @@ "CHICKEN\n" "LngText.text" msgid "chicken" -msgstr "" +msgstr "תרנגולת" #. 🐕 (U+1F415), see http://wiki.documentfoundation.org/Emoji #. jmBsh @@ -6258,7 +6234,7 @@ "BUG\n" "LngText.text" msgid "bug" -msgstr "" +msgstr "חרק" #. 🐜 (U+1F41C), see http://wiki.documentfoundation.org/Emoji #. me5X6 @@ -6288,7 +6264,7 @@ "LADY_BEETLE\n" "LngText.text" msgid "ladybug" -msgstr "" +msgstr "חיפושית" #. 🐟 (U+1F41F), see http://wiki.documentfoundation.org/Emoji #. CATwn @@ -6333,13 +6309,12 @@ #. 🐣 (U+1F423), see http://wiki.documentfoundation.org/Emoji #. Fi7Lg #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HATCHING_CHICK\n" "LngText.text" msgid "chick" -msgstr "check" +msgstr "אפרוח" #. 🐤 (U+1F424), see http://wiki.documentfoundation.org/Emoji #. zAaYQ @@ -6349,7 +6324,7 @@ "BABY_CHICK\n" "LngText.text" msgid "chick2" -msgstr "" +msgstr "אפרוח2" #. 🐥 (U+1F425), see http://wiki.documentfoundation.org/Emoji #. GyVtY @@ -6359,7 +6334,7 @@ "FRONT-FACING_BABY_CHICK\n" "LngText.text" msgid "chick3" -msgstr "" +msgstr "אפרוח3" #. 🐦 (U+1F426), see http://wiki.documentfoundation.org/Emoji #. jwips @@ -6669,40 +6644,37 @@ "WHITE_UP_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "up2" -msgstr "" +msgstr "למעלה2" #. 👇 (U+1F447), see http://wiki.documentfoundation.org/Emoji #. 38UHH #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_DOWN_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "down2" -msgstr "למטה" +msgstr "למטה2" #. 👈 (U+1F448), see http://wiki.documentfoundation.org/Emoji #. gRtnZ #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_LEFT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "left2" -msgstr "שמאל" +msgstr "שמאל2" #. 👉 (U+1F449), see http://wiki.documentfoundation.org/Emoji #. VjyBV #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_RIGHT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "right2" -msgstr "לילה" +msgstr "ימין2" #. 👊 (U+1F44A), see http://wiki.documentfoundation.org/Emoji #. ipCGp @@ -6732,7 +6704,7 @@ "OK_HAND_SIGN\n" "LngText.text" msgid "ok" -msgstr "" +msgstr "סבבה" #. 👍 (U+1F44D), see http://wiki.documentfoundation.org/Emoji #. QP5Gt @@ -7242,7 +7214,7 @@ "IMP\n" "LngText.text" msgid "imp" -msgstr "" +msgstr "שד" #. 💀 (U+1F480), see http://wiki.documentfoundation.org/Emoji #. VCGWC @@ -7597,24 +7569,22 @@ #. 💧 (U+1F4A7), see http://wiki.documentfoundation.org/Emoji #. eRxPJ #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DROPLET\n" "LngText.text" msgid "droplet" -msgstr "טיפות" +msgstr "טיפונת" #. 💨 (U+1F4A8), see http://wiki.documentfoundation.org/Emoji #. HDTEE #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DASH_SYMBOL\n" "LngText.text" msgid "dash" -msgstr "מקף" +msgstr "זינוק" #. 💩 (U+1F4A9), see http://wiki.documentfoundation.org/Emoji #. FyCtU @@ -7694,7 +7664,7 @@ "MONEY_BAG\n" "LngText.text" msgid "money2" -msgstr "" +msgstr "כסף2" #. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji #. WJBFr @@ -7704,7 +7674,7 @@ "CURRENCY_EXCHANGE\n" "LngText.text" msgid "exchange" -msgstr "" +msgstr "חלפנות כספים" #. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji #. gEQqV @@ -7714,7 +7684,7 @@ "HEAVY_DOLLAR_SIGN\n" "LngText.text" msgid "heavy dollar sign" -msgstr "" +msgstr "סימן דולר עבה" #. 💳 (U+1F4B3), see http://wiki.documentfoundation.org/Emoji #. BvG4w @@ -7784,7 +7754,7 @@ "CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n" "LngText.text" msgid "chart4" -msgstr "" +msgstr "תרשים4" #. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji #. uFG2p @@ -7859,7 +7829,6 @@ #. 📁 (U+1F4C1), see http://wiki.documentfoundation.org/Emoji #. kDfvB #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FILE_FOLDER\n" @@ -7870,13 +7839,12 @@ #. 📂 (U+1F4C2), see http://wiki.documentfoundation.org/Emoji #. wAyrP #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "OPEN_FILE_FOLDER\n" "LngText.text" msgid "folder2" -msgstr "תיקייה" +msgstr "תיקייה2" #. 📃 (U+1F4C3), see http://wiki.documentfoundation.org/Emoji #. XwFzf @@ -7886,7 +7854,7 @@ "PAGE_WITH_CURL\n" "LngText.text" msgid "page3" -msgstr "" +msgstr "דף3" #. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji #. nHJbH @@ -7896,12 +7864,11 @@ "PAGE_FACING_UP\n" "LngText.text" msgid "page" -msgstr "" +msgstr "דף" #. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji #. 3357F #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CALENDAR\n" @@ -7912,13 +7879,12 @@ #. 📆 (U+1F4C6), see http://wiki.documentfoundation.org/Emoji #. 2T65Q #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "TEAR-OFF_CALENDAR\n" "LngText.text" msgid "calendar2" -msgstr "לוח שנה" +msgstr "לוח שנה2" #. 📇 (U+1F4C7), see http://wiki.documentfoundation.org/Emoji #. DNhZt @@ -7938,40 +7904,37 @@ "CHART_WITH_UPWARDS_TREND\n" "LngText.text" msgid "chart" -msgstr "" +msgstr "תרשים" #. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji #. n2X5h #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CHART_WITH_DOWNWARDS_TREND\n" "LngText.text" msgid "chart2" -msgstr "תרשים" +msgstr "תרשים2" #. 📊 (U+1F4CA), see http://wiki.documentfoundation.org/Emoji #. A2YxF #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BAR_CHART\n" "LngText.text" msgid "chart3" -msgstr "תרשים" +msgstr "תרשים3" #. 📋 (U+1F4CB), see http://wiki.documentfoundation.org/Emoji #. rd9qJ #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLIPBOARD\n" "LngText.text" msgid "clipboard" -msgstr "לוח העתקה" +msgstr "לוח גזירים" #. 📌 (U+1F4CC), see http://wiki.documentfoundation.org/Emoji #. rvk5G @@ -7981,7 +7944,7 @@ "PUSHPIN\n" "LngText.text" msgid "pushpin" -msgstr "" +msgstr "נעץ" #. 📍 (U+1F4CD), see http://wiki.documentfoundation.org/Emoji #. qvHXp @@ -7991,7 +7954,7 @@ "ROUND_PUSHPIN\n" "LngText.text" msgid "round pushpin" -msgstr "" +msgstr "נעץ עגול" #. 📎 (U+1F4CE), see http://wiki.documentfoundation.org/Emoji #. QnxVB @@ -8006,7 +7969,6 @@ #. 📏 (U+1F4CF), see http://wiki.documentfoundation.org/Emoji #. 7zWG5 #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "STRAIGHT_RULER\n" @@ -8017,24 +7979,22 @@ #. 📐 (U+1F4D0), see http://wiki.documentfoundation.org/Emoji #. AFfRY #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "TRIANGULAR_RULER\n" "LngText.text" msgid "ruler2" -msgstr "סרגל" +msgstr "סרגל2" #. 📑 (U+1F4D1), see http://wiki.documentfoundation.org/Emoji #. 8kKn2 #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BOOKMARK_TABS\n" "LngText.text" msgid "bookmark" -msgstr "סימניה" +msgstr "סימנייה" #. 📒 (U+1F4D2), see http://wiki.documentfoundation.org/Emoji #. 2JByd @@ -8044,7 +8004,7 @@ "LEDGER\n" "LngText.text" msgid "ledger" -msgstr "" +msgstr "ספר חשבונות" #. 📓 (U+1F4D3), see http://wiki.documentfoundation.org/Emoji #. CPCYE @@ -8054,7 +8014,7 @@ "NOTEBOOK\n" "LngText.text" msgid "notebook" -msgstr "" +msgstr "מחברת" #. 📔 (U+1F4D4), see http://wiki.documentfoundation.org/Emoji #. ktHAV @@ -8064,7 +8024,7 @@ "NOTEBOOK_WITH_DECORATIVE_COVER\n" "LngText.text" msgid "notebook2" -msgstr "" +msgstr "מחברת2" #. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji #. DYit7 @@ -8074,7 +8034,7 @@ "CLOSED_BOOK\n" "LngText.text" msgid "book2" -msgstr "" +msgstr "ספר2" #. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji #. LjMCp @@ -8084,40 +8044,37 @@ "OPEN_BOOK\n" "LngText.text" msgid "book3" -msgstr "" +msgstr "ספר3" #. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji #. wGEYU #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BOOKS\n" "LngText.text" msgid "books" -msgstr "מגף" +msgstr "ספרים" #. 📛 (U+1F4DB), see http://wiki.documentfoundation.org/Emoji #. AHKqs #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "NAME_BADGE\n" "LngText.text" msgid "name" -msgstr "שמות" +msgstr "שם" #. 📜 (U+1F4DC), see http://wiki.documentfoundation.org/Emoji #. 7dFZz #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SCROLL\n" "LngText.text" msgid "scroll" -msgstr "גלילה" +msgstr "מגילה" #. 📝 (U+1F4DD), see http://wiki.documentfoundation.org/Emoji #. WACDF @@ -8127,7 +8084,7 @@ "MEMO\n" "LngText.text" msgid "memo" -msgstr "" +msgstr "מזכר" #. 📞 (U+1F4DE), see http://wiki.documentfoundation.org/Emoji #. w7Sqx @@ -8137,23 +8094,21 @@ "TELEPHONE_RECEIVER\n" "LngText.text" msgid "receiver" -msgstr "" +msgstr "שפופרת" #. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji #. RFzY6 #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "PAGER\n" "LngText.text" msgid "pager" -msgstr "עמוד" +msgstr "זימונית" #. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji #. G6o5r #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FAX_MACHINE\n" @@ -8169,7 +8124,7 @@ "SATELLITE_ANTENNA\n" "LngText.text" msgid "antenna" -msgstr "" +msgstr "אנטנה" #. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji #. P5xbh @@ -8179,29 +8134,27 @@ "PUBLIC_ADDRESS_LOUDSPEAKER\n" "LngText.text" msgid "loudspeaker" -msgstr "" +msgstr "רמקול מוגבר" #. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji #. eJHQG #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CHEERING_MEGAPHONE\n" "LngText.text" msgid "mega" -msgstr "אומגה גדולה" +msgstr "מגאפון" #. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji #. YcCHy #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "OUTBOX_TRAY\n" "LngText.text" msgid "tray" -msgstr "אפור" +msgstr "מגש" #. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji #. f8tnA @@ -8211,7 +8164,7 @@ "INBOX_TRAY\n" "LngText.text" msgid "tray2" -msgstr "" +msgstr "מגש2" #. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji #. 8uDGB @@ -8221,12 +8174,11 @@ "PACKAGE\n" "LngText.text" msgid "package" -msgstr "" +msgstr "חבילה" #. 📧 (U+1F4E7), see http://wiki.documentfoundation.org/Emoji #. tLYTu #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "E-MAIL_SYMBOL\n" @@ -8242,7 +8194,7 @@ "INCOMING_ENVELOPE\n" "LngText.text" msgid "envelope7" -msgstr "" +msgstr "מעטפה7" #. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji #. HGe9s @@ -8252,7 +8204,7 @@ "ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n" "LngText.text" msgid "envelope8" -msgstr "" +msgstr "מעטפה8" #. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji #. MiuAq @@ -8262,7 +8214,7 @@ "CLOSED_MAILBOX_WITH_LOWERED_FLAG\n" "LngText.text" msgid "mailbox" -msgstr "" +msgstr "תיבת דואר" #. 📫 (U+1F4EB), see http://wiki.documentfoundation.org/Emoji #. zyZUF @@ -8272,7 +8224,7 @@ "CLOSED_MAILBOX_WITH_RAISED_FLAG\n" "LngText.text" msgid "mailbox2" -msgstr "" +msgstr "תיבת דואר2" #. 📬 (U+1F4EC), see http://wiki.documentfoundation.org/Emoji #. Sf5YJ @@ -8282,7 +8234,7 @@ "OPEN_MAILBOX_WITH_RAISED_FLAG\n" "LngText.text" msgid "mailbox3" -msgstr "" +msgstr "תיבת דואר3" #. 📭 (U+1F4ED), see http://wiki.documentfoundation.org/Emoji #. fCEgu @@ -8292,7 +8244,7 @@ "OPEN_MAILBOX_WITH_LOWERED_FLAG\n" "LngText.text" msgid "mailbox4" -msgstr "" +msgstr "תיבת דואר4" #. 📮 (U+1F4EE), see http://wiki.documentfoundation.org/Emoji #. TManz @@ -8302,7 +8254,7 @@ "POSTBOX\n" "LngText.text" msgid "postbox" -msgstr "" +msgstr "תא דואר" #. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji #. u2ynR @@ -8312,7 +8264,7 @@ "POSTAL_HORN\n" "LngText.text" msgid "horn" -msgstr "" +msgstr "קרן" #. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji #. gZmY9 @@ -8322,12 +8274,11 @@ "NEWSPAPER\n" "LngText.text" msgid "newspaper" -msgstr "" +msgstr "עתון" #. 📱 (U+1F4F1), see http://wiki.documentfoundation.org/Emoji #. C22hA #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MOBILE_PHONE\n" @@ -8343,7 +8294,7 @@ "MOBILE_PHONE_WITH_RIGHTWARDS_ARROW_AT_LEFT\n" "LngText.text" msgid "calling" -msgstr "" +msgstr "התקשרות" #. 📳 (U+1F4F3), see http://wiki.documentfoundation.org/Emoji #. d3uys @@ -8353,7 +8304,7 @@ "VIBRATION_MODE\n" "LngText.text" msgid "vibration mode" -msgstr "" +msgstr "מצב רטט" #. 📴 (U+1F4F4), see http://wiki.documentfoundation.org/Emoji #. SB2ZA @@ -8363,7 +8314,7 @@ "MOBILE_PHONE_OFF\n" "LngText.text" msgid "mobile phone off" -msgstr "" +msgstr "טלפון סלולרי כבוי" #. 📵 (U+1F4F5), see http://wiki.documentfoundation.org/Emoji #. s4cxU @@ -8373,7 +8324,7 @@ "NO_MOBILE_PHONES\n" "LngText.text" msgid "no mobile" -msgstr "" +msgstr "בלי טלפונים סלולריים" #. 📶 (U+1F4F6), see http://wiki.documentfoundation.org/Emoji #. CjdGu @@ -8383,12 +8334,11 @@ "ANTENNA_WITH_BARS\n" "LngText.text" msgid "signal strength" -msgstr "" +msgstr "עוצמת אות" #. 📷 (U+1F4F7), see http://wiki.documentfoundation.org/Emoji #. eEaUM #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CAMERA\n" @@ -8404,7 +8354,7 @@ "VIDEO_CAMERA\n" "LngText.text" msgid "video camera" -msgstr "" +msgstr "מצלמת וידאו" #. 📺 (U+1F4FA), see http://wiki.documentfoundation.org/Emoji #. hDmEX @@ -8414,18 +8364,17 @@ "TELEVISION\n" "LngText.text" msgid "tv" -msgstr "" +msgstr "טלוויזיה" #. 📻 (U+1F4FB), see http://wiki.documentfoundation.org/Emoji #. WLYDg #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RADIO\n" "LngText.text" msgid "radio" -msgstr "radix" +msgstr "רדיו" #. 📼 (U+1F4FC), see http://wiki.documentfoundation.org/Emoji #. SRaWt @@ -8435,12 +8384,11 @@ "VIDEOCASSETTE\n" "LngText.text" msgid "vhs" -msgstr "" +msgstr "קלטת וידאו" #. 🔅 (U+1F505), see http://wiki.documentfoundation.org/Emoji #. j6gBG #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LOW_BRIGHTNESS_SYMBOL\n" @@ -8451,18 +8399,16 @@ #. 🔆 (U+1F506), see http://wiki.documentfoundation.org/Emoji #. Kk8CH #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HIGH_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness2" -msgstr "בהירות" +msgstr "בהירות2" #. 🔇 (U+1F507), see http://wiki.documentfoundation.org/Emoji #. gCXWY #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SPEAKER_WITH_CANCELLATION_STROKE\n" @@ -8478,18 +8424,17 @@ "SPEAKER\n" "LngText.text" msgid "speaker" -msgstr "" +msgstr "רמקול" #. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji #. q6Ccp #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SPEAKER_WITH_ONE_SOUND_WAVE\n" "LngText.text" msgid "sound" -msgstr "פאונד" +msgstr "שמע" #. 🔊 (U+1F50A), see http://wiki.documentfoundation.org/Emoji #. APeWX @@ -8499,7 +8444,7 @@ "SPEAKER_WITH_THREE_SOUND_WAVES\n" "LngText.text" msgid "loud sound" -msgstr "" +msgstr "קול חזק" #. 🔋 (U+1F50B), see http://wiki.documentfoundation.org/Emoji #. ACRRR @@ -8509,7 +8454,7 @@ "BATTERY\n" "LngText.text" msgid "battery" -msgstr "" +msgstr "סוללה" #. 🔌 (U+1F50C), see http://wiki.documentfoundation.org/Emoji #. BG2mN @@ -8519,7 +8464,7 @@ "ELECTRIC_PLUG\n" "LngText.text" msgid "plug" -msgstr "" +msgstr "תקע" #. 🔍 (U+1F50D), see http://wiki.documentfoundation.org/Emoji #. jY8rv @@ -8529,7 +8474,7 @@ "LEFT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag" -msgstr "" +msgstr "זכוכית מגדלת" #. 🔎 (U+1F50E), see http://wiki.documentfoundation.org/Emoji #. ruAUv @@ -8539,7 +8484,7 @@ "RIGHT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag2" -msgstr "" +msgstr "זכוכית מגדלת2" #. 🔏 (U+1F50F), see http://wiki.documentfoundation.org/Emoji #. 8ZUNE @@ -8549,7 +8494,7 @@ "LOCK_WITH_INK_PEN\n" "LngText.text" msgid "lock2" -msgstr "" +msgstr "מנעול2" #. 🔐 (U+1F510), see http://wiki.documentfoundation.org/Emoji #. 4g77k @@ -8559,29 +8504,27 @@ "CLOSED_LOCK_WITH_KEY\n" "LngText.text" msgid "lock3" -msgstr "" +msgstr "מנעול3" #. 🔑 (U+1F511), see http://wiki.documentfoundation.org/Emoji #. vkQ8o #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "KEY\n" "LngText.text" msgid "key" -msgstr "שחור" +msgstr "מפתח" #. 🔒 (U+1F512), see http://wiki.documentfoundation.org/Emoji #. N7rGA #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LOCK\n" "LngText.text" msgid "lock" -msgstr "מקטע" +msgstr "מנעול" #. 🔓 (U+1F513), see http://wiki.documentfoundation.org/Emoji #. vRAcY @@ -8591,18 +8534,17 @@ "OPEN_LOCK\n" "LngText.text" msgid "unlock" -msgstr "" +msgstr "שחרור מנעול" #. 🔔 (U+1F514), see http://wiki.documentfoundation.org/Emoji #. TjiAa #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BELL\n" "LngText.text" msgid "bell" -msgstr "כדור" +msgstr "פעמון" #. 🔕 (U+1F515), see http://wiki.documentfoundation.org/Emoji #. KQzBP @@ -8612,40 +8554,37 @@ "BELL_WITH_CANCELLATION_STROKE\n" "LngText.text" msgid "no bell" -msgstr "" +msgstr "בלי צלצול" #. 🔖 (U+1F516), see http://wiki.documentfoundation.org/Emoji #. R7oDp #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BOOKMARK\n" "LngText.text" msgid "bookmark2" -msgstr "סימניה" +msgstr "סימנייה2" #. 🔗 (U+1F517), see http://wiki.documentfoundation.org/Emoji #. jF6rA #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LINK_SYMBOL\n" "LngText.text" msgid "link" -msgstr "קישור" +msgstr "חוליה" #. 🔘 (U+1F518), see http://wiki.documentfoundation.org/Emoji #. kLzCC #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RADIO_BUTTON\n" "LngText.text" msgid "radio button" -msgstr "כפתור רדיו" +msgstr "כפתור בחירה" #. 🔞 (U+1F51E), see http://wiki.documentfoundation.org/Emoji #. omtTU @@ -8665,18 +8604,17 @@ "INPUT_SYMBOL_FOR_LATIN_LETTERS\n" "LngText.text" msgid "abc" -msgstr "" +msgstr "abc" #. 🔥 (U+1F525), see http://wiki.documentfoundation.org/Emoji #. vYrKA #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FIRE\n" "LngText.text" msgid "fire" -msgstr "קובץ" +msgstr "אש" #. 🔦 (U+1F526), see http://wiki.documentfoundation.org/Emoji #. BXCDZ @@ -8686,18 +8624,17 @@ "ELECTRIC_TORCH\n" "LngText.text" msgid "flashlight" -msgstr "" +msgstr "פנס" #. 🔧 (U+1F527), see http://wiki.documentfoundation.org/Emoji #. yiTrG #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WRENCH\n" "LngText.text" msgid "wrench" -msgstr "צרפתית" +msgstr "מפתח ברגים" #. 🔨 (U+1F528), see http://wiki.documentfoundation.org/Emoji #. xkGE3 @@ -8707,7 +8644,7 @@ "HAMMER\n" "LngText.text" msgid "hammer" -msgstr "" +msgstr "פטיש" #. 🔩 (U+1F529), see http://wiki.documentfoundation.org/Emoji #. p4ctN @@ -8717,7 +8654,7 @@ "NUT_AND_BOLT\n" "LngText.text" msgid "nut and bolt" -msgstr "" +msgstr "בורג ואום" #. 🔪 (U+1F52A), see http://wiki.documentfoundation.org/Emoji #. SEuBH @@ -8727,7 +8664,7 @@ "HOCHO\n" "LngText.text" msgid "knife" -msgstr "" +msgstr "סכין" #. 🔫 (U+1F52B), see http://wiki.documentfoundation.org/Emoji #. 2RSdn @@ -8737,7 +8674,7 @@ "PISTOL\n" "LngText.text" msgid "pistol" -msgstr "" +msgstr "אקדח" #. 🔬 (U+1F52C), see http://wiki.documentfoundation.org/Emoji #. n3FVK @@ -8747,7 +8684,7 @@ "MICROSCOPE\n" "LngText.text" msgid "microscope" -msgstr "" +msgstr "מיקרוסקופ" #. 🔭 (U+1F52D), see http://wiki.documentfoundation.org/Emoji #. 79jnu @@ -8757,7 +8694,7 @@ "TELESCOPE\n" "LngText.text" msgid "telescope" -msgstr "" +msgstr "טלסקופ" #. 🔮 (U+1F52E), see http://wiki.documentfoundation.org/Emoji #. cFgDU @@ -8767,7 +8704,7 @@ "CRYSTAL_BALL\n" "LngText.text" msgid "crystal ball" -msgstr "" +msgstr "כדור בדולח" #. 🔰 (U+1F530), see http://wiki.documentfoundation.org/Emoji #. 6mztF @@ -8777,7 +8714,7 @@ "JAPANESE_SYMBOL_FOR_BEGINNER\n" "LngText.text" msgid "beginner" -msgstr "" +msgstr "מתחילים" #. 🔱 (U+1F531), see http://wiki.documentfoundation.org/Emoji #. w7pSw @@ -8787,23 +8724,21 @@ "TRIDENT_EMBLEM\n" "LngText.text" msgid "trident" -msgstr "" +msgstr "קלשון" #. 🔲 (U+1F532), see http://wiki.documentfoundation.org/Emoji #. EmJnV #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_SQUARE_BUTTON\n" "LngText.text" msgid "button2" -msgstr "לחצן" +msgstr "לחצן2" #. 🔳 (U+1F533), see http://wiki.documentfoundation.org/Emoji #. WRBMQ #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_SQUARE_BUTTON\n" @@ -8819,7 +8754,7 @@ "CLOCK_FACE_ONE_OCLOCK\n" "LngText.text" msgid "1 h" -msgstr "" +msgstr "שעה" #. 🕑 (U+1F551), see http://wiki.documentfoundation.org/Emoji #. ABhgX @@ -8829,7 +8764,7 @@ "CLOCK_FACE_TWO_OCLOCK\n" "LngText.text" msgid "2 h" -msgstr "" +msgstr "שעתיים" #. 🕒 (U+1F552), see http://wiki.documentfoundation.org/Emoji #. gMDo3 @@ -8839,7 +8774,7 @@ "CLOCK_FACE_THREE_OCLOCK\n" "LngText.text" msgid "3 h" -msgstr "" +msgstr "3 שע׳" #. 🕓 (U+1F553), see http://wiki.documentfoundation.org/Emoji #. uQYrA @@ -8849,7 +8784,7 @@ "CLOCK_FACE_FOUR_OCLOCK\n" "LngText.text" msgid "4 h" -msgstr "" +msgstr "4 שע׳" #. 🕔 (U+1F554), see http://wiki.documentfoundation.org/Emoji #. eU5ps @@ -8859,7 +8794,7 @@ "CLOCK_FACE_FIVE_OCLOCK\n" "LngText.text" msgid "5 h" -msgstr "" +msgstr "5 שע׳" #. 🕕 (U+1F555), see http://wiki.documentfoundation.org/Emoji #. yZrjC @@ -8869,7 +8804,7 @@ "CLOCK_FACE_SIX_OCLOCK\n" "LngText.text" msgid "6 h" -msgstr "" +msgstr "6 שע׳" #. 🕖 (U+1F556), see http://wiki.documentfoundation.org/Emoji #. pJEuM @@ -8879,7 +8814,7 @@ "CLOCK_FACE_SEVEN_OCLOCK\n" "LngText.text" msgid "7 h" -msgstr "" +msgstr "7 שע׳" #. 🕗 (U+1F557), see http://wiki.documentfoundation.org/Emoji #. eHaWk @@ -8889,7 +8824,7 @@ "CLOCK_FACE_EIGHT_OCLOCK\n" "LngText.text" msgid "8 h" -msgstr "" +msgstr "8 שע׳" #. 🕘 (U+1F558), see http://wiki.documentfoundation.org/Emoji #. BJKnh @@ -8899,7 +8834,7 @@ "CLOCK_FACE_NINE_OCLOCK\n" "LngText.text" msgid "9 h" -msgstr "" +msgstr "9 שע׳" #. 🕙 (U+1F559), see http://wiki.documentfoundation.org/Emoji #. ouBxv @@ -8909,7 +8844,7 @@ "CLOCK_FACE_TEN_OCLOCK\n" "LngText.text" msgid "10 h" -msgstr "" +msgstr "10 שע׳" #. 🕚 (U+1F55A), see http://wiki.documentfoundation.org/Emoji #. DA8M8 @@ -8919,7 +8854,7 @@ "CLOCK_FACE_ELEVEN_OCLOCK\n" "LngText.text" msgid "11 h" -msgstr "" +msgstr "11 שע׳" #. 🕛 (U+1F55B), see http://wiki.documentfoundation.org/Emoji #. NF5SV @@ -8929,7 +8864,7 @@ "CLOCK_FACE_TWELVE_OCLOCK\n" "LngText.text" msgid "12 h" -msgstr "" +msgstr "12 שע׳" #. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji #. t7XEN @@ -8939,7 +8874,7 @@ "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" msgid "1.30" -msgstr "" +msgstr "אחת וחצי" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji #. ac4Kx @@ -8949,7 +8884,7 @@ "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" msgid "2.30" -msgstr "" +msgstr "שתיים וחצי" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #. sd7EA @@ -8959,7 +8894,7 @@ "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" msgid "3.30" -msgstr "" +msgstr "שלוש וחצי" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #. CZwtb @@ -8969,7 +8904,7 @@ "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" msgid "4.30" -msgstr "" +msgstr "ארבע וחצי" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #. VunGj @@ -8979,7 +8914,7 @@ "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" msgid "5.30" -msgstr "" +msgstr "חמש וחצי" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #. WgH9r @@ -8989,7 +8924,7 @@ "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" msgid "6.30" -msgstr "" +msgstr "שש וחצי" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #. HfCBL @@ -8999,7 +8934,7 @@ "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" msgid "7.30" -msgstr "" +msgstr "שבע וחצי" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #. GGeBZ @@ -9009,7 +8944,7 @@ "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" msgid "8.30" -msgstr "" +msgstr "שמונה וחצי" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #. DCtfy @@ -9019,7 +8954,7 @@ "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" msgid "9.30" -msgstr "" +msgstr "תשע וחצי" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #. tJG5J @@ -9029,7 +8964,7 @@ "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" msgid "10.30" -msgstr "" +msgstr "עשר וחצי" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #. g55YB @@ -9039,7 +8974,7 @@ "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" msgid "11.30" -msgstr "" +msgstr "אחת עשרה וחצי" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #. PGjbq @@ -9049,7 +8984,7 @@ "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" msgid "12.30" -msgstr "" +msgstr "שתיים עזרה וחצי" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #. yzedv @@ -9059,18 +8994,17 @@ "MOUNT_FUJI\n" "LngText.text" msgid "Fuji" -msgstr "" +msgstr "פוג׳י" #. 🗼 (U+1F5FC), see http://wiki.documentfoundation.org/Emoji #. zoL5S #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "TOKYO_TOWER\n" "LngText.text" msgid "tower" -msgstr "חזקתית" +msgstr "מגדל" #. 🗽 (U+1F5FD), see http://wiki.documentfoundation.org/Emoji #. T5ixq @@ -9080,7 +9014,7 @@ "STATUE_OF_LIBERTY\n" "LngText.text" msgid "liberty" -msgstr "" +msgstr "חירות" #. 🗾 (U+1F5FE), see http://wiki.documentfoundation.org/Emoji #. vtyHr @@ -9090,40 +9024,37 @@ "SILHOUETTE_OF_JAPAN\n" "LngText.text" msgid "Japan" -msgstr "" +msgstr "מפת יפן" #. 🗿 (U+1F5FF), see http://wiki.documentfoundation.org/Emoji #. rdfcs #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MOYAI\n" "LngText.text" msgid "statue" -msgstr "מצב" +msgstr "פסל" #. 😀 (U+1F600), see http://wiki.documentfoundation.org/Emoji #. pJXUT #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GRINNING_FACE\n" "LngText.text" msgid "grinning" -msgstr "running" +msgstr "חיוך רחב" #. 😁 (U+1F601), see http://wiki.documentfoundation.org/Emoji #. aTARh #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GRINNING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "grin" -msgstr "רשת" +msgstr "חיוך" #. 😂 (U+1F602), see http://wiki.documentfoundation.org/Emoji #. DRNjV @@ -9133,7 +9064,7 @@ "FACE_WITH_TEARS_OF_JOY\n" "LngText.text" msgid "joy" -msgstr "" +msgstr "הנאה" #. 😃 (U+1F603), see http://wiki.documentfoundation.org/Emoji #. Gcdda @@ -9143,18 +9074,17 @@ "SMILING_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "smiley" -msgstr "" +msgstr "חייכן" #. 😄 (U+1F604), see http://wiki.documentfoundation.org/Emoji #. QBnjZ #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SMILING_FACE_WITH_OPEN_MOUTH_AND_SMILING_EYES\n" "LngText.text" msgid "smile" -msgstr "מיל" +msgstr "חיוך" #. 😅 (U+1F605), see http://wiki.documentfoundation.org/Emoji #. xmY3d @@ -9164,7 +9094,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n" "LngText.text" msgid "sweat smile" -msgstr "" +msgstr "חיוך מזיע" #. 😆 (U+1F606), see http://wiki.documentfoundation.org/Emoji #. RLsCo @@ -9174,7 +9104,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n" "LngText.text" msgid "laugh" -msgstr "" +msgstr "צחוק" #. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji #. pFuaT @@ -9184,7 +9114,7 @@ "SMILING_FACE_WITH_HALO\n" "LngText.text" msgid "innocent" -msgstr "" +msgstr "תמימות" #. 😈 (U+1F608), see http://wiki.documentfoundation.org/Emoji #. j4szE @@ -9194,18 +9124,17 @@ "SMILING_FACE_WITH_HORNS\n" "LngText.text" msgid "smiling imp" -msgstr "" +msgstr "שד מחייך" #. 😉 (U+1F609), see http://wiki.documentfoundation.org/Emoji #. k4AZW #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WINKING_FACE\n" "LngText.text" msgid "wink" -msgstr "ורוד" +msgstr "קריצה" #. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji #. xPZW8 @@ -9215,7 +9144,7 @@ "SMILING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "blush" -msgstr "" +msgstr "סומק" #. 😋 (U+1F60B), see http://wiki.documentfoundation.org/Emoji #. d5q9X @@ -9235,7 +9164,7 @@ "RELIEVED_FACE\n" "LngText.text" msgid "relieved" -msgstr "" +msgstr "הקלה" #. 😍 (U+1F60D), see http://wiki.documentfoundation.org/Emoji #. BhNrx @@ -9245,7 +9174,7 @@ "SMILING_FACE_WITH_HEART-SHAPED_EYES\n" "LngText.text" msgid "heart eyes" -msgstr "" +msgstr "עיני לבבות" #. 😎 (U+1F60E), see http://wiki.documentfoundation.org/Emoji #. ybcju @@ -9255,7 +9184,7 @@ "SMILING_FACE_WITH_SUNGLASSES\n" "LngText.text" msgid "sunglasses2" -msgstr "" +msgstr "משקפי שמש2" #. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji #. GDHDY @@ -9275,7 +9204,7 @@ "NEUTRAL_FACE\n" "LngText.text" msgid "neutral face" -msgstr "" +msgstr "פרצוף ניטרלי" #. 😑 (U+1F611), see http://wiki.documentfoundation.org/Emoji #. w7cU8 @@ -9285,7 +9214,7 @@ "EXPRESSIONLESS_FACE\n" "LngText.text" msgid "expressionless" -msgstr "" +msgstr "חסר הבעה" #. 😒 (U+1F612), see http://wiki.documentfoundation.org/Emoji #. teWUy @@ -9300,13 +9229,12 @@ #. 😓 (U+1F613), see http://wiki.documentfoundation.org/Emoji #. sPBAF #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FACE_WITH_COLD_SWEAT\n" "LngText.text" msgid "sweat" -msgstr "מושב" +msgstr "הזעה" #. 😔 (U+1F614), see http://wiki.documentfoundation.org/Emoji #. AEuYX @@ -9326,7 +9254,7 @@ "CONFUSED_FACE\n" "LngText.text" msgid "confused" -msgstr "" +msgstr "בלבול" #. 😖 (U+1F616), see http://wiki.documentfoundation.org/Emoji #. gFEjA @@ -9341,79 +9269,72 @@ #. 😗 (U+1F617), see http://wiki.documentfoundation.org/Emoji #. Wu9JJ #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "KISSING_FACE\n" "LngText.text" msgid "kissing" -msgstr "חסר" +msgstr "התנשקות" #. 😘 (U+1F618), see http://wiki.documentfoundation.org/Emoji #. BzWbz #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FACE_THROWING_A_KISS\n" "LngText.text" msgid "kiss2" -msgstr "נשיקה" +msgstr "נשיקה2" #. 😙 (U+1F619), see http://wiki.documentfoundation.org/Emoji #. 2sYft #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "KISSING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "kiss3" -msgstr "נשיקה" +msgstr "נשיקה3" #. 😚 (U+1F61A), see http://wiki.documentfoundation.org/Emoji #. D7GhD #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "KISSING_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kiss4" -msgstr "נשיקה" +msgstr "נשיקה4" #. 😛 (U+1F61B), see http://wiki.documentfoundation.org/Emoji #. ryiUu #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FACE_WITH_STUCK-OUT_TONGUE\n" "LngText.text" msgid "tongue2" -msgstr "לשון" +msgstr "לשון2" #. 😜 (U+1F61C), see http://wiki.documentfoundation.org/Emoji #. JuA5S #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FACE_WITH_STUCK-OUT_TONGUE_AND_WINKING_EYE\n" "LngText.text" msgid "tongue3" -msgstr "לשון" +msgstr "לשון3" #. 😝 (U+1F61D), see http://wiki.documentfoundation.org/Emoji #. CjnZ6 #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FACE_WITH_STUCK-OUT_TONGUE_AND_TIGHTLY-CLOSED_EYES\n" "LngText.text" msgid "tongue4" -msgstr "לשון" +msgstr "לשון4" #. 😞 (U+1F61E), see http://wiki.documentfoundation.org/Emoji #. DzqHp @@ -9448,13 +9369,12 @@ #. 😡 (U+1F621), see http://wiki.documentfoundation.org/Emoji #. 6wuDY #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "POUTING_FACE\n" "LngText.text" msgid "rage" -msgstr "הטווח" +msgstr "זעם" #. 😢 (U+1F622), see http://wiki.documentfoundation.org/Emoji #. x27LD @@ -9539,13 +9459,12 @@ #. 😪 (U+1F62A), see http://wiki.documentfoundation.org/Emoji #. XDpxA #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SLEEPY_FACE\n" "LngText.text" msgid "sleepy" -msgstr "לישון" +msgstr "ישנוניות" #. 😫 (U+1F62B), see http://wiki.documentfoundation.org/Emoji #. RwKrG @@ -9665,18 +9584,17 @@ "FACE_WITHOUT_MOUTH\n" "LngText.text" msgid "no mouth" -msgstr "" +msgstr "בלי פה" #. 😷 (U+1F637), see http://wiki.documentfoundation.org/Emoji #. 9E7g6 #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FACE_WITH_MEDICAL_MASK\n" "LngText.text" msgid "mask" -msgstr "סימון" +msgstr "מסכה" #. 😸 (U+1F638), see http://wiki.documentfoundation.org/Emoji #. vHxL5 @@ -9686,7 +9604,7 @@ "GRINNING_CAT_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "smile cat" -msgstr "" +msgstr "חתול מחייך" #. 😹 (U+1F639), see http://wiki.documentfoundation.org/Emoji #. GXKzF @@ -9696,7 +9614,7 @@ "CAT_FACE_WITH_TEARS_OF_JOY\n" "LngText.text" msgid "joy cat" -msgstr "" +msgstr "חתול נהנה" #. 😺 (U+1F63A), see http://wiki.documentfoundation.org/Emoji #. vAbxV @@ -9706,7 +9624,7 @@ "SMILING_CAT_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "smiley cat" -msgstr "" +msgstr "חתול מחייך" #. 😻 (U+1F63B), see http://wiki.documentfoundation.org/Emoji #. hzzjE @@ -9716,7 +9634,7 @@ "SMILING_CAT_FACE_WITH_HEART-SHAPED_EYES\n" "LngText.text" msgid "heart eyes cat" -msgstr "" +msgstr "חתול עיני לבבות" #. 😼 (U+1F63C), see http://wiki.documentfoundation.org/Emoji #. FuB4S @@ -9736,7 +9654,7 @@ "KISSING_CAT_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kissing cat" -msgstr "" +msgstr "חתול מנשק" #. 😾 (U+1F63E), see http://wiki.documentfoundation.org/Emoji #. NyFCw @@ -9756,7 +9674,7 @@ "CRYING_CAT_FACE\n" "LngText.text" msgid "crying cat" -msgstr "" +msgstr "חתול בוכה" #. 🙀 (U+1F640), see http://wiki.documentfoundation.org/Emoji #. W4tZy @@ -9766,7 +9684,7 @@ "WEARY_CAT_FACE\n" "LngText.text" msgid "scream cat" -msgstr "" +msgstr "חתול צורח" #. 🙅 (U+1F645), see http://wiki.documentfoundation.org/Emoji #. F5Acu @@ -9776,7 +9694,7 @@ "FACE_WITH_NO_GOOD_GESTURE\n" "LngText.text" msgid "no good" -msgstr "" +msgstr "לא טוב" #. 🙆 (U+1F646), see http://wiki.documentfoundation.org/Emoji #. zMSZd @@ -9786,7 +9704,7 @@ "FACE_WITH_OK_GESTURE\n" "LngText.text" msgid "ok3" -msgstr "" +msgstr "בסדר3" #. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji #. 4BtEr @@ -9796,7 +9714,7 @@ "PERSON_BOWING_DEEPLY\n" "LngText.text" msgid "prostration" -msgstr "" +msgstr "השתטחות" #. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji #. fB5uj @@ -9806,7 +9724,7 @@ "SEE-NO-EVIL_MONKEY\n" "LngText.text" msgid "see no evil" -msgstr "" +msgstr "לא ראיתי" #. 🙉 (U+1F649), see http://wiki.documentfoundation.org/Emoji #. Ja8yE @@ -9816,7 +9734,7 @@ "HEAR-NO-EVIL_MONKEY\n" "LngText.text" msgid "hear no evil" -msgstr "" +msgstr "לא שמעתי" #. 🙊 (U+1F64A), see http://wiki.documentfoundation.org/Emoji #. e3zGe @@ -9826,7 +9744,7 @@ "SPEAK-NO-EVIL_MONKEY\n" "LngText.text" msgid "speak no evil" -msgstr "" +msgstr "לא אמרתי" #. 🙋 (U+1F64B), see http://wiki.documentfoundation.org/Emoji #. Pwpxw @@ -9836,7 +9754,7 @@ "HAPPY_PERSON_RAISING_ONE_HAND\n" "LngText.text" msgid "happiness" -msgstr "" +msgstr "שמחה" #. 🙌 (U+1F64C), see http://wiki.documentfoundation.org/Emoji #. hTJ9z @@ -9846,7 +9764,7 @@ "PERSON_RAISING_BOTH_HANDS_IN_CELEBRATION\n" "LngText.text" msgid "celebration" -msgstr "" +msgstr "חגיגה" #. 🙍 (U+1F64D), see http://wiki.documentfoundation.org/Emoji #. xhTBV @@ -9871,24 +9789,22 @@ #. 🙏 (U+1F64F), see http://wiki.documentfoundation.org/Emoji #. KtK2c #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "PERSON_WITH_FOLDED_HANDS\n" "LngText.text" msgid "pray" -msgstr "אפור" +msgstr "תפילה" #. 🚀 (U+1F680), see http://wiki.documentfoundation.org/Emoji #. 6GdwG #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "ROCKET\n" "LngText.text" msgid "rocket" -msgstr "סוקט" +msgstr "רקטה" #. 🚁 (U+1F681), see http://wiki.documentfoundation.org/Emoji #. hADct @@ -9898,7 +9814,7 @@ "HELICOPTER\n" "LngText.text" msgid "helicopter" -msgstr "" +msgstr "מסוק" #. 🚂 (U+1F682), see http://wiki.documentfoundation.org/Emoji #. CEBY6 @@ -9908,7 +9824,7 @@ "STEAM_LOCOMOTIVE\n" "LngText.text" msgid "locomotive" -msgstr "" +msgstr "קטר" #. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji #. uiu74 @@ -9923,35 +9839,32 @@ #. 🚄 (U+1F684), see http://wiki.documentfoundation.org/Emoji #. 6gdPP #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HIGH-SPEED_TRAIN\n" "LngText.text" msgid "train2" -msgstr "גשם2" +msgstr "רכבת2" #. 🚅 (U+1F685), see http://wiki.documentfoundation.org/Emoji #. KWFVc #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HIGH-SPEED_TRAIN_WITH_BULLET_NOSE\n" "LngText.text" msgid "train3" -msgstr "גשם" +msgstr "רכבת3" #. 🚆 (U+1F686), see http://wiki.documentfoundation.org/Emoji #. UfDGn #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "TRAIN\n" "LngText.text" msgid "train" -msgstr "גשם" +msgstr "רכבת" #. 🚇 (U+1F687), see http://wiki.documentfoundation.org/Emoji #. dQgQx @@ -9961,7 +9874,7 @@ "METRO\n" "LngText.text" msgid "metro" -msgstr "" +msgstr "רכבת תחתית" #. 🚈 (U+1F688), see http://wiki.documentfoundation.org/Emoji #. jL5UD @@ -9971,18 +9884,17 @@ "LIGHT_RAIL\n" "LngText.text" msgid "light rail" -msgstr "" +msgstr "רכבת קלה" #. 🚉 (U+1F689), see http://wiki.documentfoundation.org/Emoji #. nU3jZ #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "STATION\n" "LngText.text" msgid "station" -msgstr "סיבוב" +msgstr "תחנה" #. 🚊 (U+1F68A), see http://wiki.documentfoundation.org/Emoji #. Dri8R @@ -9992,7 +9904,7 @@ "TRAM\n" "LngText.text" msgid "tram" -msgstr "" +msgstr "חשמלית" #. 🚋 (U+1F68B), see http://wiki.documentfoundation.org/Emoji #. 9YAFb @@ -10002,29 +9914,27 @@ "TRAM_CAR\n" "LngText.text" msgid "tram2" -msgstr "" +msgstr "חשמלית2" #. 🚌 (U+1F68C), see http://wiki.documentfoundation.org/Emoji #. DhKQs #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BUS\n" "LngText.text" msgid "bus" -msgstr "דמות" +msgstr "אוטובוס" #. 🚍 (U+1F68D), see http://wiki.documentfoundation.org/Emoji #. fTFJN #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "ONCOMING_BUS\n" "LngText.text" msgid "bus2" -msgstr "דמות" +msgstr "אוטובוס2" #. 🚎 (U+1F68E), see http://wiki.documentfoundation.org/Emoji #. tBeU2 @@ -10034,7 +9944,7 @@ "TROLLEYBUS\n" "LngText.text" msgid "trolleybus" -msgstr "" +msgstr "טרוליבוס" #. 🚏 (U+1F68F), see http://wiki.documentfoundation.org/Emoji #. YFFGE @@ -10044,7 +9954,7 @@ "BUS_STOP\n" "LngText.text" msgid "busstop" -msgstr "" +msgstr "תחנת אוטובוס" #. 🚐 (U+1F690), see http://wiki.documentfoundation.org/Emoji #. AiqLy @@ -10054,7 +9964,7 @@ "MINIBUS\n" "LngText.text" msgid "minibus" -msgstr "" +msgstr "מיניבוס" #. 🚑 (U+1F691), see http://wiki.documentfoundation.org/Emoji #. UjeDu @@ -10064,7 +9974,7 @@ "AMBULANCE\n" "LngText.text" msgid "ambulance" -msgstr "" +msgstr "אמבולנס" #. 🚒 (U+1F692), see http://wiki.documentfoundation.org/Emoji #. fHERr @@ -10074,7 +9984,7 @@ "FIRE_ENGINE\n" "LngText.text" msgid "fire engine" -msgstr "" +msgstr "כבאית" #. 🚓 (U+1F693), see http://wiki.documentfoundation.org/Emoji #. bgbGa @@ -10084,7 +9994,7 @@ "POLICE_CAR\n" "LngText.text" msgid "police car" -msgstr "" +msgstr "רכב משטרה" #. 🚔 (U+1F694), see http://wiki.documentfoundation.org/Emoji #. wMPG9 @@ -10094,7 +10004,7 @@ "ONCOMING_POLICE_CAR\n" "LngText.text" msgid "police car2" -msgstr "" +msgstr "רכב משטרה2" #. 🚕 (U+1F695), see http://wiki.documentfoundation.org/Emoji #. xVRoq @@ -10104,7 +10014,7 @@ "TAXI\n" "LngText.text" msgid "taxi" -msgstr "" +msgstr "מונית" #. 🚖 (U+1F696), see http://wiki.documentfoundation.org/Emoji #. hvAxP @@ -10114,51 +10024,47 @@ "ONCOMING_TAXI\n" "LngText.text" msgid "taxi2" -msgstr "" +msgstr "מונית2" #. 🚗 (U+1F697), see http://wiki.documentfoundation.org/Emoji #. 7EjBh #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "AUTOMOBILE\n" "LngText.text" msgid "car" -msgstr "תרשים" +msgstr "מכונית" #. 🚘 (U+1F698), see http://wiki.documentfoundation.org/Emoji #. VAENQ #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "ONCOMING_AUTOMOBILE\n" "LngText.text" msgid "car2" -msgstr "חתול2" +msgstr "מכונית2" #. 🚙 (U+1F699), see http://wiki.documentfoundation.org/Emoji #. F53eT #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RECREATIONAL_VEHICLE\n" "LngText.text" msgid "car3" -msgstr "חתול2" +msgstr "מכונית3" #. 🚚 (U+1F69A), see http://wiki.documentfoundation.org/Emoji #. Ky66X #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DELIVERY_TRUCK\n" "LngText.text" msgid "truck2" -msgstr "משאית" +msgstr "משאית2" #. 🚛 (U+1F69B), see http://wiki.documentfoundation.org/Emoji #. 8soAF @@ -10168,7 +10074,7 @@ "ARTICULATED_LORRY\n" "LngText.text" msgid "lorry" -msgstr "" +msgstr "משאית" #. 🚜 (U+1F69C), see http://wiki.documentfoundation.org/Emoji #. Jwdgy @@ -10178,7 +10084,7 @@ "TRACTOR\n" "LngText.text" msgid "tractor" -msgstr "" +msgstr "טרקטור" #. 🚝 (U+1F69D), see http://wiki.documentfoundation.org/Emoji #. xBCEM @@ -10188,7 +10094,7 @@ "MONORAIL\n" "LngText.text" msgid "monorail" -msgstr "" +msgstr "מונורייל" #. 🚞 (U+1F69E), see http://wiki.documentfoundation.org/Emoji #. YF5em @@ -10228,18 +10134,17 @@ "AERIAL_TRAMWAY\n" "LngText.text" msgid "aerial tramway" -msgstr "" +msgstr "רכבל" #. 🚢 (U+1F6A2), see http://wiki.documentfoundation.org/Emoji #. iT3XR #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SHIP\n" "LngText.text" msgid "ship" -msgstr "מוקצף" +msgstr "ספינה" #. 🚣 (U+1F6A3), see http://wiki.documentfoundation.org/Emoji #. UGEtk @@ -10259,7 +10164,7 @@ "SPEEDBOAT\n" "LngText.text" msgid "speedboat" -msgstr "" +msgstr "סירת מרוץ" #. 🚥 (U+1F6A5), see http://wiki.documentfoundation.org/Emoji #. hFcdF @@ -10269,7 +10174,7 @@ "HORIZONTAL_TRAFFIC_LIGHT\n" "LngText.text" msgid "traffic light" -msgstr "" +msgstr "רמזור" #. 🚦 (U+1F6A6), see http://wiki.documentfoundation.org/Emoji #. nV9zL @@ -10279,18 +10184,17 @@ "VERTICAL_TRAFFIC_LIGHT\n" "LngText.text" msgid "traffic light2" -msgstr "" +msgstr "רמזור2" #. 🚧 (U+1F6A7), see http://wiki.documentfoundation.org/Emoji #. JaFGo #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CONSTRUCTION_SIGN\n" "LngText.text" msgid "construction" -msgstr "הוראה" +msgstr "בנייה" #. 🚨 (U+1F6A8), see http://wiki.documentfoundation.org/Emoji #. oixqW @@ -10300,7 +10204,7 @@ "POLICE_CARS_REVOLVING_LIGHT\n" "LngText.text" msgid "rotating light" -msgstr "" +msgstr "צפירור" #. 🚩 (U+1F6A9), see http://wiki.documentfoundation.org/Emoji #. AGDmx @@ -10310,7 +10214,7 @@ "TRIANGULAR_FLAG_ON_POST\n" "LngText.text" msgid "triangular flag" -msgstr "" +msgstr "דגל משולש" #. 🚪 (U+1F6AA), see http://wiki.documentfoundation.org/Emoji #. FCxDK @@ -10320,7 +10224,7 @@ "DOOR\n" "LngText.text" msgid "door" -msgstr "" +msgstr "דלת" #. 🚫 (U+1F6AB), see http://wiki.documentfoundation.org/Emoji #. dAJJp @@ -10330,7 +10234,7 @@ "NO_ENTRY_SIGN\n" "LngText.text" msgid "no entry sign" -msgstr "" +msgstr "שלט אין כניסה" #. 🚬 (U+1F6AC), see http://wiki.documentfoundation.org/Emoji #. H2dFa @@ -10340,7 +10244,7 @@ "SMOKING_SYMBOL\n" "LngText.text" msgid "smoking" -msgstr "" +msgstr "עישון" #. 🚭 (U+1F6AD), see http://wiki.documentfoundation.org/Emoji #. ReEtE @@ -10350,18 +10254,17 @@ "NO_SMOKING_SYMBOL\n" "LngText.text" msgid "no smoking" -msgstr "" +msgstr "העישון אסור" #. 🚮 (U+1F6AE), see http://wiki.documentfoundation.org/Emoji #. owPyG #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "PUT_LITTER_IN_ITS_PLACE_SYMBOL\n" "LngText.text" msgid "litter" -msgstr "מכתב" +msgstr "פסולת" #. 🚯 (U+1F6AF), see http://wiki.documentfoundation.org/Emoji #. 4qXxK @@ -10371,7 +10274,7 @@ "DO_NOT_LITTER_SYMBOL\n" "LngText.text" msgid "do not litter" -msgstr "" +msgstr "אין להשליך פסולת" #. 🚰 (U+1F6B0), see http://wiki.documentfoundation.org/Emoji #. ZjTkh @@ -10381,7 +10284,7 @@ "POTABLE_WATER_SYMBOL\n" "LngText.text" msgid "potable water" -msgstr "" +msgstr "מי שתייה" #. 🚱 (U+1F6B1), see http://wiki.documentfoundation.org/Emoji #. sbTAA @@ -10391,18 +10294,17 @@ "NON-POTABLE_WATER_SYMBOL\n" "LngText.text" msgid "non-potable water" -msgstr "" +msgstr "מים אסורים לשתייה" #. 🚲 (U+1F6B2), see http://wiki.documentfoundation.org/Emoji #. KZmCA #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BICYCLE\n" "LngText.text" msgid "bike" -msgstr "כמו" +msgstr "אופנוע" #. 🚳 (U+1F6B3), see http://wiki.documentfoundation.org/Emoji #. RECxo @@ -10412,7 +10314,7 @@ "NO_BICYCLES\n" "LngText.text" msgid "no bicycles" -msgstr "" +msgstr "אסורה הכניסה לאופניים" #. 🚴 (U+1F6B4), see http://wiki.documentfoundation.org/Emoji #. FGCMF @@ -10442,7 +10344,7 @@ "PEDESTRIAN\n" "LngText.text" msgid "walking" -msgstr "" +msgstr "הליכה" #. 🚷 (U+1F6B7), see http://wiki.documentfoundation.org/Emoji #. wMwUM @@ -10452,7 +10354,7 @@ "NO_PEDESTRIANS\n" "LngText.text" msgid "no pedestrians" -msgstr "" +msgstr "אין כניסה להולכי רגל" #. 🚸 (U+1F6B8), see http://wiki.documentfoundation.org/Emoji #. tfRvX @@ -10462,18 +10364,17 @@ "CHILDREN_CROSSING\n" "LngText.text" msgid "crosswalk" -msgstr "" +msgstr "מעבר חצייה" #. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji #. 5bTta #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MENS_SYMBOL\n" "LngText.text" msgid "mens" -msgstr "תפריט" +msgstr "לגברים" #. 🚺 (U+1F6BA), see http://wiki.documentfoundation.org/Emoji #. DkTJE @@ -10483,7 +10384,7 @@ "WOMENS_SYMBOL\n" "LngText.text" msgid "womens" -msgstr "" +msgstr "נשים" #. 🚻 (U+1F6BB), see http://wiki.documentfoundation.org/Emoji #. fyZ5J @@ -10493,18 +10394,17 @@ "RESTROOM\n" "LngText.text" msgid "restroom" -msgstr "" +msgstr "שירותים" #. 🚼 (U+1F6BC), see http://wiki.documentfoundation.org/Emoji #. waXZA #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BABY_SYMBOL\n" "LngText.text" msgid "baby2" -msgstr "תינוק" +msgstr "תינוק2" #. 🚽 (U+1F6BD), see http://wiki.documentfoundation.org/Emoji #. 7j9FT @@ -10514,7 +10414,7 @@ "TOILET\n" "LngText.text" msgid "toilet" -msgstr "" +msgstr "אסלה" #. 🚾 (U+1F6BE), see http://wiki.documentfoundation.org/Emoji #. 2GY7E @@ -10524,7 +10424,7 @@ "WATER_CLOSET\n" "LngText.text" msgid "toilet2" -msgstr "" +msgstr "שירותים2" #. 🚿 (U+1F6BF), see http://wiki.documentfoundation.org/Emoji #. WrCWt @@ -10534,18 +10434,17 @@ "SHOWER\n" "LngText.text" msgid "shower" -msgstr "" +msgstr "מקלחת" #. 🛀 (U+1F6C0), see http://wiki.documentfoundation.org/Emoji #. g545x #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BATH\n" "LngText.text" msgid "bath" -msgstr "נוסחאות" +msgstr "אמבטיה" #. 🛁 (U+1F6C1), see http://wiki.documentfoundation.org/Emoji #. miVDJ @@ -10555,29 +10454,27 @@ "BATHTUB\n" "LngText.text" msgid "bathtub" -msgstr "" +msgstr "אמבטיה" #. 🛂 (U+1F6C2), see http://wiki.documentfoundation.org/Emoji #. BXMUC #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "PASSPORT_CONTROL\n" "LngText.text" msgid "passport" -msgstr "ססמה" +msgstr "דרכון" #. 🛃 (U+1F6C3), see http://wiki.documentfoundation.org/Emoji #. EcdFo #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CUSTOMS\n" "LngText.text" msgid "customs" -msgstr "התאמה אישית" +msgstr "מכס" #. 🛄 (U+1F6C4), see http://wiki.documentfoundation.org/Emoji #. rR2Xw @@ -10587,7 +10484,7 @@ "BAGGAGE_CLAIM\n" "LngText.text" msgid "baggage" -msgstr "" +msgstr "כבודה" #. 🛅 (U+1F6C5), see http://wiki.documentfoundation.org/Emoji #. pxsMt @@ -10597,7 +10494,7 @@ "LEFT_LUGGAGE\n" "LngText.text" msgid "left luggage" -msgstr "" +msgstr "אחסון כבודה" #. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji #. LZEAD @@ -10617,7 +10514,7 @@ "SLIGHTLY_SMILING_FACE\n" "LngText.text" msgid "smiling3" -msgstr "" +msgstr "חיוך3" #. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji #. CeamS @@ -10647,7 +10544,7 @@ "SLEEPING_ACCOMMODATION\n" "LngText.text" msgid "sleep" -msgstr "" +msgstr "שינה" #. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji #. Xuc2A @@ -10657,7 +10554,7 @@ "MAN_IN_BUSINESS_SUIT_LEVITATING\n" "LngText.text" msgid "suit" -msgstr "" +msgstr "חליפה" #. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji #. AkeBV @@ -10667,7 +10564,7 @@ "SPEAKING_HEAD_IN_SILHOUETTE\n" "LngText.text" msgid "head" -msgstr "" +msgstr "ראש" #. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji #. cf525 @@ -10677,7 +10574,7 @@ "GOLFER\n" "LngText.text" msgid "golf" -msgstr "" +msgstr "גולף" #. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji #. As3GE @@ -10687,7 +10584,7 @@ "WEIGHT_LIFTER\n" "LngText.text" msgid "weight lifter" -msgstr "" +msgstr "הרמת משקולות" #. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji #. bDCyA @@ -10697,7 +10594,7 @@ "RACING_CAR\n" "LngText.text" msgid "car4" -msgstr "" +msgstr "מכונית4" #. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji #. 2MoqD @@ -10707,7 +10604,7 @@ "RACING_MOTORCYCLE\n" "LngText.text" msgid "motorcycle" -msgstr "" +msgstr "אופנוע" #. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji #. gNBn5 @@ -10717,7 +10614,7 @@ "REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n" "LngText.text" msgid "finger" -msgstr "" +msgstr "אצבע" #. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji #. AHWD9 @@ -10727,7 +10624,7 @@ "RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n" "LngText.text" msgid "spock" -msgstr "" +msgstr "ספוק" #. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji #. Ati77 @@ -10737,7 +10634,7 @@ "RAISED_HAND_WITH_FINGERS_SPLAYED\n" "LngText.text" msgid "hand2" -msgstr "" +msgstr "יד2" #. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji #. 6ADML @@ -10747,7 +10644,7 @@ "EYE\n" "LngText.text" msgid "eye" -msgstr "" +msgstr "עין" #. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji #. z7WCd @@ -10757,7 +10654,7 @@ "LEFT_SPEECH_BUBBLE\n" "LngText.text" msgid "bubble" -msgstr "" +msgstr "בועה" #. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji #. 7FoF3 @@ -10767,7 +10664,7 @@ "RIGHT_ANGER_BUBBLE\n" "LngText.text" msgid "bubble4" -msgstr "" +msgstr "בועה4" #. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji #. djWbu @@ -10777,7 +10674,7 @@ "HOLE\n" "LngText.text" msgid "hole" -msgstr "" +msgstr "חור" #. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji #. AGMoo @@ -10787,7 +10684,7 @@ "DARK_SUNGLASSES\n" "LngText.text" msgid "sunglasses" -msgstr "" +msgstr "משקפי שמש" #. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji #. fq7Cq @@ -10797,7 +10694,7 @@ "SHOPPING_BAGS\n" "LngText.text" msgid "shop" -msgstr "" +msgstr "חנות" #. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji #. eQaW4 @@ -10807,7 +10704,7 @@ "CHIPMUNK\n" "LngText.text" msgid "chipmunk" -msgstr "" +msgstr "סנאי מפוספס" #. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji #. Yoo9T @@ -10817,7 +10714,7 @@ "DOVE_OF_PEACE\n" "LngText.text" msgid "dove" -msgstr "" +msgstr "יונה" #. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji #. Uyg9S @@ -10827,7 +10724,7 @@ "SPIDER\n" "LngText.text" msgid "spider" -msgstr "" +msgstr "עכביש" #. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji #. DPtYj @@ -10837,7 +10734,7 @@ "SPIDER_WEB\n" "LngText.text" msgid "web" -msgstr "" +msgstr "רשת" #. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji #. UaQDN @@ -10847,7 +10744,7 @@ "ROSETTE\n" "LngText.text" msgid "rosette" -msgstr "" +msgstr "שושן" #. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji #. SAxJc @@ -10857,7 +10754,7 @@ "HOT_PEPPER\n" "LngText.text" msgid "pepper" -msgstr "" +msgstr "פלפל" #. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji #. 3WpkF @@ -10867,7 +10764,7 @@ "FORK_AND_KNIFE_WITH_PLATE\n" "LngText.text" msgid "plate" -msgstr "" +msgstr "צלחת" #. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji #. zvA3Y @@ -10877,7 +10774,7 @@ "WORLD_MAP\n" "LngText.text" msgid "map" -msgstr "" +msgstr "מפה" #. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji #. PU3q7 @@ -10887,7 +10784,7 @@ "SNOW_CAPPED_MOUNTAIN\n" "LngText.text" msgid "mountain2" -msgstr "" +msgstr "הר2" #. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji #. 9CR2B @@ -10897,7 +10794,7 @@ "CAMPING\n" "LngText.text" msgid "camping" -msgstr "" +msgstr "מחנאות" #. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji #. QQU86 @@ -10907,7 +10804,7 @@ "BEACH_WITH_UMBRELLA\n" "LngText.text" msgid "beach" -msgstr "" +msgstr "חוף" #. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji #. E3dKM @@ -10917,7 +10814,7 @@ "DESERT\n" "LngText.text" msgid "desert" -msgstr "" +msgstr "מדבר" #. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji #. uFHXi @@ -10927,7 +10824,7 @@ "DESERT_ISLAND\n" "LngText.text" msgid "island" -msgstr "" +msgstr "אי" #. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji #. rB6rV @@ -10937,7 +10834,7 @@ "NATIONAL_PARK\n" "LngText.text" msgid "park" -msgstr "" +msgstr "פארק" #. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji #. KtGDD @@ -10947,7 +10844,7 @@ "STADIUM\n" "LngText.text" msgid "stadium" -msgstr "" +msgstr "אצטדיון" #. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji #. 9UYRC @@ -10957,7 +10854,7 @@ "CLASSICAL_BUILDING\n" "LngText.text" msgid "museum" -msgstr "" +msgstr "מוזיאון" #. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji #. TU5KH @@ -10967,7 +10864,7 @@ "BUILDING_CONSTRUCTION\n" "LngText.text" msgid "crane" -msgstr "" +msgstr "עגורן" #. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji #. ybjvN @@ -10977,7 +10874,7 @@ "HOUSE_BUILDINGS\n" "LngText.text" msgid "houses" -msgstr "" +msgstr "בתים" #. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji #. TEAtW @@ -10987,7 +10884,7 @@ "DERELICT_HOUSE_BUILDING\n" "LngText.text" msgid "house3" -msgstr "" +msgstr "בית3" #. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji #. rjmXE @@ -10997,7 +10894,7 @@ "CITYSCAPE\n" "LngText.text" msgid "city" -msgstr "" +msgstr "עיר" #. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji #. gdgnE @@ -11007,7 +10904,7 @@ "MOTORWAY\n" "LngText.text" msgid "motorway" -msgstr "" +msgstr "כביש" #. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji #. XNZp2 @@ -11017,7 +10914,7 @@ "RAILWAY_TRACK\n" "LngText.text" msgid "track" -msgstr "" +msgstr "מסלול" #. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji #. JDKF2 @@ -11027,7 +10924,7 @@ "OIL_DRUM\n" "LngText.text" msgid "drum" -msgstr "" +msgstr "תוף" #. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji #. KG2xi @@ -11037,7 +10934,7 @@ "PASSENGER_SHIP\n" "LngText.text" msgid "ship2" -msgstr "" +msgstr "ספינה2" #. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji #. hfqZC @@ -11047,7 +10944,7 @@ "MOTOR_BOAT\n" "LngText.text" msgid "motor boat" -msgstr "" +msgstr "סירת מנוע" #. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji #. M7r8K @@ -11057,7 +10954,7 @@ "SMALL_AIRPLANE\n" "LngText.text" msgid "airplane2" -msgstr "" +msgstr "מטוס2" #. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji #. FTJfG @@ -11067,7 +10964,7 @@ "AIRPLANE_DEPARTURE\n" "LngText.text" msgid "departure" -msgstr "" +msgstr "המראה" #. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji #. CwiZi @@ -11077,7 +10974,7 @@ "AIRPLANE_ARRIVING\n" "LngText.text" msgid "arrival" -msgstr "" +msgstr "נחיתה" #. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji #. 5BbRQ @@ -11087,7 +10984,7 @@ "SATELLITE\n" "LngText.text" msgid "satellite" -msgstr "" +msgstr "לוויין" #. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji #. GePUa @@ -11097,7 +10994,7 @@ "BELLHOP_BELL\n" "LngText.text" msgid "bell2" -msgstr "" +msgstr "פעמון2" #. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji #. N3XKK @@ -11107,7 +11004,7 @@ "MANTELPIECE_CLOCK\n" "LngText.text" msgid "clock" -msgstr "" +msgstr "שעון" #. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji #. vC2BF @@ -11117,7 +11014,7 @@ "THERMOMETER\n" "LngText.text" msgid "thermometer" -msgstr "" +msgstr "מדחום" #. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji #. eDCCS @@ -11127,7 +11024,7 @@ "WHITE_SUN_WITH_SMALL_CLOUD\n" "LngText.text" msgid "cloudy" -msgstr "" +msgstr "מעונן" #. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji #. yuxDV @@ -11137,7 +11034,7 @@ "WHITE_SUN_BEHIND_CLOUD\n" "LngText.text" msgid "cloudy2" -msgstr "" +msgstr "מעונן2" #. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji #. SwLUG @@ -11147,7 +11044,7 @@ "WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n" "LngText.text" msgid "rainy" -msgstr "" +msgstr "גשום" #. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji #. uBa2e @@ -11157,7 +11054,7 @@ "CLOUD_WITH_RAIN\n" "LngText.text" msgid "storm" -msgstr "" +msgstr "סופה" #. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji #. f3Sbb @@ -11167,7 +11064,7 @@ "CLOUD_WITH_SNOW\n" "LngText.text" msgid "snow" -msgstr "" +msgstr "שלג" #. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji #. boe8A @@ -11177,7 +11074,7 @@ "CLOUD_WITH_LIGHTNING\n" "LngText.text" msgid "lightning" -msgstr "" +msgstr "ברק" #. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji #. RS8Wb @@ -11187,7 +11084,7 @@ "CLOUD_WITH_TORNADO\n" "LngText.text" msgid "tornado" -msgstr "" +msgstr "טורנדו" #. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji #. EqDhD @@ -11197,7 +11094,7 @@ "FOG\n" "LngText.text" msgid "fog" -msgstr "" +msgstr "ערפל" #. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji #. XTTqx @@ -11207,7 +11104,7 @@ "WIND_BLOWING_FACE\n" "LngText.text" msgid "wind" -msgstr "" +msgstr "רוח" #. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji #. 7X7bW @@ -11217,7 +11114,7 @@ "REMINDER_RIBBON\n" "LngText.text" msgid "ribbon" -msgstr "" +msgstr "סרט" #. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji #. RqApZ @@ -11227,7 +11124,7 @@ "ADMISSION_TICKETS\n" "LngText.text" msgid "ticket2" -msgstr "" +msgstr "כרטיס2" #. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji #. GLTVB @@ -11237,7 +11134,7 @@ "MILITARY_MEDAL\n" "LngText.text" msgid "medal2" -msgstr "" +msgstr "מדליה2" #. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji #. uT4sx @@ -11247,7 +11144,7 @@ "SPORTS_MEDAL\n" "LngText.text" msgid "medal" -msgstr "" +msgstr "מדליה" #. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji #. EszEZ @@ -11257,7 +11154,7 @@ "JOYSTICK\n" "LngText.text" msgid "joystick" -msgstr "" +msgstr "ג׳ויסטיק" #. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji #. wY9cB @@ -11267,7 +11164,7 @@ "FRAME_WITH_PICTURE\n" "LngText.text" msgid "picture" -msgstr "" +msgstr "תמונה" #. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji #. RWFZz @@ -11277,7 +11174,7 @@ "STUDIO_MICROPHONE\n" "LngText.text" msgid "microphone2" -msgstr "" +msgstr "מיקרופון2" #. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji #. FNDDe @@ -11297,7 +11194,7 @@ "CONTROL_KNOBS\n" "LngText.text" msgid "control" -msgstr "" +msgstr "פקד" #. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji #. DunGT @@ -11307,7 +11204,7 @@ "DESKTOP_COMPUTER\n" "LngText.text" msgid "computer2" -msgstr "" +msgstr "מחשב2" #. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji #. 5i9iG @@ -11317,7 +11214,7 @@ "PRINTER\n" "LngText.text" msgid "printer" -msgstr "" +msgstr "מדפסת" #. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji #. gCiTV @@ -11327,7 +11224,7 @@ "THREE_BUTTON_MOUSE\n" "LngText.text" msgid "mouse3" -msgstr "" +msgstr "עכבר3" #. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji #. kr6mD @@ -11337,7 +11234,7 @@ "TRACKBALL\n" "LngText.text" msgid "trackball" -msgstr "" +msgstr "כדור מעקב" #. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji #. a7M8c @@ -11347,7 +11244,7 @@ "FILM_FRAMES\n" "LngText.text" msgid "film" -msgstr "" +msgstr "סרט צילום" #. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji #. 5XEHv @@ -11357,7 +11254,7 @@ "FILM_PROJECTOR\n" "LngText.text" msgid "projector" -msgstr "" +msgstr "מקרן" #. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji #. e6d8k @@ -11367,7 +11264,7 @@ "CAMERA_WITH_FLASH\n" "LngText.text" msgid "flash" -msgstr "" +msgstr "הבזק" #. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji #. 85ZZG @@ -11377,7 +11274,7 @@ "CANDLE\n" "LngText.text" msgid "candle" -msgstr "" +msgstr "נר" #. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji #. Roj4S @@ -11387,7 +11284,7 @@ "ROLLED-UP_NEWSPAPER\n" "LngText.text" msgid "newspaper2" -msgstr "" +msgstr "עתון2" #. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji #. KGGrV @@ -11397,7 +11294,7 @@ "LABEL\n" "LngText.text" msgid "label" -msgstr "" +msgstr "תווית" #. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji #. MtcT9 @@ -11407,7 +11304,7 @@ "BALLOT_BOX_WITH_BALLOT\n" "LngText.text" msgid "ballot" -msgstr "" +msgstr "פתק בחירות" #. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji #. eVhur @@ -11417,7 +11314,7 @@ "LOWER_LEFT_FOUNTAIN_PEN\n" "LngText.text" msgid "pen2" -msgstr "" +msgstr "עט2" #. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji #. zPbDv @@ -11427,7 +11324,7 @@ "LOWER_LEFT_BALLPOINT_PEN\n" "LngText.text" msgid "pen" -msgstr "" +msgstr "עט" #. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji #. GMFPP @@ -11437,7 +11334,7 @@ "LOWER_LEFT_PAINTBRUSH\n" "LngText.text" msgid "paintbrush" -msgstr "" +msgstr "מברשת" #. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji #. oj4qT @@ -11447,7 +11344,7 @@ "LOWER_LEFT_CRAYON\n" "LngText.text" msgid "crayon" -msgstr "" +msgstr "עפרון צבע" #. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji #. 6mFoM @@ -11457,7 +11354,7 @@ "CARD_INDEX_DIVIDERS\n" "LngText.text" msgid "index" -msgstr "" +msgstr "חוצץ" #. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji #. 4vrvA @@ -11467,7 +11364,7 @@ "SPIRAL_NOTE_PAD\n" "LngText.text" msgid "notepad" -msgstr "" +msgstr "מחברת" #. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji #. fjcB6 @@ -11477,7 +11374,7 @@ "SPIRAL_CALENDAR_PAD\n" "LngText.text" msgid "calendar3" -msgstr "" +msgstr "לוח שנה3" #. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji #. bwrwB @@ -11487,7 +11384,7 @@ "LINKED_PAPERCLIPS\n" "LngText.text" msgid "paperclip2" -msgstr "" +msgstr "מהדק נייר" #. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji #. zm6R6 @@ -11497,7 +11394,7 @@ "CARD_FILE_BOX\n" "LngText.text" msgid "box" -msgstr "" +msgstr "קופסה" #. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji #. D9Ev3 @@ -11507,7 +11404,7 @@ "FILE_CABINET\n" "LngText.text" msgid "cabinet" -msgstr "" +msgstr "ארונית" #. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji #. 7Rhsi @@ -11517,7 +11414,7 @@ "WASTEBASKET\n" "LngText.text" msgid "wastebasket" -msgstr "" +msgstr "סל אשפה" #. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji #. i498o @@ -11527,7 +11424,7 @@ "OLD_KEY\n" "LngText.text" msgid "key2" -msgstr "" +msgstr "מפתח2" #. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji #. EDHj7 @@ -11537,7 +11434,7 @@ "HAMMER_AND_WRENCH\n" "LngText.text" msgid "hammer and wrench" -msgstr "" +msgstr "פטיש ומגל" #. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji #. qnaCC @@ -11547,7 +11444,7 @@ "DAGGER_KNIFE\n" "LngText.text" msgid "knife2" -msgstr "" +msgstr "סכין2" #. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji #. QCXRd @@ -11557,7 +11454,7 @@ "SHIELD\n" "LngText.text" msgid "shield" -msgstr "" +msgstr "מגן" #. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji #. F9G5C @@ -11567,7 +11464,7 @@ "COMPRESSION\n" "LngText.text" msgid "clamp" -msgstr "" +msgstr "מלחציים" #. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji #. g4DGu @@ -11577,7 +11474,7 @@ "BED\n" "LngText.text" msgid "bed" -msgstr "" +msgstr "מיטה" #. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji #. XnFom @@ -11587,7 +11484,7 @@ "COUCH_AND_LAMP\n" "LngText.text" msgid "couch" -msgstr "" +msgstr "ספה" #. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji #. R8EvG @@ -11597,7 +11494,7 @@ "OM_SYMBOL\n" "LngText.text" msgid "om" -msgstr "" +msgstr "אום" #. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji #. ETWok @@ -11607,7 +11504,7 @@ "DOUBLE_VERTICAL_BAR\n" "LngText.text" msgid "pause" -msgstr "" +msgstr "השהיה" #. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji #. 6Fkq7 @@ -11617,7 +11514,7 @@ "BLACK_SQUARE_FOR_STOP\n" "LngText.text" msgid "stop2" -msgstr "" +msgstr "עצור2" #. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji #. PApbW @@ -11627,7 +11524,7 @@ "BLACK_CIRCLE_FOR_RECORD\n" "LngText.text" msgid "record" -msgstr "" +msgstr "הקלטה" #. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji #. hytrL @@ -11637,7 +11534,7 @@ "WAVING_BLACK_FLAG\n" "LngText.text" msgid "flag" -msgstr "" +msgstr "דגל" #. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji #. mBjRj @@ -11647,7 +11544,7 @@ "WAVING_WHITE_FLAG\n" "LngText.text" msgid "flag2" -msgstr "" +msgstr "דגל2" #. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji #. GBXU7 @@ -11657,7 +11554,7 @@ "BALLOT_BOX_WITH_BOLD_SCRIPT_X\n" "LngText.text" msgid "checkbox4" -msgstr "" +msgstr "תיבת סימון4" #. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji #. htBDW @@ -11667,7 +11564,7 @@ "BOYS_SYMBOL\n" "LngText.text" msgid "boys" -msgstr "" +msgstr "בנים" #. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji #. MNHt2 @@ -11677,7 +11574,7 @@ "CIRCLED_INFORMATION_SOURCE\n" "LngText.text" msgid "information3" -msgstr "" +msgstr "מידע3" #. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji #. 9wBWk @@ -11687,7 +11584,7 @@ "GIRLS_SYMBOL\n" "LngText.text" msgid "girls" -msgstr "" +msgstr "בנות" #. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji #. wpUD2 @@ -11697,7 +11594,7 @@ "UP-POINTING_SMALL_AIRPLANE\n" "LngText.text" msgid "airplane4" -msgstr "" +msgstr "מטוס4" #. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji #. AZpeG @@ -11707,7 +11604,7 @@ "DIESEL_LOCOMOTIVE\n" "LngText.text" msgid "locomotive2" -msgstr "" +msgstr "קטר2" #. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji #. RCBUE @@ -11717,7 +11614,7 @@ "UP-POINTING_AIRPLANE\n" "LngText.text" msgid "airplane3" -msgstr "" +msgstr "מטוס3" #. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji #. vEzt8 @@ -11727,7 +11624,7 @@ "ONCOMING_FIRE_ENGINE\n" "LngText.text" msgid "fire engine2" -msgstr "" +msgstr "כבאית2" #. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji #. 5E5qt @@ -11737,7 +11634,7 @@ "UP-POINTING_MILITARY_AIRPLANE\n" "LngText.text" msgid "airplane5" -msgstr "" +msgstr "מטוס5" #. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji #. 3YCGT @@ -11747,7 +11644,7 @@ "NORTHEAST-POINTING_AIRPLANE\n" "LngText.text" msgid "airplane6" -msgstr "" +msgstr "מטוס6" #. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji #. V5pj8 @@ -11757,7 +11654,7 @@ "RIGHT_THOUGHT_BUBBLE\n" "LngText.text" msgid "bubble5" -msgstr "" +msgstr "בועה5" #. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji #. yp5bD @@ -11767,7 +11664,7 @@ "LIGHTNING_MOOD_BUBBLE\n" "LngText.text" msgid "bubble6" -msgstr "" +msgstr "בועה6" #. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji #. FFx4K @@ -11777,7 +11674,7 @@ "LEFT_THOUGHT_BUBBLE\n" "LngText.text" msgid "bubble7" -msgstr "" +msgstr "בועה7" #. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji #. JEqPj @@ -11787,7 +11684,7 @@ "STOCK_CHART\n" "LngText.text" msgid "chart5" -msgstr "" +msgstr "תרשים5" #. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji #. LNFqr @@ -11797,7 +11694,7 @@ "PAGE_WITH_CIRCLED_TEXT\n" "LngText.text" msgid "page4" -msgstr "" +msgstr "דף4" #. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji #. zi4B5 @@ -11807,7 +11704,7 @@ "LEFT_WRITING_HAND\n" "LngText.text" msgid "writing2" -msgstr "" +msgstr "כתיבה2" #. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji #. r8Xz8 @@ -11817,7 +11714,7 @@ "THREE_RAYS_LEFT\n" "LngText.text" msgid "rays" -msgstr "" +msgstr "קרניים" #. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji #. 7Zvkw @@ -11827,7 +11724,7 @@ "BEAMED_DESCENDING_MUSICAL_NOTES\n" "LngText.text" msgid "notes3" -msgstr "" +msgstr "תווים3" #. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji #. gYeEg @@ -11837,7 +11734,7 @@ "LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n" "LngText.text" msgid "circle3" -msgstr "" +msgstr "עיגול3" #. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji #. iywvE @@ -11847,7 +11744,7 @@ "BEAMED_ASCENDING_MUSICAL_NOTES\n" "LngText.text" msgid "notes4" -msgstr "" +msgstr "תווים4" #. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji #. ESTxC @@ -11857,7 +11754,7 @@ "BOOK\n" "LngText.text" msgid "book" -msgstr "" +msgstr "ספר" #. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji #. qF7am @@ -11867,7 +11764,7 @@ "DECREASE_FONT_SIZE_SYMBOL\n" "LngText.text" msgid "font" -msgstr "" +msgstr "גופן" #. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji #. ZSeGW @@ -11877,7 +11774,7 @@ "UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n" "LngText.text" msgid "circle4" -msgstr "" +msgstr "עיגול4" #. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji #. VMMh9 @@ -11907,7 +11804,7 @@ "LEFT_HAND_TELEPHONE_RECEIVER\n" "LngText.text" msgid "receiver2" -msgstr "" +msgstr "שפופרת2" #. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji #. EgspW @@ -11917,7 +11814,7 @@ "WHITE_TOUCHTONE_TELEPHONE\n" "LngText.text" msgid "phone3" -msgstr "" +msgstr "טלפון3" #. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji #. WXomE @@ -11927,7 +11824,7 @@ "TELEPHONE_RECEIVER_WITH_PAGE\n" "LngText.text" msgid "receiver4" -msgstr "" +msgstr "שפופרת4" #. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji #. emFc7 @@ -11937,7 +11834,7 @@ "RIGHT_HAND_TELEPHONE_RECEIVER\n" "LngText.text" msgid "receiver3" -msgstr "" +msgstr "שפופרת3" #. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji #. HdoYh @@ -11947,7 +11844,7 @@ "BLACK_TOUCHTONE_TELEPHONE\n" "LngText.text" msgid "phone4" -msgstr "" +msgstr "טלפון4" #. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji #. 335BP @@ -11957,7 +11854,7 @@ "SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left4" -msgstr "" +msgstr "שמאל4" #. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji #. ubunD @@ -11967,7 +11864,7 @@ "TURNED_OK_HAND_SIGN\n" "LngText.text" msgid "ok2" -msgstr "" +msgstr "סבבה2" #. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji #. 3YbN8 @@ -11977,7 +11874,7 @@ "BLACK_LEFT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "left5" -msgstr "" +msgstr "שמאל5" #. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji #. 26mFx @@ -11987,7 +11884,7 @@ "THREE_RAYS_BELOW\n" "LngText.text" msgid "rays2" -msgstr "" +msgstr "קרניים2" #. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji #. YxMaD @@ -11997,7 +11894,7 @@ "SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right4" -msgstr "" +msgstr "ימין4" #. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji #. RHxMa @@ -12007,7 +11904,7 @@ "SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n" "LngText.text" msgid "down3" -msgstr "" +msgstr "למטה3" #. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji #. Feod4 @@ -12017,7 +11914,7 @@ "SIDEWAYS_WHITE_UP_POINTING_INDEX\n" "LngText.text" msgid "up3" -msgstr "" +msgstr "למעלה3" #. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji #. vWrdA @@ -12027,7 +11924,7 @@ "BLACK_DROPLET\n" "LngText.text" msgid "droplet2" -msgstr "" +msgstr "טיפונת2" #. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji #. tzhR8 @@ -12037,7 +11934,7 @@ "MUSICAL_KEYBOARD_WITH_JACKS\n" "LngText.text" msgid "synthesizer" -msgstr "" +msgstr "סינתיסייזר" #. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji #. KpEFc @@ -12047,7 +11944,7 @@ "BOUQUET_OF_FLOWERS\n" "LngText.text" msgid "bouquet2" -msgstr "" +msgstr "זר2" #. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji #. kBDE9 @@ -12057,7 +11954,7 @@ "HEART_WITH_TIP_ON_THE_LEFT\n" "LngText.text" msgid "heart2" -msgstr "" +msgstr "לב2" #. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji #. kWWTC @@ -12067,7 +11964,7 @@ "BLACK_SKULL_AND_CROSSBONES\n" "LngText.text" msgid "pirate" -msgstr "" +msgstr "פיראט" #. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji #. Lk3GC @@ -12077,7 +11974,7 @@ "TELEPHONE_ON_TOP_OF_MODEM\n" "LngText.text" msgid "modem" -msgstr "" +msgstr "מודם" #. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji #. CYnVK @@ -12087,7 +11984,7 @@ "NO_PIRACY\n" "LngText.text" msgid "no piracy" -msgstr "" +msgstr "בלי פיראטיות" #. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji #. MngCK @@ -12107,7 +12004,7 @@ "CELTIC_CROSS\n" "LngText.text" msgid "Celtic cross" -msgstr "" +msgstr "צלב קלטי" #. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji #. TbsbW @@ -12117,7 +12014,7 @@ "WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n" "LngText.text" msgid "down4" -msgstr "" +msgstr "למטה4" #. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji #. Sh7hb @@ -12127,7 +12024,7 @@ "PEN_OVER_STAMPED_ENVELOPE\n" "LngText.text" msgid "envelope4" -msgstr "" +msgstr "מעטפה4" #. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji #. 6AKdz @@ -12137,7 +12034,7 @@ "STAMPED_ENVELOPE\n" "LngText.text" msgid "envelope2" -msgstr "" +msgstr "מעטפה2" #. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji #. UVBZB @@ -12147,7 +12044,7 @@ "THREE_RAYS_ABOVE\n" "LngText.text" msgid "rays3" -msgstr "" +msgstr "קרניים3" #. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji #. teGE4 @@ -12157,7 +12054,7 @@ "LOWER_LEFT_PENCIL\n" "LngText.text" msgid "pencil4" -msgstr "" +msgstr "עיפרון4" #. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji #. zvLQc @@ -12167,7 +12064,7 @@ "BACK_OF_ENVELOPE\n" "LngText.text" msgid "envelope3" -msgstr "" +msgstr "מעטפה3" #. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji #. ED7mw @@ -12177,7 +12074,7 @@ "BLACK_PUSHPIN\n" "LngText.text" msgid "tack" -msgstr "" +msgstr "נעץ" #. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji #. KE6gJ @@ -12187,7 +12084,7 @@ "ENVELOPE_WITH_LIGHTNING\n" "LngText.text" msgid "envelope5" -msgstr "" +msgstr "מעטפה5" #. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji #. npC85 @@ -12197,7 +12094,7 @@ "CLAMSHELL_MOBILE_PHONE\n" "LngText.text" msgid "mobile2" -msgstr "" +msgstr "טל׳נייד5" #. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji #. GoddF @@ -12207,7 +12104,7 @@ "FLYING_ENVELOPE\n" "LngText.text" msgid "envelope6" -msgstr "" +msgstr "מעטפה6" #. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji #. DVJqf @@ -12217,7 +12114,7 @@ "SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left6" -msgstr "" +msgstr "שמאל6" #. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji #. v5Ngu @@ -12227,7 +12124,7 @@ "SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right5" -msgstr "" +msgstr "ימין5" #. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji #. Cqs44 @@ -12237,7 +12134,7 @@ "MAXIMIZE\n" "LngText.text" msgid "maximize" -msgstr "" +msgstr "הגדלה" #. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji #. a8Ton @@ -12247,7 +12144,7 @@ "OVERLAP\n" "LngText.text" msgid "overlap" -msgstr "" +msgstr "חפיפה" #. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji #. jZs9w @@ -12257,7 +12154,7 @@ "PAGE\n" "LngText.text" msgid "page2" -msgstr "" +msgstr "דף2" #. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji #. ejx3h @@ -12267,7 +12164,7 @@ "PAGES\n" "LngText.text" msgid "pages" -msgstr "" +msgstr "דפים" #. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji #. 2Fp3C @@ -12277,7 +12174,7 @@ "CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n" "LngText.text" msgid "arrows" -msgstr "" +msgstr "חיצים" #. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji #. bFSAy @@ -12287,7 +12184,7 @@ "INCREASE_FONT_SIZE_SYMBOL\n" "LngText.text" msgid "font2" -msgstr "" +msgstr "גופן2" #. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji #. KeAPT @@ -12297,7 +12194,7 @@ "MINIMIZE\n" "LngText.text" msgid "minimize" -msgstr "" +msgstr "מזעור" #. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji #. cWAh4 @@ -12307,7 +12204,7 @@ "CANCELLATION_X\n" "LngText.text" msgid "cancel" -msgstr "" +msgstr "ביטול" #. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji #. CpvEL @@ -12317,7 +12214,7 @@ "DESKTOP_WINDOW\n" "LngText.text" msgid "window" -msgstr "" +msgstr "חלון" #. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji #. 9MFBE @@ -12327,7 +12224,7 @@ "EMPTY_PAGE\n" "LngText.text" msgid "empty page" -msgstr "" +msgstr "דף ריק" #. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji #. 4fcuu @@ -12337,7 +12234,7 @@ "EMPTY_DOCUMENT\n" "LngText.text" msgid "empty document" -msgstr "" +msgstr "מסמך ריק" #. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji #. hQp56 @@ -12347,7 +12244,7 @@ "EMPTY_PAGES\n" "LngText.text" msgid "empty pages" -msgstr "" +msgstr "דפים ריקים" #. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji #. g8N6C @@ -12357,7 +12254,7 @@ "DOCUMENT\n" "LngText.text" msgid "document" -msgstr "" +msgstr "מסמך" #. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji #. MaUGt @@ -12387,7 +12284,7 @@ "NOTE\n" "LngText.text" msgid "note3" -msgstr "" +msgstr "פתק3" #. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji #. 5aCDm @@ -12417,7 +12314,7 @@ "OPTICAL_DISC_ICON\n" "LngText.text" msgid "optical disc" -msgstr "" +msgstr "דיסק אופטי" #. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji #. Ghxv6 @@ -12427,7 +12324,7 @@ "FOLDER\n" "LngText.text" msgid "folder3" -msgstr "" +msgstr "תיקייה3" #. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji #. gwq6Z @@ -12437,7 +12334,7 @@ "BLACK_RIGHT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "right6" -msgstr "" +msgstr "ימין6" #. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji #. V9USD @@ -12447,7 +12344,7 @@ "OPEN_FOLDER\n" "LngText.text" msgid "folder4" -msgstr "" +msgstr "תיקייה4" #. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji #. Wb5pZ @@ -12457,7 +12354,7 @@ "EMPTY_NOTE\n" "LngText.text" msgid "empty note" -msgstr "" +msgstr "פתק ריק" #. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji #. 2DTcZ @@ -12467,7 +12364,7 @@ "BLACK_FOLDER\n" "LngText.text" msgid "folder5" -msgstr "" +msgstr "תיקייה5" #. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji #. 9icB8 @@ -12477,7 +12374,7 @@ "FRAME_WITH_AN_X\n" "LngText.text" msgid "frame" -msgstr "" +msgstr "מסגרת" #. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji #. 2zYBL @@ -12487,7 +12384,7 @@ "FRAME_WITH_TILES\n" "LngText.text" msgid "frame2" -msgstr "" +msgstr "מסגרת2" #. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji #. CWPgm @@ -12497,7 +12394,7 @@ "DOCUMENT_WITH_TEXT\n" "LngText.text" msgid "document2" -msgstr "" +msgstr "מסמך2" #. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji #. W5ZZb @@ -12507,7 +12404,7 @@ "DOCUMENT_WITH_PICTURE\n" "LngText.text" msgid "document3" -msgstr "" +msgstr "מסמך3" #. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji #. BR5B8 @@ -12517,7 +12414,7 @@ "DOCUMENT_WITH_TEXT_AND_PICTURE\n" "LngText.text" msgid "document4" -msgstr "" +msgstr "מסמך4" #. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji #. iWFAt @@ -12527,7 +12424,7 @@ "PRINTER_ICON\n" "LngText.text" msgid "printer2" -msgstr "" +msgstr "מדפסת2" #. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji #. CmW6a @@ -12537,7 +12434,7 @@ "FAX_ICON\n" "LngText.text" msgid "fax2" -msgstr "" +msgstr "פקס2" #. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji #. u4fMX @@ -12547,7 +12444,7 @@ "TWO_BUTTON_MOUSE\n" "LngText.text" msgid "mouse4" -msgstr "" +msgstr "עכבר4" #. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji #. YM2Wi @@ -12557,7 +12454,7 @@ "OLD_PERSONAL_COMPUTER\n" "LngText.text" msgid "pc" -msgstr "" +msgstr "מחשב" #. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji #. uCEtj @@ -12567,7 +12464,7 @@ "SCREEN\n" "LngText.text" msgid "screen" -msgstr "" +msgstr "צג" #. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji #. dxgBq @@ -12577,7 +12474,7 @@ "ONE_BUTTON_MOUSE\n" "LngText.text" msgid "mouse5" -msgstr "" +msgstr "עכבר5" #. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji #. h2kWQ @@ -12587,7 +12484,7 @@ "HARD_DISK\n" "LngText.text" msgid "hard disk" -msgstr "" +msgstr "כונן קשיח" #. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji #. zVUTo @@ -12597,7 +12494,7 @@ "POCKET_CALCULATOR\n" "LngText.text" msgid "calculator" -msgstr "" +msgstr "מחשבון" #. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji #. vxsZg @@ -12607,7 +12504,7 @@ "TAPE_CARTRIDGE\n" "LngText.text" msgid "cartridge" -msgstr "" +msgstr "מחסנית" #. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji #. 8CWzA @@ -12617,7 +12514,7 @@ "SOFT_SHELL_FLOPPY_DISK\n" "LngText.text" msgid "floppy2" -msgstr "" +msgstr "דיסקט2" #. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji #. SxL8M @@ -12627,7 +12524,7 @@ "WHITE_HARD_SHELL_FLOPPY_DISK\n" "LngText.text" msgid "floppy3" -msgstr "" +msgstr "דיסקט3" #. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji #. LYzF5 @@ -12637,7 +12534,7 @@ "WIRED_KEYBOARD\n" "LngText.text" msgid "keyboard2" -msgstr "" +msgstr "מקלדת2" #. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji #. 63xqd @@ -12647,7 +12544,7 @@ "REVERSED_VICTORY_HAND\n" "LngText.text" msgid "victory2" -msgstr "" +msgstr "ניצחון2" #. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji #. nnqCB @@ -12657,7 +12554,7 @@ "THREE_NETWORKED_COMPUTERS\n" "LngText.text" msgid "network" -msgstr "" +msgstr "רשת" #. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji #. jTG2R @@ -12667,7 +12564,7 @@ "BLACK_HARD_SHELL_FLOPPY_DISK\n" "LngText.text" msgid "floppy4" -msgstr "" +msgstr "דיסקט4" #. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji #. cK4DP @@ -12677,7 +12574,7 @@ "LIPS\n" "LngText.text" msgid "lips" -msgstr "" +msgstr "שפתיים" #. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji #. maQCB @@ -12687,7 +12584,7 @@ "KEYBOARD_AND_MOUSE\n" "LngText.text" msgid "keyboard3" -msgstr "" +msgstr "מקלדת3" #. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji #. gxjyq @@ -12697,7 +12594,7 @@ "BLACK_DOWN_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "down5" -msgstr "" +msgstr "למטה5" #. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji #. fzdRY @@ -12707,7 +12604,7 @@ "SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n" "LngText.text" msgid "down6" -msgstr "" +msgstr "למטה6" #. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji #. S5d7x @@ -12717,7 +12614,7 @@ "PORTABLE_STEREO\n" "LngText.text" msgid "stereo" -msgstr "" +msgstr "סטריאו" #. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji #. g3tfF @@ -12727,7 +12624,7 @@ "BLACK_ROSETTE\n" "LngText.text" msgid "rosette2" -msgstr "" +msgstr "שושן2" #. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji #. i4YCp @@ -12737,7 +12634,7 @@ "BLACK_PENNANT\n" "LngText.text" msgid "pennant" -msgstr "" +msgstr "דגלון" #. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji #. JBDRo @@ -12747,7 +12644,7 @@ "SIDEWAYS_BLACK_UP_POINTING_INDEX\n" "LngText.text" msgid "up4" -msgstr "" +msgstr "למעלה4" #. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji #. Pc5KV @@ -12757,7 +12654,7 @@ "BLACK_UP_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "up5" -msgstr "" +msgstr "למעלה5" #. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji #. 2A8Yp @@ -12767,7 +12664,7 @@ "WHITE_PENNANT\n" "LngText.text" msgid "pennant2" -msgstr "" +msgstr "דגל2" #. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji #. Ew6So @@ -12787,7 +12684,7 @@ "REVERSED_THUMBS_DOWN_SIGN\n" "LngText.text" msgid "no2" -msgstr "" +msgstr "לא2" #. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji #. SqfKC @@ -12797,7 +12694,7 @@ "REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n" "LngText.text" msgid "hand3" -msgstr "" +msgstr "יד3" #. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji #. 5EAvq @@ -12807,7 +12704,7 @@ "REVERSED_THUMBS_UP_SIGN\n" "LngText.text" msgid "yes2" -msgstr "" +msgstr "כן2" #. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji #. EBpBK @@ -12817,7 +12714,7 @@ "RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n" "LngText.text" msgid "speaker2" -msgstr "" +msgstr "רמקול2" #. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji #. v3jrY @@ -12827,7 +12724,7 @@ "WHITE_LATIN_CROSS\n" "LngText.text" msgid "Latin cross2" -msgstr "" +msgstr "צלב לטיני2" #. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji #. QhPED @@ -12837,7 +12734,7 @@ "HEAVY_LATIN_CROSS\n" "LngText.text" msgid "Latin cross3" -msgstr "" +msgstr "צלב לטיני3" #. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji #. y9uLG @@ -12847,7 +12744,7 @@ "RIGHT_SPEAKER\n" "LngText.text" msgid "speaker3" -msgstr "" +msgstr "רמקול3" #. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji #. yXfff @@ -12857,7 +12754,7 @@ "RINGING_BELL\n" "LngText.text" msgid "bell3" -msgstr "" +msgstr "פעמון3" #. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji #. rq3dA @@ -12867,7 +12764,7 @@ "WHITE_SUN\n" "LngText.text" msgid "sun2" -msgstr "" +msgstr "שמש2" #. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji #. etzs6 @@ -12887,7 +12784,7 @@ "TRIANGLE_WITH_ROUNDED_CORNERS\n" "LngText.text" msgid "triangle3" -msgstr "" +msgstr "משולש3" #. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji #. NxoaJ @@ -12897,7 +12794,7 @@ "THREE_SPEECH_BUBBLES\n" "LngText.text" msgid "bubble3" -msgstr "" +msgstr "בועה3" #. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji #. ccFjf @@ -12907,7 +12804,7 @@ "RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n" "LngText.text" msgid "speaker4" -msgstr "" +msgstr "רמקול4" #. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji #. B8Hg3 @@ -12917,7 +12814,7 @@ "LEFT_ANGER_BUBBLE\n" "LngText.text" msgid "bubble8" -msgstr "" +msgstr "בועה8" #. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji #. BJdG2 @@ -12927,7 +12824,7 @@ "THREE_RAYS_RIGHT\n" "LngText.text" msgid "rays4" -msgstr "" +msgstr "קרניים4" #. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji #. KQe2w @@ -12937,7 +12834,7 @@ "LIGHTNING_MOOD\n" "LngText.text" msgid "lightning2" -msgstr "" +msgstr "ברק2" #. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji #. ySPbT @@ -12947,7 +12844,7 @@ "MOOD_BUBBLE\n" "LngText.text" msgid "bubble9" -msgstr "" +msgstr "בועה9" #. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji #. Ti5Gc @@ -12957,7 +12854,7 @@ "BALLOT_BOX_WITH_BOLD_CHECK\n" "LngText.text" msgid "checkbox5" -msgstr "" +msgstr "תיבת סימון5" #. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji #. K9FkL @@ -12977,7 +12874,7 @@ "TWO_SPEECH_BUBBLES\n" "LngText.text" msgid "bubble2" -msgstr "" +msgstr "בועה2" #. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji #. mQ7Sx @@ -12987,7 +12884,7 @@ "BALLOT_BOLD_SCRIPT_X\n" "LngText.text" msgid "x4" -msgstr "" +msgstr "איקס4" #. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji #. HADvf @@ -12997,7 +12894,7 @@ "RIGHT_SPEECH_BUBBLE\n" "LngText.text" msgid "bubble10" -msgstr "" +msgstr "בועה10" #. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji #. CgYR4 @@ -13007,7 +12904,7 @@ "BALLOT_BOX_WITH_SCRIPT_X\n" "LngText.text" msgid "checkbox6" -msgstr "" +msgstr "תיבת סימון6" #. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji #. C3B4F @@ -13027,7 +12924,7 @@ "HUGGING_FACE\n" "LngText.text" msgid "hugging" -msgstr "" +msgstr "חיבוק" #. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji #. QGVSq @@ -13037,7 +12934,7 @@ "THINKING_FACE\n" "LngText.text" msgid "thinking" -msgstr "" +msgstr "חשיבה" #. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji #. YWnjW @@ -13047,7 +12944,7 @@ "FACE_WITH_ROLLING_EYES\n" "LngText.text" msgid "eye roll" -msgstr "" +msgstr "גלגול עיניים" #. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji #. eahZt @@ -13057,7 +12954,7 @@ "ZIPPER-MOUTH_FACE\n" "LngText.text" msgid "zipper" -msgstr "" +msgstr "רוכסן" #. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji #. UEkgj @@ -13067,7 +12964,7 @@ "UPSIDE-DOWN_FACE\n" "LngText.text" msgid "upside-down" -msgstr "" +msgstr "הפוך" #. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji #. NHvD5 @@ -13077,7 +12974,7 @@ "MONEY-MOUTH_FACE\n" "LngText.text" msgid "money3" -msgstr "" +msgstr "כסף3" #. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji #. XNpdb @@ -13087,7 +12984,7 @@ "FACE_WITH_THERMOMETER\n" "LngText.text" msgid "thermometer2" -msgstr "" +msgstr "מדחום2" #. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji #. 7baC2 @@ -13097,7 +12994,7 @@ "FACE_WITH_HEAD-BANDAGE\n" "LngText.text" msgid "bandage" -msgstr "" +msgstr "חבישה" #. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji #. AZgGL @@ -13117,7 +13014,7 @@ "ROBOT_FACE\n" "LngText.text" msgid "robot" -msgstr "" +msgstr "רובוט" #. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji #. GANQW @@ -13127,7 +13024,7 @@ "EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n" "LngText.text" msgid "skin1" -msgstr "" +msgstr "עור1" #. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji #. gbDCJ @@ -13137,7 +13034,7 @@ "EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n" "LngText.text" msgid "skin2" -msgstr "" +msgstr "עור2" #. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji #. SCAhC @@ -13147,7 +13044,7 @@ "EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n" "LngText.text" msgid "skin3" -msgstr "" +msgstr "עור3" #. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji #. 73nmB @@ -13157,7 +13054,7 @@ "EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n" "LngText.text" msgid "skin4" -msgstr "" +msgstr "עור4" #. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji #. xD2SM @@ -13167,7 +13064,7 @@ "EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n" "LngText.text" msgid "skin5" -msgstr "" +msgstr "עור5" #. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji #. uqz8D @@ -13177,7 +13074,7 @@ "SIGN_OF_THE_HORNS\n" "LngText.text" msgid "horns" -msgstr "" +msgstr "קרניים" #. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji #. UZABL @@ -13187,7 +13084,7 @@ "PRAYER_BEADS\n" "LngText.text" msgid "beads" -msgstr "" +msgstr "חרוזים" #. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji #. XwHn4 @@ -13197,7 +13094,7 @@ "LION_FACE\n" "LngText.text" msgid "lion" -msgstr "" +msgstr "אריה" #. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji #. AsQ5Q @@ -13207,7 +13104,7 @@ "UNICORN_FACE\n" "LngText.text" msgid "unicorn" -msgstr "" +msgstr "חד־קרן" #. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji #. wE3ZV @@ -13217,7 +13114,7 @@ "TURKEY\n" "LngText.text" msgid "turkey" -msgstr "" +msgstr "תרנגול הודו" #. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji #. ygHYG @@ -13227,7 +13124,7 @@ "CRAB\n" "LngText.text" msgid "crab" -msgstr "" +msgstr "סרטן" #. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji #. eCLRs @@ -13237,7 +13134,7 @@ "SCORPION\n" "LngText.text" msgid "scorpion" -msgstr "" +msgstr "עקרב" #. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji #. 7Rapv @@ -13247,7 +13144,7 @@ "CHEESE_WEDGE\n" "LngText.text" msgid "cheese" -msgstr "" +msgstr "גבינה" #. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji #. G77U6 @@ -13257,7 +13154,7 @@ "HOT_DOG\n" "LngText.text" msgid "hot dog" -msgstr "" +msgstr "נקניקייה" #. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji #. adkNd @@ -13267,7 +13164,7 @@ "TACO\n" "LngText.text" msgid "taco" -msgstr "" +msgstr "טאקו" #. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji #. iznZM @@ -13277,7 +13174,7 @@ "BURRITO\n" "LngText.text" msgid "burrito" -msgstr "" +msgstr "בוריטו" #. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji #. EpADQ @@ -13287,7 +13184,7 @@ "POPCORN\n" "LngText.text" msgid "popcorn" -msgstr "" +msgstr "פופקורן" #. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji #. SjEyK @@ -13297,7 +13194,7 @@ "BOTTLE_WITH_POPPING_CORK\n" "LngText.text" msgid "party4" -msgstr "" +msgstr "מסיבה4" #. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji #. rK7h3 @@ -13307,7 +13204,7 @@ "AMPHORA\n" "LngText.text" msgid "amphora" -msgstr "" +msgstr "אמפורה" #. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji #. GAMLG @@ -13317,7 +13214,7 @@ "MOSQUE\n" "LngText.text" msgid "mosque" -msgstr "" +msgstr "מסגד" #. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji #. iqBVa @@ -13327,7 +13224,7 @@ "SYNAGOGUE\n" "LngText.text" msgid "synagogue" -msgstr "" +msgstr "בית כנסת" #. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji #. 3rTFA @@ -13337,7 +13234,7 @@ "KAABA\n" "LngText.text" msgid "Kaaba" -msgstr "" +msgstr "כעבה" #. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji #. JnWWX @@ -13347,7 +13244,7 @@ "VOLLEYBALL\n" "LngText.text" msgid "volleyball" -msgstr "" +msgstr "כדורעף" #. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji #. BLab9 @@ -13357,7 +13254,7 @@ "CRICKET_BAT_AND_BALL\n" "LngText.text" msgid "cricket" -msgstr "" +msgstr "קריקט" #. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji #. 2Gshv @@ -13367,7 +13264,7 @@ "FIELD_HOCKEY_STICK_AND_BALL\n" "LngText.text" msgid "hockey2" -msgstr "" +msgstr "הוקי2" #. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji #. P8BNH @@ -13377,7 +13274,7 @@ "ICE_HOCKEY_STICK_AND_PUCK\n" "LngText.text" msgid "hockey" -msgstr "" +msgstr "הוקי" #. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji #. sjezt @@ -13387,7 +13284,7 @@ "TABLE_TENNIS_PADDLE_AND_BALL\n" "LngText.text" msgid "ping pong" -msgstr "" +msgstr "פינג פונג" #. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji #. qCCrH @@ -13397,7 +13294,7 @@ "BADMINTON_RACQUET_AND_SHUTTLECOCK\n" "LngText.text" msgid "badminton" -msgstr "" +msgstr "בדמינטון" #. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji #. HpJnE @@ -13407,7 +13304,7 @@ "BOW_AND_ARROW\n" "LngText.text" msgid "bow" -msgstr "" +msgstr "חץ וקשת" #. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji #. EhGbP @@ -13417,7 +13314,7 @@ "PLACE_OF_WORSHIP\n" "LngText.text" msgid "worship" -msgstr "" +msgstr "סגידה" #. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji #. VJK9e @@ -13427,7 +13324,7 @@ "MENORAH_WITH_NINE_BRANCHES\n" "LngText.text" msgid "menorah" -msgstr "" +msgstr "מנורה" #. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji #. ZEUxq @@ -13437,7 +13334,7 @@ "ROLLING_ON_THE_FLOOR_LAUGHING\n" "LngText.text" msgid "lol" -msgstr "" +msgstr "קורע" #. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji #. 9dmGD @@ -13447,7 +13344,7 @@ "DROOLING_FACE\n" "LngText.text" msgid "drool" -msgstr "" +msgstr "הדלת ריר" #. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji #. BFDoH @@ -13457,7 +13354,7 @@ "NAUSEATED_FACE\n" "LngText.text" msgid "nausea" -msgstr "" +msgstr "בחילה" #. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji #. E2kqb @@ -13467,7 +13364,7 @@ "SNEEZING_FACE\n" "LngText.text" msgid "sneeze" -msgstr "" +msgstr "התעטשות" #. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji #. eqg7B @@ -13477,7 +13374,7 @@ "COWBOY_HAT_FACE\n" "LngText.text" msgid "cowboy" -msgstr "" +msgstr "בוקר" #. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji #. ECess @@ -13487,7 +13384,7 @@ "CLOWN_FACE\n" "LngText.text" msgid "clown" -msgstr "" +msgstr "ליצן" #. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji #. kGYvx @@ -13497,7 +13394,7 @@ "LYING_FACE\n" "LngText.text" msgid "liar" -msgstr "" +msgstr "שקרן" #. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji #. Vm8HH @@ -13507,7 +13404,7 @@ "PRINCE\n" "LngText.text" msgid "prince" -msgstr "" +msgstr "נסיך" #. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji #. z4cUf @@ -13517,7 +13414,7 @@ "MAN_IN_TUXEDO\n" "LngText.text" msgid "groom" -msgstr "" +msgstr "חתן" #. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji #. 2z7dc @@ -13527,7 +13424,7 @@ "PREGNANT_WOMAN\n" "LngText.text" msgid "pregnant" -msgstr "" +msgstr "בהריון" #. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji #. 2G73S @@ -13537,7 +13434,7 @@ "MRS._CLAUS\n" "LngText.text" msgid "mrs. claus" -msgstr "" +msgstr "גברת קלאוס" #. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji #. DMAKw @@ -13577,7 +13474,7 @@ "PERSON_FENCING\n" "LngText.text" msgid "fencer" -msgstr "" +msgstr "סיוף" #. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji #. GWy2x @@ -13587,7 +13484,7 @@ "PERSON_CARTWHEELING\n" "LngText.text" msgid "gymnast" -msgstr "" +msgstr "התעמלות" #. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji #. wDcBh @@ -13597,7 +13494,7 @@ "PEOPLE_WRESTLING\n" "LngText.text" msgid "wrestling" -msgstr "" +msgstr "היאבקות" #. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji #. d98om @@ -13607,7 +13504,7 @@ "PERSON_PLAYING_WATER_POLO\n" "LngText.text" msgid "water polo" -msgstr "" +msgstr "פולו מים" #. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji #. CUX53 @@ -13617,7 +13514,7 @@ "PERSON_PLAYING_HANDBALL\n" "LngText.text" msgid "handball" -msgstr "" +msgstr "כדוריד" #. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji #. ZxAWV @@ -13627,7 +13524,7 @@ "PERSON_JUGGLING\n" "LngText.text" msgid "juggling" -msgstr "" +msgstr "להטוטנות" #. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji #. ydPAe @@ -13637,7 +13534,7 @@ "SELFIE\n" "LngText.text" msgid "selfie" -msgstr "" +msgstr "סלפי" #. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji #. hCFfC @@ -13647,7 +13544,7 @@ "CROSSED_FINGERS\n" "LngText.text" msgid "good luck" -msgstr "" +msgstr "בהצלחה" #. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji #. cXaXX @@ -13657,7 +13554,7 @@ "CALL_ME_HAND\n" "LngText.text" msgid "call" -msgstr "" +msgstr "שיחת טלפון" #. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji #. FAjqc @@ -13667,7 +13564,7 @@ "LEFT-FACING_FIST\n" "LngText.text" msgid "fist3" -msgstr "" +msgstr "אגרוף3" #. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji #. F5CCT @@ -13677,7 +13574,7 @@ "RIGHT-FACING_FIST\n" "LngText.text" msgid "fist4" -msgstr "" +msgstr "אגרוף4" #. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji #. ix9At @@ -13687,7 +13584,7 @@ "RAISED_BACK_OF_HAND\n" "LngText.text" msgid "hand4" -msgstr "" +msgstr "יד4" #. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji #. 9fHKn @@ -13697,7 +13594,7 @@ "HANDSHAKE\n" "LngText.text" msgid "handshake" -msgstr "" +msgstr "לחיצת יד" #. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji #. gm7FZ @@ -13707,7 +13604,7 @@ "BLACK_HEART\n" "LngText.text" msgid "black heart" -msgstr "" +msgstr "לב שחור" #. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji #. 2NjPB @@ -13717,7 +13614,7 @@ "GORILLA\n" "LngText.text" msgid "gorilla" -msgstr "" +msgstr "גורילה" #. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji #. KTrLE @@ -13727,7 +13624,7 @@ "FOX_FACE\n" "LngText.text" msgid "fox" -msgstr "" +msgstr "שועל" #. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji #. hFm9Y @@ -13737,7 +13634,7 @@ "DEER\n" "LngText.text" msgid "deer" -msgstr "" +msgstr "אייל" #. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji #. vH7xA @@ -13747,7 +13644,7 @@ "RHINOCEROS\n" "LngText.text" msgid "rhinoceros" -msgstr "" +msgstr "קרנף" #. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji #. La26G @@ -13757,7 +13654,7 @@ "BAT\n" "LngText.text" msgid "bat" -msgstr "" +msgstr "עטלף" #. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji #. A5zoM @@ -13767,7 +13664,7 @@ "EAGLE\n" "LngText.text" msgid "eagle" -msgstr "" +msgstr "עיט" #. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji #. 6pBEy @@ -13777,7 +13674,7 @@ "DUCK\n" "LngText.text" msgid "duck" -msgstr "" +msgstr "ברווז" #. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji #. 5WB2J @@ -13787,7 +13684,7 @@ "OWL\n" "LngText.text" msgid "owl" -msgstr "" +msgstr "ינשוף" #. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji #. mTdZD @@ -13797,7 +13694,7 @@ "LIZARD\n" "LngText.text" msgid "lizard" -msgstr "" +msgstr "לטאה" #. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji #. HGPa7 @@ -13807,7 +13704,7 @@ "SHARK\n" "LngText.text" msgid "shark" -msgstr "" +msgstr "כריש" #. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji #. 9st9X @@ -13817,7 +13714,7 @@ "SHRIMP\n" "LngText.text" msgid "shrimp" -msgstr "" +msgstr "חסילון" #. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji #. wLzdC @@ -13827,7 +13724,7 @@ "SQUID\n" "LngText.text" msgid "squid" -msgstr "" +msgstr "דיונון" #. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji #. ABYeM @@ -13837,7 +13734,7 @@ "BUTTERFLY\n" "LngText.text" msgid "butterfly" -msgstr "" +msgstr "פרפר" #. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji #. g8zbG @@ -13847,7 +13744,7 @@ "WILTED_FLOWER\n" "LngText.text" msgid "flower2" -msgstr "" +msgstr "פרח2" #. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji #. rhEXe @@ -13857,7 +13754,7 @@ "KIWI_FRUIT\n" "LngText.text" msgid "kiwi" -msgstr "" +msgstr "קיווי" #. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji #. YyyRA @@ -13867,7 +13764,7 @@ "AVOCADO\n" "LngText.text" msgid "avocado" -msgstr "" +msgstr "אבוקדו" #. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji #. GszVJ @@ -13877,7 +13774,7 @@ "POTATO\n" "LngText.text" msgid "potato" -msgstr "" +msgstr "תפוח אדמה" #. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji #. Ym3pa @@ -13887,7 +13784,7 @@ "CARROT\n" "LngText.text" msgid "carrot" -msgstr "" +msgstr "גזר" #. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji #. Kh3D3 @@ -13897,7 +13794,7 @@ "CUCUMBER\n" "LngText.text" msgid "cucumber" -msgstr "" +msgstr "מלפפון" #. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji #. zhUDL @@ -13907,7 +13804,7 @@ "PEANUTS\n" "LngText.text" msgid "peanuts" -msgstr "" +msgstr "בוטנים" #. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji #. RjA9y @@ -13917,7 +13814,7 @@ "CROISSANT\n" "LngText.text" msgid "croissant" -msgstr "" +msgstr "קרואסון" #. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji #. NGegu @@ -13927,7 +13824,7 @@ "BAGUETTE_BREAD\n" "LngText.text" msgid "bread2" -msgstr "" +msgstr "לחם2" #. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji #. Kv3zL @@ -13937,7 +13834,7 @@ "PANCAKES\n" "LngText.text" msgid "pancakes" -msgstr "" +msgstr "חביתיות" #. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji #. ZD8B4 @@ -13947,7 +13844,7 @@ "BACON\n" "LngText.text" msgid "bacon" -msgstr "" +msgstr "בייקון" #. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji #. FBeQo @@ -13957,7 +13854,7 @@ "STUFFED_FLATBREAD\n" "LngText.text" msgid "flatbread" -msgstr "" +msgstr "פיתה" #. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji #. ogxKP @@ -13967,7 +13864,7 @@ "EGG\n" "LngText.text" msgid "egg" -msgstr "" +msgstr "ביצה" #. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji #. MLBgW @@ -13977,7 +13874,7 @@ "SHALLOW_PAN_OF_FOOD\n" "LngText.text" msgid "food" -msgstr "" +msgstr "אוכל" #. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji #. NW5YQ @@ -13987,7 +13884,7 @@ "GREEN_SALAD\n" "LngText.text" msgid "salad" -msgstr "" +msgstr "סלט" #. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji #. ABhFU @@ -13997,7 +13894,7 @@ "GLASS_OF_MILK\n" "LngText.text" msgid "milk" -msgstr "" +msgstr "חלב" #. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji #. CE4Gm @@ -14007,7 +13904,7 @@ "CLINKING_GLASSES\n" "LngText.text" msgid "party3" -msgstr "" +msgstr "מסיבה3" #. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji #. f7rVY @@ -14017,7 +13914,7 @@ "TUMBLER_GLASS\n" "LngText.text" msgid "glass3" -msgstr "" +msgstr "כוס3" #. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji #. xQXfU @@ -14027,7 +13924,7 @@ "SPOON\n" "LngText.text" msgid "spoon" -msgstr "" +msgstr "כפית" #. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji #. i9HME @@ -14037,7 +13934,7 @@ "SCOOTER\n" "LngText.text" msgid "scooter" -msgstr "" +msgstr "קטנוע" #. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji #. qNJVu @@ -14047,7 +13944,7 @@ "MOTOR_SCOOTER\n" "LngText.text" msgid "scooter2" -msgstr "" +msgstr "קטנוע2" #. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji #. aFYby @@ -14057,7 +13954,7 @@ "OCTAGONAL_SIGN\n" "LngText.text" msgid "stop" -msgstr "" +msgstr "עצור" #. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji #. SXBDP @@ -14067,7 +13964,7 @@ "CANOE\n" "LngText.text" msgid "canoe" -msgstr "" +msgstr "קאנו" #. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji #. 4XgcG @@ -14077,7 +13974,7 @@ "1ST_PLACE_MEDAL\n" "LngText.text" msgid "gold" -msgstr "" +msgstr "זהב" #. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji #. TSHQA @@ -14087,7 +13984,7 @@ "2ND_PLACE_MEDAL\n" "LngText.text" msgid "silver" -msgstr "" +msgstr "כסף" #. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji #. EAVkw @@ -14097,7 +13994,7 @@ "3RD_PLACE_MEDAL\n" "LngText.text" msgid "bronze" -msgstr "" +msgstr "ארד" #. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji #. wd46F @@ -14107,7 +14004,7 @@ "BOXING_GLOVE\n" "LngText.text" msgid "boxing" -msgstr "" +msgstr "איגרוף" #. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji #. YUmnP @@ -14117,7 +14014,7 @@ "MARTIAL_ARTS_UNIFORM\n" "LngText.text" msgid "judo" -msgstr "" +msgstr "ג׳ודו" #. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji #. qGHW2 @@ -14127,7 +14024,7 @@ "GOAL_NET\n" "LngText.text" msgid "soccer2" -msgstr "" +msgstr "כדורגל2" #. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji #. AbcnT @@ -14137,7 +14034,7 @@ "DRUM_WITH_DRUMSTICKS\n" "LngText.text" msgid "drum2" -msgstr "" +msgstr "תוף2" #. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji #. B6WXA @@ -14147,7 +14044,7 @@ "SHOPPING_TROLLEY\n" "LngText.text" msgid "cart" -msgstr "" +msgstr "עגלה" #. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji #. eVxGr @@ -14157,7 +14054,7 @@ "GRINNING_FACE_WITH_STAR_EYES\n" "LngText.text" msgid "excited" -msgstr "" +msgstr "התרגשות" #. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji #. Tsyfv @@ -14167,7 +14064,7 @@ "FACE_WITH_ONE_EYEBROW_RAISED\n" "LngText.text" msgid "eyebrow" -msgstr "" +msgstr "גבה" #. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji #. na53j @@ -14177,7 +14074,7 @@ "SHOCKED_FACE_WITH_EXPLODING_HEAD\n" "LngText.text" msgid "shocked" -msgstr "" +msgstr "בהלם" #. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji #. 4WDd3 @@ -14187,7 +14084,7 @@ "GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n" "LngText.text" msgid "zany" -msgstr "" +msgstr "היתוליות" #. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji #. h2dHg @@ -14197,7 +14094,7 @@ "SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n" "LngText.text" msgid "cursing" -msgstr "" +msgstr "קללות" #. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji #. kBxkz @@ -14207,7 +14104,7 @@ "FACE_WITH_OPEN_MOUTH_VOMITING\n" "LngText.text" msgid "vomit" -msgstr "" +msgstr "הקאה" #. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji #. eYbxY @@ -14217,7 +14114,7 @@ "FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n" "LngText.text" msgid "hush" -msgstr "" +msgstr "הס" #. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji #. n5YYY @@ -14227,7 +14124,7 @@ "SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n" "LngText.text" msgid "smiling4" -msgstr "" +msgstr "חיוך4" #. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji #. jB9dt @@ -14237,7 +14134,7 @@ "FACE_WITH_MONOCLE\n" "LngText.text" msgid "monocle" -msgstr "" +msgstr "משקף" #. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji #. SLPCQ @@ -14277,7 +14174,7 @@ "PERSON_WITH_HEADSCARF\n" "LngText.text" msgid "headscarf" -msgstr "" +msgstr "צעיף ראש" #. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji #. wwFwk @@ -14287,7 +14184,7 @@ "BEARDED_PERSON\n" "LngText.text" msgid "beard" -msgstr "" +msgstr "זקן" #. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji #. aiLD6 @@ -14297,7 +14194,7 @@ "BREAST-FEEDING\n" "LngText.text" msgid "baby3" -msgstr "" +msgstr "תינוק3" #. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji #. AiBBt @@ -14317,7 +14214,7 @@ "FAIRY\n" "LngText.text" msgid "fairy" -msgstr "" +msgstr "פייה" #. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji #. xcCHr @@ -14327,7 +14224,7 @@ "VAMPIRE\n" "LngText.text" msgid "vampire" -msgstr "" +msgstr "ערפד" #. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji #. 6E3EF @@ -14357,7 +14254,7 @@ "GENIE\n" "LngText.text" msgid "genie" -msgstr "" +msgstr "שד" #. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji #. sF9YT @@ -14367,7 +14264,7 @@ "ZOMBIE\n" "LngText.text" msgid "zombie" -msgstr "" +msgstr "זומבי" #. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji #. SFGkA @@ -14377,7 +14274,7 @@ "PERSON_IN_STEAMY_ROOM\n" "LngText.text" msgid "sauna" -msgstr "" +msgstr "סאונה" #. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji #. 5LRF9 @@ -14397,7 +14294,7 @@ "PERSON_IN_LOTUS_POSITION\n" "LngText.text" msgid "yoga" -msgstr "" +msgstr "יוגה" #. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji #. 2KjLY @@ -14407,7 +14304,7 @@ "I_LOVE_YOU_HAND_SIGN\n" "LngText.text" msgid "love2" -msgstr "" +msgstr "אהבה2" #. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji #. tjwnx @@ -14417,7 +14314,7 @@ "PALMS_UP_TOGETHER\n" "LngText.text" msgid "palm2" -msgstr "" +msgstr "כפות ידיים2" #. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji #. Fvr8C @@ -14427,7 +14324,7 @@ "BRAIN\n" "LngText.text" msgid "brain" -msgstr "" +msgstr "מוח" #. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji #. 65Vzz @@ -14437,7 +14334,7 @@ "ORANGE_HEART\n" "LngText.text" msgid "orange heart" -msgstr "" +msgstr "לב כתום" #. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji #. 9F7KC @@ -14447,7 +14344,7 @@ "SCARF\n" "LngText.text" msgid "scarf" -msgstr "" +msgstr "צעיף" #. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji #. 2hKw4 @@ -14457,7 +14354,7 @@ "GLOVES\n" "LngText.text" msgid "gloves" -msgstr "" +msgstr "כפפות" #. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji #. 7dGHw @@ -14467,7 +14364,7 @@ "COAT\n" "LngText.text" msgid "coat" -msgstr "" +msgstr "מעיל" #. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji #. j5RzV @@ -14477,7 +14374,7 @@ "SOCKS\n" "LngText.text" msgid "socks" -msgstr "" +msgstr "גרביים" #. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji #. tZNWA @@ -14487,7 +14384,7 @@ "BILLED_CAP\n" "LngText.text" msgid "cap" -msgstr "" +msgstr "כובע מצחייה" #. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji #. 8mGXr @@ -14497,7 +14394,7 @@ "ZEBRA\n" "LngText.text" msgid "zebra" -msgstr "" +msgstr "זברה" #. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji #. KK5ZG @@ -14507,7 +14404,7 @@ "GIRAFFE\n" "LngText.text" msgid "giraffe" -msgstr "" +msgstr "ג׳ירפה" #. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji #. m5ZyA @@ -14517,7 +14414,7 @@ "HEDGEHOG\n" "LngText.text" msgid "hedgehog" -msgstr "" +msgstr "קיפוד" #. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji #. QGK7G @@ -14527,7 +14424,7 @@ "SAUROPOD\n" "LngText.text" msgid "dinosaur" -msgstr "" +msgstr "דינוזאור" #. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji #. Nixns @@ -14537,7 +14434,7 @@ "T-REX\n" "LngText.text" msgid "dinosaur2" -msgstr "" +msgstr "דינוזאור2" #. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji #. v74vD @@ -14547,7 +14444,7 @@ "CRICKET\n" "LngText.text" msgid "cricket2" -msgstr "" +msgstr "צרצר2" #. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji #. F6DcD @@ -14557,7 +14454,7 @@ "COCONUT\n" "LngText.text" msgid "coconut" -msgstr "" +msgstr "קוקוס" #. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji #. ysJGH @@ -14567,7 +14464,7 @@ "BROCCOLI\n" "LngText.text" msgid "broccoli" -msgstr "" +msgstr "ברוקולי" #. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji #. CVDqB @@ -14577,7 +14474,7 @@ "PRETZEL\n" "LngText.text" msgid "pretzel" -msgstr "" +msgstr "כעך" #. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji #. EFzoB @@ -14587,7 +14484,7 @@ "CUT_OF_MEAT\n" "LngText.text" msgid "steak" -msgstr "" +msgstr "סטייק" #. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji #. kUkjd @@ -14597,7 +14494,7 @@ "SANDWICH\n" "LngText.text" msgid "sandwich" -msgstr "" +msgstr "כריך" #. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji #. UgCS4 @@ -14607,7 +14504,7 @@ "BOWL_WITH_SPOON\n" "LngText.text" msgid "bowl" -msgstr "" +msgstr "קערה" #. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji #. ruvC5 @@ -14617,7 +14514,7 @@ "CANNED_FOOD\n" "LngText.text" msgid "can" -msgstr "" +msgstr "פחית שימורים" #. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji #. TZV8E @@ -14627,7 +14524,7 @@ "DUMPLING\n" "LngText.text" msgid "dumpling" -msgstr "" +msgstr "כיסון" #. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji #. APAjG @@ -14637,7 +14534,7 @@ "FORTUNE_COOKIE\n" "LngText.text" msgid "cookie2" -msgstr "" +msgstr "עוגייה2" #. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji #. T3CFr @@ -14647,7 +14544,7 @@ "TAKEOUT_BOX\n" "LngText.text" msgid "takeout" -msgstr "" +msgstr "אוכל בחוץ" #. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji #. LYCNG @@ -14657,7 +14554,7 @@ "PIE\n" "LngText.text" msgid "pie" -msgstr "" +msgstr "פשטידה" #. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji #. YNHfJ @@ -14667,7 +14564,7 @@ "CUP_WITH_STRAW\n" "LngText.text" msgid "drink" -msgstr "" +msgstr "משקה" #. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji #. 3KB5F @@ -14677,7 +14574,7 @@ "CHOPSTICKS\n" "LngText.text" msgid "chopsticks" -msgstr "" +msgstr "מקלות אכילה" #. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji #. QmGAB @@ -14687,7 +14584,7 @@ "FLYING_SAUCER\n" "LngText.text" msgid "ufo" -msgstr "" +msgstr "עב״מ" #. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji #. xghQ3 @@ -14697,7 +14594,7 @@ "SLED\n" "LngText.text" msgid "sled" -msgstr "" +msgstr "מזחלת" #. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji #. 5hGNv @@ -14707,7 +14604,7 @@ "CURLING_STONE\n" "LngText.text" msgid "curling" -msgstr "" +msgstr "קרלינג" #. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji #. EXrBL @@ -14717,7 +14614,7 @@ "BITCOIN_SIGN\n" "LngText.text" msgid "bitcoin" -msgstr "" +msgstr "ביטקוין" #. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji #. nmwie @@ -14727,7 +14624,7 @@ "VULGAR_FRACTION_ONE_HALF\n" "LngText.text" msgid "1/2" -msgstr "" +msgstr "1/2" #. ⅓ (U+02153), see http://wiki.documentfoundation.org/Emoji #. GCWJS @@ -14737,7 +14634,7 @@ "VULGAR_FRACTION_ONE_THIRD\n" "LngText.text" msgid "1/3" -msgstr "" +msgstr "1/3" #. ¼ (U+000BC), see http://wiki.documentfoundation.org/Emoji #. Lgj8u @@ -14747,7 +14644,7 @@ "VULGAR_FRACTION_ONE_QUARTER\n" "LngText.text" msgid "1/4" -msgstr "" +msgstr "1/4" #. ⅔ (U+02154), see http://wiki.documentfoundation.org/Emoji #. uYJY7 @@ -14757,7 +14654,7 @@ "VULGAR_FRACTION_TWO_THIRDS\n" "LngText.text" msgid "2/3" -msgstr "" +msgstr "2/3" #. ¾ (U+000BE), see http://wiki.documentfoundation.org/Emoji #. UP2KQ @@ -14767,7 +14664,7 @@ "VULGAR_FRACTION_THREE_QUARTERS\n" "LngText.text" msgid "3/4" -msgstr "" +msgstr "3/4" #. ⅛ (U+0215B), see http://wiki.documentfoundation.org/Emoji #. ZBRTd @@ -14777,7 +14674,7 @@ "VULGAR_FRACTION_ONE_EIGHTH\n" "LngText.text" msgid "1/8" -msgstr "" +msgstr "1/8" #. ⅜ (U+0215C), see http://wiki.documentfoundation.org/Emoji #. wAAbx @@ -14787,7 +14684,7 @@ "VULGAR_FRACTION_THREE_EIGHTHS\n" "LngText.text" msgid "3/8" -msgstr "" +msgstr "3/8" #. ⅝ (U+0215D), see http://wiki.documentfoundation.org/Emoji #. CX2bs @@ -14797,7 +14694,7 @@ "VULGAR_FRACTION_FIVE_EIGHTHS\n" "LngText.text" msgid "5/8" -msgstr "" +msgstr "5/8" #. ⅞ (U+0215E), see http://wiki.documentfoundation.org/Emoji #. J9HEX @@ -14807,7 +14704,7 @@ "VULGAR_FRACTION_SEVEN_EIGHTHS\n" "LngText.text" msgid "7/8" -msgstr "" +msgstr "7/8" #. ¹ (U+000B9), see http://wiki.documentfoundation.org/Emoji #. oFFdk @@ -14817,7 +14714,7 @@ "SUPERSCRIPT_ONE\n" "LngText.text" msgid "^1" -msgstr "" +msgstr "^1" #. ² (U+000B2), see http://wiki.documentfoundation.org/Emoji #. tQbfE @@ -14827,7 +14724,7 @@ "SUPERSCRIPT_TWO\n" "LngText.text" msgid "^2" -msgstr "" +msgstr "^2" #. ³ (U+000B3), see http://wiki.documentfoundation.org/Emoji #. KChg6 @@ -14837,7 +14734,7 @@ "SUPERSCRIPT_THREE\n" "LngText.text" msgid "^3" -msgstr "" +msgstr "^3" #. ⁴ (U+02074), see http://wiki.documentfoundation.org/Emoji #. FAXEo @@ -14847,7 +14744,7 @@ "SUPERSCRIPT_FOUR\n" "LngText.text" msgid "^4" -msgstr "" +msgstr "^4" #. ⁵ (U+02075), see http://wiki.documentfoundation.org/Emoji #. mq4xj @@ -14857,7 +14754,7 @@ "SUPERSCRIPT_FIVE\n" "LngText.text" msgid "^5" -msgstr "" +msgstr "^5" #. ⁶ (U+02076), see http://wiki.documentfoundation.org/Emoji #. iwveQ @@ -14867,7 +14764,7 @@ "SUPERSCRIPT_SIX\n" "LngText.text" msgid "^6" -msgstr "" +msgstr "^6" #. ⁷ (U+02077), see http://wiki.documentfoundation.org/Emoji #. pB4Eu @@ -14877,7 +14774,7 @@ "SUPERSCRIPT_SEVEN\n" "LngText.text" msgid "^7" -msgstr "" +msgstr "^7" #. ⁸ (U+02078), see http://wiki.documentfoundation.org/Emoji #. mC2zV @@ -14887,7 +14784,7 @@ "SUPERSCRIPT_EIGHT\n" "LngText.text" msgid "^8" -msgstr "" +msgstr "^8" #. ⁹ (U+02079), see http://wiki.documentfoundation.org/Emoji #. uN9Qp @@ -14897,7 +14794,7 @@ "SUPERSCRIPT_NINE\n" "LngText.text" msgid "^9" -msgstr "" +msgstr "^9" #. ⁰ (U+02070), see http://wiki.documentfoundation.org/Emoji #. H3Zqf @@ -14907,7 +14804,7 @@ "SUPERSCRIPT_ZERO\n" "LngText.text" msgid "^0" -msgstr "" +msgstr "^0" #. ⁺ (U+0207A), see http://wiki.documentfoundation.org/Emoji #. GtmTo @@ -14922,7 +14819,6 @@ #. ⁻ (U+0207B), see http://wiki.documentfoundation.org/Emoji #. cKEWZ #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSCRIPT_MINUS\n" @@ -14943,7 +14839,6 @@ #. ⁽ (U+0207D), see http://wiki.documentfoundation.org/Emoji #. ZMZdA #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSCRIPT_LEFT_PARENTHESIS\n" @@ -14954,7 +14849,6 @@ #. ⁾ (U+0207E), see http://wiki.documentfoundation.org/Emoji #. EaAEu #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSCRIPT_RIGHT_PARENTHESIS\n" @@ -14970,7 +14864,7 @@ "SUBSCRIPT_ONE\n" "LngText.text" msgid "_1" -msgstr "" +msgstr "_1" #. ₂ (U+02082), see http://wiki.documentfoundation.org/Emoji #. gL88Z @@ -14980,7 +14874,7 @@ "SUBSCRIPT_TWO\n" "LngText.text" msgid "_2" -msgstr "" +msgstr "_2" #. ₃ (U+02083), see http://wiki.documentfoundation.org/Emoji #. gSTF9 @@ -14990,7 +14884,7 @@ "SUBSCRIPT_THREE\n" "LngText.text" msgid "_3" -msgstr "" +msgstr "_3" #. ₄ (U+02084), see http://wiki.documentfoundation.org/Emoji #. qW6Ce @@ -15000,7 +14894,7 @@ "SUBSCRIPT_FOUR\n" "LngText.text" msgid "_4" -msgstr "" +msgstr "_4" #. ₅ (U+02085), see http://wiki.documentfoundation.org/Emoji #. B4VTa @@ -15010,7 +14904,7 @@ "SUBSCRIPT_FIVE\n" "LngText.text" msgid "_5" -msgstr "" +msgstr "_5" #. ₆ (U+02086), see http://wiki.documentfoundation.org/Emoji #. WsC7f @@ -15020,7 +14914,7 @@ "SUBSCRIPT_SIX\n" "LngText.text" msgid "_6" -msgstr "" +msgstr "_6" #. ₇ (U+02087), see http://wiki.documentfoundation.org/Emoji #. 2rEnp @@ -15030,7 +14924,7 @@ "SUBSCRIPT_SEVEN\n" "LngText.text" msgid "_7" -msgstr "" +msgstr "_7" #. ₈ (U+02088), see http://wiki.documentfoundation.org/Emoji #. 5SGSg @@ -15040,7 +14934,7 @@ "SUBSCRIPT_EIGHT\n" "LngText.text" msgid "_8" -msgstr "" +msgstr "_8" #. ₉ (U+02089), see http://wiki.documentfoundation.org/Emoji #. Kaa2h @@ -15050,7 +14944,7 @@ "SUBSCRIPT_NINE\n" "LngText.text" msgid "_9" -msgstr "" +msgstr "_9" #. ₀ (U+02080), see http://wiki.documentfoundation.org/Emoji #. op8an @@ -15060,7 +14954,7 @@ "SUBSCRIPT_ZERO\n" "LngText.text" msgid "_0" -msgstr "" +msgstr "_0" #. ₊ (U+0208A), see http://wiki.documentfoundation.org/Emoji #. FE6Lq @@ -15075,7 +14969,6 @@ #. ₋ (U+0208B), see http://wiki.documentfoundation.org/Emoji #. PdL5c #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUBSCRIPT_MINUS\n" @@ -15096,7 +14989,6 @@ #. ₍ (U+0208D), see http://wiki.documentfoundation.org/Emoji #. pF9N5 #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUBSCRIPT_LEFT_PARENTHESIS\n" @@ -15107,7 +14999,6 @@ #. ₎ (U+0208E), see http://wiki.documentfoundation.org/Emoji #. kCT2R #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUBSCRIPT_RIGHT_PARENTHESIS\n" @@ -15123,7 +15014,7 @@ "MODIFIER_LETTER_SMALL_A\n" "LngText.text" msgid "^a" -msgstr "" +msgstr "^a" #. ᵇ (U+01D47), see http://wiki.documentfoundation.org/Emoji #. pB7jZ @@ -15133,7 +15024,7 @@ "MODIFIER_LETTER_SMALL_B\n" "LngText.text" msgid "^b" -msgstr "" +msgstr "^b" #. ᶜ (U+01D9C), see http://wiki.documentfoundation.org/Emoji #. QymSR @@ -15143,7 +15034,7 @@ "MODIFIER_LETTER_SMALL_C\n" "LngText.text" msgid "^c" -msgstr "" +msgstr "^c" #. ᵈ (U+01D48), see http://wiki.documentfoundation.org/Emoji #. WWuF4 @@ -15153,7 +15044,7 @@ "MODIFIER_LETTER_SMALL_D\n" "LngText.text" msgid "^d" -msgstr "" +msgstr "^d" #. ᵉ (U+01D49), see http://wiki.documentfoundation.org/Emoji #. DBFRu @@ -15163,7 +15054,7 @@ "MODIFIER_LETTER_SMALL_E\n" "LngText.text" msgid "^e" -msgstr "" +msgstr "^e" #. ᶠ (U+01DA0), see http://wiki.documentfoundation.org/Emoji #. FSSAb @@ -15173,7 +15064,7 @@ "MODIFIER_LETTER_SMALL_F\n" "LngText.text" msgid "^f" -msgstr "" +msgstr "^f" #. ᵍ (U+01D4D), see http://wiki.documentfoundation.org/Emoji #. wFF2B @@ -15183,7 +15074,7 @@ "MODIFIER_LETTER_SMALL_G\n" "LngText.text" msgid "^g" -msgstr "" +msgstr "^g" #. ʰ (U+002B0), see http://wiki.documentfoundation.org/Emoji #. 2pBei @@ -15193,7 +15084,7 @@ "MODIFIER_LETTER_SMALL_H\n" "LngText.text" msgid "^h" -msgstr "" +msgstr "^h" #. ⁱ (U+02071), see http://wiki.documentfoundation.org/Emoji #. GtCEX @@ -15203,7 +15094,7 @@ "SUPERSCRIPT_LATIN_SMALL_LETTER_I\n" "LngText.text" msgid "^i" -msgstr "" +msgstr "^i" #. ʲ (U+002B2), see http://wiki.documentfoundation.org/Emoji #. ikBkL @@ -15213,7 +15104,7 @@ "MODIFIER_LETTER_SMALL_J\n" "LngText.text" msgid "^j" -msgstr "" +msgstr "^j" #. ᵏ (U+01D4F), see http://wiki.documentfoundation.org/Emoji #. JNyVU @@ -15223,7 +15114,7 @@ "MODIFIER_LETTER_SMALL_K\n" "LngText.text" msgid "^k" -msgstr "" +msgstr "^k" #. ˡ (U+002E1), see http://wiki.documentfoundation.org/Emoji #. U8qEx @@ -15233,7 +15124,7 @@ "MODIFIER_LETTER_SMALL_L\n" "LngText.text" msgid "^l" -msgstr "" +msgstr "^l" #. ᵐ (U+01D50), see http://wiki.documentfoundation.org/Emoji #. Bb3N7 @@ -15243,7 +15134,7 @@ "MODIFIER_LETTER_SMALL_M\n" "LngText.text" msgid "^m" -msgstr "" +msgstr "^m" #. ⁿ (U+0207F), see http://wiki.documentfoundation.org/Emoji #. oT4ts @@ -15253,7 +15144,7 @@ "SUPERSCRIPT_LATIN_SMALL_LETTER_N\n" "LngText.text" msgid "^n" -msgstr "" +msgstr "^n" #. ᵒ (U+01D52), see http://wiki.documentfoundation.org/Emoji #. ufK3e @@ -15263,7 +15154,7 @@ "MODIFIER_LETTER_SMALL_O\n" "LngText.text" msgid "^o" -msgstr "" +msgstr "^o" #. ᵖ (U+01D56), see http://wiki.documentfoundation.org/Emoji #. CDWbH @@ -15273,7 +15164,7 @@ "MODIFIER_LETTER_SMALL_P\n" "LngText.text" msgid "^p" -msgstr "" +msgstr "^p" #. ʳ (U+002B3), see http://wiki.documentfoundation.org/Emoji #. tHyqw @@ -15283,7 +15174,7 @@ "MODIFIER_LETTER_SMALL_R\n" "LngText.text" msgid "^r" -msgstr "" +msgstr "^r" #. ˢ (U+002E2), see http://wiki.documentfoundation.org/Emoji #. CsBY6 @@ -15293,7 +15184,7 @@ "MODIFIER_LETTER_SMALL_S\n" "LngText.text" msgid "^s" -msgstr "" +msgstr "^s" #. ᵗ (U+01D57), see http://wiki.documentfoundation.org/Emoji #. aU39K @@ -15303,7 +15194,7 @@ "MODIFIER_LETTER_SMALL_T\n" "LngText.text" msgid "^t" -msgstr "" +msgstr "^t" #. ᵘ (U+01D58), see http://wiki.documentfoundation.org/Emoji #. zDqKT @@ -15313,7 +15204,7 @@ "MODIFIER_LETTER_SMALL_U\n" "LngText.text" msgid "^u" -msgstr "" +msgstr "^u" #. ᵛ (U+01D5B), see http://wiki.documentfoundation.org/Emoji #. KYKGm @@ -15323,7 +15214,7 @@ "MODIFIER_LETTER_SMALL_V\n" "LngText.text" msgid "^v" -msgstr "" +msgstr "^v" #. ʷ (U+002B7), see http://wiki.documentfoundation.org/Emoji #. j9e8C @@ -15333,7 +15224,7 @@ "MODIFIER_LETTER_SMALL_W\n" "LngText.text" msgid "^w" -msgstr "" +msgstr "^w" #. ˣ (U+002E3), see http://wiki.documentfoundation.org/Emoji #. Eiacc @@ -15343,7 +15234,7 @@ "MODIFIER_LETTER_SMALL_X\n" "LngText.text" msgid "^x" -msgstr "" +msgstr "^x" #. ʸ (U+002B8), see http://wiki.documentfoundation.org/Emoji #. XQPuC @@ -15353,7 +15244,7 @@ "MODIFIER_LETTER_SMALL_Y\n" "LngText.text" msgid "^y" -msgstr "" +msgstr "^y" #. ᶻ (U+01DBB), see http://wiki.documentfoundation.org/Emoji #. vnmnz @@ -15363,7 +15254,7 @@ "MODIFIER_LETTER_SMALL_Z\n" "LngText.text" msgid "^z" -msgstr "" +msgstr "^z" #. ᴬ (U+01D2C), see http://wiki.documentfoundation.org/Emoji #. WvCDU @@ -15373,7 +15264,7 @@ "MODIFIER_LETTER_CAPITAL_A\n" "LngText.text" msgid "^A" -msgstr "" +msgstr "^A" #. ᴮ (U+01D2E), see http://wiki.documentfoundation.org/Emoji #. wGXNi @@ -15383,7 +15274,7 @@ "MODIFIER_LETTER_CAPITAL_B\n" "LngText.text" msgid "^B" -msgstr "" +msgstr "^B" #. ᴰ (U+01D30), see http://wiki.documentfoundation.org/Emoji #. hVJVE @@ -15393,7 +15284,7 @@ "MODIFIER_LETTER_CAPITAL_D\n" "LngText.text" msgid "^D" -msgstr "" +msgstr "^D" #. ᴱ (U+01D31), see http://wiki.documentfoundation.org/Emoji #. 8Efke @@ -15403,7 +15294,7 @@ "MODIFIER_LETTER_CAPITAL_E\n" "LngText.text" msgid "^E" -msgstr "" +msgstr "^E" #. ᴳ (U+01D33), see http://wiki.documentfoundation.org/Emoji #. pApe7 @@ -15413,7 +15304,7 @@ "MODIFIER_LETTER_CAPITAL_G\n" "LngText.text" msgid "^G" -msgstr "" +msgstr "^G" #. ᴴ (U+01D34), see http://wiki.documentfoundation.org/Emoji #. Bjk2Z @@ -15423,7 +15314,7 @@ "MODIFIER_LETTER_CAPITAL_H\n" "LngText.text" msgid "^H" -msgstr "" +msgstr "^H" #. ᴵ (U+01D35), see http://wiki.documentfoundation.org/Emoji #. UR8AR @@ -15433,7 +15324,7 @@ "MODIFIER_LETTER_CAPITAL_I\n" "LngText.text" msgid "^I" -msgstr "" +msgstr "^I" #. ᴶ (U+01D36), see http://wiki.documentfoundation.org/Emoji #. uobRE @@ -15443,7 +15334,7 @@ "MODIFIER_LETTER_CAPITAL_J\n" "LngText.text" msgid "^J" -msgstr "" +msgstr "^J" #. ᴷ (U+01D37), see http://wiki.documentfoundation.org/Emoji #. DMNFo @@ -15453,7 +15344,7 @@ "MODIFIER_LETTER_CAPITAL_K\n" "LngText.text" msgid "^K" -msgstr "" +msgstr "^K" #. ᴸ (U+01D38), see http://wiki.documentfoundation.org/Emoji #. bzESb @@ -15463,7 +15354,7 @@ "MODIFIER_LETTER_CAPITAL_L\n" "LngText.text" msgid "^L" -msgstr "" +msgstr "^L" #. ᴹ (U+01D39), see http://wiki.documentfoundation.org/Emoji #. 2gTjB @@ -15473,7 +15364,7 @@ "MODIFIER_LETTER_CAPITAL_M\n" "LngText.text" msgid "^M" -msgstr "" +msgstr "^M" #. ᴺ (U+01D3A), see http://wiki.documentfoundation.org/Emoji #. J5Gx4 @@ -15483,7 +15374,7 @@ "MODIFIER_LETTER_CAPITAL_N\n" "LngText.text" msgid "^N" -msgstr "" +msgstr "^N" #. ᴼ (U+01D3C), see http://wiki.documentfoundation.org/Emoji #. icthu @@ -15493,7 +15384,7 @@ "MODIFIER_LETTER_CAPITAL_O\n" "LngText.text" msgid "^O" -msgstr "" +msgstr "^O" #. ᴾ (U+01D3E), see http://wiki.documentfoundation.org/Emoji #. zE85z @@ -15503,7 +15394,7 @@ "MODIFIER_LETTER_CAPITAL_P\n" "LngText.text" msgid "^P" -msgstr "" +msgstr "^P" #. ᴿ (U+01D3F), see http://wiki.documentfoundation.org/Emoji #. jANLc @@ -15513,7 +15404,7 @@ "MODIFIER_LETTER_CAPITAL_R\n" "LngText.text" msgid "^R" -msgstr "" +msgstr "^R" #. ᵀ (U+01D40), see http://wiki.documentfoundation.org/Emoji #. VXTXF @@ -15523,7 +15414,7 @@ "MODIFIER_LETTER_CAPITAL_T\n" "LngText.text" msgid "^T" -msgstr "" +msgstr "^T" #. ᵁ (U+01D41), see http://wiki.documentfoundation.org/Emoji #. CCEnp @@ -15533,7 +15424,7 @@ "MODIFIER_LETTER_CAPITAL_U\n" "LngText.text" msgid "^U" -msgstr "" +msgstr "^U" #. ⱽ (U+02C7D), see http://wiki.documentfoundation.org/Emoji #. CTtuW @@ -15543,7 +15434,7 @@ "MODIFIER_LETTER_CAPITAL_V\n" "LngText.text" msgid "^V" -msgstr "" +msgstr "^V" #. ᵂ (U+01D42), see http://wiki.documentfoundation.org/Emoji #. tGGcN @@ -15553,7 +15444,7 @@ "MODIFIER_LETTER_CAPITAL_W\n" "LngText.text" msgid "^W" -msgstr "" +msgstr "^W" #. ₐ (U+02090), see http://wiki.documentfoundation.org/Emoji #. mzsGJ @@ -15563,7 +15454,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_A\n" "LngText.text" msgid "_a" -msgstr "" +msgstr "_a" #. ₑ (U+02091), see http://wiki.documentfoundation.org/Emoji #. AjRgG @@ -15573,7 +15464,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_E\n" "LngText.text" msgid "_e" -msgstr "" +msgstr "_e" #. ₕ (U+02095), see http://wiki.documentfoundation.org/Emoji #. PEzPP @@ -15583,7 +15474,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_H\n" "LngText.text" msgid "_h" -msgstr "" +msgstr "_h" #. ᵢ (U+01D62), see http://wiki.documentfoundation.org/Emoji #. oVoDX @@ -15593,7 +15484,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_I\n" "LngText.text" msgid "_i" -msgstr "" +msgstr "_i" #. ⱼ (U+02C7C), see http://wiki.documentfoundation.org/Emoji #. eAM4q @@ -15603,7 +15494,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_J\n" "LngText.text" msgid "_j" -msgstr "" +msgstr "_j" #. ₖ (U+02096), see http://wiki.documentfoundation.org/Emoji #. 5ZgCG @@ -15613,7 +15504,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_K\n" "LngText.text" msgid "_k" -msgstr "" +msgstr "_k" #. ₗ (U+02097), see http://wiki.documentfoundation.org/Emoji #. xvYvD @@ -15623,7 +15514,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_L\n" "LngText.text" msgid "_l" -msgstr "" +msgstr "_l" #. ₘ (U+02098), see http://wiki.documentfoundation.org/Emoji #. GCDfd @@ -15633,7 +15524,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_M\n" "LngText.text" msgid "_m" -msgstr "" +msgstr "_m" #. ₙ (U+02099), see http://wiki.documentfoundation.org/Emoji #. GrwUs @@ -15643,7 +15534,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_N\n" "LngText.text" msgid "_n" -msgstr "" +msgstr "_n" #. ₒ (U+02092), see http://wiki.documentfoundation.org/Emoji #. ZG9m2 @@ -15653,7 +15544,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_O\n" "LngText.text" msgid "_o" -msgstr "" +msgstr "_o" #. ₚ (U+0209A), see http://wiki.documentfoundation.org/Emoji #. HaoJt @@ -15663,7 +15554,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_P\n" "LngText.text" msgid "_p" -msgstr "" +msgstr "_p" #. ᵣ (U+01D63), see http://wiki.documentfoundation.org/Emoji #. Yeg7A @@ -15673,7 +15564,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_R\n" "LngText.text" msgid "_r" -msgstr "" +msgstr "_r" #. ₛ (U+0209B), see http://wiki.documentfoundation.org/Emoji #. F3MHa @@ -15683,7 +15574,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_S\n" "LngText.text" msgid "_s" -msgstr "" +msgstr "_s" #. ₜ (U+0209C), see http://wiki.documentfoundation.org/Emoji #. nKDsn @@ -15693,7 +15584,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_T\n" "LngText.text" msgid "_t" -msgstr "" +msgstr "_t" #. ᵤ (U+01D64), see http://wiki.documentfoundation.org/Emoji #. NqYaD @@ -15703,7 +15594,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_U\n" "LngText.text" msgid "_u" -msgstr "" +msgstr "_u" #. ᵥ (U+01D65), see http://wiki.documentfoundation.org/Emoji #. 6P9ZQ @@ -15713,7 +15604,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_V\n" "LngText.text" msgid "_v" -msgstr "" +msgstr "_v" #. ₓ (U+02093), see http://wiki.documentfoundation.org/Emoji #. BCsM8 @@ -15723,169 +15614,154 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_X\n" "LngText.text" msgid "_x" -msgstr "" +msgstr "_x" #. ᵅ (U+01D45), see http://wiki.documentfoundation.org/Emoji #. gytmK #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_ALPHA\n" "LngText.text" msgid "^alpha" -msgstr "אלפא" +msgstr "^אלפא" #. ᵝ (U+01D5D), see http://wiki.documentfoundation.org/Emoji #. hrktE #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_BETA\n" "LngText.text" msgid "^beta" -msgstr "בטא" +msgstr "^בטא" #. ᵞ (U+01D5E), see http://wiki.documentfoundation.org/Emoji #. yqXNK #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_GREEK_GAMMA\n" "LngText.text" msgid "^gamma" -msgstr "גמא" +msgstr "^גמא" #. ᵟ (U+01D5F), see http://wiki.documentfoundation.org/Emoji #. tL6DL #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_DELTA\n" "LngText.text" msgid "^delta" -msgstr "דלתא" +msgstr "^דלתא" #. ᵋ (U+01D4B), see http://wiki.documentfoundation.org/Emoji #. w3K77 #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_OPEN_E\n" "LngText.text" msgid "^epsilon" -msgstr "אפסילון" +msgstr "^אפסילון" #. ᶿ (U+01DBF), see http://wiki.documentfoundation.org/Emoji #. xgw47 #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_THETA\n" "LngText.text" msgid "^theta" -msgstr "תטא" +msgstr "^תטא" #. ᶥ (U+01DA5), see http://wiki.documentfoundation.org/Emoji #. mAHBc #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_IOTA\n" "LngText.text" msgid "^iota" -msgstr "יוטא" +msgstr "_יוטא" #. ᶲ (U+01DB2), see http://wiki.documentfoundation.org/Emoji #. W2CJE #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_PHI\n" "LngText.text" msgid "^Phi" -msgstr "פֿי גדולה" +msgstr "_פֿי גדולה" #. ᵠ (U+01D60), see http://wiki.documentfoundation.org/Emoji #. x68Va #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_GREEK_PHI\n" "LngText.text" msgid "^phi" -msgstr "פֿי" +msgstr "^פֿי" #. ᵡ (U+01D61), see http://wiki.documentfoundation.org/Emoji #. t9p8B #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_CHI\n" "LngText.text" msgid "^chi" -msgstr "כי" +msgstr "^כי" #. ᵦ (U+01D66), see http://wiki.documentfoundation.org/Emoji #. ZTjXp #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_BETA\n" "LngText.text" msgid "_beta" -msgstr "בטא" +msgstr "_בטא" #. ᵧ (U+01D67), see http://wiki.documentfoundation.org/Emoji #. XTDCK #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_GAMMA\n" "LngText.text" msgid "_gamma" -msgstr "גמא" +msgstr "_גמא" #. ᵨ (U+01D68), see http://wiki.documentfoundation.org/Emoji #. GFHAL #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_RHO\n" "LngText.text" msgid "_rho" -msgstr "רו" +msgstr "_רו" #. ᵩ (U+01D69), see http://wiki.documentfoundation.org/Emoji #. SFGWx #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_PHI\n" "LngText.text" msgid "_phi" -msgstr "פֿי" +msgstr "_פֿי" #. ᵪ (U+01D6A), see http://wiki.documentfoundation.org/Emoji #. QZ79t #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_CHI\n" "LngText.text" msgid "_chi" -msgstr "כי" +msgstr "_כי" diff -Nru libreoffice-7.4.6/translations/source/he/filter/messages.po libreoffice-7.4.7/translations/source/he/filter/messages.po --- libreoffice-7.4.6/translations/source/he/filter/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/filter/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-15 22:28+0200\n" -"PO-Revision-Date: 2021-09-08 09:16+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516030010.000000\n" #. 5AQgJ @@ -412,7 +412,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:153 msgctxt "pdfgeneralpage|extended_tip|viewpdf" msgid "Open the exported document in the system default PDF viewer." -msgstr "" +msgstr "פתיחת המסמך המיוצא במציג ה־PDF כברירת המחדל של המערכת." #. aWj7F #: filter/uiconfig/ui/pdfgeneralpage.ui:168 @@ -442,7 +442,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:233 msgctxt "pdfgeneralpage|reduceresolution" msgid "Reduce ima_ge resolution to:" -msgstr "" +msgstr "הקטנת רזולוציית התמונה ל_כדי:" #. bAtCV #: filter/uiconfig/ui/pdfgeneralpage.ui:245 @@ -539,7 +539,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:427 msgctxt "pdfgeneralpage|extended_tip|watermarkentry" msgid "Insert the text for the watermark signature." -msgstr "" +msgstr "הוספת הטקסט לחותמת המים." #. JtBsL #: filter/uiconfig/ui/pdfgeneralpage.ui:439 @@ -671,7 +671,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:667 msgctxt "pdfgeneralpage|extended_tip|pdfa" msgid "Converts to the PDF/A-2b or PDF/A-1b format. This is defined as an electronic document file format for long term preservation. All fonts that were used in the source document will be embedded into the generated PDF file. PDF tags will be written." -msgstr "" +msgstr "ממיר לתצורת PDF/A-2b או PDF/A-1b. מוגדר כסוג קובץ מסמך אלקטרוני לשימור ארוך טווח. כל הגופנים בהם נעשה שימוש במסמך המקור ישובצו בקובץ ה־PDF שנוצר. תגיות PDF תשוכתבנה." #. jmaDc #: filter/uiconfig/ui/pdfgeneralpage.ui:716 @@ -695,7 +695,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:758 msgctxt "pdfgeneralpage|extended_tip|pdfua" msgid "Creates a universal accessibility-complying PDF file that follows the requirements of PDF/UA (ISO 14289) specifications." -msgstr "" +msgstr "יוצר קובץ PDF עם תאימות לנגישות כוללנית שנצמד לדרישות של מפרט PDF/UA (ISO 14289)." #. Drqkd #: filter/uiconfig/ui/pdfgeneralpage.ui:773 @@ -850,10 +850,9 @@ #. RcdUF #: filter/uiconfig/ui/pdflinkspage.ui:75 -#, fuzzy msgctxt "pdflinkspage|extended_tip|exporturl" msgid "Enable this checkbox to export URLs to other documents as relative URLs in the file system. See \"relative hyperlinks\" in the Help." -msgstr "סימון תיבת סימון זו תגדיר כי בזמן הייצוא, כתובות URL למסמכים אחרים יישמרו ככתובות URL יחסיות במערכת הקבצים. ראה \"היפר-קישורים יחסיים\" בעזרה." +msgstr "סימון תיבת סימון זו יגדיר שייצוא של כתובות למסמכים אחרים יתבצע ככתובות יחסיות במערכת הקבצים. ר׳ „קישורים יחסיים” בעזרה." #. biumY #: filter/uiconfig/ui/pdflinkspage.ui:90 @@ -865,7 +864,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:119 msgctxt "pdflinkspage|default" msgid "Default mode" -msgstr "מצב בררת מחדל" +msgstr "מצב ברירת מחדל" #. bcgaz #: filter/uiconfig/ui/pdflinkspage.ui:128 @@ -1069,7 +1068,7 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:343 msgctxt "pdfsecuritypage|extended_tip|printhigh" msgid "The document can be printed in high resolution." -msgstr "" +msgstr "אפשר להדפיס את המסמך ברזולוציה גבוהה." #. Gjpp4 #: filter/uiconfig/ui/pdfsecuritypage.ui:358 @@ -1087,7 +1086,7 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:396 msgctxt "pdfsecuritypage|extended_tip|changenone" msgid "No changes of the content are permitted." -msgstr "" +msgstr "שינויים לתוכן אסורים." #. Vt6Zn #: filter/uiconfig/ui/pdfsecuritypage.ui:407 @@ -1477,7 +1476,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:185 msgctxt "pdfviewpage|fitdefault" msgid "_Default" -msgstr "_בררת מחדל" +msgstr "_ברירת מחדל" #. vQNHv #: filter/uiconfig/ui/pdfviewpage.ui:194 @@ -1549,7 +1548,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:361 msgctxt "pdfviewpage|defaultlayout" msgid "D_efault" -msgstr "_בררת מחדל" +msgstr "_ברירת מחדל" #. CtGeC #: filter/uiconfig/ui/pdfviewpage.ui:370 diff -Nru libreoffice-7.4.6/translations/source/he/filter/source/config/fragments/filters.po libreoffice-7.4.7/translations/source/he/filter/source/config/fragments/filters.po --- libreoffice-7.4.6/translations/source/he/filter/source/config/fragments/filters.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/filter/source/config/fragments/filters.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2021-10-27 20:07+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1530485562.000000\n" #. FR4Ff @@ -158,7 +158,6 @@ #. ZBGoe #: CorelPresentationExchange.xcu -#, fuzzy msgctxt "" "CorelPresentationExchange.xcu\n" "Corel Presentation Exchange\n" @@ -585,40 +584,37 @@ "UIName\n" "value.text" msgid "Word 97–2003 Template" -msgstr "" +msgstr "תבנית Word 97–2003" #. GnuAC #: MS_Works.xcu -#, fuzzy msgctxt "" "MS_Works.xcu\n" "MS_Works\n" "UIName\n" "value.text" msgid "Microsoft Works Document" -msgstr "מסמך וורד" +msgstr "מסמך Microsoft Works" #. fZYpn #: MS_Works_Calc.xcu -#, fuzzy msgctxt "" "MS_Works_Calc.xcu\n" "MS_Works_Calc\n" "UIName\n" "value.text" msgid "Microsoft Works Document" -msgstr "מסמך וורד" +msgstr "מסמך Microsoft Works" #. G3mSJ #: MS_Write.xcu -#, fuzzy msgctxt "" "MS_Write.xcu\n" "MS_Write\n" "UIName\n" "value.text" msgid "Microsoft Write" -msgstr "‏'אופיס' של מיקרוסופט" +msgstr "Microsoft Write" #. umheT #: MWAW_Bitmap.xcu @@ -768,7 +764,7 @@ "UIName\n" "value.text" msgid "Flat XML ODF Presentation" -msgstr "" +msgstr "מצגת XML ODF שטוחה" #. 6CWDA #: ODS_FlatXML.xcu @@ -778,7 +774,7 @@ "UIName\n" "value.text" msgid "Flat XML ODF Spreadsheet" -msgstr "" +msgstr "מצגת XML ODF שטוחה" #. En7QP #: ODT_FlatXML.xcu @@ -788,7 +784,7 @@ "UIName\n" "value.text" msgid "Flat XML ODF Text Document" -msgstr "" +msgstr "מסמך טקסט XML ODF שטוח" #. jysqT #: OOXML_Text.xcu @@ -888,7 +884,7 @@ "UIName\n" "value.text" msgid "Adobe PageMaker" -msgstr "" +msgstr "Adobe PageMaker" #. KTSQB #: PalmDoc.xcu @@ -959,7 +955,7 @@ "UIName\n" "value.text" msgid "QuarkXPress" -msgstr "" +msgstr "QuarkXPress" #. FpfDN #: RAS___Sun_Rasterfile.xcu @@ -1030,7 +1026,7 @@ "UIName\n" "value.text" msgid "SYLK" -msgstr "" +msgstr "SYLK" #. GfUkM #: StarBaseReport.xcu @@ -1040,18 +1036,17 @@ "UIName\n" "value.text" msgid "ODF Database Report" -msgstr "" +msgstr "דוח מסד נתונים ODF" #. PsuNu #: StarBaseReportChart.xcu -#, fuzzy msgctxt "" "StarBaseReportChart.xcu\n" "StarOffice XML (Base) Report Chart\n" "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Report Chart" -msgstr "תרשים של OpenOffice.org 1.0" +msgstr "תרשים דוח של OpenOffice.org 1.0" #. a9ZBj #: StarOffice_Drawing.xcu @@ -1231,7 +1226,7 @@ "UIName\n" "value.text" msgid "Text - Choose Encoding" -msgstr "" +msgstr "טקסט - נא לבחור קידוד" #. sNWU2 #: Text__encoded___StarWriter_GlobalDocument_.xcu @@ -1301,7 +1296,7 @@ "UIName\n" "value.text" msgid "WEBP - WebP Image" -msgstr "" +msgstr "WEBP - תמונת WebP" #. zUxn7 #: WMF___MS_Windows_Metafile.xcu @@ -1315,14 +1310,13 @@ #. G6mAM #: WPS_Lotus_Calc.xcu -#, fuzzy msgctxt "" "WPS_Lotus_Calc.xcu\n" "WPS_Lotus_Calc\n" "UIName\n" "value.text" msgid "Lotus Document" -msgstr "טעינת מסמך" +msgstr "מסמך Lotus" #. aWnQ9 #: WPS_QPro_Calc.xcu @@ -1332,7 +1326,7 @@ "UIName\n" "value.text" msgid "QuattroPro Document" -msgstr "" +msgstr "מסמך QuattroPro" #. 98S59 #: WordPerfect.xcu @@ -1342,29 +1336,27 @@ "UIName\n" "value.text" msgid "WordPerfect Document" -msgstr "" +msgstr "מסמך WordPerfect" #. CsfBF #: WordPerfectGraphics.xcu -#, fuzzy msgctxt "" "WordPerfectGraphics.xcu\n" "WordPerfect Graphics\n" "UIName\n" "value.text" msgid "WordPerfect Graphics" -msgstr "קובץ גרפי מסוג WordPerfect" +msgstr "גרפיקה של WordPerfect" #. cuZzS #: WriteNow.xcu -#, fuzzy msgctxt "" "WriteNow.xcu\n" "WriteNow\n" "UIName\n" "value.text" msgid "WriteNow Document" -msgstr "מ_סמך Writer" +msgstr "מסמך WriteNow" #. rG4od #: XBM___X_Consortium.xcu @@ -1424,7 +1416,7 @@ "UIName\n" "value.text" msgid "Gnumeric Spreadsheet" -msgstr "" +msgstr "גיליון נתונים של Gnumeric" #. HWKsT #: calc_HTML_WebQuery.xcu @@ -1554,7 +1546,7 @@ "UIName\n" "value.text" msgid "WEBP - WebP Image" -msgstr "" +msgstr "WEBP - תמונת WebP" #. ASgi2 #: chart8.xcu @@ -1745,7 +1737,7 @@ "UIName\n" "value.text" msgid "WEBP - WebP Image" -msgstr "" +msgstr "WEBP - תמונת WebP" #. RgBSz #: draw_wmf_Export.xcu @@ -2172,25 +2164,23 @@ #. ipApD #: writer_web_StarOffice_XML_Writer.xcu -#, fuzzy msgctxt "" "writer_web_StarOffice_XML_Writer.xcu\n" "writer_web_StarOffice_XML_Writer\n" "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Text Document (Writer/Web)" -msgstr "תבנית מסמך טקסט של OpenOffice.org 1.0" +msgstr "מסמך טקסט של OpenOffice.org 1.0‏ (Writer/Web)" #. kp5x8 #: writer_web_StarOffice_XML_Writer_Web_Template.xcu -#, fuzzy msgctxt "" "writer_web_StarOffice_XML_Writer_Web_Template.xcu\n" "writer_web_StarOffice_XML_Writer_Web_Template\n" "UIName\n" "value.text" msgid "OpenOffice.org 1.0 HTML Template" -msgstr "תבנית ציור של OpenOffice.org 1.0" +msgstr "תבנית HTML של OpenOffice.org 1.0" #. DQZCK #: writer_web_jpg_Export.xcu @@ -2230,7 +2220,7 @@ "UIName\n" "value.text" msgid "WEBP - WebP Image" -msgstr "" +msgstr "WEBP - תמונת WebP" #. DxENG #: writer_webp_Export.xcu @@ -2240,7 +2230,7 @@ "UIName\n" "value.text" msgid "WEBP - WebP Image" -msgstr "" +msgstr "WEBP - תמונת WebP" #. iRPFB #: writerglobal8.xcu diff -Nru libreoffice-7.4.6/translations/source/he/filter/source/config/fragments/internalgraphicfilters.po libreoffice-7.4.7/translations/source/he/filter/source/config/fragments/internalgraphicfilters.po --- libreoffice-7.4.6/translations/source/he/filter/source/config/fragments/internalgraphicfilters.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/filter/source/config/fragments/internalgraphicfilters.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2020-03-29 07:55+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1480692872.000000\n" #. s5fY3 @@ -44,7 +44,7 @@ "UIName\n" "value.text" msgid "DXF - AutoCAD Interchange Format" -msgstr "DXF - AutoCAD Interchange Format" +msgstr "DXF - תצורת החלפה של AutoCAD" #. qGZFH #: emf_Export.xcu @@ -364,7 +364,7 @@ "UIName\n" "value.text" msgid "WEBP - WebP Image" -msgstr "" +msgstr "WEBP - תמונת WebP" #. ZABzk #: webp_Import.xcu @@ -374,7 +374,7 @@ "UIName\n" "value.text" msgid "WEBP - WebP Image" -msgstr "" +msgstr "WEBP - תמונת WebP" #. fUdGf #: wmf_Export.xcu diff -Nru libreoffice-7.4.6/translations/source/he/forms/messages.po libreoffice-7.4.7/translations/source/he/forms/messages.po --- libreoffice-7.4.6/translations/source/he/forms/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/forms/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-01-26 17:37+0000\n" +"PO-Revision-Date: 2023-03-12 10:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507241231.000000\n" #. naBgZ @@ -68,7 +68,7 @@ #: forms/inc/strings.hrc:34 msgctxt "RID_STR_ERR_INSERTRECORD" msgid "Error inserting the new record" -msgstr "שגיאה בהכנסת הרשומה החדשה" +msgstr "שגיאה בהוספת הרשומה החדשה" #. DeE8J #: forms/inc/strings.hrc:35 diff -Nru libreoffice-7.4.6/translations/source/he/fpicker/messages.po libreoffice-7.4.7/translations/source/he/fpicker/messages.po --- libreoffice-7.4.6/translations/source/he/fpicker/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/fpicker/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2021-02-26 09:36+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1538497346.000000\n" #. SJGCw @@ -195,13 +195,13 @@ #: fpicker/uiconfig/ui/explorerfiledialog.ui:296 msgctxt "explorerfiledialog|add" msgid "Add current folder to Places" -msgstr "" +msgstr "הוספת התיקייה הנוכחית למיקומים" #. wP2nq #: fpicker/uiconfig/ui/explorerfiledialog.ui:311 msgctxt "explorerfiledialog|add" msgid "Remove selected folder from Places" -msgstr "" +msgstr "הסרת התיקייה הנבחרת מהמיקומים" #. Upnsg #: fpicker/uiconfig/ui/explorerfiledialog.ui:365 @@ -508,13 +508,13 @@ #: include/fpicker/strings.hrc:32 msgctxt "STR_SVT_ALREADYEXISTOVERWRITE_SECONDARY" msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents." -msgstr "" +msgstr "הקובץ כבר קיים ב־„$dirname$”. החלפתו תדרוס את תוכנו." #. cBvCB #: include/fpicker/strings.hrc:33 msgctxt "STR_SVT_ALLFORMATS" msgid "All Formats" -msgstr "" +msgstr "כל סוגי הקבצים" #. z6Eo3 #: include/fpicker/strings.hrc:34 diff -Nru libreoffice-7.4.6/translations/source/he/framework/messages.po libreoffice-7.4.7/translations/source/he/framework/messages.po --- libreoffice-7.4.6/translations/source/he/framework/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/framework/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-06-11 17:08+0200\n" -"PO-Revision-Date: 2021-06-24 10:56+0000\n" +"PO-Revision-Date: 2023-03-14 12:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.6.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1509018137.000000\n" #. 5dTDC @@ -209,7 +209,7 @@ #: framework/inc/strings.hrc:52 msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE" msgid "Reset to Default Language" -msgstr "איפוס לשפת בררת מחדל" +msgstr "איפוס לשפת ברירת מחדל" #. YEXdS #: framework/inc/strings.hrc:53 @@ -341,7 +341,7 @@ #: framework/inc/strings.hrc:76 msgctxt "RID_STR_PROPTITLE_SPINBUTTON" msgid "Spin Button" -msgstr "כפתור סיבוב" +msgstr "כפתור טווח" #. eGgm4 #: framework/inc/strings.hrc:77 diff -Nru libreoffice-7.4.6/translations/source/he/helpcontent2/source/text/scalc/02.po libreoffice-7.4.7/translations/source/he/helpcontent2/source/text/scalc/02.po --- libreoffice-7.4.6/translations/source/he/helpcontent2/source/text/scalc/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/helpcontent2/source/text/scalc/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: 2018-11-14 12:00+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-12 04:33+0000\n" +"Last-Translator: Yaron Shahrabani \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542196838.000000\n" #. aSE5T @@ -320,7 +320,7 @@ "tit\n" "help.text" msgid "Name Box" -msgstr "" +msgstr "תיבת שם" #. JJA9o #: 06010000.xhp diff -Nru libreoffice-7.4.6/translations/source/he/helpcontent2/source/text/sdatabase.po libreoffice-7.4.7/translations/source/he/helpcontent2/source/text/sdatabase.po --- libreoffice-7.4.6/translations/source/he/helpcontent2/source/text/sdatabase.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/helpcontent2/source/text/sdatabase.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,14 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-12 04:33+0000\n" +"Last-Translator: Yaron Shahrabani \n" +"Language-Team: Hebrew \n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" #. ugSgG #: 02000000.xhp @@ -20,7 +22,7 @@ "tit\n" "help.text" msgid "Queries" -msgstr "" +msgstr "שאילתות" #. nuBLG #: 02000000.xhp diff -Nru libreoffice-7.4.6/translations/source/he/helpcontent2/source/text/smath/06.po libreoffice-7.4.7/translations/source/he/helpcontent2/source/text/smath/06.po --- libreoffice-7.4.6/translations/source/he/helpcontent2/source/text/smath/06.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/helpcontent2/source/text/smath/06.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2018-05-16 16:02+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-12 04:33+0000\n" +"Last-Translator: Yaron Shahrabani \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1526486570.000000\n" #. TrAzH @@ -23,7 +23,7 @@ "tit\n" "help.text" msgid "Math screenshots" -msgstr "" +msgstr "צילומי מסך של Math" #. QABk4 #: screenshots.xhp diff -Nru libreoffice-7.4.6/translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.4.7/translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.4.6/translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:32+0100\n" -"PO-Revision-Date: 2021-09-08 09:16+0000\n" +"PO-Revision-Date: 2023-03-26 10:32+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542023484.000000\n" #. tBfTE @@ -2777,7 +2777,7 @@ "OOO_CONTROL_248\n" "LngText.text" msgid "The Installation Wizard will complete the installation of [ProductName] on your computer. To continue, click Next." -msgstr "אשף ההתקנה ישלים את התקנת [ProductName] במחשב הנוכחי. יש ללחוץ הבא להמשך." +msgstr "אשף ההתקנה ישלים את התקנת [ProductName] במחשב שלך. יש ללחוץ הבא להמשך." #. sGq9T #: Control.ulf @@ -2786,7 +2786,7 @@ "OOO_CONTROL_249\n" "LngText.text" msgid "The Installation Wizard will complete the suspended installation of [ProductName] on your computer. To continue, click Next." -msgstr "אשף ההתקנה ישלים את ההתקנה המושהה של [ProductName] במחשב הנוכחי. יש ללחוץ הבא להמשך." +msgstr "אשף ההתקנה ישלים את ההתקנה המושהית של [ProductName] במחשב שלך. יש ללחוץ הבא להמשך." #. mff5H #: Control.ulf @@ -2867,7 +2867,7 @@ "OOO_CONTROL_260\n" "LngText.text" msgid "&Next >" -msgstr "&הבא >" +msgstr "ה&בא >" #. mXLvW #: Control.ulf @@ -2876,7 +2876,7 @@ "OOO_CONTROL_262\n" "LngText.text" msgid "< &Back" -msgstr "< &הקודם" +msgstr "< ה&קודם" #. v4dTZ #: Control.ulf @@ -2957,7 +2957,7 @@ "OOO_CONTROL_275\n" "LngText.text" msgid "[ProductName] can be set as the default application to open Microsoft Office file types. This means, for instance, that if you double click on one of these files, [ProductName] will open it, not the program that opens it now." -msgstr "ניתן להגדיר את [ProductName] כיישום בררת מחדל עבור פתיחת סוגי קבצי םשל Microsoft Office. זאת אומר, לדוגמה, שאם תבוצע לחיצה כפולה על אחד מקבצים אלה, [ProductName] יפתח אותם ולא היישום שפותח אותם כעת." +msgstr "ניתן להגדיר את [ProductName] כיישום ברירת מחדל עבור פתיחת סוגי קבצי םשל Microsoft Office. זאת אומר, לדוגמה, שאם תבוצע לחיצה כפולה על אחד מקבצים אלה, [ProductName] יפתח אותם ולא היישום שפותח אותם כעת." #. xMzmY #: Control.ulf @@ -3002,7 +3002,7 @@ "OOO_CONTROL_303\n" "LngText.text" msgid "The version specified in the folder below cannot be updated." -msgstr "אי אפשר לעדכן את הגירסה בתיקייה המצויינת למטה.‏" +msgstr "אי אפשר לעדכן את הגרסה בתיקייה המצויינת למטה.‏" #. 5B3xC #: Control.ulf @@ -3173,7 +3173,7 @@ "OOO_CUSTOMACTION_2\n" "LngText.text" msgid "The same version of this product is already installed." -msgstr "אותה גירסה של המוצר כבר הותקנה.‏" +msgstr "אותה גרסה של המוצר כבר הותקנה.‏" #. xCCKB #: Error.ulf diff -Nru libreoffice-7.4.6/translations/source/he/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-7.4.7/translations/source/he/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-7.4.6/translations/source/he/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:19+0200\n" -"PO-Revision-Date: 2020-03-23 08:16+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1513030788.000000\n" #. XpeLj @@ -95,7 +95,7 @@ "par_id050320091710378\n" "help.text" msgid "If enabled (default), the algorithm tries to find variable bounds by looking at the starting values." -msgstr "אם מופעל (בררת מחדל), האלגוריתם מנסה למצוא גבולות משתנים באמצעות קריאת ערכי התחלה." +msgstr "אם מופעל (ברירת מחדל), האלגוריתם מנסה למצוא גבולות משתנים באמצעות קריאת ערכי התחלה." #. 7tnqA #: Options.xhp @@ -131,7 +131,7 @@ "par_id0503200917103766\n" "help.text" msgid "If disabled (default), the BCH Comparator is used. It compares two individuals by first looking at their constraint violations and only if those are equal, it measures their current solution." -msgstr "אם מנוטרל (בררת מחדל), נעשה שימוש במשווה ה־BCH. המשווה מבצע השוואה בין פריטים יחידים על ידי הסתכלות תחילה על המגבלות והחריגות שלהן ורק אם אלו שוות, המשווה מודד את הפתרון הנוכחי שלהם." +msgstr "אם מנוטרל (ברירת מחדל), נעשה שימוש במשווה ה־BCH. המשווה מבצע השוואה בין פריטים יחידים על ידי הסתכלות תחילה על המגבלות והחריגות שלהן ורק אם אלו שוות, המשווה מודד את הפתרון הנוכחי שלהם." #. wHTo3 #: Options.xhp @@ -140,7 +140,7 @@ "par_id0503200917103744\n" "help.text" msgid "If enabled, the ACR Comparator is used. It compares two individuals dependent on the current iteration and measures their goodness with knowledge about the libraries worst known solutions (in regard to their constraint violations)." -msgstr "אם פעיל (בררת מחדל), נעשה שימוש במשווה ה־ACR. המשווה מבצע השוואה בין פריטים יחידים בהתבסס על האיטרציה הנוכחית ומודד את טיבם תוך התחשבות בידע שבספריות המעיד על הפתרונות הגרועים ביותר (בהתחשב על האילוצים והחריגות שלהם)." +msgstr "אם פעיל (ברירת מחדל), נעשה שימוש במשווה ה־ACR. המשווה מבצע השוואה בין פריטים יחידים בהתבסס על האיטרציה הנוכחית ומודד את טיבם תוך התחשבות בידע שבספריות המעיד על הפתרונות הגרועים ביותר (בהתחשב על האילוצים והחריגות שלהם)." #. 5jPbx #: Options.xhp diff -Nru libreoffice-7.4.6/translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2021-07-24 00:26+0000\n" -"Last-Translator: serval2412 \n" -"Language-Team: Hebrew \n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" +"Last-Translator: Yaron Shahrabani \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565510263.000000\n" #. W5ukN @@ -454,7 +454,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Formula Object" -msgstr "" +msgstr "הוספת עצם נוסחה" #. K5x3E #: CalcCommands.xcu @@ -464,7 +464,7 @@ "Label\n" "value.text" msgid "Duplicate Sheet" -msgstr "" +msgstr "שכפול גיליון" #. Ui6br #: CalcCommands.xcu @@ -774,7 +774,7 @@ "Label\n" "value.text" msgid "E~xternal Links..." -msgstr "" +msgstr "קישורים ~חיצוניים…" #. FTLfZ #: CalcCommands.xcu @@ -1164,7 +1164,7 @@ "Label\n" "value.text" msgid "~Insert or Edit Pivot Table..." -msgstr "" +msgstr "הוספת או עריכת טבלת ~ציר…" #. vqC2u #: CalcCommands.xcu @@ -1254,7 +1254,7 @@ "Label\n" "value.text" msgid "~Go to Sheet..." -msgstr "" +msgstr "מ~עבר לגיליון…" #. 79aNB #: CalcCommands.xcu @@ -1334,7 +1334,7 @@ "Label\n" "value.text" msgid "Select Visible Rows Only" -msgstr "" +msgstr "בחירת השורות הגלויות בלבד" #. rDd3w #: CalcCommands.xcu @@ -1344,7 +1344,7 @@ "Label\n" "value.text" msgid "Select Visible Columns Only" -msgstr "" +msgstr "בחירת העמודות הגלויות בלבד" #. LEvrC #: CalcCommands.xcu @@ -1974,7 +1974,7 @@ "Label\n" "value.text" msgid "~Sampling..." -msgstr "_דגימה…" +msgstr "~דגימה…" #. GybeN #: CalcCommands.xcu @@ -2054,7 +2054,7 @@ "Label\n" "value.text" msgid "Paired ~t-test..." -msgstr "" +msgstr "מבחן t מ~זווג…" #. v9hMC #: CalcCommands.xcu @@ -2064,7 +2064,7 @@ "Label\n" "value.text" msgid "~F-test..." -msgstr "" +msgstr "מ~בחן F…" #. Xg3BV #: CalcCommands.xcu @@ -2074,7 +2074,7 @@ "Label\n" "value.text" msgid "~Z-test..." -msgstr "" +msgstr "מב~חן Z…" #. EXRQ8 #: CalcCommands.xcu @@ -2084,7 +2084,7 @@ "Label\n" "value.text" msgid "~Chi-square Test..." -msgstr "" +msgstr "בדיקת ~כי בריבוע…" #. eXA9f #: CalcCommands.xcu @@ -2104,7 +2104,7 @@ "Label\n" "value.text" msgid "Sparklines" -msgstr "" +msgstr "תרשימים זעירים" #. aTBPM #: CalcCommands.xcu @@ -2124,7 +2124,7 @@ "Label\n" "value.text" msgid "Delete Sparkline" -msgstr "" +msgstr "מחיקת תרשים זעיר" #. fFsYi #: CalcCommands.xcu @@ -2134,7 +2134,7 @@ "Label\n" "value.text" msgid "Delete Sparkline Group" -msgstr "" +msgstr "מחיקת קבוצת תרשימים זעירים" #. w6VdZ #: CalcCommands.xcu @@ -2144,7 +2144,7 @@ "Label\n" "value.text" msgid "Group Sparklines" -msgstr "" +msgstr "קיבוץ תרשימים זעירים" #. 9pmpG #: CalcCommands.xcu @@ -2154,7 +2154,7 @@ "Label\n" "value.text" msgid "Ungroup Sparklines" -msgstr "" +msgstr "פירוק תרשימים זעירים" #. MRK2s #: CalcCommands.xcu @@ -2164,7 +2164,7 @@ "Label\n" "value.text" msgid "Edit Sparkline..." -msgstr "" +msgstr "עריכת תרשים זעיר…" #. cA9mm #: CalcCommands.xcu @@ -2174,7 +2174,7 @@ "Label\n" "value.text" msgid "Edit Sparkline Group..." -msgstr "" +msgstr "עריכת קבוצת תרשימים זעירים…" #. dTXDB #: CalcCommands.xcu @@ -2394,7 +2394,7 @@ "Label\n" "value.text" msgid "Value ~Highlighting" -msgstr "הבלטת ערכים" +msgstr "ה~דגשת ערכים" #. XMuyF #: CalcCommands.xcu @@ -2404,7 +2404,7 @@ "Label\n" "value.text" msgid "Show Hidden Row/Column Indicator" -msgstr "" +msgstr "הצגת מחוון שורות/עמודות מוסתרות" #. nZGvm #: CalcCommands.xcu @@ -2414,7 +2414,7 @@ "ContextLabel\n" "value.text" msgid "Hidden Row/Column Indicator" -msgstr "" +msgstr "מחוון שורות/עמודות מוסתרות" #. PMfQA #: CalcCommands.xcu @@ -2424,7 +2424,7 @@ "TooltipLabel\n" "value.text" msgid "Show the indicator for hidden rows and columns" -msgstr "" +msgstr "הצגת המחוון לשורות ועמודות מוסתרות" #. 2TbE2 #: CalcCommands.xcu @@ -3254,7 +3254,7 @@ "Label\n" "value.text" msgid "Unmerge Cells" -msgstr "" +msgstr "פיצול תאים" #. qJGdH #: CalcCommands.xcu @@ -3274,7 +3274,7 @@ "TooltipLabel\n" "value.text" msgid "Merge and center or unmerge cells depending on the current toggle state" -msgstr "" +msgstr "מיזוג ומירכוז או פיצול תאים בהתאם למצב הנוכחי של הבורר" #. VZsps #: CalcCommands.xcu @@ -3294,7 +3294,7 @@ "ContextLabel\n" "value.text" msgid "~Page Style..." -msgstr "" +msgstr "~סגנון עמוד…" #. C83UC #: CalcCommands.xcu @@ -3324,7 +3324,7 @@ "PopupLabel\n" "value.text" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. ZWWbV #: CalcCommands.xcu @@ -4464,7 +4464,7 @@ "Label\n" "value.text" msgid "M~erge and Unmerge Cells" -msgstr "" +msgstr "מיזוג ו~פיצול תאים" #. G3E3Q #: CalcCommands.xcu @@ -4644,7 +4644,7 @@ "Label\n" "value.text" msgid "Paste Transposed" -msgstr "" +msgstr "הדבקה משוחלפת" #. EbDtX #: CalcCommands.xcu @@ -4654,7 +4654,7 @@ "PopupLabel\n" "value.text" msgid "Trans~pose" -msgstr "" +msgstr "ש~חלוף" #. JG27R #: CalcCommands.xcu @@ -4664,7 +4664,7 @@ "Label\n" "value.text" msgid "Paste As Link" -msgstr "" +msgstr "הדבקה כקישור" #. f7yoE #: CalcCommands.xcu @@ -4674,7 +4674,7 @@ "PopupLabel\n" "value.text" msgid "As ~Link" -msgstr "" +msgstr "כ~קישור" #. 4DJpG #: CalcCommands.xcu @@ -4734,7 +4734,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. Ph5DA #: CalcCommands.xcu @@ -4744,7 +4744,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. uh4sC #: CalcCommands.xcu @@ -4754,7 +4754,7 @@ "TooltipLabel\n" "value.text" msgid "Default Cell Style" -msgstr "סגנון תא כבררת מחדל" +msgstr "סגנון תא כברירת מחדל" #. 9tAAv #: CalcCommands.xcu @@ -6744,7 +6744,7 @@ "Label\n" "value.text" msgid "Default Colors for Data Series" -msgstr "צבעי בררת המחדל לסדרת הנתונים" +msgstr "צבעי ברירת המחדל לסדרת הנתונים" #. rgB6S #: ChartCommands.xcu @@ -8074,7 +8074,7 @@ "Label\n" "value.text" msgid "Rename Page..." -msgstr "" +msgstr "שינוי שם עמוד…" #. gCyCR #: DrawImpressCommands.xcu @@ -8084,7 +8084,7 @@ "Label\n" "value.text" msgid "Rename Slide..." -msgstr "" +msgstr "שינוי שם שקופית…" #. EoR9S #: DrawImpressCommands.xcu @@ -8144,7 +8144,7 @@ "Label\n" "value.text" msgid "~Rehearse Timings" -msgstr "תרגול תזמונים" +msgstr "תרגול ת~זמונים" #. vUCFf #: DrawImpressCommands.xcu @@ -8184,7 +8184,7 @@ "Label\n" "value.text" msgid "~Hide Slide" -msgstr "הסתרת שקופית" +msgstr "ה~סתרת שקופית" #. AVpQn #: DrawImpressCommands.xcu @@ -8194,7 +8194,7 @@ "Label\n" "value.text" msgid "Te~xt Attributes..." -msgstr "" +msgstr "מאפייני ~טקסט…" #. GR6Sf #: DrawImpressCommands.xcu @@ -8498,7 +8498,6 @@ #. 5wF48 #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:HelplinesVisible\n" @@ -8509,7 +8508,6 @@ #. RC4j5 #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:HelplinesFront\n" @@ -8540,7 +8538,6 @@ #. btZfh #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:SlideChangeWindow\n" @@ -8557,7 +8554,7 @@ "Label\n" "value.text" msgid "Master Slides" -msgstr "" +msgstr "שקופיות הורה" #. yFsEC #: DrawImpressCommands.xcu @@ -8611,7 +8608,6 @@ #. 5Ndvi #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:DuplicateSlide\n" @@ -8658,7 +8654,7 @@ "Label\n" "value.text" msgid "~Master Slide" -msgstr "" +msgstr "שקופית הו~רה" #. ffjrk #: DrawImpressCommands.xcu @@ -8668,7 +8664,7 @@ "Label\n" "value.text" msgid "M~aster Notes" -msgstr "" +msgstr "ה~ערות הורה" #. 5jAWW #: DrawImpressCommands.xcu @@ -8738,7 +8734,7 @@ "Label\n" "value.text" msgid "~Slide Number" -msgstr "" +msgstr "מס׳ ~שקופית" #. iE2Ro #: DrawImpressCommands.xcu @@ -8958,7 +8954,7 @@ "Label\n" "value.text" msgid "Format Page" -msgstr "" +msgstr "עיצוב עמוד" #. FbDxM #: DrawImpressCommands.xcu @@ -8968,7 +8964,7 @@ "ContextLabel\n" "value.text" msgid "Page Properties..." -msgstr "" +msgstr "מאפייני עמוד…" #. W6trc #: DrawImpressCommands.xcu @@ -8978,7 +8974,7 @@ "Label\n" "value.text" msgid "Format Slide" -msgstr "" +msgstr "עיצוב שקופית" #. GNR3n #: DrawImpressCommands.xcu @@ -8988,7 +8984,7 @@ "ContextLabel\n" "value.text" msgid "Slide Properties..." -msgstr "" +msgstr "מאפייני שקופית…" #. bhvTx #: DrawImpressCommands.xcu @@ -9018,7 +9014,7 @@ "Label\n" "value.text" msgid "E~xternal Links..." -msgstr "" +msgstr "קישורים ~חיצוניים…" #. pQhVJ #: DrawImpressCommands.xcu @@ -9082,25 +9078,23 @@ #. oGDd5 #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:InsertPage\n" "Label\n" "value.text" msgid "New Page" -msgstr "העמוד הבא" +msgstr "עמוד חדש" #. TD256 #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:InsertSlide\n" "Label\n" "value.text" msgid "~New Slide" -msgstr "שקופית חדשה" +msgstr "~שקופית חדשה" #. uQGE2 #: DrawImpressCommands.xcu @@ -9254,14 +9248,13 @@ #. oVmXK #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:CapturePoint\n" "Label\n" "value.text" msgid "~Snap Guide..." -msgstr "~קווי הצמדה" +msgstr "~קו הצמדה…" #. USrbB #: DrawImpressCommands.xcu @@ -9285,14 +9278,13 @@ #. M9WZc #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:InsertLayer\n" "Label\n" "value.text" msgid "Insert Layer" -msgstr "הכנסת תוויות" +msgstr "הוספת שכבה" #. CKzJ5 #: DrawImpressCommands.xcu @@ -9316,14 +9308,13 @@ #. 7GzQS #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:ModifyPage\n" "Label\n" "value.text" msgid "Slide ~Layout" -msgstr "מתווה שקופית...‏" +msgstr "~פריסת שקופית" #. XAoDe #: DrawImpressCommands.xcu @@ -9473,7 +9464,7 @@ "Label\n" "value.text" msgid "Change Slide Master..." -msgstr "" +msgstr "החלפת שקף הורה…" #. 7AUwW #: DrawImpressCommands.xcu @@ -9483,7 +9474,7 @@ "Label\n" "value.text" msgid "Master Page..." -msgstr "" +msgstr "עמוד הורה…" #. RxHFo #: DrawImpressCommands.xcu @@ -9497,25 +9488,23 @@ #. BBXTY #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:NotesMode\n" "Label\n" "value.text" msgid "Not~es" -msgstr "הערות" +msgstr "ה~ערות" #. ETuM4 #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:DisplayMode\n" "Label\n" "value.text" msgid "Display Views" -msgstr "הצגת שדה" +msgstr "הצגת תצוגות" #. fud7F #: DrawImpressCommands.xcu @@ -9615,7 +9604,7 @@ "Label\n" "value.text" msgid "Scale" -msgstr "" +msgstr "קנה מידה" #. sdUMB #: DrawImpressCommands.xcu @@ -9625,7 +9614,7 @@ "TooltipLabel\n" "value.text" msgid "Scaling at the current document" -msgstr "" +msgstr "שינוי קנה המידה של המסמך הנוכחי" #. hTkgv #: DrawImpressCommands.xcu @@ -9875,7 +9864,7 @@ "Label\n" "value.text" msgid "Redacted Export" -msgstr "" +msgstr "ייצוא ערוך" #. kBC43 #: DrawImpressCommands.xcu @@ -10119,7 +10108,6 @@ #. tSqLW #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:HelplinesUse\n" @@ -10246,7 +10234,7 @@ "Label\n" "value.text" msgid "Master Background" -msgstr "" +msgstr "רקע הורה" #. EP8Aw #: DrawImpressCommands.xcu @@ -10256,18 +10244,17 @@ "Label\n" "value.text" msgid "Master Objects" -msgstr "" +msgstr "עצמי הורה" #. U4e4r #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:EditStyle\n" "Label\n" "value.text" msgid "E~dit Style..." -msgstr "~עריכת סגנון...‏" +msgstr "~עריכת סגנון…" #. tRG4u #: DrawImpressCommands.xcu @@ -10491,7 +10478,6 @@ #. cv8x3 #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Popups..uno:SnapLinesMenu\n" @@ -10579,7 +10565,7 @@ "Label\n" "value.text" msgid "S~lide Number..." -msgstr "" +msgstr "מספר ש~קופית…" #. imXpA #: DrawImpressCommands.xcu @@ -10709,7 +10695,7 @@ "Label\n" "value.text" msgid "Distribute Rows Evenly" -msgstr "" +msgstr "פיזור שורות באופן שווה" #. tjGQ2 #: DrawImpressCommands.xcu @@ -10779,7 +10765,7 @@ "Label\n" "value.text" msgid "Delete Table" -msgstr "" +msgstr "מחיקת טבלה" #. Lbfd9 #: DrawImpressCommands.xcu @@ -10949,7 +10935,7 @@ "Label\n" "value.text" msgid "Minimize ~Presentation..." -msgstr "" +msgstr "מ~זעור מצגת…" #. mYRFz #: DrawImpressCommands.xcu @@ -11520,7 +11506,7 @@ "Label\n" "value.text" msgid "Export Redacted PDF (Black)" -msgstr "" +msgstr "ייצוא PDF מצומצם (שחור)" #. r924M #: DrawImpressCommands.xcu @@ -11530,7 +11516,7 @@ "Label\n" "value.text" msgid "Export Redacted PDF (White)" -msgstr "" +msgstr "ייצוא PDF מצומצם (לבן)" #. NErRC #: DrawImpressCommands.xcu @@ -11540,7 +11526,7 @@ "Label\n" "value.text" msgid "Export Preview PDF" -msgstr "" +msgstr "ייצוא PDF לתצוגה מקדימה" #. sBp7W #: DrawImpressCommands.xcu @@ -11620,7 +11606,7 @@ "UIName\n" "value.text" msgid "Connector/Freeform Line" -msgstr "" +msgstr "קו מחבר/חופשי" #. 5F6Qc #: DrawWindowState.xcu @@ -11760,7 +11746,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "עצם‪OLE ‬‏" +msgstr "עצם OLE" #. 3vhCE #: DrawWindowState.xcu @@ -11774,14 +11760,13 @@ #. eL8gU #: DrawWindowState.xcu -#, fuzzy msgctxt "" "DrawWindowState.xcu\n" "..DrawWindowState.UIElements.States.private:resource/popupmenu/pagepane\n" "UIName\n" "value.text" msgid "Page Pane" -msgstr "חלונית עמודים" +msgstr "סרגל עמודים" #. S4Pqd #: DrawWindowState.xcu @@ -11791,7 +11776,7 @@ "UIName\n" "value.text" msgid "Page Pane (no selection)" -msgstr "חלונית עמודים (ללא בחירה)" +msgstr "סרגל עמודים (ללא בחירה)" #. 5ascH #: DrawWindowState.xcu @@ -11801,7 +11786,7 @@ "UIName\n" "value.text" msgid "Page Master Pane" -msgstr "" +msgstr "סרגל עמודי הורה" #. hMUvt #: DrawWindowState.xcu @@ -11811,7 +11796,7 @@ "UIName\n" "value.text" msgid "Page Master Pane (no selection)" -msgstr "" +msgstr "סרגל עמודי הורה (ללא בחירה)" #. SvG2a #: DrawWindowState.xcu @@ -11971,7 +11956,7 @@ "UIName\n" "value.text" msgid "Redacted Export" -msgstr "" +msgstr "ייצוא עם שינויים" #. GvLVw #: DrawWindowState.xcu @@ -11981,7 +11966,7 @@ "UIName\n" "value.text" msgid "Legacy Circles and Ovals" -msgstr "" +msgstr "עיגולים ואליפסות מיושנים" #. NyiYB #: DrawWindowState.xcu @@ -12111,7 +12096,7 @@ "UIName\n" "value.text" msgid "Legacy Rectangles" -msgstr "" +msgstr "מרובעים ישנים" #. ZcCn9 #: DrawWindowState.xcu @@ -12271,7 +12256,7 @@ "UIName\n" "value.text" msgid "Master View" -msgstr "תצוגת מאסטר" +msgstr "תצוגת הורה" #. Bcmob #: DrawWindowState.xcu @@ -12301,7 +12286,7 @@ "UIName\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "פיזור הבחירה" #. qQQAi #: Effects.xcu @@ -12371,7 +12356,7 @@ "Label\n" "value.text" msgid "Oval Vertical" -msgstr "" +msgstr "אליפסה אנכית" #. ASENz #: Effects.xcu @@ -12641,7 +12626,7 @@ "Label\n" "value.text" msgid "Pinwheel" -msgstr "פרופלור" +msgstr "מדחף" #. hDEjw #: Effects.xcu @@ -12801,7 +12786,7 @@ "Label\n" "value.text" msgid "Glide" -msgstr "לדאות" +msgstr "דאייה" #. Cchas #: Effects.xcu @@ -13621,7 +13606,7 @@ "Label\n" "value.text" msgid "Spiral Out" -msgstr "סילסול החוצה" +msgstr "סלסול החוצה" #. kyPGZ #: Effects.xcu @@ -13771,7 +13756,7 @@ "Label\n" "value.text" msgid "Regular Triangle" -msgstr "" +msgstr "משולש רגיל" #. BUJ28 #: Effects.xcu @@ -14341,7 +14326,7 @@ "Label\n" "value.text" msgid "Fall and fade out" -msgstr "" +msgstr "נפילה ועמעום החוצה" #. cCMGr #: Effects.xcu @@ -14351,7 +14336,7 @@ "Label\n" "value.text" msgid "Fall simulated" -msgstr "" +msgstr "נפילה מדומה" #. BqK9h #: Effects.xcu @@ -14361,7 +14346,7 @@ "Label\n" "value.text" msgid "Shoot right and return" -msgstr "" +msgstr "ירייה ימינה וחזרה" #. DHrg4 #: Effects.xcu @@ -14371,7 +14356,7 @@ "Label\n" "value.text" msgid "Shoot left and return" -msgstr "" +msgstr "ירייה שמאלה וחזרה" #. MZBtm #: Effects.xcu @@ -14991,7 +14976,7 @@ "Label\n" "value.text" msgid "Venetian" -msgstr "" +msgstr "ונציאני" #. 3CeRi #: Effects.xcu @@ -15001,7 +14986,7 @@ "Label\n" "value.text" msgid "3D Venetian" -msgstr "" +msgstr "ונציאני תלת־ממדי" #. ug9XD #: Effects.xcu @@ -15051,7 +15036,7 @@ "Label\n" "value.text" msgid "Uncover" -msgstr "" +msgstr "חשיפה" #. 6y2gN #: Effects.xcu @@ -15145,7 +15130,6 @@ #. Exqsw #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.diagonal-squares\n" @@ -15277,7 +15261,6 @@ #. WKvMA #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.rochade\n" @@ -15288,14 +15271,13 @@ #. t4ZfE #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionSets.static\n" "Label\n" "value.text" msgid "Static" -msgstr "סטטי" +msgstr "דומם" #. ioEQJ #: Effects.xcu @@ -15339,7 +15321,6 @@ #. CGDxF #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.plain\n" @@ -15350,25 +15331,23 @@ #. CN4ng #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.smoothly\n" "Label\n" "value.text" msgid "Smoothly" -msgstr "החלקה" +msgstr "חלקלקות" #. 6BBXz #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.through-black\n" "Label\n" "value.text" msgid "Through Black" -msgstr "חיתוך שחור לעמק" +msgstr "מבעד לשחור" #. TKERq #: Effects.xcu @@ -15378,11 +15357,10 @@ "Label\n" "value.text" msgid "Through White" -msgstr "" +msgstr "מבעד ללבן" #. mFSnT #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.left-right\n" @@ -15403,7 +15381,6 @@ #. CzC7N #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.top-bottom\n" @@ -15564,14 +15541,13 @@ #. jnEQE #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.oval-horizontal\n" "Label\n" "value.text" msgid "Oval Horizontal" -msgstr "אלכסוני - אופקי" +msgstr "אליפטי אופקי" #. nMVgF #: Effects.xcu @@ -15581,7 +15557,7 @@ "Label\n" "value.text" msgid "Oval Vertical" -msgstr "" +msgstr "אליפטי אנכי" #. GGsX7 #: Effects.xcu @@ -15605,7 +15581,6 @@ #. L8kxg #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal-in\n" @@ -15616,7 +15591,6 @@ #. Bpr6S #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.horizontal-out\n" @@ -15637,7 +15611,6 @@ #. yot78 #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.vertical-out\n" @@ -15654,7 +15627,7 @@ "Label\n" "value.text" msgid "Clockwise 1 Spoke" -msgstr "" +msgstr "צלע 1 עם כיוון השעון" #. DBeid #: Effects.xcu @@ -15664,7 +15637,7 @@ "Label\n" "value.text" msgid "Clockwise 2 Spokes" -msgstr "" +msgstr "2 צלעות עם כיוון השעון" #. tqfwa #: Effects.xcu @@ -15674,7 +15647,7 @@ "Label\n" "value.text" msgid "Clockwise 3 Spokes" -msgstr "" +msgstr "3 צלעות עם כיוון השעון" #. J6dQT #: Effects.xcu @@ -15684,7 +15657,7 @@ "Label\n" "value.text" msgid "Clockwise 4 Spokes" -msgstr "" +msgstr "4 צלעות עם כיוון השעון" #. itXUE #: Effects.xcu @@ -15694,7 +15667,7 @@ "Label\n" "value.text" msgid "Clockwise 8 Spokes" -msgstr "" +msgstr "8 צלעות עם כיוון השעון" #. 6UJix #: Effects.xcu @@ -15704,7 +15677,7 @@ "Label\n" "value.text" msgid "Counterclockwise 1 Spoke" -msgstr "" +msgstr "צלע 1 נגד כיוון השעון" #. eS9ZY #: Effects.xcu @@ -15714,7 +15687,7 @@ "Label\n" "value.text" msgid "Counterclockwise 2 Spokes" -msgstr "" +msgstr "2 צלעות נגד כיוון השעון" #. vBA4C #: Effects.xcu @@ -15724,7 +15697,7 @@ "Label\n" "value.text" msgid "Counterclockwise 3 Spokes" -msgstr "" +msgstr "3 צלעות נגד כיוון השעון" #. EwATi #: Effects.xcu @@ -15734,7 +15707,7 @@ "Label\n" "value.text" msgid "Counterclockwise 4 Spokes" -msgstr "" +msgstr "4 צלעות נגד כיוון השעון" #. FRtBZ #: Effects.xcu @@ -15744,18 +15717,17 @@ "Label\n" "value.text" msgid "Counterclockwise 8 Spokes" -msgstr "" +msgstr "8 צלעות נגד כיוון השעון" #. vqCne #: Effects.xcu -#, fuzzy msgctxt "" "Effects.xcu\n" "..Effects.UserInterface.TransitionVariants.inside\n" "Label\n" "value.text" msgid "Inside" -msgstr "בפנים" +msgstr "פנימה" #. gpGW7 #: Effects.xcu @@ -15765,7 +15737,7 @@ "Label\n" "value.text" msgid "Outside" -msgstr "בחוץ" +msgstr "החוצה" #. BCERK #: Effects.xcu @@ -16189,7 +16161,6 @@ #. GGzmp #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:Polygon\n" @@ -16230,14 +16201,13 @@ #. hSijp #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:InsertFormMenu\n" "Label\n" "value.text" msgid "Fo~rm Control" -msgstr "פקדי טופס" +msgstr "פקדי ~טופס" #. zVUag #: GenericCommands.xcu @@ -16481,7 +16451,6 @@ #. ma5HR #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:FlowChartShapes\n" @@ -16848,7 +16817,7 @@ "Label\n" "value.text" msgid "Prohibited" -msgstr "" +msgstr "אסור" #. yrQG7 #: GenericCommands.xcu @@ -17632,7 +17601,6 @@ #. P5F8H #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:StarShapes.concave-star6\n" @@ -17769,7 +17737,7 @@ "Label\n" "value.text" msgid "Fade Right" -msgstr "עימום ימינה" +msgstr "עמעום ימינה" #. cVN9G #: GenericCommands.xcu @@ -17779,7 +17747,7 @@ "Label\n" "value.text" msgid "Fade Left" -msgstr "עימום שמאלה" +msgstr "עמעום שמאלה" #. GUV9N #: GenericCommands.xcu @@ -17789,7 +17757,7 @@ "Label\n" "value.text" msgid "Fade Up" -msgstr "עימום כלפי מעלה" +msgstr "עמעום למעלה" #. GX9RW #: GenericCommands.xcu @@ -17799,7 +17767,7 @@ "Label\n" "value.text" msgid "Fade Down" -msgstr "עימום כלפי מטה" +msgstr "עמעום למטה" #. GrAdY #: GenericCommands.xcu @@ -17809,7 +17777,7 @@ "Label\n" "value.text" msgid "Slant Up" -msgstr "נטיה לפי מעלה" +msgstr "נטייה למעלה" #. uGLfh #: GenericCommands.xcu @@ -17819,7 +17787,7 @@ "Label\n" "value.text" msgid "Slant Down" -msgstr "נטיה כלפי מטה" +msgstr "נטייה למטה" #. mQF7m #: GenericCommands.xcu @@ -17829,7 +17797,7 @@ "Label\n" "value.text" msgid "Fade Up and Right" -msgstr "עימום כלפי מעלה וימין" +msgstr "עמעום למעלה וימינה" #. nckfA #: GenericCommands.xcu @@ -17839,7 +17807,7 @@ "Label\n" "value.text" msgid "Fade Up and Left" -msgstr "עימום כלפי מעלה ושמאל" +msgstr "עמעום למעלה ושמאלה" #. nYCbv #: GenericCommands.xcu @@ -17849,7 +17817,7 @@ "Label\n" "value.text" msgid "Chevron Up" -msgstr "שברון לפי מעלה" +msgstr "חצים למעלה" #. wcDFf #: GenericCommands.xcu @@ -17859,7 +17827,7 @@ "Label\n" "value.text" msgid "Chevron Down" -msgstr "שברון כלפי מטה" +msgstr "חצים למטה" #. jCyuQ #: GenericCommands.xcu @@ -17959,7 +17927,7 @@ "Label\n" "value.text" msgid "Arch Right (Pour)" -msgstr "קשת ימינית (שופכת)‏" +msgstr "קשת ימנית (שופכת)‏" #. jtHqA #: GenericCommands.xcu @@ -18019,7 +17987,7 @@ "Label\n" "value.text" msgid "~Zoom" -msgstr "מ~רחק מתצוגה" +msgstr "ת~קריב" #. RZ28W #: GenericCommands.xcu @@ -18029,7 +17997,7 @@ "Label\n" "value.text" msgid "~Zoom..." -msgstr "~מרחק מתצוגה..." +msgstr "ת~קריב…" #. xTbFE #: GenericCommands.xcu @@ -18039,7 +18007,7 @@ "Label\n" "value.text" msgid "Spin Button" -msgstr "כפתור סבסוב" +msgstr "כפתור טווח" #. JWEfK #: GenericCommands.xcu @@ -18059,7 +18027,7 @@ "Label\n" "value.text" msgid "Replace with Spin Button" -msgstr "החלפה בכפתור סיבסוב" +msgstr "החלפה בכפתורי טווח" #. X8V6t #: GenericCommands.xcu @@ -18149,7 +18117,7 @@ "Label\n" "value.text" msgid "Select Macro..." -msgstr "" +msgstr "בחירת תסריט מאקרו…" #. EEBZY #: GenericCommands.xcu @@ -18179,7 +18147,7 @@ "Label\n" "value.text" msgid "Increase" -msgstr "" +msgstr "הגדלה" #. DC2Cx #: GenericCommands.xcu @@ -18239,11 +18207,10 @@ "Label\n" "value.text" msgid "Select Module..." -msgstr "" +msgstr "בחירת מודול…" #. R7qZd #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ModuleDialog\n" @@ -18270,7 +18237,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Shadow" -msgstr "" +msgstr "החלפת מצב הצללה" #. c9PFU #: GenericCommands.xcu @@ -18290,7 +18257,7 @@ "Label\n" "value.text" msgid "Outline Font Effect" -msgstr "" +msgstr "אפקט גופן מתאר" #. ND6wH #: GenericCommands.xcu @@ -18300,7 +18267,7 @@ "TooltipLabel\n" "value.text" msgid "Apply outline attribute to font. Not all fonts implement this attribute." -msgstr "" +msgstr "החלת מאפיין מתאר לגופן. לא כל הגופנים מממשים את המאפיין הזה." #. CjLxE #: GenericCommands.xcu @@ -18410,7 +18377,7 @@ "Label\n" "value.text" msgid "Find Values" -msgstr "" +msgstr "איתור ערכים" #. 9rvmc #: GenericCommands.xcu @@ -18420,7 +18387,7 @@ "TooltipLabel\n" "value.text" msgid "Find text in values, to search in formulas use the dialog" -msgstr "" +msgstr "איתור טקסט בערכים, כדי לחפש בנוסחאות יש להשתמש בחלונית" #. NCRsb #: GenericCommands.xcu @@ -18460,7 +18427,7 @@ "Label\n" "value.text" msgid "Search Formatted Display String" -msgstr "" +msgstr "חיפוש במחרוזת תצוגה מעוצבת" #. hoECC #: GenericCommands.xcu @@ -18504,14 +18471,13 @@ #. 3BAcD #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ExtendedHelp\n" "Label\n" "value.text" msgid "~What's This?" -msgstr "מה זה?‏" +msgstr "מה ~זה?‏" #. TBFsT #: GenericCommands.xcu @@ -18651,7 +18617,7 @@ "Label\n" "value.text" msgid "Send Default Fax" -msgstr "שליחת פקס בררת מחדל" +msgstr "שליחת פקס ברירת מחדל" #. AAx8f #: GenericCommands.xcu @@ -18691,7 +18657,7 @@ "Label\n" "value.text" msgid "Line Spacing: 1.15" -msgstr "" +msgstr "ריווח שורות: 1.15" #. q8wJt #: GenericCommands.xcu @@ -18975,18 +18941,16 @@ #. gCkCF #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:Line\n" "TooltipLabel\n" "value.text" msgid "Insert Line" -msgstr "הכנסת תוויות" +msgstr "הוספת שורה" #. vfiAS #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ArrowsToolbox\n" @@ -19373,7 +19337,7 @@ "TooltipLabel\n" "value.text" msgid "Open Templates Manager" -msgstr "" +msgstr "פתיחת מנהל תבניות" #. FFpcG #: GenericCommands.xcu @@ -19488,37 +19452,34 @@ #. This is the action to create a private working copy of the document on a server #. 3UDpt #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:CheckOut\n" "Label\n" "value.text" msgid "Check Out" -msgstr "רישום יוצא" +msgstr "משיכה" #. gKxBN #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:CancelCheckOut\n" "Label\n" "value.text" msgid "Cancel Checkout..." -msgstr "ביטול רישום יוצא" +msgstr "ביטול משיכה…" #. This is the action to merge a private working copy of the document on a server. It shows a dialog to input some information on the new version to create on the server. #. aQBxJ #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:CheckIn\n" "Label\n" "value.text" msgid "Check In..." -msgstr "רישום נכנס" +msgstr "דחיפה…" #. C6h8G #: GenericCommands.xcu @@ -19848,7 +19809,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Chart" -msgstr "הכנסת תרשים" +msgstr "הוספת תרשים" #. Za7zT #: GenericCommands.xcu @@ -19858,7 +19819,7 @@ "Label\n" "value.text" msgid "Unordered List" -msgstr "" +msgstr "רשימה בלי סדר" #. XoWcu #: GenericCommands.xcu @@ -19868,7 +19829,7 @@ "ContextLabel\n" "value.text" msgid "~Unordered List" -msgstr "" +msgstr "רשימה ~ללא סדר" #. d6G5u #: GenericCommands.xcu @@ -19878,7 +19839,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Unordered List" -msgstr "" +msgstr "החלפת מצב רשימה ללא סדר" #. DFY6X #: GenericCommands.xcu @@ -19888,7 +19849,7 @@ "Label\n" "value.text" msgid "Ordered List" -msgstr "" +msgstr "רשימה מסודרת" #. yMEgE #: GenericCommands.xcu @@ -19898,7 +19859,7 @@ "ContextLabel\n" "value.text" msgid "~Ordered List" -msgstr "" +msgstr "רשימה מ~סודרת" #. oJFRD #: GenericCommands.xcu @@ -19908,7 +19869,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Ordered List" -msgstr "" +msgstr "החלפת מצב רשימה מסודרת" #. jZGY5 #: GenericCommands.xcu @@ -19918,7 +19879,7 @@ "Label\n" "value.text" msgid "Outline Format" -msgstr "" +msgstr "עיצוב מתאר" #. TSDD9 #: GenericCommands.xcu @@ -19928,7 +19889,7 @@ "ContextLabel\n" "value.text" msgid "~Outline Format" -msgstr "" +msgstr "~עיצוב מתאר" #. RMCDt #: GenericCommands.xcu @@ -19938,7 +19899,7 @@ "TooltipLabel\n" "value.text" msgid "Select Outline Format" -msgstr "" +msgstr "בחירת עיצוב מתאר" #. uKMCr #: GenericCommands.xcu @@ -19948,7 +19909,7 @@ "Label\n" "value.text" msgid "A~rea..." -msgstr "שטח...‏" +msgstr "~שטח…" #. H7kng #: GenericCommands.xcu @@ -19958,7 +19919,7 @@ "Label\n" "value.text" msgid "L~ine..." -msgstr "קו...‏" +msgstr "~קו…" #. cAVAA #: GenericCommands.xcu @@ -19968,7 +19929,7 @@ "Label\n" "value.text" msgid "Dimen~sions..." -msgstr "" +msgstr "ממ~דים…" #. TgPVp #: GenericCommands.xcu @@ -19988,7 +19949,7 @@ "Label\n" "value.text" msgid "Ignore" -msgstr "התעלם" +msgstr "התעלמות" #. qgNxD #: GenericCommands.xcu @@ -19998,7 +19959,7 @@ "Label\n" "value.text" msgid "IgnoreAll" -msgstr "התעלם מהכל" +msgstr "התעלמות מהכול" #. Z8CTY #: GenericCommands.xcu @@ -20008,7 +19969,7 @@ "Label\n" "value.text" msgid "Apply Suggestion" -msgstr "החל הצעה" +msgstr "החלת הצעה" #. ucq4M #: GenericCommands.xcu @@ -20078,7 +20039,7 @@ "Label\n" "value.text" msgid "Cycle Case" -msgstr "" +msgstr "החלפת רישיות חזרתית" #. pvCBX #: GenericCommands.xcu @@ -20088,7 +20049,7 @@ "TooltipLabel\n" "value.text" msgid "Cycle Case (Title Case, Sentence case, UPPERCASE, lowercase)" -msgstr "" +msgstr "החלפת רישיות חזרתית (Title Case, Sentence case, UPPERCASE, lowercase)" #. JUhRq #: GenericCommands.xcu @@ -20098,7 +20059,7 @@ "Label\n" "value.text" msgid "H~alf-width" -msgstr "מחצית הרוחב" +msgstr "מ~חצית הרוחב" #. JKFBx #: GenericCommands.xcu @@ -20108,7 +20069,7 @@ "Label\n" "value.text" msgid "Text from File..." -msgstr "טקסט מקובץ..." +msgstr "טקסט מקובץ…" #. YGBc4 #: GenericCommands.xcu @@ -20168,7 +20129,7 @@ "Label\n" "value.text" msgid "~Hiragana" -msgstr "כתב יפני הירגאנה" +msgstr "כתב יפני ~היראגאנה" #. CbRAN #: GenericCommands.xcu @@ -20198,7 +20159,7 @@ "Label\n" "value.text" msgid "~Katakana" -msgstr "כתב יפני קטאקנה" +msgstr "כתב יפני ~קאטאקאנה" #. uTkGG #: GenericCommands.xcu @@ -20208,7 +20169,7 @@ "Label\n" "value.text" msgid "Propert~ies..." -msgstr "מאפיינים...‏" +msgstr "מאפיינים…" #. jKBdE #: GenericCommands.xcu @@ -20228,7 +20189,7 @@ "Label\n" "value.text" msgid "Move Up" -msgstr "" +msgstr "העלאה למעלה" #. J83AS #: GenericCommands.xcu @@ -20238,7 +20199,7 @@ "TooltipLabel\n" "value.text" msgid "Move selected paragraphs up one paragraph" -msgstr "" +msgstr "העלאת הפסקאות הנבחרות למעלה בפסקה אחת" #. GvBYt #: GenericCommands.xcu @@ -20248,7 +20209,7 @@ "Label\n" "value.text" msgid "~New" -msgstr "חדש" +msgstr "~חדש" #. E8Ykn #: GenericCommands.xcu @@ -20258,7 +20219,7 @@ "Label\n" "value.text" msgid "Move Down" -msgstr "" +msgstr "הורדה למטה" #. ZEVXU #: GenericCommands.xcu @@ -20268,7 +20229,7 @@ "TooltipLabel\n" "value.text" msgid "Move selected paragraphs down one paragraph" -msgstr "" +msgstr "הורדת הפסקאות הנבחרות למטה בפסקה אחת" #. KQLPA #: GenericCommands.xcu @@ -20298,7 +20259,7 @@ "TooltipLabel\n" "value.text" msgid "Promote outline level of selected list paragraphs" -msgstr "" +msgstr "קידום רמות המתאר של פסקאות הרשימה הנבחרות" #. 3WakF #: GenericCommands.xcu @@ -20348,7 +20309,7 @@ "Label\n" "value.text" msgid "Demote" -msgstr "הורדה בדרגה" +msgstr "הורדת רמה" #. ZXHAs #: GenericCommands.xcu @@ -20358,18 +20319,17 @@ "TooltipLabel\n" "value.text" msgid "Demote outline level of selected list paragraphs" -msgstr "" +msgstr "הורדת רמת המתאר של פסקאות הרשימה הנבחרות" #. BoAR5 #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:OutlineFormat\n" "Label\n" "value.text" msgid "Show Formatting" -msgstr "עיצוב העמוד" +msgstr "הצגת עיצוב" #. jgLRo #: GenericCommands.xcu @@ -20403,14 +20363,13 @@ #. zJADG #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "TooltipLabel\n" "value.text" msgid "Toggle Edit Mode" -msgstr "הפעל/בטל מצב עריכה" +msgstr "החלפת מצב עריכה" #. vFVep #: GenericCommands.xcu @@ -20430,7 +20389,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Read Only Mode" -msgstr "הפעל/בטל מצב קריאה בלבד" +msgstr "החלפת מצב קריאה בלבד" #. BuuAR #: GenericCommands.xcu @@ -20440,7 +20399,7 @@ "Label\n" "value.text" msgid "Image Control" -msgstr "בקרת תמונה" +msgstr "פקד תמונה" #. EDfVz #: GenericCommands.xcu @@ -20450,18 +20409,17 @@ "Label\n" "value.text" msgid "~Web View" -msgstr "~תצוגת אינטרנט" +msgstr "~תצוגת אתר" #. esbH8 #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:BrowseView\n" "ContextLabel\n" "value.text" msgid "~Web" -msgstr "~דף אינטרנט" +msgstr "~דף אתר" #. EGGJz #: GenericCommands.xcu @@ -20551,7 +20509,7 @@ "Label\n" "value.text" msgid "Styles Preview" -msgstr "" +msgstr "תצוגה מקדימה של סגנונות" #. Zt2GN #: GenericCommands.xcu @@ -20601,7 +20559,7 @@ "ContextLabel\n" "value.text" msgid "~New Style from Selection" -msgstr "" +msgstr "סגנון חדש מ~בחירה" #. kk8gA #: GenericCommands.xcu @@ -20641,7 +20599,7 @@ "ContextLabel\n" "value.text" msgid "~Update Selected Style" -msgstr "" +msgstr "~עדכון הסגנון הנבחר" #. sgMoW #: GenericCommands.xcu @@ -20751,7 +20709,7 @@ "Label\n" "value.text" msgid "Tree Control" -msgstr "פקד עצי" +msgstr "פקד עץ" #. ncarC #: GenericCommands.xcu @@ -20761,7 +20719,7 @@ "Label\n" "value.text" msgid "Hyperlink Control" -msgstr "" +msgstr "פקד קישור" #. 2rDGb #: GenericCommands.xcu @@ -20781,7 +20739,7 @@ "Label\n" "value.text" msgid "Insert OLE Object" -msgstr "" +msgstr "הוספת עצם OLE" #. gB86r #: GenericCommands.xcu @@ -20791,7 +20749,7 @@ "ContextLabel\n" "value.text" msgid "~OLE Object..." -msgstr "" +msgstr "~עצם OLE…" #. zKjoT #: GenericCommands.xcu @@ -20801,7 +20759,7 @@ "TooltipLabel\n" "value.text" msgid "Open dialog to insert OLE object" -msgstr "" +msgstr "פתיחת חלונית להוספת עצם OLE" #. 6B9a2 #: GenericCommands.xcu @@ -20811,7 +20769,7 @@ "Label\n" "value.text" msgid "Float~ing Frame..." -msgstr "מסגרת צפה..." +msgstr "מסגרת ~צפה…" #. NMhAC #: GenericCommands.xcu @@ -20841,7 +20799,7 @@ "Label\n" "value.text" msgid "~Hide Details" -msgstr "הסתרת פרטים" +msgstr "ה~סתרת פרטים" #. gQ7DC #: GenericCommands.xcu @@ -20861,7 +20819,7 @@ "Label\n" "value.text" msgid "~Show Details" -msgstr "הצגת פרטים" +msgstr "הצגת ~פרטים" #. fe5CC #: GenericCommands.xcu @@ -20871,7 +20829,7 @@ "Label\n" "value.text" msgid "Object Zoom" -msgstr "מרחק מתצוגה לפריט" +msgstr "מרחק מהעצם" #. kpKCn #: GenericCommands.xcu @@ -20891,7 +20849,7 @@ "Label\n" "value.text" msgid "~Group..." -msgstr "קיבוץ...‏" +msgstr "~קיבוץ…" #. nEL3F #: GenericCommands.xcu @@ -20911,7 +20869,7 @@ "Label\n" "value.text" msgid "~Ungroup..." -msgstr "שבירת קיבוץ...‏" +msgstr "~פירוק…" #. emKjD #: GenericCommands.xcu @@ -20931,7 +20889,7 @@ "Label\n" "value.text" msgid "Character Highlighting Color" -msgstr "" +msgstr "צבע הדגשת תווים" #. h68Rw #: GenericCommands.xcu @@ -20971,7 +20929,7 @@ "Label\n" "value.text" msgid "~Hyperlink" -msgstr "" +msgstr "~קישור" #. UgtoL #: GenericCommands.xcu @@ -20981,7 +20939,7 @@ "PopupLabel\n" "value.text" msgid "Edit Hyperlink..." -msgstr "" +msgstr "עריכת קישור…" #. a7D2m #: GenericCommands.xcu @@ -20991,7 +20949,7 @@ "Label\n" "value.text" msgid "Copy Hyperlink Location" -msgstr "" +msgstr "העתקת מיקום קישור" #. EaNDM #: GenericCommands.xcu @@ -21021,7 +20979,7 @@ "Label\n" "value.text" msgid "~Formula Object..." -msgstr "" +msgstr "עצם ~נוסחה…" #. CeBmP #: GenericCommands.xcu @@ -21031,7 +20989,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Formula Object" -msgstr "" +msgstr "הוספת עצם נוסחה" #. 2ykCZ #: GenericCommands.xcu @@ -21041,7 +20999,7 @@ "Label\n" "value.text" msgid "Label field" -msgstr "שדה תוית" +msgstr "שדה תווית" #. xZDu8 #: GenericCommands.xcu @@ -21051,7 +21009,7 @@ "Label\n" "value.text" msgid "OLE Ob~ject" -msgstr "" +msgstr "ע~צם OLE" #. o5DE2 #: GenericCommands.xcu @@ -21061,7 +21019,7 @@ "TooltipLabel\n" "value.text" msgid "Menu for editing or saving OLE objects" -msgstr "" +msgstr "תפריט לעריכת או שמירת עצמי OLE" #. WQPXj #: GenericCommands.xcu @@ -21081,7 +21039,7 @@ "Label\n" "value.text" msgid "~XML Filter Settings..." -msgstr "הגדרות מסנני XML..." +msgstr "הגדרות מ~סנני XML…" #. mPdwa #: GenericCommands.xcu @@ -21111,7 +21069,7 @@ "Label\n" "value.text" msgid "Chinese Conversion..." -msgstr "המרת סינית..." +msgstr "המרת סינית…" #. sGMDt #: GenericCommands.xcu @@ -21141,7 +21099,7 @@ "Label\n" "value.text" msgid "Spin Button" -msgstr "כפתור סבסוב" +msgstr "כפתור טווח" #. eF3sV #: GenericCommands.xcu @@ -21201,7 +21159,7 @@ "Label\n" "value.text" msgid "Preview Dialog" -msgstr "דו־שיח תצוגה מקדימה" +msgstr "חלונית תצוגה מקדימה" #. fNSZd #: GenericCommands.xcu @@ -21241,7 +21199,7 @@ "Label\n" "value.text" msgid "~Edit Template..." -msgstr "" +msgstr "עריכת ~תבנית…" #. 3VmbE #: GenericCommands.xcu @@ -21261,7 +21219,7 @@ "Label\n" "value.text" msgid "Sp~readsheet" -msgstr "גיליון אלקטרוני" +msgstr "~גיליון אלקטרוני" #. XeaYs #: GenericCommands.xcu @@ -21271,7 +21229,7 @@ "Label\n" "value.text" msgid "Insert Mode" -msgstr "מצב הכנסה" +msgstr "מצב הוספה" #. EeCVs #: GenericCommands.xcu @@ -21301,7 +21259,7 @@ "Label\n" "value.text" msgid "~Wizards" -msgstr "אשפים" +msgstr "~אשפים" #. TWpTL #: GenericCommands.xcu @@ -21341,7 +21299,7 @@ "Label\n" "value.text" msgid "~New Window" -msgstr "חלון חדש" +msgstr "~חלון חדש" #. tEa3o #: GenericCommands.xcu @@ -21351,7 +21309,7 @@ "Label\n" "value.text" msgid "~Remove Outline" -msgstr "" +msgstr "ה~סרת מתאר" #. pnDUB #: GenericCommands.xcu @@ -21401,7 +21359,7 @@ "Label\n" "value.text" msgid "F~ull Screen" -msgstr "מסך מלא" +msgstr "מסך מ~לא" #. GQ5D7 #: GenericCommands.xcu @@ -21431,7 +21389,7 @@ "Label\n" "value.text" msgid "~Image" -msgstr "תמונה" +msgstr "~תמונה" #. gX9YM #: GenericCommands.xcu @@ -21441,7 +21399,7 @@ "Label\n" "value.text" msgid "Text B~ox and Shape" -msgstr "" +msgstr "תיבת ~טקסט וצורה" #. zFyfF #: GenericCommands.xcu @@ -21561,7 +21519,7 @@ "Label\n" "value.text" msgid "Table Design..." -msgstr "תכנון טבלאות...‏" +msgstr "תכנון טבלאות…" #. pYFdz #: GenericCommands.xcu @@ -21571,7 +21529,7 @@ "Label\n" "value.text" msgid "~Spelling..." -msgstr "בדיקת איות...‏" +msgstr "~איות…" #. zsXN6 #: GenericCommands.xcu @@ -21581,7 +21539,7 @@ "TooltipLabel\n" "value.text" msgid "Check Spelling" -msgstr "" +msgstr "בדיקת איות" #. tNx33 #: GenericCommands.xcu @@ -21591,7 +21549,7 @@ "Label\n" "value.text" msgid "~Recheck Document..." -msgstr "~בדיקת המסמך מחדש..." +msgstr "~בדיקת המסמך מחדש…" #. uBsma #: GenericCommands.xcu @@ -21621,7 +21579,7 @@ "TooltipLabel\n" "value.text" msgid "Check Spelling" -msgstr "" +msgstr "בדיקת איות" #. HAU9m #: GenericCommands.xcu @@ -21651,7 +21609,7 @@ "Label\n" "value.text" msgid "~Spelling..." -msgstr "בדיקת איות...‏" +msgstr "~איות…" #. LYqTn #: GenericCommands.xcu @@ -21661,7 +21619,7 @@ "Label\n" "value.text" msgid "Draw Functions" -msgstr "" +msgstr "פונקציות ציור" #. 38Vrk #: GenericCommands.xcu @@ -21731,7 +21689,7 @@ "Label\n" "value.text" msgid "New FrameSet" -msgstr "‫FrameSet חדש" +msgstr "קבוצת מסגרות חדשה" #. kqyyx #: GenericCommands.xcu @@ -21741,7 +21699,7 @@ "Label\n" "value.text" msgid "~Thesaurus..." -msgstr "אגרון...‏" +msgstr "~אגרון…" #. XBzpL #: GenericCommands.xcu @@ -21761,7 +21719,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Text Box" -msgstr "" +msgstr "הוספת תיבת טקסט" #. ADqze #: GenericCommands.xcu @@ -21781,7 +21739,7 @@ "Label\n" "value.text" msgid "F~ontwork" -msgstr "עבודת גופנים" +msgstr "עבודת ~גופנים" #. AiLcR #: GenericCommands.xcu @@ -21851,7 +21809,7 @@ "Label\n" "value.text" msgid "Split FrameSet Horizontally" -msgstr "פיצול אופקי של ‏‪FrameSet‏" +msgstr "פיצול אופקי של קבוצת מסגרות" #. rnjzF #: GenericCommands.xcu @@ -21861,7 +21819,7 @@ "Label\n" "value.text" msgid "Split FrameSet Vertically" -msgstr "פיצול אנכי של ‏‪FrameSet‏" +msgstr "פיצול אנכי של קבוצת מסגרות" #. yFCL7 #: GenericCommands.xcu @@ -21871,7 +21829,7 @@ "Label\n" "value.text" msgid "Frame Properties" -msgstr "איפיוני מסגרת" +msgstr "מאפייני מסגרת" #. adBA3 #: GenericCommands.xcu @@ -21911,7 +21869,7 @@ "Label\n" "value.text" msgid "Insert Labels" -msgstr "הכנסת תוויות" +msgstr "הוספת תוויות" #. aUHaf #: GenericCommands.xcu @@ -21931,7 +21889,7 @@ "Label\n" "value.text" msgid "~Bring to Front" -msgstr "קידום לחזית" +msgstr "קידום ל~חזית" #. 7bpa4 #: GenericCommands.xcu @@ -21951,7 +21909,7 @@ "Label\n" "value.text" msgid "HT~ML Source" -msgstr "מקור HTM~L‏" +msgstr "מ~קור HTML" #. UKg78 #: GenericCommands.xcu @@ -21981,7 +21939,7 @@ "Label\n" "value.text" msgid "~Merge" -msgstr "מיזוג" +msgstr "מי~זוג" #. rAjSP #: GenericCommands.xcu @@ -21991,7 +21949,7 @@ "Label\n" "value.text" msgid "Merge Cells" -msgstr "" +msgstr "מיזוג תאים" #. ktF7K #: GenericCommands.xcu @@ -22001,7 +21959,7 @@ "Label\n" "value.text" msgid "Split Cells..." -msgstr "" +msgstr "פיצול תאים…" #. 2gYcx #: GenericCommands.xcu @@ -22011,7 +21969,7 @@ "Label\n" "value.text" msgid "~Subtract" -msgstr "חיסור" +msgstr "~חיסור" #. aJNVZ #: GenericCommands.xcu @@ -22021,7 +21979,7 @@ "Label\n" "value.text" msgid "Equalize ~Width" -msgstr "" +msgstr "~פיזור רוחב שווה" #. N6bdq #: GenericCommands.xcu @@ -22031,7 +21989,7 @@ "Label\n" "value.text" msgid "Equalize ~Height" -msgstr "" +msgstr "פיזור ~גובה שווה" #. WUubN #: GenericCommands.xcu @@ -22051,7 +22009,7 @@ "Label\n" "value.text" msgid "I~ntersect" -msgstr "חיתוך" +msgstr "~חיתוך" #. MHhAC #: GenericCommands.xcu @@ -22071,7 +22029,7 @@ "Label\n" "value.text" msgid "Small capitals" -msgstr "אותיות גדולות קטנות" +msgstr "אותיות גדולות בקטן" #. G9iMq #: GenericCommands.xcu @@ -22081,7 +22039,7 @@ "Label\n" "value.text" msgid "P~aragraph..." -msgstr "פסקה..." +msgstr "~פסקה…" #. 8htud #: GenericCommands.xcu @@ -22111,7 +22069,7 @@ "TooltipLabel\n" "value.text" msgid "Select start and end arrowheads for lines." -msgstr "" +msgstr "בחירת ראשי חץ להתחלה ולסוף הקווים." #. FDhkx #: GenericCommands.xcu @@ -22131,7 +22089,7 @@ "Label\n" "value.text" msgid "~Undo" -msgstr "ביטול פעולה" +msgstr "~ביטול פעולה" #. FhmGD #: GenericCommands.xcu @@ -22161,7 +22119,7 @@ "TooltipLabel\n" "value.text" msgid "Clone Formatting (double click for multi-selection)" -msgstr "שכפול העיצוב (לחיצה כפולה לבחירה מרובה)" +msgstr "שכפול העיצוב (לחיצה כפולה לבחירה מגוונת)" #. Kx4N5 #: GenericCommands.xcu @@ -22211,7 +22169,7 @@ "Label\n" "value.text" msgid "~Paste" -msgstr "הדבקה" +msgstr "ה~דבקה" #. Z5gHF #: GenericCommands.xcu @@ -22241,7 +22199,7 @@ "Label\n" "value.text" msgid "Delete C~ontents..." -msgstr "מחיקת תוכן" +msgstr "מחיקת ~תוכן…" #. TBAWe #: GenericCommands.xcu @@ -22271,7 +22229,7 @@ "Label\n" "value.text" msgid "Rotation Pivot Point X" -msgstr "" +msgstr "נקודת X של ציר סיבוב" #. RDCdG #: GenericCommands.xcu @@ -22281,7 +22239,7 @@ "Label\n" "value.text" msgid "Rotation Pivot Point Y" -msgstr "" +msgstr "נקודת Y של ציר סיבוב" #. BSdvf #: GenericCommands.xcu @@ -22291,7 +22249,7 @@ "Label\n" "value.text" msgid "~Select Source..." -msgstr "בחירת מקור...‏" +msgstr "~בחירת מקור…" #. 2fVit #: GenericCommands.xcu @@ -22301,7 +22259,7 @@ "Label\n" "value.text" msgid "~Request..." -msgstr "דרישה...‏" +msgstr "~בקשה…" #. CWnNe #: GenericCommands.xcu @@ -22311,7 +22269,7 @@ "Label\n" "value.text" msgid "Select ~All" -msgstr "בחירת הכל" +msgstr "בחירה בה~כול" #. hZnKV #: GenericCommands.xcu @@ -22321,7 +22279,7 @@ "Label\n" "value.text" msgid "~Edit Contour..." -msgstr "עריכת קו מתאר...‏" +msgstr "עריכת ~קו מתאר…" #. 8NPaD #: GenericCommands.xcu @@ -22331,7 +22289,7 @@ "Label\n" "value.text" msgid "Select ~All" -msgstr "בחירת הכל" +msgstr "בחירה בה~כול" #. qxfRr #: GenericCommands.xcu @@ -22421,7 +22379,7 @@ "Label\n" "value.text" msgid "FrameSet Spacing" -msgstr "ריווח ‏‪FrameSet‏" +msgstr "ריווח קבוצת מסגרות" #. x9HFM #: GenericCommands.xcu @@ -22451,7 +22409,7 @@ "Label\n" "value.text" msgid "To Document Begin" -msgstr "אל תחילת מסמך" +msgstr "לתחילת המסמך" #. ctFGn #: GenericCommands.xcu @@ -22461,7 +22419,7 @@ "Label\n" "value.text" msgid "To Document End" -msgstr "אל סוף המסמך" +msgstr "לסוף המסמך" #. 86dKG #: GenericCommands.xcu @@ -22471,7 +22429,7 @@ "Label\n" "value.text" msgid "Na~vigator" -msgstr "נווט" +msgstr "מ~נווט" #. CMEjB #: GenericCommands.xcu @@ -22481,7 +22439,7 @@ "TooltipLabel\n" "value.text" msgid "Show Navigator Window" -msgstr "" +msgstr "הצגת חלון מנווט" #. 8FNgW #: GenericCommands.xcu @@ -22491,7 +22449,7 @@ "Label\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "סרגל מחברת" #. KvrFF #: GenericCommands.xcu @@ -22521,7 +22479,7 @@ "Label\n" "value.text" msgid "Interrupt Macro" -msgstr "הפסקת ביצוע מאקרו" +msgstr "הפרעה לריצת מאקרו" #. feLj3 #: GenericCommands.xcu @@ -22561,7 +22519,7 @@ "Label\n" "value.text" msgid "Select Up" -msgstr "בחירה כלפי מעלה" +msgstr "בחירה למעלה" #. eNVoh #: GenericCommands.xcu @@ -22991,7 +22949,7 @@ "Label\n" "value.text" msgid "~Protect..." -msgstr "" +msgstr "ה~גנה…" #. MqDj3 #: GenericCommands.xcu @@ -23001,7 +22959,7 @@ "TooltipLabel\n" "value.text" msgid "Protect Track Changes" -msgstr "" +msgstr "הגנת מעקב שינויים" #. XGBrs #: GenericCommands.xcu @@ -23011,7 +22969,7 @@ "PopupLabel\n" "value.text" msgid "Protect Track Changes" -msgstr "" +msgstr "הגנת מעקב שינויים" #. 7u9EW #: GenericCommands.xcu @@ -23041,7 +22999,7 @@ "TooltipLabel\n" "value.text" msgid "Compare Non-Track Changed Document" -msgstr "" +msgstr "השוואת מסמך עם שינויים לא מעקב" #. 6FC7R #: GenericCommands.xcu @@ -23231,7 +23189,7 @@ "Label\n" "value.text" msgid "Clear" -msgstr "" +msgstr "פינוי" #. AqQCJ #: GenericCommands.xcu @@ -23241,7 +23199,7 @@ "ContextLabel\n" "value.text" msgid "Clear ~Direct Formatting" -msgstr "" +msgstr "פינוי ~עיצוב ישיר" #. knBUW #: GenericCommands.xcu @@ -23251,7 +23209,7 @@ "TooltipLabel\n" "value.text" msgid "Clear Direct Formatting" -msgstr "" +msgstr "פינוי עיצוב ישיר" #. yPMEe #: GenericCommands.xcu @@ -23261,7 +23219,7 @@ "Label\n" "value.text" msgid "Decrease" -msgstr "" +msgstr "הקטנה" #. LmbC7 #: GenericCommands.xcu @@ -23291,7 +23249,7 @@ "Label\n" "value.text" msgid "Increase" -msgstr "" +msgstr "הגדלה" #. gtfBq #: GenericCommands.xcu @@ -23321,7 +23279,7 @@ "Label\n" "value.text" msgid "Curves and Polygons" -msgstr "" +msgstr "עקומות ומצולעים" #. QjB43 #: GenericCommands.xcu @@ -23351,7 +23309,7 @@ "Label\n" "value.text" msgid "Freeform" -msgstr "" +msgstr "צורה חופשית" #. 5AXcR #: GenericCommands.xcu @@ -23361,7 +23319,7 @@ "TooltipLabel\n" "value.text" msgid "Freeform Redaction" -msgstr "" +msgstr "עריכת צורה חופשית" #. a5rCU #: GenericCommands.xcu @@ -23545,14 +23503,13 @@ #. ZfpKx #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:RubyDialog\n" "Label\n" "value.text" msgid "Asian Phonetic G~uide..." -msgstr "מדריך לפונטיקת המזרח הרחוק" +msgstr "ה~נחיות הגייה לשפות אסיאתיות…" #. oBjzB #: GenericCommands.xcu @@ -23712,7 +23669,7 @@ "Label\n" "value.text" msgid "Export as PDF" -msgstr "" +msgstr "ייצוא כ־PDF" #. YsFV2 #: GenericCommands.xcu @@ -23722,7 +23679,7 @@ "ContextLabel\n" "value.text" msgid "~Export as PDF..." -msgstr "יצוא ~כ־PDF…" +msgstr "יי~צוא ~כ־PDF…" #. FnRm4 #: GenericCommands.xcu @@ -23732,7 +23689,7 @@ "TooltipLabel\n" "value.text" msgid "Export as PDF" -msgstr "יצוא כ־PDF" +msgstr "ייצוא כ־PDF" #. pCD7W #: GenericCommands.xcu @@ -23742,7 +23699,7 @@ "Label\n" "value.text" msgid "Export Directly as PDF" -msgstr "" +msgstr "ייצוא כ־PDF ישירות" #. 8eSWp #: GenericCommands.xcu @@ -23752,7 +23709,7 @@ "ContextLabel\n" "value.text" msgid "Export Directly as PDF" -msgstr "יצוא ישיר כ־PDF" +msgstr "ייצוא כ־PDF ישירות" #. JCirv #: GenericCommands.xcu @@ -23762,7 +23719,7 @@ "TooltipLabel\n" "value.text" msgid "Export Directly as PDF" -msgstr "יצוא ישיר כ־PDF" +msgstr "ייצוא כ־PDF ישירות" #. LrSFu #: GenericCommands.xcu @@ -23782,7 +23739,7 @@ "ContextLabel\n" "value.text" msgid "Export Directly to PDF as Bitmap" -msgstr "" +msgstr "ייצוא ישירות ל־PDF כמפת סיביות" #. Rn9z9 #: GenericCommands.xcu @@ -23792,7 +23749,7 @@ "TooltipLabel\n" "value.text" msgid "Export Directly to PDF as Bitmap" -msgstr "" +msgstr "ייצוא ישירות ל־PDF כמפת סיביות" #. BYoy3 #: GenericCommands.xcu @@ -23862,7 +23819,7 @@ "Label\n" "value.text" msgid "Redact" -msgstr "" +msgstr "שינוי" #. Ponm7 #: GenericCommands.xcu @@ -23872,7 +23829,7 @@ "ContextLabel\n" "value.text" msgid "Redact" -msgstr "" +msgstr "שינוי" #. bSmGC #: GenericCommands.xcu @@ -23882,7 +23839,7 @@ "TooltipLabel\n" "value.text" msgid "Redact Document" -msgstr "" +msgstr "שינוי מסמך" #. hGiLG #: GenericCommands.xcu @@ -23892,7 +23849,7 @@ "Label\n" "value.text" msgid "Auto-Redact" -msgstr "" +msgstr "שינוי אוטומטי" #. 38NB3 #: GenericCommands.xcu @@ -23902,7 +23859,7 @@ "ContextLabel\n" "value.text" msgid "Auto-Redact" -msgstr "" +msgstr "שינוי אוטומטי" #. kfBEt #: GenericCommands.xcu @@ -23912,7 +23869,7 @@ "TooltipLabel\n" "value.text" msgid "Auto-Redact Document" -msgstr "" +msgstr "שינוי מסמך אוטומטי" #. zvurM #: GenericCommands.xcu @@ -23932,7 +23889,7 @@ "Label\n" "value.text" msgid "~Object Bar" -msgstr "סרגל עצמים" +msgstr "סרגל ~עצמים" #. ycsFJ #: GenericCommands.xcu @@ -23952,7 +23909,7 @@ "Label\n" "value.text" msgid "Main ~Toolbar" -msgstr "סרגל כלים עיקרי" +msgstr "סרגל כלים ~עיקרי" #. ExkAA #: GenericCommands.xcu @@ -23962,7 +23919,7 @@ "Label\n" "value.text" msgid "~Function Bar" -msgstr "סרגל תפקודים" +msgstr "סרגל ~פונקציות" #. u2sU2 #: GenericCommands.xcu @@ -23972,7 +23929,7 @@ "Label\n" "value.text" msgid "Optio~n Bar" -msgstr "סרגל אפשרויות" +msgstr "סרגל ~אפשרויות" #. EoTCn #: GenericCommands.xcu @@ -24002,7 +23959,7 @@ "Label\n" "value.text" msgid "Get ~Involved" -msgstr "" +msgstr "לה~שתתף בעשייה" #. zdGAU #: GenericCommands.xcu @@ -24012,7 +23969,7 @@ "Label\n" "value.text" msgid "~User Guides" -msgstr "" +msgstr "מ~דריכי משתמשים" #. KmdEu #: GenericCommands.xcu @@ -24032,7 +23989,7 @@ "Label\n" "value.text" msgid "What's New" -msgstr "" +msgstr "מה חדש" #. B8Gcc #: GenericCommands.xcu @@ -24042,7 +23999,7 @@ "TooltipLabel\n" "value.text" msgid "Open the release notes for the installed version in the default browser" -msgstr "" +msgstr "פתיחת הערות הגרסה של הגרסה המותקנת בדפדפן ברירת המחדל" #. 77umd #: GenericCommands.xcu @@ -24052,7 +24009,7 @@ "Label\n" "value.text" msgid "License Information" -msgstr "" +msgstr "פרטי רישוי" #. Tg4QT #: GenericCommands.xcu @@ -24062,7 +24019,7 @@ "Label\n" "value.text" msgid "%PRODUCTNAME Credits" -msgstr "" +msgstr "התודות של %PRODUCTNAME" #. 98scE #: GenericCommands.xcu @@ -24072,7 +24029,7 @@ "Label\n" "value.text" msgid "Status ~Bar" -msgstr "סרגל מצב" +msgstr "סרגל מ~צב" #. Gj4dU #: GenericCommands.xcu @@ -24092,7 +24049,7 @@ "Label\n" "value.text" msgid "~Presentation" -msgstr "מצגת" +msgstr "מ~צגת" #. ysAGZ #: GenericCommands.xcu @@ -24102,7 +24059,7 @@ "Label\n" "value.text" msgid "Import BASIC..." -msgstr "" +msgstr "ייבוא BASIC…" #. zCkAf #: GenericCommands.xcu @@ -24112,7 +24069,7 @@ "Label\n" "value.text" msgid "Export BASIC..." -msgstr "" +msgstr "ייצוא BASIC…" #. jA2bd #: GenericCommands.xcu @@ -24122,7 +24079,7 @@ "Label\n" "value.text" msgid "Export Dialog..." -msgstr "" +msgstr "חלונית ייצוא…" #. wcyCu #: GenericCommands.xcu @@ -24132,7 +24089,7 @@ "Label\n" "value.text" msgid "Import Dialog..." -msgstr "" +msgstr "חלונית ייבוא…" #. mkYcT #: GenericCommands.xcu @@ -24192,7 +24149,7 @@ "Label\n" "value.text" msgid "~Basic..." -msgstr "" +msgstr "~Basic…" #. 6NozA #: GenericCommands.xcu @@ -24202,7 +24159,7 @@ "Label\n" "value.text" msgid "Organize ~Dialogs..." -msgstr "סידור תיבות ה~דו־שיח..." +msgstr "סידור ה~חלוניות…" #. jjjAC #: GenericCommands.xcu @@ -24212,7 +24169,7 @@ "Label\n" "value.text" msgid "~Organize Macros" -msgstr "סידור המ~אקרוים" +msgstr "סידור תסריטי המ~אקרו" #. yGrMV #: GenericCommands.xcu @@ -24222,7 +24179,7 @@ "Label\n" "value.text" msgid "R~un Macro..." -msgstr "ה~פעלת מאקרו..." +msgstr "ה~רצת תסריט מאקרו…" #. h7oCG #: GenericCommands.xcu @@ -24252,7 +24209,7 @@ "TooltipLabel\n" "value.text" msgid "Open Clip Art and Media Gallery" -msgstr "" +msgstr "פתיחת אוסף אומנות וגלריית מדיה" #. HAbt5 #: GenericCommands.xcu @@ -24262,7 +24219,7 @@ "Label\n" "value.text" msgid "Find and Rep~lace..." -msgstr "" +msgstr "~איתור והחלפה…" #. B4Dm5 #: GenericCommands.xcu @@ -24412,7 +24369,7 @@ "Label\n" "value.text" msgid "Con~trol Properties..." -msgstr "" +msgstr "מאפייני ~בקרה…" #. TcfRB #: GenericCommands.xcu @@ -25002,7 +24959,7 @@ "Label\n" "value.text" msgid "Refresh document layout" -msgstr "" +msgstr "רענון פריסת מסמך" #. V8JAY #: GenericCommands.xcu @@ -25012,7 +24969,7 @@ "Label\n" "value.text" msgid "Find Record..." -msgstr "מציאת רשומה...‏" +msgstr "איתור רשומה…" #. FKnv9 #: GenericCommands.xcu @@ -25022,7 +24979,7 @@ "Label\n" "value.text" msgid "Form Control Wizards" -msgstr "" +msgstr "אשפי פקדי טפסים" #. sJG6W #: GenericCommands.xcu @@ -25032,7 +24989,7 @@ "ContextLabel\n" "value.text" msgid "Control Wizards" -msgstr "" +msgstr "אשפי פקדים" #. FPifj #: GenericCommands.xcu @@ -25042,7 +24999,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Form Control Wizards" -msgstr "" +msgstr "החלפת מצב אשפי פקדי טפסים" #. GGiUT #: GenericCommands.xcu @@ -25302,7 +25259,7 @@ "Label\n" "value.text" msgid "Toggle Extrusion" -msgstr "" +msgstr "החלפת מצב שיחול" #. iYGim #: GenericCommands.xcu @@ -25432,7 +25389,7 @@ "Label\n" "value.text" msgid "User ~Interface" -msgstr "" +msgstr "מ~נשק משתמש" #. BWJqP #: GenericCommands.xcu @@ -25442,7 +25399,7 @@ "Label\n" "value.text" msgid "User ~Interface..." -msgstr "" +msgstr "מ~נשק משתמש…" #. i8oSn #: GenericCommands.xcu @@ -25452,7 +25409,7 @@ "TooltipLabel\n" "value.text" msgid "Shows a dialog to select the user interface" -msgstr "" +msgstr "מציג חלונית לבחירת מנשק המשתמש" #. uQVBR #: GenericCommands.xcu @@ -25462,7 +25419,7 @@ "Label\n" "value.text" msgid "~Toolbars" -msgstr "סרגלי כלים" +msgstr "סרגלי ~כלים" #. 2DysH #: GenericCommands.xcu @@ -25482,7 +25439,7 @@ "Label\n" "value.text" msgid "Breakpoint Enabled/Disabled" -msgstr "נקודת עצירה פעילה/לא פעילה" +msgstr "נקודת עצירה פעילה/מושבתת" #. V9SKf #: GenericCommands.xcu @@ -25502,7 +25459,7 @@ "Label\n" "value.text" msgid "Digital Signatu~res..." -msgstr "חתימות ~דיגיטליות..." +msgstr "חתימות ~דיגיטליות…" #. CgPg6 #: GenericCommands.xcu @@ -25602,7 +25559,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. XtBAB #: GenericCommands.xcu @@ -25612,7 +25569,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. b2kUa #: GenericCommands.xcu @@ -25622,7 +25579,7 @@ "Label\n" "value.text" msgid "Recent Doc~uments" -msgstr "מסמכים אחרונים" +msgstr "מסמכים~ אחרונים" #. KSiFH #: GenericCommands.xcu @@ -25682,7 +25639,7 @@ "Label\n" "value.text" msgid "Delete Comment Thread" -msgstr "" +msgstr "מחיקת שרשור הערות" #. s3CwY #: GenericCommands.xcu @@ -25692,7 +25649,7 @@ "Label\n" "value.text" msgid "Resolved" -msgstr "" +msgstr "נפתר" #. FPVwa #: GenericCommands.xcu @@ -25702,7 +25659,7 @@ "Label\n" "value.text" msgid "Resolved Thread" -msgstr "" +msgstr "שרשור שנפתר" #. JZHpu #: GenericCommands.xcu @@ -25772,7 +25729,7 @@ "Label\n" "value.text" msgid "Sum" -msgstr "" +msgstr "סכום" #. 7hQeH #: GenericCommands.xcu @@ -25792,7 +25749,7 @@ "Label\n" "value.text" msgid "Text Form Field" -msgstr "" +msgstr "שדה טופס טקסט" #. fAY3H #: GenericCommands.xcu @@ -25802,7 +25759,7 @@ "Label\n" "value.text" msgid "Check Box Form Field" -msgstr "" +msgstr "שדה טופס תיבת בחירה" #. uQxzu #: GenericCommands.xcu @@ -25812,7 +25769,7 @@ "Label\n" "value.text" msgid "Drop-Down Form Field" -msgstr "" +msgstr "שדה טופס בחירה נפתחת" #. yk3Pm #: GenericCommands.xcu @@ -25832,7 +25789,7 @@ "Label\n" "value.text" msgid "Search Commands" -msgstr "" +msgstr "חיפוש פקודות" #. NFhYp #: GenericCommands.xcu @@ -25842,7 +25799,7 @@ "Label\n" "value.text" msgid "Development Tools" -msgstr "" +msgstr "כלי פיתוח" #. qCG9b #: GenericCommands.xcu @@ -25852,7 +25809,7 @@ "Label\n" "value.text" msgid "Lock Toolbars" -msgstr "" +msgstr "נעילת סרגלי כלים" #. cAUZ8 #: GenericCommands.xcu @@ -25862,7 +25819,7 @@ "TooltipLabel\n" "value.text" msgid "Lock or unlock all toolbars" -msgstr "" +msgstr "נעילה או שחרור של כל סרגלי הכלים" #. jLF5j #: GenericCommands.xcu @@ -25892,7 +25849,7 @@ "Label\n" "value.text" msgid "~Help" -msgstr "עזרה" +msgstr "ע~זרה" #. RB5Ch #: GenericCommands.xcu @@ -25902,7 +25859,7 @@ "Label\n" "value.text" msgid "~Insert" -msgstr "" +msgstr "הו~ספה" #. EBfym #: GenericCommands.xcu @@ -25912,7 +25869,7 @@ "Label\n" "value.text" msgid "~Delete" -msgstr "" +msgstr "מ~חיקה" #. ZMsAG #: GenericCommands.xcu @@ -25922,7 +25879,7 @@ "Label\n" "value.text" msgid "Si~ze" -msgstr "" +msgstr "~גודל" #. GhjEq #: GenericCommands.xcu @@ -25932,7 +25889,7 @@ "Label\n" "value.text" msgid "~File" -msgstr "קובץ" +msgstr "~קובץ" #. 6US8G #: GenericCommands.xcu @@ -25942,7 +25899,7 @@ "Label\n" "value.text" msgid "Alig~n Objects" -msgstr "" +msgstr "יי~שור עצמים" #. VK2hz #: GenericCommands.xcu @@ -25952,7 +25909,7 @@ "Label\n" "value.text" msgid "Align Tex~t" -msgstr "" +msgstr "יישור ~טקסט" #. y3E2U #: GenericCommands.xcu @@ -25962,7 +25919,7 @@ "Label\n" "value.text" msgid "~Shapes" -msgstr "צורות" +msgstr "~צורות" #. Mwu8A #: GenericCommands.xcu @@ -26002,7 +25959,7 @@ "Label\n" "value.text" msgid "Character Font Position..." -msgstr "" +msgstr "מיקום גופן תו…" #. fZufx #: GenericCommands.xcu @@ -26012,7 +25969,7 @@ "Label\n" "value.text" msgid "F~ormat" -msgstr "עיצוב" +msgstr "~עיצוב" #. NC4x3 #: GenericCommands.xcu @@ -26022,7 +25979,7 @@ "Label\n" "value.text" msgid "~OLE Object" -msgstr "" +msgstr "~עצם OLE" #. SQ76T #: GenericCommands.xcu @@ -26042,7 +25999,7 @@ "Label\n" "value.text" msgid "~Edit" -msgstr "עריכה" +msgstr "ע~ריכה" #. aKjG2 #: GenericCommands.xcu @@ -26052,7 +26009,7 @@ "Label\n" "value.text" msgid "~Insert" -msgstr "~הוספה" +msgstr "הו~ספה" #. 6Xdhu #: GenericCommands.xcu @@ -26062,7 +26019,7 @@ "Label\n" "value.text" msgid "~Data" -msgstr "" +msgstr "~נתונים" #. gJ4rS #: GenericCommands.xcu @@ -26072,7 +26029,7 @@ "Label\n" "value.text" msgid "Sen~d" -msgstr "שליחה" +msgstr "~שליחה" #. ayDHt #: GenericCommands.xcu @@ -26082,7 +26039,7 @@ "Label\n" "value.text" msgid "T~able" -msgstr "" +msgstr "~טבלה" #. JHiCn #: GenericCommands.xcu @@ -26102,7 +26059,7 @@ "Label\n" "value.text" msgid "~Macros" -msgstr "פקודות מאקרו" +msgstr "ת~סריטי מאקרו" #. MwNhh #: GenericCommands.xcu @@ -26292,7 +26249,7 @@ "Label\n" "value.text" msgid "Rot~ate or Flip" -msgstr "" +msgstr "סיבוב או הי~פוך" #. wxC2C #: GenericCommands.xcu @@ -26302,7 +26259,7 @@ "Label\n" "value.text" msgid "Anchor Menu" -msgstr "" +msgstr "תפריט עוגן" #. oNBG8 #: GenericCommands.xcu @@ -26322,7 +26279,7 @@ "TooltipLabel\n" "value.text" msgid "Select anchor for object" -msgstr "" +msgstr "בחירת עוגן לעצם" #. vBrBs #: GenericCommands.xcu @@ -26332,7 +26289,7 @@ "Label\n" "value.text" msgid "Change View" -msgstr "" +msgstr "החלפת תצוגה" #. zfgMB #: GenericCommands.xcu @@ -26342,7 +26299,7 @@ "ContextLabel\n" "value.text" msgid "View" -msgstr "" +msgstr "תצוגה" #. ZxxTy #: GenericCommands.xcu @@ -26372,7 +26329,7 @@ "ContextLabel\n" "value.text" msgid "Audio or ~Video..." -msgstr "" +msgstr "~שמע או וידאו…" #. jB3GF #: GenericCommands.xcu @@ -26392,7 +26349,7 @@ "Label\n" "value.text" msgid "Table Control" -msgstr "" +msgstr "פקד טבלה" #. 7wECp #: GenericCommands.xcu @@ -26412,7 +26369,7 @@ "Label\n" "value.text" msgid "~Color" -msgstr "צבע" +msgstr "~צבע" #. 4XG4T #: GenericCommands.xcu @@ -26422,7 +26379,7 @@ "Label\n" "value.text" msgid "Insert non-br~eaking hyphen" -msgstr "" +msgstr "הוספת מקף ~לא מפריד" #. FsR94 #: GenericCommands.xcu @@ -26432,7 +26389,7 @@ "Label\n" "value.text" msgid "Insert s~oft Hyphen" -msgstr "" +msgstr "הוספת מקף ~רך" #. B9WX3 #: GenericCommands.xcu @@ -26442,7 +26399,7 @@ "Label\n" "value.text" msgid "Insert ~non-breaking space" -msgstr "" +msgstr "הוספת רווח לא מ~פריד" #. KZXXb #: GenericCommands.xcu @@ -26452,7 +26409,7 @@ "Label\n" "value.text" msgid "Insert N~arrow No-break Space" -msgstr "" +msgstr "הוספת רווח ~צר לא מפריד" #. txaEk #: GenericCommands.xcu @@ -26462,7 +26419,7 @@ "Label\n" "value.text" msgid "No-~width Optional Break" -msgstr "" +msgstr "מפריד ר~שות ללא רוחב" #. Gjgjy #: GenericCommands.xcu @@ -26472,7 +26429,7 @@ "Label\n" "value.text" msgid "Word ~Joiner" -msgstr "" +msgstr "מ~חבר מילים" #. UvwGS #: GenericCommands.xcu @@ -26482,7 +26439,7 @@ "Label\n" "value.text" msgid "~Left-to-right Mark" -msgstr "" +msgstr "סימן ~שמאל-לימין" #. prtF2 #: GenericCommands.xcu @@ -26492,7 +26449,7 @@ "Label\n" "value.text" msgid "~Right-to-left Mark" -msgstr "" +msgstr "סימן ~ימין-לשמאל" #. o6CJp #: GenericCommands.xcu @@ -26502,7 +26459,7 @@ "Label\n" "value.text" msgid "Insert Row" -msgstr "" +msgstr "הוספת שורה" #. 4XPfy #: GenericCommands.xcu @@ -26512,7 +26469,7 @@ "Label\n" "value.text" msgid "Insert Column" -msgstr "" +msgstr "הוספת עמודה" #. LhLtz #: GenericCommands.xcu @@ -26522,7 +26479,7 @@ "Label\n" "value.text" msgid "Delete Columns" -msgstr "" +msgstr "מחיקת עמודות" #. AG4Qy #: GenericCommands.xcu @@ -26532,7 +26489,7 @@ "ContextLabel\n" "value.text" msgid "Delete ~Columns" -msgstr "" +msgstr "מחיקת ~עמודות" #. KxsdA #: GenericCommands.xcu @@ -26542,7 +26499,7 @@ "TooltipLabel\n" "value.text" msgid "Delete selected columns" -msgstr "" +msgstr "מחיקת העמודות הנבחרות" #. VL8Wa #: GenericCommands.xcu @@ -26552,7 +26509,7 @@ "Label\n" "value.text" msgid "Delete Rows" -msgstr "" +msgstr "מחיקת שורות" #. uAPr9 #: GenericCommands.xcu @@ -26562,7 +26519,7 @@ "ContextLabel\n" "value.text" msgid "Delete ~Rows" -msgstr "" +msgstr "מחיקת ~שורות" #. wjm8K #: GenericCommands.xcu @@ -26572,7 +26529,7 @@ "TooltipLabel\n" "value.text" msgid "Delete selected rows" -msgstr "" +msgstr "מחיקת השורות הנבחרות" #. poXFa #: GenericCommands.xcu @@ -26612,7 +26569,7 @@ "PopupLabel\n" "value.text" msgid "Language for Selection" -msgstr "" +msgstr "שפה לבחירה" #. TbazQ #: GenericCommands.xcu @@ -26632,7 +26589,7 @@ "PopupLabel\n" "value.text" msgid "Language for Paragraph" -msgstr "" +msgstr "שפה לפסקה" #. MjBaU #: GenericCommands.xcu @@ -26652,7 +26609,7 @@ "PopupLabel\n" "value.text" msgid "Language for All Text" -msgstr "" +msgstr "שפה לכל הטקסט…" #. 4cXLB #: GenericCommands.xcu @@ -26662,7 +26619,7 @@ "Label\n" "value.text" msgid "More Dictionaries Online..." -msgstr "מילונים נוספים להורדה..." +msgstr "מילונים מקוונים נוספים…" #. J9jVa #: GenericCommands.xcu @@ -26682,7 +26639,7 @@ "Label\n" "value.text" msgid "Basic Macro Organizer..." -msgstr "" +msgstr "מארגן מאקרו בסיסי…" #. ahLAz #: GenericCommands.xcu @@ -26692,7 +26649,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft Format..." -msgstr "" +msgstr "שליחה בדוא״ל כ~תבנית Microsoft…" #. BrAfB #: GenericCommands.xcu @@ -26702,7 +26659,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Format..." -msgstr "" +msgstr "שליחה בדוא״ל כ~תבנית OpenDocument…" #. kJNVF #: GenericCommands.xcu @@ -26742,7 +26699,7 @@ "Label\n" "value.text" msgid "Apply document classification" -msgstr "" +msgstr "החלת סיווג מסמך" #. owQR2 #: GenericCommands.xcu @@ -26752,7 +26709,7 @@ "Label\n" "value.text" msgid "Manage Document Classification" -msgstr "" +msgstr "ניהול סיווג מסמך" #. SFcbr #: GenericCommands.xcu @@ -26762,7 +26719,7 @@ "Label\n" "value.text" msgid "Manage Paragraph Classification" -msgstr "" +msgstr "ניהול סיווג פסקה" #. N6XvZ #: GenericCommands.xcu @@ -26802,7 +26759,7 @@ "Label\n" "value.text" msgid "Name..." -msgstr "שם...‏" +msgstr "שם…" #. GCrhD #: GenericCommands.xcu @@ -26812,7 +26769,7 @@ "TooltipLabel\n" "value.text" msgid "Give a label to identify an object" -msgstr "" +msgstr "הצמדת תווית לזיהוי עצם" #. k5bGq #: GenericCommands.xcu @@ -26832,7 +26789,7 @@ "TooltipLabel\n" "value.text" msgid "Add descriptions of non-text content (for accessibility)" -msgstr "" +msgstr "הוספת תיאורים של תוכן שאינו טקסט (לטובת נגישות)" #. YwMhY #: GenericCommands.xcu @@ -26852,7 +26809,7 @@ "Label\n" "value.text" msgid "Navigate" -msgstr "" +msgstr "ניווט" #. 3Bg25 #: GenericCommands.xcu @@ -26862,7 +26819,7 @@ "Label\n" "value.text" msgid "More Breaks" -msgstr "" +msgstr "מעברים נוספים" #. 35wAk #: GenericCommands.xcu @@ -26872,7 +26829,7 @@ "Label\n" "value.text" msgid "Signatu~re Line..." -msgstr "" +msgstr "~שורה לחתימה…" #. azmKp #: GenericCommands.xcu @@ -26882,7 +26839,7 @@ "Label\n" "value.text" msgid "Edit Signature ~Line..." -msgstr "" +msgstr "~עריכת שורה לחתימה…" #. wRPGr #: GenericCommands.xcu @@ -26892,7 +26849,7 @@ "Label\n" "value.text" msgid "~Sign Signature Line..." -msgstr "" +msgstr "חתימה בשורה ל~חתימה…" #. KRKbu #: GenericCommands.xcu @@ -26902,7 +26859,7 @@ "Label\n" "value.text" msgid "QR and ~Barcode..." -msgstr "" +msgstr "QR ו~ברקוד…" #. FCYvB #: GenericCommands.xcu @@ -26912,7 +26869,7 @@ "Label\n" "value.text" msgid "~Edit Barcode..." -msgstr "" +msgstr "~עריכת ברקוד…" #. HhCdv #: GenericCommands.xcu @@ -26922,7 +26879,7 @@ "Label\n" "value.text" msgid "~Additions..." -msgstr "" +msgstr "~תוספות…" #. bFKmR #: GenericCommands.xcu @@ -26932,7 +26889,7 @@ "ContextLabel\n" "value.text" msgid "~Additional Extensions..." -msgstr "" +msgstr "הרחבות ~נוספות…" #. UqjzD #: GenericCommands.xcu @@ -26942,7 +26899,7 @@ "TooltipLabel\n" "value.text" msgid "Additional Extensions" -msgstr "" +msgstr "הרחבות נוספות" #. YpeR4 #: GenericCommands.xcu @@ -26952,7 +26909,7 @@ "Label\n" "value.text" msgid "More Fields" -msgstr "" +msgstr "שדות נוספים" #. xqvRY #: GenericCommands.xcu @@ -26962,7 +26919,7 @@ "Label\n" "value.text" msgid "Regenerate Diagram" -msgstr "" +msgstr "יצירת תרשים מחדש" #. 9MovL #: GenericCommands.xcu @@ -26972,7 +26929,7 @@ "Label\n" "value.text" msgid "Edit Diagram" -msgstr "" +msgstr "עריכת תרשים" #. YbZ74 #: GenericCommands.xcu @@ -26982,7 +26939,7 @@ "Label\n" "value.text" msgid "~Remove Hyperlink" -msgstr "" +msgstr "ה~סרת קישור" #. eD7JU #: GenericCommands.xcu @@ -26992,7 +26949,7 @@ "Label\n" "value.text" msgid "~Open Local Copy" -msgstr "" +msgstr "פתיחת ~עותק מקומי" #. 2YneU #: GenericCommands.xcu @@ -27002,7 +26959,7 @@ "Label\n" "value.text" msgid "~Distribution" -msgstr "" +msgstr "~פיזור" #. 2HWrF #: GenericCommands.xcu @@ -27012,7 +26969,7 @@ "TooltipLabel\n" "value.text" msgid "Select at least three objects to distribute" -msgstr "" +msgstr "יש לבחור לפחות שלושה פריטים לפיזור" #. zEiFi #: GenericCommands.xcu @@ -27022,7 +26979,7 @@ "ContextLabel\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "פיזור בחירה" #. vDkBA #: GenericCommands.xcu @@ -27032,7 +26989,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Left" -msgstr "" +msgstr "פיזור אופקי שמאלה" #. gjrG6 #: GenericCommands.xcu @@ -27042,7 +26999,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Left" -msgstr "" +msgstr "אופקי ~שמאלה" #. BBazW #: GenericCommands.xcu @@ -27052,7 +27009,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Center" -msgstr "" +msgstr "פיזור אופקית למרכז" #. SqFTB #: GenericCommands.xcu @@ -27062,7 +27019,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Center" -msgstr "" +msgstr "מירכוז ~אופקי" #. QXntz #: GenericCommands.xcu @@ -27072,7 +27029,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Spacing" -msgstr "" +msgstr "פיזור ריווח אופקי" #. GQEXJ #: GenericCommands.xcu @@ -27082,7 +27039,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Spacing" -msgstr "" +msgstr "~ריווח אופקי" #. Smk23 #: GenericCommands.xcu @@ -27092,7 +27049,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Right" -msgstr "" +msgstr "פיזור אופקי ימינה" #. SDkHd #: GenericCommands.xcu @@ -27102,7 +27059,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Right" -msgstr "" +msgstr "אופקי י~מינה" #. iJB7y #: GenericCommands.xcu @@ -27112,7 +27069,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Top" -msgstr "" +msgstr "פיזור אנכית למעלה" #. 9wa7z #: GenericCommands.xcu @@ -27122,7 +27079,7 @@ "ContextLabel\n" "value.text" msgid "Vertically ~Top" -msgstr "" +msgstr "אנכית למ~עלה" #. FAkxM #: GenericCommands.xcu @@ -27132,7 +27089,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Center" -msgstr "" +msgstr "פיזור אנכי למרכז" #. PaLDT #: GenericCommands.xcu @@ -27142,7 +27099,7 @@ "ContextLabel\n" "value.text" msgid "Vertically C~enter" -msgstr "" +msgstr "אנכית למ~רכז" #. jwLqM #: GenericCommands.xcu @@ -27152,7 +27109,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Spacing" -msgstr "" +msgstr "פיזור ריווח אנכי" #. 2RAqA #: GenericCommands.xcu @@ -27162,7 +27119,7 @@ "ContextLabel\n" "value.text" msgid "Vertically S~pacing" -msgstr "" +msgstr "ריווח א~נכי" #. ELgnZ #: GenericCommands.xcu @@ -27172,7 +27129,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Bottom" -msgstr "" +msgstr "פיזור אנכי למעלה" #. rankC #: GenericCommands.xcu @@ -27182,7 +27139,7 @@ "ContextLabel\n" "value.text" msgid "Vertically ~Bottom" -msgstr "" +msgstr "אנכי למ~טה" #. PT2x4 #: GenericCommands.xcu @@ -27192,7 +27149,7 @@ "Label\n" "value.text" msgid "Inspect Object" -msgstr "" +msgstr "חקירת עצם" #. WxZYJ #: GenericCommands.xcu @@ -27202,7 +27159,7 @@ "Label\n" "value.text" msgid "Graphic Size Check..." -msgstr "" +msgstr "בדיקת גודל גרפי…" #. ACwaJ #: GenericCommands.xcu @@ -27272,7 +27229,7 @@ "UIName\n" "value.text" msgid "3D Scene (group)" -msgstr "" +msgstr "סצנה תלת ממדי (קבוצה)" #. zoHmr #: ImpressWindowState.xcu @@ -27282,7 +27239,7 @@ "UIName\n" "value.text" msgid "Connector/Freeform Line" -msgstr "" +msgstr "קו מחבר/צורה חופשית" #. qi5Ao #: ImpressWindowState.xcu @@ -27412,7 +27369,7 @@ "UIName\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "סרגל מחברת" #. XA3EP #: ImpressWindowState.xcu @@ -27552,7 +27509,7 @@ "UIName\n" "value.text" msgid "Lines and Arrows" -msgstr "" +msgstr "קווים וחיצים" #. AoqtG #: ImpressWindowState.xcu @@ -27602,7 +27559,7 @@ "UIName\n" "value.text" msgid "Legacy Circles and Ovals" -msgstr "" +msgstr "עיגולים ואליפסות מיושנים" #. NvwkC #: ImpressWindowState.xcu @@ -27722,7 +27679,7 @@ "UIName\n" "value.text" msgid "Curves and Polygons" -msgstr "" +msgstr "עקומים ומצולעים" #. zMESy #: ImpressWindowState.xcu @@ -27732,7 +27689,7 @@ "UIName\n" "value.text" msgid "TSCP Classification" -msgstr "" +msgstr "סיווג TSCP" #. kPyD4 #: ImpressWindowState.xcu @@ -27812,7 +27769,7 @@ "UIName\n" "value.text" msgid "Legacy Rectangles" -msgstr "" +msgstr "מרובעים מיושנים" #. DQRc7 #: ImpressWindowState.xcu @@ -28002,7 +27959,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode)" -msgstr "" +msgstr "רגיל (מצב בודד)" #. SoDWX #: ImpressWindowState.xcu @@ -28012,7 +27969,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "" +msgstr "קיצורי סרגל מחברת" #. Ggdtj #: ImpressWindowState.xcu @@ -28022,7 +27979,7 @@ "UIName\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "פיזור הבחירה" #. tpAhh #: MathCommands.xcu @@ -28092,7 +28049,7 @@ "Label\n" "value.text" msgid "~Import Formula..." -msgstr "יבוא נוסחה...‏" +msgstr "ייבוא ~נוסחה…" #. PqBP6 #: MathCommands.xcu @@ -28102,7 +28059,7 @@ "Label\n" "value.text" msgid "Import MathML from Clipboard" -msgstr "" +msgstr "ייבוא MathML מלוח הגזירים" #. km9DF #: MathCommands.xcu @@ -28122,7 +28079,7 @@ "Label\n" "value.text" msgid "Insert Text" -msgstr "הכנסת טקסט" +msgstr "הוספת טקסט" #. rNA8P #: MathCommands.xcu @@ -28132,7 +28089,7 @@ "Label\n" "value.text" msgid "Insert Command" -msgstr "הכנסת פקודה" +msgstr "הוספת פקודה" #. 4AZZK #: MathCommands.xcu @@ -28162,7 +28119,7 @@ "Label\n" "value.text" msgid "Ne~xt Error" -msgstr "השגיאה הבאה" +msgstr "השגיאה ה~באה" #. QGWxj #: MathCommands.xcu @@ -28172,7 +28129,7 @@ "Label\n" "value.text" msgid "Pr~evious Error" -msgstr "השגיאה הקודמת" +msgstr "השגיאה ה~קודמת" #. FEYFG #: MathCommands.xcu @@ -28182,7 +28139,7 @@ "Label\n" "value.text" msgid "~Next Marker" -msgstr "הציון הבא" +msgstr "ה~סמן הבא" #. AyL9u #: MathCommands.xcu @@ -28192,7 +28149,7 @@ "Label\n" "value.text" msgid "Previous ~Marker" -msgstr "הציון הקודם" +msgstr "הס~מן הקודם" #. EoNeT #: MathCommands.xcu @@ -28212,7 +28169,7 @@ "Label\n" "value.text" msgid "Z~oom In" -msgstr "התמקדות פנימה" +msgstr "התק~רבות" #. XYVPg #: MathCommands.xcu @@ -28222,7 +28179,7 @@ "Label\n" "value.text" msgid "Zoo~m Out" -msgstr "התמקדות החוצה" +msgstr "הת~רחקות" #. J3EaC #: MathCommands.xcu @@ -28232,7 +28189,7 @@ "Label\n" "value.text" msgid "U~pdate" -msgstr "עדכון" +msgstr "~עדכון" #. GLcSy #: MathCommands.xcu @@ -28366,14 +28323,13 @@ #. DYtrW #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Popups..uno:FormatsMenu\n" "Label\n" "value.text" msgid "For~mats" -msgstr "עיצוב" +msgstr "~עיצובים" #. QBa62 #: MathCommands.xcu @@ -28513,7 +28469,7 @@ "ContextLabel\n" "value.text" msgid "~Page..." -msgstr "עמוד..." +msgstr "~עמוד…" #. 9GxFQ #: ReportCommands.xcu @@ -28543,7 +28499,7 @@ "Label\n" "value.text" msgid "~Date and Time..." -msgstr "~תאריך ושעה...‏" +msgstr "~תאריך ושעה…" #. 378wM #: ReportCommands.xcu @@ -28583,7 +28539,7 @@ "Label\n" "value.text" msgid "Gr~id" -msgstr "רשת" +msgstr "~רשת" #. 44sUt #: ReportCommands.xcu @@ -28913,7 +28869,7 @@ "Label\n" "value.text" msgid "Edit Mode" -msgstr "" +msgstr "מצב עריכה" #. GZdEa #: ReportCommands.xcu @@ -28963,7 +28919,7 @@ "Title\n" "value.text" msgid "Style Inspector" -msgstr "" +msgstr "בוחן סגנון" #. GEHrf #: Sidebar.xcu @@ -29083,7 +29039,7 @@ "Title\n" "value.text" msgid "Elements" -msgstr "" +msgstr "רכיבים" #. B4iFE #: Sidebar.xcu @@ -29113,7 +29069,7 @@ "Title\n" "value.text" msgid "Style Inspector" -msgstr "" +msgstr "בוחן סגנון" #. aCGNS #: Sidebar.xcu @@ -29183,7 +29139,7 @@ "Title\n" "value.text" msgid "Effect" -msgstr "" +msgstr "אפקט" #. GBNW2 #: Sidebar.xcu @@ -29223,7 +29179,7 @@ "Title\n" "value.text" msgid "Properties" -msgstr "" +msgstr "מאפיינים" #. VwByE #: Sidebar.xcu @@ -29233,7 +29189,7 @@ "Title\n" "value.text" msgid "Elements" -msgstr "" +msgstr "רכיבים" #. hKwDG #: Sidebar.xcu @@ -29273,7 +29229,7 @@ "Title\n" "value.text" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. FSj4z #: Sidebar.xcu @@ -29293,7 +29249,7 @@ "Title\n" "value.text" msgid "Page" -msgstr "" +msgstr "עמוד" #. E9FJB #: Sidebar.xcu @@ -29423,7 +29379,7 @@ "Title\n" "value.text" msgid "Lists" -msgstr "" +msgstr "רשימות" #. Y8pTf #: Sidebar.xcu @@ -29503,7 +29459,7 @@ "Title\n" "value.text" msgid "Style Presets" -msgstr "" +msgstr "ערכות עיצוב" #. n3DuN #: Sidebar.xcu @@ -29583,7 +29539,7 @@ "Title\n" "value.text" msgid "Table" -msgstr "" +msgstr "טבלה" #. fEcBG #: Sidebar.xcu @@ -29593,7 +29549,7 @@ "Title\n" "value.text" msgid "Chart Type" -msgstr "" +msgstr "סוג תרשים" #. ERGPP #: Sidebar.xcu @@ -29603,7 +29559,7 @@ "Title\n" "value.text" msgid "Columns" -msgstr "" +msgstr "עמודות" #. CDJWW #: StartModuleWindowState.xcu @@ -29623,7 +29579,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "" +msgstr "סרגל כלים רגיל" #. NJfBH #: ToolbarMode.xcu @@ -29633,7 +29589,7 @@ "Label\n" "value.text" msgid "Single Toolbar" -msgstr "" +msgstr "סרגל כלים בודד" #. UTzyD #: ToolbarMode.xcu @@ -29653,7 +29609,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "בלשוניות" #. 8Nfyz #: ToolbarMode.xcu @@ -29663,7 +29619,7 @@ "Label\n" "value.text" msgid "Tabbed Compact" -msgstr "" +msgstr "בלשוניות מצומצמות" #. 5CbqL #: ToolbarMode.xcu @@ -29713,7 +29669,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "" +msgstr "סרגל כלים רגיל" #. t8D2m #: ToolbarMode.xcu @@ -29723,7 +29679,7 @@ "Label\n" "value.text" msgid "Single Toolbar" -msgstr "" +msgstr "סרגל כלים בודד" #. VnDYA #: ToolbarMode.xcu @@ -29743,7 +29699,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "בלשוניות" #. 5bBrj #: ToolbarMode.xcu @@ -29753,7 +29709,7 @@ "Label\n" "value.text" msgid "Tabbed Compact" -msgstr "" +msgstr "בלשוניות מצומצמות" #. EfebG #: ToolbarMode.xcu @@ -29793,7 +29749,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "" +msgstr "סרגל כלים רגיל" #. GDJio #: ToolbarMode.xcu @@ -29803,7 +29759,7 @@ "Label\n" "value.text" msgid "Single Toolbar" -msgstr "" +msgstr "סרגל כלים בודד" #. 8frgn #: ToolbarMode.xcu @@ -29813,7 +29769,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "בלשוניות" #. DnZxB #: ToolbarMode.xcu @@ -29823,7 +29779,7 @@ "Label\n" "value.text" msgid "Tabbed Compact" -msgstr "" +msgstr "בלשוניות מצומצמות" #. quFBW #: ToolbarMode.xcu @@ -29863,7 +29819,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "" +msgstr "קבוצות לפי הקשר" #. mrACC #: ToolbarMode.xcu @@ -29873,7 +29829,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "" +msgstr "סרגל כלים רגיל" #. D27KE #: ToolbarMode.xcu @@ -29883,7 +29839,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "בלשוניות" #. mGCMC #: ToolbarMode.xcu @@ -29893,7 +29849,7 @@ "Label\n" "value.text" msgid "Tabbed Compact" -msgstr "" +msgstr "בלשוניות מצומצמות" #. nrNaZ #: ToolbarMode.xcu @@ -29923,7 +29879,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "" +msgstr "סרגל כלים רגיל" #. DQTVG #: ToolbarMode.xcu @@ -29933,7 +29889,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "" +msgstr "סרגל כלים רגיל" #. pDAEU #: WriterCommands.xcu @@ -30123,7 +30079,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Endnote" -msgstr "" +msgstr "הוספת הערת סיום" #. jGSZw #: WriterCommands.xcu @@ -30163,7 +30119,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Table of Contents, Index or Bibliography" -msgstr "" +msgstr "הוספת תוכן עניינים, מפתח עניינים או ביבליוגרפיה" #. uTYnH #: WriterCommands.xcu @@ -30173,7 +30129,7 @@ "ContextLabel\n" "value.text" msgid "Table of Contents, ~Index or Bibliography..." -msgstr "" +msgstr "תוכן עניינים, מ~פתח עניינים או ביבליוגרפיה…" #. TuWK6 #: WriterCommands.xcu @@ -30193,7 +30149,7 @@ "Label\n" "value.text" msgid "Toggle Direct Cursor Mode" -msgstr "" +msgstr "החלפת מצב סמן ישיר" #. ADz36 #: WriterCommands.xcu @@ -30203,7 +30159,7 @@ "ContextLabel\n" "value.text" msgid "Direct Cursor Mode" -msgstr "" +msgstr "מצב סמן ישיר" #. bbt6Q #: WriterCommands.xcu @@ -30253,7 +30209,7 @@ "PopupLabel\n" "value.text" msgid "Update Indexes and ~Tables" -msgstr "" +msgstr "עדכון מפתח עניינים ו~טבלאות" #. XPn5o #: WriterCommands.xcu @@ -30263,7 +30219,7 @@ "Label\n" "value.text" msgid "Update Index" -msgstr "" +msgstr "עדכון מפתח עניינים" #. bQdcg #: WriterCommands.xcu @@ -30283,7 +30239,7 @@ "PopupLabel\n" "value.text" msgid "Update ~Index" -msgstr "" +msgstr "עדכון מ~פתח עניינים" #. 3sfQu #: WriterCommands.xcu @@ -30333,7 +30289,7 @@ "Label\n" "value.text" msgid "Reject and Move to Next" -msgstr "" +msgstr "דחייה ומעבר לבא" #. riKrf #: WriterCommands.xcu @@ -30413,7 +30369,7 @@ "Label\n" "value.text" msgid "Accept and Move to Next" -msgstr "" +msgstr "אישור ומעבר לבא" #. ueUPj #: WriterCommands.xcu @@ -30453,7 +30409,7 @@ "PopupLabel\n" "value.text" msgid "Accept All Changes" -msgstr "" +msgstr "אישור כל השינויים" #. kja8B #: WriterCommands.xcu @@ -30503,7 +30459,7 @@ "Label\n" "value.text" msgid "~Links" -msgstr "קישורים" +msgstr "~קישורים" #. gA4ED #: WriterCommands.xcu @@ -30513,7 +30469,7 @@ "PopupLabel\n" "value.text" msgid "Update ~Links" -msgstr "" +msgstr "~עדכון קישורים" #. fQQgY #: WriterCommands.xcu @@ -30523,7 +30479,7 @@ "Label\n" "value.text" msgid "~Record" -msgstr "מעקב" +msgstr "~תיעוד" #. fUFWw #: WriterCommands.xcu @@ -30533,7 +30489,7 @@ "TooltipLabel\n" "value.text" msgid "Record Track Changes" -msgstr "" +msgstr "תיעוד מעקב שינויים" #. uTnAC #: WriterCommands.xcu @@ -30543,7 +30499,7 @@ "Label\n" "value.text" msgid "Track Changes Functions" -msgstr "" +msgstr "פונקציות מעקב שינויים" #. EuyGQ #: WriterCommands.xcu @@ -30553,7 +30509,7 @@ "TooltipLabel\n" "value.text" msgid "Show Track Changes Functions" -msgstr "" +msgstr "הצגת פונקציות מעקב שינויים" #. Qvz6V #: WriterCommands.xcu @@ -30593,7 +30549,7 @@ "Label\n" "value.text" msgid "T~ooltips" -msgstr "" +msgstr "~חלוניות עצה" #. EitKc #: WriterCommands.xcu @@ -30603,7 +30559,7 @@ "TooltipLabel\n" "value.text" msgid "Show change authorship in tooltips" -msgstr "" +msgstr "הצגת בעלות שינויים בחלוניות עצה" #. rYNAa #: WriterCommands.xcu @@ -30613,7 +30569,7 @@ "Label\n" "value.text" msgid "Use header/footer menu" -msgstr "" +msgstr "שימוש בתפריט כותרת עליונה/תחתונה" #. 3nEko #: WriterCommands.xcu @@ -30623,7 +30579,7 @@ "TooltipLabel\n" "value.text" msgid "Use the advanced popup menu to create header/footer on the fly" -msgstr "" +msgstr "אפשר להשתמש בתפריט הקופץ המתקדם כדי ליצור כותרת עליונה/תחתונה על הדרך" #. EPnUe #: WriterCommands.xcu @@ -30633,7 +30589,7 @@ "Label\n" "value.text" msgid "Show outline-folding buttons" -msgstr "" +msgstr "הצגת אפשרויות קיפול מתאר" #. 4hvcy #: WriterCommands.xcu @@ -30643,7 +30599,7 @@ "TooltipLabel\n" "value.text" msgid "Shows a button next to headings and subheadings to help with outline folding. Even without the button, you can do outline folding with the Navigator." -msgstr "" +msgstr "מציג כפתור ליד כותרות ותת־כותרות כדי לסייע בקיפול מתאר. אפילו בלי הכפתור, אפשר לבצע קיפול מתאר במנווט." #. C5mHk #: WriterCommands.xcu @@ -30653,7 +30609,7 @@ "Label\n" "value.text" msgid "Show tracked deletions in margin" -msgstr "" +msgstr "מציג מחיקות במעקב בשול" #. 3GVrG #: WriterCommands.xcu @@ -30673,7 +30629,7 @@ "Label\n" "value.text" msgid "Go t~o Page..." -msgstr "" +msgstr "מ~עבר לעמוד…" #. FFXsF #: WriterCommands.xcu @@ -30733,7 +30689,7 @@ "TooltipLabel\n" "value.text" msgid "Manage Track Changes" -msgstr "" +msgstr "ניהול מעקב שינויים" #. WAKZF #: WriterCommands.xcu @@ -30773,7 +30729,7 @@ "PopupLabel\n" "value.text" msgid "Update ~Charts" -msgstr "" +msgstr "עדכון ת~רשימים" #. 46XYv #: WriterCommands.xcu @@ -30813,7 +30769,7 @@ "Label\n" "value.text" msgid "Set Reminder" -msgstr "" +msgstr "הגדרת תזכורת" #. n2p7v #: WriterCommands.xcu @@ -30823,7 +30779,7 @@ "TooltipLabel\n" "value.text" msgid "Set Reminder" -msgstr "" +msgstr "הגדרת תזכורת" #. g5xTe #: WriterCommands.xcu @@ -30843,7 +30799,7 @@ "Label\n" "value.text" msgid "Insert Paragraph" -msgstr "הכנסת פסקה" +msgstr "הוספת פסקה" #. Bjk5w #: WriterCommands.xcu @@ -30863,7 +30819,7 @@ "Label\n" "value.text" msgid "Insert Column Break" -msgstr "הכנסת מעבר עמודה" +msgstr "הוספת מעבר עמודה" #. 4AobA #: WriterCommands.xcu @@ -30877,14 +30833,13 @@ #. dGxyV #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ChangeDatabaseField\n" "Label\n" "value.text" msgid "Exchange Data~base..." -msgstr "החלפת מסד נתונים..." +msgstr "ה~חלפת מסד נתונים…" #. iuDxN #: WriterCommands.xcu @@ -30934,7 +30889,7 @@ "Label\n" "value.text" msgid "Cross-~reference..." -msgstr "" +msgstr "הפניה מ~קושרת…" #. uBUDR #: WriterCommands.xcu @@ -30944,7 +30899,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Cross-reference" -msgstr "" +msgstr "הוספת הפניה מקושרת" #. caDb4 #: WriterCommands.xcu @@ -30974,7 +30929,7 @@ "Label\n" "value.text" msgid "Content Controls" -msgstr "" +msgstr "פקדי תוכן" #. isyh9 #: WriterCommands.xcu @@ -31128,14 +31083,13 @@ #. ncwKN #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertIndexesEntry\n" "Label\n" "value.text" msgid "~Index Entry..." -msgstr "ערך ממפתחות העניינים" +msgstr "~רשומה במפתח העניינים…" #. iAFni #: WriterCommands.xcu @@ -31215,7 +31169,7 @@ "Label\n" "value.text" msgid "Show All Changes Inline" -msgstr "" +msgstr "הצגת כל השינויים כחלק מהשורות" #. jVPG7 #: WriterCommands.xcu @@ -31225,7 +31179,7 @@ "ContextLabel\n" "value.text" msgid "All ~Changes Inline" -msgstr "" +msgstr "כל ה~שינויים כחלק מהשורות" #. JQmVz #: WriterCommands.xcu @@ -31235,7 +31189,7 @@ "Label\n" "value.text" msgid "Show Deletions In Margin" -msgstr "" +msgstr "הצגת מחיקות בשוליים" #. Mo6US #: WriterCommands.xcu @@ -31245,7 +31199,7 @@ "ContextLabel\n" "value.text" msgid "~Deletions In Margin" -msgstr "" +msgstr "מ~חיקות בשוליים" #. AcF7X #: WriterCommands.xcu @@ -31255,7 +31209,7 @@ "Label\n" "value.text" msgid "Show Insertions In Margin" -msgstr "" +msgstr "הצגת תוספות בשוליים" #. hCo6p #: WriterCommands.xcu @@ -31265,7 +31219,7 @@ "ContextLabel\n" "value.text" msgid "~Insertions In Margin" -msgstr "" +msgstr "~תוספות בשוליים" #. 7cFXL #: WriterCommands.xcu @@ -31305,7 +31259,7 @@ "Label\n" "value.text" msgid "First Mail Merge Entry" -msgstr "" +msgstr "רשומת מיזוג דואר ראשונה" #. qAzfT #: WriterCommands.xcu @@ -31315,7 +31269,7 @@ "Label\n" "value.text" msgid "Previous Mail Merge Entry" -msgstr "" +msgstr "רשומת מיזוג דואר קודמת" #. AzpgU #: WriterCommands.xcu @@ -31325,7 +31279,7 @@ "Label\n" "value.text" msgid "Current Mail Merge Entry" -msgstr "" +msgstr "רשומת מיזוג דואר נוכחית" #. ZtC2D #: WriterCommands.xcu @@ -31335,7 +31289,7 @@ "Label\n" "value.text" msgid "Next Mail Merge Entry" -msgstr "" +msgstr "רשומת מיזוג דואר באה" #. EwtRf #: WriterCommands.xcu @@ -31345,7 +31299,7 @@ "Label\n" "value.text" msgid "Last Mail Merge Entry" -msgstr "" +msgstr "רשימת מיזוג דואר אחרונה" #. aFEGA #: WriterCommands.xcu @@ -31355,7 +31309,7 @@ "Label\n" "value.text" msgid "Exclude Mail Merge Entry" -msgstr "" +msgstr "החרגת רשומת מיזוג דואר" #. DAC8X #: WriterCommands.xcu @@ -31365,7 +31319,7 @@ "Label\n" "value.text" msgid "Edit Individual Documents" -msgstr "" +msgstr "עריכת מסמכים פרטניים" #. veNqQ #: WriterCommands.xcu @@ -31385,7 +31339,7 @@ "Label\n" "value.text" msgid "Print Merged Documents" -msgstr "" +msgstr "הדפסת מסמכים ממוזגים" #. DWp3J #: WriterCommands.xcu @@ -31395,7 +31349,7 @@ "Label\n" "value.text" msgid "Send Email Messages" -msgstr "" +msgstr "שליחת הודעות דוא״ל" #. 3h8ar #: WriterCommands.xcu @@ -31425,7 +31379,7 @@ "Label\n" "value.text" msgid "~Formula Object..." -msgstr "" +msgstr "עצם ~נוסחה…" #. VaCbZ #: WriterCommands.xcu @@ -31435,7 +31389,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Formula Object" -msgstr "" +msgstr "הוספת עצם נוסחה" #. 4tQrL #: WriterCommands.xcu @@ -31445,7 +31399,7 @@ "Label\n" "value.text" msgid "Text Attributes..." -msgstr "" +msgstr "מאפייני טקסט…" #. 5D2ho #: WriterCommands.xcu @@ -31465,7 +31419,7 @@ "ContextLabel\n" "value.text" msgid "As C~haracter" -msgstr "לתו" +msgstr "כ~תו" #. dapfz #: WriterCommands.xcu @@ -31485,7 +31439,7 @@ "Label\n" "value.text" msgid "OLE Object Insert Menu" -msgstr "" +msgstr "תפריט הוספת עצמי OLE" #. DE4Ca #: WriterCommands.xcu @@ -31495,7 +31449,7 @@ "TooltipLabel\n" "value.text" msgid "Insert OLE Object" -msgstr "" +msgstr "הוספת עצם OLE" #. ESBXG #: WriterCommands.xcu @@ -31605,7 +31559,7 @@ "Label\n" "value.text" msgid "First ~Author" -msgstr "" +msgstr "מ~חבר ראשון" #. FqzAb #: WriterCommands.xcu @@ -31905,7 +31859,7 @@ "Label\n" "value.text" msgid "Rotate 1~80°" -msgstr "" +msgstr "סיבוב 1~80°" #. bF3xx #: WriterCommands.xcu @@ -31915,7 +31869,7 @@ "Label\n" "value.text" msgid "Reset R~otation" -msgstr "" +msgstr "אי~פוס סיבוב" #. p6Ygh #: WriterCommands.xcu @@ -31955,7 +31909,7 @@ "Label\n" "value.text" msgid "Select to End of Word" -msgstr "" +msgstr "בחירה עד סוף המילה" #. bpBoC #: WriterCommands.xcu @@ -32045,7 +31999,7 @@ "Label\n" "value.text" msgid "~Load Styles from Template" -msgstr "" +msgstr "~טעינת סגנונות מתבנית" #. m6dbV #: WriterCommands.xcu @@ -32095,7 +32049,7 @@ "Label\n" "value.text" msgid "Page Columns" -msgstr "" +msgstr "עמודות בעמוד" #. Lk4KG #: WriterCommands.xcu @@ -32115,7 +32069,7 @@ "Label\n" "value.text" msgid "~Page Style..." -msgstr "" +msgstr "~סגנון עמוד…" #. 8aUD6 #: WriterCommands.xcu @@ -32275,7 +32229,7 @@ "Label\n" "value.text" msgid "None" -msgstr "" +msgstr "בלי" #. SvFa2 #: WriterCommands.xcu @@ -32285,7 +32239,7 @@ "Label\n" "value.text" msgid "~Parallel" -msgstr "" +msgstr "מ~קביל" #. YFEFD #: WriterCommands.xcu @@ -32295,7 +32249,7 @@ "Label\n" "value.text" msgid "Two Pages Preview" -msgstr "" +msgstr "תצוגת שני עמודים מקדימה" #. G7JBA #: WriterCommands.xcu @@ -32315,7 +32269,7 @@ "Label\n" "value.text" msgid "~Through" -msgstr "" +msgstr "מ~בעד" #. SocUA #: WriterCommands.xcu @@ -32435,7 +32389,7 @@ "PopupLabel\n" "value.text" msgid "Edit F~ields..." -msgstr "" +msgstr "~עריכת שדות…" #. U9LvE #: WriterCommands.xcu @@ -32445,7 +32399,7 @@ "Label\n" "value.text" msgid "E~xternal Links..." -msgstr "" +msgstr "קישורים ~חיצוניים…" #. PCFhM #: WriterCommands.xcu @@ -32485,7 +32439,7 @@ "Label\n" "value.text" msgid "Header Rows Repeat Across Pages" -msgstr "" +msgstr "שורות כותרות חוזרות על פני העמודים" #. xhNkD #: WriterCommands.xcu @@ -32565,7 +32519,7 @@ "Label\n" "value.text" msgid "Insert Columns Before" -msgstr "" +msgstr "הוספת עמודות לפני" #. Q4jKn #: WriterCommands.xcu @@ -32585,7 +32539,7 @@ "Label\n" "value.text" msgid "Insert Columns After" -msgstr "" +msgstr "הוספת עמודות אחרי" #. ZAewq #: WriterCommands.xcu @@ -32625,7 +32579,7 @@ "Label\n" "value.text" msgid "Paste as Nested Table" -msgstr "" +msgstr "הדבקה הטבלה מקוננת" #. E2BRL #: WriterCommands.xcu @@ -32635,7 +32589,7 @@ "PopupLabel\n" "value.text" msgid "~Nested Table" -msgstr "" +msgstr "טבלה מ~קוננת" #. jWjL7 #: WriterCommands.xcu @@ -32645,7 +32599,7 @@ "Label\n" "value.text" msgid "Paste as Rows Above" -msgstr "" +msgstr "הדבקה כשורות מעל" #. eG4dp #: WriterCommands.xcu @@ -32655,7 +32609,7 @@ "PopupLabel\n" "value.text" msgid "Rows ~Above" -msgstr "" +msgstr "שורות מ~על" #. fmNGn #: WriterCommands.xcu @@ -32665,7 +32619,7 @@ "Label\n" "value.text" msgid "Paste as Columns Before" -msgstr "" +msgstr "הדבקה כשורות לפני" #. kQfFH #: WriterCommands.xcu @@ -32675,7 +32629,7 @@ "PopupLabel\n" "value.text" msgid "Columns ~Before" -msgstr "" +msgstr "עמודות ~לפני" #. RxF66 #: WriterCommands.xcu @@ -32705,7 +32659,7 @@ "TooltipLabel\n" "value.text" msgid "Delete table" -msgstr "" +msgstr "מחיקת טבלה" #. TTVL5 #: WriterCommands.xcu @@ -32759,14 +32713,13 @@ #. T7tEU #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:IndexEntryDialog\n" "Label\n" "value.text" msgid "~Index Entry..." -msgstr "ערך ממפתחות העניינים" +msgstr "~רשומת מפתח עניינים…" #. W4PVB #: WriterCommands.xcu @@ -32826,7 +32779,7 @@ "TooltipLabel\n" "value.text" msgid "Select Cell" -msgstr "" +msgstr "בחירת תא" #. PpyJW #: WriterCommands.xcu @@ -32876,7 +32829,7 @@ "PopupLabel\n" "value.text" msgid "Update ~Fields" -msgstr "" +msgstr "עדכון ~שדות" #. tpc5P #: WriterCommands.xcu @@ -32906,7 +32859,7 @@ "TooltipLabel\n" "value.text" msgid "Select Table" -msgstr "" +msgstr "בחירת טבלה" #. wzPFD #: WriterCommands.xcu @@ -32966,7 +32919,7 @@ "Label\n" "value.text" msgid "Edit Fo~rmula" -msgstr "" +msgstr "עריכת ~נוסחה" #. iABvA #: WriterCommands.xcu @@ -32976,7 +32929,7 @@ "TooltipLabel\n" "value.text" msgid "Insert or Edit Formula" -msgstr "" +msgstr "הוספת או עריכת נוסחה" #. DGAud #: WriterCommands.xcu @@ -33106,7 +33059,7 @@ "Label\n" "value.text" msgid "Move Item Up" -msgstr "" +msgstr "העלאת פריט" #. F6Rc7 #: WriterCommands.xcu @@ -33126,7 +33079,7 @@ "Label\n" "value.text" msgid "Move Item Down" -msgstr "" +msgstr "הורדת הפריט למטה" #. 2GyQ4 #: WriterCommands.xcu @@ -33166,7 +33119,7 @@ "Label\n" "value.text" msgid "No List" -msgstr "" +msgstr "אין רשימה" #. 3kGnA #: WriterCommands.xcu @@ -33486,7 +33439,7 @@ "Label\n" "value.text" msgid "To Previous Page" -msgstr "" +msgstr "לעמוד הקודם" #. w4B39 #: WriterCommands.xcu @@ -33496,7 +33449,7 @@ "TooltipLabel\n" "value.text" msgid "To Previous Page" -msgstr "" +msgstr "לעמוד הקודם" #. qEpQx #: WriterCommands.xcu @@ -33506,7 +33459,7 @@ "Label\n" "value.text" msgid "To Next Page" -msgstr "" +msgstr "לעמוד הבא" #. Nx5Ux #: WriterCommands.xcu @@ -33516,7 +33469,7 @@ "TooltipLabel\n" "value.text" msgid "To Next Page" -msgstr "" +msgstr "לעמוד הבא" #. adnz3 #: WriterCommands.xcu @@ -33546,7 +33499,7 @@ "PopupLabel\n" "value.text" msgid "Update Page Formatting" -msgstr "" +msgstr "עדכון עיצוב העמוד" #. yyVam #: WriterCommands.xcu @@ -33560,14 +33513,13 @@ #. MqMFd #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:EditFootnote\n" "Label\n" "value.text" msgid "~Footnote or Endnote..." -msgstr "הערות שוליים...‏" +msgstr "הערות ~סיום ושוליים…" #. 65L8a #: WriterCommands.xcu @@ -33587,7 +33539,7 @@ "Label\n" "value.text" msgid "Shift+Backspace" -msgstr "" +msgstr "Shift+Backspace" #. G5RC9 #: WriterCommands.xcu @@ -33607,7 +33559,7 @@ "Label\n" "value.text" msgid "Select Sentence" -msgstr "" +msgstr "בחירת משפט" #. gAsXP #: WriterCommands.xcu @@ -33817,7 +33769,7 @@ "Label\n" "value.text" msgid "~Optimal" -msgstr "" +msgstr "מי~טבי" #. EFP2w #: WriterCommands.xcu @@ -34017,7 +33969,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Restart Numbering" -msgstr "" +msgstr "החלפת איפוס מספור" #. ofjeC #: WriterCommands.xcu @@ -34037,7 +33989,7 @@ "Label\n" "value.text" msgid "Before" -msgstr "" +msgstr "לפני" #. LADWG #: WriterCommands.xcu @@ -34057,7 +34009,7 @@ "Label\n" "value.text" msgid "After" -msgstr "" +msgstr "אחרי" #. b5mCd #: WriterCommands.xcu @@ -34127,7 +34079,7 @@ "ContextLabel\n" "value.text" msgid "~First Paragraph" -msgstr "פסקה ראשונה" +msgstr "פסקה ~ראשונה" #. wTJvx #: WriterCommands.xcu @@ -34137,7 +34089,7 @@ "Label\n" "value.text" msgid "Minimal Column Width" -msgstr "" +msgstr "רוחב עמודה מזערי" #. TEEVY #: WriterCommands.xcu @@ -34147,7 +34099,7 @@ "TooltipLabel\n" "value.text" msgid "Minimal Column Width: Adjust width of selected columns to fit content" -msgstr "" +msgstr "רוחב עמודה מזערי: כיוון רוחב העמודות הנבחרות כדי שתתאמנה לתוכן" #. vGAT7 #: WriterCommands.xcu @@ -34167,7 +34119,7 @@ "Label\n" "value.text" msgid "Increment Indent Value" -msgstr "הגדלת הזחה" +msgstr "הגדלת ערך הזחה" #. 6or48 #: WriterCommands.xcu @@ -34177,7 +34129,7 @@ "Label\n" "value.text" msgid "Minimal Row Height" -msgstr "" +msgstr "גובה שורה מזערי" #. wJUJV #: WriterCommands.xcu @@ -34187,7 +34139,7 @@ "TooltipLabel\n" "value.text" msgid "Minimal Row Height: Adjust height of selected rows to fit content" -msgstr "" +msgstr "גובה שורה מזערי: כיוון גובה השורות הנבחרות כך שתתאמנה לתוכן" #. 9RUey #: WriterCommands.xcu @@ -34257,7 +34209,7 @@ "Label\n" "value.text" msgid "Row to ~Break Across Pages" -msgstr "" +msgstr "שורה למעבר ~בין עמודים" #. 9bfa7 #: WriterCommands.xcu @@ -34277,7 +34229,7 @@ "Label\n" "value.text" msgid "Select Cycle" -msgstr "" +msgstr "בחירת סבב" #. GzD2B #: WriterCommands.xcu @@ -34477,7 +34429,7 @@ "Label\n" "value.text" msgid "Show resolved comme~nts" -msgstr "" +msgstr "הצגת הערות ש~נפתרו" #. R3huy #: WriterCommands.xcu @@ -34487,7 +34439,7 @@ "ContextLabel\n" "value.text" msgid "Resolved Comments" -msgstr "" +msgstr "הערות שנפתרו" #. vAGUB #: WriterCommands.xcu @@ -34537,7 +34489,7 @@ "Label\n" "value.text" msgid "~Thesaurus..." -msgstr "אגרון...‏" +msgstr "~אגרון…" #. oB6iJ #: WriterCommands.xcu @@ -34547,7 +34499,7 @@ "Label\n" "value.text" msgid "Character Highlighting Color" -msgstr "" +msgstr "צבע הדגשת תווים" #. sVA9o #: WriterCommands.xcu @@ -34641,14 +34593,13 @@ #. FFNXc #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:ControlCodes\n" "ContextLabel\n" "value.text" msgid "For~matting Marks" -msgstr "תו עיצוב" +msgstr "~סמני עיצוב" #. 9EFfF #: WriterCommands.xcu @@ -34658,7 +34609,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Formatting Marks" -msgstr "" +msgstr "שינוי מצב סימוני עיצוב" #. 2GDoU #: WriterCommands.xcu @@ -34668,7 +34619,7 @@ "Label\n" "value.text" msgid "Hide Whitespac~e" -msgstr "" +msgstr "ה~סתרת רווח" #. XAsfn #: WriterCommands.xcu @@ -34678,7 +34629,7 @@ "Label\n" "value.text" msgid "Show Whitespac~e" -msgstr "" +msgstr "ה~צגת רווח" #. RHnwE #: WriterCommands.xcu @@ -34688,7 +34639,7 @@ "Label\n" "value.text" msgid "So~rt..." -msgstr "מיון...‏" +msgstr "מ~יון…" #. ejnAA #: WriterCommands.xcu @@ -34698,7 +34649,7 @@ "Label\n" "value.text" msgid "Fie~ld Shadings" -msgstr "הצללת שדות" +msgstr "ה~צללת שדות" #. 9EBAK #: WriterCommands.xcu @@ -34708,7 +34659,7 @@ "Label\n" "value.text" msgid "Calculat~e" -msgstr "חישוב" +msgstr "~חישוב" #. AjNLg #: WriterCommands.xcu @@ -34718,7 +34669,7 @@ "Label\n" "value.text" msgid "~Field Names" -msgstr "שמות שדות" +msgstr "~שמות שדות" #. CcnG7 #: WriterCommands.xcu @@ -34728,7 +34679,7 @@ "Label\n" "value.text" msgid "Table Boundaries" -msgstr "הצגת קווי רשת" +msgstr "גבולות טבלה" #. cGGKB #: WriterCommands.xcu @@ -34738,7 +34689,7 @@ "Label\n" "value.text" msgid "Book Preview" -msgstr "הצגה מוקדמת של ספר" +msgstr "תצוגה מקדימה של ספר" #. pk7kQ #: WriterCommands.xcu @@ -34748,7 +34699,7 @@ "Label\n" "value.text" msgid "Remove Direct Character Formats" -msgstr "הסרת פורמט ישיר של תווים" +msgstr "הסרת עיצובים ישירים של תווים" #. ExWEB #: WriterCommands.xcu @@ -34758,7 +34709,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft Word..." -msgstr "" +msgstr "שליחה בדוא״ל כ־Microsoft Word…" #. CRkbD #: WriterCommands.xcu @@ -34768,7 +34719,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Text..." -msgstr "" +msgstr "שליחה בדוא״ל כ~טקסט OpenDocument…" #. wnFCt #: WriterCommands.xcu @@ -34778,7 +34729,7 @@ "Label\n" "value.text" msgid "~Standard" -msgstr "רגיל" +msgstr "~רגיל" #. 5S3gN #: WriterCommands.xcu @@ -34808,7 +34759,7 @@ "Label\n" "value.text" msgid "Smart ~Tag Options..." -msgstr "" +msgstr "אפשרויות תיוג ~חכם…" #. tBP2P #: WriterCommands.xcu @@ -34838,7 +34789,7 @@ "TooltipLabel\n" "value.text" msgid "Clone Formatting (double click and Ctrl or Cmd to alter behavior)" -msgstr "" +msgstr "שכפול עיצוב (לחיצה כפולה ו־Ctrl או Cmd כדי לשנות את ההתנהגות)" #. 7PCFf #: WriterCommands.xcu @@ -34848,7 +34799,7 @@ "Label\n" "value.text" msgid "C~haracter" -msgstr "" +msgstr "~תו" #. yGCHt #: WriterCommands.xcu @@ -34868,7 +34819,7 @@ "Label\n" "value.text" msgid "~List" -msgstr "" +msgstr "ר~שימה" #. ZmR9V #: WriterCommands.xcu @@ -34878,7 +34829,7 @@ "Label\n" "value.text" msgid "~Select" -msgstr "בחירה" +msgstr "~בחירה" #. XC7Xk #: WriterCommands.xcu @@ -34888,7 +34839,7 @@ "Label\n" "value.text" msgid "~Convert" -msgstr "המרה" +msgstr "המ~רה" #. P8xfR #: WriterCommands.xcu @@ -34898,7 +34849,7 @@ "Label\n" "value.text" msgid "~Update" -msgstr "עדכון" +msgstr "~עדכון" #. FawhG #: WriterCommands.xcu @@ -34908,7 +34859,7 @@ "Label\n" "value.text" msgid "Table of Contents and Inde~x" -msgstr "טבלת תכנים ו~אינדקס" +msgstr "תוכן עניינים ומ~פתח" #. d4KEC #: WriterCommands.xcu @@ -34958,7 +34909,7 @@ "Label\n" "value.text" msgid "Styl~es" -msgstr "סגנונות" +msgstr "~סגנונות" #. YTNwv #: WriterCommands.xcu @@ -34968,7 +34919,7 @@ "Label\n" "value.text" msgid "~Wrap" -msgstr "גלישה" +msgstr "~גלישה" #. KTWTs #: WriterCommands.xcu @@ -34988,7 +34939,7 @@ "Label\n" "value.text" msgid "AutoCorr~ect" -msgstr "עיצוב אוטומטי" +msgstr "~תיקון אוטומטי" #. 7DFV2 #: WriterCommands.xcu @@ -35018,7 +34969,7 @@ "Label\n" "value.text" msgid "~Add to List" -msgstr "" +msgstr "הוספה ל~רשימה" #. rbB7v #: WriterCommands.xcu @@ -35028,7 +34979,7 @@ "TooltipLabel\n" "value.text" msgid "“Add to List” adds selected paragraphs to an immediately preceding list." -msgstr "" +msgstr "„הוספה לרשימה” מוסיפה את הפסקאות הנבחרות לרשימה הקודמת המיידית." #. oCEjg #: WriterCommands.xcu @@ -35108,7 +35059,7 @@ "Label\n" "value.text" msgid "Default ~Paragraph" -msgstr "פסקה כ~בררת מחדל" +msgstr "פסקה כ~ברירת מחדל" #. K3yd3 #: WriterCommands.xcu @@ -35118,7 +35069,7 @@ "Label\n" "value.text" msgid "Default ~Paragraph" -msgstr "פסקת ~בררת מחדל" +msgstr "פסקת ~ברירת מחדל" #. Qp9qA #: WriterCommands.xcu @@ -35128,7 +35079,7 @@ "TooltipLabel\n" "value.text" msgid "Default Paragraph Style" -msgstr "סגנון פסקה כבררת מחדל" +msgstr "סגנון פסקה כברירת מחדל" #. LRDnV #: WriterCommands.xcu @@ -35278,7 +35229,7 @@ "TooltipLabel\n" "value.text" msgid "Heading 3 Paragraph Style" -msgstr "" +msgstr "סגנון פסקה כותרת 3" #. k53FG #: WriterCommands.xcu @@ -35308,7 +35259,7 @@ "TooltipLabel\n" "value.text" msgid "Heading 4 Paragraph Style" -msgstr "" +msgstr "סגנון פסקה כותרת 4" #. FjBvj #: WriterCommands.xcu @@ -35338,7 +35289,7 @@ "TooltipLabel\n" "value.text" msgid "Heading 5 Paragraph Style" -msgstr "" +msgstr "סגנון פסקה כותרת 5" #. vhWdD #: WriterCommands.xcu @@ -35368,7 +35319,7 @@ "TooltipLabel\n" "value.text" msgid "Heading 6 Paragraph Style" -msgstr "" +msgstr "סגנון פסקה כותרת 6" #. PZvwB #: WriterCommands.xcu @@ -35398,7 +35349,7 @@ "TooltipLabel\n" "value.text" msgid "Quotations Paragraph Style" -msgstr "" +msgstr "סגנון פסקה ציטטות" #. 2vgz8 #: WriterCommands.xcu @@ -35412,14 +35363,13 @@ #. nGLkD #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:PreformattedParaStyle\n" "Label\n" "value.text" msgid "Pre~formatted Text" -msgstr "טקסט ~ללא עיצוב" +msgstr "טקסט שעוצב מ~ראש" #. 6KDdJ #: WriterCommands.xcu @@ -35429,7 +35379,7 @@ "TooltipLabel\n" "value.text" msgid "Preformatted Text Paragraph Style" -msgstr "" +msgstr "סגנון פסקה טקסט שעוצב מראש" #. fQ4qE #: WriterCommands.xcu @@ -35443,14 +35393,13 @@ #. D88SE #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:TextBodyParaStyle\n" "Label\n" "value.text" msgid "Text Body" -msgstr "תיבת טקסט" +msgstr "גוף טקסט" #. Y6D9h #: WriterCommands.xcu @@ -35460,7 +35409,7 @@ "TooltipLabel\n" "value.text" msgid "Text Body Paragraph Style" -msgstr "" +msgstr "סגנון פסקה גוף טקסט" #. 3LYMu #: WriterCommands.xcu @@ -35470,7 +35419,7 @@ "Label\n" "value.text" msgid "Default ~Character" -msgstr "תו ~בררת מחדל" +msgstr "תו ~ברירת מחדל" #. ZAcM8 #: WriterCommands.xcu @@ -35480,7 +35429,7 @@ "Label\n" "value.text" msgid "No ~Character Style" -msgstr "" +msgstr "ללא סגנון ~תו" #. w8bFj #: WriterCommands.xcu @@ -35490,7 +35439,7 @@ "TooltipLabel\n" "value.text" msgid "Remove applied character style" -msgstr "" +msgstr "הסרת סגנון תווים שחל" #. idpKA #: WriterCommands.xcu @@ -35520,7 +35469,7 @@ "TooltipLabel\n" "value.text" msgid "Emphasis Character Style" -msgstr "" +msgstr "סגנון תווים מודגש" #. JNbe4 #: WriterCommands.xcu @@ -35540,7 +35489,7 @@ "TooltipLabel\n" "value.text" msgid "Strong Emphasis Character Style" -msgstr "" +msgstr "סגנון תווים מודגש במיוחד" #. PZ7tA #: WriterCommands.xcu @@ -35560,7 +35509,7 @@ "TooltipLabel\n" "value.text" msgid "Strong Emphasis Character Style" -msgstr "" +msgstr "סגנון תווים מודגש במיוחד" #. gVtiB #: WriterCommands.xcu @@ -35580,18 +35529,17 @@ "TooltipLabel\n" "value.text" msgid "Quotation Character Style" -msgstr "" +msgstr "סגנון תו מצוטט" #. 9LD4r #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Popups..uno:QuoteCharStyle\n" "Label\n" "value.text" msgid "Qu~otation" -msgstr "ציטטות" +msgstr "~ציטוט" #. Pbsp9 #: WriterCommands.xcu @@ -35641,7 +35589,7 @@ "Label\n" "value.text" msgid "Bullet • List Style" -msgstr "" +msgstr "סגנון רשימה תבליטי •" #. VBvBU #: WriterCommands.xcu @@ -35651,7 +35599,7 @@ "Label\n" "value.text" msgid "Bullet • List Style" -msgstr "" +msgstr "סגנון רשימה תבליטי •" #. BW4E6 #: WriterCommands.xcu @@ -35661,7 +35609,7 @@ "TooltipLabel\n" "value.text" msgid "Bullet • List Style" -msgstr "" +msgstr "סגנון רשימה תבליטי •" #. mqYSC #: WriterCommands.xcu @@ -35671,7 +35619,7 @@ "Label\n" "value.text" msgid "Numbering 123 List Style" -msgstr "" +msgstr "סגנון רשימה מספור 123" #. D5sRy #: WriterCommands.xcu @@ -35681,7 +35629,7 @@ "Label\n" "value.text" msgid "Numbering 123 List Style" -msgstr "" +msgstr "סגנון רשימה מספור 123" #. 5AJuo #: WriterCommands.xcu @@ -35691,7 +35639,7 @@ "TooltipLabel\n" "value.text" msgid "Numbering 123 List Style" -msgstr "" +msgstr "סגנון רשימה מספור 123" #. xAyDX #: WriterCommands.xcu @@ -35701,7 +35649,7 @@ "Label\n" "value.text" msgid "Numbering ABC List Style" -msgstr "" +msgstr "סגנון רשימה מספור א-ב (גדולות)" #. uENeD #: WriterCommands.xcu @@ -35711,7 +35659,7 @@ "Label\n" "value.text" msgid "Numbering ABC List Style" -msgstr "" +msgstr "סגנון רשימה מספור א-ב (גדולות)" #. c6BjB #: WriterCommands.xcu @@ -35721,7 +35669,7 @@ "TooltipLabel\n" "value.text" msgid "Numbering ABC List Style" -msgstr "" +msgstr "סגנון רשימה מספור א-ב (גדולות)" #. uxkph #: WriterCommands.xcu @@ -35731,7 +35679,7 @@ "Label\n" "value.text" msgid "Numbering abc List Style" -msgstr "" +msgstr "סגנון רשימה מספור א-ב (קטנות)" #. Lcogs #: WriterCommands.xcu @@ -35741,7 +35689,7 @@ "Label\n" "value.text" msgid "Numbering abc List Style" -msgstr "" +msgstr "סגנון רשימה מספור א-ב (קטנות)" #. fYB5d #: WriterCommands.xcu @@ -35751,7 +35699,7 @@ "TooltipLabel\n" "value.text" msgid "Numbering abc List Style" -msgstr "" +msgstr "סגנון רשימה מספור א-ב (קטנות)" #. UHSTJ #: WriterCommands.xcu @@ -35761,7 +35709,7 @@ "Label\n" "value.text" msgid "Numbering IVX List Style" -msgstr "" +msgstr "סגנון רשימה מספור IVX" #. QwUVJ #: WriterCommands.xcu @@ -35771,7 +35719,7 @@ "Label\n" "value.text" msgid "Numbering IVX List Style" -msgstr "" +msgstr "סגנון רשימה מספור IVX" #. jXDLc #: WriterCommands.xcu @@ -35781,7 +35729,7 @@ "TooltipLabel\n" "value.text" msgid "Numbering IVX List Style" -msgstr "" +msgstr "סגנון רשימה מספור IVX" #. Pe4gB #: WriterCommands.xcu @@ -35791,7 +35739,7 @@ "Label\n" "value.text" msgid "Numbering ivx List Style" -msgstr "" +msgstr "סגנון רשימה מספור ivx" #. dHZMF #: WriterCommands.xcu @@ -35801,7 +35749,7 @@ "TooltipLabel\n" "value.text" msgid "Numbering ivx List Style" -msgstr "" +msgstr "סגנון רשימה מספור ivx" #. ZSf5C #: WriterCommands.xcu @@ -35811,7 +35759,7 @@ "Label\n" "value.text" msgid "Numbering ivx List Style" -msgstr "" +msgstr "סגנון רשימה מספור ivx" #. EJceH #: WriterCommands.xcu @@ -35821,7 +35769,7 @@ "Label\n" "value.text" msgid "Default Table Style" -msgstr "" +msgstr "סגנון טבלה כברירת מחדל" #. 4AbSB #: WriterCommands.xcu @@ -36061,7 +36009,7 @@ "Label\n" "value.text" msgid "Toggle Outline Folding" -msgstr "" +msgstr "שינוי מצב קיפול מתאר" #. mByUW #: WriterCommands.xcu @@ -36071,7 +36019,7 @@ "TooltipLabel\n" "value.text" msgid "Fold or unfold outline content in document" -msgstr "" +msgstr "קיפול או פריסה של תוכן מתאר במסמך" #. nFACE #: WriterCommands.xcu @@ -36105,25 +36053,23 @@ #. cHDC7 #: WriterFormWindowState.xcu -#, fuzzy msgctxt "" "WriterFormWindowState.xcu\n" "..WriterFormWindowState.UIElements.States.private:resource/popupmenu/draw\n" "UIName\n" "value.text" msgid "Shape" -msgstr "צורות" +msgstr "צורה" #. TWYUF #: WriterFormWindowState.xcu -#, fuzzy msgctxt "" "WriterFormWindowState.xcu\n" "..WriterFormWindowState.UIElements.States.private:resource/popupmenu/drawtext\n" "UIName\n" "value.text" msgid "Shape Text" -msgstr "התאמת גודל טקסט" +msgstr "כתב מעוצב" #. GZHRT #: WriterFormWindowState.xcu @@ -36433,7 +36379,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "עצם OLE" #. nCSvk #: WriterFormWindowState.xcu @@ -36913,7 +36859,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "עצם OLE" #. v45LV #: WriterGlobalWindowState.xcu @@ -37433,7 +37379,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "עצם OLE" #. 5GFnw #: WriterReportWindowState.xcu @@ -37733,7 +37679,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "עצם OLE" #. gaswH #: WriterWebWindowState.xcu @@ -38093,7 +38039,7 @@ "UIName\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "סרגל מחברת" #. qgAuR #: WriterWindowState.xcu @@ -38153,7 +38099,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "" +msgstr "קיצורי דרך בסרגל מחברות" #. UDnFL #: WriterWindowState.xcu @@ -38393,7 +38339,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "עצם OLE" #. Tgtuj #: WriterWindowState.xcu @@ -38583,7 +38529,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode)" -msgstr "" +msgstr "רגיל (מצב יחיד)" #. h6gRt #: WriterWindowState.xcu @@ -38933,7 +38879,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "עצם OLE" #. URXoj #: XFormsWindowState.xcu diff -Nru libreoffice-7.4.6/translations/source/he/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.4.7/translations/source/he/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.4.6/translations/source/he/officecfg/registry/data/org/openoffice/Office.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/officecfg/registry/data/org/openoffice/Office.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2021-02-26 09:37+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542023484.000000\n" #. HhMVS @@ -1436,7 +1436,7 @@ "STR_DELETE_SLIDES\n" "value.text" msgid "Delete %SLIDES slides." -msgstr "מחק %SLIDES שקופיות." +msgstr "מחיקת %SLIDES שקופיות." #. LSpri #: PresentationMinimizer.xcu @@ -1446,7 +1446,7 @@ "STR_OPTIMIZE_IMAGES\n" "value.text" msgid "Optimize %IMAGES images to %QUALITY% JPEG quality at %RESOLUTION DPI." -msgstr "בצע מיטוב של%IMAGES תמונות לאיכות%QUALITY% JPEG ב-%RESOLUTION DPI." +msgstr "ביצוע מיטוב של תמונות %IMAGES לאיכות JPEG‏ %QUALITY% ב־%RESOLUTION נק׳ לאינטש." #. m5pAx #: PresentationMinimizer.xcu @@ -1456,7 +1456,7 @@ "STR_CREATE_REPLACEMENT\n" "value.text" msgid "Create replacement images for %OLE objects." -msgstr "צור תמונות חלופיות לאובייקטי %OLE." +msgstr "יצירת תמונות חלופיות לעצמי %OLE." #. VACj8 #: PresentationMinimizer.xcu @@ -2196,7 +2196,7 @@ "Left\n" "value.text" msgid "Ctrl-'A'" -msgstr "" +msgstr "Ctrl-'A'" #. GnAKF #: PresenterScreen.xcu @@ -2206,7 +2206,7 @@ "Right\n" "value.text" msgid "Turn off pointer as pen mode" -msgstr "" +msgstr "כיבוי הסמן כמצב עט" #. EMh4x #: PresenterScreen.xcu @@ -5616,7 +5616,7 @@ "Name\n" "value.text" msgid "ProjectID" -msgstr "קוד_פרוייקט" +msgstr "מזהה_מיזם" #. GCdAw #: TableWizard.xcu @@ -5626,7 +5626,7 @@ "ShortName\n" "value.text" msgid "ProjectID" -msgstr "קוד_פרוייקט" +msgstr "מזהה_מיזם" #. cVGBG #: TableWizard.xcu @@ -6296,7 +6296,7 @@ "Name\n" "value.text" msgid "Projects" -msgstr "פרוייקטים" +msgstr "מיזמים" #. pnCrD #: TableWizard.xcu @@ -6306,7 +6306,7 @@ "Name\n" "value.text" msgid "ProjectID" -msgstr "קוד_פרוייקט" +msgstr "מזהה_מיזם" #. JbCD5 #: TableWizard.xcu @@ -6316,7 +6316,7 @@ "ShortName\n" "value.text" msgid "ProjectID" -msgstr "קוד_פרוייקט" +msgstr "מזהה_מיזם" #. eCSRD #: TableWizard.xcu @@ -6326,7 +6326,7 @@ "Name\n" "value.text" msgid "ProjectName" -msgstr "שם_פרוייקט" +msgstr "שם_מיזם" #. cEBrY #: TableWizard.xcu @@ -6336,7 +6336,7 @@ "ShortName\n" "value.text" msgid "ProjctName" -msgstr "ש_פרוייקט" +msgstr "שם_מיזם" #. GQFCj #: TableWizard.xcu @@ -6346,7 +6346,7 @@ "Name\n" "value.text" msgid "ProjectDescription" -msgstr "תאור_פרוייקט" +msgstr "תיאור_מיזם" #. kysbo #: TableWizard.xcu @@ -6356,7 +6356,7 @@ "ShortName\n" "value.text" msgid "ProjctDscr" -msgstr "ת_פרוייקט" +msgstr "תיאור_מיזם" #. 39wHQ #: TableWizard.xcu @@ -7116,7 +7116,7 @@ "Name\n" "value.text" msgid "ProjectID" -msgstr "קוד_פרויקט" +msgstr "מזהה_מיזם" #. JRKXr #: TableWizard.xcu @@ -7126,7 +7126,7 @@ "ShortName\n" "value.text" msgid "ProjectID" -msgstr "קוד_פרויקט" +msgstr "מזהה_מיזם" #. ofEYv #: TableWizard.xcu diff -Nru libreoffice-7.4.6/translations/source/he/oox/messages.po libreoffice-7.4.7/translations/source/he/oox/messages.po --- libreoffice-7.4.6/translations/source/he/oox/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/oox/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2021-01-26 17:37+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" #. C5e9E #: oox/inc/strings.hrc:15 @@ -31,7 +31,7 @@ #: oox/inc/strings.hrc:17 msgctxt "STR_SLIDE_NAME" msgid "Slide" -msgstr "" +msgstr "שקופית" #. wH3TZ msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/he/readlicense_oo/docs.po libreoffice-7.4.7/translations/source/he/readlicense_oo/docs.po --- libreoffice-7.4.6/translations/source/he/readlicense_oo/docs.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/readlicense_oo/docs.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2020-12-29 17:36+0000\n" +"PO-Revision-Date: 2023-03-12 10:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542023487.000000\n" #. q6Gg3 @@ -185,7 +185,7 @@ "s2we10\n" "readmeitem.text" msgid "As a general rule, you are recommended to install ${PRODUCTNAME} via the installation methods recommended by your particular Linux distribution (such as the Ubuntu Software Center, in the case of Ubuntu Linux). This is because it is usually the simplest way to obtain an installation that is optimally integrated into your system. Indeed, ${PRODUCTNAME} may well be already installed by default when you originally install your Linux operating system." -msgstr "באופן כללי, מומלץ להתקין את ${PRODUCTNAME} באמצעות שיטות ההתקנה המומלצות להפצת הלינוקס שלך (כמו למשל מרכז התכנה של אובונטו, במקרה של הפצת אובונטו). המלצה זו הנה כיוון שלרוב זו הצורה הפשוטה ביותר לקבל חבילה שמותקנת ומשולבת כראוי במערכת שלך. למעשה, יתכן כי חבילת ${PRODUCTNAME} כבר מותקנת כבררת מחדל בעת התקנת מערכת ההפעלה שלך המבוססת לינוקס." +msgstr "באופן כללי, מומלץ להתקין את ${PRODUCTNAME} באמצעות שיטות ההתקנה המומלצות להפצת הלינוקס שלך (כמו למשל מרכז התכנה של אובונטו, במקרה של הפצת אובונטו). המלצה זו הנה כיוון שלרוב זו הצורה הפשוטה ביותר לקבל חבילה שמותקנת ומשולבת כראוי במערכת שלך. למעשה, יתכן כי חבילת ${PRODUCTNAME} כבר מותקנת כברירת מחדל בעת התקנת מערכת ההפעלה שלך המבוססת לינוקס." #. 7qBGn #: readme.xrm @@ -590,7 +590,7 @@ "abcdef\n" "readmeitem.text" msgid "Difficulties starting ${PRODUCTNAME} (e.g. applications hang) as well as problems with the screen display are often caused by the graphics card driver. If these problems occur, please update your graphics card driver or try using the graphics driver delivered with your operating system." -msgstr "" +msgstr "קשיים בהפעלת ${PRODUCTNAME} (למשל: היישומים תקועים) לרבות תקלות בתצוגת המסך נגרמים בדרך כלל על ידי הכרטיס הגרפי. אם התקלות האלו חוזרות על עצמן, נא לעדכן את מנהל ההתקן של הכרטיס הגרפי שלך באמצעות מנהל ההתקן הגרפי שהגיע עם מערכת ההפעלה שלך." #. inrAd #: readme.xrm @@ -671,7 +671,7 @@ "pji76w\n" "readmeitem.text" msgid "File locking is enabled by default in ${PRODUCTNAME}. On a network that uses the Network File System protocol (NFS), the locking daemon for NFS clients must be active. To disable file locking, edit the soffice script and change the line \"export SAL_ENABLE_FILE_LOCKING\" to \"# export SAL_ENABLE_FILE_LOCKING\". If you disable file locking, the write access of a document is not restricted to the user who first opens the document." -msgstr "נעילת קבצים מופעלת כבררת מחדל ב־${PRODUCTNAME}. ברשת המשתמשת בפרוטוקול קובצי רשת (NFS), סוכן הנעילה עבור לקוחות NFS חייב להיות פעיל. כדי לנטרל נעילת קבצים, יש לערוך את הסקריפט soffice ולשנות את השורה \"export SAL_ENABLE_FILE_LOCKING\" ל־\"# export SAL_ENABLE_FILE_LOCKING\". אם תנטרל את נעילת הקבצים, הגישה לכתיבה למסמך אינה מוגבלת למשתמש הראשון שפותח את המסמך." +msgstr "נעילת קבצים מופעלת כברירת מחדל ב־${PRODUCTNAME}. ברשת המשתמשת בפרוטוקול קובצי רשת (NFS), סוכן הנעילה עבור לקוחות NFS חייב להיות פעיל. כדי לנטרל נעילת קבצים, יש לערוך את הסקריפט soffice ולשנות את השורה \"export SAL_ENABLE_FILE_LOCKING\" ל־\"# export SAL_ENABLE_FILE_LOCKING\". אם תנטרל את נעילת הקבצים, הגישה לכתיבה למסמך אינה מוגבלת למשתמש הראשון שפותח את המסמך." #. cbpAz #: readme.xrm @@ -689,7 +689,7 @@ "pji76w0\n" "readmeitem.text" msgid "By default, ${PRODUCTNAME} favours nice-looking graphics over speed. If you experience slow graphics, switching off 'Tools - Options - ${PRODUCTNAME} - View - Use Anti-Aliasing' may help." -msgstr "כבררת מחדל, חבילת ${PRODUCTNAME} מעדיפה גרפיקה נעימה לעין על פני מהירות. אם הגרפיקה מעמיסה על המחשב יתר על המידה, כיבוי האפשרות ‚כלים - אפשרויות - ${PRODUCTNAME} - תצוגה - שימוש בהחלקת קצוות‘ עשויה לסייע." +msgstr "כברירת מחדל, חבילת ${PRODUCTNAME} מעדיפה גרפיקה נעימה לעין על פני מהירות. אם הגרפיקה מעמיסה על המחשב יתר על המידה, כיבוי האפשרות ‚כלים - אפשרויות - ${PRODUCTNAME} - תצוגה - שימוש בהחלקת קצוות‘ עשויה לסייע." #. bbgfk #: readme.xrm diff -Nru libreoffice-7.4.6/translations/source/he/sc/messages.po libreoffice-7.4.7/translations/source/he/sc/messages.po --- libreoffice-7.4.6/translations/source/he/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2021-03-16 04:37+0000\n" +"PO-Revision-Date: 2023-03-12 10:34+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565528660.000000\n" #. kBovX @@ -1537,25 +1537,25 @@ #: sc/inc/globstr.hrc:272 msgctxt "STR_STYLENAME_STANDARD" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. TG9pD #: sc/inc/globstr.hrc:273 msgctxt "STR_STYLENAME_HEADING" msgid "Heading" -msgstr "" +msgstr "כותרת" #. NM7R3 #: sc/inc/globstr.hrc:274 msgctxt "STR_STYLENAME_HEADING_1" msgid "Heading 1" -msgstr "" +msgstr "כותרת 1" #. 8XF63 #: sc/inc/globstr.hrc:275 msgctxt "STR_STYLENAME_HEADING_2" msgid "Heading 2" -msgstr "" +msgstr "כותרת 2" #. WBuWS #: sc/inc/globstr.hrc:276 @@ -1573,7 +1573,7 @@ #: sc/inc/globstr.hrc:278 msgctxt "STR_STYLENAME_FOOTNOTE" msgid "Footnote" -msgstr "" +msgstr "הערת שוליים" #. 2hk6H #: sc/inc/globstr.hrc:279 @@ -16993,7 +16993,7 @@ #: sc/inc/strings.hrc:59 msgctxt "SCSTR_NO_TAB_BG_COLOR" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. yEEuF #: sc/inc/strings.hrc:60 @@ -17551,10 +17551,9 @@ #. rTGKc #: sc/inc/strings.hrc:155 -#, fuzzy msgctxt "SCSTR_CONDITION" msgid "Condition " -msgstr "תנאי" +msgstr "תנאי " #. 56Wmj #. content description strings are also use d in ScLinkTargetsObj @@ -19173,37 +19172,37 @@ #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:49 msgctxt "aggregatefunctionentry|average" msgid "Average" -msgstr "" +msgstr "ממוצע" #. K4a9A #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:50 msgctxt "aggregatefunctionentry|min" msgid "Minimum Value" -msgstr "" +msgstr "ערך מזערי" #. PBUKX #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:51 msgctxt "aggregatefunctionentry|max" msgid "Maximum Value" -msgstr "" +msgstr "ערך מרבי" #. nFRnG #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:66 msgctxt "aggregatefunctionentry/cols" msgid "Columns" -msgstr "" +msgstr "עמודות" #. BDhZj #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:75 msgctxt "aggregatefunctionentry|delete" msgid "Delete" -msgstr "" +msgstr "מחיקה" #. NCX7N #: sc/uiconfig/scalc/ui/allheaderfooterdialog.ui:8 msgctxt "allheaderfooterdialog|AllHeaderFooterDialog" msgid "Headers/Footers" -msgstr "כותרות עליונותתחתונות" +msgstr "כותרות עליונות/תחתונות" #. 5TTBG #: sc/uiconfig/scalc/ui/allheaderfooterdialog.ui:139 @@ -19239,32 +19238,31 @@ #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:104 msgctxt "analysisofvariancedialog|input-range-label" msgid "Input range:" -msgstr "" +msgstr "טווח קלט:" #. hKLBC #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:118 msgctxt "analysisofvariancedialog|output-range-label" msgid "Results to:" -msgstr "" +msgstr "תוצאות אל:" #. APZAw #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:186 -#, fuzzy msgctxt "analysisofvariancedialog|label4" msgid "Data" -msgstr "תאריך" +msgstr "נתונים" #. xA3Mm #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:218 msgctxt "analysisofvariancedialog|radio-single-factor" msgid "Single factor" -msgstr "" +msgstr "מקדם יחיד" #. JMMJa #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:233 msgctxt "analysisofvariancedialog|radio-two-factor" msgid "Two factor" -msgstr "" +msgstr "שני מקדמים" #. MggLT #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:252 @@ -19274,24 +19272,21 @@ #. J6Gea #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:284 -#, fuzzy msgctxt "analysisofvariancedialog|groupedby-columns-radio" msgid "Columns" -msgstr "עמודה" +msgstr "עמודות" #. riGGW #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:299 -#, fuzzy msgctxt "analysisofvariancedialog|groupedby-rows-radio" msgid "Rows" -msgstr "שורה" +msgstr "שורות" #. jBuzS #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:318 -#, fuzzy msgctxt "analysisofvariancedialog|label2" msgid "Grouped by" -msgstr "קיבוץ לפי: " +msgstr "קיבוץ לפי" #. o4Aw2 #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:352 @@ -19736,10 +19731,9 @@ #. 2Cttx #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:245 -#, fuzzy msgctxt "chisquaretestdialog|label2" msgid "Grouped by" -msgstr "קיבוץ לפי: " +msgstr "קיבוץ לפי" #. tAdCX #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:270 @@ -19815,7 +19809,7 @@ #, fuzzy msgctxt "colwidthdialog|default" msgid "_Default value" -msgstr "ערך בררת מחדל" +msgstr "ערך ברירת מחדל" #. rov8K #: sc/uiconfig/scalc/ui/colwidthdialog.ui:129 @@ -20994,10 +20988,9 @@ #. BP2jQ #: sc/uiconfig/scalc/ui/correlationdialog.ui:244 -#, fuzzy msgctxt "correlationdialog|label2" msgid "Grouped by" -msgstr "קיבוץ לפי: " +msgstr "קיבוץ לפי" #. eC2za #: sc/uiconfig/scalc/ui/correlationdialog.ui:269 @@ -21046,10 +21039,9 @@ #. FgzdQ #: sc/uiconfig/scalc/ui/covariancedialog.ui:244 -#, fuzzy msgctxt "covariancedialog|label2" msgid "Grouped by" -msgstr "קיבוץ לפי: " +msgstr "קיבוץ לפי" #. XfrBg #: sc/uiconfig/scalc/ui/covariancedialog.ui:269 @@ -22736,10 +22728,9 @@ #. MKEzF #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:245 -#, fuzzy msgctxt "descriptivestatisticsdialog|label2" msgid "Grouped by" -msgstr "קיבוץ לפי: " +msgstr "קיבוץ לפי" #. 8UDQc #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:270 @@ -22991,10 +22982,9 @@ #. JU2hx #: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:251 -#, fuzzy msgctxt "exponentialsmoothingdialog|label2" msgid "Grouped by" -msgstr "קיבוץ לפי: " +msgstr "קיבוץ לפי" #. w4UYJ #: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:285 @@ -23784,10 +23774,9 @@ #. RdQeE #: sc/uiconfig/scalc/ui/functionpanel.ui:86 -#, fuzzy msgctxt "functionpanel|category" msgid "Array" -msgstr "מערך " +msgstr "מערך" #. h4kRr #: sc/uiconfig/scalc/ui/functionpanel.ui:87 @@ -23907,7 +23896,7 @@ #, fuzzy msgctxt "goalseekdlg|label1" msgid "Default Settings" -msgstr "הגדרות בררת מחדל" +msgstr "הגדרות ברירת מחדל" #. Aguih #: sc/uiconfig/scalc/ui/goalseekdlg.ui:263 @@ -25162,10 +25151,9 @@ #. QzpE8 #: sc/uiconfig/scalc/ui/movingaveragedialog.ui:270 -#, fuzzy msgctxt "movingaveragedialog|label2" msgid "Grouped by" -msgstr "קיבוץ לפי: " +msgstr "קיבוץ לפי" #. ZFgCx #: sc/uiconfig/scalc/ui/movingaveragedialog.ui:304 @@ -25265,7 +25253,7 @@ #, fuzzy msgctxt "multipleoperationsdialog|label1" msgid "Default Settings" -msgstr "הגדרות בררת מחדל" +msgstr "הגדרות ברירת מחדל" #. ZQKXx #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:280 @@ -25574,19 +25562,19 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:2997 msgctxt "CalcNotebookbar|FileMenuButton" msgid "_File" -msgstr "" +msgstr "_קובץ" #. wh523 #: sc/uiconfig/scalc/ui/notebookbar.ui:3016 msgctxt "CalcNotebookbar|HelpMenuButton" msgid "_Help" -msgstr "" +msgstr "ע_זרה" #. 3iDW7 #: sc/uiconfig/scalc/ui/notebookbar.ui:3071 msgctxt "CalcNotebookbar|FileLabel" msgid "~File" -msgstr "" +msgstr "~קובץ" #. EBQTu #: sc/uiconfig/scalc/ui/notebookbar.ui:3531 @@ -25666,127 +25654,127 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:8474 msgctxt "CalcNotebookbar|DataMenuButton" msgid "_Data" -msgstr "" +msgstr "_נתונים" #. xzx9j #: sc/uiconfig/scalc/ui/notebookbar.ui:8580 msgctxt "CalcNotebookbar|DataLabel" msgid "~Data" -msgstr "" +msgstr "~נתונים" #. CBEHA #: sc/uiconfig/scalc/ui/notebookbar.ui:9383 msgctxt "CalcNotebookbar|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "_סקירה" #. 7FXbr #: sc/uiconfig/scalc/ui/notebookbar.ui:9468 msgctxt "CalcNotebookbar|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "~סקירה" #. NT37F #: sc/uiconfig/scalc/ui/notebookbar.ui:10354 msgctxt "CalcNotebookbar|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "_תצוגה" #. rPdAq #: sc/uiconfig/scalc/ui/notebookbar.ui:10439 msgctxt "CalcNotebookbar|ViewLabel" msgid "~View" -msgstr "" +msgstr "~תצוגה" #. SAv6Z #: sc/uiconfig/scalc/ui/notebookbar.ui:11548 msgctxt "CalcNotebookbar|ImageMenuButton" msgid "Ima_ge" -msgstr "" +msgstr "תמו_נה" #. rwprK #: sc/uiconfig/scalc/ui/notebookbar.ui:11669 msgctxt "CalcNotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "תמו~נה" #. EjbzV #: sc/uiconfig/scalc/ui/notebookbar.ui:12850 msgctxt "CalcNotebookbar|DrawMenuButton" msgid "_Draw" -msgstr "" +msgstr "_ציור" #. iagRv #: sc/uiconfig/scalc/ui/notebookbar.ui:12957 msgctxt "CalcNotebookbar|DrawLabel" msgid "~Draw" -msgstr "" +msgstr "~ציור" #. EgeGL #: sc/uiconfig/scalc/ui/notebookbar.ui:13415 msgctxt "CalcNotebookbar|ConvertMenuButton" msgid "Convert" -msgstr "" +msgstr "המרה" #. PRmbH #: sc/uiconfig/scalc/ui/notebookbar.ui:13705 msgctxt "CalcNotebookbar|ObjectMenuButton" msgid "_Object" -msgstr "" +msgstr "_עצם" #. xTKVv #: sc/uiconfig/scalc/ui/notebookbar.ui:13812 msgctxt "CalcNotebookbar|FrameLabel" msgid "~Object" -msgstr "" +msgstr "~עצם" #. cHyKz #: sc/uiconfig/scalc/ui/notebookbar.ui:14371 msgctxt "CalcNotebookbar|MediaMenuButton" msgid "_Media" -msgstr "" +msgstr "מ_דיה" #. CJ2qx #: sc/uiconfig/scalc/ui/notebookbar.ui:14476 msgctxt "CalcNotebookbar|MediaLabel" msgid "~Media" -msgstr "" +msgstr "מ~דיה" #. eQK6A #: sc/uiconfig/scalc/ui/notebookbar.ui:14858 msgctxt "CalcNotebookbar|PrintMenuButton" msgid "_Print" -msgstr "" +msgstr "ה_דפסה" #. sCGyG #: sc/uiconfig/scalc/ui/notebookbar.ui:14941 msgctxt "CalcNotebookbar|PrintLabel" msgid "~Print" -msgstr "" +msgstr "ה~דפסה" #. 5JVAt #: sc/uiconfig/scalc/ui/notebookbar.ui:15749 msgctxt "CalcNotebookbar|FormMenuButton" msgid "Fo_rm" -msgstr "" +msgstr "_טופס" #. CCEAK #: sc/uiconfig/scalc/ui/notebookbar.ui:15833 msgctxt "CalcNotebookbar|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "~טופס" #. DHeyE #: sc/uiconfig/scalc/ui/notebookbar.ui:15890 msgctxt "CalcNotebookbar|ExtensionMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ה_רחבה" #. 4ZDL7 #: sc/uiconfig/scalc/ui/notebookbar.ui:15964 msgctxt "CalcNotebookbar|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ה~רחבה" #. 3Ec6T #: sc/uiconfig/scalc/ui/notebookbar.ui:17153 @@ -25804,7 +25792,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3032 msgctxt "notebookbar_compact|FileLabel" msgid "_File" -msgstr "" +msgstr "_קובץ" #. PU9ct #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3081 @@ -25841,7 +25829,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5637 msgctxt "notebookbar_compact|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "הו_ספה" #. CDXv3 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5692 @@ -25925,86 +25913,85 @@ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556 msgctxt "notebookbar_compact|ShapeLabel" msgid "~Draw" -msgstr "" +msgstr "~ציור" #. DoVwy #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" -msgstr "" +msgstr "עצם" #. JXKiY #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559 msgctxt "notebookbar_compact|FrameLabel" msgid "~Object" -msgstr "" +msgstr "~עצם" #. q8wnS #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" -msgstr "" +msgstr "מ_דיה" #. 7HDt3 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" -msgstr "" +msgstr "מ~דיה" #. vSDok #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" -msgstr "" +msgstr "הדפסה" #. goiqQ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" -msgstr "" +msgstr "ה~דפסה" #. EBGs5 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237 msgctxt "notebookbar_compact|FormButton" msgid "Fo_rm" -msgstr "" +msgstr "_טופס" #. EKA8X #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289 msgctxt "notebookbar_compact|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "~טופס" #. 8SvE5 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368 msgctxt "notebookbar_compact|ExtensionMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ה_רחבה" #. WH5NR #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426 msgctxt "notebookbar_compact|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ה~רחבה" #. 8fhwb #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "_כלים" #. kpc43 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479 msgctxt "notebookbar_compact|DevLabel" msgid "~Tools" -msgstr "" +msgstr "~כלים" #. LL2dj #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3305 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|fileb" msgid "_File" -msgstr "קובץ" +msgstr "_קובץ" #. MR7ZB #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3413 @@ -26015,51 +26002,45 @@ #. AXNcR #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3529 #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5070 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|paragraphstyleb" msgid "St_yles" -msgstr "סגנונות" +msgstr "_סגנונות" #. scY66 #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3680 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|formatb" msgid "F_ont" -msgstr "גופן" +msgstr "_גופן" #. LFB3L #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3906 msgctxt "notebookbar_groupedbar_compact|paragraphb" msgid "_Paragraph" -msgstr "" +msgstr "_פסקה" #. UnsAB #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4304 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|numberb" msgid "_Number" -msgstr "מספרים" +msgstr "מ_ספר" #. hBvBa #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4415 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|datab" msgid "_Data" -msgstr "נתונים" +msgstr "_נתונים" #. CMGpS #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4526 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|insertb" msgid "_Insert" -msgstr "הוספה" +msgstr "הו_ספה" #. 5wZbP #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4637 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|reviewb" msgid "_Review" -msgstr "סקירה" +msgstr "_סקירה" #. Uyv2y #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4748 @@ -26199,7 +26180,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2608 msgctxt "notebookbar_groupedbar_full|defaultD" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. Z7t2R #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2622 @@ -26570,7 +26551,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:152 msgctxt "notebookbar_groups|stylemenudefault" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. bPNCf #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:167 @@ -26660,7 +26641,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:304 msgctxt "notebookbar_groups|tablestyledefault" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. Gjjky #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:312 @@ -27145,7 +27126,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:397 msgctxt "optcalculatepage|datestd" msgid "12/30/1899 (defa_ult)" -msgstr "30/12/1899 (בררת מחדל)" +msgstr "30/12/1899 (ברירת מחדל)" #. ApqYV #: sc/uiconfig/scalc/ui/optcalculatepage.ui:401 @@ -27325,7 +27306,7 @@ #: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:56 msgctxt "optcompatibilitypage|keybindings" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. 3mLBb #: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:57 @@ -27500,7 +27481,7 @@ #: sc/uiconfig/scalc/ui/optformula.ui:206 msgctxt "optformula|calcdefault" msgid "Default settings" -msgstr "הגדרות בררת מחדל" +msgstr "הגדרות ברירת מחדל" #. RwEz8 #: sc/uiconfig/scalc/ui/optformula.ui:227 @@ -27583,7 +27564,7 @@ #, fuzzy msgctxt "optimalcolwidthdialog|default" msgid "_Default value" -msgstr "ערך בררת מחדל" +msgstr "ערך ברירת מחדל" #. RMGd4 #: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:130 @@ -27621,7 +27602,7 @@ #, fuzzy msgctxt "optimalrowheightdialog|default" msgid "_Default value" -msgstr "ערך בררת מחדל" +msgstr "ערך ברירת מחדל" #. vCDBD #: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:129 @@ -29509,7 +29490,7 @@ #, fuzzy msgctxt "rowheightdialog|default" msgid "_Default value" -msgstr "ערך בררת מחדל" +msgstr "ערך ברירת מחדל" #. stFFG #: sc/uiconfig/scalc/ui/rowheightdialog.ui:129 @@ -33003,16 +32984,15 @@ #. 6FhCS #: sc/uiconfig/scalc/ui/textimportcsv.ui:717 -#, fuzzy msgctxt "textimportcsv|textcolumntype" msgid "Column t_ype:" -msgstr "סוג עמודה" +msgstr "_סוג עמודה:" #. XDFnr #: sc/uiconfig/scalc/ui/textimportcsv.ui:733 msgctxt "textimportcsv|extended_tip|columntype" msgid "Choose a column in the preview window and select the data type to be applied the imported data." -msgstr "" +msgstr "יש לבחור בעמודה בחלון התצוגה המקדימה ולבחור את סוג הנתונים שיוחל על הנתונים המיובאים." #. A79gL #: sc/uiconfig/scalc/ui/textimportcsv.ui:812 @@ -33080,7 +33060,7 @@ #: sc/uiconfig/scalc/ui/texttransformationentry.ui:28 msgctxt "texttransformationentry|name" msgid "Text Transformation" -msgstr "" +msgstr "התמרת טקסט" #. zXpJU #: sc/uiconfig/scalc/ui/texttransformationentry.ui:47 @@ -33151,10 +33131,9 @@ #. G6GjE #: sc/uiconfig/scalc/ui/tpviewpage.ui:83 -#, fuzzy msgctxt "tpviewpage|value" msgid "Value h_ighlighting" -msgstr "הבלטת ערכים" +msgstr "ה_דגשת ערכים" #. Ve6Bg #: sc/uiconfig/scalc/ui/tpviewpage.ui:91 @@ -33850,13 +33829,13 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:90 msgctxt "validationhelptabpage|inputhelp_label" msgid "_Input help:" -msgstr "" +msgstr "עזרה ל_קלט:" #. KTTfc #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:116 msgctxt "validationhelptabpage|extended_tip|inputhelp" msgid "Enter the message that you want to display when the cell or cell range is selected." -msgstr "" +msgstr "נא למלא את ההודעה שברצונך להציג כאשר התא או טווח התאים נבחר." #. epdvk #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:133 @@ -33868,49 +33847,46 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:148 msgctxt "validationhelptabpage|extended_tip|ValidationHelpTabPage" msgid "Enter the message that you want to display when the cell or cell range is selected in the sheet." -msgstr "" +msgstr "נא למלא את ההודעה שברצונך להציג כאשר התא או טווח התאים נבחר בגיליון." #. XEHEu #: sc/uiconfig/scalc/ui/warnautocorrect.ui:13 msgctxt "warnautocorrect|WarnAutoCorrect" msgid "%PRODUCTNAME Calc found an error in the formula entered." -msgstr "" +msgstr "%PRODUCTNAME Calc מצא שגיאה בנוסחה שמולאה." #. 7BDGp #: sc/uiconfig/scalc/ui/warnautocorrect.ui:14 msgctxt "warnautocorrect|WarnAutoCorrect" msgid "Do you want to accept the correction proposed below?" -msgstr "" +msgstr "לאשר את התיקון שהוצע להלן?" #. pSFWN #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:23 -#, fuzzy msgctxt "xmlsourcedialog|XMLSourceDialog" msgid "XML Source" -msgstr "מקור ‏‪HTML" +msgstr "מקור ‏‪XML" #. E5nmH #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:39 -#, fuzzy msgctxt "xmlsourcedialog|ok" msgid "_Import" -msgstr "יבוא" +msgstr "יי_בוא" #. B5Q88 #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:112 msgctxt "xmlsourcedialog|selectsource|tooltip_text" msgid "Browse to set source file." -msgstr "" +msgstr "עיון להגדרת קובץ המקור." #. WkbPB #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:126 msgctxt "xmlsourcedialog|sourcefile" msgid "- not set -" -msgstr "" +msgstr "- לא הוגדר -" #. peiAH #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:140 -#, fuzzy msgctxt "xmlsourcedialog|label1" msgid "Source File" msgstr "קובץ מקור" @@ -33919,13 +33895,13 @@ #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:184 msgctxt "xmlsourcedialog|label5" msgid "Mapped cell:" -msgstr "" +msgstr "תא ממופה:" #. eN8dT #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:276 msgctxt "xmlsourcedialog|label4" msgid "Map to Document" -msgstr "" +msgstr "מיפוי למסמך" #. 6A4E9 #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:301 diff -Nru libreoffice-7.4.6/translations/source/he/scaddins/messages.po libreoffice-7.4.7/translations/source/he/scaddins/messages.po --- libreoffice-7.4.6/translations/source/he/scaddins/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/scaddins/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-01-26 17:37+0000\n" +"PO-Revision-Date: 2023-03-06 11:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565510057.000000\n" #. i8Y7Z @@ -137,6 +137,8 @@ "Returns the number of the calendar week in which the specified date occurs.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead." msgstr "" +"מחזירה את מספר השבוע הקלנדרי בו מתרחש התאריך שצוין.\n" +"הפונקציה קיימת מטעמי תאימות מול מסמכי Microsoft Excel, במסמכים חדשים כדאי להשתמש ב־WEEKNUM במקום." #. FRcij #: scaddins/inc/analysis.hrc:60 @@ -199,6 +201,8 @@ "Returns the number of workdays between two dates.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead." msgstr "" +"מחזירה את מספר ימי העבודה בין שני תאריכים.\n" +"הפונקציה קיימת מטעמי תאימות מול מסמכי Microsoft Excel, במסמכים חדשים כדאי להשתמש ב־NETWORKDAYS במקום." #. t7PBi #: scaddins/inc/analysis.hrc:78 diff -Nru libreoffice-7.4.6/translations/source/he/scp2/source/ooo.po libreoffice-7.4.7/translations/source/he/scp2/source/ooo.po --- libreoffice-7.4.6/translations/source/he/scp2/source/ooo.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/scp2/source/ooo.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-02-21 15:23+0100\n" -"PO-Revision-Date: 2021-10-27 20:07+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542023489.000000\n" #. CYBGJ @@ -4487,7 +4487,7 @@ "STR_NAME_MODULE_EXTENSION_DICTIONARY_CKB\n" "LngText.text" msgid "Central Kurdish" -msgstr "" +msgstr "כורדית אמצעית" #. xEtQ6 #: module_ooo.ulf @@ -4496,7 +4496,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_CKB\n" "LngText.text" msgid "Central Kurdish spelling dictionary" -msgstr "" +msgstr "מילון איות בכורדית אמצעית" #. CCE5q #: module_ooo.ulf diff -Nru libreoffice-7.4.6/translations/source/he/sd/messages.po libreoffice-7.4.7/translations/source/he/sd/messages.po --- libreoffice-7.4.6/translations/source/he/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2021-03-14 21:37+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565192300.000000\n" #. WDjkB @@ -637,10 +637,9 @@ #. 4sRi2 #: sd/inc/strings.hrc:65 -#, fuzzy msgctxt "STR_TRANSFORM" msgid "Transform" -msgstr "שינוי" +msgstr "שחלוף" #. 3rF5y #: sd/inc/strings.hrc:66 @@ -652,7 +651,7 @@ #: sd/inc/strings.hrc:67 msgctxt "STR_DESC_LINEEND" msgid "Please enter a name for the new arrow style:" -msgstr "" +msgstr "נא למלא שם לסגנון החיצים החדש:" #. 7y2Si #: sd/inc/strings.hrc:68 @@ -773,6 +772,8 @@ "Are you sure you want to delete the layer \"$\"?\n" "Note: All objects on this layer will be deleted!" msgstr "" +"למחוק את השכבה „$”?\n" +"לתשומת לבך: כי העצמים שבשכבה הזאת יימחקו!" #. EcYBg #: sd/inc/strings.hrc:87 @@ -896,7 +897,7 @@ #: sd/inc/strings.hrc:105 msgctxt "STR_SCALE_TOOLTIP" msgid "Scaling factor of the document; right-click to change." -msgstr "" +msgstr "קנה מידה של המסמך, לחיצה ימנית לשינוי." #. NzFb7 #: sd/inc/strings.hrc:106 @@ -1198,7 +1199,7 @@ #: sd/inc/strings.hrc:158 msgctxt "STR_LOAD_PRESENTATION_LAYOUT" msgid "Load Master Slide" -msgstr "" +msgstr "טעינת שקופית בסיס" #. HxEp8 #: sd/inc/strings.hrc:159 @@ -1591,7 +1592,6 @@ #. bACAt #: sd/inc/strings.hrc:225 -#, fuzzy msgctxt "STR_UNDO_GRAFFILTER" msgid "Image filter" msgstr "מסנן תמונה" @@ -1640,7 +1640,7 @@ #: sd/inc/strings.hrc:232 msgctxt "STR_STATUSBAR_MASTERPAGE" msgid "Slide Master name. Right-click for list or click for dialog." -msgstr "" +msgstr "שם תבנית הבסיס. לחיצה ימנית לרשימה או לחיצה לחלונית." #. HcDvJ #: sd/inc/strings.hrc:233 @@ -1670,7 +1670,7 @@ #: sd/inc/strings.hrc:237 msgctxt "STR_TITLE_RENAMEMASTER" msgid "Rename Master Slide" -msgstr "" +msgstr "שינוי שם שקופית בסיס" #. rWiXQ #: sd/inc/strings.hrc:238 @@ -1806,7 +1806,6 @@ #. tR4CL #: sd/inc/strings.hrc:260 -#, fuzzy msgctxt "STR_PRESENTATIONS_STYLE_FAMILY" msgid "Presentation Styles" msgstr "סגנונות מצגת" @@ -1891,10 +1890,9 @@ #. 5FSEq #: sd/inc/strings.hrc:274 -#, fuzzy msgctxt "STR_OVERWRITE_WARNING" msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?" -msgstr "תיקיית היעד ‏‪'%FILENAME'‬‏ אינה ריקה. אפשר שחלק מהקבצים הקיימים בתיקיה יידרסו. האם להמשיך?‏" +msgstr "תיקיית היעד המקומית ‚%FILENAME’ אינה ריקה. חלק מהקבצים עלולים להיגרם. להמשיך?‏" #. DKw6n #: sd/inc/strings.hrc:276 @@ -1948,26 +1946,25 @@ #: sd/inc/strings.hrc:284 msgctxt "STR_MASTERSLIDE_NAME" msgid "Master Slide" -msgstr "" +msgstr "שקופית בסיס" #. 8WvYc #: sd/inc/strings.hrc:285 msgctxt "STR_MASTERSLIDE_LABEL" msgid "Master Slide:" -msgstr "" +msgstr "שקופית בסיס:" #. C3zZM #: sd/inc/strings.hrc:286 -#, fuzzy msgctxt "STR_MASTERPAGE_NAME" msgid "Master Page" -msgstr "עמודי מאסטר" +msgstr "עמוד בסיס" #. nTgKn #: sd/inc/strings.hrc:287 msgctxt "STR_MASTERPAGE_LABEL" msgid "Master Page:" -msgstr "" +msgstr "עמוד בסיס:" #. PacSi #: sd/inc/strings.hrc:288 @@ -2154,7 +2151,7 @@ #: sd/inc/strings.hrc:318 msgctxt "STR_LAYOUT_DEFAULT_NAME" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. rEPYV #: sd/inc/strings.hrc:319 @@ -2190,7 +2187,7 @@ #: sd/inc/strings.hrc:324 msgctxt "STR_SLIDE_SETUP_TITLE" msgid "Slide Properties" -msgstr "" +msgstr "מאפייני שקופית" #. pA7rP #: sd/inc/strings.hrc:326 @@ -2528,17 +2525,15 @@ #. sA8of #: sd/inc/strings.hrc:388 -#, fuzzy msgctxt "SID_SD_A11Y_P_FOOTER_N" msgid "PresentationFooter" -msgstr "מצב מצגת" +msgstr "כותרת_מצגת_תחתונה" #. KAC6Z #: sd/inc/strings.hrc:389 -#, fuzzy msgctxt "SID_SD_A11Y_P_HEADER_N" msgid "PresentationHeader" -msgstr "מצגת" +msgstr "כותרת_מצגת_עליונה" #. EfHeH #: sd/inc/strings.hrc:390 @@ -2652,17 +2647,15 @@ #. Lf9gB #: sd/inc/strings.hrc:409 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY" msgid "Direction:" -msgstr "_כיוון:" +msgstr "כיוון:" #. xxDXG #: sd/inc/strings.hrc:410 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY" msgid "Zoom:" -msgstr "תקריב" +msgstr "תקריב:" #. SvBeK #: sd/inc/strings.hrc:411 @@ -2673,24 +2666,21 @@ #. eJ4qZ #: sd/inc/strings.hrc:412 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY" msgid "First color:" -msgstr "עמודה ראשונה" +msgstr "צבע ראשון:" #. CSbCE #: sd/inc/strings.hrc:413 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY" msgid "Second color:" -msgstr "הצבע השני" +msgstr "צבע שני:" #. cZUiD #: sd/inc/strings.hrc:414 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY" msgid "Fill color:" -msgstr "עמודה ראשונה" +msgstr "צבע מילוי:" #. U5ZDL #: sd/inc/strings.hrc:415 @@ -2700,17 +2690,15 @@ #. vKLER #: sd/inc/strings.hrc:416 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY" msgid "Font:" -msgstr "גופן" +msgstr "גופן:" #. Fdsks #: sd/inc/strings.hrc:417 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY" msgid "Font color:" -msgstr "עמודה ראשונה" +msgstr "צבע גופן:" #. nT7dm #: sd/inc/strings.hrc:418 @@ -2727,38 +2715,33 @@ #. nAqeR #: sd/inc/strings.hrc:420 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY" msgid "Line color:" -msgstr "צבע קו" +msgstr "צבע קו:" #. w7G4Q #: sd/inc/strings.hrc:421 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY" msgid "Font size:" -msgstr "גודל גופן" +msgstr "גודל גופן:" #. R3GgU #: sd/inc/strings.hrc:422 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY" msgid "Size:" -msgstr "גודל" +msgstr "גודל:" #. YEwoz #: sd/inc/strings.hrc:423 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY" msgid "Amount:" -msgstr "סכום" +msgstr "כמות:" #. wiQPZ #: sd/inc/strings.hrc:424 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY" msgid "Color:" -msgstr "צבע" +msgstr "צבע:" #. f5u6C #: sd/inc/strings.hrc:425 @@ -2824,7 +2807,7 @@ #: sd/inc/strings.hrc:435 msgctxt "STR_CUSTOMANIMATION_MISC" msgid "Misc: %1" -msgstr "" +msgstr "שונות: %1" #. Ep4QY #: sd/inc/strings.hrc:436 @@ -2932,41 +2915,37 @@ #: sd/inc/strings.hrc:456 msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE" msgid "Slides per page:" -msgstr "" +msgstr "שקופיות לעמוד:" #. EPBUK #: sd/inc/strings.hrc:457 msgctxt "STR_IMPRESS_PRINT_UI_ORDER" msgid "Order:" -msgstr "" +msgstr "סדר:" #. BFEFJ #: sd/inc/strings.hrc:458 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT" msgid "~Contents" -msgstr "תוכן עניינים" +msgstr "~תוכן" #. AdWKp #: sd/inc/strings.hrc:459 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME" msgid "~Slide name" -msgstr "שם שקופית" +msgstr "שם ש~קופית" #. GkLky #: sd/inc/strings.hrc:460 -#, fuzzy msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME" msgid "P~age name" -msgstr "שם עמוד" +msgstr "שם ~עמוד" #. EFkVE #: sd/inc/strings.hrc:461 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE" msgid "~Date and time" -msgstr "תאריך ושעה" +msgstr "~תאריך ושעה" #. ZcDFL #: sd/inc/strings.hrc:462 @@ -2982,10 +2961,9 @@ #. WmYKp #: sd/inc/strings.hrc:464 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS" msgid "~Size" -msgstr "גודל" +msgstr "~גודל" #. qDGVE #: sd/inc/strings.hrc:465 @@ -2995,7 +2973,6 @@ #. K7m8L #: sd/inc/strings.hrc:466 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES" msgid "Page sides" msgstr "צדי העמוד" @@ -3065,25 +3042,25 @@ #: sd/inc/strings.hrc:481 msgctxt "RID_SVXSTR_MENU_NEXT" msgid "~Next" -msgstr "" +msgstr "ה~בא" #. YG7NQ #: sd/inc/strings.hrc:482 msgctxt "RID_SVXSTR_MENU_NEXT" msgid "~Previous" -msgstr "" +msgstr "ה~קודם" #. A9eJu #: sd/inc/strings.hrc:483 msgctxt "RID_SVXSTR_MENU_FIRST" msgid "~First Slide" -msgstr "" +msgstr "השקופית ה~ראשונה" #. CVatA #: sd/inc/strings.hrc:484 msgctxt "RID_SVXSTR_MENU_LAST" msgid "~Last Slide" -msgstr "" +msgstr "השקופית ה~אחרונה" #. Wkvpi #: sd/inc/strings.hrc:486 @@ -3093,7 +3070,6 @@ #. xNozF #: sd/uiconfig/sdraw/ui/breakdialog.ui:8 -#, fuzzy msgctxt "breakdialog|BreakDialog" msgid "Break" msgstr "מעבר" @@ -3151,7 +3127,7 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:42 msgctxt "copydlg|default" msgid "_Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. BCDCG #: sd/uiconfig/sdraw/ui/copydlg.ui:49 @@ -3163,26 +3139,25 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:70 msgctxt "copydlg|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "שומר את כל השינויים וסוגר את החלונית." #. AiFRo #: sd/uiconfig/sdraw/ui/copydlg.ui:89 msgctxt "copydlg|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "סוגר את החלונית ומתעלם מכל השינויים." #. HhrrQ #: sd/uiconfig/sdraw/ui/copydlg.ui:139 -#, fuzzy msgctxt "copydlg|label4" msgid "Number of _copies:" -msgstr "מספר עותקים" +msgstr "מספר ~עותקים:" #. qgJLc #: sd/uiconfig/sdraw/ui/copydlg.ui:160 msgctxt "copydlg|extended_tip|copies" msgid "Enter the number of copies you want to make." -msgstr "" +msgstr "נא לציין את מספר העותקים הרצוי." #. 3fqDJ #: sd/uiconfig/sdraw/ui/copydlg.ui:175 @@ -3198,24 +3173,21 @@ #. 27j9Q #: sd/uiconfig/sdraw/ui/copydlg.ui:218 -#, fuzzy msgctxt "copydlg|label5" msgid "_X axis:" -msgstr "ציר ה ‏‪X‬‏‏" +msgstr "צי_ר ה־X:" #. G5trD #: sd/uiconfig/sdraw/ui/copydlg.ui:232 -#, fuzzy msgctxt "copydlg|label6" msgid "_Y axis:" -msgstr "ציר ה ‏‪Y‬‏‏" +msgstr "_ציר ה־Y:" #. gHkmD #: sd/uiconfig/sdraw/ui/copydlg.ui:246 -#, fuzzy msgctxt "copydlg|label7" msgid "_Angle:" -msgstr "זווית" +msgstr "_זווית:" #. a63ej #: sd/uiconfig/sdraw/ui/copydlg.ui:266 @@ -3243,10 +3215,9 @@ #. 3Dyw2 #: sd/uiconfig/sdraw/ui/copydlg.ui:354 -#, fuzzy msgctxt "copydlg|label8" msgid "_Width:" -msgstr "רוחב" +msgstr "_רוחב:" #. YuAHc #: sd/uiconfig/sdraw/ui/copydlg.ui:368 @@ -3274,23 +3245,21 @@ #. ENMbc #: sd/uiconfig/sdraw/ui/copydlg.ui:456 -#, fuzzy msgctxt "copydlg|label10" msgid "_Start:" -msgstr "התחלה" +msgstr "ה_תחלה:" #. Z6aqk #: sd/uiconfig/sdraw/ui/copydlg.ui:470 -#, fuzzy msgctxt "copydlg|endlabel" msgid "_End:" -msgstr "סוף" +msgstr "_סוף:" #. ULShA #: sd/uiconfig/sdraw/ui/copydlg.ui:494 msgctxt "copydlg|extended_tip|start" msgid "Choose a color for the selected object." -msgstr "" +msgstr "נא לבחור את צבע העצם הנבחר." #. AAoBa #: sd/uiconfig/sdraw/ui/copydlg.ui:517 @@ -3342,7 +3311,6 @@ #. CehQE #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:144 -#, fuzzy msgctxt "crossfadedialog|label2" msgid "Increments:" msgstr "צעדים:" @@ -3393,13 +3361,13 @@ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:155 msgctxt "dlgsnap|xlabel" msgid "_X:" -msgstr "" +msgstr "_X:" #. AAfto #: sd/uiconfig/sdraw/ui/dlgsnap.ui:168 msgctxt "dlgsnap|ylabel" msgid "_Y:" -msgstr "" +msgstr "_Y:" #. pMnkL #: sd/uiconfig/sdraw/ui/dlgsnap.ui:183 @@ -3417,7 +3385,7 @@ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:255 msgctxt "dlgsnap|extended_tip|point" msgid "Inserts a snap point." -msgstr "" +msgstr "מוסיף נקודת הצמדה." #. k2rmV #: sd/uiconfig/sdraw/ui/dlgsnap.ui:266 @@ -3489,7 +3457,7 @@ #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:8 msgctxt "drawpagedialog|DrawPageDialog" msgid "Page Properties" -msgstr "" +msgstr "מאפייני עמוד" #. Py4db #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:136 @@ -3513,7 +3481,7 @@ #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:279 msgctxt "drawpagedialog|RID_SVXPAGE_THEME" msgid "Theme" -msgstr "" +msgstr "ערכת עיצוב" #. cKCg3 #: sd/uiconfig/sdraw/ui/drawparadialog.ui:8 @@ -3535,7 +3503,6 @@ #. HwdCp #: sd/uiconfig/sdraw/ui/drawparadialog.ui:231 -#, fuzzy msgctxt "drawparadialog|labelTP_TABULATOR" msgid "Tabs" msgstr "לשוניות" @@ -3592,7 +3559,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:110 msgctxt "drawprinteroptions|extended_tip|originalcolors" msgid "Specifies to print in original colors." -msgstr "" +msgstr "מציין הדפסה בצבעים המקוריים." #. 5FsHB #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:122 @@ -3604,7 +3571,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:131 msgctxt "drawprinteroptions|extended_tip|grayscale" msgid "Specifies to print colors as grayscale." -msgstr "" +msgstr "מציין הדפסת הצבעים בגווני אפור." #. oFnFq #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:143 @@ -3770,7 +3737,6 @@ #. bNzxC #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:809 -#, fuzzy msgctxt "drawprtldialog|RID_SVXPAGE_TABULATOR" msgid "Tabs" msgstr "לשוניות" @@ -3791,7 +3757,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:100 msgctxt "insertlayer|extended_tip|name" msgid "Enter a name for the new layer." -msgstr "" +msgstr "נא למלא שם לשכבה החדשה." #. kWarA #: sd/uiconfig/sdraw/ui/insertlayer.ui:109 @@ -3803,7 +3769,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:140 msgctxt "insertlayer|extended_tip|title" msgid "Enter the title of the layer." -msgstr "" +msgstr "נא למלא שם לשכבה." #. hCTSd #: sd/uiconfig/sdraw/ui/insertlayer.ui:149 @@ -3815,7 +3781,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:188 msgctxt "insertlayer|extended_tip|textview" msgid "Enter a description of the layer." -msgstr "" +msgstr "נא למלא תיאור לשכבה." #. g2K4k #: sd/uiconfig/sdraw/ui/insertlayer.ui:199 @@ -3833,7 +3799,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:223 msgctxt "insertlayer|extended_tip|visible" msgid "Show or hide the layer." -msgstr "" +msgstr "להציג או להסתיר את השכבה." #. BtGRo #: sd/uiconfig/sdraw/ui/insertlayer.ui:235 @@ -3897,7 +3863,6 @@ #. 4X9cK #: sd/uiconfig/sdraw/ui/namedesign.ui:8 -#, fuzzy msgctxt "namedesign|NameDesignDialog" msgid "Name HTML Design" msgstr "שם עבור עיצוב ‏‪‏‪HTML‬‏" @@ -4082,13 +4047,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:17054 msgctxt "DrawNotebookbar|FormMenuButton" msgid "3_d" -msgstr "" +msgstr "_תלת־ממד" #. fEyRX #: sd/uiconfig/sdraw/ui/notebookbar.ui:17161 msgctxt "DrawNotebookbar|FormLabel" msgid "3~d" -msgstr "" +msgstr "~תלת־ממד" #. 7ZLQw #: sd/uiconfig/sdraw/ui/notebookbar.ui:17685 @@ -4146,17 +4111,15 @@ #. msJmR #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4447 -#, fuzzy msgctxt "notebookbar_draw_compact|HomeLabel" msgid "~Home" msgstr "~בית" #. j6zsX #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5006 -#, fuzzy msgctxt "notebookbar_draw_compact|FieldMenuButton" msgid "Fiel_d" -msgstr "~שדה" +msgstr "_שדה" #. ZDsWu #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5546 @@ -4166,10 +4129,9 @@ #. d8cey #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5597 -#, fuzzy msgctxt "notebookbar_draw_compact|InsertLabel" msgid "~Insert" -msgstr "~הוספה" +msgstr "הו~ספה" #. kkPza #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6296 @@ -4209,14 +4171,12 @@ #. CqEAM #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9144 -#, fuzzy msgctxt "notebookbar_draw_compact|TextMenuButton" msgid "T_ext" msgstr "ט_קסט" #. LFcJC #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9198 -#, fuzzy msgctxt "notebookbar_draw_compact|ReferencesLabel" msgid "T~ext" msgstr "ט~קסט" @@ -4235,14 +4195,12 @@ #. EGCcN #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 -#, fuzzy msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" msgstr "תמונה" #. 2eQcW #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 -#, fuzzy msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" msgstr "~תמונה" @@ -4255,7 +4213,6 @@ #. tAMd5 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 -#, fuzzy msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" msgstr "~ציור" @@ -4274,28 +4231,24 @@ #. fDRf9 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 -#, fuzzy msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" -msgstr "_מדיה" +msgstr "מ_דיה" #. dAbX4 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 -#, fuzzy msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" -msgstr "~מדיה" +msgstr "מ~דיה" #. SCSH8 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 -#, fuzzy msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" msgstr "_טופס" #. vzdXF #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 -#, fuzzy msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" msgstr "~טופס" @@ -4316,38 +4269,34 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" -msgstr "" +msgstr "_תלת־ממד" #. ZCuDe #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" -msgstr "" +msgstr "~תלת־ממד" #. YpLRj #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 -#, fuzzy msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" msgstr "הר_חבה" #. uRrEt #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 -#, fuzzy msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" msgstr "הר~חבה" #. L3xmd #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 -#, fuzzy msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" msgstr "_כלים" #. LhBTk #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 -#, fuzzy msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" msgstr "~כלים" @@ -4360,14 +4309,12 @@ #. gf8PA #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2454 -#, fuzzy msgctxt "draw_notebookbar_groupedbar_compact|MenubarView" msgid "Menubar" -msgstr "סרגל התפריטים" +msgstr "סרגל תפריטים" #. ELBq3 #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3054 -#, fuzzy msgctxt "draw_notebookbar_groupedbar_compact|fileb" msgid "_File" msgstr "_קובץ" @@ -4493,7 +4440,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8285 msgctxt "draw_notebookbar_groupedbar_compact|3Db" msgid "3_D" -msgstr "" +msgstr "_תלת־ממד" #. hgFay #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8512 @@ -4517,7 +4464,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9570 msgctxt "draw_notebookbar_groupedbar_compact|GridB" msgid "Fi_lter" -msgstr "" +msgstr "מ_סנן" #. 8qSXf #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9851 @@ -4599,10 +4546,9 @@ #. 4LBUQ #: sd/uiconfig/sdraw/ui/vectorize.ui:126 -#, fuzzy msgctxt "vectorize|label2" msgid "Number of colors:" -msgstr "מספר עותקים" +msgstr "מספר צבעים:" #. KBsVD #: sd/uiconfig/sdraw/ui/vectorize.ui:145 @@ -4614,7 +4560,7 @@ #: sd/uiconfig/sdraw/ui/vectorize.ui:158 msgctxt "vectorize|label3" msgid "Point reduction:" -msgstr "" +msgstr "הפחתת נקודות:" #. enFzr #: sd/uiconfig/sdraw/ui/vectorize.ui:177 @@ -4654,10 +4600,9 @@ #. HYpvA #: sd/uiconfig/sdraw/ui/vectorize.ui:273 -#, fuzzy msgctxt "vectorize|label6" msgid "Vectorized image:" -msgstr "תמונה וקטוריאלית:‏" +msgstr "תמונה וקטורית:‏" #. 8hJxb #: sd/uiconfig/sdraw/ui/vectorize.ui:372 @@ -4667,17 +4612,15 @@ #. oQWMw #: sd/uiconfig/simpress/ui/annotation.ui:12 -#, fuzzy msgctxt "annotationmenu|reply" msgid "_Reply" -msgstr "ת~גובה" +msgstr "ת_גובה" #. rtez6 #: sd/uiconfig/simpress/ui/annotation.ui:26 -#, fuzzy msgctxt "annotationmenu|delete" msgid "_Delete Comment" -msgstr "מחיקת הערה/ות" +msgstr "מ_חיקת הערה" #. gAzBF #: sd/uiconfig/simpress/ui/annotation.ui:34 @@ -4688,24 +4631,21 @@ #. VUb8r #: sd/uiconfig/simpress/ui/annotation.ui:42 -#, fuzzy msgctxt "annotationmenu|deleteall" msgid "Delete _All Comments" -msgstr "מחיקת כל ההערות" +msgstr "מחיקת _כל ההערות" #. vGSve #: sd/uiconfig/simpress/ui/annotationtagmenu.ui:12 -#, fuzzy msgctxt "annotationtagmenu|reply" msgid "_Reply" -msgstr "ת~גובה" +msgstr "ת_גובה" #. z4GFf #: sd/uiconfig/simpress/ui/annotationtagmenu.ui:26 -#, fuzzy msgctxt "annotationtagmenu|delete" msgid "_Delete Comment" -msgstr "מחיקת הערה/ות" +msgstr "מ_חיקת הערה" #. qtvyS #: sd/uiconfig/simpress/ui/annotationtagmenu.ui:34 @@ -4716,10 +4656,9 @@ #. fByWA #: sd/uiconfig/simpress/ui/annotationtagmenu.ui:42 -#, fuzzy msgctxt "annotationtagmenu|deleteall" msgid "Delete _All Comments" -msgstr "מחיקת כל ההערות" +msgstr "מחיקת _כל ההערות" #. bCCCX #: sd/uiconfig/simpress/ui/clientboxfragment.ui:13 @@ -4735,17 +4674,15 @@ #. 8BrX8 #: sd/uiconfig/simpress/ui/currentmastermenu.ui:12 -#, fuzzy msgctxt "currentmastermenu|applyall" msgid "_Apply to All Slides" -msgstr "החלה על כל השקופיות" +msgstr "ה_חלה על כל השקופיות" #. 3sqfF #: sd/uiconfig/simpress/ui/currentmastermenu.ui:20 -#, fuzzy msgctxt "currentmastermenu|applyselect" msgid "Apply to _Selected Slides" -msgstr "החלה על השקופיות שנבחרו" +msgstr "החלה על השקופיות ש_נבחרו" #. hxmNR #: sd/uiconfig/simpress/ui/currentmastermenu.ui:34 @@ -4763,17 +4700,15 @@ #. 6nNHe #: sd/uiconfig/simpress/ui/currentmastermenu.ui:56 -#, fuzzy msgctxt "currentmastermenu|large" msgid "Show _Large Preview" -msgstr "הצגת תצוגה מקדימה גדולה" +msgstr "הצגת ת_צוגה מקדימה גדולה" #. kUpxX #: sd/uiconfig/simpress/ui/currentmastermenu.ui:64 -#, fuzzy msgctxt "currentmastermenu|small" msgid "Show S_mall Preview" -msgstr "הצגת תצוגה מקדימה קטנה" +msgstr "הצגת תצוגה מקדימה _קטנה" #. PbBwr #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:45 @@ -4851,7 +4786,7 @@ #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:309 msgctxt "customanimationeffecttab|extended_tip|dim_color_list" msgid "Select the dim color." -msgstr "" +msgstr "נא לבחור את הצבע המעומעם." #. qAefu #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:327 @@ -5065,7 +5000,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:215 msgctxt "customanimationspanel|lbEffect" msgid "Effects" -msgstr "" +msgstr "אפקטים" #. WGWNA #: sd/uiconfig/simpress/ui/customanimationspanel.ui:236 @@ -5173,20 +5108,19 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:419 msgctxt "customanimationspanel|extended_tip|effect_list" msgid "Select an animation effect." -msgstr "" +msgstr "נא לבחור אפקט הנפשה." #. LGuGy #: sd/uiconfig/simpress/ui/customanimationspanel.ui:435 msgctxt "customanimationspanel|effect_label" msgid "Options" -msgstr "" +msgstr "אפשרויות" #. GDYfC #: sd/uiconfig/simpress/ui/customanimationspanel.ui:452 -#, fuzzy msgctxt "customanimationspanel|start_effect" msgid "_Start:" -msgstr "התחלה" +msgstr "הת_חלה:" #. DhPiJ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:466 @@ -5275,10 +5209,9 @@ #. Bn67v #: sd/uiconfig/simpress/ui/customanimationspanel.ui:614 -#, fuzzy msgctxt "customanimationspanel|play|tooltip_text" msgid "Preview Effect" -msgstr "עצם תצוגה מקדימה" +msgstr "תצוגה מקדימה של אפקט" #. sUTTG #: sd/uiconfig/simpress/ui/customanimationspanel.ui:621 @@ -5302,7 +5235,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:701 msgctxt "customanimationspanel|extended_tip|CustomAnimationsPanel" msgid "Assigns effects to selected objects." -msgstr "" +msgstr "מקצה אפקטים לעצמאים נבחרים." #. rYtTX #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:30 @@ -5374,7 +5307,7 @@ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:94 msgctxt "customanimationtexttab|extended_tip|group_text_list" msgid "Specifies how multiple paragraphs are animated" -msgstr "" +msgstr "מציין איך ריבוי פסקאות מונפשות" #. LDD3y #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:112 @@ -5398,7 +5331,7 @@ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:140 msgctxt "customanimationtexttab|extended_tip|reverse_order" msgid "Animates the paragraphs in reverse order." -msgstr "" +msgstr "מנפיש את הפסקאות בסדר הפוך." #. QGBar #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:44 @@ -5444,10 +5377,9 @@ #. SXXYo #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:133 -#, fuzzy msgctxt "customanimationtimingtab|anim_duration|tooltip_text" msgid "Select the speed of the Animation." -msgstr "בחירת מהירות להנפשה המותאמת אישית." +msgstr "בחירת מהירות ההנפשה." #. rvdMd #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:160 @@ -5501,7 +5433,7 @@ #: sd/uiconfig/simpress/ui/customslideshows.ui:73 msgctxt "customslideshows|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "שומר את כל השינויים וסוגר את החלונית." #. BvVBK #: sd/uiconfig/simpress/ui/customslideshows.ui:137 @@ -5565,10 +5497,9 @@ #. HB63C #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:159 -#, fuzzy msgctxt "definecustomslideshow|label2" msgid "_Existing slides:" -msgstr "שקופיות _קיימות" +msgstr "שקופיות _קיימות:" #. BhVRw #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:173 @@ -5616,7 +5547,7 @@ #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:349 msgctxt "definecustomslideshow|extended_tip|DefineCustomSlideShow" msgid "Creates a custom slide show." -msgstr "" +msgstr "יוצר מצגת מותאמת אישית." #. PsSmN #: sd/uiconfig/simpress/ui/displaywindow.ui:55 @@ -5638,10 +5569,9 @@ #. pRhTV #: sd/uiconfig/simpress/ui/dlgfield.ui:99 -#, fuzzy msgctxt "dlgfield|fixedRB" msgid "_Fixed" -msgstr "קבוע" +msgstr "_קבוע" #. 6zpWe #: sd/uiconfig/simpress/ui/dlgfield.ui:108 @@ -5651,10 +5581,9 @@ #. VKhAG #: sd/uiconfig/simpress/ui/dlgfield.ui:120 -#, fuzzy msgctxt "dlgfield|varRB" msgid "_Variable" -msgstr "משתנה" +msgstr "מ_שתנה" #. 3aENC #: sd/uiconfig/simpress/ui/dlgfield.ui:129 @@ -5678,7 +5607,7 @@ #: sd/uiconfig/simpress/ui/dlgfield.ui:191 msgctxt "dlgfield|extended_tip|languageLB" msgid "Select the language for the field." -msgstr "" +msgstr "נא לבחור שפה לשדה." #. WTcEe #: sd/uiconfig/simpress/ui/dlgfield.ui:222 @@ -5688,10 +5617,9 @@ #. fmuQT #: sd/uiconfig/simpress/ui/dlgfield.ui:231 -#, fuzzy msgctxt "dlgfield|label3" msgid "F_ormat" -msgstr "תבנית" +msgstr "ת_בנית" #. 4HTWi #: sd/uiconfig/simpress/ui/dlgfield.ui:264 @@ -5720,10 +5648,9 @@ #. SqcwJ #: sd/uiconfig/simpress/ui/dockinganimation.ui:133 -#, fuzzy msgctxt "dockinganimation|duration|tooltip_text" msgid "Duration" -msgstr "מש_ך:" +msgstr "משך" #. oc4oa #: sd/uiconfig/simpress/ui/dockinganimation.ui:139 @@ -5733,10 +5660,9 @@ #. B5sxX #: sd/uiconfig/simpress/ui/dockinganimation.ui:152 -#, fuzzy msgctxt "dockinganimation|numbitmap|tooltip_text" msgid "Image Number" -msgstr "מספר עמוד" +msgstr "מספר תמונה" #. Sv3Uq #: sd/uiconfig/simpress/ui/dockinganimation.ui:159 @@ -5758,7 +5684,6 @@ #. UBvzL #: sd/uiconfig/simpress/ui/dockinganimation.ui:199 -#, fuzzy msgctxt "dockinganimation|prev|tooltip_text" msgid "Backwards" msgstr "אחורה" @@ -5767,11 +5692,10 @@ #: sd/uiconfig/simpress/ui/dockinganimation.ui:204 msgctxt "dockinganimation|extended_tip|prev" msgid "Plays the animation backwards." -msgstr "" +msgstr "מנגן את ההנפשה לאחור." #. TcVGb #: sd/uiconfig/simpress/ui/dockinganimation.ui:218 -#, fuzzy msgctxt "dockinganimation|stop|tooltip_text" msgid "Stop" msgstr "עצירה" @@ -5780,7 +5704,7 @@ #: sd/uiconfig/simpress/ui/dockinganimation.ui:223 msgctxt "dockinganimation|extended_tip|stop" msgid "Stops playing the animation." -msgstr "" +msgstr "עוצר את נגינת ההנפשה." #. BSGMb #: sd/uiconfig/simpress/ui/dockinganimation.ui:237 @@ -5793,14 +5717,13 @@ #: sd/uiconfig/simpress/ui/dockinganimation.ui:242 msgctxt "dockinganimation|extended_tip|next" msgid "Plays the animation." -msgstr "" +msgstr "מנגן את ההנפשה." #. QBaGj #: sd/uiconfig/simpress/ui/dockinganimation.ui:256 -#, fuzzy msgctxt "dockinganimation|last|tooltip_text" msgid "Last Image" -msgstr "עמוד אחרון" +msgstr "תמונה אחרונה" #. bX8rg #: sd/uiconfig/simpress/ui/dockinganimation.ui:261 @@ -5830,7 +5753,7 @@ #: sd/uiconfig/simpress/ui/dockinganimation.ui:345 msgctxt "dockinganimation|extended_tip|bitmap" msgid "Combines images into a single image." -msgstr "" +msgstr "משלב תמונות לתמונה אחת." #. TjdBX #: sd/uiconfig/simpress/ui/dockinganimation.ui:363 @@ -5900,20 +5823,19 @@ #: sd/uiconfig/simpress/ui/dockinganimation.ui:388 msgctxt "dockinganimation|extended_tip|alignment" msgid "Aligns the images in your animation." -msgstr "" +msgstr "מיישר את התמונות בהנפשה שלך." #. EFWzn #: sd/uiconfig/simpress/ui/dockinganimation.ui:409 msgctxt "dockinganimation|label1" msgid "Animation Group" -msgstr "" +msgstr "קבוצת הנפשה" #. Bu3De #: sd/uiconfig/simpress/ui/dockinganimation.ui:449 -#, fuzzy msgctxt "dockinganimation|getone|tooltip_text" msgid "Apply Object" -msgstr "יישומון" +msgstr "החלת עצם" #. 9tgAf #: sd/uiconfig/simpress/ui/dockinganimation.ui:454 @@ -5941,10 +5863,9 @@ #. 8kUXo #: sd/uiconfig/simpress/ui/dockinganimation.ui:539 -#, fuzzy msgctxt "dockinganimation|delone|tooltip_text" msgid "Delete Current Image" -msgstr "מחיקת המפתח הנוכחי" +msgstr "מחיקת התמונה הנוכחית" #. 4JHCu #: sd/uiconfig/simpress/ui/dockinganimation.ui:544 @@ -5972,10 +5893,9 @@ #. WYZGD #: sd/uiconfig/simpress/ui/dockinganimation.ui:625 -#, fuzzy msgctxt "dockinganimation|create" msgid "Create" -msgstr "י_צירה" +msgstr "יצירה" #. bDPPc #: sd/uiconfig/simpress/ui/dockinganimation.ui:633 @@ -6012,17 +5932,15 @@ #. CY3rG #: sd/uiconfig/simpress/ui/effectmenu.ui:48 -#, fuzzy msgctxt "effectmenu|options" msgid "_Effect Options..." -msgstr "אפשרויות אפקטים" +msgstr "_אפשרויות אפקט…" #. FeJyb #: sd/uiconfig/simpress/ui/effectmenu.ui:56 -#, fuzzy msgctxt "effectmenu|timing" msgid "_Timing..." -msgstr "תזמון...‏" +msgstr "ת_זמון…" #. CpukX #: sd/uiconfig/simpress/ui/effectmenu.ui:64 @@ -6032,28 +5950,24 @@ #. DXV9V #: sd/uiconfig/simpress/ui/fontsizemenu.ui:12 -#, fuzzy msgctxt "fontsizemenu|25" msgid "Tiny" msgstr "זעיר" #. KeRNm #: sd/uiconfig/simpress/ui/fontsizemenu.ui:20 -#, fuzzy msgctxt "fontsizemenu|50" msgid "Smaller" msgstr "קטן יותר" #. 6WKBZ #: sd/uiconfig/simpress/ui/fontsizemenu.ui:28 -#, fuzzy msgctxt "fontsizemenu|150" msgid "Larger" msgstr "גדול יותר" #. BWQbN #: sd/uiconfig/simpress/ui/fontsizemenu.ui:36 -#, fuzzy msgctxt "fontsizemenu|400" msgid "Extra Large" msgstr "גדול במיוחד" @@ -6146,10 +6060,9 @@ #. ruQCk #: sd/uiconfig/simpress/ui/headerfootertab.ui:105 -#, fuzzy msgctxt "headerfootertab|datetime_cb" msgid "_Date and time" -msgstr "תאריך ושעה" +msgstr "_תאריך ושעה" #. tUcmE #: sd/uiconfig/simpress/ui/headerfootertab.ui:113 @@ -6159,10 +6072,9 @@ #. LDq83 #: sd/uiconfig/simpress/ui/headerfootertab.ui:137 -#, fuzzy msgctxt "headerfootertab|rb_fixed" msgid "Fi_xed" -msgstr "קבוע" +msgstr "_קבוע" #. RrPiS #: sd/uiconfig/simpress/ui/headerfootertab.ui:149 @@ -6253,13 +6165,13 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:415 msgctxt "headerfootertab|include_label" msgid "Include on Slide" -msgstr "" +msgstr "לכלול בשקופית" #. QNb8r #: sd/uiconfig/simpress/ui/headerfootertab.ui:430 msgctxt "headerfootertab|not_on_title" msgid "Do _not show on the first slide" -msgstr "" +msgstr "לא להציג את השקופית ה_ראשונה" #. TmZpE #: sd/uiconfig/simpress/ui/headerfootertab.ui:439 @@ -6269,34 +6181,33 @@ #. jjanG #: sd/uiconfig/simpress/ui/headerfootertab.ui:453 -#, fuzzy msgctxt "headerfootertab|replacement_a" msgid "_Page Number" -msgstr "מספר עמוד" +msgstr "מספר _עמוד" #. x4Ffp #: sd/uiconfig/simpress/ui/headerfootertab.ui:467 msgctxt "headerfootertab|replacement_b" msgid "Include on page" -msgstr "" +msgstr "לכלול בעמוד" #. euuqV #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:33 msgctxt "impressprinteroptions|label2" msgid "Type:" -msgstr "" +msgstr "סוג:" #. 2uCnf #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:47 msgctxt "impressprinteroptions|label7" msgid "Slides per page:" -msgstr "" +msgstr "שקופיות בעמוד:" #. XehMv #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:61 msgctxt "impressprinteroptions|label1" msgid "Order:" -msgstr "" +msgstr "סדר:" #. Bx8SG #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:76 @@ -6320,7 +6231,7 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:121 msgctxt "impressprinteroptions|label3" msgid "Document" -msgstr "" +msgstr "מסמך" #. r9xjv #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:150 @@ -6368,13 +6279,13 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:243 msgctxt "impressprinteroptions|originalcolors" msgid "Original colors" -msgstr "" +msgstr "צבעים מקוריים" #. XqwZg #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:252 msgctxt "impressprinteroptions|extended_tip|originalcolors" msgid "Specifies to print in original colors." -msgstr "" +msgstr "מציין הדפסה בצבעים המקוריים." #. Hp6An #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:264 @@ -6386,7 +6297,7 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:273 msgctxt "impressprinteroptions|extended_tip|grayscale" msgid "Specifies to print colors as grayscale." -msgstr "" +msgstr "מציין הדפסת הצבעים בגווני אפור." #. vnaCm #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:285 @@ -6494,7 +6405,7 @@ #: sd/uiconfig/simpress/ui/interactionpage.ui:62 msgctxt "interactionpage|label2" msgid "Action at mouse click:" -msgstr "" +msgstr "פעולה בלחיצת עכבר:" #. wf6o2 #: sd/uiconfig/simpress/ui/interactionpage.ui:78 @@ -6557,7 +6468,7 @@ #: sd/uiconfig/simpress/ui/interactionpage.ui:361 msgctxt "interactionpage|sound-atkobject" msgid "Path Name" -msgstr "" +msgstr "שם נתיב" #. wZE8A #: sd/uiconfig/simpress/ui/interactionpage.ui:362 @@ -6597,29 +6508,27 @@ #. Ed2VQ #: sd/uiconfig/simpress/ui/layoutmenu.ui:12 -#, fuzzy msgctxt "layoutmenu|apply" msgid "Apply to _Selected Slides" -msgstr "החלה על השקופיות שנבחרו" +msgstr "החלה על השקופיות ש_נבחרו" #. r6oAh #: sd/uiconfig/simpress/ui/layoutmenu.ui:26 -#, fuzzy msgctxt "layoutmenu|insert" msgid "_Insert Slide" -msgstr "הכנסת שקופית" +msgstr "הו_ספת שקופית" #. e84v4 #: sd/uiconfig/simpress/ui/layoutwindow.ui:55 msgctxt "layoutwindow|label5" msgid "Horizontal" -msgstr "" +msgstr "אופקי" #. usUqJ #: sd/uiconfig/simpress/ui/layoutwindow.ui:107 msgctxt "layoutwindow|label6" msgid "Vertical" -msgstr "" +msgstr "אנכי" #. uydrR #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:8 @@ -6668,10 +6577,9 @@ #. AyWZh #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:152 -#, fuzzy msgctxt "masterlayoutdlg|pagenumber" msgid "_Page number" -msgstr "שם עמוד" +msgstr "מ_ספר עמוד" #. y3BDS #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:160 @@ -6683,7 +6591,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:172 msgctxt "masterlayoutdlg|slidenumber" msgid "_Slide number" -msgstr "" +msgstr "מס_פר שקופית" #. StLxB #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:191 @@ -6700,49 +6608,45 @@ #. 69Akr #: sd/uiconfig/simpress/ui/mastermenu.ui:12 -#, fuzzy msgctxt "mastermenu|applyall" msgid "_Apply to All Slides" -msgstr "החלה על כל השקופיות" +msgstr "החלה על _כל השקופיות" #. VRgjP #: sd/uiconfig/simpress/ui/mastermenu.ui:20 -#, fuzzy msgctxt "mastermenu|applyselect" msgid "Apply to _Selected Slides" -msgstr "החלה על השקופיות שנבחרו" +msgstr "החלה על השקופיות ש_נבחרו" #. JqkU5 #: sd/uiconfig/simpress/ui/mastermenu.ui:34 -#, fuzzy msgctxt "mastermenu|large" msgid "Show _Large Preview" -msgstr "הצגת תצוגה מקדימה גדולה" +msgstr "הצגת תצוגה מקדימה _גדולה" #. hTJCE #: sd/uiconfig/simpress/ui/mastermenu.ui:42 -#, fuzzy msgctxt "mastermenu|small" msgid "Show S_mall Preview" -msgstr "הצגת תצוגה מקדימה קטנה" +msgstr "הצגת תצוגה מקדימה _קטנה" #. qF7zf #: sd/uiconfig/simpress/ui/navigatorpanel.ui:12 msgctxt "navigatorpanelSTR_DRAGTYPE_URL" msgid "Insert as Hyperlink" -msgstr "" +msgstr "הוספה כקישור חיצוני" #. ptpuN #: sd/uiconfig/simpress/ui/navigatorpanel.ui:20 msgctxt "navigatorpanel|STR_DRAGTYPE_LINK" msgid "Insert as Link" -msgstr "" +msgstr "הוספה כקישור" #. z7JSR #: sd/uiconfig/simpress/ui/navigatorpanel.ui:29 msgctxt "navigatorpanel|STR_DRAGTYPE_EMBEDDED" msgid "Insert as Copy" -msgstr "" +msgstr "הוספה כעותק" #. 3rY8r #: sd/uiconfig/simpress/ui/navigatorpanel.ui:65 @@ -6760,13 +6664,13 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:69 msgctxt "navigatorpanel|extended_tip|documents" msgid "Lists currently open documents." -msgstr "" +msgstr "מציג את המסמכים שפתוחים כרגע." #. D6ag8 #: sd/uiconfig/simpress/ui/navigatorpanel.ui:120 msgctxt "navigatorpanel|STR_OBJECTS_TREE" msgid "Page Tree" -msgstr "" +msgstr "עץ עמוד" #. e6gMq #: sd/uiconfig/simpress/ui/navigatorpanel.ui:121 @@ -6776,7 +6680,6 @@ #. LKqE8 #: sd/uiconfig/simpress/ui/navigatorpanel.ui:142 -#, fuzzy msgctxt "navigatorpanel|first|tooltip_text" msgid "First Slide" msgstr "השקופית הראשונה" @@ -6785,36 +6688,34 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:146 msgctxt "navigatorpanel|extended_tip|first" msgid "Jumps to the first page." -msgstr "" +msgstr "קופץ לעמוד הראשון." #. NWPFk #: sd/uiconfig/simpress/ui/navigatorpanel.ui:158 msgctxt "navigatorpanel|previous|tooltip_text" msgid "Previous Slide" -msgstr "" +msgstr "השקופית הקודמת" #. PJUma #: sd/uiconfig/simpress/ui/navigatorpanel.ui:162 msgctxt "navigatorpanel|extended_tip|previous" msgid "Moves back one page." -msgstr "" +msgstr "חוזר עמוד אחד אחורה." #. bkvQE #: sd/uiconfig/simpress/ui/navigatorpanel.ui:174 -#, fuzzy msgctxt "navigatorpanel|next|tooltip_text" msgid "Next Slide" -msgstr "שקופית טקסט" +msgstr "השקופית הבאה" #. zbUVG #: sd/uiconfig/simpress/ui/navigatorpanel.ui:178 msgctxt "navigatorpanel|extended_tip|next" msgid "Move forward one page." -msgstr "" +msgstr "התקדמות בעמוד אחד קדימה." #. FVSHF #: sd/uiconfig/simpress/ui/navigatorpanel.ui:190 -#, fuzzy msgctxt "navigatorpanel|last|tooltip_text" msgid "Last Slide" msgstr "השקופית האחרונה" @@ -6823,7 +6724,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:194 msgctxt "navigatorpanel|extended_tip|last" msgid "Jumps to the last page." -msgstr "" +msgstr "קופץ לעמוד האחרון." #. mHVom #: sd/uiconfig/simpress/ui/navigatorpanel.ui:218 @@ -6839,10 +6740,9 @@ #. Qb5a9 #: sd/uiconfig/simpress/ui/navigatorpanel.ui:234 -#, fuzzy msgctxt "navigatorpanel|shapes|tooltip_text" msgid "Show Shapes" -msgstr "הצגת שינויים" +msgstr "הצגת צורות" #. EUeae #: sd/uiconfig/simpress/ui/navigatorpanel.ui:238 @@ -6860,73 +6760,73 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:272 msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_NAMED_SHAPES" msgid "Named shapes" -msgstr "" +msgstr "צורות בשמות" #. dLEPF #: sd/uiconfig/simpress/ui/navigatorpanel.ui:281 msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_ALL_SHAPES" msgid "All shapes" -msgstr "" +msgstr "כל הצורות" #. qGFEo #: sd/uiconfig/simpress/ui/notebookbar.ui:3196 msgctxt "impressnotebookbar|FileLabel" msgid "_File" -msgstr "" +msgstr "_קובץ" #. PyC4c #: sd/uiconfig/simpress/ui/notebookbar.ui:3215 msgctxt "impressnotebookbar|HelpMenuButton" msgid "_Help" -msgstr "" +msgstr "ע_זרה" #. VoxXb #: sd/uiconfig/simpress/ui/notebookbar.ui:3271 msgctxt "impressnotebookbar|FileLabel" msgid "~File" -msgstr "" +msgstr "ע~זרה" #. XRcKU #: sd/uiconfig/simpress/ui/notebookbar.ui:4791 msgctxt "impressnotebookbar|HomeMenuButton" msgid "_Home" -msgstr "" +msgstr "_בית" #. XqFQv #: sd/uiconfig/simpress/ui/notebookbar.ui:4891 msgctxt "impressnotebookbar|HomeLabel" msgid "~Home" -msgstr "" +msgstr "~בית" #. DEQhQ #: sd/uiconfig/simpress/ui/notebookbar.ui:5493 msgctxt "impressnotebookbar|FieldMenuButton" msgid "Fiel_d" -msgstr "" +msgstr "_שדה" #. 9GEAC #: sd/uiconfig/simpress/ui/notebookbar.ui:6031 msgctxt "impressnotebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "הו_ספה" #. t3YwN #: sd/uiconfig/simpress/ui/notebookbar.ui:6134 msgctxt "impressnotebookbar|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "הו~ספה" #. 58fjG #: sd/uiconfig/simpress/ui/notebookbar.ui:6909 msgctxt "impressnotebookbar|SlideMenuButton" msgid "_Layout" -msgstr "" +msgstr "_פריסה" #. ArPLp #: sd/uiconfig/simpress/ui/notebookbar.ui:6994 msgctxt "impressnotebookbar|LayoutLabel" msgid "~Layout" -msgstr "" +msgstr "~פריסה" #. vRtjP #: sd/uiconfig/simpress/ui/notebookbar.ui:7458 @@ -6956,25 +6856,25 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:9380 msgctxt "impressnotebookbar|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "ת_צוגה" #. KJK9J #: sd/uiconfig/simpress/ui/notebookbar.ui:9465 msgctxt "impressnotebookbar|ViewLabel" msgid "~View" -msgstr "" +msgstr "ת~צוגה" #. bWC2b #: sd/uiconfig/simpress/ui/notebookbar.ui:10359 msgctxt "impressnotebookbar|TableMenuButton" msgid "_Table" -msgstr "" +msgstr "_טבלה" #. dmEJG #: sd/uiconfig/simpress/ui/notebookbar.ui:10443 msgctxt "impressnotebookbar|TableLabel" msgid "~Table" -msgstr "" +msgstr "~טבלה" #. Cn8TS #: sd/uiconfig/simpress/ui/notebookbar.ui:10968 @@ -6982,67 +6882,67 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:14034 msgctxt "impressnotebookbar|ConvertMenuButton" msgid "Convert" -msgstr "" +msgstr "המרה" #. do5DT #: sd/uiconfig/simpress/ui/notebookbar.ui:11638 msgctxt "impressnotebookbar|GraphicMenuButton" msgid "Ima_ge" -msgstr "" +msgstr "ת_מונה" #. XCSMA #: sd/uiconfig/simpress/ui/notebookbar.ui:11747 msgctxt "impressnotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "ת~מונה" #. nTy3C #: sd/uiconfig/simpress/ui/notebookbar.ui:13449 msgctxt "impressnotebookbar|DrawMenuButton" msgid "_Draw" -msgstr "" +msgstr "_ציור" #. BfNQD #: sd/uiconfig/simpress/ui/notebookbar.ui:13556 msgctxt "impressnotebookbar|DrawLabel" msgid "~Draw" -msgstr "" +msgstr "~ציור" #. p3Faf #: sd/uiconfig/simpress/ui/notebookbar.ui:14390 msgctxt "impressnotebookbar|ObjectMenuButton" msgid "_Object" -msgstr "" +msgstr "_עצם" #. wL8mu #: sd/uiconfig/simpress/ui/notebookbar.ui:14497 msgctxt "impressnotebookbar|ObjectLabel" msgid "~Object" -msgstr "" +msgstr "~עצם" #. AAosj #: sd/uiconfig/simpress/ui/notebookbar.ui:14998 msgctxt "impressnotebookbar|MediaMenuButton" msgid "_Media" -msgstr "" +msgstr "מ_דיה" #. GgHEg #: sd/uiconfig/simpress/ui/notebookbar.ui:15102 msgctxt "impressnotebookbar|MediaLabel" msgid "~Media" -msgstr "" +msgstr "~מדיה" #. W9oCC #: sd/uiconfig/simpress/ui/notebookbar.ui:15910 msgctxt "impressnotebookbar|FormMenuButton" msgid "Fo_rm" -msgstr "" +msgstr "_טופס" #. 7sAbT #: sd/uiconfig/simpress/ui/notebookbar.ui:15994 msgctxt "ImpressNotebookbar|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "~טופס" #. aAdZJ #: sd/uiconfig/simpress/ui/notebookbar.ui:16789 @@ -7060,13 +6960,13 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:17683 msgctxt "ImpressNotebookbar|FormMenuButton" msgid "_View" -msgstr "" +msgstr "ת_צוגה" #. rUJFu #: sd/uiconfig/simpress/ui/notebookbar.ui:17767 msgctxt "ImpressNotebookbar|View2Label" msgid "~Outline" -msgstr "" +msgstr "מ~תאר" #. pA8DH #: sd/uiconfig/simpress/ui/notebookbar.ui:18554 @@ -7084,91 +6984,91 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:18718 msgctxt "impressnotebookbar|FormMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ה_רחבה" #. Nwrnv #: sd/uiconfig/simpress/ui/notebookbar.ui:18792 msgctxt "impressnotebookbar|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ה~רחבה" #. rBSXA #: sd/uiconfig/simpress/ui/notebookbar.ui:19755 msgctxt "impressnotebookbar|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "_כלים" #. DTNDB #: sd/uiconfig/simpress/ui/notebookbar.ui:19839 msgctxt "impressnotebookbar|DevLabel" msgid "~Tools" -msgstr "" +msgstr "~כלים" #. FSDrH #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:3260 msgctxt "notebookbar_impress_compact|FileMenuButton" msgid "_File" -msgstr "" +msgstr "_קובץ" #. LEEM5 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:3309 msgctxt "notebookbar_impress_compact|FileLabel" msgid "~File" -msgstr "" +msgstr "~קובץ" #. ujGqT #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:4678 msgctxt "notebookbar_impress_compact|HomeMenuButton" msgid "_Home" -msgstr "" +msgstr "_בית" #. NGYSB #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:4730 msgctxt "notebookbar_impress_compact|HomeLabel" msgid "~Home" -msgstr "" +msgstr "~בית" #. 4g3iJ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5292 msgctxt "notebookbar_impress_compact|FieldMenuButton" msgid "Fiel_d" -msgstr "" +msgstr "_שדה" #. 927AD #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5832 msgctxt "notebookbar_impress_compact|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "הו_ספה" #. ZPHaB #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5883 msgctxt "notebookbar_impress_compact|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "הו~ספה" #. zEEiz #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6669 msgctxt "notebookbar_impress_compact|LayoutMenuButton" msgid "Layout" -msgstr "" +msgstr "פריסה" #. EZeGS #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6721 msgctxt "notebookbar_impress_compact|LayoutLabel" msgid "~Layout" -msgstr "" +msgstr "~פריסה" #. sMsGk #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7236 msgctxt "notebookbar_impress_compact|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "_סקירה" #. pZ4A3 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7288 msgctxt "notebookbar_impress_compact|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "~סקירה" #. cRSR3 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7825 @@ -7186,37 +7086,37 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8709 msgctxt "notebookbar_impress_compact|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "ת_צוגה" #. SScpo #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8761 msgctxt "notebookbar_impress_compact|ViewLabel" msgid "~View" -msgstr "" +msgstr "ת~צוגה" #. CzCMC #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10445 msgctxt "notebookbar_impress_compact|TableMenuButton" msgid "T_able" -msgstr "" +msgstr "ט_בלה" #. mnepU #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10496 msgctxt "notebookbar_impress_compact|TableLabel" msgid "~Table" -msgstr "" +msgstr "~טבלה" #. BzXPB #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" -msgstr "" +msgstr "תמונה" #. wD2ow #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "תמו~נה" #. ZqPYr #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 @@ -7234,37 +7134,37 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" -msgstr "" +msgstr "עצם" #. FSjqt #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" -msgstr "" +msgstr "~עצם" #. t3Fmv #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" -msgstr "" +msgstr "מ_דיה" #. HbptL #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" -msgstr "" +msgstr "מ~דיה" #. NNqQ2 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" -msgstr "" +msgstr "_טופס" #. DpFpM #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "~טופס" #. MNUFm #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 @@ -7294,37 +7194,37 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ה_רחבה" #. Tu5f8 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ה~רחבה" #. abvtG #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "_כלים" #. oKhkv #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" -msgstr "" +msgstr "~כלים" #. JC7Dd #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2308 msgctxt "impress_notebookbar_groupedbar_compact|MenubarAction" msgid "Menubar" -msgstr "" +msgstr "סרגל תפריטים" #. aEHCg #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2481 msgctxt "impress_notebookbar_groupedbar_compact|MenubarView" msgid "Menubar" -msgstr "" +msgstr "סרגל תפריטים" #. LL2dj #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3094 @@ -7334,24 +7234,23 @@ #. MR7ZB #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3202 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|editb" msgid "_Edit" -msgstr "~עריכה" +msgstr "_עריכה" #. 26rGJ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3328 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4511 msgctxt "notebookbar_groupedbar_compact|reviewb" msgid "S_lide" -msgstr "" +msgstr "_שקופית" #. WZ5Fe #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3485 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12450 msgctxt "notebookbar_groupedbar_compact|draw" msgid "D_raw" -msgstr "" +msgstr "_ציור" #. GYqWX #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3913 @@ -7363,13 +7262,12 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12956 msgctxt "notebookbar_groupedbar_compact|insertText" msgid "_Snap" -msgstr "" +msgstr "ה_צמדה" #. LFnQL #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4049 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6726 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12825 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|insertText" msgid "_Insert" msgstr "הו_ספה" @@ -7377,46 +7275,43 @@ #. 5wZbP #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4160 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13092 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|reviewb" msgid "_Review" -msgstr "סקירה" +msgstr "_סקירה" #. BxXfn #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4281 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5317 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13213 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|viewT" msgid "_View" -msgstr "תצוגה" +msgstr "_תצוגה" #. 5fAr4 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4379 msgctxt "notebookbar_groupedbar_compact|ExtensionMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ה_רחבה" #. fED72 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4663 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5482 msgctxt "notebookbar_groupedbar_compact|formatt" msgid "F_ont" -msgstr "" +msgstr "_גופן" #. YgxCs #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4890 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5686 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|paragrapht" msgid "_Paragraph" -msgstr "פסקה" +msgstr "_פסקה" #. Tgwxy #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5953 msgctxt "notebookbar_groupedbar_compact|rowscolumnst" msgid "_Table" -msgstr "" +msgstr "_טבלה" #. PRamE #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6605 @@ -7429,7 +7324,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11332 msgctxt "notebookbar_groupedbar_compact|editdrawb" msgid "D_raw" -msgstr "" +msgstr "_ציור" #. ncAKi #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7296 @@ -7439,27 +7334,26 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11757 msgctxt "notebookbar_groupedbar_compact|ArrangeButton" msgid "_Arrange" -msgstr "" +msgstr "_סידור" #. 8pLR3 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7747 msgctxt "notebookbar_groupedbar_compact|draw" msgid "_Shape" -msgstr "" +msgstr "_צורה" #. NM63T #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8011 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12160 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|viewDrawb" msgid "Grou_p" -msgstr "קיבוץ" +msgstr "_קיבוץ" #. cbMTW #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8247 msgctxt "notebookbar_groupedbar_compact|3Db" msgid "3_D" -msgstr "" +msgstr "_תלת־ממד" #. BTzDn #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8474 @@ -7471,31 +7365,31 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8585 msgctxt "notebookbar_groupedbar_compact|GridButton" msgid "_Grid" -msgstr "" +msgstr "_רשת" #. XL8kc #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8721 msgctxt "notebookbar_groupedbar_compact|graphicB" msgid "_Image" -msgstr "" +msgstr "_תמונה" #. snvvw #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9532 msgctxt "notebookbar_groupedbar_compact|GridB" msgid "Fi_lter" -msgstr "" +msgstr "מ_סנן" #. 5a4zV #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9813 msgctxt "notebookbar_groupedbar_compact|graphicB" msgid "_Object" -msgstr "" +msgstr "_עצם" #. Ghwp6 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10665 msgctxt "notebookbar_groupedbar_compact|graphicB" msgid "_Media" -msgstr "" +msgstr "מ_דיה" #. w6MPS #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12294 @@ -7507,35 +7401,31 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13347 msgctxt "impress_notebookbar_groupedbar_compact|FormButton" msgid "Fo_rm" -msgstr "" +msgstr "_טופס" #. xBYsC #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:14082 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|menub" msgid "_Menu" -msgstr "תפריט" +msgstr "_תפריט" #. EsADr #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2976 -#, fuzzy msgctxt "notebookbar_groupedbar_full|menub" msgid "_Menu" -msgstr "תפריט" +msgstr "_תפריט" #. Ch63h #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3028 -#, fuzzy msgctxt "notebookbar_groupedbar_full|toolsb" msgid "_Tools" -msgstr "כלים" +msgstr "_כלים" #. kdH4L #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3081 -#, fuzzy msgctxt "notebookbar_groupedbar_full|helpb" msgid "_Help" -msgstr "עזרה" +msgstr "ע_זרה" #. bkg23 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3187 @@ -7545,10 +7435,9 @@ #. aqbEs #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3420 -#, fuzzy msgctxt "notebookbar_groupedbar_full|editb" msgid "_Edit" -msgstr "~עריכה" +msgstr "_עריכה" #. S4ZPU #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3577 @@ -7559,14 +7448,12 @@ #. ZShaH #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3770 -#, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphstylet" msgid "S_lide" -msgstr "שקופית" +msgstr "ש_קופית" #. dS4bE #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3919 -#, fuzzy msgctxt "notebookbar_groupedbar_full|insertText" msgid "_Insert" msgstr "הו_ספה" @@ -7579,17 +7466,15 @@ #. gQQfL #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4439 -#, fuzzy msgctxt "notebookbar_groupedbar_full|reviewb" msgid "_Review" -msgstr "סקירה" +msgstr "ס_קירה" #. BHDdD #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4585 -#, fuzzy msgctxt "notebookbar_groupedbar_full|viewb" msgid "_View" -msgstr "תצוגה" +msgstr "_תצוגה" #. MECyG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4867 @@ -7597,10 +7482,9 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9631 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11022 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12254 -#, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" -msgstr "סידור" +msgstr "_סידור" #. ZZz6G #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5024 @@ -7620,51 +7504,45 @@ #. sdehG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5578 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6821 -#, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Paragraph" -msgstr "פסקה" +msgstr "_פסקה" #. ncg2G #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5818 -#, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextt" msgid "_Insert" msgstr "הו_ספה" #. 6isa9 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5980 -#, fuzzy msgctxt "notebookbar_groupedbar_full|viewt" msgid "_View" -msgstr "תצוגה" +msgstr "_תצוגה" #. sorSJ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6128 msgctxt "notebookbar_groupedbar_full|reviewp" msgid "_Review" -msgstr "" +msgstr "ס_קירה" #. jHLaW #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6267 -#, fuzzy msgctxt "notebookbar_groupedbar_full|slideshowtt" msgid "_Slide Show" -msgstr "תצוגת שקופיות" +msgstr "מ_צגץ" #. Ew7Ho #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6996 -#, fuzzy msgctxt "notebookbar_groupedbar_full|tabled" msgid "T_able" -msgstr "טבלה" +msgstr "_טבלה" #. i8XUZ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7256 -#, fuzzy msgctxt "notebookbar_groupedbar_full|rowscolumnst" msgid "R_ows" -msgstr "שורות" +msgstr "_שורות" #. 4nboE #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7378 @@ -7676,14 +7554,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7704 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" -msgstr "" +msgstr "_ציור" #. QNg9L #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7989 -#, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" -msgstr "~עריכה" +msgstr "_עריכה" #. BfnGg #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8541 @@ -7695,58 +7572,51 @@ #. 3i55T #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8683 -#, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" -msgstr "קיבוץ" +msgstr "_קיבוץ" #. fNGFB #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8822 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" -msgstr "" +msgstr "_תלת־ממד" #. SbHmx #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9078 -#, fuzzy msgctxt "notebookbar_groupedbar_full|graphicB" msgid "_Graphic" -msgstr "גרפי" +msgstr "_גרפיקה" #. DDTxx #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9243 -#, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" -msgstr "צבע" +msgstr "_צבע" #. eLnnF #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10172 -#, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" -msgstr "מדיה" +msgstr "מ_דיה" #. duFFM #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10347 -#, fuzzy msgctxt "notebookbar_groupedbar_full|slideshowOLE" msgid "_Slide Show" -msgstr "תצוגת שקופיות" +msgstr "מ_צגת" #. wrKzp #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10622 -#, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "F_rame" msgstr "מ_סגרת" #. EMvnF #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11320 -#, fuzzy msgctxt "notebookbar_groupedbar_full|viewtOLE" msgid "_View" -msgstr "תצוגה" +msgstr "_תצוגה" #. DQLzy #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11480 @@ -7757,7 +7627,6 @@ #. QLjsG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11711 -#, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextm" msgid "_Insert" msgstr "הו_ספה" @@ -7766,14 +7635,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11936 msgctxt "notebookbar_groupedbar_full|drawm" msgid "D_raw" -msgstr "" +msgstr "_ציור" #. tcCdm #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12416 -#, fuzzy msgctxt "notebookbar_groupedbar_full|masterviewm" msgid "_View" -msgstr "תצוגה" +msgstr "_תצוגה" #. TRHHB #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:49 @@ -7789,10 +7657,9 @@ #. VAnE3 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:65 -#, fuzzy msgctxt "notebookbar_groups|layout03" msgid "Title, Text" -msgstr "טקסט כותרת" +msgstr "כותרת, טקסט" #. V64P7 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:73 @@ -7832,10 +7699,9 @@ #. JE3bf #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:151 -#, fuzzy msgctxt "notebookbar_groups|crossreference" msgid "Cross-Reference" -msgstr "הפנייה צולבת" +msgstr "הפנייה" #. LMhUg #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:168 @@ -7853,11 +7719,10 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:257 msgctxt "notebookbar_groups|shapestyledefault" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. 7YLfF #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:265 -#, fuzzy msgctxt "notebookbar_groups|shapestylenofill" msgid "No Fill" msgstr "ללא מילוי" @@ -7870,17 +7735,15 @@ #. F32mr #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:287 -#, fuzzy msgctxt "notebookbar_groups|shapestyletitle1" msgid "Title 1" -msgstr "כותרת מסמך1‏" +msgstr "כותרת 1" #. BH8CJ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:295 -#, fuzzy msgctxt "notebookbar_groups|shapestyletitle2" msgid "Title 2" -msgstr "כותרת מסמך2‏" +msgstr "כותרת 2" #. CsPMA #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:495 @@ -7890,10 +7753,9 @@ #. FHC5q #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:651 -#, fuzzy msgctxt "notebookbar_groups|clipboardgrouplabel" msgid "Clipboard" -msgstr "לוח העתקה" +msgstr "לוח גזירים" #. ffHa2 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:697 @@ -7911,7 +7773,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:852 msgctxt "notebookbar_groups|shrinkb" msgid " " -msgstr "" +msgstr " " #. nyg3m #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1190 @@ -7989,17 +7851,15 @@ #. w6XXT #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1709 -#, fuzzy msgctxt "notebookbar_groups|wrapb" msgid "Wrap" msgstr "גלישה" #. QdS8h #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1725 -#, fuzzy msgctxt "notebookbar_groups|lockb" msgid "Lock" -msgstr "עיגון" +msgstr "נעילה" #. VUCKC #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1770 @@ -8021,10 +7881,9 @@ #. EpwrB #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1844 -#, fuzzy msgctxt "notebookbar_groups|wrapon" msgid "Parallel" -msgstr "מקבילי" +msgstr "במקביל" #. fAfKA #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1853 @@ -8042,27 +7901,25 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1871 msgctxt "notebookbar_groups|wrapthrough" msgid "Through" -msgstr "" +msgstr "מבעד" #. WEBWT #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1886 -#, fuzzy msgctxt "notebookbar_groups|wrapcontour" msgid "Contour" msgstr "מתאר" #. d7AtT #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1895 -#, fuzzy msgctxt "notebookbar_groups|contourdialog" msgid "Edit Contour" -msgstr "קו מתאר טקסט" +msgstr "עריכת קו מתאר" #. 7k6fG #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:57 msgctxt "optimpressgeneralpage|startwithwizard" msgid "Start with _Template Selection" -msgstr "" +msgstr "התחלה עם בחירת _תבנית" #. L97gv #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:65 @@ -8080,7 +7937,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:110 msgctxt "optimpressgeneralpage|enprsntcons" msgid "Enable Presenter Console" -msgstr "" +msgstr "הפעלת מסוף מציג" #. dAFGz #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:118 @@ -8092,7 +7949,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:129 msgctxt "optimpressgeneralpage|enremotcont" msgid "Enable remote control" -msgstr "" +msgstr "הפעלת שלט רחוק" #. 7iTJt #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:138 @@ -8122,7 +7979,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:201 msgctxt "optimpressgeneralpage|cbCompatibility" msgid "Add _spacing between paragraphs and tables" -msgstr "" +msgstr "הוספת _ריווח בין פסקאות וטבלאות" #. 4dCoV #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:209 @@ -8132,7 +7989,6 @@ #. PaYjQ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:224 -#, fuzzy msgctxt "optimpressgeneralpage|label1" msgid "Compatibility" msgstr "תאימות" @@ -8141,7 +7997,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:258 msgctxt "optimpressgeneralpage|copywhenmove" msgid "Copy when moving" -msgstr "" +msgstr "העתקה בעת הזזה" #. a92dE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:267 @@ -8153,7 +8009,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:286 msgctxt "optimpressgeneralpage|label6" msgid "Unit of _measurement:" -msgstr "" +msgstr "י_חידת מידה:" #. vhiR2 #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:302 @@ -8178,7 +8034,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:367 msgctxt "optimpressgeneralpage|objalwymov" msgid "Objects always moveable" -msgstr "" +msgstr "עצמים תמיד ניתנים להזזה" #. tgZUG #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:376 @@ -8190,13 +8046,13 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:387 msgctxt "optimpressgeneralpage|distortcb" msgid "Do not distort objects in curve" -msgstr "" +msgstr "לא לעוות עצמים בעקומה" #. TDrpy #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:402 msgctxt "optimpressgeneralpage|backgroundback" msgid "Use background cache" -msgstr "" +msgstr "להשתמש במטמון רקע" #. Di3Vo #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:411 @@ -8212,10 +8068,9 @@ #. JGppH #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:458 -#, fuzzy msgctxt "optimpressgeneralpage|qickedit" msgid "Allow quick editing" -msgstr "איפשור עריכה מהירה" +msgstr "הפעלת עריכה מהירה" #. vmsrU #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:467 @@ -8237,30 +8092,27 @@ #. 9SB2g #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:501 -#, fuzzy msgctxt "optimpressgeneralpage|label2" msgid "Text Objects" -msgstr "עצם טקסט" +msgstr "עצמי טקסט" #. CrRmE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:533 msgctxt "optimpressgeneralpage|label8" msgid "_Drawing scale:" -msgstr "" +msgstr "_קנה מידת ציור:" #. j7n3M #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:547 -#, fuzzy msgctxt "optimpressgeneralpage|widthlbl" msgid "Page _width:" -msgstr "רוחב עמוד" +msgstr "_רוחב העמוד:" #. Aay7y #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:561 -#, fuzzy msgctxt "optimpressgeneralpage|heightlbl" msgid "Page _height:" -msgstr "גובה העמוד" +msgstr "_גובה העמוד:" #. g2KSM #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:670 @@ -8303,7 +8155,7 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:175 msgctxt "photoalbum|up_btn" msgid "_Up" -msgstr "" +msgstr "למ_עלה" #. Xzv9L #: sd/uiconfig/simpress/ui/photoalbum.ui:179 @@ -8315,7 +8167,7 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:190 msgctxt "photoalbum|down_btn" msgid "Do_wn" -msgstr "" +msgstr "למ_טה" #. ANTjq #: sd/uiconfig/simpress/ui/photoalbum.ui:194 @@ -8331,10 +8183,9 @@ #. XC4DZ #: sd/uiconfig/simpress/ui/photoalbum.ui:290 -#, fuzzy msgctxt "photoalbum|label7" msgid "Slide layout:" -msgstr "מתווה שקופית...‏" +msgstr "פריסת שקופית:" #. AnpSF #: sd/uiconfig/simpress/ui/photoalbum.ui:306 @@ -8358,35 +8209,31 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:326 msgctxt "photoalbum|cap_check" msgid "Add caption to each slide" -msgstr "" +msgstr "הוספת כתובית לכל שקופית" #. qD3jg #: sd/uiconfig/simpress/ui/photoalbum.ui:341 -#, fuzzy msgctxt "photoalbum|asr_check" msgid "Keep aspect ratio" msgstr "שמירה על יחס תצוגה" #. bBevM #: sd/uiconfig/simpress/ui/photoalbum.ui:357 -#, fuzzy msgctxt "photoalbum|asr_check_crop" msgid "Fill Screen" -msgstr "מסך מלא" +msgstr "מילוי המסך" #. UAHAg #: sd/uiconfig/simpress/ui/photoalbum.ui:372 -#, fuzzy msgctxt "photoalbum|insert_as_link_check" msgid "Link images" -msgstr "קישור תמונה" +msgstr "קישור תמונות" #. LAEo2 #: sd/uiconfig/simpress/ui/presentationdialog.ui:13 -#, fuzzy msgctxt "presentationdialog|PresentationDialog" msgid "Slide Show Settings" -msgstr "הגדרות הצגת שקופיות..." +msgstr "הגדרות הצגת שקופיות" #. acmHw #: sd/uiconfig/simpress/ui/presentationdialog.ui:114 @@ -8426,7 +8273,6 @@ #. h3FfX #: sd/uiconfig/simpress/ui/presentationdialog.ui:189 -#, fuzzy msgctxt "presentationdialog|customslideshow" msgid "_Custom slide show:" msgstr "מצגת מות_אמת אישית:" @@ -8483,33 +8329,31 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:351 msgctxt "presentationdialog|external_str" msgid "Auto External (Display %1)" -msgstr "" +msgstr "חיצוני אוטומטי (תצוגה %1)" #. m9FjZ #: sd/uiconfig/simpress/ui/presentationdialog.ui:370 -#, fuzzy msgctxt "presentationdialog|label3" msgid "Multiple Displays" -msgstr "ריבוי מסכים" +msgstr "ריבוי צגים" #. bvPPh #: sd/uiconfig/simpress/ui/presentationdialog.ui:408 -#, fuzzy msgctxt "presentationdialog|default" msgid "F_ull screen" -msgstr "מסך מלא" +msgstr "מ_סך מלא" #. 5Pdcc #: sd/uiconfig/simpress/ui/presentationdialog.ui:417 msgctxt "presentationdialog|extended_tip|default" msgid "A full screen slide is shown." -msgstr "" +msgstr "מופיעה מצגת במסך מלא." #. ESNR9 #: sd/uiconfig/simpress/ui/presentationdialog.ui:428 msgctxt "presentationdialog|window" msgid "In a _window" -msgstr "" +msgstr "ב_חלון" #. mGQKG #: sd/uiconfig/simpress/ui/presentationdialog.ui:437 @@ -8561,10 +8405,9 @@ #. 7PBdA #: sd/uiconfig/simpress/ui/presentationdialog.ui:520 -#, fuzzy msgctxt "presentationdialog|label2" msgid "Presentation Mode" -msgstr "מצגת" +msgstr "מצב מצגת" #. J9PFv #: sd/uiconfig/simpress/ui/presentationdialog.ui:552 @@ -8576,7 +8419,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:560 msgctxt "presentationdialog|extended_tip|manualslides" msgid "Slides never change automatically when this box is selected." -msgstr "" +msgstr "השקופיות לעולם לא תתחלפנה אוטומטית כשהתיבה הזאת מסומנת." #. e4tCG #: sd/uiconfig/simpress/ui/presentationdialog.ui:571 @@ -8588,7 +8431,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:579 msgctxt "presentationdialog|extended_tip|pointervisible" msgid "Shows the mouse pointer during a slide show." -msgstr "" +msgstr "מציג את סמן העכבר בזמן הצגת המצגת." #. seTuX #: sd/uiconfig/simpress/ui/presentationdialog.ui:590 @@ -8654,7 +8497,7 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:33 msgctxt "prntopts|pagedefaultrb" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. hajt3 #: sd/uiconfig/simpress/ui/prntopts.ui:43 @@ -8664,10 +8507,9 @@ #. Azbxx #: sd/uiconfig/simpress/ui/prntopts.ui:54 -#, fuzzy msgctxt "prntopts|fittopgrb" msgid "_Fit to page" -msgstr "התאמה לגודל העמוד" +msgstr "התאמה ל_גודל העמוד" #. BY9Lo #: sd/uiconfig/simpress/ui/prntopts.ui:64 @@ -8702,10 +8544,9 @@ #. LXUhA #: sd/uiconfig/simpress/ui/prntopts.ui:115 -#, fuzzy msgctxt "prntopts|brouchrb" msgid "B_rochure" -msgstr "עלון" +msgstr "_עלון" #. 96Suw #: sd/uiconfig/simpress/ui/prntopts.ui:125 @@ -8717,7 +8558,7 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:143 msgctxt "prntopts|frontcb" msgid "Fr_ont" -msgstr "" +msgstr "ח_זית" #. afFiH #: sd/uiconfig/simpress/ui/prntopts.ui:155 @@ -8727,10 +8568,9 @@ #. RmDFe #: sd/uiconfig/simpress/ui/prntopts.ui:167 -#, fuzzy msgctxt "prntopts|backcb" msgid "Ba_ck" -msgstr "קודם" +msgstr "_חזרה" #. B3z27 #: sd/uiconfig/simpress/ui/prntopts.ui:179 @@ -8740,56 +8580,51 @@ #. NsWL6 #: sd/uiconfig/simpress/ui/prntopts.ui:201 -#, fuzzy msgctxt "prntopts|label3" msgid "Page Options" -msgstr "אפשרויות תמונה" +msgstr "אפשרויות עמוד" #. Cwizr #: sd/uiconfig/simpress/ui/prntopts.ui:231 -#, fuzzy msgctxt "prntopts|pagenmcb" msgid "_Page name" -msgstr "שם עמוד" +msgstr "שם ה_עמוד" #. tFJRe #: sd/uiconfig/simpress/ui/prntopts.ui:240 msgctxt "extended_tip|pagenmcb" msgid "Specifies whether to print the page name." -msgstr "" +msgstr "מציין האם להדפיס את שם העמוד." #. XeD9w #: sd/uiconfig/simpress/ui/prntopts.ui:251 -#, fuzzy msgctxt "prntopts|datecb" msgid "D_ate" -msgstr "תאריך" +msgstr "ת_אריך" #. RFT4B #: sd/uiconfig/simpress/ui/prntopts.ui:260 msgctxt "extended_tip|datecb" msgid "Specifies whether to print the current date." -msgstr "" +msgstr "מציין האם להדפיס את התאריך הנוכחי." #. 4Dm6A #: sd/uiconfig/simpress/ui/prntopts.ui:271 -#, fuzzy msgctxt "prntopts|timecb" msgid "Ti_me" -msgstr "שעה" +msgstr "_שעה" #. aPHPX #: sd/uiconfig/simpress/ui/prntopts.ui:280 msgctxt "extended_tip|timecb" msgid "Specifies whether to print the current time." -msgstr "" +msgstr "מציין האם להדפיס את השעה הנוכחית." #. dBXeA #: sd/uiconfig/simpress/ui/prntopts.ui:291 -#, fuzzy msgctxt "prntopts|hiddenpgcb" msgid "H_idden pages" -msgstr "עמודים חבויים" +msgstr "עמודים מו_סתרים" #. CZxYk #: sd/uiconfig/simpress/ui/prntopts.ui:300 @@ -8807,33 +8642,31 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:356 msgctxt "prntopts|defaultrb" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. pjmw3 #: sd/uiconfig/simpress/ui/prntopts.ui:366 msgctxt "extended_tip|defaultrb" msgid "Specifies that you want to print in original colors." -msgstr "" +msgstr "מציין שבחירתך היא שצבעים יודפסו כמו במקור." #. sFK9C #: sd/uiconfig/simpress/ui/prntopts.ui:377 -#, fuzzy msgctxt "prntopts|grayscalerb" msgid "Gra_yscale" -msgstr "גווני אפור" +msgstr "_גווני אפור" #. 85Da5 #: sd/uiconfig/simpress/ui/prntopts.ui:387 msgctxt "extended_tip|grayscalerb" msgid "Specifies that you want to print colors as grayscale." -msgstr "" +msgstr "מציין שבחירתך היא שצבעים יודפסו בגווני אפור." #. ibjkX #: sd/uiconfig/simpress/ui/prntopts.ui:398 -#, fuzzy msgctxt "prntopts|blackwhiterb" msgid "Black & _white" -msgstr "שחור ולבן" +msgstr "שחור ו_לבן" #. CcezY #: sd/uiconfig/simpress/ui/prntopts.ui:408 @@ -8873,10 +8706,9 @@ #. AjCQi #: sd/uiconfig/simpress/ui/prntopts.ui:517 -#, fuzzy msgctxt "prntopts|contentlbl" msgid "Content" -msgstr "תוכן עניינים" +msgstr "תוכן" #. XxPhN #: sd/uiconfig/simpress/ui/prntopts.ui:539 @@ -8888,18 +8720,16 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:21 msgctxt "publishingdialog|PublishingDialog" msgid "HTML Export" -msgstr "" +msgstr "ייצוא HTML" #. tDwdY #: sd/uiconfig/simpress/ui/publishingdialog.ui:61 -#, fuzzy msgctxt "publishingdialog|lastPageButton" msgid "< Back" -msgstr "< הקודם" +msgstr "< ה_קודם" #. HWaiE #: sd/uiconfig/simpress/ui/publishingdialog.ui:74 -#, fuzzy msgctxt "publishingdialog|finishButton" msgid "_Create" msgstr "י_צירה" @@ -8912,16 +8742,15 @@ #. VNyoG #: sd/uiconfig/simpress/ui/publishingdialog.ui:93 -#, fuzzy msgctxt "publishingdialog|nextPageButton" msgid "Ne_xt >" -msgstr "הבא >>‏" +msgstr "ה_בא >‏" #. hKYBh #: sd/uiconfig/simpress/ui/publishingdialog.ui:135 msgctxt "publishingdialog|newDesignRadiobutton" msgid "New _design" -msgstr "" +msgstr "_עיצוב חדש" #. 4HYDP #: sd/uiconfig/simpress/ui/publishingdialog.ui:144 @@ -8931,10 +8760,9 @@ #. SrGoC #: sd/uiconfig/simpress/ui/publishingdialog.ui:156 -#, fuzzy msgctxt "publishingdialog|oldDesignRadiobutton" msgid "Existing design" -msgstr "גרסאות קיימות" +msgstr "עיצוב קיים" #. SQUhj #: sd/uiconfig/simpress/ui/publishingdialog.ui:165 @@ -8946,31 +8774,31 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:216 msgctxt "publishingdialog|extended_tip|designsTreeview" msgid "Displays all existing designs." -msgstr "" +msgstr "מציג את כל העיצובים הקיימים." #. mEc7e #: sd/uiconfig/simpress/ui/publishingdialog.ui:245 msgctxt "publishingdialog|descLabel" msgid "Select an existing design or create a new one" -msgstr "" +msgstr "נא לבחור עיצוב קיים או ליצור אחד חדש" #. DTYoF #: sd/uiconfig/simpress/ui/publishingdialog.ui:257 msgctxt "publishingdialog|delDesingButton" msgid "Delete Selected Design" -msgstr "" +msgstr "מחיקת העיצוב הנבחר" #. TMauF #: sd/uiconfig/simpress/ui/publishingdialog.ui:266 msgctxt "publishingdialog|extended_tip|delDesingButton" msgid "Deletes the selected design from the design list." -msgstr "" +msgstr "מוחק את העיצוב הנבחר מרשימת העיצובים." #. cQEWT #: sd/uiconfig/simpress/ui/publishingdialog.ui:289 msgctxt "publishingdialog|assignLabel" msgid "Assign Design" -msgstr "" +msgstr "הקצאת עיצוב" #. zD3NQ #: sd/uiconfig/simpress/ui/publishingdialog.ui:298 @@ -8994,7 +8822,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:356 msgctxt "publishingdialog|perlRadiobutton" msgid "Perl" -msgstr "" +msgstr "Perl" #. UBiAa #: sd/uiconfig/simpress/ui/publishingdialog.ui:365 @@ -9006,7 +8834,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:387 msgctxt "publishingdialog|indexTxtLabel" msgid "_URL for listeners:" -msgstr "" +msgstr "_כתובת למאזינים:" #. YgFn6 #: sd/uiconfig/simpress/ui/publishingdialog.ui:406 @@ -9018,7 +8846,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:421 msgctxt "publishingdialog|URLTxtLabel" msgid "URL for _presentation:" -msgstr "" +msgstr "כתובת למ_צגת:" #. V5ADs #: sd/uiconfig/simpress/ui/publishingdialog.ui:439 @@ -9030,7 +8858,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:454 msgctxt "publishingdialog|CGITxtLabel" msgid "URL for _Perl scripts:" -msgstr "" +msgstr "כתובת ל_סקריפטים בשפת Perl:" #. h5jnr #: sd/uiconfig/simpress/ui/publishingdialog.ui:472 @@ -9048,7 +8876,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:527 msgctxt "publishingdialog|chgDefaultRadiobutton" msgid "_As stated in document" -msgstr "" +msgstr "כפי שמ_צוין במסמך" #. 5C9U8 #: sd/uiconfig/simpress/ui/publishingdialog.ui:536 @@ -9058,7 +8886,6 @@ #. vuFBo #: sd/uiconfig/simpress/ui/publishingdialog.ui:548 -#, fuzzy msgctxt "publishingdialog|chgAutoRadiobutton" msgid "_Automatic" msgstr "או_טומטי" @@ -9085,7 +8912,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:622 msgctxt "publishingdialog|endlessCheckbutton" msgid "_Endless" -msgstr "" +msgstr "_ללא סיום" #. AM5ni #: sd/uiconfig/simpress/ui/publishingdialog.ui:631 @@ -9097,25 +8924,25 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:654 msgctxt "publishingdialog|kioskLabel" msgid "Advance Slides" -msgstr "" +msgstr "קידום שקופיות" #. ucqzo #: sd/uiconfig/simpress/ui/publishingdialog.ui:686 msgctxt "publishingdialog|contentCheckbutton" msgid "Create title page" -msgstr "" +msgstr "יצירת עמוד כותרת" #. QkCAN #: sd/uiconfig/simpress/ui/publishingdialog.ui:695 msgctxt "publishingdialog|extended_tip|contentCheckbutton" msgid "Creates a title page for your document." -msgstr "" +msgstr "יוצר עמוד כותרת למסמך שלך." #. fuS2d #: sd/uiconfig/simpress/ui/publishingdialog.ui:707 msgctxt "publishingdialog|notesCheckbutton" msgid "Show notes" -msgstr "" +msgstr "הצגת הערות" #. XTGC6 #: sd/uiconfig/simpress/ui/publishingdialog.ui:716 @@ -9143,7 +8970,6 @@ #. CgTG4 #: sd/uiconfig/simpress/ui/publishingdialog.ui:840 -#, fuzzy msgctxt "publishingdialog|kioskRadiobutton" msgid "_Automatic" msgstr "או_טומטי" @@ -9176,7 +9002,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:895 msgctxt "publishingdialog|standardRadiobutton" msgid "Standard H_TML format" -msgstr "" +msgstr "תבנית _HTML רגילה" #. dqJ8k #: sd/uiconfig/simpress/ui/publishingdialog.ui:904 @@ -9186,7 +9012,6 @@ #. 2D85A #: sd/uiconfig/simpress/ui/publishingdialog.ui:919 -#, fuzzy msgctxt "publishingdialog|publicationLabel" msgid "Publication Type" msgstr "סוג הפרסום" @@ -9195,7 +9020,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:972 msgctxt "publishingdialog|pngRadiobutton" msgid "_PNG" -msgstr "" +msgstr "_PNG" #. tBByA #: sd/uiconfig/simpress/ui/publishingdialog.ui:981 @@ -9207,7 +9032,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:993 msgctxt "publishingdialog|gifRadiobutton" msgid "_GIF" -msgstr "" +msgstr "_GIF" #. CjCTt #: sd/uiconfig/simpress/ui/publishingdialog.ui:1002 @@ -9219,7 +9044,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1014 msgctxt "publishingdialog|jpgRadiobutton" msgid "_JPG" -msgstr "" +msgstr "_JPG" #. bEwzb #: sd/uiconfig/simpress/ui/publishingdialog.ui:1023 @@ -9243,13 +9068,13 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1092 msgctxt "publishingdialog|saveImgAsLabel" msgid "Save Images As" -msgstr "" +msgstr "שמירת תמונות בתור" #. VP9BP #: sd/uiconfig/simpress/ui/publishingdialog.ui:1123 msgctxt "publishingdialog|resolution1Radiobutton" msgid "Low (_640 × 480 pixels)" -msgstr "" +msgstr "נמוכה (‎_640 × 480 פיקסלים)" #. 4RadV #: sd/uiconfig/simpress/ui/publishingdialog.ui:1132 @@ -9261,7 +9086,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1144 msgctxt "publishingdialog|resolution2Radiobutton" msgid "Medium (_800 × 600 pixels)" -msgstr "" +msgstr "בינונית (‎_800 × 600 פיקסלים)" #. XxGDu #: sd/uiconfig/simpress/ui/publishingdialog.ui:1153 @@ -9273,7 +9098,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1165 msgctxt "publishingdialog|resolution3Radiobutton" msgid "High (_1024 × 768 pixels)" -msgstr "" +msgstr "גבוהה (_1024 × 768 פיקסלים)" #. aBZEV #: sd/uiconfig/simpress/ui/publishingdialog.ui:1174 @@ -9285,7 +9110,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1186 msgctxt "publishingdialog|resolution4Radiobutton" msgid "Full HD (1_920 × 1080 pixels)" -msgstr "" +msgstr "HD מלא (1‎_920 × 1080 פיקסלים)" #. CA9F9 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1195 @@ -9297,7 +9122,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1211 msgctxt "publishingdialog|monitorResolutionLabel" msgid "Monitor Resolution" -msgstr "" +msgstr "רזולוציית הצג" #. KJvxg #: sd/uiconfig/simpress/ui/publishingdialog.ui:1247 @@ -9315,14 +9140,13 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1268 msgctxt "publishingdialog|hiddenSlidesCheckbutton" msgid "Export _hidden slides" -msgstr "" +msgstr "יי_צוא שקופיות מוסתרות" #. EnRtp #: sd/uiconfig/simpress/ui/publishingdialog.ui:1287 -#, fuzzy msgctxt "publishingdialog|effectsLabel" msgid "Effects" -msgstr "אפקט" +msgstr "אפקטים" #. 6QQcx #: sd/uiconfig/simpress/ui/publishingdialog.ui:1330 @@ -9339,29 +9163,27 @@ #. qkWFY #: sd/uiconfig/simpress/ui/publishingdialog.ui:1362 -#, fuzzy msgctxt "publishingdialog|emailTxtLabel" msgid "E-_mail address:" -msgstr "כתובת דוא״ל" +msgstr "כתובת _דוא״ל:" #. wvFSd #: sd/uiconfig/simpress/ui/publishingdialog.ui:1376 msgctxt "publishingdialog|wwwTxtLabel" msgid "Your hom_epage:" -msgstr "" +msgstr "_עמוד הבית שלך:" #. rWtUU #: sd/uiconfig/simpress/ui/publishingdialog.ui:1391 -#, fuzzy msgctxt "publishingdialog|addInformLabel" msgid "Additional _information:" -msgstr "מידע נוסף" +msgstr "מידע _נוסף:" #. svqza #: sd/uiconfig/simpress/ui/publishingdialog.ui:1409 msgctxt "publishingdialog|extended_tip|emailEntry" msgid "Specifies the email address." -msgstr "" +msgstr "מציין את כתובת הדוא״ל." #. kXEhW #: sd/uiconfig/simpress/ui/publishingdialog.ui:1427 @@ -9373,25 +9195,25 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1438 msgctxt "publishingdialog|downloadCheckbutton" msgid "Link to a copy of the _original presentation" -msgstr "" +msgstr "קישור ל_עותק של המצגת המקורית" #. rvjoB #: sd/uiconfig/simpress/ui/publishingdialog.ui:1446 msgctxt "publishingdialog|extended_tip|downloadCheckbutton" msgid "Inserts a hyperlink to download a copy of the presentation file." -msgstr "" +msgstr "מוסיף קישור להורדת יותר של קובץ המצגת." #. zyAyC #: sd/uiconfig/simpress/ui/publishingdialog.ui:1471 msgctxt "publishingdialog|extended_tip|miscTextview" msgid "Specifies additional text to appear on the title page." -msgstr "" +msgstr "מציין טקסט נוסף שיופיע בעמוד הכותרת." #. SGhW4 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1488 msgctxt "publishingdialog|infTitlePageLabel" msgid "Information for the Title Page" -msgstr "" +msgstr "מידע לעמוד הכותרת" #. fN2Qw #: sd/uiconfig/simpress/ui/publishingdialog.ui:1520 @@ -9403,13 +9225,13 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1529 msgctxt "publishingdialog|extended_tip|textOnlyCheckbutton" msgid "Inserts only text hyperlinks instead of buttons." -msgstr "" +msgstr "מוסיף רק קישורי טקסט במקום כפתורים." #. hJCd8 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1575 msgctxt "publishingdialog|buttonStyleLabel" msgid "Select Button Style" -msgstr "" +msgstr "בחירת סגנון כפתור" #. ExziF #: sd/uiconfig/simpress/ui/publishingdialog.ui:1608 @@ -9421,34 +9243,31 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1624 msgctxt "publishingdialog|defaultRadiobutton" msgid "Use _browser colors" -msgstr "" +msgstr "להשתמש בצבעי ה_דפדפן" #. FtkC2 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1640 msgctxt "publishingdialog|userRadiobutton" msgid "_Use custom color scheme" -msgstr "" +msgstr "להשתמש בערכת צבעים מו_תאמת" #. 6CoBA #: sd/uiconfig/simpress/ui/publishingdialog.ui:1670 -#, fuzzy msgctxt "publishingdialog|vLinkButton" msgid "_Visited Link" -msgstr "קישור שביקרו בו" +msgstr "קישור ש_ביקרו בו" #. EWurf #: sd/uiconfig/simpress/ui/publishingdialog.ui:1683 -#, fuzzy msgctxt "publishingdialog|aLinkButton" msgid "Active Li_nk" -msgstr "קישור פעיל" +msgstr "קישור _פעיל" #. f5NJa #: sd/uiconfig/simpress/ui/publishingdialog.ui:1696 -#, fuzzy msgctxt "publishingdialog|linkButton" msgid "Hyper_link" -msgstr "היפר קישור" +msgstr "_קישור" #. DZCug #: sd/uiconfig/simpress/ui/publishingdialog.ui:1709 @@ -9458,33 +9277,30 @@ #. vDEFA #: sd/uiconfig/simpress/ui/publishingdialog.ui:1759 -#, fuzzy msgctxt "publishingdialog|backButton" msgid "Bac_kground" -msgstr "רקע" +msgstr "_רקע" #. 3mrfM #: sd/uiconfig/simpress/ui/publishingdialog.ui:1785 msgctxt "publishingdialog|selectColorLabel" msgid "Select Color Scheme" -msgstr "" +msgstr "בחירת ערכת צבעים" #. CAzyf #: sd/uiconfig/simpress/ui/remotedialog.ui:8 -#, fuzzy msgctxt "remotedialog|RemoteDialog" msgid "Impress Remote" -msgstr "Impress בשלט רחוק" +msgstr "Impress Remote" #. hZKA2 #: sd/uiconfig/simpress/ui/remotedialog.ui:25 msgctxt "remotedialog|ok" msgid "C_onnect" -msgstr "" +msgstr "הת_חברות" #. pEkbh #: sd/uiconfig/simpress/ui/remotedialog.ui:138 -#, fuzzy msgctxt "remotedialog|label1" msgid "Connections" msgstr "חיבורים" @@ -9493,28 +9309,25 @@ #: sd/uiconfig/simpress/ui/remotedialog.ui:163 msgctxt "remotedialog|extended_tip|RemoteDialog" msgid "List all Impress Remote available connections." -msgstr "" +msgstr "הצגת כל החיבורים הזמינים של Impress Remote." #. oe6tG #: sd/uiconfig/simpress/ui/rotatemenu.ui:12 -#, fuzzy msgctxt "rotatemenu|90" msgid "Quarter Spin" -msgstr "רבע סיבסוב" +msgstr "רבע סיבוב" #. w3RpA #: sd/uiconfig/simpress/ui/rotatemenu.ui:20 -#, fuzzy msgctxt "rotatemenu|180" msgid "Half Spin" -msgstr "חצי סיבסוב" +msgstr "חצי סיבוב" #. f8XZj #: sd/uiconfig/simpress/ui/rotatemenu.ui:28 -#, fuzzy msgctxt "rotatemenu|360" msgid "Full Spin" -msgstr "סיבסוב מלא" +msgstr "סיבוב מלא" #. cnn2a #: sd/uiconfig/simpress/ui/rotatemenu.ui:36 @@ -9537,28 +9350,24 @@ #. q5TTG #: sd/uiconfig/simpress/ui/scalemenu.ui:12 -#, fuzzy msgctxt "scalemenu|25" msgid "Tiny" msgstr "זעיר" #. yDGRR #: sd/uiconfig/simpress/ui/scalemenu.ui:20 -#, fuzzy msgctxt "scalemenu|50" msgid "Smaller" msgstr "קטן יותר" #. V5AAC #: sd/uiconfig/simpress/ui/scalemenu.ui:28 -#, fuzzy msgctxt "scalemenu|150" msgid "Larger" msgstr "גדול יותר" #. v3x2F #: sd/uiconfig/simpress/ui/scalemenu.ui:36 -#, fuzzy msgctxt "scalemenu|400" msgid "Extra Large" msgstr "גדול במיוחד" @@ -9577,10 +9386,9 @@ #. jdFme #: sd/uiconfig/simpress/ui/scalemenu.ui:66 -#, fuzzy msgctxt "scalemenu|both" msgid "Both" -msgstr "שניהם" +msgstr "גם וגם" #. S5xWe #: sd/uiconfig/simpress/ui/sdviewpage.ui:22 @@ -9596,10 +9404,9 @@ #. RPDaD #: sd/uiconfig/simpress/ui/sdviewpage.ui:42 -#, fuzzy msgctxt "sdviewpage|dragstripes" msgid "_Helplines while moving" -msgstr "שורות סיוע בעת תזוזה" +msgstr "שורות _סיוע בעת תזוזה" #. B2eHZ #: sd/uiconfig/simpress/ui/sdviewpage.ui:50 @@ -9611,7 +9418,7 @@ #: sd/uiconfig/simpress/ui/sdviewpage.ui:62 msgctxt "sdviewpage|handlesbezier" msgid "_All control points in Bézier editor" -msgstr "" +msgstr "_כל נקודות הבקרה בעורך בזייה" #. rRDtR #: sd/uiconfig/simpress/ui/sdviewpage.ui:70 @@ -9641,7 +9448,7 @@ #: sd/uiconfig/simpress/ui/sdviewpage.ui:114 msgctxt "extended_tip|SdViewPage" msgid "Specifies the available display modes." -msgstr "" +msgstr "מציין את מצבי התצוגה הזמינים." #. 7DgNY #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:38 @@ -9651,10 +9458,9 @@ #. 497k8 #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:52 -#, fuzzy msgctxt "sidebarslidebackground|label3" msgid "Background:" -msgstr "רקע" +msgstr "רקע:" #. bHhJV #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:67 @@ -9678,7 +9484,7 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:146 msgctxt "sidebarslidebackground|button2" msgid "Insert Image..." -msgstr "" +msgstr "הוספת תמונה…" #. NH6zN #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:223 @@ -9690,7 +9496,7 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:252 msgctxt "sidebarslidebackground|label4" msgid "Orientation:" -msgstr "" +msgstr "כיוון:" #. Kx5yk #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:269 @@ -9708,7 +9514,7 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:313 msgctxt "sidebarslidebackground|labelmargin" msgid "Margin:" -msgstr "" +msgstr "גבול:" #. anufD #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:326 @@ -9720,56 +9526,55 @@ #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:12 msgctxt "slidecontextmenu|goto" msgid "_Go to Slide" -msgstr "" +msgstr "מ_עבר לשקופית" #. rCXNj #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:38 msgctxt "slidecontextmenu|pen" msgid "Mouse Pointer as _Pen" -msgstr "" +msgstr "_סמן העכבר כעט" #. TXPqW #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:46 msgctxt "slidecontextmenu|width" msgid "_Pen Width" -msgstr "" +msgstr "_עובי עט" #. 4QNpS #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:56 msgctxt "slidecontextmenu|4" msgid "_Very Thin" -msgstr "" +msgstr "_דק מאוד" #. otGpz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:64 msgctxt "slidecontextmenu|100" msgid "_Thin" -msgstr "" +msgstr "ד_ק" #. 76rP5 #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:72 -#, fuzzy msgctxt "slidecontextmenu|150" msgid "_Normal" -msgstr "רגיל" +msgstr "_רגיל" #. g56Pz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:80 msgctxt "slidecontextmenu|200" msgid "_Thick" -msgstr "" +msgstr "ע_בה" #. hrkGo #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:88 msgctxt "slidecontextmenu|400" msgid "_Very Thick" -msgstr "" +msgstr "_עבה מאוד" #. 222Gq #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:100 msgctxt "slidecontextmenu|color" msgid "_Change Pen Color..." -msgstr "" +msgstr "החלפת _צבע עט…" #. zfWFz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:108 @@ -9781,34 +9586,31 @@ #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:122 msgctxt "slidecontextmenu|screen" msgid "_Screen" -msgstr "" +msgstr "מ_סך" #. yNb49 #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:132 -#, fuzzy msgctxt "slidecontextmenu|black" msgid "_Black" -msgstr "שחור" +msgstr "_שחור" #. 4CZGb #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:140 -#, fuzzy msgctxt "slidecontextmenu|white" msgid "_White" -msgstr "לבן" +msgstr "_לבן" #. 4F6dy #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:152 -#, fuzzy msgctxt "slidecontextmenu|edit" msgid "E_dit Presentation" -msgstr "יציאה מהמצגת" +msgstr "_עריכת המצגת" #. Byk6a #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:160 msgctxt "slidecontextmenu|end" msgid "_End Show" -msgstr "" +msgstr "_סיום ההצגה" #. DBgNQ #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:8 @@ -9842,10 +9644,9 @@ #. bVkvr #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:133 -#, fuzzy msgctxt "slidedesigndialog|checkmasters" msgid "_Delete unused backgrounds" -msgstr "ה~סרת רקעים מיותרים" +msgstr "ה_סרת רקעים מיותרים" #. 7gazj #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:141 @@ -9857,7 +9658,7 @@ #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:186 msgctxt "slidedesigndialog|label1" msgid "Select a Slide Design" -msgstr "" +msgstr "בחירת עיצוב שקופיות" #. SRRvK #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:212 @@ -9873,43 +9674,39 @@ #. VYdF2 #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:100 -#, fuzzy msgctxt "slidetransitionspanel|duration_label" msgid "Duration:" -msgstr "מש_ך:" +msgstr "משך:" #. mAJ52 #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:114 msgctxt "slidetransitionspanel|transition_duration|tooltip_text" msgid "Select the speed of Slide Transition." -msgstr "" +msgstr "בחירת מהירות המעבר בין שקופיות." #. ZYD78 #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:121 msgctxt "slidetransitionspanel|extended_tip|transition_duration" msgid "Sets the duration of the slide transition." -msgstr "" +msgstr "מגדיר את משך המעבר בין שקופיות." #. VrA9B #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:135 -#, fuzzy msgctxt "slidetransitionspanel|sound_label" msgid "Sound:" -msgstr "_קול:" +msgstr "קול:" #. H9Dt4 #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151 -#, fuzzy msgctxt "slidetransitionspanel|sound_list" msgid "No sound" -msgstr "(ללא קול)" +msgstr "ללא קול" #. KqCFJ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152 -#, fuzzy msgctxt "slidetransitionspanel|sound_list" msgid "Stop previous sound" -msgstr "(להפסיק את הקול הקודם)" +msgstr "עצירת הצליל הקודם" #. HriFB #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153 @@ -9921,56 +9718,55 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:157 msgctxt "slidetransitionspanel|extended_tip|sound_list" msgid "Lists sounds that can played during the slide transition." -msgstr "" +msgstr "מציג צלילים שאפשר לנגן במהלך מעבר בין שקופיות." #. YUk3y #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:168 msgctxt "slidetransitionspanel|loop_sound" msgid "Loop until next sound" -msgstr "" +msgstr "לנגן בלולאה עד הצליל הבא" #. HYGMp #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:176 msgctxt "slidetransitionspanel|extended_tip|loop_sound" msgid "Select to play the sound repeatedly until another sound starts." -msgstr "" +msgstr "יש לבחור כדי לנגן את הצליל מחזורית עד שצליל אחר יתחיל." #. ja7Bv #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:190 -#, fuzzy msgctxt "slidetransitionspanel|variant_label" msgid "Variant:" -msgstr "ה_גוון:" +msgstr "הגוון:" #. ECukd #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:206 msgctxt "slidetransitionspanel|extended_tip|variant_list" msgid "Select a variation of the transition." -msgstr "" +msgstr "נא לבחור הגוון של המעברון." #. F6RuQ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:224 msgctxt "slidetransitionspanel|label1" msgid "Modify Transition" -msgstr "" +msgstr "שינוי מעברון" #. Hm6kN #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:254 msgctxt "slidetransitionspanel|rb_mouse_click" msgid "On mouse click" -msgstr "" +msgstr "בלחיצת עכבר" #. txqWa #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:263 msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click" msgid "Select to advance to the next slide on a mouse click." -msgstr "" +msgstr "יש לבחור כדי להתקדם לשקופית הבאה בלחיצת עכבר." #. bFejF #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275 msgctxt "slidetransitionspanel|rb_auto_after" msgid "After:" -msgstr "" +msgstr "לאחר:" #. rJJQy #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287 @@ -9988,13 +9784,13 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324 msgctxt "slidetransitionspanel|label2" msgid "Advance Slide" -msgstr "" +msgstr "קידום שקופית" #. czZBc #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350 msgctxt "slidetransitionspanel|apply_to_all" msgid "Apply Transition to All Slides" -msgstr "" +msgstr "החלת המעברון על כל השקופיות" #. hoaV2 #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357 @@ -10016,7 +9812,6 @@ #. dqjov #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412 -#, fuzzy msgctxt "slidetransitionspanel|play" msgid "Play" msgstr "הפעלה" @@ -10025,7 +9820,7 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416 msgctxt "slidetransitionspanel|play|tooltip_text" msgid "Preview Effect" -msgstr "" +msgstr "תצוגה מקדימה של אפקט" #. HddiF #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423 @@ -10055,27 +9850,25 @@ #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:52 msgctxt "tabledesignpanel|UseBandingRowStyle" msgid "_Banded rows" -msgstr "" +msgstr "_שורות מסורגות" #. 3KfJE #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:66 -#, fuzzy msgctxt "tabledesignpanel|UseFirstColumnStyle" msgid "Fi_rst column" -msgstr "עמודה ראשונה" +msgstr "עמודה _ראשונה" #. HLRSH #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:80 -#, fuzzy msgctxt "tabledesignpanel|UseLastColumnStyle" msgid "_Last column" -msgstr "עמודה אחרונה" +msgstr "עמודה _אחרונה" #. z5zRG #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:94 msgctxt "tabledesignpanel|UseBandingColumnStyle" msgid "Ba_nded columns" -msgstr "" +msgstr "עמו_דות מסורגות" #. FvyKu #: sd/uiconfig/simpress/ui/templatedialog.ui:8 @@ -10148,10 +9941,9 @@ #. c5b3i #: sd/uiconfig/simpress/ui/templatedialog.ui:583 -#, fuzzy msgctxt "templatedialog|animation" msgid "Text Animation" -msgstr "ה_נפשת טקסט:" +msgstr "הנפשת טקסט" #. dyjNi #: sd/uiconfig/simpress/ui/templatedialog.ui:631 @@ -10180,7 +9972,6 @@ #. RKvWz #: sd/uiconfig/simpress/ui/templatedialog.ui:823 -#, fuzzy msgctxt "templatedialog|tabs" msgid "Tabs" msgstr "לשוניות" diff -Nru libreoffice-7.4.6/translations/source/he/setup_native/source/mac.po libreoffice-7.4.7/translations/source/he/setup_native/source/mac.po --- libreoffice-7.4.6/translations/source/he/setup_native/source/mac.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/setup_native/source/mac.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-03-23 08:16+0000\n" +"PO-Revision-Date: 2023-03-14 12:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1504532980.000000\n" #. HQKCW @@ -59,7 +59,7 @@ "IntroText2\n" "LngText.text" msgid "This installation will update your installed versions of [PRODUCTNAME]" -msgstr "התקנה זו תעדכן את הגירסה המותקנת של [PRODUCTNAME]" +msgstr "התקנה זו תעדכן את הגרסה המותקנת של [PRODUCTNAME]" #. gBF5L #: macinstall.ulf diff -Nru libreoffice-7.4.6/translations/source/he/sfx2/classification.po libreoffice-7.4.7/translations/source/he/sfx2/classification.po --- libreoffice-7.4.6/translations/source/he/sfx2/classification.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/sfx2/classification.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-07-01 17:54+0200\n" -"PO-Revision-Date: 2021-09-05 11:22+0000\n" +"PO-Revision-Date: 2023-03-06 11:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.6.2\n" +"X-Generator: Weblate 4.15.2\n" #. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification #. TEpY4 @@ -23,7 +23,7 @@ "PolicyAuthorityName\n" "LngText.text" msgid "TSCP Example Policy Authority" -msgstr "" +msgstr "רשות מדיניות TSCP לדוגמה" #. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification #. DyYWA @@ -33,7 +33,7 @@ "PolicyName\n" "LngText.text" msgid "TSCP Example Policy" -msgstr "" +msgstr "מדיניות TSCP לדוגמה" #. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification #. dphRC diff -Nru libreoffice-7.4.6/translations/source/he/sfx2/messages.po libreoffice-7.4.7/translations/source/he/sfx2/messages.po --- libreoffice-7.4.6/translations/source/he/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2021-09-08 09:16+0000\n" +"PO-Revision-Date: 2023-03-14 12:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565194215.000000\n" #. bHbFE @@ -50,55 +50,55 @@ #: include/sfx2/strings.hrc:30 msgctxt "STR_OPEN" msgid "~Open" -msgstr "" +msgstr "~פתיחה" #. ACduP #: include/sfx2/strings.hrc:31 msgctxt "STR_EDIT_TEMPLATE" msgid "~Edit" -msgstr "" +msgstr "ע~ריכה" #. aKW5U #: include/sfx2/strings.hrc:32 msgctxt "STR_DEFAULT_TEMPLATE" msgid "Set as De~fault" -msgstr "" +msgstr "הגדרה כ~ברירת מחדל" #. Bwnha #: include/sfx2/strings.hrc:33 msgctxt "STR_RESET_DEFAULT" msgid "Reset De~fault" -msgstr "" +msgstr "~איפוס ברירת מחדל" #. oRvm4 #: include/sfx2/strings.hrc:34 msgctxt "STR_DELETE_TEMPLATE" msgid "~Delete" -msgstr "" +msgstr "מ~חיקה" #. UyfFH #: include/sfx2/strings.hrc:35 msgctxt "STR_SFX_RENAME" msgid "~Rename" -msgstr "" +msgstr "~שינוי שם" #. Gnhk4 #: include/sfx2/strings.hrc:36 msgctxt "STR_ACTION_MOVE" msgid "~Move" -msgstr "" +msgstr "ה~עברה" #. tWE8a #: include/sfx2/strings.hrc:37 msgctxt "STR_ACTION_EXPORT" msgid "E~xport" -msgstr "" +msgstr "יי~צוא" #. aEN5D #: include/sfx2/strings.hrc:38 msgctxt "STR_CATEGORY_RENAME" msgid "Ren~ame Category" -msgstr "" +msgstr "שינוי שם ~קטגוריה" #. Ys9z4 #: include/sfx2/strings.hrc:39 @@ -126,7 +126,7 @@ #: include/sfx2/strings.hrc:42 msgctxt "STR_AUTOMATICVERSION" msgid "Automatically saved version" -msgstr "גירסה שנשמרה אוטומטית" +msgstr "גרסה שנשמרה אוטומטית" #. EfF2v #: include/sfx2/strings.hrc:43 @@ -493,7 +493,7 @@ #: include/sfx2/strings.hrc:100 msgctxt "STR_KB" msgid "kB" -msgstr "" +msgstr "ק״ב" #. VrFxn #: include/sfx2/strings.hrc:101 @@ -530,6 +530,8 @@ "It might be dangerous to open \"$(ARG1)\".\n" "Do you really want to open it?" msgstr "" +"הפתיחה של „$(ARG1)” כרוכה בסיכון.\n" +"לפתוח אותה בכל זאת?" #. ADqLM #: include/sfx2/strings.hrc:106 @@ -877,7 +879,7 @@ #: include/sfx2/strings.hrc:159 msgctxt "RID_SVXSTR_GRAPHICLINK" msgid "Image" -msgstr "" +msgstr "תמונה" #. dUK2G #: include/sfx2/strings.hrc:160 @@ -1030,7 +1032,7 @@ #: include/sfx2/strings.hrc:184 msgctxt "STR_WELCOME_LINE2" msgid "Drop a document here or open an app to create one." -msgstr "" +msgstr "אפשר לגרור לכאן מסמך או לפתוח יישום כדי ליצור אחד כזה." #. oTVdA #. Translators: Target types in Auto-redaction dialog @@ -1135,7 +1137,7 @@ #: include/sfx2/strings.hrc:207 msgctxt "STR_REDACTION_NO_DRAW_WARNING" msgid "Draw module is needed for redaction. Please make sure you have %PRODUCTNAME Draw installed and working correctly." -msgstr "" +msgstr "המודול Draw (ציור) לטובת עריכה. נא לוודא ש־%PRODUCTNAME Draw מותקן ועובד כראוי." #. FQ9kN #: include/sfx2/strings.hrc:209 @@ -1248,7 +1250,7 @@ "Name already exists as a default Style.\n" "Please choose another name." msgstr "" -"השם שצויין כבר קיים כסגנון בררת מחדל.\n" +"השם שצויין כבר קיים כסגנון ברירת מחדל.\n" "נא לבחור שם אחר." #. NWDmA @@ -1259,6 +1261,9 @@ "If you will delete it, text or objects using these styles will revert to the parent style.\n" "Do you still wish to delete these styles?\n" msgstr "" +"אחד או יותר מהסגנונות הנבחרים נמצאים בשימוש במסמך הזה.\n" +"מחיקת הסגנון, תוביל לכך שטקסט או עצמים שמשתמשים בסגנונות האלה יחזרו לסגנון ההורה שלהם.\n" +"בכל זאת למחוק את הסגנונות האלו?\n" #. kuD77 #: include/sfx2/strings.hrc:230 @@ -1333,7 +1338,7 @@ "No default printer found.\n" "Please choose a printer and try again." msgstr "" -"לא נמצאה מדפסת בררת מחדל.\n" +"לא נמצאה מדפסת ברירת מחדל.\n" "נא לבחור מדפסת ולנסות שוב." #. a3NTu @@ -1565,10 +1570,9 @@ #. QAnvx #: include/sfx2/strings.hrc:279 -#, fuzzy msgctxt "STR_CHECKOUT" msgid "Check Out" -msgstr "רישום יוצא" +msgstr "משיכה" #. PwPNw #: include/sfx2/strings.hrc:280 @@ -1604,13 +1608,13 @@ #: include/sfx2/strings.hrc:285 msgctxt "STR_SIGNATURE_NOTVALIDATED" msgid "At least one signature has problems: the certificate could not be validated." -msgstr "" +msgstr "לפחות באחת מהחתימות יש תקלות: לא ניתן לאמת את האישור." #. tjCmr #: include/sfx2/strings.hrc:286 msgctxt "STR_SIGNATURE_PARTIAL_OK" msgid "At least one signature has problems: the document is only partially signed." -msgstr "" +msgstr "לפחות באחת מהחתימות יש תקלות: המסמך חתום חלקית בלבד." #. mU6ot #: include/sfx2/strings.hrc:287 @@ -1634,38 +1638,38 @@ #: include/sfx2/strings.hrc:290 msgctxt "STR_TRACK_CHANGES_BUTTON" msgid "Show Toolbar" -msgstr "" +msgstr "הצגת סרגל כלים" #. 68ZqS #: include/sfx2/strings.hrc:291 msgctxt "STR_TRACK_CHANGES_BUTTON_HIDE" msgid "Hide Toolbar" -msgstr "" +msgstr "הסתרת סרגל כלים" #. BzVAA #: include/sfx2/strings.hrc:292 msgctxt "STR_HYPHENATION_BUTTON" msgid "Learn more" -msgstr "" +msgstr "מידע נוסף" #. BSyb4 #: include/sfx2/strings.hrc:293 msgctxt "STR_REFRESH_MASTER_PASSWORD" msgid "The master password is stored in an outdated format, you should refresh it" -msgstr "" +msgstr "הסיסמה הראשית מאוחסנת בתצורה מיושנת, כדאי לרענן אותה" #. ysChU #: include/sfx2/strings.hrc:294 msgctxt "STR_REFRESH_PASSWORD" msgid "Refresh Password" -msgstr "" +msgstr "רענון סיסמה" #. kej8D #. Translators: default Impress template names #: include/sfx2/strings.hrc:297 msgctxt "STR_TEMPLATE_NAME1" msgid "Grey Elegant" -msgstr "" +msgstr "אלגנטי אפור" #. FkuLG #: include/sfx2/strings.hrc:298 @@ -1689,13 +1693,13 @@ #: include/sfx2/strings.hrc:301 msgctxt "STR_TEMPLATE_NAME5" msgid "Candy" -msgstr "" +msgstr "ממתק" #. jEiAn #: include/sfx2/strings.hrc:302 msgctxt "STR_TEMPLATE_NAME6" msgid "Yellow Idea" -msgstr "" +msgstr "רעיון צהוב" #. QDNuB #: include/sfx2/strings.hrc:303 @@ -1719,7 +1723,7 @@ #: include/sfx2/strings.hrc:306 msgctxt "STR_TEMPLATE_NAME10" msgid "Freshes" -msgstr "" +msgstr "מרעננים" #. C5N9D #: include/sfx2/strings.hrc:307 @@ -1737,7 +1741,7 @@ #: include/sfx2/strings.hrc:309 msgctxt "STR_TEMPLATE_NAME13" msgid "Growing Liberty" -msgstr "" +msgstr "חירות מתגברת" #. xo2gC #: include/sfx2/strings.hrc:310 @@ -1816,7 +1820,7 @@ #: include/sfx2/strings.hrc:323 msgctxt "STR_TEMPLATE_NAME26" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. d7Hyk #: include/sfx2/strings.hrc:324 @@ -1900,97 +1904,97 @@ #: include/sfx2/strings.hrc:342 msgctxt "STR_DOCUMENT" msgid "Document" -msgstr "" +msgstr "מסמך" #. XDGTb #: include/sfx2/strings.hrc:343 msgctxt "STR_SPREADSHEET" msgid "Spreadsheet" -msgstr "" +msgstr "גיליון נתונים" #. 3UZXB #: include/sfx2/strings.hrc:344 msgctxt "STR_PRESENTATION" msgid "Presentation" -msgstr "" +msgstr "מצגת" #. noN5s #: include/sfx2/strings.hrc:345 msgctxt "STR_DRAWING" msgid "Drawing" -msgstr "" +msgstr "ציור" #. QpuFo #: include/sfx2/strings.hrc:346 msgctxt "STR_RECENT" msgid "Recently used" -msgstr "" +msgstr "בשימוש לאחרונה" #. EcAjb #: include/sfx2/strings.hrc:347 msgctxt "STR_NORECENT" msgid "No recent characters" -msgstr "" +msgstr "אין תווים אחרונים" #. tfjbD #: include/sfx2/strings.hrc:349 msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES" msgid "Reset All De~fault Templates" -msgstr "" +msgstr "איפוס כל תבניות ~ברירת המחדל" #. GWuDE #: include/sfx2/strings.hrc:350 msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE" msgid "Reset De~fault Text Document" -msgstr "" +msgstr "איפוס ברירת המחדל של מסמך ~טקסט" #. j5eV8 #: include/sfx2/strings.hrc:351 msgctxt "STR_ACTION_RESET_CALC_TEMPLATE" msgid "Reset De~fault Spreadsheet" -msgstr "" +msgstr "איפוס ברירת המחדל של ~גיליון נתונים" #. mWp3t #: include/sfx2/strings.hrc:352 msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE" msgid "Reset De~fault Presentation" -msgstr "" +msgstr "איפוס ברירת המחדל של מ~צגת" #. wfExB #: include/sfx2/strings.hrc:353 msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE" msgid "Reset De~fault Drawing" -msgstr "" +msgstr "איפוס ברירת המחדל של ~ציור" #. BFaGA #: include/sfx2/strings.hrc:354 msgctxt "STR_ACTION_IMPORT" msgid "~Import" -msgstr "" +msgstr "יי~בוא" #. 8Cwfk #: include/sfx2/strings.hrc:355 msgctxt "STR_ACTION_EXTENSIONS" msgid "E~xtensions" -msgstr "" +msgstr "ה~רחבות" #. idGvM #: include/sfx2/strings.hrc:356 msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE" msgid "Rename" -msgstr "" +msgstr "שינוי שם" #. EyjE3 #: include/sfx2/strings.hrc:357 msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY" msgid "Rename Category" -msgstr "" +msgstr "שינוי שם קטגוריה" #. T79Eb #: include/sfx2/strings.hrc:358 msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY" msgid "New Category" -msgstr "" +msgstr "קטגוריה חדשה" #. wH3TZ msgctxt "stock" @@ -2089,10 +2093,9 @@ #. f3nqh #: sfx2/inc/dinfdlg.hrc:34 -#, fuzzy msgctxt "SFX_CB_PROPERTY_STRINGARRAY" msgid "Disposition" -msgstr "נטיה" +msgstr "יעוד" #. uznMD #: sfx2/inc/dinfdlg.hrc:35 @@ -2228,10 +2231,9 @@ #. Geeuu #: sfx2/inc/dinfdlg.hrc:57 -#, fuzzy msgctxt "SFX_CB_PROPERTY_STRINGARRAY" msgid "Typist" -msgstr "קלדן" +msgstr "הקלדה" #. xxHtR #: sfx2/inc/dinfdlg.hrc:58 @@ -2359,301 +2361,301 @@ #: sfx2/source/devtools/DevToolsStrings.hrc:15 msgctxt "STR_TEXT_PORTION" msgid "Text Portion %1" -msgstr "" +msgstr "מקטע טקסט %1" #. 5ZXbE #: sfx2/source/devtools/DevToolsStrings.hrc:16 msgctxt "STR_PARAGRAPH" msgid "Paragraph %1" -msgstr "" +msgstr "פסקה %1" #. DJi4i #: sfx2/source/devtools/DevToolsStrings.hrc:17 msgctxt "STR_SHAPE" msgid "Shape %1" -msgstr "" +msgstr "צורה %1" #. Ucjjh #: sfx2/source/devtools/DevToolsStrings.hrc:18 msgctxt "STR_PAGE" msgid "Page %1" -msgstr "" +msgstr "עמוד %1" #. j9DL6 #: sfx2/source/devtools/DevToolsStrings.hrc:19 msgctxt "STR_SLIDE" msgid "Slide %1" -msgstr "" +msgstr "שקופית %1" #. YQqL8 #: sfx2/source/devtools/DevToolsStrings.hrc:20 msgctxt "STR_MASTER_SLIDE" msgid "Master Slide %1" -msgstr "" +msgstr "שקופית ראשית %1" #. CEfNy #: sfx2/source/devtools/DevToolsStrings.hrc:21 msgctxt "STR_SHEET" msgid "Sheet %1" -msgstr "" +msgstr "גיליון %1" #. BaABx #: sfx2/source/devtools/DevToolsStrings.hrc:23 msgctxt "STR_SHAPES_NODE" msgid "Shapes" -msgstr "" +msgstr "צורות" #. n4VWE #: sfx2/source/devtools/DevToolsStrings.hrc:24 msgctxt "STR_CHARTS_ENTRY" msgid "Charts" -msgstr "" +msgstr "תרשימים" #. 5GWcX #: sfx2/source/devtools/DevToolsStrings.hrc:25 msgctxt "STR_PIVOT_TABLES_ENTRY" msgid "Pivot Tables" -msgstr "" +msgstr "טבלאות ציר" #. BBLBQ #: sfx2/source/devtools/DevToolsStrings.hrc:26 msgctxt "STR_DOCUMENT_ENTRY" msgid "Document" -msgstr "" +msgstr "מסמך" #. 4dNGV #: sfx2/source/devtools/DevToolsStrings.hrc:27 msgctxt "STR_SHEETS_ENTRY" msgid "Sheets" -msgstr "" +msgstr "גיליונות" #. RLwRi #: sfx2/source/devtools/DevToolsStrings.hrc:28 msgctxt "STR_STYLES_ENTRY" msgid "Styles" -msgstr "" +msgstr "סגנונות" #. P4RF4 #: sfx2/source/devtools/DevToolsStrings.hrc:29 msgctxt "STR_SLIDES_ENTRY" msgid "Slides" -msgstr "" +msgstr "שקופיות" #. 4bJSH #: sfx2/source/devtools/DevToolsStrings.hrc:30 msgctxt "STR_MASTER_SLIDES_ENTRY" msgid "Master Slides" -msgstr "" +msgstr "שקופיות ראשיות" #. LRq2A #: sfx2/source/devtools/DevToolsStrings.hrc:31 msgctxt "STR_PAGES_ENTRY" msgid "Pages" -msgstr "" +msgstr "עמודים" #. 946kV #: sfx2/source/devtools/DevToolsStrings.hrc:32 msgctxt "STR_PARAGRAPHS_ENTRY" msgid "Paragraphs" -msgstr "" +msgstr "פסקאות" #. JG2qz #: sfx2/source/devtools/DevToolsStrings.hrc:33 msgctxt "STR_TABLES_ENTRY" msgid "Tables" -msgstr "" +msgstr "טבלאות" #. HzFoW #: sfx2/source/devtools/DevToolsStrings.hrc:34 msgctxt "STR_FRAMES_ENTRY" msgid "Frames" -msgstr "" +msgstr "מסגרות" #. ekGEm #: sfx2/source/devtools/DevToolsStrings.hrc:35 msgctxt "STR_GRAPHIC_OBJECTS_ENTRY" msgid "Graphic Objects" -msgstr "" +msgstr "עצמים גרפיים" #. cVWmY #: sfx2/source/devtools/DevToolsStrings.hrc:36 msgctxt "STR_EMBEDDED_OBJECTS_ENTRY" msgid "Embedded Objects" -msgstr "" +msgstr "עצמים משובצים" #. xfnkV #: sfx2/source/devtools/DevToolsStrings.hrc:38 msgctxt "STR_ANY_VALUE_TRUE" msgid "True" -msgstr "" +msgstr "אמת" #. 2WxdA #: sfx2/source/devtools/DevToolsStrings.hrc:39 msgctxt "STR_ANY_VALUE_FALSE" msgid "False" -msgstr "" +msgstr "שקר" #. RBC8w #: sfx2/source/devtools/DevToolsStrings.hrc:40 msgctxt "STR_ANY_VALUE_NULL" msgid "Null" -msgstr "" +msgstr "ריק" #. As494 #: sfx2/source/devtools/DevToolsStrings.hrc:41 msgctxt "STR_CLASS_UNKNOWN" msgid "Unknown" -msgstr "" +msgstr "לא ידוע" #. gAY69 #: sfx2/source/devtools/DevToolsStrings.hrc:43 msgctxt "STR_METHOD_TYPE_OBJECT" msgid "object" -msgstr "" +msgstr "עצם" #. HFgBW #: sfx2/source/devtools/DevToolsStrings.hrc:44 msgctxt "STR_METHOD_TYPE_STRUCT" msgid "struct" -msgstr "" +msgstr "מבנה" #. 7DCri #: sfx2/source/devtools/DevToolsStrings.hrc:45 msgctxt "STR_METHOD_TYPE_ENUM" msgid "enum" -msgstr "" +msgstr "נמנים" #. aEuJR #: sfx2/source/devtools/DevToolsStrings.hrc:46 msgctxt "STR_METHOD_TYPE_SEQUENCE" msgid "sequence" -msgstr "" +msgstr "רצף" #. xXMdD #: sfx2/source/devtools/DevToolsStrings.hrc:48 msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER" msgid "name container" -msgstr "" +msgstr "מארז שם" #. QLZbz #: sfx2/source/devtools/DevToolsStrings.hrc:49 msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER" msgid "index container" -msgstr "" +msgstr "מארז מפתח" #. LLsJf #: sfx2/source/devtools/DevToolsStrings.hrc:50 msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION" msgid "enumeration" -msgstr "" +msgstr "נמנים" #. aNuA9 #: sfx2/source/devtools/DevToolsStrings.hrc:52 msgctxt "STR_PARMETER_MODE_IN" msgid "[in]" -msgstr "" +msgstr "[בתוך]" #. W3AEx #: sfx2/source/devtools/DevToolsStrings.hrc:53 msgctxt "STR_PARMETER_MODE_OUT" msgid "[out]" -msgstr "" +msgstr "[מחוץ]" #. ENF6w #: sfx2/source/devtools/DevToolsStrings.hrc:54 msgctxt "STR_PARMETER_MODE_IN_AND_OUT" msgid "[in&out]" -msgstr "" +msgstr "[בפנים ובחוץ]" #. rw6AB #: sfx2/source/devtools/DevToolsStrings.hrc:56 msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE" msgid "attribute" -msgstr "" +msgstr "מאפיין" #. BwCGg #: sfx2/source/devtools/DevToolsStrings.hrc:57 msgctxt "STR_PROPERTY_ATTRIBUTE_GET" msgid "get" -msgstr "" +msgstr "משיכה" #. MissY #: sfx2/source/devtools/DevToolsStrings.hrc:58 msgctxt "STR_PROPERTY_ATTRIBUTE_SET" msgid "set" -msgstr "" +msgstr "הגדרה" #. Nhmiv #: sfx2/source/devtools/DevToolsStrings.hrc:59 msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID" msgid "may be void" -msgstr "" +msgstr "יכול להיות ריק" #. zECkD #: sfx2/source/devtools/DevToolsStrings.hrc:60 msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY" msgid "read-only" -msgstr "" +msgstr "לקריאה בלבד" #. BtQDx #: sfx2/source/devtools/DevToolsStrings.hrc:61 msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY" msgid "write-only" -msgstr "" +msgstr "לכתיבה בלבד" #. dBQEu #: sfx2/source/devtools/DevToolsStrings.hrc:62 msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE" msgid "removeable" -msgstr "" +msgstr "זמין להסרה" #. jRo8t #: sfx2/source/devtools/DevToolsStrings.hrc:63 msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND" msgid "bound" -msgstr "" +msgstr "מאוגד" #. rBqTG #: sfx2/source/devtools/DevToolsStrings.hrc:64 msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED" msgid "constrained" -msgstr "" +msgstr "מוגבל" #. XLnBt #: sfx2/source/devtools/DevToolsStrings.hrc:65 msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT" msgid "transient" -msgstr "" +msgstr "חולף" #. BK7Zk #: sfx2/source/devtools/DevToolsStrings.hrc:66 msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS" msgid "may be ambiguous" -msgstr "" +msgstr "יכול להיות דו־משמעי" #. BDEqD #: sfx2/source/devtools/DevToolsStrings.hrc:67 msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT" msgid "may be default" -msgstr "" +msgstr "יכול להיות ברירת מחדל" #. TGQhd #: sfx2/source/devtools/DevToolsStrings.hrc:69 msgctxt "STR_PROPERTY_VALUE_SEQUENCE" msgid "" -msgstr "" +msgstr "<רצף [%1]>" #. KZ5M4 #: sfx2/source/devtools/DevToolsStrings.hrc:70 msgctxt "STR_PROPERTY_VALUE_OBJECT" msgid "" -msgstr "" +msgstr "<עצם@%1>" #. xKaJy #: sfx2/source/devtools/DevToolsStrings.hrc:71 msgctxt "STR_PROPERTY_VALUE_STRUCT" msgid "" -msgstr "" +msgstr "<מבנה>" #. AxfFu #: sfx2/uiconfig/ui/addtargetdialog.ui:8 @@ -2785,13 +2787,13 @@ #: sfx2/uiconfig/ui/alienwarndialog.ui:65 msgctxt "alienwarndialog|ask" msgid "_Ask when not saving in ODF or default format" -msgstr "לש_אול כאשר הקובץ לא נשמר כ־ODF או במבנה בררת המחדל" +msgstr "לש_אול כאשר הקובץ לא נשמר כ־ODF או במבנה ברירת המחדל" #. GVVQ6 #: sfx2/uiconfig/ui/autoredactdialog.ui:24 msgctxt "autoredactdialog|AutoRedactDialog" msgid "Automatic Redaction" -msgstr "" +msgstr "עריכה אוטומטית" #. QCidi #: sfx2/uiconfig/ui/autoredactdialog.ui:122 @@ -2827,7 +2829,7 @@ #: sfx2/uiconfig/ui/autoredactdialog.ui:202 msgctxt "menuassignpage|contentslabel" msgid "_Redaction Targets" -msgstr "" +msgstr "יעדי ע_ריכה" #. E4GWo #: sfx2/uiconfig/ui/autoredactdialog.ui:222 @@ -2965,7 +2967,7 @@ #: sfx2/uiconfig/ui/commandpopup.ui:35 msgctxt "commandpopup|entry" msgid "Search command" -msgstr "" +msgstr "חיפוש פקודה" #. w2G7M #: sfx2/uiconfig/ui/custominfopage.ui:15 @@ -2977,7 +2979,7 @@ #: sfx2/uiconfig/ui/custominfopage.ui:23 msgctxt "custominfopage|extended_tip|add" msgid "Click to add a new row to the Properties list." -msgstr "" +msgstr "אפשר להוסיף שורה לרשימת המאפיינים בלחיצה." #. aB3bA #: sfx2/uiconfig/ui/custominfopage.ui:42 @@ -3001,13 +3003,13 @@ #: sfx2/uiconfig/ui/custominfopage.ui:116 msgctxt "custominfopage|extended_tip|properties" msgid "Enter your custom contents. You can change the name, type, and contents of each row. You can add or remove rows. The items will be exported as metadata to other file formats." -msgstr "" +msgstr "נא למלא תוכן משלך. אפשר לשנות את השם, הסוג והתוכן של כל אחת מהשורות. אפשר להוסיף או להסיר שורות. הפריטים ייוצאו כנתוני על לסוגי קבצים נוספים." #. au5jH #: sfx2/uiconfig/ui/custominfopage.ui:138 msgctxt "custominfopage|extended_tip|CustomInfoPage" msgid "Allows you to assign custom information fields to your document." -msgstr "" +msgstr "מאפשר לך להקצות שדות מידע מותאמים אישית למסמך שלך." #. VHwZA #: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106 @@ -3043,103 +3045,103 @@ #: sfx2/uiconfig/ui/descriptioninfopage.ui:79 msgctxt "descriptioninfopage|extended_tip|title" msgid "Enter a title for the document." -msgstr "" +msgstr "נא למלא כותרת לתבנית." #. rvZHi #: sfx2/uiconfig/ui/descriptioninfopage.ui:96 msgctxt "descriptioninfopage|extended_tip|subject" msgid "Enter a subject for the document. You can use a subject to group documents with similar contents." -msgstr "" +msgstr "נא למלא נושא למסמך. אפשר להשתמש בנושא כדי לקבץ מסמכים עם תכנים דומים." #. FoxGh #: sfx2/uiconfig/ui/descriptioninfopage.ui:113 msgctxt "descriptioninfopage|extended_tip|keywords" msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons." -msgstr "" +msgstr "נא למלא את המילים בהם ברצונך להשתמש כדי לשמור את תוכן המסמך שלך במפתח (אינדקס). אפשר להפריד בין מילות המפתח בפסיקים. מילת מפתח יכולה להכיל רווח או נקודה פסיק." #. bo2q7 #: sfx2/uiconfig/ui/descriptioninfopage.ui:137 msgctxt "descriptioninfopage|extended_tip|comments" msgid "Enter comments to help identify the document." -msgstr "" +msgstr "כדאי למלא הערות כדי לסייע בזיהוי המסמך." #. sGW3Z #: sfx2/uiconfig/ui/descriptioninfopage.ui:150 msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage" msgid "Contains descriptive information about the document." -msgstr "" +msgstr "מציג מידע מפורט על המסמך." #. tC2rt #: sfx2/uiconfig/ui/developmenttool.ui:116 msgctxt "developmenttool|dom_current_selection_toggle-tooltip" msgid "Current Selection In Document" -msgstr "" +msgstr "הבחירה הנוכחית במסמך" #. Po2S3 #: sfx2/uiconfig/ui/developmenttool.ui:117 msgctxt "developmenttool|dom_current_selection_toggle" msgid "Current Selection" -msgstr "" +msgstr "הבחירה הנוכחית" #. eB6NR #: sfx2/uiconfig/ui/developmenttool.ui:128 msgctxt "developmenttool|dom_refresh_button-tooltip" msgid "Refresh Document Model Tree View" -msgstr "" +msgstr "רענון תצוגת עץ דגם המסמך" #. FD2yt #: sfx2/uiconfig/ui/developmenttool.ui:129 msgctxt "developmenttool|dom_refresh_button" msgid "Refresh" -msgstr "" +msgstr "רענון" #. qVgcX #: sfx2/uiconfig/ui/developmenttool.ui:175 msgctxt "developmenttool|object" msgid "Object" -msgstr "" +msgstr "עצם" #. x6GLB #: sfx2/uiconfig/ui/developmenttool.ui:223 msgctxt "developmenttool|tooltip-back" msgid "Back" -msgstr "" +msgstr "חזרה" #. SinPk #: sfx2/uiconfig/ui/developmenttool.ui:224 msgctxt "developmenttool|back" msgid "Back" -msgstr "" +msgstr "חזרה" #. 4CBb3 #: sfx2/uiconfig/ui/developmenttool.ui:236 msgctxt "developmenttool|tooltip-inspect" msgid "Inspect" -msgstr "" +msgstr "חקירה" #. vCciB #: sfx2/uiconfig/ui/developmenttool.ui:237 msgctxt "developmenttool|inspect" msgid "Inspect" -msgstr "" +msgstr "חקירה" #. nFMXe #: sfx2/uiconfig/ui/developmenttool.ui:249 msgctxt "developmenttool|tooltip-refresh" msgid "Refresh" -msgstr "" +msgstr "רענון" #. CFuvW #: sfx2/uiconfig/ui/developmenttool.ui:250 msgctxt "developmenttool|refresh" msgid "Refresh" -msgstr "" +msgstr "רענון" #. 6gFmn #: sfx2/uiconfig/ui/developmenttool.ui:273 msgctxt "developmenttool|classname" msgid "Class name:" -msgstr "" +msgstr "שם מחלקה:" #. a9j7f #: sfx2/uiconfig/ui/developmenttool.ui:338 @@ -3147,67 +3149,67 @@ #: sfx2/uiconfig/ui/developmenttool.ui:445 msgctxt "developmenttool|name" msgid "Name" -msgstr "" +msgstr "שם" #. VFqAa #: sfx2/uiconfig/ui/developmenttool.ui:358 msgctxt "developmenttool|interfaces" msgid "Interfaces" -msgstr "" +msgstr "מנשקים" #. iCdWe #: sfx2/uiconfig/ui/developmenttool.ui:410 msgctxt "developmenttool|services" msgid "Services" -msgstr "" +msgstr "שירותים" #. H7pYE #: sfx2/uiconfig/ui/developmenttool.ui:460 msgctxt "developmenttool|value" msgid "Value" -msgstr "" +msgstr "ערך" #. Jjkqh #: sfx2/uiconfig/ui/developmenttool.ui:474 msgctxt "developmenttool|type" msgid "Type" -msgstr "" +msgstr "סוג" #. zpXuY #: sfx2/uiconfig/ui/developmenttool.ui:488 msgctxt "developmenttool|info" msgid "Info" -msgstr "" +msgstr "מידע" #. AUktw #: sfx2/uiconfig/ui/developmenttool.ui:539 msgctxt "developmenttool|properties" msgid "Properties" -msgstr "" +msgstr "מאפיינים" #. wGJtn #: sfx2/uiconfig/ui/developmenttool.ui:569 msgctxt "developmenttool|method" msgid "Method" -msgstr "" +msgstr "מתודה" #. EnGfg #: sfx2/uiconfig/ui/developmenttool.ui:584 msgctxt "developmenttool|returntype" msgid "Return Type" -msgstr "" +msgstr "סוג מוחזר" #. AKnSa #: sfx2/uiconfig/ui/developmenttool.ui:598 msgctxt "developmenttool|parameters" msgid "Parameters" -msgstr "" +msgstr "משתנים" #. tmttq #: sfx2/uiconfig/ui/developmenttool.ui:612 msgctxt "developmenttool|implementation_class" msgid "Implementation Class" -msgstr "" +msgstr "מחלקת מימוש" #. Q2CBK #: sfx2/uiconfig/ui/developmenttool.ui:634 @@ -3795,7 +3797,7 @@ #: sfx2/uiconfig/ui/linkeditdialog.ui:148 msgctxt "linkeditdialog|extended_tip|app" msgid "Lists the application that last saved the source file. The office suite applications have the server name soffice." -msgstr "" +msgstr "מציג את היישום ששמר את קובץ המקור שלך לאחרונה. שם השרת של חבילת היישומים המשרדיים הוא soffice." #. cj9do #: sfx2/uiconfig/ui/linkeditdialog.ui:166 @@ -3831,19 +3833,19 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:45 msgctxt "loadtemplatedialog|fromfile|tooltip_text" msgid "Copy styles from selected external document to current document." -msgstr "" +msgstr "העתקת סגנונות מהמסמך החיצוני הנבחר למסמך הנוכחי." #. GE236 #: sfx2/uiconfig/ui/loadtemplatedialog.ui:48 msgctxt "loadtemplatedialog|extended_tip|fromfile" msgid "Locate the file containing the styles that you want to load, and then click Open." -msgstr "" +msgstr "איתור הקובץ שמכיל את הסגנונות שברצונך לטעון ואז ללחוץ על פתיחה." #. YCguC #: sfx2/uiconfig/ui/loadtemplatedialog.ui:165 msgctxt "loadtemplatedialog|extended_tip|categories" msgid "Lists the available template categories. Click a category to view its contents in the Templates list." -msgstr "" +msgstr "מציג את קטגוריות התבניות הזמינות. יש ללחוץ על קטגוריה כדי לצפות בתוכנה ברשימת התבניות." #. PZS7L #: sfx2/uiconfig/ui/loadtemplatedialog.ui:176 @@ -3855,7 +3857,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:230 msgctxt "loadtemplatedialog|extended_tip|templates" msgid "Lists the available templates for the selected category." -msgstr "" +msgstr "מציג את התבניות הזמינות לקטגוריה הנבחרת." #. hryGV #: sfx2/uiconfig/ui/loadtemplatedialog.ui:241 @@ -3867,7 +3869,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:245 msgctxt "loadtemplatedialog|label2|tooltip_text" msgid "Templates in the selected category" -msgstr "" +msgstr "תבניות בקטגוריה הנבחרת" #. rFENe #: sfx2/uiconfig/ui/loadtemplatedialog.ui:264 @@ -3921,25 +3923,25 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:313 msgctxt "loadtemplatedialog|extended_tip|pages" msgid "Loads the page styles from the selected document into the current document." -msgstr "" +msgstr "טוען את סגנונות העמודים מהמסמך הנבחר למסמך הנוכחי." #. 2xgCH #: sfx2/uiconfig/ui/loadtemplatedialog.ui:324 msgctxt "loadtemplatedialog|numbering" msgid "_List" -msgstr "" +msgstr "_רשימה" #. VZxbf #: sfx2/uiconfig/ui/loadtemplatedialog.ui:329 msgctxt "loadtemplatedialog|numbering|tooltip_text" msgid "Copy list styles to current document." -msgstr "" +msgstr "העתקת סגנונות רשימות למסמך הנוכחי." #. PAsEB #: sfx2/uiconfig/ui/loadtemplatedialog.ui:333 msgctxt "loadtemplatedialog|extended_tip|numbering" msgid "Loads the list styles from the selected document into the current document." -msgstr "" +msgstr "טוען את רשימת הסגנונות מהמסמך הנבחר למסמך הנוכחי." #. VWzsG #: sfx2/uiconfig/ui/loadtemplatedialog.ui:344 @@ -3951,19 +3953,19 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:350 msgctxt "loadtemplatedialog|overwrite|tooltip_text" msgid "Overwrite styles with same name" -msgstr "" +msgstr "לשכתב סגנונות באותו השם" #. A9ogA #: sfx2/uiconfig/ui/loadtemplatedialog.ui:353 msgctxt "loadtemplatedialog|extended_tip|overwrite" msgid "Replaces styles in the current document that have the same name as the styles you are loading." -msgstr "" +msgstr "מחליף סגנונות במסמך הנוכחי שיש להם את אותו השם כמו הסגנונות שבחרת לטעון." #. 7ru2R #: sfx2/uiconfig/ui/loadtemplatedialog.ui:376 msgctxt "loadtemplatedialog|alttitle" msgid "Load Styles from Template" -msgstr "" +msgstr "טעינת סגנונות מתבנית" #. X5Pi5 #: sfx2/uiconfig/ui/loadtemplatedialog.ui:413 @@ -3975,13 +3977,13 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:419 msgctxt "loadtemplatedialog|extended_tip|expander" msgid "Shows or hides a preview of a selected template." -msgstr "" +msgstr "מציג או מסתיר את התצוגה המקדימה של תבנית נבחרת." #. CRcca #: sfx2/uiconfig/ui/loadtemplatedialog.ui:449 msgctxt "loadtemplatedialog|extended_tip|LoadTemplateDialog" msgid "Imports formatting styles from another document or template into the current document." -msgstr "" +msgstr "מייבא סגנונות עיצוב ממסמך או תבנית אחרים למסמך הנוכחי." #. EAhup #: sfx2/uiconfig/ui/managestylepage.ui:33 @@ -4041,31 +4043,31 @@ #: sfx2/uiconfig/ui/newstyle.ui:16 msgctxt "newstyle|CreateStyleDialog" msgid "New Style from Selection" -msgstr "" +msgstr "סגנון חדש מבחירה" #. 2XkTt #: sfx2/uiconfig/ui/newstyle.ui:140 msgctxt "newstyle|styles-atkobject" msgid "Custom styles for selected category" -msgstr "" +msgstr "סגנונות מותאמים אישית לקטגוריה הנבחרת" #. UEGSg #: sfx2/uiconfig/ui/newstyle.ui:160 msgctxt "newstyle|stylename-atkobject" msgid "Style name" -msgstr "" +msgstr "שם הסגנון" #. bjN3T #: sfx2/uiconfig/ui/newstyle.ui:175 msgctxt "newstyle|categorylabel" msgid "Custom styles for current document" -msgstr "" +msgstr "סגנונות מותאמים אישית במסמך הנוכחי" #. 6mnDS #: sfx2/uiconfig/ui/newstyle.ui:191 msgctxt "newstyle|label1" msgid "Enter new style name:" -msgstr "" +msgstr "נא למלא שם לסגנון החדש:" #. R6zJz #: sfx2/uiconfig/ui/notebookbar.ui:74 @@ -4083,7 +4085,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:44 msgctxt "extended_tip|printer" msgid "Specifies whether the print settings apply to direct printing or to printing to a file." -msgstr "" +msgstr "מציין האם הגדרות ההדפסה חלות על הדפסה ישירה או הדפסה לקובץ." #. Eyv8g #: sfx2/uiconfig/ui/optprintpage.ui:55 @@ -4095,7 +4097,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:64 msgctxt "extended_tip|file" msgid "Specifies whether the print settings apply to direct printing or to printing to a file." -msgstr "" +msgstr "מציין האם הגדרות ההדפסה חלות על הדפסה ישירה או הדפסה לקובץ." #. C8jvp #: sfx2/uiconfig/ui/optprintpage.ui:79 @@ -4113,7 +4115,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:117 msgctxt "extended_tip|papersize" msgid "Mark this check box if a certain paper size is needed for printing the current document." -msgstr "" +msgstr "יש לסמן את התיבה הזאת אם דרוש גודל נייר מסוים להדפסת המסמך הנוכחי." #. stDFq #: sfx2/uiconfig/ui/optprintpage.ui:128 @@ -4257,7 +4259,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:415 msgctxt "optprintpage|reducebitmapdpi" msgid "200 DPI (default)" -msgstr "‏200 DPI (בררת המחדל)‏" +msgstr "‏200 DPI (ברירת המחדל)‏" #. AsLSp #: sfx2/uiconfig/ui/optprintpage.ui:416 @@ -4467,7 +4469,7 @@ #: sfx2/uiconfig/ui/password.ui:338 msgctxt "password|onlyascii" msgid "Only Basic Latin characters can be entered" -msgstr "" +msgstr "אפשר למלא רק אותיות לטיניות פשוטות" #. AFsUP #: sfx2/uiconfig/ui/printeroptionsdialog.ui:8 @@ -4569,13 +4571,13 @@ #: sfx2/uiconfig/ui/saveastemplatedlg.ui:223 msgctxt "saveastemplatedlg|defaultcb" msgid "_Set as default template" -msgstr "ה_גדרה כתבנית בררת מחדל" +msgstr "ה_גדרה כתבנית ברירת מחדל" #. syB4y #: sfx2/uiconfig/ui/saveastemplatedlg.ui:231 msgctxt "saveastemplatedlg|extended_tip|defaultcb" msgid "The new template will be used as the default template." -msgstr "התבנית החדשה תשמש כתבנית בררת המחדל." +msgstr "התבנית החדשה תשמש כתבנית ברירת המחדל." #. gH8PB #: sfx2/uiconfig/ui/saveastemplatedlg.ui:259 @@ -4875,7 +4877,7 @@ #: sfx2/uiconfig/ui/tabbarcontents.ui:66 msgctxt "tabbar|restoredefault" msgid "Restore Default" -msgstr "שחזור בררת מחדל" +msgstr "שחזור ברירת מחדל" #. DBWZf #: sfx2/uiconfig/ui/tabbarcontents.ui:98 @@ -4929,13 +4931,13 @@ #: sfx2/uiconfig/ui/templatedlg.ui:166 msgctxt "templatedlg|action_menu|label" msgid "_Manage" -msgstr "" +msgstr "_ניהול" #. LUs2m #: sfx2/uiconfig/ui/templatedlg.ui:180 msgctxt "templatedlg|extended_tip|action_menu" msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager." -msgstr "מספק פקודות ליצירה, שינוי שם ומחיקה של קטגוריות, איפוס תבניות בררת מחדל ורענון מנהל התבניות." +msgstr "מספק פקודות ליצירה, שינוי שם ומחיקה של קטגוריות, איפוס תבניות ברירת מחדל ורענון מנהל התבניות." #. fXVNY #: sfx2/uiconfig/ui/templatedlg.ui:207 @@ -5211,7 +5213,7 @@ #: sfx2/uiconfig/ui/versionsofdialog.ui:210 msgctxt "versionsofdialog|extended_tip|always" msgid "If you have made changes to your document then a new version is automatically saved when you close the document." -msgstr "" +msgstr "אם ערכת את המסמך שלך אז הגרסה החדשה נשמרת עם סגירת המסמך." #. vuHjH #: sfx2/uiconfig/ui/versionsofdialog.ui:225 diff -Nru libreoffice-7.4.6/translations/source/he/shell/source/win32/shlxthandler/res.po libreoffice-7.4.7/translations/source/he/shell/source/win32/shlxthandler/res.po --- libreoffice-7.4.6/translations/source/he/shell/source/win32/shlxthandler/res.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/shell/source/win32/shlxthandler/res.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-12-30 09:59+0000\n" +"PO-Revision-Date: 2023-03-14 12:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1388397587.000000\n" #. nMHZG @@ -203,7 +203,7 @@ "%VERSION%\n" "LngText.text" msgid "Version" -msgstr "גירסה" +msgstr "גרסה" #. CGpUh #: shlxthdl.ulf diff -Nru libreoffice-7.4.6/translations/source/he/starmath/messages.po libreoffice-7.4.7/translations/source/he/starmath/messages.po --- libreoffice-7.4.6/translations/source/he/starmath/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/starmath/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:51+0200\n" -"PO-Revision-Date: 2021-09-05 11:22+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1525786572.000000\n" #. GrDhX @@ -2711,7 +2711,7 @@ #: starmath/uiconfig/smath/ui/alignmentdialog.ui:23 msgctxt "alignmentdialog|default" msgid "_Default" -msgstr "_בררת מחדל" +msgstr "_ברירת מחדל" #. RK3fb #: starmath/uiconfig/smath/ui/alignmentdialog.ui:30 @@ -2897,7 +2897,7 @@ #: starmath/uiconfig/smath/ui/fontsizedialog.ui:61 msgctxt "fontsizedialog|default" msgid "_Default" -msgstr "_בררת מחדל" +msgstr "_ברירת מחדל" #. BywFC #: starmath/uiconfig/smath/ui/fontsizedialog.ui:68 @@ -3055,7 +3055,7 @@ #: starmath/uiconfig/smath/ui/fonttypedialog.ui:123 msgctxt "fonttypedialog|default" msgid "_Default" -msgstr "_בררת מחדל" +msgstr "_ברירת מחדל" #. gAvNx #: starmath/uiconfig/smath/ui/fonttypedialog.ui:130 @@ -3262,13 +3262,13 @@ #: starmath/uiconfig/smath/ui/savedefaultsdialog.ui:7 msgctxt "savedefaultsdialog|SaveDefaultsDialog" msgid "Save defaults?" -msgstr "לשמור כבררת מחדל?" +msgstr "לשמור כברירת מחדל?" #. jCDCU #: starmath/uiconfig/smath/ui/savedefaultsdialog.ui:14 msgctxt "savedefaultsdialog|SaveDefaultsDialog" msgid "Should the changes be saved as defaults?" -msgstr "האם לשמור את השינויים כבררת מחדל?" +msgstr "האם לשמור את השינויים כברירת מחדל?" #. 7oNeH #: starmath/uiconfig/smath/ui/savedefaultsdialog.ui:15 @@ -3487,7 +3487,7 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:145 msgctxt "spacingdialog|default" msgid "_Default" -msgstr "_בררת מחדל" +msgstr "_ברירת מחדל" #. sGXwv #: starmath/uiconfig/smath/ui/spacingdialog.ui:159 diff -Nru libreoffice-7.4.6/translations/source/he/svl/messages.po libreoffice-7.4.7/translations/source/he/svl/messages.po --- libreoffice-7.4.6/translations/source/he/svl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/svl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:20+0100\n" -"PO-Revision-Date: 2021-01-26 17:36+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1519742603.000000\n" #. PDMJD @@ -34,25 +34,25 @@ #: include/svl/svl.hrc:30 msgctxt "GRTSTR_PASSED" msgid "PASSED" -msgstr "" +msgstr "עבר" #. CreDg #: include/svl/svl.hrc:31 msgctxt "GRTSTR_QUIRKY" msgid "QUIRKY" -msgstr "" +msgstr "מקרטע" #. DAmDx #: include/svl/svl.hrc:32 msgctxt "GRTSTR_FAILED" msgid "FAILED" -msgstr "" +msgstr "נכשל" #. kR2Uu #: include/svl/svl.hrc:33 msgctxt "GRTSTR_SKIPPED" msgid "SKIPPED" -msgstr "" +msgstr "דולג" #. wH3TZ msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/he/svtools/messages.po libreoffice-7.4.7/translations/source/he/svtools/messages.po --- libreoffice-7.4.6/translations/source/he/svtools/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/svtools/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2021-06-04 11:11+0000\n" +"PO-Revision-Date: 2023-03-14 12:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542195515.000000\n" #. fLdeV @@ -76,7 +76,7 @@ #: include/svtools/strings.hrc:36 msgctxt "STR_FORMAT_ID_DRAWING" msgid "%PRODUCTNAME drawing format" -msgstr "" +msgstr "תצורת ציור של %PRODUCTNAME" #. 84ABF #: include/svtools/strings.hrc:37 @@ -304,13 +304,13 @@ #: include/svtools/strings.hrc:74 msgctxt "STR_FORMAT_ID_LINK" msgid "Dynamic Data Exchange (DDE link)" -msgstr "" +msgstr "החלפת נתונים דינמית (קישור DDE)" #. E6Ays #: include/svtools/strings.hrc:75 msgctxt "STR_FORMAT_ID_DIF" msgid "Data Interchange Format (DIF)" -msgstr "" +msgstr "תצורת החלפת נתונים (DIF)" #. XTiAV #: include/svtools/strings.hrc:76 @@ -364,13 +364,13 @@ #: include/svtools/strings.hrc:84 msgctxt "STR_FORMAT_ID_STARWRITERWEB_60" msgid "OpenOffice.org 1.0 Writer/Web object" -msgstr "" +msgstr "עצם OpenOffice.org 1.0 Writer/Web" #. GZwRa #: include/svtools/strings.hrc:85 msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60" msgid "OpenOffice.org 1.0 Writer/Master object" -msgstr "" +msgstr "עצם OpenOffice.org 1.0 Writer/Master" #. iEkCL #: include/svtools/strings.hrc:86 @@ -382,13 +382,13 @@ #: include/svtools/strings.hrc:87 msgctxt "STR_FORMAT_ID_STARIMPRESS_60" msgid "OpenOffice.org 1.0 Impress object" -msgstr "" +msgstr "עצם OpenOffice.org 1.0 Impress" #. B37DU #: include/svtools/strings.hrc:88 msgctxt "STR_FORMAT_ID_STARCALC_60" msgid "OpenOffice.org 1.0 Calc object" -msgstr "" +msgstr "עצם OpenOffice.org 1.0 Calc" #. CHCYo #: include/svtools/strings.hrc:89 @@ -448,7 +448,7 @@ #: include/svtools/strings.hrc:98 msgctxt "STR_FORMAT_ID_PNG_BITMAP" msgid "Portable Network Graphics (PNG)" -msgstr "" +msgstr "גרפיקת רשת ניידת (PNG)" #. wDxCa #: include/svtools/strings.hrc:100 @@ -484,7 +484,7 @@ #: include/svtools/strings.hrc:106 msgctxt "STR_SVT_KB" msgid "kB" -msgstr "" +msgstr "ק״ב" #. WpMzR #: include/svtools/strings.hrc:107 @@ -705,62 +705,61 @@ #: include/svtools/strings.hrc:161 msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE" msgid "Bold Oblique" -msgstr "" +msgstr "מודגש מוטה" #. QUBiF #: include/svtools/strings.hrc:162 -#, fuzzy msgctxt "STR_SVT_STYLE_CONDENSED" msgid "Condensed" -msgstr "מרוכז" +msgstr "דחוס" #. LTVdC #: include/svtools/strings.hrc:163 msgctxt "STR_SVT_STYLE_CONDENSED_BOLD" msgid "Condensed Bold" -msgstr "" +msgstr "דחוס מודגש" #. Guayv #: include/svtools/strings.hrc:164 msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC" msgid "Condensed Bold Italic" -msgstr "" +msgstr "דחוס מודגש נטוי" #. AoubP #: include/svtools/strings.hrc:165 msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE" msgid "Condensed Bold Oblique" -msgstr "" +msgstr "דחוס מודגש מוטה" #. bpDXQ #: include/svtools/strings.hrc:166 msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC" msgid "Condensed Italic" -msgstr "" +msgstr "דחוס נטוי" #. YDMtz #: include/svtools/strings.hrc:167 msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE" msgid "Condensed Oblique" -msgstr "" +msgstr "דחוס מוטה" #. MouF8 #: include/svtools/strings.hrc:168 msgctxt "STR_SVT_STYLE_EXTRALIGHT" msgid "ExtraLight" -msgstr "" +msgstr "קליל במיוחד" #. zurf4 #: include/svtools/strings.hrc:169 msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC" msgid "ExtraLight Italic" -msgstr "" +msgstr "קליל במיוחד נטוי" #. apfoW #: include/svtools/strings.hrc:170 msgctxt "STR_SVT_STYLE_OBLIQUE" msgid "Oblique" -msgstr "" +msgstr "מוטה" #. TJsAw #: include/svtools/strings.hrc:171 @@ -772,7 +771,7 @@ #: include/svtools/strings.hrc:172 msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC" msgid "Semibold Italic" -msgstr "" +msgstr "מודגש למחצה נטוי" #. bBXFx #: include/svtools/strings.hrc:173 @@ -844,43 +843,43 @@ #: include/svtools/strings.hrc:187 msgctxt "STR_SVT_1BIT_THRESHOLD" msgid "1-bit threshold" -msgstr "" +msgstr "סף סיבית אחת" #. D5EAR #: include/svtools/strings.hrc:188 msgctxt "STR_SVT_8BIT_GRAYSCALE" msgid "8-bit grayscale" -msgstr "" +msgstr "גווני אפור 8 סיביות" #. HFbrr #: include/svtools/strings.hrc:189 msgctxt "STR_SVT_8BIT_COLOR_PALETTE" msgid "8-bit color" -msgstr "" +msgstr "צבע 8 סיביות" #. Rh5LR #: include/svtools/strings.hrc:190 msgctxt "STR_SVT_24BIT_TRUE_COLOR" msgid "24-bit true color" -msgstr "" +msgstr "צבע אמתי 24 סיביות" #. LHA5t #: include/svtools/strings.hrc:191 msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1" msgid "The image needs about %1 kB of memory." -msgstr "" +msgstr "התמונה צריכה להיות בערך %1 ק״ב של זיכרון." #. bVGRC #: include/svtools/strings.hrc:192 msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2" msgid "The image needs about %1 kB of memory; the file size is %2 kB." -msgstr "" +msgstr "התמונה דורשת בערך %1 ק״ב של זיכרון, גודל הקובץ הוא %2 ק״ב." #. dAVBR #: include/svtools/strings.hrc:193 msgctxt "STR_SVT_ESTIMATED_SIZE_VEC" msgid "The file size is %1 kB." -msgstr "" +msgstr "גודל הקובץ הוא %1 ק״ב." #. TaCaF #: include/svtools/strings.hrc:194 @@ -898,7 +897,7 @@ #: include/svtools/strings.hrc:196 msgctxt "STR_SVT_OTHER_CMIS" msgid "Other CMIS" -msgstr "" +msgstr "שירות הדדיות ניהול תוכן אחר" #. E9JF5 #: include/svtools/strings.hrc:197 @@ -1054,7 +1053,7 @@ #: include/svtools/strings.hrc:222 msgctxt "STR_SVT_PRNDLG_DEFPRINTER" msgid "Default printer" -msgstr "מדפסת בררת מחדל" +msgstr "מדפסת ברירת מחדל" #. 9QCL5 #: include/svtools/strings.hrc:223 @@ -1162,19 +1161,19 @@ #: include/svtools/strings.hrc:241 msgctxt "STR_FIELD_FAX" msgid "Fax" -msgstr "" +msgstr "פקס" #. MgbsU #: include/svtools/strings.hrc:242 msgctxt "STR_FIELD_EMAIL" msgid "Email" -msgstr "" +msgstr "דוא״ל" #. aHNGY #: include/svtools/strings.hrc:243 msgctxt "STR_FIELD_URL" msgid "URL" -msgstr "כתובת אינטרנט (‏‪URL‬‏)‏" +msgstr "כתובת אתר" #. CGutA #: include/svtools/strings.hrc:244 @@ -1258,55 +1257,55 @@ #: include/svtools/strings.hrc:258 msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL" msgid "$user$'s $service$" -msgstr "" +msgstr "$service$ של $user$" #. CgGG3 #: include/svtools/strings.hrc:260 msgctxt "STR_WARNING_JAVANOTFOUND" msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK" -msgstr "" +msgstr "ל־%PRODUCTNAME דרושה סביבת ריצה של Java‏ (JRE) כדי לבצע את המשימה הזאת. נא להתקין JRE ולהפעיל את %PRODUCTNAME מחדש. %FAQLINK" #. SBgjA #: include/svtools/strings.hrc:261 msgctxt "STR_WARNING_JAVANOTFOUND_WIN" msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK" -msgstr "" +msgstr "ל־%PRODUCTNAME דרושה סביבת ריצה של Java‏ (JRE) של %BITNESS סיביות כדי לבצע את המשימה הזאת. נא להתקין JRE ולהפעיל את %PRODUCTNAME מחדש. %FAQLINK" #. FY49S #: include/svtools/strings.hrc:262 msgctxt "STR_WARNING_JAVANOTFOUND_MAC" msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK" -msgstr "" +msgstr "ל־%PRODUCTNAME דרושה ערכת הפיתוח של Java‏ (JDK) מבית Oracle על גבי macOS 10.10 ומעלה כדי לבצע את המשימה הזאת. נא להתקין אותה ולהפעיל את %PRODUCTNAME מחדש. %FAQLINK" #. 76BEm #: include/svtools/strings.hrc:263 msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC" msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME." -msgstr "" +msgstr "ההגדרות של %PRODUCTNAME השתנו. תחת %PRODUCTNAME - העדפות - %PRODUCTNAME - מתקדם, לבחור את סביבת ריצת ה־Java שתשמש את %PRODUCTNAME." #. BZvFF #: include/svtools/strings.hrc:264 msgctxt "STR_WARNING_INVALIDJAVASETTINGS" msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME." -msgstr "" +msgstr "ההגדרות של %PRODUCTNAME השתנו. תחת כלים - אפשרויות - %PRODUCTNAME - מתקדם, לבחור את סביבת ריצת ה־Java שתשמש את %PRODUCTNAME." #. Tunzz #: include/svtools/strings.hrc:265 msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC" msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced." -msgstr "" +msgstr "ל־%PRODUCTNAME דרושה סביבת ריצה של Java‏ (JRE) כדי לבצע את המשימה הזאת. ה־JRE שנבחרה פגומה. נא לבחור בגרסה אחרת או להתקין JRE חדשה ולבחור בה תחת %PRODUCTNAME - העדפות - %PRODUCTNAME - מתקדם." #. rKxCS #: include/svtools/strings.hrc:266 msgctxt "STR_ERROR_JVMCREATIONFAILED" msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced." -msgstr "" +msgstr "ל־%PRODUCTNAME דרושה סביבת ריצה של Java‏ (JRE) כדי לבצע את המשימה הזאת. ה־JRE שנבחרה פגומה. נא לבחור בגרסה אחרת או להתקין JRE חדשה ולבחור בה תחת כלים - אפשרויות - %PRODUCTNAME - מתקדם." #. QPEUX #: include/svtools/strings.hrc:267 msgctxt "STR_WARNING_JAVANOTFOUND_TITLE" msgid "JRE Required" -msgstr "נדרש JRE‬‏" +msgstr "נדרשת JRE‬‏" #. XD3FG #: include/svtools/strings.hrc:268 @@ -1318,7 +1317,7 @@ #: include/svtools/strings.hrc:269 msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE" msgid "JRE is Defective" -msgstr "ה־‏‪JRE‬‏ פגום" +msgstr "ה־‏‪JRE‬‏ פגומה" #. BAnmG #. accessibility descriptions that use %PRODUCTNAME, we set these explicitly because querying a11y descs @@ -1326,7 +1325,7 @@ #: include/svtools/strings.hrc:273 msgctxt "printersetupdialog|extended_tip|options" msgid "Opens the Printer Options dialog where you can override the global printer options set on the Tools - Options - %PRODUCTNAME Writer/Web - Print panel for the current document." -msgstr "" +msgstr "פותח את חלונית אפשרויות המדפסת בו ניתן לדרוס את אפשרויות המדפסות הכלליות שהוגדרו דרך הלוח שבכלים - אפשרויות - %PRODUCTNAME Writer/Web - הדפסה למסמך הנוכחי." #. q7s6f #: include/svtools/strings.hrc:275 @@ -1548,13 +1547,13 @@ #: include/svtools/strings.hrc:311 msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME" msgid "Disk drive" -msgstr "כונן דיסק" +msgstr "כונן תקליטון" #. 55Dof #: include/svtools/strings.hrc:312 msgctxt "STR_DESCRIPTION_CDROM_VOLUME" msgid "CD-ROM drive" -msgstr "כונן ‏‪CD-ROM‬‏‏" +msgstr "כונן תקליטור" #. 82Acc #: include/svtools/strings.hrc:313 @@ -1698,37 +1697,37 @@ #: include/svtools/strings.hrc:336 msgctxt "STR_DESCRIPTION_EXTENSION" msgid "%PRODUCTNAME Extension" -msgstr "חבילה ‏‪%PRODUCTNAME‬‏" +msgstr "הרחבה של ‏‪%PRODUCTNAME‬‏" #. b8JK6 #: include/svtools/strings.hrc:338 msgctxt "STR_DESCRIPTION_HUNSPELL" msgid "Hunspell SpellChecker" -msgstr "" +msgstr "בודק איות של Hunspell" #. do26f #: include/svtools/strings.hrc:339 msgctxt "STR_DESCRIPTION_LIBHYPHEN" msgid "Libhyphen Hyphenator" -msgstr "" +msgstr "ממקף של Libhyphen" #. aGFNy #: include/svtools/strings.hrc:340 msgctxt "STR_DESCRIPTION_MYTHES" msgid "MyThes Thesaurus" -msgstr "" +msgstr "אגרון של MyThes" #. RwS4n #: include/svtools/strings.hrc:341 msgctxt "STR_DESCRIPTION_IGNOREALLLIST" msgid "List of Ignored Words" -msgstr "" +msgstr "רשימה של מילים שלא נבדקות" #. eAiiA #: include/svtools/strings.hrc:342 msgctxt "STR_DESCRIPTION_LANGUAGETOOL" msgid "LanguageTool Remote Grammar Checker" -msgstr "" +msgstr "בודק איות מרוחק של LanguageTool" #. wH3TZ msgctxt "stock" @@ -1799,25 +1798,25 @@ #: svtools/inc/borderline.hrc:18 msgctxt "RID_SVXSTR_BORDERLINE" msgid "None" -msgstr "" +msgstr "ללא" #. Xx4Fb #: svtools/inc/borderline.hrc:19 msgctxt "RID_SVXSTR_BORDERLINE" msgid "Solid" -msgstr "" +msgstr "אחיד" #. Paqxg #: svtools/inc/borderline.hrc:20 msgctxt "RID_SVXSTR_BORDERLINE" msgid "Dotted" -msgstr "" +msgstr "מנוקד" #. Bucas #: svtools/inc/borderline.hrc:21 msgctxt "RID_SVXSTR_BORDERLINE" msgid "Dashed" -msgstr "" +msgstr "מקווקוו" #. 6XEca #: svtools/inc/borderline.hrc:22 @@ -1865,49 +1864,49 @@ #: svtools/inc/borderline.hrc:29 msgctxt "RID_SVXSTR_BORDERLINE" msgid "Embossed" -msgstr "" +msgstr "מובלט" #. WK8Yy #: svtools/inc/borderline.hrc:30 msgctxt "RID_SVXSTR_BORDERLINE" msgid "Engraved" -msgstr "" +msgstr "חרוט" #. NDS6G #: svtools/inc/borderline.hrc:31 msgctxt "RID_SVXSTR_BORDERLINE" msgid "Outset" -msgstr "" +msgstr "עיבוי חוץ" #. 7m7iw #: svtools/inc/borderline.hrc:32 msgctxt "RID_SVXSTR_BORDERLINE" msgid "Inset" -msgstr "" +msgstr "עיבוי פנים" #. F9rwV #: svtools/inc/borderline.hrc:33 msgctxt "RID_SVXSTR_BORDERLINE" msgid "Fine Dashed" -msgstr "" +msgstr "קווקוו עדין" #. GyT7A #: svtools/inc/borderline.hrc:34 msgctxt "RID_SVXSTR_BORDERLINE" msgid "Double Thin" -msgstr "" +msgstr "צר כפול" #. FyVvE #: svtools/inc/borderline.hrc:35 msgctxt "RID_SVXSTR_BORDERLINE" msgid "Dash Dot" -msgstr "" +msgstr "קו נקודה" #. 7yoVE #: svtools/inc/borderline.hrc:36 msgctxt "RID_SVXSTR_BORDERLINE" msgid "Dash Dot Dot" -msgstr "" +msgstr "קו נקודה נקודה" #. kAGSe #: svtools/inc/errtxt.hrc:29 @@ -2311,7 +2310,7 @@ #: svtools/inc/errtxt.hrc:107 msgctxt "RID_ERRHDL" msgid "Document opened as read-only cannot be saved over itself." -msgstr "" +msgstr "המסמך נפתח לקריאה בלבד ואי אפשר לשמור אותו על עצמו." #. kDirB #: svtools/inc/errtxt.hrc:108 @@ -2499,7 +2498,7 @@ #: svtools/inc/errtxt.hrc:130 msgctxt "RID_ERRHDL" msgid "Wrong checksum." -msgstr "" +msgstr "סכום בדיקה שגוי." #. XVTHm #: svtools/inc/errtxt.hrc:131 @@ -2521,13 +2520,13 @@ #: svtools/inc/errtxt.hrc:133 msgctxt "RID_ERRHDL" msgid "File format error found at $(ARG1)(row,col)." -msgstr "" +msgstr "נמצאה שגיאת תצורת קובץ במיקום $(ARG1)(שורה,עמודה)." #. Di7GD #: svtools/inc/errtxt.hrc:134 msgctxt "RID_ERRHDL" msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator." -msgstr "" +msgstr "מסנן סוגי קבצים אלה מושבת בהגדרות. נא ליצור קשר עם הנהלת המערכת שלך." #. WZiDE #: svtools/inc/errtxt.hrc:140 @@ -2575,7 +2574,7 @@ #: svtools/inc/langtab.hrc:31 svtools/inc/langtab.hrc:32 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. hsqmD #: svtools/inc/langtab.hrc:33 @@ -3889,13 +3888,13 @@ #: svtools/inc/langtab.hrc:251 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Tigrigna (Eritrea)" -msgstr "טיגריניה (אריטראה)" +msgstr "תגרית (אריתראה)" #. 4X4SP #: svtools/inc/langtab.hrc:252 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Tigrigna (Ethiopia)" -msgstr "טיגריניה (אתיופיה)" +msgstr "תגרית (אתיופיה)" #. vebCw #: svtools/inc/langtab.hrc:253 @@ -4675,7 +4674,7 @@ #: svtools/inc/langtab.hrc:382 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Maninkakan, Eastern, Latin" -msgstr "" +msgstr "מנינקה מזרחית לטינית" #. Kxi9E #: svtools/inc/langtab.hrc:383 @@ -4687,13 +4686,13 @@ #: svtools/inc/langtab.hrc:384 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Cree, Plains, Latin" -msgstr "" +msgstr "קרי מישורים לטינית" #. PQqU7 #: svtools/inc/langtab.hrc:385 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Cree, Plains, Syllabics" -msgstr "" +msgstr "קרי מישורים הברתית" #. kewgf #: svtools/inc/langtab.hrc:386 @@ -4747,7 +4746,7 @@ #: svtools/inc/langtab.hrc:394 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Venetian" -msgstr "" +msgstr "ונטית" #. 8EbCs #: svtools/inc/langtab.hrc:395 @@ -4819,7 +4818,7 @@ #: svtools/inc/langtab.hrc:406 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Hungarian (Szekely-Hungarian Rovas)" -msgstr "" +msgstr "הונגרית עתיקה" #. v3WK8 #: svtools/inc/langtab.hrc:407 @@ -4909,7 +4908,7 @@ #: svtools/inc/langtab.hrc:421 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Iloko" -msgstr "" +msgstr "אילוקאנו" #. AzGAy #: svtools/inc/langtab.hrc:422 @@ -4933,49 +4932,49 @@ #: svtools/inc/langtab.hrc:425 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Kabardian" -msgstr "" +msgstr "קברדינית" #. BiDsR #: svtools/inc/langtab.hrc:426 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Guadeloupean Creole French" -msgstr "" +msgstr "צרפתית קריאולית של גוואדלופ" #. 2b2P4 #: svtools/inc/langtab.hrc:427 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Ligurian" -msgstr "" +msgstr "לינגורית" #. 3LvEE #: svtools/inc/langtab.hrc:428 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Minangkabau" -msgstr "" +msgstr "מיננגקבאו" #. nDkKR #: svtools/inc/langtab.hrc:429 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sundanese" -msgstr "" +msgstr "סונדנית" #. wGEAB #: svtools/inc/langtab.hrc:430 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Hong Kong)" -msgstr "" +msgstr "אנגלית (הונג קונג)" #. qTMB2 #: svtools/inc/langtab.hrc:431 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Kenya)" -msgstr "" +msgstr "אנגלית (קניה)" #. SgQ2p #: svtools/inc/langtab.hrc:432 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Pali Thai" -msgstr "" +msgstr "תאית פאלי" #. DGeeF #: svtools/inc/langtab.hrc:433 @@ -4987,49 +4986,49 @@ #: svtools/inc/langtab.hrc:434 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Bribri" -msgstr "" +msgstr "ברי-ברי" #. 2GFgR #: svtools/inc/langtab.hrc:435 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Denmark)" -msgstr "" +msgstr "אנגלית (דנמרק)" #. gmE6U #: svtools/inc/langtab.hrc:436 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sesotho" -msgstr "" +msgstr "ססותו" #. BkKJX #: svtools/inc/langtab.hrc:437 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Klingon" -msgstr "" +msgstr "קלינגון" #. xFYhC #: svtools/inc/langtab.hrc:438 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Israel)" -msgstr "" +msgstr "אנגלית (ישראל)" #. Bryjh #: svtools/inc/langtab.hrc:439 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Interslavic Latin" -msgstr "" +msgstr "לטינית בין-סלאבית" #. DZBAE #: svtools/inc/langtab.hrc:440 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Interslavic Cyrillic" -msgstr "" +msgstr "קירילית בין-סלאבית" #. 4eEDW #: svtools/inc/langtab.hrc:441 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Pennsylvania Dutch" -msgstr "" +msgstr "הולנדית של פנסילבניה" #. fXSja #: svtools/uiconfig/ui/addresstemplatedialog.ui:8 @@ -5053,25 +5052,25 @@ #: svtools/uiconfig/ui/addresstemplatedialog.ui:143 msgctxt "addresstemplatedialog|extended_tip|datasource" msgid "Select the data source for your address book." -msgstr "" +msgstr "נא לבחור את מקור הנתונים לספר הכתובות שלך." #. UTY6t #: svtools/uiconfig/ui/addresstemplatedialog.ui:167 msgctxt "addresstemplatedialog|extended_tip|datatable" msgid "Select the data table for your address book." -msgstr "" +msgstr "נא לבחור את טבלת הנתונים לספר הכתובות שלך." #. xkk5e #: svtools/uiconfig/ui/addresstemplatedialog.ui:178 msgctxt "addresstemplatedialog|admin" msgid "_Assign" -msgstr "" +msgstr "ה_קצאה" #. TG8ad #: svtools/uiconfig/ui/addresstemplatedialog.ui:185 msgctxt "addresstemplatedialog|extended_tip|admin" msgid "Add a new data source to the Address Book Source list." -msgstr "" +msgstr "הוספת מקור נתונים חדש לרשימת מקורות ספר הכתובות." #. sws8j #: svtools/uiconfig/ui/addresstemplatedialog.ui:203 @@ -5083,31 +5082,31 @@ #: svtools/uiconfig/ui/addresstemplatedialog.ui:548 msgctxt "addresstemplatedialog|label23" msgid "Field Assignment" -msgstr "השמת שדות" +msgstr "הקצאת שדות" #. zEPAf #: svtools/uiconfig/ui/addresstemplatedialog.ui:556 msgctxt "addresstemplatedialog|extended_tip|assign" msgid "Select the field in the data table that corresponds to the address book entry." -msgstr "" +msgstr "נא לבחור את השדה בטבלת הנתונים שתואם לרשומה בספר הכתובות." #. qKBRS #: svtools/uiconfig/ui/addresstemplatedialog.ui:584 msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog" msgid "Edit the field assignments and the data source for your address book." -msgstr "" +msgstr "עריכת השמות השדות ומקורות הנתונים לספר הכתובות שלך." #. 8qKyD #: svtools/uiconfig/ui/calendar.ui:43 msgctxt "calendar|STR_SVT_CALENDAR_TODAY" msgid "Today" -msgstr "" +msgstr "היום" #. Cr9A2 #: svtools/uiconfig/ui/calendar.ui:58 msgctxt "calendar|STR_SVT_CALENDAR_NONE" msgid "None" -msgstr "" +msgstr "ללא" #. vrBni #: svtools/uiconfig/ui/fileviewmenu.ui:12 @@ -5119,7 +5118,7 @@ #: svtools/uiconfig/ui/fileviewmenu.ui:20 msgctxt "fileviewmenu|rename" msgid "_Rename" -msgstr "מתן שם אחר" +msgstr "_שינוי שם" #. puJ5X #: svtools/uiconfig/ui/graphicexport.ui:51 @@ -5131,7 +5130,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:141 msgctxt "graphicexport|modifydimensionscb" msgid "Modify dimensions" -msgstr "" +msgstr "שינוי ממדים" #. pyd6J #: svtools/uiconfig/ui/graphicexport.ui:159 @@ -5149,7 +5148,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:184 msgctxt "graphicexport|modifyresolutioncb" msgid "Modify resolution" -msgstr "" +msgstr "שינוי רזולוציה" #. ZWxGB #: svtools/uiconfig/ui/graphicexport.ui:202 @@ -5161,19 +5160,19 @@ #: svtools/uiconfig/ui/graphicexport.ui:222 msgctxt "graphicexport|extended_tip|widthmf" msgid "Specifies the measurement units." -msgstr "" +msgstr "מציין את יחידות המידה." #. BPaB3 #: svtools/uiconfig/ui/graphicexport.ui:242 msgctxt "graphicexport|extended_tip|heightmf" msgid "Specifies the height." -msgstr "" +msgstr "מציין את הגובה." #. Da3fv #: svtools/uiconfig/ui/graphicexport.ui:262 msgctxt "graphicexport|extended_tip|resolutionmf" msgid "Enter the image resolution. Select the measurement units from the list box." -msgstr "" +msgstr "נא למלא את רזולוציית התמונה. יש לבחור את יחידות המידה מתיבת הרשימה." #. S9aHs #: svtools/uiconfig/ui/graphicexport.ui:276 @@ -5209,7 +5208,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:284 msgctxt "graphicexport|extended_tip|widthlb" msgid "Specifies the width." -msgstr "" +msgstr "מציין את הרוחב." #. kYLvv #: svtools/uiconfig/ui/graphicexport.ui:298 @@ -5233,7 +5232,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:304 msgctxt "graphicexport|extended_tip|resolutionlb" msgid "Enter the image resolution. Select the measurement units from the list box." -msgstr "" +msgstr "נא למלא את רזולוציית התמונה. יש לבחור את יחידות המידה מתיבת הרשימה." #. ENaqm #: svtools/uiconfig/ui/graphicexport.ui:322 @@ -5245,7 +5244,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:348 msgctxt "graphicexport|extended_tip|colordepthlb" msgid "Select the color depth from 8 bit grayscale or 24 bit true color." -msgstr "" +msgstr "נא לבחור את עומק הצבע החל מגיוון אפור של 8 סיביות ועד צבע אמתי של 32 סיביות." #. hFaPC #: svtools/uiconfig/ui/graphicexport.ui:357 @@ -5257,19 +5256,19 @@ #: svtools/uiconfig/ui/graphicexport.ui:385 msgctxt "graphicexport|losslesscb" msgid "Lossless" -msgstr "" +msgstr "ללא אובדן איכות" #. QKNme #: svtools/uiconfig/ui/graphicexport.ui:394 msgctxt "graphicexport|extended_tip|losslesscb" msgid "Lossless images do not lose quality but result in larger files." -msgstr "" +msgstr "תמונות ללא אובדן איכות לא מאבדות מאיכותן אך הקבצים שלהן גדולים יותר." #. 5Gv5x #: svtools/uiconfig/ui/graphicexport.ui:413 msgctxt "graphicexport|extended_tip|compressionjpgwebpnf" msgid "Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size." -msgstr "" +msgstr "מגדיר את איכות הייצוא. יש לבחור בין איכות נמוכה וגודל קובץ קטן ועד לאיכות גבוהה עם קבצים גדולים בהתאם." #. Tk5y2 #: svtools/uiconfig/ui/graphicexport.ui:442 @@ -5281,7 +5280,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:478 msgctxt "graphicexport|extended_tip|compressionpngnf" msgid "Sets the compression for the export. A high compression means a smaller, but slower to load image." -msgstr "" +msgstr "מגדיר את הדחיסה לייצור. דחיסה גדולה יותר תקטין את הקובץ יותר אך יידרש זמן רב יותר לטעון את התמונה." #. f4LYz #: svtools/uiconfig/ui/graphicexport.ui:507 @@ -5299,7 +5298,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:538 msgctxt "graphicexport|extended_tip|rlecb" msgid "Applies RLE (Run Length Encoding) to the BMP graphics." -msgstr "" +msgstr "מחיל RLE ‏(Run Length Encoding - קידוד אורך ריצה) לגרפיקת ה־BPM." #. EA7BF #: svtools/uiconfig/ui/graphicexport.ui:547 @@ -5317,7 +5316,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:578 msgctxt "graphicexport|extended_tip|interlacedcb" msgid "Specifies whether the graphic is to be saved in interlaced mode." -msgstr "" +msgstr "מציין האם לשמור את הגרפיקה במצב שזירת פסים." #. BkbD3 #: svtools/uiconfig/ui/graphicexport.ui:587 @@ -5335,7 +5334,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:618 msgctxt "graphicexport|extended_tip|savetransparencycb" msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture." -msgstr "" +msgstr "מציין האם לשמור את רקע התמונה כשקוף. יופיעו רק עצמים בתמונת ה־GIF. יש להשתמש במחליף הצבעים כדי להגדיר את הצבע השקוף בתמונה." #. ZPmXf #: svtools/uiconfig/ui/graphicexport.ui:627 @@ -5353,7 +5352,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:663 msgctxt "graphicexport|extended_tip|binarycb" msgid "Exports the file in binary format. The resulting file is smaller than a text file." -msgstr "" +msgstr "מייצא את הקובץ בתצורה בינרית. הקובץ שייווצר יהיה קטן מקובץ טקסט." #. 8cZsH #: svtools/uiconfig/ui/graphicexport.ui:674 @@ -5365,7 +5364,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:683 msgctxt "graphicexport|extended_tip|textcb" msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file." -msgstr "" +msgstr "מייצא את הקובץ בתצורת ASCII. הקובץ שייווצר יהיה גדול מקובץ בינרי." #. ECUb9 #: svtools/uiconfig/ui/graphicexport.ui:698 @@ -5383,7 +5382,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:739 msgctxt "graphicexport|extended_tip|tiffpreviewcb" msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file." -msgstr "" +msgstr "מציין האם תמונת תצוגה מקדימה מיוצאת בתצורת TIFF יחד עם קובץ ה־PostScript עצמו." #. AeEJu #: svtools/uiconfig/ui/graphicexport.ui:750 @@ -5395,7 +5394,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:758 msgctxt "graphicexport|extended_tip|epsipreviewcb" msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code." -msgstr "" +msgstr "מציין האם תצורת EPSI מונוכרומטית תיוצא ביחד עם קובץ ה־PostScript. תצורת הקובץ הזאת מכילה תווים שמיועדים להדפסה בקוד ASCII של 7 סיביות בלבד." #. sRbZb #: svtools/uiconfig/ui/graphicexport.ui:773 @@ -5413,7 +5412,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:809 msgctxt "graphicexport|extended_tip|color1rb" msgid "Exports the file in color." -msgstr "" +msgstr "מייצא את הקובץ בצבע." #. VeZFK #: svtools/uiconfig/ui/graphicexport.ui:820 @@ -5425,7 +5424,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:829 msgctxt "graphicexport|extended_tip|color2rb" msgid "Exports the file in grayscale tones." -msgstr "" +msgstr "מייצא את הקובץ בגווני אפור." #. BbSGF #: svtools/uiconfig/ui/graphicexport.ui:844 @@ -5443,7 +5442,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:880 msgctxt "graphicexport|extended_tip|level1rb" msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2." -msgstr "" +msgstr "דחיסה לא זמינה ברמה הזאת. יש לבחור באפשרות רמה 1 אם מדפסת ה־PostScript שלך לא מציע את היכולות של רמה 2." #. kuCNX #: svtools/uiconfig/ui/graphicexport.ui:891 @@ -5455,7 +5454,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:900 msgctxt "graphicexport|extended_tip|level2rb" msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics." -msgstr "" +msgstr "יש לבחור באפשרות רמה 2 אם ההתקן שלך תומך במפות סיביות צבעוניות, גרפיקת לוח צבעים וגרפיקה דחוסה." #. JUuBZ #: svtools/uiconfig/ui/graphicexport.ui:915 @@ -5473,7 +5472,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:951 msgctxt "graphicexport|extended_tip|compresslzw" msgid "LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm." -msgstr "" +msgstr "דחיסת LZW היא דחיסת קובץ לגודל קטן יותר באמצעות אלגוריתם חיפוש מבוסס טבלה." #. vXGXe #: svtools/uiconfig/ui/graphicexport.ui:962 @@ -5485,7 +5484,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:971 msgctxt "graphicexport|extended_tip|compressnone" msgid "Specifies that you do not wish to use compression." -msgstr "" +msgstr "מציין את בחירתך שלא להשתמש בדחיסה." #. ghAqZ #: svtools/uiconfig/ui/graphicexport.ui:986 @@ -5515,7 +5514,7 @@ #: svtools/uiconfig/ui/linewindow.ui:19 msgctxt "linewindow|none_line_button" msgid "None" -msgstr "" +msgstr "ללא" #. LwyoW #: svtools/uiconfig/ui/placeedit.ui:18 @@ -5605,13 +5604,13 @@ #: svtools/uiconfig/ui/placeedit.ui:399 msgctxt "placeedit|passwordLabel" msgid "Password:" -msgstr "ססמה:" +msgstr "סיסמה:" #. DFwBC #: svtools/uiconfig/ui/placeedit.ui:423 msgctxt "placeedit|rememberPassword" msgid "Remember password" -msgstr "שמירת הססמה" +msgstr "שמירת הסיסמה" #. AnwWt #: svtools/uiconfig/ui/printersetupdialog.ui:8 @@ -5671,7 +5670,7 @@ #: svtools/uiconfig/ui/printersetupdialog.ui:239 msgctxt "printersetupdialog|extended_tip|name" msgid "Lists the installed printers on your operating system. To change the default printer, select a printer name from the list." -msgstr "מציג את המדפסות שמותקנות במערכת ההפעלה שלך. כדי לשנות את מדפסת בררת המחדל, יש לבחור בשם מדפסת מהרשימה." +msgstr "מציג את המדפסות שמותקנות במערכת ההפעלה שלך. כדי לשנות את מדפסת ברירת המחדל, יש לבחור בשם מדפסת מהרשימה." #. XHe8U #: svtools/uiconfig/ui/printersetupdialog.ui:254 @@ -5683,7 +5682,7 @@ #: svtools/uiconfig/ui/printersetupdialog.ui:279 msgctxt "printersetupdialog|extended_tip|PrinterSetupDialog" msgid "Select the default printer for the current document." -msgstr "" +msgstr "בוחר את מדפסת ברירת המחדל למסמך הזה." #. psFPB #: svtools/uiconfig/ui/querydeletedialog.ui:7 @@ -5767,7 +5766,7 @@ #: svtools/uiconfig/ui/restartdialog.ui:130 msgctxt "restartdialog|reason_assigning_folders" msgid "For the assigned folders and archives to take effect, %PRODUCTNAME must be restarted." -msgstr "כדי שהתיקיות והארכיונים המוצקצים ייכנסו לתוקף יש להפעיל את %PRODUCTNAME מחדש." +msgstr "כדי שהתיקיות והארכיונים המוקצים ייכנסו לתוקף יש להפעיל את %PRODUCTNAME מחדש." #. hmir5 #: svtools/uiconfig/ui/restartdialog.ui:145 @@ -5789,47 +5788,45 @@ #. MtNwS #: svtools/uiconfig/ui/restartdialog.ui:190 -#, fuzzy msgctxt "restartdialog|reason_exp_features" msgid "For the modified experimental features to take effect, %PRODUCTNAME must be restarted." -msgstr "כדי שתבנית ההדפסה כבררת מחדל תיכנס לתוקף יש להפעיל מחדש את %PRODUCTNAME." +msgstr "כדי שהיכולות הניסיוניות תיכנסנה לתוקף יש להפעיל את %PRODUCTNAME מחדש." #. T7Cuz #: svtools/uiconfig/ui/restartdialog.ui:205 -#, fuzzy msgctxt "restartdialog|reason_extension_install" msgid "For the extension to work properly, %PRODUCTNAME must be restarted." -msgstr "כדי שהביבליוגרפיה תעבוד כראוי יש להפעיל מחדש את %PRODUCTNAME." +msgstr "כדי שההרחבות תעבודנה כראוי יש להפעיל את %PRODUCTNAME מחדש." #. CdJen #: svtools/uiconfig/ui/restartdialog.ui:220 msgctxt "restartdialog|reason_extension_install" msgid "To apply changes, %PRODUCTNAME must be restarted." -msgstr "" +msgstr "כדי שהשינויים ייכנסו לתוקף, יש להפעיל את %PRODUCTNAME מחדש." #. AGbvD #: svtools/uiconfig/ui/restartdialog.ui:235 msgctxt "restartdialog|reason_opencl" msgid "For the OpenCL changes to take effect, %PRODUCTNAME must be restarted." -msgstr "" +msgstr "כדי ששינויי ה־OpenCL ייכנסו לתוקף, יש להפעיל את %PRODUCTNAME מחדש." #. sGe6v #: svtools/uiconfig/ui/restartdialog.ui:250 msgctxt "restartdialog|reason_threading" msgid "For the multi-threaded calculation changes to take effect, %PRODUCTNAME must be restarted." -msgstr "" +msgstr "כדי ששינויי החישוב הרב־תהליכי ייכנסו לתוקף, יש להפעיל את %PRODUCTNAME מחדש." #. nUonf #: svtools/uiconfig/ui/restartdialog.ui:265 msgctxt "restartdialog|reason_mscompatible_formsmenu" msgid "For restructuring the Form menu, %PRODUCTNAME must be restarted." -msgstr "" +msgstr "לבניית תפריט הטופס מחדש, יש להפעיל את %PRODUCTNAME מחדש." #. yojAQ #: svtools/uiconfig/ui/restartdialog.ui:280 msgctxt "restartdialog|reason_save" msgid "For the modified save settings to take effect, %PRODUCTNAME must be restarted." -msgstr "" +msgstr "כדי שהשינויים שערכת יחולו, יש להפעיל את %PRODUCTNAME מחדש." #. weAzr #: svtools/uiconfig/ui/restartdialog.ui:295 diff -Nru libreoffice-7.4.6/translations/source/he/svx/messages.po libreoffice-7.4.7/translations/source/he/svx/messages.po --- libreoffice-7.4.6/translations/source/he/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,24 +4,23 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2021-03-05 18:22+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565192821.000000\n" #. 3GkZj #: include/svx/strings.hrc:25 -#, fuzzy msgctxt "STR_ObjNameSingulNONE" msgid "Drawing object" -msgstr "עצם סרטוט" +msgstr "עצם ציור" #. 9yvmF #: include/svx/strings.hrc:26 @@ -31,16 +30,15 @@ #. MLbZt #: include/svx/strings.hrc:27 -#, fuzzy msgctxt "STR_ObjNameSingulGRUP" msgid "Group object" -msgstr "עצם קבוצה" +msgstr "עצם קבוצתי" #. nsYcw #: include/svx/strings.hrc:28 msgctxt "STR_ObjNameSingulDIAGRAM" msgid "Diagram" -msgstr "" +msgstr "תרשים" #. tC4qm #: include/svx/strings.hrc:29 @@ -69,7 +67,6 @@ #. SD2Wy #: include/svx/strings.hrc:33 -#, fuzzy msgctxt "STR_ObjNameSingulLINE_Hori" msgid "Horizontal line" msgstr "קו אופקי" @@ -82,7 +79,6 @@ #. JzFtj #: include/svx/strings.hrc:35 -#, fuzzy msgctxt "STR_ObjNameSingulLINE_Diag" msgid "Diagonal line" msgstr "קו אלכסוני" @@ -303,25 +299,25 @@ #: include/svx/strings.hrc:71 msgctxt "STR_ObjNameSingulPATHLINE" msgid "Bézier curve" -msgstr "עקומה בייזיר" +msgstr "עקומת בזייה" #. BhTAu #: include/svx/strings.hrc:72 msgctxt "STR_ObjNamePluralPATHLINE" msgid "Bézier curves" -msgstr "עקומות בייזיר" +msgstr "עקומות בזייה" #. LU3AK #: include/svx/strings.hrc:73 msgctxt "STR_ObjNameSingulPATHFILL" msgid "Bézier curve" -msgstr "עקומה בייזיר" +msgstr "עקומת בזייה" #. vLAWh #: include/svx/strings.hrc:74 msgctxt "STR_ObjNamePluralPATHFILL" msgid "Bézier curves" -msgstr "עקומות בייזיר" +msgstr "עקומות בזייה" #. FQeae #: include/svx/strings.hrc:75 @@ -461,19 +457,19 @@ #: include/svx/strings.hrc:97 msgctxt "STR_ObjNamePluralGRAFNONE" msgid "Blank image objects" -msgstr "" +msgstr "עצמי תמונות ריקות" #. 8Za3o #: include/svx/strings.hrc:98 msgctxt "STR_ObjNameSingulGRAFNONELNK" msgid "Blank linked image" -msgstr "" +msgstr "תמונה מקושרת ריקה" #. 8W5JS #: include/svx/strings.hrc:99 msgctxt "STR_ObjNamePluralGRAFNONELNK" msgid "Blank linked images" -msgstr "" +msgstr "תמונות מקושרות ריקות" #. kUuBg #: include/svx/strings.hrc:100 @@ -507,24 +503,21 @@ #. WdAhn #: include/svx/strings.hrc:105 -#, fuzzy msgctxt "STR_ObjNameSingulGRAFBMPTRANS" msgid "Image with transparency" -msgstr "מפות סיביות עם שקיפות" +msgstr "תמונה עם שקיפות" #. 3FkK6 #: include/svx/strings.hrc:106 -#, fuzzy msgctxt "STR_ObjNameSingulGRAFBMPLNK" msgid "Linked Image" -msgstr "קישור תמונה" +msgstr "תמונה מקושרת" #. ydd77 #: include/svx/strings.hrc:107 -#, fuzzy msgctxt "STR_ObjNameSingulGRAFBMPTRANSLNK" msgid "Linked image with transparency" -msgstr "מפות סיביות מקושרות עם שקיפות" +msgstr "תמונה מקושרת עם שקיפות" #. FVJeA #: include/svx/strings.hrc:108 @@ -534,24 +527,21 @@ #. mjfjF #: include/svx/strings.hrc:109 -#, fuzzy msgctxt "STR_ObjNamePluralGRAFBMPTRANS" msgid "Images with transparency" -msgstr "מפות סיביות עם שקיפות" +msgstr "תמונות עם שקיפות" #. 8kaaN #: include/svx/strings.hrc:110 -#, fuzzy msgctxt "STR_ObjNamePluralGRAFBMPLNK" msgid "Linked images" -msgstr "חיפוש תמונות" +msgstr "תמונות מקושרות" #. DKMiE #: include/svx/strings.hrc:111 -#, fuzzy msgctxt "STR_ObjNamePluralGRAFBMPTRANSLNK" msgid "Linked images with transparency" -msgstr "מפות סיביות מקושרות עם שקיפות" +msgstr "תמונה מקושרת עם שקיפות" #. aeEoK #: include/svx/strings.hrc:112 @@ -581,7 +571,7 @@ #: include/svx/strings.hrc:116 msgctxt "STR_ObjNameSingulGRAFWMF" msgid "WMF" -msgstr "" +msgstr "WMF" #. LR2x6 #: include/svx/strings.hrc:117 @@ -605,7 +595,7 @@ #: include/svx/strings.hrc:120 msgctxt "STR_ObjNameSingulGRAFEMF" msgid "PDF" -msgstr "" +msgstr "PDF" #. tc3Jb #: include/svx/strings.hrc:121 @@ -780,14 +770,12 @@ #. WdWuw #: include/svx/strings.hrc:149 -#, fuzzy msgctxt "STR_ObjNameSingulSphere3d" msgid "Sphere" msgstr "כדור" #. YNXv5 #: include/svx/strings.hrc:150 -#, fuzzy msgctxt "STR_ObjNamePluralSphere3d" msgid "Spheres" msgstr "כדורים" @@ -844,7 +832,7 @@ #: include/svx/strings.hrc:159 msgctxt "STR_SortShapes" msgid "Sort shapes" -msgstr "" +msgstr "מיון צורות" #. cALbH #: include/svx/strings.hrc:160 @@ -1168,7 +1156,7 @@ #: include/svx/strings.hrc:213 msgctxt "STR_DiagramModelDataChange" msgid "Diagram change %1" -msgstr "" +msgstr "שינוי בתרשים %1" #. ghkib #: include/svx/strings.hrc:214 @@ -3040,13 +3028,13 @@ #: include/svx/strings.hrc:528 msgctxt "STR_UNDO_COL_DELETE" msgid "Delete column" -msgstr "Delete column" +msgstr "מחיקת עמודה" #. 9SF9L #: include/svx/strings.hrc:529 msgctxt "STR_UNDO_ROW_DELETE" msgid "Delete row" -msgstr "Delete row" +msgstr "מחיקת שורה" #. iBbtT #: include/svx/strings.hrc:530 @@ -3064,7 +3052,7 @@ #: include/svx/strings.hrc:532 msgctxt "STR_TABLE_NUMFORMAT" msgid "Format cell" -msgstr "Format cell" +msgstr "עיצוב תא" #. pSCJC #: include/svx/strings.hrc:533 @@ -3229,7 +3217,7 @@ #: include/svx/strings.hrc:560 msgctxt "RID_SVXSTR_GRAFMODE_STANDARD" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. DdAzc #: include/svx/strings.hrc:561 @@ -4119,56 +4107,56 @@ #: include/svx/strings.hrc:717 msgctxt "RID_SVXSTR_GRDT10" msgid "Diagonal 1l" -msgstr "Diagonal 1l" +msgstr "אלכסוני 1 שמאל" #. pJ9QE #. r means right #: include/svx/strings.hrc:719 msgctxt "RID_SVXSTR_GRDT11" msgid "Diagonal 1r" -msgstr "Diagonal 1r" +msgstr "אלכסוני 1 ימין" #. JB95r #. l means left #: include/svx/strings.hrc:721 msgctxt "RID_SVXSTR_GRDT12" msgid "Diagonal 2l" -msgstr "Diagonal 2l" +msgstr "אלכסוני 2 שמאל" #. xUpUR #. r means right #: include/svx/strings.hrc:723 msgctxt "RID_SVXSTR_GRDT13" msgid "Diagonal 2r" -msgstr "Diagonal 2r" +msgstr "אלכסוני 2 ימין" #. WCYMT #. l means left #: include/svx/strings.hrc:725 msgctxt "RID_SVXSTR_GRDT14" msgid "Diagonal 3l" -msgstr "Diagonal 3l" +msgstr "אלכסוני 3 שמאל" #. 3rJw7 #. r means right #: include/svx/strings.hrc:727 msgctxt "RID_SVXSTR_GRDT15" msgid "Diagonal 3r" -msgstr "Diagonal 3r" +msgstr "אלכסוני 3 ימין" #. a6ENF #. l means left #: include/svx/strings.hrc:729 msgctxt "RID_SVXSTR_GRDT16" msgid "Diagonal 4l" -msgstr "Diagonal 4l" +msgstr "אלכסוני 4 שמאל" #. Fpctb #. r means right #: include/svx/strings.hrc:731 msgctxt "RID_SVXSTR_GRDT17" msgid "Diagonal 4r" -msgstr "Diagonal 4r" +msgstr "אלכסוני 4 ימין" #. yqda8 #: include/svx/strings.hrc:732 @@ -5818,7 +5806,7 @@ #: include/svx/strings.hrc:1040 msgctxt "RID_SVXSTR_LANGUAGE_ALL" msgid "[All]" -msgstr "[All]" +msgstr "[כולן]" #. RZVDm #: include/svx/strings.hrc:1042 @@ -6210,7 +6198,7 @@ #: include/svx/strings.hrc:1110 msgctxt "RID_SVXSTR_DEFAULT" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. djHis #: include/svx/strings.hrc:1111 @@ -6932,7 +6920,7 @@ #: include/svx/strings.hrc:1240 msgctxt "RID_STR_PROPTITLE_SPINBUTTON" msgid "Spin Button" -msgstr "כפתור סבסוב" +msgstr "כפתור טווח" #. eGgm4 #: include/svx/strings.hrc:1241 @@ -6962,13 +6950,13 @@ #: include/svx/strings.hrc:1247 msgctxt "RID_STR_POSTFIX_DATE" msgid " (Date)" -msgstr " (Date)" +msgstr " (תאריך)" #. guA5u #: include/svx/strings.hrc:1248 msgctxt "RID_STR_POSTFIX_TIME" msgid " (Time)" -msgstr " (Time)" +msgstr " (שעה)" #. 2wgdY #: include/svx/strings.hrc:1249 @@ -7082,7 +7070,7 @@ #: include/svx/strings.hrc:1267 msgctxt "RID_STR_READONLY_VIEW" msgid " (read-only)" -msgstr " (read-only)" +msgstr " (לקריאה בלבד)" #. DgfNh #: include/svx/strings.hrc:1268 @@ -8017,7 +8005,7 @@ #: include/svx/strings.hrc:1434 msgctxt "RID_SVXITEMS_ORI_STANDARD" msgid "Default orientation" -msgstr "כיוון בררת מחדל" +msgstr "כיוון ברירת מחדל" #. WQqju #: include/svx/strings.hrc:1435 @@ -10819,7 +10807,6 @@ #. QYjeZ #: svx/inc/fmstring.hrc:29 -#, fuzzy msgctxt "RID_RSC_SQL_INTERNATIONAL" msgid "LIKE" msgstr "LIKE" @@ -10877,17 +10864,15 @@ #. xZ65E #: svx/inc/fmstring.hrc:38 -#, fuzzy msgctxt "RID_RSC_SQL_INTERNATIONAL" msgid "Average" -msgstr "Average" +msgstr "ממוצע" #. cTfDS #: svx/inc/fmstring.hrc:39 -#, fuzzy msgctxt "RID_RSC_SQL_INTERNATIONAL" msgid "Count" -msgstr "Count" +msgstr "ספירה" #. TFaGE #: svx/inc/fmstring.hrc:40 @@ -10981,121 +10966,121 @@ #: svx/inc/formnavi.hrc:29 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToEdit" msgid "~Text Box" -msgstr "" +msgstr "תיבת ~טקסט" #. LaRik #: svx/inc/formnavi.hrc:30 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToButton" msgid "~Button" -msgstr "" +msgstr "~כפתור" #. qjKaG #: svx/inc/formnavi.hrc:31 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFixed" msgid "La~bel field" -msgstr "" +msgstr "שדה ת~ווית" #. sq3AT #: svx/inc/formnavi.hrc:32 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToList" msgid "L~ist Box" -msgstr "" +msgstr "תיבת ~רשימה" #. agpbk #: svx/inc/formnavi.hrc:33 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCheckBox" msgid "~Check Box" -msgstr "" +msgstr "תיבת ~סימון" #. 9WA4B #: svx/inc/formnavi.hrc:34 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToRadio" msgid "~Radio Button" -msgstr "" +msgstr "כפתור ב~חירה" #. PpgmW #: svx/inc/formnavi.hrc:35 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToGroup" msgid "G~roup Box" -msgstr "" +msgstr "תיבת ~קבוצה" #. A8Dbz #: svx/inc/formnavi.hrc:36 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo" msgid "Combo Bo~x" -msgstr "" +msgstr "תיבה ~נפתחת" #. HRAoH #: svx/inc/formnavi.hrc:37 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageBtn" msgid "I~mage Button" -msgstr "" +msgstr "~כפתור תמונה" #. gZZqq #: svx/inc/formnavi.hrc:38 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFileControl" msgid "~File Selection" -msgstr "" +msgstr "~בחירת קובץ" #. EEADE #: svx/inc/formnavi.hrc:39 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToDate" msgid "~Date Field" -msgstr "" +msgstr "שדה ~תאריך" #. gDr8N #: svx/inc/formnavi.hrc:40 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToTime" msgid "Tim~e Field" -msgstr "" +msgstr "שדה ~שעה" #. jAbfP #: svx/inc/formnavi.hrc:41 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNumeric" msgid "~Numerical Field" -msgstr "" +msgstr "שדה מ~ספרי" #. ryXjj #: svx/inc/formnavi.hrc:42 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCurrency" msgid "C~urrency Field" -msgstr "" +msgstr "שדה ~מטבע" #. GXHFr #: svx/inc/formnavi.hrc:43 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToPattern" msgid "~Pattern Field" -msgstr "" +msgstr "שדה ת~בנית" #. a7jCc #: svx/inc/formnavi.hrc:44 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl" msgid "Ima~ge Control" -msgstr "" +msgstr "~פקד תמונה" #. WDsBh #: svx/inc/formnavi.hrc:45 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted" msgid "Fo~rmatted Field" -msgstr "" +msgstr "שדה מ~עוצב" #. aEXn5 #: svx/inc/formnavi.hrc:46 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar" msgid "Scroll bar" -msgstr "" +msgstr "פס גלילה" #. cGxjA #: svx/inc/formnavi.hrc:47 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton" msgid "Spin Button" -msgstr "" +msgstr "כפתור טווח" #. HYbc6 #: svx/inc/formnavi.hrc:48 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar" msgid "Navigation Bar" -msgstr "" +msgstr "סרגל ניווט" #. d7vkX #: svx/inc/frmsel.hrc:31 @@ -12986,7 +12971,7 @@ #: svx/source/dialog/page.hrc:99 msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW" msgid "Japanese Postcard" -msgstr "Japanese Postcard" +msgstr "גלויה יפנית" #. 3gfeR #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:8 @@ -13172,7 +13157,7 @@ #, fuzzy msgctxt "adddataitemdialog|valueft" msgid "_Default value:" -msgstr "ערך בררת מחדל" +msgstr "ערך ברירת מחדל" #. 6XN5s #: svx/uiconfig/ui/adddataitemdialog.ui:140 @@ -13473,10 +13458,9 @@ #. zHkNb #: svx/uiconfig/ui/addsubmissiondialog.ui:176 -#, fuzzy msgctxt "addsubmissiondialog|label4" msgid "_Method:" -msgstr "שיטה: " +msgstr "_שיטה:" #. 6VGN7 #: svx/uiconfig/ui/addsubmissiondialog.ui:216 @@ -13500,10 +13484,9 @@ #. Hj3z4 #: svx/uiconfig/ui/asianphoneticguidedialog.ui:91 -#, fuzzy msgctxt "asianphoneticguidedialog|basetextft" msgid "Base text" -msgstr "טקסט בסיסי " +msgstr "טקסט בסיס" #. ob9GM #: svx/uiconfig/ui/asianphoneticguidedialog.ui:103 @@ -13513,10 +13496,9 @@ #. 5i2SB #: svx/uiconfig/ui/asianphoneticguidedialog.ui:153 -#, fuzzy msgctxt "asianphoneticguidedialog|Left2ED-atkobject" msgid "Base text" -msgstr "טקסט בסיסי " +msgstr "טקסט בסיס" #. AmySt #: svx/uiconfig/ui/asianphoneticguidedialog.ui:154 @@ -13550,10 +13532,9 @@ #. iMRNj #: svx/uiconfig/ui/asianphoneticguidedialog.ui:224 -#, fuzzy msgctxt "asianphoneticguidedialog|Left3ED-atkobject" msgid "Base text" -msgstr "טקסט בסיסי " +msgstr "טקסט בסיס" #. YGAWS #: svx/uiconfig/ui/asianphoneticguidedialog.ui:225 @@ -13587,10 +13568,9 @@ #. QsYkZ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:278 -#, fuzzy msgctxt "asianphoneticguidedialog|Left4ED-atkobject" msgid "Base text" -msgstr "טקסט בסיסי " +msgstr "טקסט בסיס" #. 8BDyd #: svx/uiconfig/ui/asianphoneticguidedialog.ui:279 @@ -14205,7 +14185,7 @@ #: svx/uiconfig/ui/colsmenu.ui:40 msgctxt "colsmenu|delete" msgid "Delete column" -msgstr "Delete column" +msgstr "מחיקת עמודה" #. 7CkSW #: svx/uiconfig/ui/colsmenu.ui:48 @@ -16217,10 +16197,9 @@ #. cUiiU #: svx/uiconfig/ui/docrecoveryprogressdialog.ui:48 -#, fuzzy msgctxt "docrecoveryprogressdialog|label2" msgid "Progress of saving:" -msgstr "התקדמות השמירה: " +msgstr "התקדמות השמירה:" #. c8RJr #: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:22 @@ -17255,10 +17234,9 @@ #. vRR3B #: svx/uiconfig/ui/floatingcontour.ui:452 -#, fuzzy msgctxt "floatingcontour|spinbutton|tooltip_text" msgid "Color Tolerance" -msgstr "Color Tolerance" +msgstr "סף צבע" #. o4Dxq #: svx/uiconfig/ui/floatingcontour.ui:457 @@ -17484,10 +17462,9 @@ #. T7dN7 #: svx/uiconfig/ui/formnavimenu.ui:88 -#, fuzzy msgctxt "formnavimenu|props" msgid "Propert_ies" -msgstr "מאפיינים: " +msgstr "מ_אפיינים" #. E4cAk #: svx/uiconfig/ui/formnavimenu.ui:96 @@ -17503,23 +17480,21 @@ #. BgQUJ #: svx/uiconfig/ui/functionmenu.ui:12 -#, fuzzy msgctxt "functionmenu|avg" msgid "Average" -msgstr "Average" +msgstr "ממוצע" #. FomTX #: svx/uiconfig/ui/functionmenu.ui:20 msgctxt "functionmenu|counta" msgid "CountA" -msgstr "CountA" +msgstr "ספירת מלאים" #. jUNYi #: svx/uiconfig/ui/functionmenu.ui:28 -#, fuzzy msgctxt "functionmenu|count" msgid "Count" -msgstr "Count" +msgstr "ספירה" #. JiCfP #: svx/uiconfig/ui/functionmenu.ui:36 @@ -17579,10 +17554,9 @@ #. eTopW #: svx/uiconfig/ui/gallerymenu1.ui:62 -#, fuzzy msgctxt "gallerymenu1|properties" msgid "Propert_ies..." -msgstr "מאפיינים: " +msgstr "מ_אפיינים…" #. EdDyv #: svx/uiconfig/ui/gallerymenu2.ui:12 @@ -17921,10 +17895,9 @@ #. WS3NJ #: svx/uiconfig/ui/imapdialog.ui:423 -#, fuzzy msgctxt "imapdialog|TBI_PROPERTY" msgid "Properties..." -msgstr "מאפיינים: " +msgstr "מאפיינים…" #. CBpCj #: svx/uiconfig/ui/imapdialog.ui:427 @@ -18478,10 +18451,9 @@ #. rYzct #: svx/uiconfig/ui/paralinespacingcontrol.ui:19 -#, fuzzy msgctxt "paralinespacingcontrol|spacing_1" msgid "Spacing: 1" -msgstr "רווח " +msgstr "ריווח: 1" #. AGKEG #: svx/uiconfig/ui/paralinespacingcontrol.ui:36 @@ -18497,10 +18469,9 @@ #. kdJGE #: svx/uiconfig/ui/paralinespacingcontrol.ui:70 -#, fuzzy msgctxt "paralinespacingcontrol|spacing_2" msgid "Spacing: 2" -msgstr "רווח " +msgstr "ריווח: 2" #. CAibt #: svx/uiconfig/ui/paralinespacingcontrol.ui:107 diff -Nru libreoffice-7.4.6/translations/source/he/sw/messages.po libreoffice-7.4.7/translations/source/he/sw/messages.po --- libreoffice-7.4.6/translations/source/he/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-03-07 01:19+0000\n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565194319.000000\n" #. v3oJv @@ -385,19 +385,19 @@ #: sw/inc/cnttab.hrc:29 msgctxt "RES_SRCTYPES" msgid "%PRODUCTNAME Math" -msgstr "%PRODUCTNAME Math" +msgstr "%PRODUCTNAME Math‎" #. wg2Rx #: sw/inc/cnttab.hrc:30 msgctxt "RES_SRCTYPES" msgid "%PRODUCTNAME Chart" -msgstr "%PRODUCTNAME Chart" +msgstr "%PRODUCTNAME Chart‎" #. 6GFwM #: sw/inc/cnttab.hrc:31 msgctxt "RES_SRCTYPES" msgid "%PRODUCTNAME Calc" -msgstr "%PRODUCTNAME Calc" +msgstr "%PRODUCTNAME Calc‎" #. Ybz27 #: sw/inc/cnttab.hrc:32 @@ -2560,7 +2560,7 @@ #: sw/inc/strings.hrc:75 msgctxt "STR_POOLCOLL_STANDARD" msgid "Default Paragraph Style" -msgstr "" +msgstr "סגנון פסקה כברירת מחדל" #. AGD4Q #: sw/inc/strings.hrc:76 @@ -5038,13 +5038,13 @@ #: sw/inc/strings.hrc:507 msgctxt "STR_UNDO_CHAIN" msgid "Link frames" -msgstr "" +msgstr "קישור מסגרות" #. XV4Ap #: sw/inc/strings.hrc:508 msgctxt "STR_UNDO_UNCHAIN" msgid "Unlink frames" -msgstr "" +msgstr "ניתוק מסגרות" #. vUJG9 #: sw/inc/strings.hrc:509 @@ -5122,7 +5122,7 @@ #: sw/inc/strings.hrc:521 msgctxt "STR_MULTISEL" msgid "multiple selection" -msgstr "בחירות רבות" +msgstr "בחירות מגוונות" #. qFESB #: sw/inc/strings.hrc:522 @@ -5140,7 +5140,7 @@ #: sw/inc/strings.hrc:524 msgctxt "STR_YIELDS" msgid "→" -msgstr "" +msgstr "←" #. wNRhZ #: sw/inc/strings.hrc:525 @@ -5153,16 +5153,16 @@ msgctxt "STR_UNDO_TABS" msgid "One tab" msgid_plural "$1 tabs" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "טאב אחד" +msgstr[1] "$1 טאבים" #. eP6mC #: sw/inc/strings.hrc:527 msgctxt "STR_UNDO_NLS" msgid "One line break" msgid_plural "$1 line breaks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "מעבר שורה אחד" +msgstr[1] "$1 מעברי שורה" #. yS3nP #: sw/inc/strings.hrc:528 @@ -5180,7 +5180,7 @@ #: sw/inc/strings.hrc:530 msgctxt "STR_UNDO_REDLINE_INSERT" msgid "Insert $1" -msgstr "הכנסת $1" +msgstr "הוספת $1" #. i8ZQo #: sw/inc/strings.hrc:531 @@ -5190,7 +5190,6 @@ #. 5KECk #: sw/inc/strings.hrc:532 -#, fuzzy msgctxt "STR_UNDO_REDLINE_FORMAT" msgid "Attributes changed" msgstr "התכונות שונו" @@ -5203,22 +5202,21 @@ #. DCGPF #: sw/inc/strings.hrc:534 -#, fuzzy msgctxt "STR_UNDO_REDLINE_FMTCOLL" msgid "Style changed" -msgstr "הטבלה שונתה" +msgstr "הסגנון שונה" #. p77WZ #: sw/inc/strings.hrc:535 msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT" msgid "Paragraph formatting changed" -msgstr "" +msgstr "עיצוב הפסקה שונה" #. nehrq #: sw/inc/strings.hrc:536 msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT" msgid "Insert Row" -msgstr "הכנסת שורה" +msgstr "הוספת שורה" #. Ud4qT #: sw/inc/strings.hrc:537 @@ -5230,20 +5228,19 @@ #: sw/inc/strings.hrc:538 msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT" msgid "Insert Cell" -msgstr "הכנסת תא" +msgstr "הוספת תא" #. ZMrVY #: sw/inc/strings.hrc:539 -#, fuzzy msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE" msgid "Delete Cell" -msgstr "מחיקת הכול" +msgstr "מחיקת תא" #. DqprY #: sw/inc/strings.hrc:540 msgctxt "STR_N_REDLINES" msgid "$1 changes" -msgstr "$1 שינוים" +msgstr "$1 שינויים" #. ve5ZA #: sw/inc/strings.hrc:541 @@ -5381,7 +5378,7 @@ #: sw/inc/strings.hrc:563 msgctxt "STR_UNDO_INSERT_TEXTBOX" msgid "text box" -msgstr "" +msgstr "תיבת טקסט" #. yNjem #. undo: STR_PARAGRAPHS, string.text @@ -5400,7 +5397,7 @@ #: sw/inc/strings.hrc:567 msgctxt "STR_OLE" msgid "OLE object" -msgstr "" +msgstr "עצם OLE" #. db5Tg #: sw/inc/strings.hrc:568 @@ -5474,8 +5471,8 @@ msgctxt "STR_CHAPTERS" msgid "chapter" msgid_plural "chapters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "פרק" +msgstr[1] "פרקים" #. 2JCL2 #: sw/inc/strings.hrc:580 @@ -5485,10 +5482,9 @@ #. DvnGA #: sw/inc/strings.hrc:581 -#, fuzzy msgctxt "STR_PARAGRAPH_SIGN_UNDO" msgid "Paragraph sign" -msgstr "הפסקה היא " +msgstr "סימן פסקה" #. oL9GG #: sw/inc/strings.hrc:582 @@ -5500,28 +5496,25 @@ #: sw/inc/strings.hrc:583 msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION" msgid "Change object description of $1" -msgstr "" +msgstr "החלפת תיאור עצם של $1" #. rWw8U #: sw/inc/strings.hrc:584 -#, fuzzy msgctxt "STR_UNDO_TBLSTYLE_CREATE" msgid "Create table style: $1" -msgstr "יצירת סגנון עמוד: $1" +msgstr "יצירת סגנון טבלה: $1" #. jGxgy #: sw/inc/strings.hrc:585 -#, fuzzy msgctxt "STR_UNDO_TBLSTYLE_DELETE" msgid "Delete table style: $1" -msgstr "מחיקת סגנון עמוד: $1" +msgstr "מחיקת סגנון טבלה: $1" #. 6NWP3 #: sw/inc/strings.hrc:586 -#, fuzzy msgctxt "STR_UNDO_TBLSTYLE_UPDATE" msgid "Update table style: $1" -msgstr "יצירת סגנון עמוד: $1" +msgstr "עדכון סגנון טבלה: $1" #. JegfU #: sw/inc/strings.hrc:587 @@ -5533,13 +5526,13 @@ #: sw/inc/strings.hrc:588 msgctxt "STR_UNDO_INSERT_FORM_FIELD" msgid "Insert form field" -msgstr "" +msgstr "הוספת שדה טופס" #. 2zJmG #: sw/inc/strings.hrc:589 msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT" msgid "You can specify maximum of 25 items for a drop-down form field." -msgstr "" +msgstr "אפשר לציין עד 25 פריטים לשדה נפתח בטופס." #. CUXeF #: sw/inc/strings.hrc:591 @@ -5635,7 +5628,7 @@ #: sw/inc/strings.hrc:606 msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME" msgid "Resolved" -msgstr "" +msgstr "נפתרה" #. JtzA4 #: sw/inc/strings.hrc:607 @@ -5669,7 +5662,6 @@ #. CsQKH #: sw/inc/strings.hrc:613 -#, fuzzy msgctxt "STR_COMCORE_READERROR" msgid "Read Error" msgstr "שגיאת קריאה" @@ -5732,7 +5724,7 @@ #: sw/inc/strings.hrc:625 msgctxt "STR_STYLE_FAMILY_NUMBERING" msgid "List" -msgstr "" +msgstr "רשימה" #. NydLs #: sw/inc/strings.hrc:626 @@ -5768,10 +5760,9 @@ #. HD64i #: sw/inc/strings.hrc:632 -#, fuzzy msgctxt "STR_PRINTOPTUI_PRODUCTNAME" msgid "%PRODUCTNAME %s" -msgstr "%PRODUCTNAME %s" +msgstr "%PRODUCTNAME %s‎" #. q6egu #: sw/inc/strings.hrc:633 @@ -7616,7 +7607,7 @@ #: sw/inc/strings.hrc:963 msgctxt "FLD_INPUT_TEXT" msgid "[Text]" -msgstr "" +msgstr "[טקסט]" #. TyYok #. -------------------------------------------------------------------- @@ -7697,13 +7688,13 @@ #: sw/inc/strings.hrc:980 msgctxt "FLD_EU_FAX" msgid "Fax" -msgstr "" +msgstr "פקס" #. AtN9J #: sw/inc/strings.hrc:981 msgctxt "FLD_EU_EMAIL" msgid "Email" -msgstr "" +msgstr "דוא״ל" #. 6GBRm #: sw/inc/strings.hrc:982 @@ -8580,7 +8571,7 @@ #: sw/inc/strings.hrc:1154 msgctxt "STR_CHANNELR" msgid "Red: " -msgstr "אדום:" +msgstr "אדום: " #. u73NC #: sw/inc/strings.hrc:1155 @@ -8596,10 +8587,9 @@ #. BS4nZ #: sw/inc/strings.hrc:1157 -#, fuzzy msgctxt "STR_CONTRAST" msgid "Contrast: " -msgstr "ניגודיות" +msgstr "ניגודיות: " #. avJBK #: sw/inc/strings.hrc:1158 @@ -8628,10 +8618,9 @@ #. Z7tXB #: sw/inc/strings.hrc:1162 -#, fuzzy msgctxt "STR_DRAWMODE" msgid "Graphics mode: " -msgstr "מצב עבודה גרפי" +msgstr "מצב עבודה גרפי: " #. RXuUF #: sw/inc/strings.hrc:1163 @@ -8809,7 +8798,7 @@ #: sw/inc/strings.hrc:1192 msgctxt "ST_TABLE_FORMULA" msgid "Table formula" -msgstr "" +msgstr "נוסחת טבלה" #. DtkuT #: sw/inc/strings.hrc:1193 @@ -9141,10 +9130,9 @@ #. wLDkj #: sw/inc/strings.hrc:1247 -#, fuzzy msgctxt "STR_REDLINE_TABLE_ROW_INSERT" msgid "Row Inserted" -msgstr "שורה נוספה " +msgstr "נוספה שורה" #. Eb5Gb #: sw/inc/strings.hrc:1248 @@ -9623,17 +9611,15 @@ #. hRo3J #: sw/inc/strings.hrc:1332 -#, fuzzy msgctxt "STR_TOKEN_HELP_AUTHORITY" msgid "Bibliography entry: " -msgstr "רשומה ביבליוגרפית" +msgstr "רשומה ביבליוגרפית: " #. ZKG5v #: sw/inc/strings.hrc:1333 -#, fuzzy msgctxt "STR_CHARSTYLE" msgid "Character Style: " -msgstr "סגנון תו" +msgstr "סגנון תו: " #. d9BES #: sw/inc/strings.hrc:1334 @@ -9973,10 +9959,9 @@ #. etEEx #: sw/inc/strings.hrc:1410 -#, fuzzy msgctxt "STR_SIGNED_BY" msgid "Signed-by" -msgstr "נחתם על ידי " +msgstr "נחתם על ידי" #. BK7ub #: sw/inc/strings.hrc:1411 @@ -10189,31 +10174,27 @@ #. YABTx #: sw/inc/utlui.hrc:41 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Replace 1st... with 1^st..." -msgstr "החלפת 1st... ב ‎1^st...‏" +msgstr "החלפת 1st… ב־‎1^st…" #. ebBjY #: sw/inc/utlui.hrc:42 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Combine single line paragraphs" -msgstr "איחוד פסקאות בעלות שורה אחת" +msgstr "איחוד פסקאות של שורה אחת" #. Gtaxa #: sw/inc/utlui.hrc:43 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Set \"Text body\" Style" -msgstr "קביעת סגנון ‏‪\"Text body\"‬‏‏" +msgstr "הגדרת הסגנון „גוף הטקסט”" #. P8xFp #: sw/inc/utlui.hrc:44 sw/inc/utlui.hrc:46 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Set \"Text body indent\" Style" -msgstr "קביעת סגנון ‏‪\"Text body indent\"‬‏‏" +msgstr "הגדרת הסגנון „הזחת גוף טקסט”" #. UUEwQ #: sw/inc/utlui.hrc:45 @@ -10224,10 +10205,9 @@ #. qv2KD #: sw/inc/utlui.hrc:47 -#, fuzzy msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Set \"Heading $(ARG1)\" Style" -msgstr "קביעת סגנון ‏‪\"Heading ‏‪$(ARG1)‬‏\"‬‏‏" +msgstr "הגדרת הסגנון „כותרת $(ARG1)”" #. orFXE #: sw/inc/utlui.hrc:48 @@ -11622,7 +11602,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:261 msgctxt "businessdatapage|eastnameft" msgid "Company 2nd line:" -msgstr "" +msgstr "שורה שנייה של חברה" #. EFGLj #: sw/uiconfig/swriter/ui/businessdatapage.ui:286 @@ -12619,133 +12599,123 @@ #. L2Vr5 #: sw/uiconfig/swriter/ui/conditionpage.ui:233 -#, fuzzy msgctxt "conditionpage|filter" msgid " 1st Outline Level" -msgstr "רמת מתאר חמישית" +msgstr " רמת מתאר ראשונה" #. GTJPN #: sw/uiconfig/swriter/ui/conditionpage.ui:234 -#, fuzzy msgctxt "conditionpage|filter" msgid " 2nd Outline Level" -msgstr "רמת מתאר שניה" +msgstr " רמת מתאר שנייה" #. VKBoL #: sw/uiconfig/swriter/ui/conditionpage.ui:235 -#, fuzzy msgctxt "conditionpage|filter" msgid " 3rd Outline Level" -msgstr "רמת מתאר שלישית" +msgstr " רמת מתאר שלישית" #. a9TaD #: sw/uiconfig/swriter/ui/conditionpage.ui:236 -#, fuzzy msgctxt "conditionpage|filter" msgid " 4th Outline Level" -msgstr "רמת מתאר חמישית" +msgstr " רמת מתאר רביעית" #. dXE2C #: sw/uiconfig/swriter/ui/conditionpage.ui:237 -#, fuzzy msgctxt "conditionpage|filter" msgid " 5th Outline Level" -msgstr "רמת מתאר חמישית" +msgstr " רמת מתאר חמישית" #. hCaZr #: sw/uiconfig/swriter/ui/conditionpage.ui:238 -#, fuzzy msgctxt "conditionpage|filter" msgid " 6th Outline Level" -msgstr "רמת מתאר חמישית" +msgstr " רמת מתאר שישית" #. eY5Fy #: sw/uiconfig/swriter/ui/conditionpage.ui:239 -#, fuzzy msgctxt "conditionpage|filter" msgid " 7th Outline Level" -msgstr "רמת מתאר חמישית" +msgstr " רמת מתאר שביעית" #. KbZgs #: sw/uiconfig/swriter/ui/conditionpage.ui:240 -#, fuzzy msgctxt "conditionpage|filter" msgid " 8th Outline Level" -msgstr "רמת מתאר חמישית" +msgstr " רמת מתאר שמינית" #. L5C8x #: sw/uiconfig/swriter/ui/conditionpage.ui:241 -#, fuzzy msgctxt "conditionpage|filter" msgid " 9th Outline Level" -msgstr "רמת מתאר חמישית" +msgstr " רמת מתאר תשיעית" #. xNPpQ #: sw/uiconfig/swriter/ui/conditionpage.ui:242 -#, fuzzy msgctxt "conditionpage|filter" msgid "10th Outline Level" -msgstr "רמת מתאר חמישית" +msgstr "רמת מתאר עשירית" #. tFzDD #: sw/uiconfig/swriter/ui/conditionpage.ui:243 msgctxt "conditionpage|filter" msgid " 1st List Level" -msgstr "" +msgstr " רמת רשימה ראשונה" #. sGSZA #: sw/uiconfig/swriter/ui/conditionpage.ui:244 msgctxt "conditionpage|filter" msgid " 2nd List Level" -msgstr "" +msgstr " רמת רשימה שנייה" #. FGGC4 #: sw/uiconfig/swriter/ui/conditionpage.ui:245 msgctxt "conditionpage|filter" msgid " 3rd List Level" -msgstr "" +msgstr " רמת רשימה שלישית" #. kne44 #: sw/uiconfig/swriter/ui/conditionpage.ui:246 msgctxt "conditionpage|filter" msgid " 4th List Level" -msgstr "" +msgstr " רמת רשימה רביעית" #. Wjkzx #: sw/uiconfig/swriter/ui/conditionpage.ui:247 msgctxt "conditionpage|filter" msgid " 5th List Level" -msgstr "" +msgstr " רמת רשימה חמישית" #. R7zrU #: sw/uiconfig/swriter/ui/conditionpage.ui:248 msgctxt "conditionpage|filter" msgid " 6th List Level" -msgstr "" +msgstr " רמת רשימה שישית" #. A4QuR #: sw/uiconfig/swriter/ui/conditionpage.ui:249 msgctxt "conditionpage|filter" msgid " 7th List Level" -msgstr "" +msgstr " רמת רשימה שביעית" #. RiFQb #: sw/uiconfig/swriter/ui/conditionpage.ui:250 msgctxt "conditionpage|filter" msgid " 8th List Level" -msgstr "" +msgstr " רמת רשימה שמינית" #. AoCPE #: sw/uiconfig/swriter/ui/conditionpage.ui:251 msgctxt "conditionpage|filter" msgid " 9th List Level" -msgstr "" +msgstr " רמת רשימה תשיעית" #. gLAFZ #: sw/uiconfig/swriter/ui/conditionpage.ui:252 msgctxt "conditionpage|filter" msgid "10th List Level" -msgstr "" +msgstr "רמת רשימה עשירית" #. AniaD #: sw/uiconfig/swriter/ui/conditionpage.ui:273 @@ -12757,13 +12727,13 @@ #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:26 msgctxt "contentcontroldlg|ContentControlDialog" msgid "Content Control Properties" -msgstr "" +msgstr "מאפייני בקרת תוכן" #. bHXzy #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:102 msgctxt "contentcontroldlg|showing_place_holder" msgid "Content is placeholder text" -msgstr "" +msgstr "התוכן הוא טקסט ממלא מקום" #. V44Fw #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:137 @@ -12781,73 +12751,73 @@ #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:161 msgctxt "contentcontroldlg|btncheckboxchecked" msgid "Select..." -msgstr "" +msgstr "בחירה…" #. SP7XX #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:173 msgctxt "contentcontroldlg|btncheckboxunchecked" msgid "Select..." -msgstr "" +msgstr "בחירה…" #. exBjP #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:209 msgctxt "contentcontroldlg|lblcheckbox" msgid "Check Box:" -msgstr "" +msgstr "תיבת סימון:" #. 79pkP #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:255 msgctxt "contentcontroldlg|displayname" msgid "Display Name" -msgstr "" +msgstr "שם תצוגה" #. qy8VG #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:269 msgctxt "contentcontroldlg|value" msgid "Value" -msgstr "" +msgstr "ערך" #. DmLzh #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:287 msgctxt "contentcontordlg|listitems" msgid "List Items:" -msgstr "" +msgstr "פריטי רשימה:" #. VPCgV #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:309 msgctxt "contentcontordlg|add" msgid "Add" -msgstr "" +msgstr "הוספה" #. 9Dc6k #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:323 msgctxt "contentcontordlg|modify" msgid "Modify" -msgstr "" +msgstr "עריכה" #. rpNb6 #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:338 msgctxt "contentcontordlg|remove" msgid "Remove" -msgstr "" +msgstr "הסרה" #. UDHfE #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:353 msgctxt "contentcontordlg|moveup" msgid "Move Up" -msgstr "" +msgstr "העלאה למעלה" #. 6BRRB #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:368 msgctxt "contentcontordlg|movedown" msgid "Move Down" -msgstr "" +msgstr "הורדה למטה" #. hCPKV #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:453 msgctxt "contentcontroldlg|lbldate" msgid "Date Format:" -msgstr "" +msgstr "תבנית תאריך:" #. 8yZAP #: sw/uiconfig/swriter/ui/contentcontrollistitemdlg.ui:8 @@ -15270,7 +15240,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:126 msgctxt "footnoteareapage|extended_tip|spacetotext" msgid "Enter the amount of space to leave between the bottom page margin and the first line of text in the footnote area." -msgstr "" +msgstr "יש למלא את גודל המרווח שבין שולי העמוד התחתונים ובין שורת הטקסט הראשונה שבאזור הערות השוליים." #. BEuKg #: sw/uiconfig/swriter/ui/footnoteareapage.ui:149 @@ -15664,7 +15634,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:245 msgctxt "footnotesendnotestabpage|extended_tip|ftnntattextend" msgid "Adds footnotes at the end of the section. If the section spans more than one page, the footnotes are added to the bottom of the page on which the footnote anchors appear." -msgstr "" +msgstr "הוספת הערות שוליים בסוף המקטע. אם המקטע מתפרס על יותר מעמוד אחד, הערות השוליים תופענה בתחתית העמוד שעוגני הערות השוליים מופיעים בו." #. J8Vb4 #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:260 @@ -17108,7 +17078,6 @@ #. mDjkK #: sw/uiconfig/swriter/ui/inputwinmenu.ui:139 -#, fuzzy msgctxt "inputwinmenu|geq" msgid "Greater Than or Equal" msgstr "גדול או שווה ל־" @@ -17117,11 +17086,10 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:143 msgctxt "inputwinmenu|extended_tip|geq" msgid "Tests for values greater than or equal to a specified value" -msgstr "" +msgstr "בודקת אם ערך גודל או שווה לערך מסוים" #. FBmuE #: sw/uiconfig/swriter/ui/inputwinmenu.ui:152 -#, fuzzy msgctxt "inputwinmenu|l" msgid "Less" msgstr "פחות" @@ -17130,80 +17098,76 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:156 msgctxt "inputwinmenu|extended_tip|l" msgid "Tests for values less than a specified value" -msgstr "" +msgstr "בודקת אם ערכים קטנים מערך מסוים" #. WUGeb #: sw/uiconfig/swriter/ui/inputwinmenu.ui:165 msgctxt "inputwinmenu|g" msgid "Greater" -msgstr "" +msgstr "יותר גדול" #. 5Fdnk #: sw/uiconfig/swriter/ui/inputwinmenu.ui:169 msgctxt "inputwinmenu|extended_tip|g" msgid "Tests for values greater than a specified value" -msgstr "" +msgstr "בודקת אם הערך יותר גדול מערך מסוים" #. ufZCg #: sw/uiconfig/swriter/ui/inputwinmenu.ui:184 -#, fuzzy msgctxt "inputwinmenu|or" msgid "Boolean Or" -msgstr "OR בוליאני" +msgstr "שער או בוליאני" #. mYhii #: sw/uiconfig/swriter/ui/inputwinmenu.ui:188 msgctxt "inputwinmenu|extended_tip|or" msgid "Tests for values matching the Boolean OR" -msgstr "" +msgstr "בודקת אם הערכים תואמים לשער או בוליאני" #. kqdjD #: sw/uiconfig/swriter/ui/inputwinmenu.ui:197 msgctxt "inputwinmenu|xor" msgid "Boolean Xor" -msgstr "" +msgstr "שער או בררני בוליאני" #. CEcTo #: sw/uiconfig/swriter/ui/inputwinmenu.ui:201 msgctxt "inputwinmenu|extended_tip|xor" msgid "Tests for values matching the Boolean exclusive OR" -msgstr "" +msgstr "בודקת אם הערכים תואמים לשער או בררני בוליאני" #. eXMSG #: sw/uiconfig/swriter/ui/inputwinmenu.ui:210 -#, fuzzy msgctxt "inputwinmenu|and" msgid "Boolean And" -msgstr "‏‪AND‬‏ בוליאני" +msgstr "שער וגם בוליאני" #. DfomB #: sw/uiconfig/swriter/ui/inputwinmenu.ui:214 msgctxt "inputwinmenu|extended_tip|and" msgid "Tests for values matching the Boolean AND" -msgstr "" +msgstr "בודקת אם הערכים תואמים לשער וגם בוליאני" #. 6fFN5 #: sw/uiconfig/swriter/ui/inputwinmenu.ui:223 -#, fuzzy msgctxt "inputwinmenu|not" msgid "Boolean Not" -msgstr "NOT בוליאני" +msgstr "שער לא בוליאני" #. 2hhtQ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:227 msgctxt "inputwinmenu|extended_tip|not" msgid "Tests for values matching the Boolean NOT" -msgstr "" +msgstr "בודקת אם הערכים תואמים לשער לא בוליאני" #. 8EE7z #: sw/uiconfig/swriter/ui/inputwinmenu.ui:236 msgctxt "inputwinmenu|extended_tip|operators" msgid "You can insert various operators in your formula." -msgstr "" +msgstr "אפשר להוסיף מגוון פעולות בנוסחה שלך." #. F26qr #: sw/uiconfig/swriter/ui/inputwinmenu.ui:245 -#, fuzzy msgctxt "inputwinmenu|statistics" msgid "Statistical Functions" msgstr "פונקציות סטטיסטיות" @@ -17218,7 +17182,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:259 msgctxt "inputwinmenu|extended_tip|mean" msgid "Calculates the arithmetic mean of the values in an area or a list." -msgstr "" +msgstr "מחשבת את הממוצע החשבוני של ערכים באזור או ברשימה." #. nSYdA #: sw/uiconfig/swriter/ui/inputwinmenu.ui:268 @@ -17230,7 +17194,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:272 msgctxt "inputwinmenu|extended_tip|min" msgid "Calculates the minimum value in an area or a list." -msgstr "" +msgstr "מחשבת את הערך המזערי באזור או ברשימה." #. nEGnR #: sw/uiconfig/swriter/ui/inputwinmenu.ui:281 @@ -17242,25 +17206,25 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:285 msgctxt "inputwinmenu|extended_tip|max" msgid "Calculates the maximum value in an area or a list." -msgstr "" +msgstr "מחשבת את הערך המרבי באזור או רשימה." #. PRJyk #: sw/uiconfig/swriter/ui/inputwinmenu.ui:294 msgctxt "inputwinmenu|count" msgid "Count" -msgstr "" +msgstr "ספירה" #. 3VBfQ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:302 msgctxt "inputwinmenu|product" msgid "Product" -msgstr "" +msgstr "מכפלה" #. DRxEW #: sw/uiconfig/swriter/ui/inputwinmenu.ui:310 msgctxt "inputwinmenu|extended_tip|statistics" msgid "You can choose from the following statistical functions:" -msgstr "" +msgstr "אפשר לבחור מבין הפונקציות הסטטיסטיות הבאות:" #. vEC7B #: sw/uiconfig/swriter/ui/inputwinmenu.ui:319 @@ -17270,16 +17234,15 @@ #. CGyzt #: sw/uiconfig/swriter/ui/inputwinmenu.ui:329 -#, fuzzy msgctxt "inputwinmenu|sin" msgid "Sine" -msgstr "שורה" +msgstr "סינוס" #. W6GYs #: sw/uiconfig/swriter/ui/inputwinmenu.ui:333 msgctxt "inputwinmenu|extended_tip|sin" msgid "Calculates the sine in radians" -msgstr "" +msgstr "מחשבת את הסינוס ברדיאנים" #. EGGzK #: sw/uiconfig/swriter/ui/inputwinmenu.ui:342 @@ -17291,19 +17254,19 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:346 msgctxt "inputwinmenu|extended_tip|cos" msgid "Calculates the cosine in radians." -msgstr "" +msgstr "מחשבת את הקוסינוס ברדיאנים." #. nbqKZ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:355 msgctxt "inputwinmenu|tag" msgid "Tangent" -msgstr "טנגנט" +msgstr "טנגנס" #. LNEBV #: sw/uiconfig/swriter/ui/inputwinmenu.ui:359 msgctxt "inputwinmenu|extended_tip|tag" msgid "Calculates the tangent in radians." -msgstr "" +msgstr "מחשבת את הטנגנס ברדיאנים." #. PUrKG #: sw/uiconfig/swriter/ui/inputwinmenu.ui:368 @@ -17315,7 +17278,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:372 msgctxt "inputwinmenu|extended_tip|asin" msgid "Calculates the arc sine in radians." -msgstr "" +msgstr "מחשבת את הסינוס ההופכי ברדיאנים." #. 4VKJB #: sw/uiconfig/swriter/ui/inputwinmenu.ui:381 @@ -17327,7 +17290,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:385 msgctxt "inputwinmenu|extended_tip|acos" msgid "Calculates the arc cosine in radians." -msgstr "" +msgstr "מחשבת את הקוסינוס ההופכי ברדיאנים." #. QB8fF #: sw/uiconfig/swriter/ui/inputwinmenu.ui:394 @@ -17339,31 +17302,31 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:398 msgctxt "inputwinmenu|extended_tip|atan" msgid "Calculates the arc tangent in radians." -msgstr "" +msgstr "מחשבת את הטנגנס ההופכי ברדיאנים." #. mQRGG #: sw/uiconfig/swriter/ui/inputwinmenu.ui:413 msgctxt "inputwinmenu|abs" msgid "Abs" -msgstr "" +msgstr "ערך מוחלט" #. wmZwk #: sw/uiconfig/swriter/ui/inputwinmenu.ui:421 msgctxt "inputwinmenu|sign" msgid "Sign" -msgstr "" +msgstr "סימן" #. 9t366 #: sw/uiconfig/swriter/ui/inputwinmenu.ui:429 msgctxt "inputwinmenu|int" msgid "Int" -msgstr "" +msgstr "מספר שלם וחיובי" #. ytZBB #: sw/uiconfig/swriter/ui/inputwinmenu.ui:437 msgctxt "inputwinmenu|extended_tip|functions" msgid "You can choose from the following trigonometric functions:" -msgstr "" +msgstr "אפשר לבחור מבין הפונקציות הטריגונומטריות הבאות:" #. nnGmr #: sw/uiconfig/swriter/ui/insertautotextdialog.ui:16 @@ -17375,7 +17338,7 @@ #: sw/uiconfig/swriter/ui/insertautotextdialog.ui:139 msgctxt "insertautotextdialog|label1" msgid "Autotexts for Shortcut " -msgstr "" +msgstr "טקסט אוטומטי לקיצור הדרך " #. dpXKq #: sw/uiconfig/swriter/ui/insertbookmark.ui:24 @@ -17387,7 +17350,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:107 msgctxt "insertbookmark|extended_tip|name" msgid "Type the name of the bookmark that you want to create. Then press Insert." -msgstr "" +msgstr "נא להקליד את שם הסימנייה שברצונך ליצור. ואז ללחוץ על הוספה." #. zocpL #: sw/uiconfig/swriter/ui/insertbookmark.ui:118 @@ -17399,61 +17362,61 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:136 msgctxt "insertbookmark|name" msgid "Name:" -msgstr "" +msgstr "שם:" #. LyrCp #: sw/uiconfig/swriter/ui/insertbookmark.ui:147 msgctxt "insertbookmark|hide" msgid "H_ide" -msgstr "" +msgstr "ה_סתרה" #. FCkPS #: sw/uiconfig/swriter/ui/insertbookmark.ui:166 msgctxt "insertbookmark|condlabel" msgid "_Condition:" -msgstr "" +msgstr "_תנאי:" #. XbAhB #: sw/uiconfig/swriter/ui/insertbookmark.ui:239 msgctxt "insertbookmark|page" msgid "Page" -msgstr "" +msgstr "עמוד" #. gmKKz #: sw/uiconfig/swriter/ui/insertbookmark.ui:253 msgctxt "insertbookmark|name" msgid "Name" -msgstr "" +msgstr "שם" #. fXQTX #: sw/uiconfig/swriter/ui/insertbookmark.ui:267 msgctxt "insertbookmark|text" msgid "Text" -msgstr "" +msgstr "טקסט" #. ha65m #: sw/uiconfig/swriter/ui/insertbookmark.ui:281 msgctxt "insertbookmark|hidden" msgid "Hidden" -msgstr "" +msgstr "מוסתרת" #. M7eFG #: sw/uiconfig/swriter/ui/insertbookmark.ui:295 msgctxt "insertbookmark|condition" msgid "Condition" -msgstr "" +msgstr "תנאי" #. ACcov #: sw/uiconfig/swriter/ui/insertbookmark.ui:313 msgctxt "insertbookmark|bookmarks" msgid "_Bookmarks:" -msgstr "" +msgstr "_סימניות:" #. aZFEd #: sw/uiconfig/swriter/ui/insertbookmark.ui:335 msgctxt "insertbookmark|goto" msgid "Go to" -msgstr "" +msgstr "מעבר אל" #. AfRGE #: sw/uiconfig/swriter/ui/insertbookmark.ui:349 @@ -17465,7 +17428,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:355 msgctxt "insertbookmark|extended_tip|delete" msgid "To delete a bookmark, select the bookmark and click the Delete button. No confirmation dialog will follow." -msgstr "" +msgstr "כדי למחוק סימנייה, יש לבחור אותה וללחוץ על כפתור המחיקה. לא תופיע חלונית אישור לאחר מכן." #. hvWfd #: sw/uiconfig/swriter/ui/insertbookmark.ui:368 @@ -17477,7 +17440,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:395 msgctxt "insertbookmark|extended_tip|InsertBookmarkDialog" msgid "Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time." -msgstr "" +msgstr "מוסיפה סימנייה במיקום הסמן. לאחר מכן ניתן להשתמש בנווט כדי לקפוץ במהירות למקום המסומן בהמשך." #. ydP4q #: sw/uiconfig/swriter/ui/insertbreak.ui:14 @@ -17495,37 +17458,37 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:107 msgctxt "insertbreak|linerb-atkobject" msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph." -msgstr "" +msgstr "מסיים את השורה הנוכחית ומעבר את הטקסט שנמצא אחרי הסמן (מימין או משמאל) לשורה הבאה, מבלי ליצור פסקה חדשה." #. 88jq6 #: sw/uiconfig/swriter/ui/insertbreak.ui:122 msgctxt "insertbreak|clearft" msgid "Restart Location:" -msgstr "" +msgstr "מקום התחלה מחדש:" #. fJEqu #: sw/uiconfig/swriter/ui/insertbreak.ui:140 msgctxt "insertbreak|clearlb0" msgid "[None]" -msgstr "" +msgstr "[אין]" #. dGBC7 #: sw/uiconfig/swriter/ui/insertbreak.ui:141 msgctxt "insertbreak|clearlb1" msgid "Left" -msgstr "" +msgstr "שמאל" #. HbijZ #: sw/uiconfig/swriter/ui/insertbreak.ui:142 msgctxt "insertbreak|clearlb2" msgid "Right" -msgstr "" +msgstr "ימין" #. AAg7H #: sw/uiconfig/swriter/ui/insertbreak.ui:143 msgctxt "insertbreak|clearlb3" msgid "Next Full Line" -msgstr "" +msgstr "השורה המלאה הבאה" #. gqCuB #: sw/uiconfig/swriter/ui/insertbreak.ui:154 @@ -17537,7 +17500,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:163 msgctxt "insertbreak|columnrb-atkobject" msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next column. A manual column break is indicated by a nonprinting border at the top of the new column." -msgstr "" +msgstr "מוסיף מעבר עמודה ידני (בפריסת ריבוי עמודות) ומעביר את הטקסט שנמצא אחרי הסמן (מימין או משמאל) לתחילת העמודה הבאה. מעבר עמודה ידני מסומן בגבול שלא מודפס בראש העמודה החדשה." #. 9GAAp #: sw/uiconfig/swriter/ui/insertbreak.ui:175 @@ -17555,7 +17518,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:199 msgctxt "insertbreak|styleft" msgid "Page Style:" -msgstr "" +msgstr "סגנון עמוד:" #. BWnND #: sw/uiconfig/swriter/ui/insertbreak.ui:216 @@ -17567,7 +17530,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:220 msgctxt "insertbreak|stylelb-atkobject" msgid "Select the page style for the page that follows the manual page break." -msgstr "" +msgstr "בוחר את סגנון העמוד לעמוד שאחרי מעבר העמוד הידני." #. LbNq3 #: sw/uiconfig/swriter/ui/insertbreak.ui:232 @@ -17724,13 +17687,13 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:57 msgctxt "insertdbcolumnsdialog|InsertDbColumnsDialog" msgid "Insert Database Columns" -msgstr "" +msgstr "הוספת עמודות מסד נתונים" #. SLAeD #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:143 msgctxt "insertdbcolumnsdialog|label1" msgid "Insert data as:" -msgstr "" +msgstr "הוספת נתונים בתור:" #. fahdL #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:162 @@ -17743,7 +17706,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:171 msgctxt "insertdbcolumnsdialog|extended_tip|astable" msgid "Inserts data selected from the data source browser into the document as a table." -msgstr "" +msgstr "מוסיף את הנתונים הנבחרים מדפדפן מקור הנתונים למסמך כטבלה." #. 8JSFQ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:182 @@ -17756,7 +17719,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:191 msgctxt "insertdbcolumnsdialog|extended_tip|asfields" msgid "Inserts data selected from the data source browser into the document as fields." -msgstr "" +msgstr "מוסיף את הנתונים הנבחרים מדפדפן מקור הנתונים למסמך כשדות." #. vzNne #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:202 @@ -17769,13 +17732,13 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:211 msgctxt "insertdbcolumnsdialog|extended_tip|astext" msgid "Inserts data selected from the data source browser into the document as text." -msgstr "" +msgstr "מוסיף את הנתונים הנבחרים מדפדפן מקור הנתונים למסמך כטקסט." #. mbu6k #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:254 msgctxt "insertdbcolumnsdialog|label4" msgid "Database _columns" -msgstr "" +msgstr "_עמודות מסד נתונים" #. q5Z9N #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:268 @@ -17944,7 +17907,7 @@ #: sw/uiconfig/swriter/ui/insertfootnote.ui:18 msgctxt "insertfootnote|InsertFootnoteDialog" msgid "Insert Footnote/Endnote" -msgstr "הכנסת הערת שוליים/סיום" +msgstr "הוספת הערת שוליים/סיום" #. PLsmF #: sw/uiconfig/swriter/ui/insertfootnote.ui:43 @@ -17956,7 +17919,7 @@ #: sw/uiconfig/swriter/ui/insertfootnote.ui:48 msgctxt "insertfootnote|extended_tip|prev" msgid "Moves to the previous footnote or endnote anchor in the document." -msgstr "" +msgstr "מעבר אל העוגן של הערת השוליים או הסיום הקודמת במסמך." #. LhiEr #: sw/uiconfig/swriter/ui/insertfootnote.ui:61 @@ -17968,7 +17931,7 @@ #: sw/uiconfig/swriter/ui/insertfootnote.ui:66 msgctxt "insertfootnote|extended_tip|next" msgid "Moves to the next footnote or endnote anchor in the document." -msgstr "" +msgstr "מעבר אל העוגן של הערת השוליים או הסיום הבאה במסמך." #. HjJZd #: sw/uiconfig/swriter/ui/insertfootnote.ui:159 @@ -18034,7 +17997,7 @@ #: sw/uiconfig/swriter/ui/insertfootnote.ui:292 msgctxt "insertfootnote|extended_tip|footnote" msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page." -msgstr "" +msgstr "הוספת עוגן הערת שוליים אל מקום הסמן במסמך והוספת הערת שוליים בתחתית הדף." #. bQVDE #: sw/uiconfig/swriter/ui/insertfootnote.ui:304 @@ -18046,7 +18009,7 @@ #: sw/uiconfig/swriter/ui/insertfootnote.ui:314 msgctxt "insertfootnote|extended_tip|endnote" msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document." -msgstr "" +msgstr "הוספת עוגן הערת סיום אל מקום הסמן הנוכחי במסמך והוספת הערת סיום בסוף המסמך." #. F9Ef8 #: sw/uiconfig/swriter/ui/insertfootnote.ui:330 @@ -18058,7 +18021,7 @@ #: sw/uiconfig/swriter/ui/insertfootnote.ui:362 msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog" msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position." -msgstr "" +msgstr "הוספת הערת שוליים או סיום למסמך. עוגן ההערה נוסף למקום הנוכחי של הסמן." #. ApbYD #: sw/uiconfig/swriter/ui/insertscript.ui:18 @@ -18434,10 +18397,9 @@ #. 5PGWt #: sw/uiconfig/swriter/ui/labelformatpage.ui:106 -#, fuzzy msgctxt "labelformatpage|label6" msgid "_Top margin:" -msgstr "שוליים עליונים" +msgstr "שוליים _עליונים:" #. zPFR4 #: sw/uiconfig/swriter/ui/labelformatpage.ui:120 @@ -18447,24 +18409,21 @@ #. L958B #: sw/uiconfig/swriter/ui/labelformatpage.ui:134 -#, fuzzy msgctxt "labelformatpage|label8" msgid "R_ows:" -msgstr "שורות" +msgstr "_שורות:" #. UhqFw #: sw/uiconfig/swriter/ui/labelformatpage.ui:148 -#, fuzzy msgctxt "labelformatpage|label9" msgid "P_age width:" -msgstr "רוחב עמוד" +msgstr "_רוחב עמוד:" #. nG5uU #: sw/uiconfig/swriter/ui/labelformatpage.ui:162 -#, fuzzy msgctxt "labelformatpage|label10" msgid "Pa_ge height:" -msgstr "גובה העמוד" +msgstr "_גובה עמוד:" #. DKByW #: sw/uiconfig/swriter/ui/labelformatpage.ui:174 @@ -18476,7 +18435,7 @@ #: sw/uiconfig/swriter/ui/labelformatpage.ui:182 msgctxt "labelformatpage|extended_tip|save" msgid "Saves the current label or business card format." -msgstr "" +msgstr "שומר את תבנית התווית או כרטיס הביקור הנוכחית." #. CSycD #: sw/uiconfig/swriter/ui/labelformatpage.ui:201 @@ -18842,7 +18801,7 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:566 msgctxt "linenumbering|count" msgid "Count" -msgstr "Count" +msgstr "ספירה" #. 9Pyhz #: sw/uiconfig/swriter/ui/mailconfigpage.ui:45 @@ -19176,7 +19135,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:661 msgctxt "mailmerge|swriter" msgid "%PRODUCTNAME Writer" -msgstr "%PRODUCTNAME Writer" +msgstr "%PRODUCTNAME Writer‎" #. CnEBu #: sw/uiconfig/swriter/ui/mailmerge.ui:676 @@ -19623,10 +19582,9 @@ #. ZGLiG #: sw/uiconfig/swriter/ui/mmcreatingdialog.ui:68 -#, fuzzy msgctxt "mmcreatingdialog|label2" msgid "Progress:" -msgstr "התקדמות: " +msgstr "התקדמות:" #. BJbG4 #: sw/uiconfig/swriter/ui/mmcreatingdialog.ui:82 @@ -22178,7 +22136,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:34 msgctxt "notebookbar_groups|imagestyledefault" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. 6WNhQ #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:42 @@ -22357,7 +22315,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:412 msgctxt "notebookbar_groups|tablestyledefault" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. Gjjky #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:420 @@ -23292,7 +23250,7 @@ #, fuzzy msgctxt "optfonttabpage|default_label" msgid "De_fault:" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. 9ArgF #: sw/uiconfig/swriter/ui/optfonttabpage.ui:75 @@ -23324,7 +23282,7 @@ #: sw/uiconfig/swriter/ui/optfonttabpage.ui:142 msgctxt "extended_tip|standardbox" msgid "Specifies the font to be used for the Default Paragraph Style." -msgstr "" +msgstr "מציין את הגופן לשימוש עבור סגנון פסקה כברירת מחדל." #. C8bAt #: sw/uiconfig/swriter/ui/optfonttabpage.ui:166 @@ -23391,7 +23349,7 @@ #, fuzzy msgctxt "optfonttabpage|standard" msgid "_Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. VezyG #: sw/uiconfig/swriter/ui/optfonttabpage.ui:415 @@ -24695,7 +24653,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:459 msgctxt "outlinepositionpage|standard" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. 8fEFG #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:466 @@ -25437,7 +25395,7 @@ #, fuzzy msgctxt "picturepage|FT_ANGLEPRESETS" msgid "Default _settings:" -msgstr "הגדרות בררת מחדל" +msgstr "הגדרות ברירת מחדל" #. HpCfF #: sw/uiconfig/swriter/ui/picturepage.ui:375 @@ -29471,10 +29429,9 @@ #. heqgT #: sw/uiconfig/swriter/ui/tocentriespage.ui:1160 -#, fuzzy msgctxt "tocentriespage|label13" msgid "Sort Keys" -msgstr "מפתח הסידור " +msgstr "מפתחות סידור" #. HjK7t #: sw/uiconfig/swriter/ui/tocentriespage.ui:1187 @@ -30060,13 +30017,13 @@ #: sw/uiconfig/swriter/ui/tocstylespage.ui:171 msgctxt "tocstylespage|default" msgid "_Default" -msgstr "_בררת מחדל" +msgstr "_ברירת מחדל" #. FW4Qu #: sw/uiconfig/swriter/ui/tocstylespage.ui:180 msgctxt "tocstylespage|extended_tip|default" msgid "Resets the formatting of the selected level to the \"Default\" paragraph style." -msgstr "" +msgstr "מאפס את עיצוב הרמה הנבחרת לסגנון הפסקה „ברירת מחדל”." #. Dz6ag #: sw/uiconfig/swriter/ui/tocstylespage.ui:191 @@ -30612,10 +30569,9 @@ #. NZJkB #: sw/uiconfig/swriter/ui/wrappage.ui:181 -#, fuzzy msgctxt "wrappage|parallel" msgid "_Parallel" -msgstr "מקבילי" +msgstr "מ_קבילי" #. t9xTQ #: sw/uiconfig/swriter/ui/wrappage.ui:194 @@ -30729,7 +30685,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:635 msgctxt "wrappage|extended_tip|anchoronly" msgid "Starts a new paragraph below the object after you press Enter." -msgstr "" +msgstr "מתחיל פסקה חדשה מתחת לעצם לאחר לחיצה על Enter." #. XDTDj #: sw/uiconfig/swriter/ui/wrappage.ui:646 @@ -30741,7 +30697,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:654 msgctxt "wrappage|extended_tip|transparent" msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type." -msgstr "" +msgstr "מעביר את העצם הנבחר לרקע. האפשרות הזאת זמינה רק אם בחרת את סוג הגלישה ‚מבעד’." #. GYAAU #: sw/uiconfig/swriter/ui/wrappage.ui:665 @@ -30753,7 +30709,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:673 msgctxt "wrappage|extended_tip|outline" msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames." -msgstr "" +msgstr "עוטף את העצם בטקסט. האפשרות הזאת זמינה דרך סוג גלישה או למסגרות." #. dcKxZ #: sw/uiconfig/swriter/ui/wrappage.ui:684 diff -Nru libreoffice-7.4.6/translations/source/he/swext/mediawiki/help.po libreoffice-7.4.7/translations/source/he/swext/mediawiki/help.po --- libreoffice-7.4.6/translations/source/he/swext/mediawiki/help.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/swext/mediawiki/help.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: 1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-10-27 20:07+0000\n" +"PO-Revision-Date: 2023-03-14 12:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565193282.000000\n" #. 7EFBE @@ -23,7 +23,7 @@ "02\n" "help_section.text" msgid "MediaWiki" -msgstr "MediaWiki" +msgstr "מדיה־ויקי" #. E2gyu #: help.tree @@ -32,7 +32,7 @@ "0224\n" "node.text" msgid "MediaWiki" -msgstr "MediaWiki" +msgstr "מדיה־ויקי" #. qUKTw #: wiki.xhp @@ -50,7 +50,7 @@ "bm_id3154408\n" "help.text" msgid "Wiki;Wiki PublisherWiki Publisherextensions;MediaWiki" -msgstr "Wiki;Wiki PublisherWiki Publisherהרחבות;MediaWiki" +msgstr "ויקי;מפרסם ויקימפרסם ויקיהרחבות;מדיה־ויקי" #. AQP9D #: wiki.xhp @@ -68,7 +68,7 @@ "par_id9647511\n" "help.text" msgid "By using the Wiki Publisher you can upload your current Writer text document to a MediaWiki server. After uploading, all wiki users can read your document on the wiki." -msgstr "באמצעות שימוש במפרסם הוויקי ניתן להעלות את מסמך הטקסט הנוכחי לשרת MediaWiki. לאחר ההעלאה, כל משתמשי הוויקי יוכלו לקרוא את המסמך שלך דרך הוויקי." +msgstr "באמצעות שימוש במפרסם הוויקי ניתן להעלות את מסמך הטקסט הנוכחי לשרת מדיה־ויקי. לאחר ההעלאה, כל משתמשי הוויקי יוכלו לקרוא את המסמך שלך דרך הוויקי." #. CJbT6 #: wiki.xhp @@ -77,7 +77,7 @@ "par_id6468703\n" "help.text" msgid "Choose File - Send - To MediaWiki to upload the current Writer document to a MediaWiki server." -msgstr "יש לבחור בקובץ - שליחה - ל-MediaWiki כדי להעלות את מסמך הטקסט הנוכחי לשרת MediaWiki." +msgstr "יש לבחור בקובץ - שליחה - למדיה־ויקי כדי להעלות את מסמך הטקסט הנוכחי לשרת מדיה־ויקי." #. GWuG5 #: wiki.xhp @@ -104,7 +104,7 @@ "par_id7387615\n" "help.text" msgid "A wiki account on a supported MediaWiki server" -msgstr "חשבון ויקי בשרת MediaWiki נתמך" +msgstr "חשבון ויקי בשרת מדיה־ויקי נתמך" #. XCFLj #: wiki.xhp @@ -158,7 +158,7 @@ "par_id9533677\n" "help.text" msgid "Open a Writer document, and choose Tools - Options - Internet - MediaWiki." -msgstr "יש לפתוח מסמך Writer ולבחור בכלים - אפשרויות - אינטרנט - MediaWiki." +msgstr "יש לפתוח מסמך Writer ולבחור בכלים - אפשרויות - אינטרנט - מדיה־ויקי." #. fGcyZ #: wiki.xhp @@ -176,7 +176,7 @@ "par_id6962187\n" "help.text" msgid "In the MediaWiki dialog, enter the account information for the wiki." -msgstr "בחלונית MediaWiki יש להקליד את פרטי החשבון בוויקי." +msgstr "בחלונית מדיה־ויקי יש להקליד את פרטי החשבון בוויקי." #. L5NjG #: wiki.xhp @@ -266,7 +266,7 @@ "par_id4566484\n" "help.text" msgid "Choose File - Send - To MediaWiki." -msgstr "יש לבחור בקובץ - שליחה - ל־MediaWiki." +msgstr "יש לבחור בקובץ - שליחה - למדיה־ויקי." #. 6jREj #: wiki.xhp @@ -275,7 +275,7 @@ "par_id228278\n" "help.text" msgid "In the Send to MediaWiki dialog, specify the settings for your entry." -msgstr "בחלונית שליחה ל־MediaWiki עליך לציין את הגדרות הרשומה שלך." +msgstr "בחלונית שליחה למדיה־ויקי יש לציין את הגדרות הרשומה שלך." #. i7MPF #: wiki.xhp @@ -284,7 +284,7 @@ "par_id2564165\n" "help.text" msgid "MediaWiki server: Select the wiki." -msgstr "שרת MediaWiki: בחירת הוויקי." +msgstr "שרת מדיה־ויקי: בחירת הוויקי." #. Vghfw #: wiki.xhp @@ -338,7 +338,7 @@ "tit\n" "help.text" msgid "MediaWiki" -msgstr "MediaWiki" +msgstr "מדיה־ויקי" #. MQ3NB #: wikiaccount.xhp @@ -347,7 +347,7 @@ "hd_id960722\n" "help.text" msgid "MediaWiki" -msgstr "MediaWiki" +msgstr "מדיה־ויקי" #. kXBwS #: wikiaccount.xhp @@ -356,7 +356,7 @@ "par_id4571672\n" "help.text" msgid "Use the MediaWiki dialog to add or edit your MediaWiki account settings." -msgstr "יש להשתמש בחלונית MediaWiki כדי להוסיף או לערוך את הגדרות חשבון ה־MediaWiki שלך." +msgstr "יש להשתמש בחלונית מדיה־ויקי כדי להוסיף או לערוך את הגדרות חשבון המדיה־ויקי שלך." #. F32QW #: wikiaccount.xhp @@ -365,7 +365,7 @@ "par_id7631458\n" "help.text" msgid "Enter the URL of a MediaWiki server, starting with \"https://\"." -msgstr "נא למלא את כתובת שרת ה־MediaWiki, אמורה להתחיל ב־„https://‎”.‏" +msgstr "נא למלא את כתובת שרת המדיה־ויקי, אמורה להתחיל ב־„https://‎”.‏" #. PiGDX #: wikiaccount.xhp @@ -374,7 +374,7 @@ "par_id7862483\n" "help.text" msgid "Enter your user name on the MediaWiki server. Leave empty for anonymous access." -msgstr "יש להכניס את שם המשתמש בשרת ה־MediaWiki. ניתן להשאיר ריק עבור גישה אנונימית." +msgstr "יש להכניס את שם המשתמש בשרת המדיה־ויקי. ניתן להשאיר ריק כדי לגשת בעילום שם." #. FSKfy #: wikiaccount.xhp @@ -383,7 +383,7 @@ "par_id1113010\n" "help.text" msgid "Enter your password on the MediaWiki server. Leave empty for anonymous access." -msgstr "יש להכניס את הססמה בשרת ה־MediaWiki. ניתן להשאיר ריק עבור גישה אנונימית." +msgstr "יש להכניס את הססמה בשרת המדיה־ויקי. ניתן להשאיר ריק כדי לגשת בעילום שם." #. zLCx7 #: wikiaccount.xhp @@ -428,7 +428,7 @@ "tit\n" "help.text" msgid "MediaWiki Formats" -msgstr "תבניות MediaWiki" +msgstr "תבניות מדיה־ויקי" #. C6oUL #: wikiformats.xhp @@ -437,7 +437,7 @@ "hd_id3743095\n" "help.text" msgid "MediaWiki Formats" -msgstr "תבניות MediaWiki" +msgstr "תבניות מדיה־ויקי" #. sKvY6 #: wikiformats.xhp @@ -455,7 +455,7 @@ "par_id5630664\n" "help.text" msgid "The OpenDocument format used by Writer and the MediaWiki format are quite different. Only a subset of all features can be transformed from one format to the other." -msgstr "תבנית ה־OpenDocument שמשמשת את Writer והתבנית של MediaWiki די שונות. רק חלק מהיכולות משתקפות בין תבנית אחת לאחרת." +msgstr "תבנית ה־OpenDocument שמשמשת את Writer והתבנית של מדיה־ויקי די שונות. רק חלק מהיכולות משתקפות בין תבנית אחת לאחרת." #. R74Ai #: wikiformats.xhp @@ -680,7 +680,7 @@ "tit\n" "help.text" msgid "Send to MediaWiki" -msgstr "שליחה ל־MediaWiki" +msgstr "שליחה למדיה־ויקי" #. Uomdh #: wikisend.xhp @@ -689,7 +689,7 @@ "hd_id108340\n" "help.text" msgid "Send to MediaWiki" -msgstr "שליחה ל־MediaWiki" +msgstr "שליחה למדיה־ויקי" #. F4YJF #: wikisend.xhp @@ -698,7 +698,7 @@ "par_id1743827\n" "help.text" msgid "In the Send to MediaWiki dialog, specify the settings for your current wiki upload." -msgstr "בחלונית שליחה למדיה־ויקי, יש לציין את הגדרות ההלאה הנוכחית שלך לוויקי." +msgstr "בחלונית שליחה למדיה־ויקי, יש לציין את הגדרות ההעלאה הנוכחית שלך לוויקי." #. KmSsg #: wikisend.xhp @@ -752,7 +752,7 @@ "tit\n" "help.text" msgid "MediaWiki Options" -msgstr "אפשרויות MediaWiki" +msgstr "אפשרויות מדיה־ויקי" #. R7RVE #: wikisettings.xhp @@ -761,7 +761,7 @@ "hd_id6425672\n" "help.text" msgid "MediaWiki Options" -msgstr "אפשרויות MediaWiki" +msgstr "אפשרויות מדיה־ויקי" #. 39jox #: wikisettings.xhp @@ -770,7 +770,7 @@ "par_id1188390\n" "help.text" msgid "You can add, edit and remove MediaWiki servers. Open the options dialog by going to Tools - Options - Internet - MediaWiki." -msgstr "ניתן להוסיף, לערוך ולהסיר שרתי MediaWiki. יש לפתוח את חלונית האפשרויות על ידי מעבר אל כלים - אפשרויות - אינטרנט - MediaWiki." +msgstr "ניתן להוסיף, לערוך ולהסיר שרתי מדיה־ויקי. יש לפתוח את חלונית האפשרויות על ידי לחיצה על כלים - אפשרויות - אינטרנט - מדיה־ויקי." #. 44myu #: wikisettings.xhp @@ -788,7 +788,7 @@ "par_id9786065\n" "help.text" msgid "Opens the MediaWiki dialog to add a new entry to the list." -msgstr "פתיחת הדו־שיח MediaWiki כדי להוסיף רשומה חדשה לרשימה." +msgstr "פותחת את החלונית מדיה־ויקי כדי להוסיף רשומה חדשה לרשימה." #. Q2kSq #: wikisettings.xhp @@ -797,7 +797,7 @@ "par_id3386333\n" "help.text" msgid "Opens the MediaWiki dialog to edit the selected entry." -msgstr "פתיחת תיבת הדו־שיח MediaWiki כדי לערוך את הרשומה הנבחרת." +msgstr "פותחת את החלונית מדיה־ויקי כדי לערוך את הרשומה הנבחרת." #. GCH8n #: wikisettings.xhp @@ -815,4 +815,4 @@ "par_id1029084\n" "help.text" msgid "When you click Add or Edit, the MediaWiki dialog opens." -msgstr "בעת לחיצה על הוספה או על עריכה, תיפתח תיבת הדו־שיח MediaWiki." +msgstr "בעת לחיצה על הוספה או על עריכה, תיפתח החלונית מדיה־ויקי." diff -Nru libreoffice-7.4.6/translations/source/he/swext/mediawiki/src/registry/data/org/openoffice/Office.po libreoffice-7.4.7/translations/source/he/swext/mediawiki/src/registry/data/org/openoffice/Office.po --- libreoffice-7.4.6/translations/source/he/swext/mediawiki/src/registry/data/org/openoffice/Office.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/swext/mediawiki/src/registry/data/org/openoffice/Office.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2013-05-23 23:36+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-13 11:33+0000\n" +"Last-Translator: Yaron Shahrabani \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1369352195.000000\n" #. v5Nd2 @@ -24,7 +24,7 @@ "Title\n" "value.text" msgid "To Media~Wiki..." -msgstr "למ~דיה ויקי..." +msgstr "למ~דיה־ויקי…" #. DVB8Y #: OptionsDialog.xcu @@ -34,4 +34,4 @@ "Label\n" "value.text" msgid "MediaWiki" -msgstr "מדיה ויקי" +msgstr "מדיה־ויקי" diff -Nru libreoffice-7.4.6/translations/source/he/sysui/desktop/share.po libreoffice-7.4.7/translations/source/he/sysui/desktop/share.po --- libreoffice-7.4.6/translations/source/he/sysui/desktop/share.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/sysui/desktop/share.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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: 2016-05-18 17:58+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1463594325.000000\n" #. a9uCy @@ -329,7 +329,7 @@ "ms-powerpoint-presentation-12\n" "LngText.text" msgid "Microsoft PowerPoint Presentation" -msgstr "מצגת פוורפוינט" +msgstr "מצגת פאוורפוינט" #. 7TjD7 #: documents.ulf @@ -338,7 +338,7 @@ "ms-powerpoint-template-12\n" "LngText.text" msgid "Microsoft PowerPoint Presentation Template" -msgstr "תבנית מצגת פוורפוינט" +msgstr "תבנית מצגת פאוורפוינט" #. 9YtZo #: documents.ulf diff -Nru libreoffice-7.4.6/translations/source/he/uui/messages.po libreoffice-7.4.7/translations/source/he/uui/messages.po --- libreoffice-7.4.6/translations/source/he/uui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/uui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-04-26 13:59+0200\n" -"PO-Revision-Date: 2021-09-08 09:16+0000\n" +"PO-Revision-Date: 2023-03-12 10:33+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1522252136.000000\n" #. DLY8p @@ -48,6 +48,9 @@ "$(ARG1)\n" "which are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?" msgstr "" +"פעולה זו תוביל לשמירה/ייצוא של תיקיית BASIC מוגנת המכילה מודול אחד או יותר בשם \n" +"$(ARG1)\n" +"שהם גדולים מכדי לאחסן אותם בתבנית בינרית. כדי שמשתמשים שאין להם גישה לסיסמה לספרייה יוכלו להריץ את תסריטי המאקרו במודולים האלה יש לפצל את המודולים למספר מודולים קטנים יותר. להמשיך בשמירת/ייצוא הספרייה הזו?" #. 3rNDF #: uui/inc/ids.hrc:43 diff -Nru libreoffice-7.4.6/translations/source/he/vcl/messages.po libreoffice-7.4.7/translations/source/he/vcl/messages.po --- libreoffice-7.4.6/translations/source/he/vcl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/vcl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-08-24 12:29+0200\n" -"PO-Revision-Date: 2021-03-08 08:36+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542023495.000000\n" #. k5jTM @@ -244,7 +244,7 @@ #: vcl/inc/print.hrc:70 msgctxt "RID_STR_PAPERNAMES" msgid "Ledger" -msgstr "" +msgstr "פנקס" #. nD5vU #: vcl/inc/print.hrc:71 @@ -262,19 +262,19 @@ #: vcl/inc/print.hrc:73 msgctxt "RID_STR_PAPERNAMES" msgid "10x14" -msgstr "" +msgstr "10x14" #. NqDor #: vcl/inc/print.hrc:74 msgctxt "RID_STR_PAPERNAMES" msgid "#14 Envelope" -msgstr "" +msgstr "מעטפה מס׳ 14" #. HG72H #: vcl/inc/print.hrc:75 msgctxt "RID_STR_PAPERNAMES" msgid "C3 Envelope" -msgstr "" +msgstr "מעטפה C3" #. GcZXC #: vcl/inc/print.hrc:76 @@ -322,7 +322,7 @@ #: vcl/inc/print.hrc:83 msgctxt "RID_STR_PAPERNAMES" msgid "Invitation Envelope" -msgstr "" +msgstr "מעטפת הזמנה" #. P9Ams #: vcl/inc/print.hrc:84 @@ -346,7 +346,7 @@ #: vcl/inc/print.hrc:87 msgctxt "RID_STR_PAPERNAMES" msgid "A4 Plus" -msgstr "" +msgstr "A4 פלוס" #. ak83a #: vcl/inc/print.hrc:88 @@ -376,19 +376,19 @@ #: vcl/inc/print.hrc:92 msgctxt "RID_STR_PAPERNAMES" msgid "A8" -msgstr "" +msgstr "A8" #. GYtp3 #: vcl/inc/print.hrc:93 msgctxt "RID_STR_PAPERNAMES" msgid "A9" -msgstr "" +msgstr "A9" #. bpFt9 #: vcl/inc/print.hrc:94 msgctxt "RID_STR_PAPERNAMES" msgid "A10" -msgstr "" +msgstr "A10" #. FTA7W #: vcl/inc/print.hrc:95 @@ -442,61 +442,61 @@ #: vcl/inc/print.hrc:103 msgctxt "RID_STR_PAPERNAMES" msgid "C2 Envelope" -msgstr "" +msgstr "מעטפה C2" #. EFNMQ #: vcl/inc/print.hrc:104 msgctxt "RID_STR_PAPERNAMES" msgid "C7 Envelope" -msgstr "" +msgstr "מעטפה C7" #. zSAKG #: vcl/inc/print.hrc:105 msgctxt "RID_STR_PAPERNAMES" msgid "C8 Envelope" -msgstr "" +msgstr "מעטפה C8" #. AX3UZ #: vcl/inc/print.hrc:106 msgctxt "RID_STR_PAPERNAMES" msgid "Arch A" -msgstr "" +msgstr "קשת א׳" #. DVqSQ #: vcl/inc/print.hrc:107 msgctxt "RID_STR_PAPERNAMES" msgid "Arch B" -msgstr "" +msgstr "קשת ב׳" #. XTWTA #: vcl/inc/print.hrc:108 msgctxt "RID_STR_PAPERNAMES" msgid "Arch C" -msgstr "" +msgstr "קשת ג׳" #. 7HfJq #: vcl/inc/print.hrc:109 msgctxt "RID_STR_PAPERNAMES" msgid "Arch D" -msgstr "" +msgstr "קשת ד׳" #. iFxKS #: vcl/inc/print.hrc:110 msgctxt "RID_STR_PAPERNAMES" msgid "Arch E" -msgstr "" +msgstr "קשת ה" #. H86KB #: vcl/inc/print.hrc:111 msgctxt "RID_STR_PAPERNAMES" msgid "Screen 16:9" -msgstr "" +msgstr "מסך 16:9" #. qXCQA #: vcl/inc/print.hrc:112 msgctxt "RID_STR_PAPERNAMES" msgid "Screen 16:10" -msgstr "" +msgstr "מסך 16:10" #. ByzTD #: vcl/inc/print.hrc:113 @@ -514,7 +514,7 @@ #: vcl/inc/print.hrc:115 msgctxt "RID_STR_PAPERNAMES" msgid "Widescreen" -msgstr "" +msgstr "מסך רחב" #. W2nn3 #: vcl/inc/print.hrc:116 @@ -634,7 +634,7 @@ #: vcl/inc/strings.hrc:25 msgctxt "SV_RESID_STRING_NOSELECTIONPOSSIBLE" msgid "[No selection possible]" -msgstr "" +msgstr "[בחירה אינה אפשרית]" #. QbQEb #: vcl/inc/strings.hrc:27 @@ -876,7 +876,7 @@ #: vcl/inc/strings.hrc:75 msgctxt "SV_PRINT_DEFPRT_TXT" msgid "Default printer" -msgstr "מדפסת בררת מחדל" +msgstr "מדפסת ברירת מחדל" #. 8BSG2 #: vcl/inc/strings.hrc:76 @@ -936,7 +936,7 @@ #: vcl/inc/strings.hrc:87 msgctxt "SV_APP_DEFAULT" msgid "default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. 4gWk5 #: vcl/inc/strings.hrc:89 @@ -1080,13 +1080,13 @@ #: vcl/inc/strings.hrc:120 msgctxt "STR_GBU" msgid "Graphics Backend used: %1" -msgstr "" +msgstr "מנגנון גרפי בשימוש: %1" #. FBgmu #: vcl/inc/strings.hrc:121 msgctxt "STR_PASSED" msgid "Passed Tests: %1" -msgstr "" +msgstr "בדיקות שעברו בהצלחה: %1" #. 3nqZp #: vcl/inc/strings.hrc:122 @@ -1098,7 +1098,7 @@ #: vcl/inc/strings.hrc:123 msgctxt "STR_FAILED" msgid "Failed Tests: %1" -msgstr "" +msgstr "בדיקות שכשלו: %1" #. uKGQi #: vcl/inc/strings.hrc:124 @@ -1160,7 +1160,7 @@ #: vcl/inc/units.hrc:37 msgctxt "SV_FUNIT_STRINGS" msgid "″" -msgstr "" +msgstr "″" #. AEhCN #: vcl/inc/units.hrc:38 @@ -1823,7 +1823,7 @@ #: vcl/uiconfig/ui/errornoprinterdialog.ui:14 msgctxt "errornoprinterdialog|ErrorNoPrinterDialog" msgid "No default printer found." -msgstr "לא נמצאה מדפסת בררת מחדל." +msgstr "לא נמצאה מדפסת ברירת מחדל." #. EB7RA #: vcl/uiconfig/ui/errornoprinterdialog.ui:15 @@ -1943,7 +1943,7 @@ #: vcl/uiconfig/ui/printdialog.ui:441 msgctxt "printdialog|status" msgid "Default Printer" -msgstr "מדפסת בררת מחדל" +msgstr "מדפסת ברירת מחדל" #. McZgQ #: vcl/uiconfig/ui/printdialog.ui:447 @@ -2141,7 +2141,7 @@ #: vcl/uiconfig/ui/printdialog.ui:874 msgctxt "printdialog|rangeexpander" msgid "_More" -msgstr "" +msgstr "_עוד" #. ehfCG #: vcl/uiconfig/ui/printdialog.ui:890 @@ -2153,7 +2153,7 @@ #: vcl/uiconfig/ui/printdialog.ui:929 msgctxt "printdialog|labelorientation" msgid "Orientation:" -msgstr "כיוון:" +msgstr "כיווניות:" #. U4byk #: vcl/uiconfig/ui/printdialog.ui:944 @@ -2183,13 +2183,13 @@ #: vcl/uiconfig/ui/printdialog.ui:967 msgctxt "printdialog|extended_tip|pageorientationbox" msgid "Select the orientation of the paper." -msgstr "" +msgstr "בוחר את כיוון הדף." #. DSFv2 #: vcl/uiconfig/ui/printdialog.ui:983 msgctxt "printdialog|extended_tip|papersizebox" msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size." -msgstr "" +msgstr "נא להגדיר את סוג המסמך בו ברצונך להשתמש. התצוגה המקדימה תראה איך נראה המסמך על נייר בגודל הנתון." #. EZdsx #: vcl/uiconfig/ui/printdialog.ui:1018 @@ -2201,7 +2201,7 @@ #: vcl/uiconfig/ui/printdialog.ui:1032 msgctxt "printdialog|extended_tip|pagespersheetbtn" msgid "Print multiple pages per sheet of paper." -msgstr "" +msgstr "הדפסת מגוון עמודים על דף נייר." #. DKP5g #: vcl/uiconfig/ui/printdialog.ui:1074 @@ -2477,7 +2477,7 @@ #: vcl/uiconfig/ui/printerpaperpage.ui:34 msgctxt "printerpaperpage|orientft" msgid "_Orientation:" -msgstr "_כיוון:" +msgstr "_כיווניות:" #. yKXAH #: vcl/uiconfig/ui/printerpaperpage.ui:48 diff -Nru libreoffice-7.4.6/translations/source/he/wizards/source/resources.po libreoffice-7.4.7/translations/source/he/wizards/source/resources.po --- libreoffice-7.4.6/translations/source/he/wizards/source/resources.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/wizards/source/resources.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-10-27 12:31+0100\n" -"PO-Revision-Date: 2020-12-29 17:36+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565698003.000000\n" #. 8UKfi @@ -212,7 +212,7 @@ "RID_COMMON_21\n" "property.text" msgid "The wizard could not be run, because important files were not found.\\nUnder 'Tools - Options - %PRODUCTNAME - Paths' click the 'Default' button to reset the paths to the original default settings.\\nThen run the wizard again." -msgstr "לא ניתן להפעיל את האשף, כיוון שקבצים חיוניים לא נמצאו.\\nתחת ‚כלים - אפשרויות - %PRODUCTNAME - נתיבים’ יש ללחוץ על הכפתור ‚בררת מחדל’ כדי לאפס את הנתיבים להגדרות בררת המחדל.\\nלאחר מכן יש להפעיל את האשף מחדש." +msgstr "לא ניתן להפעיל את האשף, כיוון שקבצים חיוניים לא נמצאו.\\nתחת ‚כלים - אפשרויות - %PRODUCTNAME - נתיבים’ יש ללחוץ על הכפתור ‚ברירת מחדל’ כדי לאפס את הנתיבים להגדרות בררת המחדל.\\nלאחר מכן יש להפעיל את האשף מחדש." #. GohbP #: resources_en_US.properties @@ -950,7 +950,7 @@ "RID_REPORT_100\n" "property.text" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. Bca59 #: resources_en_US.properties @@ -1094,7 +1094,7 @@ "RID_REPORT_116\n" "property.text" msgid "Default" -msgstr "בררת מחדל" +msgstr "ברירת מחדל" #. 927HM #: resources_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/he/xmlsecurity/messages.po libreoffice-7.4.7/translations/source/he/xmlsecurity/messages.po --- libreoffice-7.4.6/translations/source/he/xmlsecurity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/he/xmlsecurity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:21+0100\n" -"PO-Revision-Date: 2021-01-26 17:36+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565698143.000000\n" #. EyJrF @@ -26,7 +26,7 @@ #: xmlsecurity/inc/strings.hrc:25 msgctxt "STR_VERSION" msgid "Version" -msgstr "גירסה" +msgstr "גרסה" #. JCWT6 #: xmlsecurity/inc/strings.hrc:26 @@ -309,13 +309,13 @@ #: xmlsecurity/uiconfig/ui/certdetails.ui:73 msgctxt "extended_tip|tablecontainer" msgid "The Details page of the View Certificate dialog displays detailed information about the certificate." -msgstr "" +msgstr "עמוד הפרטים בחלונית הצגת האישור מציג מידע מפורט על האישור." #. xcuF8 #: xmlsecurity/uiconfig/ui/certdetails.ui:101 msgctxt "extended_tip|valuedetails" msgid "Use the value list box to view values and copy them to the clipboard." -msgstr "" +msgstr "אפשר להשתמש בתיבת רשימת הערכים כדי לצפות בערכים ולהעתיק אותם ללוח הגזירים." #. JXgjT #: xmlsecurity/uiconfig/ui/certdetails.ui:115 @@ -477,7 +477,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:222 msgctxt "digitalsignaturesdialog|extended_tip|view" msgid "Opens the View Certificate dialog." -msgstr "" +msgstr "פותח את חלונית הצגת האישור." #. uM8mn #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:234 @@ -489,7 +489,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:241 msgctxt "digitalsignaturesdialog|extended_tip|sign" msgid "Opens the Select Certificate dialog." -msgstr "" +msgstr "פתיחת חלונית בחירת אישור." #. hFd4m #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:253 @@ -537,13 +537,13 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:426 msgctxt "digitalsignaturesdialog|oldsignatureft" msgid "At least one signature has problems: the document is only partially signed." -msgstr "" +msgstr "לפחות באחת מהחתימות יש בעיות: המסמך חתום חלקית." #. wn85z #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:439 msgctxt "digitalsignaturesdialog|notvalidatedft" msgid "At least one signature has problems: the certificate could not be validated." -msgstr "" +msgstr "לפחות באחת מהחתימות יש בעיות: לא ניתן לאמת את האישור." #. DFTZB #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:488 @@ -661,13 +661,13 @@ #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:68 msgctxt "extended_tip|viewcert" msgid "Opens the View Certificate dialog for the selected certificate." -msgstr "" +msgstr "פותח את חלונית הצגת האישור לאישור הנבחר." #. WADee #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:87 msgctxt "extended_tip|removecert" msgid "Removes the selected certificate from the list of trusted certificates." -msgstr "" +msgstr "מסיר את האישור הנבחר מרשימת האישורים המהימנים." #. Y7LGC #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:127 @@ -691,7 +691,7 @@ #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:164 msgctxt "extended_tip|certificates" msgid "Lists the trusted certificates." -msgstr "" +msgstr "מציג את האישורים המהימנים." #. xWF8D #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:197 @@ -739,7 +739,7 @@ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:24 msgctxt "selectcertificatedialog|SelectCertificateDialog" msgid "Select X.509 Certificate" -msgstr "" +msgstr "נא לבחור אישור X.509" #. 5iWSE #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:102 @@ -799,7 +799,7 @@ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:228 msgctxt "selectcertificatedialog|extended_tip|viewcert" msgid "Opens the View Certificate dialog where you can examine the selected certificate." -msgstr "" +msgstr "פותח את חלונית הצגת האישור בה ניתן לחקור את האישור הנבחר." #. dbgmP #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:246 @@ -811,7 +811,7 @@ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:262 msgctxt "selectcertificatedialog|extended_tip|description" msgid "Type a purpose for the signature." -msgstr "" +msgstr "נא לציין את תכלית החתימה." #. snAQh #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:297 diff -Nru libreoffice-7.4.6/translations/source/hsb/cui/messages.po libreoffice-7.4.7/translations/source/hsb/cui/messages.po --- libreoffice-7.4.6/translations/source/hsb/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hsb/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-03-27 19:34+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -3142,7 +3142,7 @@ #: 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 "Maće wjele wobrazow w dokumenće Writer? Znjemóžńće „Napohlad ▸ Wobrazy a diagramy“, zo byšće zwobraznjenje pospěšił." +msgstr "Maće wjele wobrazow w dokumenće Writer? Znjemóžńće „Napohlad ▸ Wobrazy a diagramy“, zo byšće pokazku pospěšił." #. Y85ij #: cui/inc/tipoftheday.hrc:211 @@ -3284,7 +3284,7 @@ #: cui/inc/tipoftheday.hrc:233 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number." -msgstr "Wobchowajće nule před ličbu z pomocu nastajenja celoweho formata ‚Zawodne nule‘ abo formatěrujće celu jako tekst, prjedy hač ličbu zapodawaće." +msgstr "Wobchowajće nule před ličbu z pomocu nastajenja celoweho formata ‚Načolne nule‘ abo formatěrujće celu jako tekst, prjedy hač ličbu zapodawaće." #. jkXFE #: cui/inc/tipoftheday.hrc:234 @@ -6377,7 +6377,7 @@ #: cui/uiconfig/ui/cellalignment.ui:224 msgctxt "cellalignment|checkWrapTextAuto" msgid "_Wrap text automatically" -msgstr "Awtomatiske _linkowe łamanje" +msgstr "Tekst _awtomatisce łamać" #. warfE #: cui/uiconfig/ui/cellalignment.ui:234 @@ -8907,7 +8907,7 @@ #: cui/uiconfig/ui/effectspage.ui:620 msgctxt "effectspage|a11ywarning" msgid "Accessibility option \"Use automatic font color for screen display\" is active. Font color attributes are not currently used to display text." -msgstr "Nastajenje bjezbarjernosće \"Awtomatisku pismowu barbu za zwobraznjenje an wobrazowce wužiwać\" je aktiwne. Atributy pismoweje barby so tuchwilu njewužiwaja, zo bychu tekst zwobraznili." +msgstr "Nastajenje bjezbarjernosće \"Awtomatisku pismowu barbu za pokazku na wobrazowce wužiwać\" je aktiwne. Atributy pismoweje barby so tuchwilu njewužiwaja, zo bychu tekst zwobraznili." #. AZF8Q #: cui/uiconfig/ui/effectspage.ui:634 @@ -13808,7 +13808,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:160 msgctxt "optaccessibilitypage|autofontcolor" msgid "Use automatic font _color for screen display" -msgstr "Awtomatisku pismowu _barbu za zwobraznjenje na wobrazowce wužiwać" +msgstr "Awtomatisku pismowu _barbu za pokazku na wobrazowce wužiwać" #. BAnK4 #: cui/uiconfig/ui/optaccessibilitypage.ui:168 @@ -17329,7 +17329,7 @@ #: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." -msgstr "Direktny přistup k funkcijam hardwary grafiskeho wozjewjenskeho adaptera, zo by so zwobraznjenje na wobrazowce polěpšiło." +msgstr "Direktny přistup k funkcijam hardwary grafiskeho wozjewjenskeho adaptera, zo by so pokazka na wobrazowce polěpšiła." #. 2MWvd #: cui/uiconfig/ui/optviewpage.ui:529 diff -Nru libreoffice-7.4.6/translations/source/hsb/forms/messages.po libreoffice-7.4.7/translations/source/hsb/forms/messages.po --- libreoffice-7.4.6/translations/source/hsb/forms/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hsb/forms/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-01-28 07:37+0000\n" +"PO-Revision-Date: 2023-04-06 20:34+0000\n" "Last-Translator: Michael Wolf \n" -"Language-Team: Upper Sorbian \n" +"Language-Team: Upper Sorbian \n" "Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507241589.000000\n" #. naBgZ @@ -306,7 +306,7 @@ #: forms/inc/strings.hrc:74 msgctxt "RID_STR_DATATYPE_DOUBLE" msgid "Double" -msgstr "Běžaca koma (dwójna)" +msgstr "Datowy typ Double" #. ki4Gz #: forms/inc/strings.hrc:75 diff -Nru libreoffice-7.4.6/translations/source/hsb/formula/messages.po libreoffice-7.4.7/translations/source/hsb/formula/messages.po --- libreoffice-7.4.6/translations/source/hsb/formula/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hsb/formula/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-12-27 12:05+0000\n" +"PO-Revision-Date: 2023-04-04 21:33+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560767171.000000\n" #. YfKFn @@ -116,7 +116,7 @@ #: formula/inc/core_resource.hrc:2298 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "RAND" -msgstr "RAND" +msgstr "PŘIPADNALIČBA" #. FJXfC #: formula/inc/core_resource.hrc:2299 @@ -362,7 +362,7 @@ #: formula/inc/core_resource.hrc:2339 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "INT" -msgstr "INT" +msgstr "CYŁALICBA" #. gQnYU #: formula/inc/core_resource.hrc:2340 @@ -1196,7 +1196,7 @@ #: formula/inc/core_resource.hrc:2478 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "EFFECT" -msgstr "EFEKT" +msgstr "EFEKTIWNY" #. fovF4 #: formula/inc/core_resource.hrc:2479 @@ -1208,7 +1208,7 @@ #: formula/inc/core_resource.hrc:2480 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "SUBTOTAL" -msgstr "DŹĚLNYWUSLĚDK" +msgstr "MJEZYWUSLĚDK" #. nggfn #: formula/inc/core_resource.hrc:2481 @@ -2511,13 +2511,13 @@ #: formula/inc/core_resource.hrc:2712 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "RAND.NV" -msgstr "PŘIPADNALIČBA.NZ" +msgstr "PŘIPADNALIČBA.NĆ" #. uYSAT #: formula/inc/core_resource.hrc:2713 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "RANDBETWEEN.NV" -msgstr "PŘIPADNYWOBWOD.NZ" +msgstr "PŘIPADNYWOBWOD.NĆ" #. wH3TZ msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-03-18 04:33+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -2384,7 +2384,7 @@ "Label\n" "value.text" msgid "Scale Screen Display" -msgstr "Zwobraznjenje wobrazowki skalować" +msgstr "Pokazku na wobrazowce skalować" #. csiq5 #: CalcCommands.xcu @@ -4034,7 +4034,7 @@ "Label\n" "value.text" msgid "Delete Decimal Place" -msgstr "Decimalne městno wotstronić" +msgstr "Decimalne městno zhašeć" #. pCdTP #: CalcCommands.xcu @@ -15984,7 +15984,7 @@ "Name\n" "value.text" msgid "Navigate" -msgstr "Nawigować" +msgstr "Nawigěrować" #. 2yKvJ #: GenericCategories.xcu @@ -17454,7 +17454,7 @@ "Label\n" "value.text" msgid "Flowchart: Display" -msgstr "Wotběhowy diagram: Zwobraznjenje" +msgstr "Wotběhowy diagram: Pokazka" #. KDopC #: GenericCommands.xcu @@ -26806,7 +26806,7 @@ "Label\n" "value.text" msgid "Navigate" -msgstr "Nawigować" +msgstr "Nawigěrować" #. 3Bg25 #: GenericCommands.xcu @@ -34986,7 +34986,7 @@ "Label\n" "value.text" msgid "Navigate By" -msgstr "Nawigować po" +msgstr "Nawigěrować po" #. 2bsCo #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/hsb/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.4.7/translations/source/hsb/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.4.6/translations/source/hsb/officecfg/registry/data/org/openoffice/Office.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hsb/officecfg/registry/data/org/openoffice/Office.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-10 11:03+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547329320.000000\n" #. HhMVS @@ -204,7 +204,7 @@ "Title\n" "value.text" msgid "~Labels" -msgstr "~Popisy" +msgstr "~Etikety" #. fD6ro #: Common.xcu diff -Nru libreoffice-7.4.6/translations/source/hsb/sc/messages.po libreoffice-7.4.7/translations/source/hsb/sc/messages.po --- libreoffice-7.4.6/translations/source/hsb/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hsb/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-28 18:04+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -23955,7 +23955,7 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:144 msgctxt "imoptdialog|asshown" msgid "Save cell content as _shown" -msgstr "Celowy wobsah kaž pokazany składować" +msgstr "Celowy wobsah kaž po_kazany składować" #. kWBhB #: sc/uiconfig/scalc/ui/imoptdialog.ui:152 @@ -23979,7 +23979,7 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:187 msgctxt "imoptdialog|extended_tip|quoteall" msgid "Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character." -msgstr "Eksportuje wšě tekstowe cele ze zawodnymi a kónčacymi pazorkami, kaž w polu Testowe dźělatko podate. Jeli to zmóžnjene njeje, so jenož tekstowe cele do pazorkow stajeja, kotrež znamješko Pólne dźělatko wobsahuja." +msgstr "Eksportuje wšě tekstowe cele z načolnymi a kónčacymi pazorkami, kaž w polu Tekstowe dźělatko podate. Jeli to zmóžnjene njeje, so jenož tekstowe cele do pazorkow stajeja, kotrež znamješko Pólne dźělatko wobsahuja." #. KGh9G #: sc/uiconfig/scalc/ui/imoptdialog.ui:199 @@ -26507,7 +26507,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:111 msgctxt "optcalculatepage|calc" msgid "_Precision as shown" -msgstr "_Dokładnosć kaž so pokazuje" +msgstr "_Dokładnosć kaž pokazana" #. YGAFd #: sc/uiconfig/scalc/ui/optcalculatepage.ui:119 @@ -29219,7 +29219,7 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:254 msgctxt "extended_tip|formatcb" msgid "Specifies whether to automatically apply the formatting attributes of the selected cell to the empty adjacent cells." -msgstr "Podawa, hač so maja formatěrowanske atributry wubraneje cele awtomatisce na prózdne susodne cele nałožić." +msgstr "Podawa, hač so maja formatěrowanske atributy wubraneje cele awtomatisce na prózdne susodne cele nałožić." #. AzkVC #: sc/uiconfig/scalc/ui/scgeneralpage.ui:266 @@ -30281,7 +30281,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:219 msgctxt "sidebarnumberformat|leadingzeroeslabel" msgid "Leading _zeroes:" -msgstr "Zawodne n_ule:" +msgstr "Načolne n_ule:" #. 35pSE #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:234 @@ -30293,7 +30293,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:240 msgctxt "sidebarnumberformat|leadingzeroes-atkobject" msgid "Leading Zeroes" -msgstr "Zawodne nule" +msgstr "Načolne nule" #. jkDKD #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:259 @@ -32159,7 +32159,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:327 msgctxt "textimportcsv|mergedelimiters" msgid "Merge _delimiters" -msgstr "_Dźělatka zwjazać" +msgstr "_Dźělatka zjednoćić" #. EMxAD #: sc/uiconfig/scalc/ui/textimportcsv.ui:337 diff -Nru libreoffice-7.4.6/translations/source/hsb/scaddins/messages.po libreoffice-7.4.7/translations/source/hsb/scaddins/messages.po --- libreoffice-7.4.6/translations/source/hsb/scaddins/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hsb/scaddins/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-01-30 09:57+0000\n" +"PO-Revision-Date: 2023-04-04 21:33+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560767616.000000\n" #. i8Y7Z @@ -5214,7 +5214,7 @@ #: scaddins/inc/strings.hrc:91 msgctxt "ANALYSIS_FUNCNAME_Randbetween" msgid "RANDBETWEEN" -msgstr "PŘIPADWOBWOD" +msgstr "PŘIPADNYWOBWOD" #. EWZAR #: scaddins/inc/strings.hrc:92 @@ -5298,7 +5298,7 @@ #: scaddins/inc/strings.hrc:105 msgctxt "ANALYSIS_FUNCNAME_Gestep" msgid "GESTEP" -msgstr "WJETŠIPRÓH" +msgstr "GCYŁALIČBA" #. WpRkG #: scaddins/inc/strings.hrc:106 diff -Nru libreoffice-7.4.6/translations/source/hsb/sd/messages.po libreoffice-7.4.7/translations/source/hsb/sd/messages.po --- libreoffice-7.4.6/translations/source/hsb/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hsb/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-03-12 10:33+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562191169.000000\n" #. WDjkB @@ -9400,7 +9400,7 @@ #: sd/uiconfig/simpress/ui/sdviewpage.ui:106 msgctxt "sdviewpage|label1" msgid "Display" -msgstr "Zwobraznjenje" +msgstr "Pokazka" #. peBce #: sd/uiconfig/simpress/ui/sdviewpage.ui:114 diff -Nru libreoffice-7.4.6/translations/source/hsb/sfx2/messages.po libreoffice-7.4.7/translations/source/hsb/sfx2/messages.po --- libreoffice-7.4.6/translations/source/hsb/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hsb/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-03-18 04:34+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -591,7 +591,7 @@ #: include/sfx2/strings.hrc:115 msgctxt "STR_GID_NAVIGATOR" msgid "Navigate" -msgstr "Nawigować" +msgstr "Nawigěrować" #. w7dmG #: include/sfx2/strings.hrc:116 diff -Nru libreoffice-7.4.6/translations/source/hsb/svx/messages.po libreoffice-7.4.7/translations/source/hsb/svx/messages.po --- libreoffice-7.4.6/translations/source/hsb/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hsb/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-03-12 10:33+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559327200.000000\n" #. 3GkZj @@ -7805,7 +7805,7 @@ #: include/svx/strings.hrc:1404 msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED" msgid "Formatted Display" -msgstr "Sformatěrowane zwobraznjenje" +msgstr "Sformatěrowana pokazka" #. hAmnh #: include/svx/strings.hrc:1406 @@ -16134,7 +16134,7 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:207 msgctxt "findreplacedialog-mobile|searchformatted" msgid "For_matted display" -msgstr "For_matowane zwobraznjenje" +msgstr "Sfor_matěrowana pokazka" #. 3KibH #: svx/uiconfig/ui/findreplacedialog-mobile.ui:226 @@ -16386,7 +16386,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:220 msgctxt "findreplacedialog|searchformatted" msgid "For_matted display" -msgstr "Sfor_matěrowane zwobraznjenje" +msgstr "Sfor_matěrowana pokazka" #. vzB7B #: svx/uiconfig/ui/findreplacedialog.ui:228 diff -Nru libreoffice-7.4.6/translations/source/hsb/sw/messages.po libreoffice-7.4.7/translations/source/hsb/sw/messages.po --- libreoffice-7.4.6/translations/source/hsb/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hsb/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -1586,7 +1586,7 @@ #: sw/inc/inspectorproperties.hrc:184 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outline Level" -msgstr "Rozrjadowa runina" +msgstr "Rozrjadowanska runina" #. syTbJ #: sw/inc/inspectorproperties.hrc:185 @@ -2309,7 +2309,7 @@ #: sw/inc/strings.hrc:29 msgctxt "STR_STANDARD_EXTENDEDTIP" msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the current tab values specified in “Contains” are removed." -msgstr "Hódnoty w tutym rajtarku so na wotpowědne hódnoty předłohi stajeja, kotraž je w rajtarku „Rjadować“ pod „Zakład“ podate. We wšěmi padami, tež jeli je w „Zakład “ zapisk „- Žadyn -“ wubrany, aktualne rajtarkowe hódnoty we „Wobsahuje“ wotstronjeja." +msgstr "Hódnoty w tutym rajtarku so na wotpowědne hódnoty předłohi stajeja, kotraž je w rajtarku „Rjadować“ pod „Zakład“ podata. We wšěmi padami, tež jeli je w „Zakład “ zapisk „- Žadyn -“ wubrany, so aktualne hódnoty rajtarka we „Wobsahuje“ wotstronjeja." #. x2EUX #: sw/inc/strings.hrc:30 @@ -3793,7 +3793,7 @@ #: sw/inc/strings.hrc:291 msgctxt "STR_FDLG_OUTLINE_LEVEL" msgid "Outline: Level " -msgstr "Rozrjadowa runina " +msgstr "Rozrjadowanska runina " #. oEvac #: sw/inc/strings.hrc:292 @@ -4785,7 +4785,7 @@ #: sw/inc/strings.hrc:464 msgctxt "STR_OUTLINE_LR" msgid "Promote/demote outline level" -msgstr "Runinu rozrjada horje/dele přesunyć" +msgstr "Rozrjadowansku runinu horje/dele přesunyć" #. Mmk22 #: sw/inc/strings.hrc:465 @@ -5962,7 +5962,7 @@ #: sw/inc/strings.hrc:666 msgctxt "STR_OUTLINE_LEVEL" msgid "Outline Level" -msgstr "Rozrjadowa runina" +msgstr "Rozrjadowanska runina" #. yERK6 #: sw/inc/strings.hrc:667 @@ -10152,7 +10152,7 @@ #: sw/uiconfig/swriter/ui/abstractdialog.ui:113 msgctxt "abstractdialog|label2" msgid "Included outline levels" -msgstr "Zapřijate rozrjadowe runiny" +msgstr "Zapřijate rozrjadowanske runiny" #. 8rYwZ #: sw/uiconfig/swriter/ui/abstractdialog.ui:128 @@ -10164,13 +10164,13 @@ #: sw/uiconfig/swriter/ui/abstractdialog.ui:143 msgctxt "abstractdialog|label4" msgid "The abstract contains the selected number of paragraphs from the included outline levels." -msgstr "Wujimk wubranu ličbu wotstawkow ze zapřijatych rozrjadowych runinow wobsahuje." +msgstr "Wujimk wubranu ličbu wotstawkow ze zapřijatych rozrjadowanskich runinow wobsahuje." #. zeoic #: sw/uiconfig/swriter/ui/abstractdialog.ui:165 msgctxt "abstractdialog|extended_tip|outlines" msgid "Enter the extent of the outline levels to be copied to the new document." -msgstr "Zapodajće ličbu rozrjadowych runinow, kotrež so maja do noweho dokumenta kopěrować." +msgstr "Zapodajće ličbu rozrjadowanskich runinow, kotrež so maja do noweho dokumenta kopěrować." #. ELZAp #: sw/uiconfig/swriter/ui/abstractdialog.ui:183 @@ -11352,7 +11352,7 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:260 msgctxt "bulletsandnumbering|outlinenum" msgid "Select an outline format for an ordered list." -msgstr "Wubjerće rozrjadowy format za čisłowanu lisćinu." +msgstr "Wubjerće rozrjadowanski format za čisłowanu lisćinu." #. hW6yn #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:308 @@ -11718,7 +11718,7 @@ #: sw/uiconfig/swriter/ui/captionoptions.ui:306 msgctxt "captionoptions|liststore1" msgid "Numbering first" -msgstr "Čisłowanje najprjedy" +msgstr "Čisłowanje jako prěnje" #. cET3M #: sw/uiconfig/swriter/ui/captionoptions.ui:320 @@ -12384,7 +12384,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:99 msgctxt "conditionpage|extended_tip|links" msgid "Here you can see the Writer predefined contexts, including outline levels 1 to 10, list levels 1 to 10, table header, table contents, section, border, footnote, header and footer." -msgstr "Tu móžeće předdefinowane konteksty Writer widźeć, mjez nimi rozrjadowe runiny 1 do 10, lisćinowe runiny 1 do 10, hłowu tabele, wobsah tabele, wotrězk, ramik, nóžku, hłowowu linku a nohowu linku." +msgstr "Tu móžeće předdefinowane konteksty Writer widźeć, mjez nimi rozrjadowanske runiny 1 do 10, lisćinowe runiny 1 do 10, hłowu tabele, wobsah tabele, wotrězk, ramik, nóžku, hłowowu linku a nohowu linku." #. nDZqL #: sw/uiconfig/swriter/ui/conditionpage.ui:128 @@ -12462,61 +12462,61 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:233 msgctxt "conditionpage|filter" msgid " 1st Outline Level" -msgstr " 1. rozrjadowa runina" +msgstr " 1. rozrjadowanska runina" #. GTJPN #: sw/uiconfig/swriter/ui/conditionpage.ui:234 msgctxt "conditionpage|filter" msgid " 2nd Outline Level" -msgstr " 2. rozrjadowa runina" +msgstr " 2. rozrjadowanska runina" #. VKBoL #: sw/uiconfig/swriter/ui/conditionpage.ui:235 msgctxt "conditionpage|filter" msgid " 3rd Outline Level" -msgstr " 3. rozrjadowa runina" +msgstr " 3. rozrjadowanska runina" #. a9TaD #: sw/uiconfig/swriter/ui/conditionpage.ui:236 msgctxt "conditionpage|filter" msgid " 4th Outline Level" -msgstr " 4. rozrjadowa runina" +msgstr " 4. rozrjadowanska runina" #. dXE2C #: sw/uiconfig/swriter/ui/conditionpage.ui:237 msgctxt "conditionpage|filter" msgid " 5th Outline Level" -msgstr " 5. rozrjadowa runina" +msgstr " 5. rozrjadowanska runina" #. hCaZr #: sw/uiconfig/swriter/ui/conditionpage.ui:238 msgctxt "conditionpage|filter" msgid " 6th Outline Level" -msgstr " 6. rozrjadowa runina" +msgstr " 6. rozrjadowanska runina" #. eY5Fy #: sw/uiconfig/swriter/ui/conditionpage.ui:239 msgctxt "conditionpage|filter" msgid " 7th Outline Level" -msgstr " 7. rozrjadowa runina" +msgstr " 7. rozrjadowanska runina" #. KbZgs #: sw/uiconfig/swriter/ui/conditionpage.ui:240 msgctxt "conditionpage|filter" msgid " 8th Outline Level" -msgstr " 8. rozrjadowa runina" +msgstr " 8. rozrjadowanska runina" #. L5C8x #: sw/uiconfig/swriter/ui/conditionpage.ui:241 msgctxt "conditionpage|filter" msgid " 9th Outline Level" -msgstr " 9. rozrjadowa runina" +msgstr " 9. rozrjadowanska runina" #. xNPpQ #: sw/uiconfig/swriter/ui/conditionpage.ui:242 msgctxt "conditionpage|filter" msgid "10th Outline Level" -msgstr "10. rozrjadowa runina" +msgstr "10. rozrjadowanska runina" #. tFzDD #: sw/uiconfig/swriter/ui/conditionpage.ui:243 @@ -12894,7 +12894,7 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:212 msgctxt "createaddresslist|extended_tip|START" msgid "Click the buttons to navigate through the records or enter a record number to display a record." -msgstr "Klikńće na tłóčatka, zo byšće po datowych sadźbach nawigował abo zapodajće čisło datoweje sadźby, zo byšće datowu sadźbu pokazał." +msgstr "Klikńće na tłóčatka, zo byšće po datowych sadźbach nawigěrował abo zapodajće čisło datoweje sadźby, zo byšće datowu sadźbu pokazał." #. XAhXo #: sw/uiconfig/swriter/ui/createaddresslist.ui:223 @@ -12906,7 +12906,7 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:229 msgctxt "createaddresslist|extended_tip|PREV" msgid "Click the buttons to navigate through the records or enter a record number to display a record." -msgstr "Klikńće na tłóčatka, zo byšće po datowych sadźbach nawigował abo zapodajće čisło datoweje sadźby, zo byšće datowu sadźbu pokazał." +msgstr "Klikńće na tłóčatka, zo byšće po datowych sadźbach nawigěrował abo zapodajće čisło datoweje sadźby, zo byšće datowu sadźbu pokazał." #. BFEtt #: sw/uiconfig/swriter/ui/createaddresslist.ui:240 @@ -12918,7 +12918,7 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:246 msgctxt "createaddresslist|extended_tip|END" msgid "Click the buttons to navigate through the records or enter a record number to display a record." -msgstr "Klikńće na tłóčatka, zo byšće po datowych sadźbach nawigował abo zapodajće čisło datoweje sadźby, zo byšće datowu sadźbu pokazał." +msgstr "Klikńće na tłóčatka, zo byšće po datowych sadźbach nawigěrował abo zapodajće čisło datoweje sadźby, zo byšće datowu sadźbu pokazał." #. vzQvB #: sw/uiconfig/swriter/ui/createaddresslist.ui:257 @@ -12930,19 +12930,19 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:263 msgctxt "createaddresslist|extended_tip|NEXT" msgid "Click the buttons to navigate through the records or enter a record number to display a record." -msgstr "Klikńće na tłóčatka, zo byšće po datowych sadźbach nawigował abo zapodajće čisło datoweje sadźby, zo byšće datowu sadźbu pokazał." +msgstr "Klikńće na tłóčatka, zo byšće po datowych sadźbach nawigěrował abo zapodajće čisło datoweje sadźby, zo byšće datowu sadźbu pokazał." #. r6T84 #: sw/uiconfig/swriter/ui/createaddresslist.ui:287 msgctxt "createaddresslist|extended_tip|SETNOSB" msgid "Click the buttons to navigate through the records or enter a record number to display a record." -msgstr "Klikńće na tłóčatka, zo byšće po datowych sadźbach nawigował abo zapodajće čisło datoweje sadźby, zo byšće datowu sadźbu pokazał." +msgstr "Klikńće na tłóčatka, zo byšće po datowych sadźbach nawigěrował abo zapodajće čisło datoweje sadźby, zo byšće datowu sadźbu pokazał." #. KdhEt #: sw/uiconfig/swriter/ui/createaddresslist.ui:305 msgctxt "createaddresslist|extended_tip|SETNOED" msgid "Click the buttons to navigate through the records or enter a record number to display a record." -msgstr "Klikńće na tłóčatka, zo byšće po datowych sadźbach nawigował abo zapodajće čisło datoweje sadźby, zo byšće datowu sadźbu pokazał." +msgstr "Klikńće na tłóčatka, zo byšće po datowych sadźbach nawigěrował abo zapodajće čisło datoweje sadźby, zo byšće datowu sadźbu pokazał." #. hPwMj #: sw/uiconfig/swriter/ui/createaddresslist.ui:349 @@ -17122,7 +17122,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:429 msgctxt "inputwinmenu|int" msgid "Int" -msgstr "INT" +msgstr "Cyłaličba" #. ytZBB #: sw/uiconfig/swriter/ui/inputwinmenu.ui:437 @@ -18106,7 +18106,7 @@ #: sw/uiconfig/swriter/ui/labeldialog.ui:8 msgctxt "labeldialog|LabelDialog" msgid "Labels" -msgstr "Popisy" +msgstr "Etikety" #. jnQsV #: sw/uiconfig/swriter/ui/labeldialog.ui:25 @@ -18124,7 +18124,7 @@ #: sw/uiconfig/swriter/ui/labeldialog.ui:144 msgctxt "labeldialog|labels" msgid "Labels" -msgstr "Popisy" +msgstr "Etikety" #. G378Z #: sw/uiconfig/swriter/ui/labeldialog.ui:192 @@ -20470,13 +20470,13 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87 msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL" msgid "Promote Outline Level" -msgstr "Rozrjadowu runinu horje přesunyć" +msgstr "Rozrjadowansku runinu horje přesunyć" #. GRZmf #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96 msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL" msgid "Demote Outline Level" -msgstr "Rozrjadowu runinu dele přesunyć" +msgstr "Rozrjadowansku runinu dele přesunyć" #. tukRq #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105 @@ -20542,7 +20542,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:192 msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT" msgid "Outline Folding" -msgstr "Rozrjadowe fałdowanje" +msgstr "Rozrjadowanske fałdowanje" #. EBK2E #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:212 @@ -20788,7 +20788,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:494 msgctxt "navigatorpanel|extended_tip|reminder" msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button." -msgstr "Klikńće tu, zo byšće na aktualnej poziciji kursora dopomnjeće stajił. Móžeće hač do pjeć dopomnjećow definować. Zo byšće k dopomnjeću skočił, klikńće na symbol „Nawigować po“, we woknje „Nawigator“ na symbol „Dopomnjeće“ a potom na tłóčatko „Předchadne dopomnjeće“ abo „Přichodne dopomnjeće“." +msgstr "Klikńće tu, zo byšće na aktualnej poziciji kursora dopomnjeće stajił. Móžeće hač do pjeć dopomnjećow definować. Zo byšće k dopomnjeću skočił, klikńće na symbol „Nawigěrować po“, we woknje „Nawigator“ na symbol „Dopomnjeće“ a potom na tłóčatko „Předchadne dopomnjeće“ abo „Přichodne dopomnjeće“." #. PjUEP #: sw/uiconfig/swriter/ui/navigatorpanel.ui:516 @@ -20818,25 +20818,25 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:570 msgctxt "navigatorpanel|promote|tooltip_text" msgid "Promote outline level" -msgstr "Rozrjadowu runinu horje přesunyć" +msgstr "Rozrjadowansku runinu horje přesunyć" #. dvQYH #: sw/uiconfig/swriter/ui/navigatorpanel.ui:574 msgctxt "navigatorpanel|extended_tip|promote" msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon." -msgstr "Powjetša rozrjadowu runinu wubraneho nadpisma, a nadpisma, kotrež su pod nadpismom wo jednu runinu. Zo byšće jenož rozrjadowu runinu wubraneho nadpisma powjetšił, dźeržće tastu Strg tłóčenu a klikńće potom na tutón symbol." +msgstr "Powjetša rozrjadowansku runinu wubraneho nadpisma, a nadpisma, kotrež su pod nadpismom wo jednu runinu. Zo byšće jenož rozrjadowansku runinu wubraneho nadpisma powjetšił, dźeržće tastu Strg tłóčenu a klikńće potom na tutón symbol." #. DoiCW #: sw/uiconfig/swriter/ui/navigatorpanel.ui:586 msgctxt "navigatorpanel|demote|tooltip_text" msgid "Demote outline level" -msgstr "Rozrjadowu runinu dele přesunyć" +msgstr "Rozrjadowansku runinu dele přesunyć" #. NHBAZ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:590 msgctxt "navigatorpanel|extended_tip|demote" msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon." -msgstr "Pomjeńša rozrjadowu runinu wubraneho nadpisma, a nadpisma, kotrež su pod nadpismom wo jednu runinu. Zo byšće jenož rozrjadowu runinu wubraneho nadpisma pomjeńšił, dźeržće tastu Strg tłóčenu a klikńće potom na tutón symbol." +msgstr "Pomjeńša rozrjadowansku runinu wubraneho nadpisma, a nadpisma, kotrež su pod nadpismom wo jednu runinu. Zo byšće jenož rozrjadowansku runinu wubraneho nadpisma pomjeńšił, dźeržće tastu Strg tłóčenu a klikńće potom na tutón symbol." #. Bbq3k #: sw/uiconfig/swriter/ui/navigatorpanel.ui:602 @@ -22283,19 +22283,19 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:41 msgctxt "numparapage|labelFT_OUTLINE_LEVEL" msgid "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style." -msgstr "Wubjerće abo změńće rozrjadowu runinu, kotraž so ma na wubrane wotstawki abo wotstawkowu předłohu nałožić." +msgstr "Wubjerće abo změńće rozrjadowansku runinu, kotraž so ma na wubrane wotstawki abo wotstawkowu předłohu nałožić." #. Rekgx #: sw/uiconfig/swriter/ui/numparapage.ui:42 msgctxt "numparapage|labelFT_OUTLINE_LEVEL" msgid "Outline level:" -msgstr "Rozrjadowa runina:" +msgstr "Rozrjadowanska runina:" #. CHRqd #: sw/uiconfig/swriter/ui/numparapage.ui:57 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Assigned Outline Level" -msgstr "Připokazana rozrjadowa runina" +msgstr "Připokazana rozrjadowanska runina" #. y9mKV #: sw/uiconfig/swriter/ui/numparapage.ui:59 @@ -22367,7 +22367,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:73 msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL" msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style." -msgstr "Připokazuje wubranym wotstawkam abo wotstawkowej předłoze rozrjadowu runinu wot 1 do 10." +msgstr "Připokazuje wubranym wotstawkam abo wotstawkowej předłoze rozrjadowansku runinu wot 1 do 10." #. A9CrD #: sw/uiconfig/swriter/ui/numparapage.ui:89 @@ -22505,7 +22505,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:447 msgctxt "numparapage|extended_tip|NumParaPage" msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list." -msgstr "Přidawa wotstawkej rozrjadowu runinu, lisćinowu předłohu a čisłowanje linkow abo wotstronja je z njeho. Móžeće čisłowanje w čisłowanej lisćinje wróćo stajić." +msgstr "Přidawa wotstawkej rozrjadowansku runinu, lisćinowu předłohu a čisłowanje linkow abo wotstronja je z njeho. Móžeće čisłowanje w čisłowanej lisćinje wróćo stajić." #. GHR9r #: sw/uiconfig/swriter/ui/objectdialog.ui:8 @@ -24049,7 +24049,7 @@ #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:189 msgctxt "outlinenumberingpage|extended_tip|numbering" msgid "Select the numbering scheme that you want to apply to the selected outline level." -msgstr "Wubjerće čisłowansku šemu, kotruž chceće na wubranu rozrjadowu runinu nałožić." +msgstr "Wubjerće čisłowansku šemu, kotruž chceće na wubranu rozrjadowansku runinu nałožić." #. BSBWE #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:205 @@ -24773,7 +24773,7 @@ #: sw/uiconfig/swriter/ui/paradialog.ui:354 msgctxt "paradialog|labelTP_NUMPARA" msgid "Set outline level, list style and line numbering for paragraph." -msgstr "Nastajće rozrjadowu runinu, lisćinowu předłohu a linkowe čisłowanje za wotstawk." +msgstr "Nastajće rozrjadowansku runinu, lisćinowu předłohu a linkowe čisłowanje za wotstawk." #. BzbWJ #: sw/uiconfig/swriter/ui/paradialog.ui:402 @@ -27819,7 +27819,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:315 msgctxt "templatedialog16|outline" msgid "Choose a predefined outline format" -msgstr "Wubjerće předdefinowany rozrjadowy format" +msgstr "Wubjerće předdefinowany rozrjadowanski format" #. Dp6La #: sw/uiconfig/swriter/ui/templatedialog16.ui:363 @@ -27855,7 +27855,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:462 msgctxt "templatedialog16|customize" msgid "Design your own list or outline format" -msgstr "Wuhotujće swójski lisćinowy abo rozrjadowy format" +msgstr "Wuhotujće swójski lisćinowy abo rozrjadowanski format" #. 6ozqU #: sw/uiconfig/swriter/ui/templatedialog2.ui:9 @@ -27969,7 +27969,7 @@ #: sw/uiconfig/swriter/ui/templatedialog2.ui:936 msgctxt "templatedialog2|outline" msgid "Set outline level, list style and line numbering for paragraph style." -msgstr "Nastajće rozrjadowu runinu, lisćinowu předłohu a linkowe čisłowanje za wotstawkowu předłohu." +msgstr "Nastajće rozrjadowansku runinu, lisćinowu předłohu a linkowe čisłowanje za wotstawkowu předłohu." #. q8oC5 #: sw/uiconfig/swriter/ui/templatedialog4.ui:9 @@ -29385,7 +29385,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:963 msgctxt "tocindexpage|extended_tip|useff" msgid "Replaces identical index entries that occur on the directly following page(s), with a single entry that lists the first page number and a \"f\" or \"ff\". For example, the entries \"View 10, View 11\" are combined as \"View 10f\", and \"View 10, View 11, View 12\" as \"View 10ff\". Actual appearance depends on the locale setting, but can be overridden with Sort - Language." -msgstr "Wuměnja identiske zapiski zapisa, kotrež na direktnje slědowacych stronach wustupuja, z jeničkim zapiskom, kotryž prěnje čisło strony a „sć.“ abo „sć. sć.“ podawa. Zapiski „napohlad 10, napohlad 11“ so jako „napohlad 10sć.“ kombinujetej a „napohlad 10, napohlad 11, napohlad 12“ so jako „napohlad 10sć. sć.“ kombinuja." +msgstr "Wuměnja identiske zapiski zapisa, kotrež na direktnje slědowacych stronach wustupuja, z jeničkim zapiskom, kotryž prěnje čisło strony a „sć.“ abo „sć. sć.“ podawa. Zapiski „napohlad 10, napohlad 11“ so jako „napohlad 10sć.“ kombinujetej a „napohlad 10, napohlad 11, napohlad 12“ so jako „napohlad 10sć. sć.“ kombinuja. Woprawdźity napohlad wot nastajenja narodneje šemy wotwisuje, da so wšak ze Sortěrować – Rěč přepisać." #. Uivc8 #: sw/uiconfig/swriter/ui/tocindexpage.ui:974 @@ -29781,7 +29781,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:603 msgctxt "viewoptionspage|extended_tip|outlinecontentvisibilitybutton" msgid "Displays outline folding buttons on the left of the outline headings." -msgstr "Pokazuje tłóčatka fałdowanja rozrjada na lěwym boku rozrjadowych nadpismow." +msgstr "Pokazuje tłóčatka fałdowanja rozrjada na lěwym boku rozrjadowanskich nadpismow." #. gAXeG #: sw/uiconfig/swriter/ui/viewoptionspage.ui:614 @@ -29799,7 +29799,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:638 msgctxt "viewoptionspage|outlinelabel" msgid "Outline Folding" -msgstr "Rozrjadowe fałdowanje" +msgstr "Rozrjadowanske fałdowanje" #. LZT9X #: sw/uiconfig/swriter/ui/viewoptionspage.ui:666 diff -Nru libreoffice-7.4.6/translations/source/hu/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.4.7/translations/source/hu/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.4.6/translations/source/hu/helpcontent2/source/text/sbasic/shared/03.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hu/helpcontent2/source/text/sbasic/shared/03.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-12-12 16:14+0000\n" +"PO-Revision-Date: 2023-04-01 21:32+0000\n" "Last-Translator: Armin Timar \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1538676487.000000\n" #. ViEWM @@ -545,7 +545,7 @@ "bm_id231529070133574\n" "help.text" msgid "BASIC ImportWizard library" -msgstr "" +msgstr "BASIC ImportWizard programkönyvtár" #. GFoap #: lib_importwiz.xhp @@ -1013,7 +1013,7 @@ "bm_id231529070133574\n" "help.text" msgid "BASIC WikiEditor library" -msgstr "" +msgstr "BASIC WikiEditor programkönyvtár" #. qGFuz #: lib_wikieditor.xhp @@ -1103,7 +1103,7 @@ "hd_id981586595097630\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "A szolgáltatás igénybevétele" #. CPbHQ #: sf_array.xhp @@ -1139,7 +1139,7 @@ "par_id571609956486468\n" "help.text" msgid "Because Python has built-in list and tuple support, most of the methods in the Array service are available for Basic scripts only. The only exception is ImportFromCSVFile which is supported in both Basic and Python." -msgstr "" +msgstr "Mivel a Python beépített lista és tuple támogatással rendelkezik, az Array szolgáltatás legtöbb metódusa csak Basic parancsfájlok számára érhető el. Az egyetlen kivétel az ImportFromCSVFile, amely Basic és Python nyelven is támogatott." #. SFTcE #: sf_array.xhp @@ -1157,7 +1157,7 @@ "par_id191582454485250\n" "help.text" msgid "The first argument of most methods is the array object to be considered. It is always passed by reference and left unchanged. Methods such as Append, Prepend, etc return a new array object after their execution." -msgstr "" +msgstr "A legtöbb metódus első argumentuma a figyelembe veendő tömbobjektum. Ezt mindig hivatkozással adjuk át, és változatlanul hagyjuk. Az olyan metódusok, mint a Hozzáfűzés, Eléfűzés stb. a végrehajtásuk után egy új tömbobjektumot adnak vissza." #. n84zh #: sf_array.xhp @@ -1373,7 +1373,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 "" +msgstr "A Copy metódus használatával a teljes Array objektum másolata készül. Az alábbi példában a és b különböző objektumok, és b értékeinek megváltoztatása nem befolyásolja a értékeit." #. UycBx #: sf_array.xhp @@ -1571,7 +1571,7 @@ "par_id431585757822181\n" "help.text" msgid "Stack all single items of an array and all items in its subarrays into one new array without subarrays. Empty subarrays are ignored and subarrays with a number of dimensions greater than one are not flattened." -msgstr "" +msgstr "Egy tömb minden egyes elemét és az altömbök összes elemét egy új, altömbök nélküli tömbbe halmozza. Az üres altömböket figyelmen kívül hagyja, és az egynél nagyobb dimenziószámú altömböket nem lapítja ki." #. CNFGJ #: sf_array.xhp @@ -1895,7 +1895,7 @@ "par_id441582627664147\n" "help.text" msgid "Inserts into a sorted array a new item on its place.
The array must be filled homogeneously, meaning that all items must be scalars of the same type.
Empty and Null items are forbidden." -msgstr "" +msgstr "Rendezett tömbbe egy új elemet a helyére szúr be.
A tömböt homogén módon kell feltölteni, ami azt jelenti, hogy minden elemnek azonos típusú skalárnak kell lennie.
Empty és Null elemek használata tilos." #. jBpdF #: sf_array.xhp @@ -2687,7 +2687,7 @@ "par_id281619037857187\n" "help.text" msgid "form: The name or index number of the form stored in the form document. If this argument is absent, the method will return a list with the names of all forms available in the form document." -msgstr "" +msgstr "form: Az űrlap-dokumentumban tárolt űrlap neve vagy indexszáma. Ha ez az argumentum hiányzik, a metódus egy listát ad vissza, amely az űrlap-dokumentumban elérhető összes űrlap nevét tartalmazza." #. K4nQh #: sf_base.xhp @@ -3407,7 +3407,7 @@ "par_id441618674018955\n" "help.text" msgid "The computed date." -msgstr "" +msgstr "A számított dátum." #. GuCbF #: sf_basic.xhp @@ -4136,7 +4136,7 @@ "par_id721591024294894\n" "help.text" msgid "A single cell" -msgstr "" +msgstr "Egy cella" #. AcGDY #: sf_calc.xhp @@ -4253,7 +4253,7 @@ "par_id101591024294151\n" "help.text" msgid "~.~ or ~" -msgstr "" +msgstr "~.~ vagy ~" #. kmjCL #: sf_calc.xhp @@ -4694,7 +4694,7 @@ "par_id861591025591250\n" "help.text" msgid "Array of strings" -msgstr "" +msgstr "Karakterláncok tömbje" #. qGsms #: sf_calc.xhp @@ -5117,7 +5117,7 @@ "par_id771592919932260\n" "help.text" msgid "wholecolumn: If this option is set to True the entire column will be deleted from the sheet. The default value is False, which means that the deleted column will be limited to the height of the specified range." -msgstr "" +msgstr " wholecolumn: Ha ez az opció True értékre van állítva, akkor a teljes oszlop törlődik a lapról. Az alapértelmezett érték False, ami azt jelenti, hogy a törölt oszlop a megadott range magasságára lesz korlátozva." #. M7qto #: sf_calc.xhp @@ -5297,7 +5297,7 @@ "par_id771592919921160\n" "help.text" msgid "wholerow: If this option is set to True the entire row will be deleted from the sheet. The default value is False, which means that the deleted row will be limited to the width of the specified range." -msgstr "" +msgstr " wholerow: Ha ez az opció True értékre van állítva, akkor a teljes sor törlődik a lapról. Az alapértelmezett érték False, ami azt jelenti, hogy a törölt sor a megadott range szélességére lesz korlátozva." #. pKXWR #: sf_calc.xhp @@ -5432,7 +5432,7 @@ "par_id591591631693816\n" "help.text" msgid "Copies a specified sheet before an existing sheet or at the end of the list of sheets. The sheet to be copied may be contained inside any open Calc document. Returns True if successful." -msgstr "" +msgstr "Egy megadott munkalapot egy meglévő munkalap elé vagy a munkalapok listájának végére másol. A másolandó munkalap bármely nyitott Calc dokumentumban lehet. Siker esetén True értéket ad vissza." #. YqGL2 #: sf_calc.xhp @@ -5459,7 +5459,7 @@ "par_id211591632192379\n" "help.text" msgid "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position." -msgstr "" +msgstr "beforesheet: Annak a munkalapnak a neve (karakterlánc) vagy indexe (szám, 1-től kezdődően), amely elé a másolt munkalap beszúrásra kerül. Ez az argumentum opcionális, és az alapértelmezett viselkedés szerint a másolt munkalapot az utolsó pozícióba szúrja be." #. yuvEn #: sf_calc.xhp @@ -5504,7 +5504,7 @@ "par_id931591714614755\n" "help.text" msgid "Copies a specified sheet from a closed Calc document and pastes it before an existing sheet or at the end of the list of sheets of the file referred to by a Document object." -msgstr "" +msgstr "Egy megadott munkalapot másol egy zárt Calc dokumentumból, és beilleszti egy meglévő munkalap elé vagy a Document objektum által hivatkozott fájl munkalaplistájának végére." #. M9mDA #: sf_calc.xhp @@ -5549,7 +5549,7 @@ "par_id601591714614407\n" "help.text" msgid "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position." -msgstr "" +msgstr "beforesheet: Annak a munkalapnak a neve (karakterlánc) vagy indexe (szám, 1-től kezdődően), amely elé a másolt munkalap beszúrásra kerül. Ez az argumentum opcionális, és az alapértelmezett viselkedés szerint a másolt munkalapot az utolsó pozícióba szúrja be." #. iEHJy #: sf_calc.xhp @@ -5648,7 +5648,7 @@ "par_id61592905442071\n" "help.text" msgid "To simulate a Copy/Paste from a range to a single cell, use CopyToCell. To simulate a Copy/Paste from a range to a larger range (with the same cells being replicated several times), use CopyToRange." -msgstr "" +msgstr "A tartományból egy cellába történő másolás/beillesztés szimulálásához használja a CopyToCell parancsot. Egy tartományból egy nagyobb tartományba történő másolás/beillesztés szimulálásához (ugyanazokat a cellákat többször is megismételve) használja a CopyToRange parancsot." #. maHke #: sf_calc.xhp @@ -5657,7 +5657,7 @@ "par_id1615929031212\n" "help.text" msgid "Copies downwards and/or rightwards a specified source range (values, formulas and formats) to a destination range. The method imitates the behaviour of a Copy/Paste operation from a source range to a larger destination range." -msgstr "" +msgstr "Egy megadott forrástartományt (értékek, képletek és formátumok) lefelé és/vagy jobbra másol egy céltartományba. A módszer a másolás/beillesztés művelet viselkedését utánozza egy forrás tartományból egy nagyobb céltartományba." #. G4qky #: sf_calc.xhp @@ -5666,7 +5666,7 @@ "par_id271592904084534\n" "help.text" msgid "If the height (or width) of the destination area is > 1 row (or column) then the height (or width) of the source must be <= the height (or width) of the destination. Otherwise nothing happens." -msgstr "" +msgstr "Ha a célterület magassága (vagy szélessége) > 1 sor (vagy oszlop), akkor a forrás magasságának (vagy szélességének) <= a célterület magasságának (vagy szélességének) kell lennie. Ellenkező esetben nem történik semmi." #. Pko2R #: sf_calc.xhp @@ -5873,7 +5873,7 @@ "par_id5515929031951290\n" "help.text" msgid "datafields: It can be either a single string or an array containing strings that define field names and functions to be applied. When an array is specified, it must follow the syntax Array(\"FieldName[;Function]\", ...)." -msgstr "" +msgstr "datafields: Ez lehet egyetlen karakterlánc vagy egy tömb, amely a mezők nevét és az alkalmazandó függvényeket meghatározó karakterláncokat tartalmazza. Tömb megadásakor a Array(\"FieldName[;Function]\", ...) szintaxist kell követnie." #. cKZ3U #: sf_calc.xhp @@ -6080,7 +6080,7 @@ "pyc_id471652797992561\n" "help.text" msgid "\"Item\"," -msgstr "" +msgstr "\"Elem\"," #. oL69n #: sf_calc.xhp @@ -6260,7 +6260,7 @@ "par_id451623063459286\n" "help.text" msgid "form: The name or index corresponding to a form stored in the specified sheet. If this argument is absent, the method will return a list with the names of all forms available in the sheet." -msgstr "" +msgstr "form A megadott munkalapon tárolt űrlap neve vagy indexszáma. Ha ez az argumentum hiányzik, a metódus egy listát ad vissza, amely a munkalapon elérhető összes űrlap nevét tartalmazza." #. sFFyE #: sf_calc.xhp @@ -6269,7 +6269,7 @@ "par_id251623063305557\n" "help.text" msgid "In the following examples, the first line gets the names of all forms stored in \"Sheet1\" and the second line retrieves the Form object of the form named \"Form_A\" which is stored in \"Sheet1\"." -msgstr "" +msgstr "A következő példákban az első sor a \"Munkalap1\"-ben tárolt összes űrlap nevét kapja meg, a második sor pedig a \"Munkalap1\"-ben tárolt \"Űrlap_A\" nevű űrlap Form objektumát hívja le." #. y9kCE #: sf_calc.xhp @@ -6278,7 +6278,7 @@ "par_id401591632726431\n" "help.text" msgid "Converts a column number ranging between 1 and 1024 into its corresponding letter (column 'A', 'B', ..., 'AMJ'). If the given column number is outside the allowed range, a zero-length string is returned." -msgstr "" +msgstr "Az 1 és 1024 közötti oszlopszámot átalakítja a megfelelő betűre ('A', 'B', ..., 'AMJ' oszlop). Ha a megadott oszlopszám kívül esik a megengedett tartományon, akkor egy nulla hosszúságú karakterláncot kap vissza." #. EfsXe #: sf_calc.xhp @@ -6377,7 +6377,7 @@ "par_id751611756909199\n" "help.text" msgid "The destination area is cleared of all contents and formats before inserting the contents of the CSV file. The size of the modified area is fully determined by the contents of the input file." -msgstr "" +msgstr "A célterületet a CSV-fájl tartalmának beillesztése előtt minden tartalomtól és formátumtól megtisztítja. A módosított terület méretét teljes mértékben a bemeneti fájl tartalma határozza meg." #. D2w2A #: sf_calc.xhp @@ -6557,7 +6557,7 @@ "par_id451599489278429\n" "help.text" msgid "sqlcommand: A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability." -msgstr "" +msgstr "sqlcommand: Egy táblázat vagy lekérdezés neve (idézőjelek vagy szögletes zárójelek nélkül) vagy egy SELECT SQL utasítás, amelyben a táblázat- és mezőneveket szögletes zárójelekkel vagy idézőjelekkel lehet körülvenni az olvashatóság javítása érdekében." #. wFpLr #: sf_calc.xhp @@ -6566,7 +6566,7 @@ "par_id271599489278141\n" "help.text" msgid "directsql: When True, the SQL command is sent to the database engine without pre-analysis. Default is False. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined." -msgstr "" +msgstr "directsql: Ha True, akkor az SQL parancsot előzetes elemzés nélkül küldi el az adatbázis-motornak. Az alapértelmezett érték False. Az argumentum táblázatok esetében figyelmen kívül hagyásra kerül. A lekérdezések esetében az alkalmazott opció a lekérdezés definiálásakor beállított opció." #. toj8z #: sf_calc.xhp @@ -6593,7 +6593,7 @@ "par_id84159169847269\n" "help.text" msgid "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet. This argument is optional and the default behavior is to insert the sheet at the last position." -msgstr "" +msgstr "beforesheet: Annak a munkalapnak a neve (karakterlánc) vagy indexe (szám, 1-től kezdődően), amely elé az új munkalap beszúrásra kerül. Ez az argumentum opcionális, és az alapértelmezett viselkedés szerint a munkalapot az utolsó pozícióba szúrja be." #. UCmit #: sf_calc.xhp @@ -6611,7 +6611,7 @@ "par_id6415925694762\n" "help.text" msgid "Moves a specified source range to a destination range of cells. The method returns a string representing the modified range of cells. The dimension of the modified area is fully determined by the size of the source area." -msgstr "" +msgstr "Egy megadott forrástartományt áthelyez egy célcellatartományba. A metódus a módosított cellatartományt ábrázoló karakterláncot adja vissza. A módosított terület méretét teljes mértékben a forrásterület mérete határozza meg." #. UqxZv #: sf_calc.xhp @@ -6656,7 +6656,7 @@ "par_id9159169890334\n" "help.text" msgid "beforesheet: The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed. This argument is optional and the default behavior is to move the sheet to the last position." -msgstr "" +msgstr "beforesheet: Annak a munkalapnak a neve (karakterlánc) vagy indexe (szám, 1-től kezdődően), amely elé az eredeti munkalap kerül. Ez az argumentum opcionális, és az alapértelmezett viselkedés szerint a munkalapot az utolsó pozícióba szúrja be." #. pd5t4 #: sf_calc.xhp @@ -6782,7 +6782,7 @@ "par_id301637936295380\n" "help.text" msgid "This method opens the same dialog that is used by %PRODUCTNAME when the Shrink button is pressed. For example, the Tools - Goal Seek dialog has a Shrink button to the right of the Formula cell field." -msgstr "" +msgstr "Ez a módszer ugyanazt a párbeszédablakot nyitja meg, amelyet a %PRODUCTNAME használ a zsugorítás gomb megnyomásakor. Például az Eszközök - Célértékkeresés párbeszédablakban a Képletcella mező jobb oldalán található a zsugorítás gomb." #. XUoah #: sf_calc.xhp @@ -6854,7 +6854,7 @@ "par_id171637938442558\n" "help.text" msgid "This method can be used to quickly extract specific parts of a range name, such as the sheet name or first cell column and row, and use them to compose a new range address." -msgstr "" +msgstr "Ezzel a metódussal gyorsan kivehetjük a tartománynév bizonyos részeit, például a munkalap nevét vagy az első cella oszlopát és sorát, és ezekből egy új tartománycímet állíthatunk össze." #. RAAVz #: sf_calc.xhp @@ -7160,7 +7160,7 @@ "par_id461592232081985\n" "help.text" msgid "value: A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied." -msgstr "" +msgstr "value: A tartomány minden egyes cellájának új értékeit tartalmazó skalár, vektor vagy tömb. Az új értékeknek karakterláncoknak, számoknak vagy dátumoknak kell lenniük. Más típusok esetén a megfelelő cellák kiürülnek." #. CgwVF #: sf_calc.xhp @@ -7223,7 +7223,7 @@ "par_id521595767687154\n" "help.text" msgid "Applies the specified cell style to the given target range. The full range is updated and the remainder of the sheet is left untouched. If the cell style does not exist, an error is raised." -msgstr "" +msgstr "A megadott cellastílust alkalmazza a megadott céltartományra. A teljes tartomány frissül, a lap többi része pedig érintetlen marad. Ha a cellastílus nem létezik, hibaüzenet jelenik meg." #. nxDCd #: sf_calc.xhp @@ -7403,7 +7403,7 @@ "par_id941593880376566\n" "help.text" msgid "wholerow: If set to False (default), then the width of the inserted rows will be the same as the width of the specified range. Otherwise, the inserted row will span all columns in the sheet." -msgstr "" +msgstr "wholerow: Ha False (alapértelmezett), akkor a beillesztett sorok szélessége megegyezik a megadott range szélességével. Ellenkező esetben a beillesztett sor a lap összes oszlopát átfogja." #. rXzZX #: sf_calc.xhp @@ -7493,7 +7493,7 @@ "par_id941593880356026\n" "help.text" msgid "wholecolumn: If set to False (default), then the height of the deleted columns will be the same as the height of the specified range. Otherwise, the deleted columns will span all rows in the sheet." -msgstr "" +msgstr "wholecolumn: Ha False (alapértelmezett), akkor a törölt oszlopok magassága megegyezik a megadott range magasságával. Ellenkező esetben a törölt oszlop a lap összes sorát átfogja." #. JLdBr #: sf_calc.xhp @@ -7574,7 +7574,7 @@ "par_id941593880300966\n" "help.text" msgid "wholerow: If set to False (default), then the width of the deleted rows will be the same as the width of the specified range. Otherwise, the deleted row will span all columns in the sheet." -msgstr "" +msgstr "wholerow: Ha False (alapértelmezett), akkor a törölt sorok szélessége megegyezik a megadott range szélességével. Ellenkező esetben a törölt sor a lap összes oszlopát átfogja." #. ueo8E #: sf_calc.xhp @@ -7664,7 +7664,7 @@ "par_id941593880373316\n" "help.text" msgid "wholecolumn: If set to False (default), then the height of the inserted columns will be the same as the height of the specified range. Otherwise, the inserted columns will span all rows in the sheet." -msgstr "" +msgstr "wholecolumn: Ha False (alapértelmezett), akkor a beillesztett oszlopok magassága megegyezik a megadott range magasságával. Ellenkező esetben a beillesztett oszlop a lap összes sorát átfogja." #. fBzCG #: sf_calc.xhp @@ -8753,7 +8753,7 @@ "hd_id841587913266618\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Tulajdonságok" #. x4Z5A #: sf_database.xhp @@ -8762,7 +8762,7 @@ "par_id521587913266568\n" "help.text" msgid "Name" -msgstr "" +msgstr "Név" #. QUrYT #: sf_database.xhp @@ -8771,7 +8771,7 @@ "par_id421587913266368\n" "help.text" msgid "Readonly" -msgstr "" +msgstr "Írásvédett" #. 3kQCm #: sf_database.xhp @@ -8780,7 +8780,7 @@ "par_id631587914939732\n" "help.text" msgid "Type" -msgstr "" +msgstr "Típus" #. RYuuo #: sf_database.xhp @@ -8789,7 +8789,7 @@ "par_id951587913266220\n" "help.text" msgid "Description" -msgstr "" +msgstr "Leírás" #. BzLQb #: sf_database.xhp @@ -8798,7 +8798,7 @@ "par_id651587913266754\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Igen" #. up8WT #: sf_database.xhp @@ -8807,7 +8807,7 @@ "par_id421587914989890\n" "help.text" msgid "Array of strings" -msgstr "" +msgstr "Karakterláncok tömbje" #. dGoYp #: sf_database.xhp @@ -8825,7 +8825,7 @@ "par_id931599409717463\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Igen" #. 2DDTs #: sf_database.xhp @@ -8834,7 +8834,7 @@ "par_id71599409717945\n" "help.text" msgid "Array of strings" -msgstr "" +msgstr "Karakterláncok tömbje" #. rGTvw #: sf_database.xhp @@ -8852,7 +8852,7 @@ "par_id741599409777967\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Igen" #. evuSw #: sf_database.xhp @@ -9077,7 +9077,7 @@ "par_id271599489278141\n" "help.text" msgid "directsql: When True, the SQL command is sent to the database engine without pre-analysis. Default is False. This argument is ignored for tables. For queries, the applied option is the one set when the query was defined." -msgstr "" +msgstr "directsql: Ha True, akkor az SQL parancsot előzetes elemzés nélkül küldi el az adatbázis-motornak. Az alapértelmezett érték False. Az argumentum táblázatok esetében figyelmen kívül hagyásra kerül. A lekérdezések esetében az alkalmazott opció a lekérdezés definiálásakor beállított opció." #. DEzQD #: sf_database.xhp @@ -9338,7 +9338,7 @@ "par_id601619622310089\n" "help.text" msgid "Or using Python:" -msgstr "" +msgstr "Vagy Python használatával:" #. knENA #: sf_dialog.xhp @@ -9680,7 +9680,7 @@ "par_id281612628879819\n" "help.text" msgid "Basic IDE Description" -msgstr "" +msgstr "Basic IDE leírása" #. dFkbN #: sf_dialog.xhp @@ -9698,7 +9698,7 @@ "par_id1001612629836902\n" "help.text" msgid "When receiving focus" -msgstr "" +msgstr "Amikor a fókuszt megkapja" #. 4FBaJ #: sf_dialog.xhp @@ -9716,7 +9716,7 @@ "par_id62161262983683\n" "help.text" msgid "When losing focus" -msgstr "" +msgstr "Amikor a fókuszt elveszti" #. wBCKi #: sf_dialog.xhp @@ -9842,7 +9842,7 @@ "par_id381612629836635\n" "help.text" msgid "Mouse button pressed" -msgstr "" +msgstr "Egérgomb lenyomása" #. czknv #: sf_dialog.xhp @@ -9860,7 +9860,7 @@ "par_id35161262983642\n" "help.text" msgid "Mouse button released" -msgstr "" +msgstr "Egérgomb elengedése" #. gTQjc #: sf_dialog.xhp @@ -10202,7 +10202,7 @@ "par_id21598187953697\n" "help.text" msgid "Moves the topleft corner of a dialog to new coordinates and/or modify its dimensions. All distances are expressed in 1/100 mm. Without arguments, the method resets the initial dimensions. Return True if the resize was successful." -msgstr "" +msgstr "A párbeszédablak bal felső sarkát új koordinátákra mozgatja és/vagy módosítja a méreteit. Minden távolság 1/100 mm-ben van megadva. Argumentumok nélkül a metódus visszaállítja a kezdeti méreteket. True értéket ad vissza, ha az átméretezés sikeres volt." #. XRdLE #: sf_dialog.xhp @@ -10265,7 +10265,7 @@ "par_id181620112217958\n" "help.text" msgid "With Python:" -msgstr "" +msgstr "Pythonnal:" #. gBerj #: sf_dialog.xhp @@ -10292,7 +10292,7 @@ "par_id951620300687150\n" "help.text" msgid "Below Basic and Python examples open DlgConsole and dlgTrace non-modal dialogs. They are respectively stored in ScriptForge and Access2Base shared libraries. Dialog close buttons are disabled and explicit termination is performed at the end of a running process." -msgstr "" +msgstr "Az alábbi Basic és Python példák megnyitják a DlgConsole és dlgTrace nem modális párbeszédablakokat. Ezek a ScriptForge és Access2Base megosztott könyvtárakban vannak tárolva. A párbeszédablakok bezárására szolgáló gombok le vannak tiltva, és a folyamat végén explicit befejezés történik." #. W3W3Y #: sf_dialog.xhp @@ -10517,7 +10517,7 @@ "par_id291598538799794\n" "help.text" msgid "Applicable to" -msgstr "" +msgstr "Alkalmazható a" #. emDac #: sf_dialogcontrol.xhp @@ -11201,7 +11201,7 @@ "par_id741598543254376\n" "help.text" msgid "Boolean or Integer" -msgstr "" +msgstr "Logikai vagy egész" #. 7GZGS #: sf_dialogcontrol.xhp @@ -11246,7 +11246,7 @@ "par_id221598543254760\n" "help.text" msgid "String or Numeric" -msgstr "" +msgstr "Karakterlánc vagy szám" #. 53Ztp #: sf_dialogcontrol.xhp @@ -11435,7 +11435,7 @@ "par_id1001612629836902\n" "help.text" msgid "When receiving focus" -msgstr "" +msgstr "Amikor a fókuszt megkapja" #. Mp4i7 #: sf_dialogcontrol.xhp @@ -11453,7 +11453,7 @@ "par_id62161262983683\n" "help.text" msgid "When losing focus" -msgstr "" +msgstr "Amikor a fókuszt elveszti" #. TR5uW #: sf_dialogcontrol.xhp @@ -11471,7 +11471,7 @@ "par_id211612707354899\n" "help.text" msgid "Item status changed" -msgstr "" +msgstr "Elem állapota változott" #. L6e2x #: sf_dialogcontrol.xhp @@ -11597,7 +11597,7 @@ "par_id381612629836635\n" "help.text" msgid "Mouse button pressed" -msgstr "" +msgstr "Egérgomb lenyomása" #. krueU #: sf_dialogcontrol.xhp @@ -11615,7 +11615,7 @@ "par_id35161262983642\n" "help.text" msgid "Mouse button released" -msgstr "" +msgstr "Egérgomb elengedése" #. FkyLb #: sf_dialogcontrol.xhp @@ -11705,7 +11705,7 @@ "par_id741612711823706\n" "help.text" msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the OnNodeExpanded event - to complete the tree dynamically." -msgstr "" +msgstr "Ezt a metódust a párbeszédablak megjelenítése előtt lehet meghívni a kezdeti fa felépítéséhez. Meghívható egy párbeszédablakból vagy vezérlőeseményből is - az OnNodeExpanded esemény használatával - a fa dinamikus befejezéséhez." #. T8xdA #: sf_dialogcontrol.xhp @@ -11750,7 +11750,7 @@ "par_id221612713087885\n" "help.text" msgid "Return True when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased." -msgstr "" +msgstr "True értéket ad vissza, ha egy szülő-csomópontnak alárendelt alfa sikeresen beilleszthető a fa vezérlőelembe. Ha a szülő-csomópontnak már voltak gyermek-csomópontjai a metódus hívása előtt, ezek a gyermek-csomópontok törlődnek." #. beond #: sf_dialogcontrol.xhp @@ -11921,7 +11921,7 @@ "par_id1001584541257133\n" "help.text" msgid "dataarray: Data to be entered into the table represented as an Array of Arrays in Basic or a tuple of tuples in Python. The data must include column and row headers if they are to be displayed by the TableControl." -msgstr "" +msgstr "dataarray: A táblázatba beírandó adatok, amelyeket Basicben tömbök tömbjeként, Pythonban tuplek tuplejeként ábrázolnak. Az adatoknak tartalmazniuk kell az oszlop- és sorfejléceket, ha azokat a TableControl meg kívánja jeleníteni." #. 6AKaJ #: sf_dialogcontrol.xhp @@ -11957,7 +11957,7 @@ "par_id171638650502346\n" "help.text" msgid "The Value property returns the selected row in the table. If no row is selected, an empty Array object is returned. The following code snippet shows how to test if any row is selected in the table." -msgstr "" +msgstr "A Value tulajdonság a táblázat kiválasztott sorát adja vissza. Ha nincs kijelölt sor, akkor egy üres Array objektumot kapunk vissza. A következő kódrészlet azt mutatja be, hogyan teszteljük, hogy van-e kiválasztott sor a táblázatban." #. C3f3k #: sf_dialogcontrol.xhp @@ -12011,7 +12011,7 @@ "tit\n" "help.text" msgid "ScriptForge.Dictionary service" -msgstr "" +msgstr "ScriptForge.Dictionary szolgáltatás" #. 4L4A6 #: sf_dictionary.xhp @@ -12074,7 +12074,7 @@ "hd_id581582885621841\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "A szolgáltatás igénybevétele" #. Qp3A4 #: sf_dictionary.xhp @@ -12227,7 +12227,7 @@ "par_id131582886030297\n" "help.text" msgid "Array of Variants" -msgstr "" +msgstr "Változók tömbje" #. EykBP #: sf_dictionary.xhp @@ -12254,7 +12254,7 @@ "par_id271582886791111\n" "help.text" msgid "Array of Strings" -msgstr "" +msgstr "Karakterláncok tömbje" #. MxjyM #: sf_dictionary.xhp @@ -12326,7 +12326,7 @@ "par_id1001610391308765\n" "help.text" msgid "Every key must be unique in the same dictionary. If the key already exists in the dictionary, a DUPLICATEKEYERROR will be raised. Keys that are made of space characters will raise a INVALIDKEYERROR error." -msgstr "" +msgstr "Minden kulcsnak egyedinek kell lennie ugyanabban a szótárban. Ha a kulcs már létezik a szótárban, a rendszer DUPLICATEKEYERROR hibaüzenetet küld. A szóköz karakterekből álló kulcsok INVALIDKEYERROR hibát okoznak." #. FDWkm #: sf_dictionary.xhp @@ -12758,7 +12758,7 @@ "par_id641611090052376\n" "help.text" msgid "Although the Basic language does not offer inheritance between object classes, the latter services may be considered as subclasses of the SFDocuments.Document service. Such subclasses can invoke the properties and methods described below." -msgstr "" +msgstr "Bár a Basic nyelv nem kínál öröklődést az objektumosztályok között, az utóbbi szolgáltatások a SFDocuments.Document szolgáltatás alosztályainak tekinthetők. Az ilyen alosztályok meghívhatják az alább ismertetett tulajdonságokat és metódusokat." #. YMWaA #: sf_document.xhp @@ -12947,7 +12947,7 @@ "par_id16158288679167\n" "help.text" msgid "Returns a ScriptForge.Dictionary object containing all the entries. Document statistics are included. Note that they are specific to the type of document. As an example, a Calc document includes a \"CellCount\" entry. Other documents do not." -msgstr "" +msgstr "Visszaad egy ScriptForge.Dictionary objektumot, amely tartalmazza az összes bejegyzést. A dokumentumstatisztikákat is tartalmazza. Vegye figyelembe, hogy ezek a dokumentum típusára jellemzőek. Egy Calc dokumentum például tartalmaz egy \"CellCount\" bejegyzést, amit más dokumentumok nem tartalmaznak." #. Ew7vi #: sf_document.xhp @@ -13559,7 +13559,7 @@ "par_id721611153068137\n" "help.text" msgid "The following example runs the SelectData command in a Calc file named \"MyFile.ods\", which will result in the selection of the data area based on the currently selected cell. Note that this command does not require any arguments." -msgstr "" +msgstr "A következő példa a SelectData parancsot futtatja a \"SajátFájl.ods\" nevű Calc fájlban, ami az adatterület kiválasztását eredményezi az aktuálisan kiválasztott cella alapján. Vegye figyelembe, hogy ez a parancs nem igényel semmilyen argumentumot." #. GGDgF #: sf_document.xhp @@ -13568,7 +13568,7 @@ "par_id371644184276886\n" "help.text" msgid "Below is an example that runs the UNO command ReplaceAll and passes values for its arguments SearchString and ReplaceString. Running this command will replace all occurrence of the string \"abc\" by \"ABC\" in the current sheet." -msgstr "" +msgstr "Az alábbi példában a ReplaceAll UNO-parancsot futtatja, és átadja a SearchString és ReplaceString argumentumok értékeit. A parancs futtatása az \"abc\" karakterlánc minden előfordulását \"ABC\"-vel helyettesíti az aktuális lapon." #. Z4Egf #: sf_document.xhp @@ -13622,7 +13622,7 @@ "par_id731611153918907\n" "help.text" msgid "Returns False if the document could not be saved. An error is raised if the file is open as read-only, or if it is a new file that has not been saved yet." -msgstr "" +msgstr "False értéket ad vissza, ha a dokumentumot nem sikerült elmenteni. Hibaüzenet érkezik, ha a fájl írásvédettként van megnyitva, vagy ha új fájlról van szó, amelyet még nem mentett el." #. Ys5oF #: sf_document.xhp @@ -13829,7 +13829,7 @@ "tit\n" "help.text" msgid "ScriptForge.Exception service (SF_Exception)" -msgstr "" +msgstr "ScriptForge.Exception szolgáltatás (SF_Exception)" #. ikEsF #: sf_exception.xhp @@ -13955,7 +13955,7 @@ "par_id771621035263403\n" "help.text" msgid "In Python scripts the Exception service is mostly used for debugging purposes. Methods such as DebugPrint, Console and DebugDisplay are useful to quickly print messages, log data and open the console window from within a Python script." -msgstr "" +msgstr "A Python parancsfájlokban az Exception szolgáltatást leginkább hibakeresésre használják. Az olyan metódusok, mint a DebugPrint, Console és DebugDisplay hasznosak az üzenetek gyors kinyomtatására, az adatok naplózására és a konzolablak megnyitására egy Python parancsfájlból." #. VAaLU #: sf_exception.xhp @@ -13973,7 +13973,7 @@ "hd_id201586594659135\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "A szolgáltatás igénybevétele" #. T8o7G #: sf_exception.xhp @@ -14180,7 +14180,7 @@ "par_id651598718179382\n" "help.text" msgid "Displays the console messages in a modal or non-modal dialog. In both modes, all the past messages issued by a DebugPrint() method or resulting from an exception are displayed. In non-modal mode, subsequent entries are added automatically." -msgstr "" +msgstr "A konzolüzenetek megjelenítése modális vagy nem modális párbeszédpanelben. Mindkét módban a DebugPrint() metódus által kiadott vagy kivételből eredő összes múltbeli üzenet megjelenik. Nem modális módban a későbbi bejegyzések automatikusan hozzáadódnak." #. KKgdp #: sf_exception.xhp @@ -14378,7 +14378,7 @@ "par_id521621449800348\n" "help.text" msgid "When the APSO Python shell is open, any subsequent output printed by the script will be shown in the shell. Hence, the string printed in the example below will be displayed in the Python shell." -msgstr "" +msgstr "Ha az APSO Python héja nyitva van, a parancsfájl által kiírt minden további kimenet a héjban jelenik meg. Így az alábbi példában kiírt karakterlánc a Python héjban fog megjelenni." #. 5xNCX #: sf_exception.xhp @@ -14396,7 +14396,7 @@ "par_id541587219824771\n" "help.text" msgid "Generates a run-time error. An error message is displayed to the user and reported in the console. The execution is stopped. The Raise() method can be placed inside the normal script flow or in a dedicated error-handling routine." -msgstr "" +msgstr "Futásidejű hibát generál. A hibaüzenet megjelenik a felhasználónak, és a konzolban is megjelenik. A végrehajtás leáll. A Raise() metódus elhelyezhető a normál parancsfájlfolyamban vagy egy külön hibakezelő rutinban." #. RuDTE #: sf_exception.xhp @@ -14693,7 +14693,7 @@ "par_id911584540527980\n" "help.text" msgid "The FileSystem service allows to perform operations over multiple files at the same time. By using name patterns, user scripts can copy, move or delete multiple files. Conversely, Basic built-in methods can only handle single files." -msgstr "" +msgstr "A FileSystem szolgáltatás lehetővé teszi, hogy egyszerre több fájlon végezzenek műveleteket. Névminták használatával a felhasználói parancsfájlok több fájlt másolhatnak, mozgathatnak vagy törölhetnek. Ezzel szemben a Basic beépített módszerei csak egyetlen fájlt tudnak kezelni." #. zNCtF #: sf_filesystem.xhp @@ -14702,7 +14702,7 @@ "hd_id991612918109871\n" "help.text" msgid "File Naming Notation" -msgstr "" +msgstr "Fájlnevek jelölése" #. ZfsFV #: sf_filesystem.xhp @@ -14738,7 +14738,7 @@ "par_id931626652451855\n" "help.text" msgid "The use of the shortcut \"~\" (tilde), which is common in Linux-based operating systems, is not supported to express a path to a folder and file name. Instead of using \"~/Documents/my_file.odt\" use the full path \"/home/user/Documents/my_file.odt\"." -msgstr "" +msgstr "A Linux-alapú operációs rendszerekben elterjedt \"~\" (hullám) rövidítés használata nem támogatott egy mappa és fájlnév elérési útvonalának kifejezésére. A \"~/Dokumentumok/saját_fájl.odt\" helyett használja a teljes elérési utat \"/home/user/Dokumentumok/saját_fájl.odt\"." #. mao7x #: sf_filesystem.xhp @@ -16313,7 +16313,7 @@ "bas_id151618176848874\n" "help.text" msgid "Employees.odb (Base document)" -msgstr "" +msgstr "Employees.odb (Base dokumentum)" #. cz2fJ #: sf_form.xhp @@ -16340,7 +16340,7 @@ "hd_id851616767037521\n" "help.text" msgid "Forms and Subforms" -msgstr "" +msgstr "Űrlapok és alűrlapok" #. GA63u #: sf_form.xhp @@ -16358,7 +16358,7 @@ "par_id711618178831976\n" "help.text" msgid "In Calc and Writer documents, each form can be linked to datasets located in different databases. On the other hand, in Base documents the database contained in the document is common to all forms." -msgstr "" +msgstr "A Calc és Writer dokumentumokban az egyes űrlapok különböző adatbázisokban található adatkészletekhez kapcsolhatók. Ezzel ellentétben a Base dokumentumokban a dokumentumban található adatbázis minden űrlap számára közös." #. wDfhy #: sf_form.xhp @@ -16394,7 +16394,7 @@ "hd_id991618179698545\n" "help.text" msgid "In Writer documents" -msgstr "" +msgstr "Writer dokumentumokban" #. 8s4VD #: sf_form.xhp @@ -16430,7 +16430,7 @@ "hd_id921618179792926\n" "help.text" msgid "In Calc documents" -msgstr "" +msgstr "Calc dokumentumokban" #. yCpnG #: sf_form.xhp @@ -16439,7 +16439,7 @@ "par_id481618179851104\n" "help.text" msgid "A form in a Calc file must have a unique name inside its sheet. Hence, the Forms method requires two arguments, the first indicating the sheet name and the second specifying the form name." -msgstr "" +msgstr "Egy Calc fájlban lévő űrlapnak egyedi névvel kell rendelkeznie a munkalapon belül. Ezért a Forms metódus két argumentumot igényel, az első a munkalap nevét, a második pedig az űrlap nevét adja meg." #. i9Um4 #: sf_form.xhp @@ -16457,7 +16457,7 @@ "hd_id201618180055756\n" "help.text" msgid "In Base documents" -msgstr "" +msgstr "Base dokumentumokban" #. J3Btp #: sf_form.xhp @@ -16538,7 +16538,7 @@ "hd_id211618180379064\n" "help.text" msgid "In Form events" -msgstr "" +msgstr "Form eseményekben" #. WBzCD #: sf_form.xhp @@ -16916,7 +16916,7 @@ "par_id281612628879819\n" "help.text" msgid "Basic IDE Description" -msgstr "" +msgstr "Basic IDE leírás" #. PgdP8 #: sf_form.xhp @@ -16934,7 +16934,7 @@ "par_id1001612629836902\n" "help.text" msgid "Before record change" -msgstr "" +msgstr "Rekordváltozás előtt" #. Mr9ns #: sf_form.xhp @@ -16970,7 +16970,7 @@ "par_id881612629836744\n" "help.text" msgid "Prior to reset" -msgstr "" +msgstr "Alaphelyzetbe állítás előtt" #. Y9d6z #: sf_form.xhp @@ -16988,7 +16988,7 @@ "par_id161612629836775\n" "help.text" msgid "Before record action" -msgstr "" +msgstr "Rekordművelet előtt" #. Zyx2S #: sf_form.xhp @@ -17042,7 +17042,7 @@ "par_id361612629836624\n" "help.text" msgid "After record change" -msgstr "" +msgstr "Rekordváltozás után" #. WprGG #: sf_form.xhp @@ -17150,7 +17150,7 @@ "par_id351616778529352\n" "help.text" msgid "After record action" -msgstr "" +msgstr "Rekordművelet után" #. CxndA #: sf_form.xhp @@ -17258,7 +17258,7 @@ "par_id921618228229529\n" "help.text" msgid "The following example assumes you want to activate the form named FormA located in Sheet1 of the currently open Calc file. It first gets access to the document using the Document service and ThisComponent and then activates the form." -msgstr "" +msgstr "A következő példa feltételezi, hogy a jelenleg megnyitott Calc fájl Sheet1 lapján található FormA nevű űrlapot kívánja aktiválni. Először a Document szolgáltatás és a ThisComponent segítségével hozzáfér a dokumentumhoz, majd aktiválja az űrlapot." #. 4EC5M #: sf_form.xhp @@ -17276,7 +17276,7 @@ "bas_id201618228487565\n" "help.text" msgid "'Activates the form" -msgstr "" +msgstr "'Aktiválja az űrlapot" #. YHxMm #: sf_form.xhp @@ -17483,7 +17483,7 @@ "par_id211618230389251\n" "help.text" msgid "When this argument is absent, the method returns a list of available subforms as a zero-based array. If the form has a single subform, you can set subform = 0 to get access to it." -msgstr "" +msgstr "Ha ez az argumentum nincs megadva, a metódus a rendelkezésre álló alűrlapok listáját adja vissza nulla alapú tömbként. Ha az űrlapnak egyetlen alűrlapja van, akkor a subform = 0 értéket állíthatjuk be, hogy hozzáférjünk ahhoz." #. CfGgB #: sf_formcontrol.xhp @@ -17879,7 +17879,7 @@ "par_id891598539196786\n" "help.text" msgid "All (except HiddenControl)" -msgstr "" +msgstr "Minden (kivéve rejtett vezérlőelemek)" #. MmDQ5 #: sf_formcontrol.xhp @@ -18176,7 +18176,7 @@ "par_id171598539985022\n" "help.text" msgid "All (except HiddenControl)" -msgstr "" +msgstr "Minden (kivéve rejtett vezérlőelemek)" #. VXR9Y #: sf_formcontrol.xhp @@ -18239,7 +18239,7 @@ "par_id761598540042290\n" "help.text" msgid "All (except HiddenControl)" -msgstr "" +msgstr "Minden (kivéve rejtett vezérlőelemek)" #. 5juZG #: sf_formcontrol.xhp @@ -18374,7 +18374,7 @@ "par_id741598543254376\n" "help.text" msgid "Boolean or Integer" -msgstr "" +msgstr "Logikai vagy egész" #. ErAZY #: sf_formcontrol.xhp @@ -18419,7 +18419,7 @@ "par_id221598543254760\n" "help.text" msgid "String or Numeric" -msgstr "" +msgstr "Karakterlánc vagy szám" #. gtxJY #: sf_formcontrol.xhp @@ -18455,7 +18455,7 @@ "par_id851598543254624\n" "help.text" msgid "Each button has its own name. Multiple RadioButton controls are linked together when they share the same group name. If a RadioButton is set to True, the other related buttons are automatically set to False" -msgstr "" +msgstr "Minden gombnak saját neve van. Több Rádiógomb vezérlőelem akkor kapcsolódik össze, ha ugyanaz a csoportnév van rajtuk. Ha egy Rádiógomb True értékre van állítva, a többi kapcsolódó gomb automatikusan False értékre lesz állítva." #. WEsqT #: sf_formcontrol.xhp @@ -18617,7 +18617,7 @@ "par_id111616948330257\n" "help.text" msgid "Prior to reset" -msgstr "" +msgstr "Alaphelyzetbe állítás előtt" #. octLi #: sf_formcontrol.xhp @@ -18689,7 +18689,7 @@ "par_id1001612629836902\n" "help.text" msgid "When receiving focus" -msgstr "" +msgstr "Amikor a fókuszt megkapja" #. tLp7Y #: sf_formcontrol.xhp @@ -18707,7 +18707,7 @@ "par_id62161262983683\n" "help.text" msgid "When losing focus" -msgstr "" +msgstr "Amikor a fókuszt elveszti" #. EBVQM #: sf_formcontrol.xhp @@ -18725,7 +18725,7 @@ "par_id211612707354899\n" "help.text" msgid "Item status changed" -msgstr "" +msgstr "Elem állapota változott" #. zBci2 #: sf_formcontrol.xhp @@ -18851,7 +18851,7 @@ "par_id381612629836635\n" "help.text" msgid "Mouse button pressed" -msgstr "" +msgstr "Egérgomb lenyomása" #. b6pFV #: sf_formcontrol.xhp @@ -18869,7 +18869,7 @@ "par_id35161262983642\n" "help.text" msgid "Mouse button released" -msgstr "" +msgstr "Egérgomb elengedése" #. 9Ui2H #: sf_formcontrol.xhp @@ -19202,7 +19202,7 @@ "par_id651623412069496\n" "help.text" msgid "Debugging: Whenever an error occurs in Python scripts that use ScriptForge, the error message provided by the Python execution stack displays the line of code that triggered the error. In Basic error messages do not display this information." -msgstr "" +msgstr "Hibakeresés: Amikor hiba lép fel a ScriptForge-t használó Python parancsfájlokban, a Python végrehajtási verem által biztosított hibaüzenet megjeleníti a hibát kiváltó kódsort. A Basicben a hibaüzenetek nem jelenítik meg ezt az információt." #. cPtYB #: sf_intro.xhp @@ -19283,7 +19283,7 @@ "par_id681623365892513\n" "help.text" msgid "The easiest way to get started with Python scripting in %PRODUCTNAME is by installing the APSO extension. After installing it, open any %PRODUCTNAME component and go to Tools - Macros - Organize Python Scripts." -msgstr "" +msgstr "A legegyszerűbben az APSO bővítmény telepítésével kezdheti el a Python parancsfájlok írását a %PRODUCTNAME programban. Telepítése után nyissa meg bármelyik %PRODUCTNAME komponenst, és használja az Eszközök - Makrók - Python parancsfájlok rendezése menüparancsot." #. iXiDt #: sf_intro.xhp @@ -19319,7 +19319,7 @@ "par_id581623366559478\n" "help.text" msgid "To start using the ScriptForge library, you need to import the CreateScriptService method, with which you will be able to access the services provided by the library. The example below uses the Basic service to display a message box." -msgstr "" +msgstr "A ScriptForge könyvtár használatának megkezdéséhez importálnunk kell a CreateScriptService metódust, amellyel hozzáférhetünk a könyvtár által nyújtott szolgáltatásokhoz. Az alábbi példa a Basic szolgáltatást használja egy üzenetmező megjelenítésére." #. F7c8N #: sf_intro.xhp @@ -19544,7 +19544,7 @@ "par_id721623369245475\n" "help.text" msgid "To run Python scripts from a separate process, you need to start %PRODUCTNAME with a few additional options that specify the hostname and port through which the external process will communicate with the %PRODUCTNAME component process." -msgstr "" +msgstr "A Python-parancsfájlok különálló folyamatból történő futtatásához el kell indítania a %PRODUCTNAME programot néhány további opcióval, amelyek megadják azt a gépnevet és portot, amelyen keresztül a külső folyamat kommunikálni fog a %PRODUCTNAME komponensfolyamatával." #. mfbEM #: sf_intro.xhp @@ -19841,7 +19841,7 @@ "par_id281646219882464\n" "help.text" msgid "locale2: A string specifying the fallback locale to be used in case the PO file corresponding to the locale defined the locale parameter does not exist. This parameter is expressed in the form \"la-CO\" (language-COUNTRY) or \"la\" (language) only." -msgstr "" +msgstr "locale2: Ha a locale paraméterben meghatározott nyelvnek megfelelő PO fájl nem létezik, ez a nyelvi konfiguráció kerül használatra. Ez a paraméter csak a \"la-CO\" (language-COUNTRY) vagy a \"la\" (language) formában fejezhető ki." #. TaFFX #: sf_l10n.xhp @@ -19895,7 +19895,7 @@ "par_id321614358809763\n" "help.text" msgid "In the example below, the locale is explicitly defined to be Belgian French (\"fr-BE\"), hence the service will load the file \"fr-BE.po\" from the folder \"C:\\myPOFiles\". If the file does not exist, an error will occur." -msgstr "" +msgstr "Az alábbi példában a nyelvterület kifejezetten belga francia (\"fr-BE\"), ezért a szolgáltatás a \"fr-BE.po\" fájlt tölti be a \"C:\\myPOFiles\" mappából. Ha a fájl nem létezik, hibaüzenet jelenik meg." #. WpYLF #: sf_l10n.xhp @@ -20084,7 +20084,7 @@ "par_id581585844419114\n" "help.text" msgid "msgid: The untranslated string, which is the text appearing in the program code. It must not be empty. The msgid becomes the key to retrieve the translated string via GetText method when context is empty." -msgstr "" +msgstr "msgid: A lefordítatlan karakterlánc, amely a programkódban megjelenő szöveg. Nem lehet üres. A msgid lesz a kulcs a lefordított karakterlánc GetText módszerrel történő lekérdezéséhez, ha a context üres." #. 7FDE9 #: sf_l10n.xhp @@ -20255,7 +20255,7 @@ "par_id111614364686973\n" "help.text" msgid "Do not include any leading \"#\" characters. If you want the header to be broken into multiple lines, insert escape sequences (\\n) where relevant. A standard header will be added alongside the text specified in the header argument." -msgstr "" +msgstr "Ne tartalmazzon \"#\" karaktereket első karakterként. Ha azt szeretné, hogy az élőfej több sorra legyen bontva, illesszen be escape sorozatokat (\\n), ahol szükséges. A header argumentumban megadott szöveghez egy szabványos élőfej kerül." #. E2Loj #: sf_l10n.xhp @@ -20327,7 +20327,7 @@ "par_id51586165768525\n" "help.text" msgid "msgid: The untranslated string, which is the text appearing in the program code. It must not be empty. It may contain any number of placeholders (%1 %2 %3 ...) that can be used to dynamically insert text at runtime." -msgstr "" +msgstr "msgid: A lefordítatlan karakterlánc, amely a programkódban megjelenő szöveg. Nem lehet üres. Bármennyi helykitöltőt tartalmazhat (%1 %2 %3 ...), amelyekkel futás közben dinamikusan beilleszthető a szöveg." #. dALxK #: sf_l10n.xhp @@ -20372,7 +20372,7 @@ "par_id701614365961454\n" "help.text" msgid "Consider the following code is running on a %PRODUCTNAME installation with locale set to \"es-ES\". Additionally, there is a file \"es-ES.po\" inside the specified folder that translates the string passed to the GetText method:" -msgstr "" +msgstr "Tekintsük, hogy a következő kód egy %PRODUCTNAME telepítésen fut, ahol a nyelvi beállítás \"es-ES\". Ezenkívül van egy \"es-ES.po\" fájl a megadott mappában, amely lefordítja a GetText metódusnak átadott karakterláncot:" #. yD78g #: sf_menu.xhp @@ -20381,7 +20381,7 @@ "tit\n" "help.text" msgid "SFWidgets.Menu service" -msgstr "" +msgstr "SFWidgets.Menu szolgáltatás" #. F5KPb #: sf_menu.xhp @@ -20399,7 +20399,7 @@ "par_id181600788076612\n" "help.text" msgid "The Menu service can be used to create and remove menus from the menubar of a %PRODUCTNAME document window. Each menu entry can be associated with a script or with a UNO command. This service provides the following capabilities:" -msgstr "" +msgstr "A Menu szolgáltatással menük hozhatók létre és távolíthatók el a %PRODUCTNAME dokumentumablak menüsorából. Minden egyes menübejegyzés egy parancsfájlhoz vagy egy UNO-parancshoz társítható. Ez a szolgáltatás a következő képességeket biztosítja:" #. UYDdv #: sf_menu.xhp @@ -20426,7 +20426,7 @@ "par_id581643133675012\n" "help.text" msgid "Menus created with this service are available only for a specified document window. They are not saved into the document or as application settings. Closing and opening the document will restore the default menubar settings." -msgstr "" +msgstr "Az ezzel a szolgáltatással létrehozott menük csak a megadott dokumentumablakhoz érhetők el. Nem kerülnek mentésre a dokumentumba vagy az alkalmazás beállításai közé. A dokumentum bezárása és megnyitása visszaállítja az alapértelmezett menüsorbeállításokat." #. FEfWE #: sf_menu.xhp @@ -20444,7 +20444,7 @@ "hd_id281600788076359\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "A szolgáltatás igénybevétele" #. o7QCg #: sf_menu.xhp @@ -20507,7 +20507,7 @@ "par_id341636718182262\n" "help.text" msgid "In the example above, Item A is associated with the UNO command .uno:About whereas Item B is associated with the script ItemB_Listener defined in Module1 of the Standard library of the My Macros container." -msgstr "" +msgstr "A fenti példában az A elem az .uno:About UNO parancshoz kapcsolódik, míg a B elem az ItemB_Listener parancsfájlhoz, amely a Standard könyvtár Module1 könyvtárában a My Macros tárolóban van definiálva." #. 9G7de #: sf_menu.xhp @@ -21092,7 +21092,7 @@ "par_id681619700336879\n" "help.text" msgid "ScriptForge libraries aggregate macro scripting resources for %PRODUCTNAME to be invoked from Basic macros or Python scripts. Its modules and classes are invoked from user scripts as \"Services\" that expose properties, methods and events." -msgstr "" +msgstr "A ScriptForge parancskönyvtárak a Basic makrókból vagy Python parancsfájlokból meghívható %PRODUCTNAME makroszkript-erőforrásokat gyűjtik össze. Az ide tartozó modulok és osztályok felhasználói parancsfájlokból \"szolgáltatásként\" hívhatók meg, amelyek tulajdonságokat, metódusokat és eseményeket tesznek közzé." #. paARG #: sf_methods.xhp @@ -21281,7 +21281,7 @@ "par_id67160078807676\n" "help.text" msgid "The %PRODUCTNAME version" -msgstr "" +msgstr "A %PRODUCTNAME verzió" #. BrEr7 #: sf_platform.xhp @@ -21461,7 +21461,7 @@ "par_id201633021748566\n" "help.text" msgid "String array" -msgstr "" +msgstr "Karaktertömb" #. 5Fkqe #: sf_platform.xhp @@ -21488,7 +21488,7 @@ "par_id201633021748322\n" "help.text" msgid "String array" -msgstr "" +msgstr "Karaktertömb" #. bhBD2 #: sf_platform.xhp @@ -21830,7 +21830,7 @@ "tit\n" "help.text" msgid "SFWidgets.PopupMenu service" -msgstr "" +msgstr "SFWidgets.PopupMenu szolgáltatás" #. QADne #: sf_popupmenu.xhp @@ -21965,7 +21965,7 @@ "par_id531636493797707\n" "help.text" msgid "It is also possible to associate a popup menu with events triggered by %PRODUCTNAME applications, form and dialog controls. Events such as \"Mouse button pressed\" and \"Mouse button released\" are commonly associated with popup menus." -msgstr "" +msgstr "Lehetőség van arra is, hogy felugró menüt társítson a %PRODUCTNAME alkalmazások, űrlapok és párbeszédablakok által kiváltott eseményekhez. Az olyan eseményeket, mint az \"Egérgomb lenyomása\" és az \"Egérgomb elengedése\", gyakran társítják a felugró menükhöz." #. L5Dhq #: sf_popupmenu.xhp @@ -22091,7 +22091,7 @@ "par_id741636719725402\n" "help.text" msgid "To create a popup menu with submenus, use the character defined in the SubmenuCharacter property while creating the menu entry to define where it will be placed. For instance, consider the following menu/submenu hierarchy." -msgstr "" +msgstr "Almenüvel rendelkező felugró menü létrehozásához a menübejegyzés létrehozásakor használja a SubmenuCharacter tulajdonságban meghatározott karaktert, hogy meghatározza, hova kerüljön. Vegyük például a következő menü/almenü hierarchiát." #. D3b2e #: sf_popupmenu.xhp @@ -22406,7 +22406,7 @@ "tit\n" "help.text" msgid "ScriptForge.Region service" -msgstr "" +msgstr "ScriptForge.Region szolgáltatás" #. SYtNX #: sf_region.xhp @@ -22478,7 +22478,7 @@ "par_id191656012908838\n" "help.text" msgid "A string combining a language and a country in the format \"la-CO\". The language part is expressed with 2 or 3 lowercase characters followed by a dash and 2 uppercase characters representing the country." -msgstr "" +msgstr "Egy nyelvet és egy országot kombináló karakterlánc \"la-CO\" formátumban. A nyelvi rész 2 vagy 3 kisbetűs karakterrel fejezhető ki, amit egy kötőjel választ el az országot jelképező 2 nagybetűs karaktertől." #. GQEGW #: sf_region.xhp @@ -22532,7 +22532,7 @@ "par_id981656078937577\n" "help.text" msgid "Providing an invalid timezone string to any of the methods in the Region service will not result in a runtime error. Instead, methods as UTCDateTime and UTCNow will return the current operating system date and time." -msgstr "" +msgstr "Ha a Region szolgáltatás bármelyik metódusában érvénytelen időzóna karakterláncot ad meg, az nem eredményez futási hibát. Ehelyett a UTCDateTime és UTCNow metódusok az aktuális operációs rendszer dátumát és idejét adják vissza." #. 7GTLU #: sf_region.xhp @@ -22568,7 +22568,7 @@ "hd_id281600788076359\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "A szolgáltatás igénybevétele" #. F9Wnj #: sf_region.xhp @@ -22712,7 +22712,7 @@ "par_id911600788076842\n" "help.text" msgid "String array" -msgstr "" +msgstr "Karaktertömb" #. Jhkc3 #: sf_region.xhp @@ -22757,7 +22757,7 @@ "par_id201633021748566\n" "help.text" msgid "String array" -msgstr "" +msgstr "Karaktertömb" #. CnTuU #: sf_region.xhp @@ -22784,7 +22784,7 @@ "par_id201633021748322\n" "help.text" msgid "String array" -msgstr "" +msgstr "Karaktertömb" #. tjGhP #: sf_region.xhp @@ -22811,7 +22811,7 @@ "par_id201633021748455\n" "help.text" msgid "String array" -msgstr "" +msgstr "Karaktertömb" #. GHdGz #: sf_region.xhp @@ -22892,7 +22892,7 @@ "par_id201633021746335\n" "help.text" msgid "String array" -msgstr "" +msgstr "Karaktertömb" #. Dz2X6 #: sf_region.xhp @@ -22919,7 +22919,7 @@ "par_id221600788076518\n" "help.text" msgid "String array" -msgstr "" +msgstr "Karaktertömb" #. EbAXk #: sf_region.xhp @@ -22946,7 +22946,7 @@ "par_id871600788076196\n" "help.text" msgid "String array" -msgstr "" +msgstr "Karaktertömb" #. RisPb #: sf_region.xhp @@ -23369,7 +23369,7 @@ "par_id781656027840633\n" "help.text" msgid "The first line in the message box does not have a prefix, which means that it is the standard format. The subsequent lines include the prefix and some examples of numbers using its format." -msgstr "" +msgstr "Az üzenetmező első sorában nincs előtag, ami azt jelenti, hogy ez a szabványos formátum. A következő sorok tartalmazzák az előtagot és néhány példát a formátumot használó számokra." #. WPApK #: sf_region.xhp @@ -23738,7 +23738,7 @@ "par_id901627576693156\n" "help.text" msgid "To make writing Python scripts more fluid, ScriptForge provides the Basic service which allows Python scripts to call a collection of methods with the same syntax and meaning as their homonymous native Basic functions." -msgstr "" +msgstr "A Python parancsfájlok írásának gördülékenyebbé tétele érdekében a ScriptForge biztosítja a Basic szolgáltatást, amely lehetővé teszi a Python parancsfájlok számára, hogy olyan metódusok gyűjteményét hívják meg, amelyek szintaxisa és jelentése megegyezik az azonos nevű natív Basic függvényekével." #. SDQ7m #: sf_services.xhp @@ -23882,7 +23882,7 @@ "par_id451582814720105\n" "help.text" msgid "in the document" -msgstr "" +msgstr "a dokumentumban" #. Q2KtM #: sf_session.xhp @@ -24179,7 +24179,7 @@ "par_id701626817164878\n" "help.text" msgid "Consider the Python function odd_integers defined below that creates a list with odd integer values between v1 and v2. Suppose this function is stored in a file named my_macros.py in your user scripts folder." -msgstr "" +msgstr "Tekintsük az alábbiakban definiált odd_integers Python függvényt, amely egy listát hoz létre a v1 és v2 közötti páratlan egész számokkal. Tegyük fel, hogy ez a függvény a saját_makrók.py nevű fájlban van tárolva a felhasználói parancsfájlok mappában." #. o6DUm #: sf_session.xhp @@ -24539,7 +24539,7 @@ "tit\n" "help.text" msgid "ScriptForge.String service (SF_String)" -msgstr "" +msgstr "ScriptForge.String szolgáltatás (SF_String)" #. ZhvDP #: sf_string.xhp @@ -24701,7 +24701,7 @@ "hd_id191580480825160\n" "help.text" msgid "Escape sequences" -msgstr "" +msgstr "Escape sorozatok" #. JD6CK #: sf_string.xhp @@ -24719,7 +24719,7 @@ "par_id151611947117287\n" "help.text" msgid "Escape Sequence" -msgstr "" +msgstr "Escape sorozat" #. xzDai #: sf_string.xhp @@ -25025,7 +25025,7 @@ "par_id151611951803163\n" "help.text" msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as Capitalize, Escape, etc return a new string after their execution." -msgstr "" +msgstr "A legtöbb metódus első argumentuma a figyelembe veendő karakterlánc. Ezt mindig hivatkozással adjuk át, és változatlanul hagyjuk. Az olyan metódusok, mint a Capitalize, Escape, stb. a végrehajtásuk után egy új karakterláncot adnak vissza." #. PYcny #: sf_string.xhp @@ -27032,7 +27032,7 @@ "par_id531585330787157\n" "help.text" msgid "No" -msgstr "" +msgstr "Nem" #. rdA5M #: sf_textstream.xhp @@ -27815,7 +27815,7 @@ "bas_id931610989837747\n" "help.text" msgid "'Terminate both timers" -msgstr "" +msgstr "'Mindkét időzítő leállítása" #. dphFv #: sf_ui.xhp @@ -27824,7 +27824,7 @@ "tit\n" "help.text" msgid "ScriptForge.UI service" -msgstr "" +msgstr "ScriptForge.UI szolgáltatás" #. QWA6E #: sf_ui.xhp @@ -28112,7 +28112,7 @@ "par_id153587913266349\n" "help.text" msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents." -msgstr "" +msgstr "A jelenleg megnyitott dokumentumok listája. A speciális ablakok figyelmen kívül maradnak. Ez a lista egy nulla alapú egydimenziós tömbből áll, amely vagy fájlnevekből (SF_FileSystem.FileNaming jelöléssel), vagy a nem mentett dokumentumok ablakcímeiből áll." #. 5oGpF #: sf_ui.xhp @@ -28283,7 +28283,7 @@ "par_id201587913266596\n" "help.text" msgid "Make the specified window active. The method returns True if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection." -msgstr "" +msgstr "A megadott ablak aktívvá tétele. A metódus True értéket ad vissza, ha a megadott ablak megtalálható és aktiválható. A tényleges felhasználói felületen nem történik változás, ha nincs a kiválasztásnak megfelelő ablak." #. w9DR4 #: sf_ui.xhp @@ -28364,7 +28364,7 @@ "par_id401588522663325\n" "help.text" msgid "templatefile : The full FileName of the template to build the new document on. If the file does not exist, the argument is ignored. The FileSystem service provides the TemplatesFolder and UserTemplatesFolder properties to help to build the argument." -msgstr "" +msgstr "templatefile : A sablon teljes FileName értéke, amelyre az új dokumentumot építeni kell. Ha a fájl nem létezik, az argumentumot figyelmen kívül hagyjuk. A FileSystem szolgáltatás a TemplatesFolder és UserTemplatesFolder tulajdonságokkal segít az argumentum felépítésében." #. VeNQg #: sf_ui.xhp @@ -28823,7 +28823,7 @@ "tit\n" "help.text" msgid "SFUnitTests.UnitTest service" -msgstr "" +msgstr "SFUnitTests.UnitTest szolgáltatás" #. iVee6 #: sf_unittest.xhp @@ -28904,7 +28904,7 @@ "hd_id31656351967453\n" "help.text" msgid "Test Case" -msgstr "" +msgstr "Eset tesztelése" #. 2SE2W #: sf_unittest.xhp @@ -28940,7 +28940,7 @@ "hd_id431656352497598\n" "help.text" msgid "Test Suite" -msgstr "" +msgstr "Lakosztály tesztelése" #. Jk79j #: sf_unittest.xhp @@ -28976,7 +28976,7 @@ "hd_id351656352884283\n" "help.text" msgid "Unit Test" -msgstr "" +msgstr "Egység tesztelése" #. xieZW #: sf_unittest.xhp @@ -28994,7 +28994,7 @@ "hd_id991656353328287\n" "help.text" msgid "Service invocation" -msgstr "" +msgstr "A szolgáltatás igénybevétele" #. FVzhB #: sf_unittest.xhp @@ -29012,7 +29012,7 @@ "hd_id941656357981021\n" "help.text" msgid "Simple mode" -msgstr "" +msgstr "Egyszerű mód" #. C5qBi #: sf_unittest.xhp @@ -29075,7 +29075,7 @@ "hd_id341656353807950\n" "help.text" msgid "Full mode" -msgstr "" +msgstr "Teljes mód" #. Cev96 #: sf_unittest.xhp @@ -29426,7 +29426,7 @@ "par_id231656428367462\n" "help.text" msgid "All AssertX methods accept a message argument specifying a custom message to be reported in the console regarding the assertion. By default an empty string is used. This argument is always in the last position of the assertion." -msgstr "" +msgstr "Minden AssertX metódus elfogad egy message argumentumot, amely megadja az állítással kapcsolatos, a konzolban megjelenő egyéni üzenetet. Alapértelmezés szerint egy üres karakterlánc kerül használatra. Ez az argumentum mindig az állítás utolsó pozíciójában van." #. d7AFB #: sf_unittest.xhp @@ -30515,7 +30515,7 @@ "par_id451623063459286\n" "help.text" msgid "form: The name or index corresponding to a form stored in the document. If this argument is absent, the method will return a list with the names of all forms available in the document." -msgstr "" +msgstr "form: A dokumentumban tárolt űrlapnak megfelelő név vagy index. Ha ez az argumentum hiányzik, a metódus egy listát ad vissza a dokumentumban elérhető összes űrlap nevével." #. 7Ywp9 #: sf_writer.xhp diff -Nru libreoffice-7.4.6/translations/source/hu/helpcontent2/source/text/scalc/01.po libreoffice-7.4.7/translations/source/hu/helpcontent2/source/text/scalc/01.po --- libreoffice-7.4.6/translations/source/hu/helpcontent2/source/text/scalc/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hu/helpcontent2/source/text/scalc/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-04 18:04+0200\n" -"PO-Revision-Date: 2022-10-24 11:22+0000\n" -"Last-Translator: serval2412 \n" +"PO-Revision-Date: 2023-03-18 18:32+0000\n" +"Last-Translator: Armin Timar \n" "Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542030217.000000\n" #. sZfWF @@ -3884,7 +3884,7 @@ "par_id3145271\n" "help.text" msgid "Opens the Function Wizard, which helps you to interactively create formulas." -msgstr "" +msgstr "Megnyitja a Függvénytündért, amely segít interaktív módon képleteket létrehozni." #. exDJs #: 04060000.xhp @@ -3893,7 +3893,7 @@ "par_id491577286833512\n" "help.text" msgid "Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted." -msgstr "" +msgstr "A tündér elindítása előtt válasszon ki egy cellát vagy egy cellatartományt az aktuális lapon, hogy meghatározhassa a képlet beillesztési pozícióját." #. xeqnV #: 04060000.xhp @@ -3902,7 +3902,7 @@ "par_id8007446\n" "help.text" msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the OASIS web site." -msgstr "" +msgstr "A teljes ODFF (OpenDocument formátumképlet) specifikáció letölthető az OASIS weboldalról." #. mM4AA #: 04060000.xhp @@ -3938,7 +3938,7 @@ "par_id3155440\n" "help.text" msgid "Search for a part of the function name." -msgstr "" +msgstr "Keresés a függvénynév egy részére." #. eFtXe #: 04060000.xhp @@ -3956,7 +3956,7 @@ "par_id3153417\n" "help.text" msgid "Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below. Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used." -msgstr "" +msgstr "Az összes kategóriát felsorolja, amelyekhez a különböző függvények hozzá vannak rendelve. Válasszon ki egy kategóriát a megfelelő függvények megjelenítéséhez az alábbi listamezőben. Válassza az \"Összes\" lehetőséget az összes függvény ábécé sorrendben történő megjelenítéséhez, függetlenül a kategóriától. Az \"Utoljára használt\" a legutóbb használt függvényeket listázza." #. KnP6B #: 04060000.xhp @@ -20057,7 +20057,7 @@ "par_id541624454496424\n" "help.text" msgid "You can \"escape\" the double quotation mark with an additional double quotation mark, and Calc treats the escaped double quotation mark as a literal value. For example, the formula =\"My name is \"\"John Doe\"\".\" outputs the string My name is \"John Doe\". Another simple example is the formula =UNICODE(\"\"\"\") which returns 34, the decimal value of the Unicode quotation mark character (U+0022) — here the first and fourth double quotation marks indicate the beginning and end of the string, while the second double quotation mark escapes the third." -msgstr "" +msgstr "A kettős idézőjelet egy további kettős idézőjellel \"szöktetheti\", és a Calc a kikerült kettős idézőjelet szó szerinti értékként kezeli. Például a =\"My name is \"\"John Doe\"\".\" függvény a My name is \"John Doe\". karakterláncot adja ki. Egy másik egyszerű példa a =UNICODE(\"\"\"\") függvény, amely 34, a Unicode idézőjel karakter (U+0022) decimális értékét adja vissza - itt az első és a negyedik idézőjel a karakterlánc elejét és végét jelzi, míg a második idézőjel \"szökteti\" a harmadikat." #. MfLZn #: 04060110.xhp @@ -61151,7 +61151,7 @@ "par_id661561732521977\n" "help.text" msgid "MinimumMagnitude: used only if Polar=TRUE. All frequency components with magnitude less than MinimumMagnitude will be suppressed with a zero magnitude-phase entry. This is very useful when looking at the magnitude-phase spectrum of a signal because there is always some very tiny amount of rounding error when doing FFT algorithms and results in incorrect non-zero phase for non-existent frequencies. By providing a suitable value to this parameter, these non-existent frequency components can be suppressed. By default the value of MinimumMagnitude is 0.0, and no suppression is done by default." -msgstr "" +msgstr "Legkisebb_magnitúdó: csak akkor használatos, ha Polár=IGAZ. A Legkisebb_magnitúdó-nál kisebb nagyságú frekvenciakomponensek el lesznek nyomva nulla magnitúdó-fázis bejegyzéssel. Ez nagyon hasznos, amikor egy jel magnitúdó-fázis spektrumát nézzük, mert az FFT algoritmusok végrehajtásakor mindig van egy nagyon apró kerekítési hiba, ami nem létező frekvenciák esetén helytelen nem nulla fázist eredményez. A paraméter megfelelő értékének megadásával ezek a nem létező frekvenciakomponensek elnyomhatók. Alapértelmezés szerint a Legkisebb_magnitúdó értéke 0.0, és alapértelmezés szerint nem történik elnyomás." #. P2z9v #: func_hour.xhp @@ -68684,7 +68684,7 @@ "par_id971589963431459\n" "help.text" msgid "Swarm algorithm" -msgstr "" +msgstr "Raj alapú algoritmus" #. cgpYF #: solver_options_algo.xhp @@ -70340,7 +70340,7 @@ "par_id661561732521977\n" "help.text" msgid "Minimum magnitude for polar form output (in dB): used only when output is in polar form. All frequency components with magnitude less than this value in decibels will be suppressed with a zero magnitude-phase entry. This is very useful when looking at the magnitude-phase spectrum of a signal because there is always some very tiny amount of rounding error when doing FFT algorithms and results in incorrect non-zero phase for non-existent frequencies. By providing a suitable value to this parameter, these non-existent frequency components can be suppressed." -msgstr "" +msgstr "Legkisebb magnitúdó a polár alakú kimenetben (dB-ben): csak akkor használatos, ha a kimenet polár alakban van. Minden olyan frekvenciakomponens, amelynek magnitúdója ennél az értéknél kisebb decibelben kifejezve, nulla magnitúdó-fázis bejegyzéssel lesz elnyomva. Ez nagyon hasznos, amikor egy jel magnitúdó-fázis spektrumát nézzük, mert az FFT algoritmusok végrehajtásakor mindig van egy nagyon apró kerekítési hiba, ami nem létező frekvenciák esetén helytelen nem nulla fázist eredményez. A paraméter megfelelő értékének megadásával ezek a nem létező frekvenciakomponensek elnyomhatók." #. 8pLcW #: statistics_fourier.xhp diff -Nru libreoffice-7.4.6/translations/source/hu/helpcontent2/source/text/sdatabase.po libreoffice-7.4.7/translations/source/hu/helpcontent2/source/text/sdatabase.po --- libreoffice-7.4.6/translations/source/hu/helpcontent2/source/text/sdatabase.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hu/helpcontent2/source/text/sdatabase.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2021-08-30 13:40+0000\n" -"Last-Translator: Gábor Kelemen \n" -"Language-Team: Hungarian \n" +"PO-Revision-Date: 2023-04-01 21:32+0000\n" +"Last-Translator: Armin Timar \n" +"Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" #. ugSgG #: 02000000.xhp @@ -454,7 +454,7 @@ "par_id3150255\n" "help.text" msgid "The lower pane of the Design View is where you define the query. To define a query, specify the database field names to include and the criteria for displaying the fields. To rearrange the columns in the lower pane of the Design View, drag a column header to a new location, or select the column and press CommandCtrl+arrow key." -msgstr "" +msgstr "A tervezőnézet alsó panelén határozza meg a lekérdezést. A lekérdezés definiálásához adja meg a tartalmazni kívánt adatbázis-mezők nevét és a mezők megjelenítésének kritériumait. A tervezőnézet alsó panelében lévő oszlopok átrendezéséhez húzza az oszlopfejlécet egy új helyre, vagy jelölje ki az oszlopot, és nyomja le a CommandCtrl+nyíl billentyűkombinációt." #. GMVkG #: 02010100.xhp @@ -994,7 +994,7 @@ "par_id3145134\n" "help.text" msgid "Specifies a first criteria by which the content of the data field is to be filtered." -msgstr "" +msgstr "Megadja az első kritériumot, amely alapján az adatmező tartalmát szűrni kell." #. qpADC #: 02010100.xhp @@ -2443,7 +2443,7 @@ "par_id191120151905518123\n" "help.text" msgid "In the simplest case, where the user enters a value which is matched for equality, the parameter name with its preceding colon is simply entered in the Criterion row. In SQL mode this should be typed as WHERE \"Field\" = :Parameter_name" -msgstr "" +msgstr "A legegyszerűbb esetben, amikor a felhasználó megad egy értéket, amelynek az egyenlősége vizsgálatra kerül, akkor a paraméternevet a megelőző pontosvesszővel együtt kell bevinni a Feltételek sorba. Az SQL módban ezt így kell megadni: WHERE \"mező\" = :paraméternév" #. DZCXm #: 02010100.xhp @@ -2461,7 +2461,7 @@ "par_id191120151931441881\n" "help.text" msgid "A useful construction for selecting records based on parts of a text field's content is to add a hidden column with \"LIKE '%' || :Part_of_field || '%'\" as the criterion. This will select records with an exact match. If a case-insensitive test is wanted, one solution is to use LOWER (Field_Name) as the field and LIKE LOWER ( '%' || :Part_of_field || '%' ) as the criterion. Note that the spaces in the criterion are important; if they are left out the SQL parser interprets the entire criterion as a string to be matched. In SQL mode this should be typed as LOWER ( \"Field_Name\" ) LIKE LOWER ( '%' || :Part_of_field || '%' )." -msgstr "" +msgstr "Hasznos módszer rekordok egy szövegmező tartalma alapján való kiválasztására egy rejtett oszlop hozzáadása a következő feltétellel: \"LIKE '%' || :mező_része || '%'\". Ez a pontosan illeszkedő rekordokat fogja kiválasztani. Ha kis- és nagybetűkre érzéketlen teszt szükséges, akkor megoldás lehet a LOWER (mezőnév) használata a mezőként és LIKE LOWER ( '%' || :mező_része|| '%' ) használata feltételként. Vegye észre, hogy a szóközök a feltételben fontosak, ha kimaradnak, az SQL elemző a teljes feltételt az illesztendő karakterláncként értelmezi. SQL módban ezt így kell beírni: LOWER ( \"mezőnév\" ) LIKE LOWER ( '%' || :mező_része || '%' )." #. sSSB9 #: 02010100.xhp @@ -2749,7 +2749,7 @@ "par_id0305200912031977\n" "help.text" msgid "In a natural join, the keyword NATURAL is inserted into the SQL statement that defines the relation. The relation joins all columns that have the same column name in both tables. The resulting joined table contains only one column for each pair of equally named columns." -msgstr "" +msgstr "A természetes összekapcsolás beszúrja a NATURAL kulcsszót a relációt definiáló SQL-utasításba. A reláció minden olyan oszlopot összekapcsol, amelyeknek ugyanaz az oszlopneve mindkét táblában. Az eredményül létrejövő összekapcsolt tábla csak egyet tartalmaz az azonos nevű oszloppárok közül." #. pK6MV #: 04000000.xhp @@ -5881,7 +5881,7 @@ "hd_id91652478785999\n" "help.text" msgid "Show output of \"select\" statements" -msgstr "" +msgstr "A „select” utasítások kimenetének megjelenítése" #. nB4gp #: 11080000.xhp @@ -5890,7 +5890,7 @@ "par_id281652481037143\n" "help.text" msgid "Show the result of the SQL SELECT command in the Output box." -msgstr "" +msgstr "SQL SELECT parancs eredményének megjelenítése a Kimenet dobozban." #. uaXF8 #: 11080000.xhp @@ -5899,7 +5899,7 @@ "hd_id3154071\n" "help.text" msgid "Execute" -msgstr "" +msgstr "Végrehajtás" #. 6UCdY #: 11080000.xhp @@ -5908,7 +5908,7 @@ "par_id3151210\n" "help.text" msgid "Runs the command that you entered in the Command to execute box." -msgstr "" +msgstr "Futtatja a Végrehajtandó parancs mezőbe beírt parancsot." #. BQmT9 #: 11080000.xhp @@ -5926,7 +5926,7 @@ "par_id3149045\n" "help.text" msgid "Lists the previously executed SQL commands. To run a command again, click the command, and then click Execute." -msgstr "" +msgstr "Felsorolja a korábban végrehajtott SQL-utasításokat. Valamelyik utasítás újrafuttatásához kattintson az utasításra, majd a Végrehajtás gombra." #. AvXck #: 11080000.xhp @@ -5944,7 +5944,7 @@ "par_id3151054\n" "help.text" msgid "Displays the status, including errors, of the SQL command that you ran." -msgstr "" +msgstr "A futtatott SQL-parancs állapotát jeleníti meg, a hibákkal együtt." #. 8qcm5 #: 11080000.xhp @@ -5953,7 +5953,7 @@ "hd_id841652479655639\n" "help.text" msgid "Output" -msgstr "" +msgstr "Kimenet" #. pEFoq #: 11080000.xhp @@ -5962,7 +5962,7 @@ "par_id511652479714010\n" "help.text" msgid "Displays the results of the SQL command that you ran." -msgstr "" +msgstr "A futtatott SQL-parancs eredményét jeleníti meg." #. 93Xfs #: 11090000.xhp @@ -6439,7 +6439,7 @@ "hd_id621632736570505\n" "help.text" msgid "Respect the result set type from the database driver" -msgstr "" +msgstr "Az adatbázis-illesztőprogramtól visszakapott eredményhalmaz típusának figyelembe vétele" #. EZkMC #: dabaadvpropdat.xhp @@ -6475,7 +6475,7 @@ "hd_id421632739992940\n" "help.text" msgid "Rows to scan columns types" -msgstr "" +msgstr "Oszloptípusok sorainak száma" #. nC3qS #: dabaadvpropdat.xhp @@ -6484,7 +6484,7 @@ "par_id541632740596622\n" "help.text" msgid "Select the number of rows to let the driver detect the data type." -msgstr "" +msgstr "Válassza ki a sorok számát, hogy az adatbázis-illesztőprogram felismerhesse az adattípust." #. EYaFK #: dabaadvpropgen.xhp @@ -6619,7 +6619,7 @@ "tit\n" "help.text" msgid "Database File" -msgstr "" +msgstr "Adatbázisfájl" #. STdE4 #: dabadoc.xhp @@ -6628,7 +6628,7 @@ "par_idN10544\n" "help.text" msgid "Database File" -msgstr "" +msgstr "Adatbázisfájl" #. XWsT6 #: dabadoc.xhp @@ -6637,7 +6637,7 @@ "par_idN10554\n" "help.text" msgid "The database file window organizes the tables, views, queries, and reports of a database in %PRODUCTNAME." -msgstr "" +msgstr "Az adatbázisfájl ablak tartalmazza egy adatbázis tábláit, nézeteit, lekérdezéseit és jelentéseit a %PRODUCTNAME-ban." #. 3KEBA #: dabadoc.xhp @@ -6646,7 +6646,7 @@ "par_idN105B7\n" "help.text" msgid "Working with databases in %PRODUCTNAME" -msgstr "" +msgstr "Adatbázisok használata a %PRODUCTNAME-ban" #. ptEgp #: dabaprop.xhp @@ -6655,7 +6655,7 @@ "tit\n" "help.text" msgid "Database Properties" -msgstr "" +msgstr "Adatbázis tulajdonságai" #. ZqWEp #: dabaprop.xhp @@ -6664,7 +6664,7 @@ "par_idN10550\n" "help.text" msgid "Database Properties" -msgstr "" +msgstr "Adatbázis tulajdonságai" #. J8CiZ #: dabaprop.xhp @@ -6673,7 +6673,7 @@ "par_idN10560\n" "help.text" msgid "Specifies the properties of a database." -msgstr "" +msgstr "Megadja az adatbázis tulajdonságait." #. GkxKK #: dabaprop.xhp @@ -6682,7 +6682,7 @@ "par_id1322977\n" "help.text" msgid "In a database window, choose Edit - Database - Properties" -msgstr "" +msgstr "Egy adatbázisablakban válassza a Szerkesztés - Adatbázis - Tulajdonságok lehetőséget" #. X569b #: dabapropadd.xhp @@ -6691,7 +6691,7 @@ "tit\n" "help.text" msgid "Additional Settings" -msgstr "" +msgstr "További beállítások" #. eYNbJ #: dabapropadd.xhp @@ -6700,7 +6700,7 @@ "par_idN1054D\n" "help.text" msgid "Additional Settings" -msgstr "" +msgstr "További beállítások" #. aQVe4 #: dabapropadd.xhp @@ -6709,7 +6709,7 @@ "par_idN1055D\n" "help.text" msgid "Specifies additional options for a data source." -msgstr "" +msgstr "Megadja az adatforrás további beállításait." #. VDVT6 #: dabapropadd.xhp @@ -6718,7 +6718,7 @@ "par_id4641865\n" "help.text" msgid "In a database window, choose Edit - Database - Properties, click Additional Settings tab" -msgstr "" +msgstr "Egy adatbázisablakban válassza a Szerkesztés - Adatbázis - Tulajdonságok lehetőséget, majd kattintson a További beállítások lapra" #. jRxSF #: dabapropadd.xhp @@ -6727,7 +6727,7 @@ "par_idN10572\n" "help.text" msgid "The availability of the following controls depends on the type of database:" -msgstr "" +msgstr "A következő vezérlők elérhetősége függ az adatbázis típusától:" #. GXZC2 #: dabapropadd.xhp @@ -6736,7 +6736,7 @@ "par_idN10575\n" "help.text" msgid "Host name" -msgstr "" +msgstr "Gépnév" #. X6fnx #: dabapropadd.xhp @@ -6745,7 +6745,7 @@ "par_idN105D7\n" "help.text" msgid "Enter the host name of the server that contains the database, for example ldap.server.com." -msgstr "" +msgstr "Adja meg az adatbázist tartalmazó kiszolgáló gépnevét, például ldap.server.com." #. rp55d #: dabapropadd.xhp @@ -6754,7 +6754,7 @@ "par_idN10579\n" "help.text" msgid "Port number" -msgstr "" +msgstr "Port száma" #. RQEQ4 #: dabapropadd.xhp @@ -6763,7 +6763,7 @@ "par_idN105F6\n" "help.text" msgid "Enter the port number for the server that hosts the database." -msgstr "" +msgstr "Adja meg az adatbázist tartalmazó kiszolgáló portszámát." #. PP95C #: dabapropadd.xhp @@ -6772,7 +6772,7 @@ "par_idN1057D\n" "help.text" msgid "MySQL JDBC driver class" -msgstr "" +msgstr "MySQL JDBC-illesztőprogram osztálya" #. 2nqZZ #: dabapropadd.xhp @@ -6781,7 +6781,7 @@ "par_idN10615\n" "help.text" msgid "Enter the name of the JDBC driver for the MySQL database." -msgstr "" +msgstr "Írja be a MySQL adatbázis JDBC-illesztőprogramjának nevét." #. evMXj #: dabapropadd.xhp @@ -6790,7 +6790,7 @@ "par_idN10581\n" "help.text" msgid "Character set" -msgstr "" +msgstr "Karakterkészlet" #. hbyg9 #: dabapropadd.xhp @@ -6799,7 +6799,7 @@ "par_idN10634\n" "help.text" msgid "Select the character set that you want to use to view the database in $[officename]. This setting does not affect the database. To use the default character set of your operating system, select \"System\"." -msgstr "" +msgstr "Válassza ki a karakterkészletet, amelyet az adatbázis tartalmának megtekintéséhez akar használni a $[officename] programban. Ez a beállítás nincs hatással az adatbázisra. Az operációs rendszer alapértelmezett karakterkészletének használatához válassza ki a „Rendszer” lehetőséget." #. zvk8A #: dabapropadd.xhp @@ -6808,7 +6808,7 @@ "par_idN10651\n" "help.text" msgid "Text and dBASE databases are restricted to character sets with a fixed-size character length, where all characters are encoded with the same number of bytes." -msgstr "" +msgstr "A szöveges és dBASE-adatbázisok fixméretű karakterhosszal rendelkező karakterkészletekre vannak korlátozva, amelyben minden karaktert ugyanannyi bájt kódol." #. VoZcz #: dabapropadd.xhp @@ -6817,7 +6817,7 @@ "par_idN10585\n" "help.text" msgid "Oracle JDBC driver class" -msgstr "" +msgstr "Oracle JDBC-illesztőprogram osztálya" #. 7eLFU #: dabapropadd.xhp @@ -6826,7 +6826,7 @@ "par_idN10653\n" "help.text" msgid "Enter the name of the JDBC driver for the Oracle database." -msgstr "" +msgstr "Írja be az Oracle adatbázis JDBC-illesztőprogramjának nevét." #. 5KbCC #: dabapropadd.xhp @@ -6835,7 +6835,7 @@ "par_idN10589\n" "help.text" msgid "Driver settings" -msgstr "" +msgstr "Illesztőprogram beállításai" #. tEiQb #: dabapropadd.xhp @@ -6844,7 +6844,7 @@ "par_idN10672\n" "help.text" msgid "Specify additional driver options." -msgstr "" +msgstr "További illesztőprogram-beállításokat ad meg." #. rh98b #: dabapropadd.xhp @@ -6853,7 +6853,7 @@ "par_idN1058D\n" "help.text" msgid "Use catalog for file-based databases" -msgstr "" +msgstr "Katalógus használata a fájlalapú adatbázisokhoz" #. TipDh #: dabapropadd.xhp @@ -6862,7 +6862,7 @@ "par_idN10691\n" "help.text" msgid "Uses the current data source of the catalog. This option is useful when the ODBC data source is a database server. Do not select this option if the ODBC data source is a dBASE driver." -msgstr "" +msgstr "Használja a Katalógus aktuális adatforrását. Ez akkor hasznos, ha az ODBC-adatforrás egy adatbázis-kiszolgáló. Ne válassza ezt a lehetőséget, ha az ODBC-adatforrás egy dBASE-illesztőprogram." #. d3PBB #: dabapropadd.xhp @@ -6871,7 +6871,7 @@ "par_idN10591\n" "help.text" msgid "Base DN" -msgstr "" +msgstr "Alap DN" #. UYaFM #: dabapropadd.xhp @@ -6880,7 +6880,7 @@ "par_idN106B0\n" "help.text" msgid "Enter the starting point to search the LDAP database, for example, dc=com." -msgstr "" +msgstr "Írja be az LDAP-adatbázisban való keresés kezdőpontját, például dc=hu." #. bvx2A #: dabapropadd.xhp @@ -6889,7 +6889,7 @@ "par_idN10595\n" "help.text" msgid "Maximum number of records" -msgstr "" +msgstr "Rekordok maximális száma" #. AUVCH #: dabapropadd.xhp @@ -6898,7 +6898,7 @@ "par_idN106F3\n" "help.text" msgid "Enter the maximum number of records that you want to load when you access the LDAP server." -msgstr "" +msgstr "Adja meg az LDAP-kiszolgálóhoz csatlakozáskor maximálisan betölthető rekordok számát." #. K5mtr #: dabapropadd.xhp @@ -6907,7 +6907,7 @@ "par_idN10599\n" "help.text" msgid "Display deleted records as well" -msgstr "" +msgstr "Törölt rekordok is megjelennek" #. GENGU #: dabapropadd.xhp @@ -6916,7 +6916,7 @@ "par_idN10700\n" "help.text" msgid "Displays all the records in a file, including those marked as deleted. If you select this check box, you cannot delete records." -msgstr "" +msgstr "Megjelenít minden fájlbeli rekordot, azokat is, amelyek törlésre vannak kijelölve. Ha kiválasztja ezt a jelölőnégyzetet, akkor nem tud majd rekordokat törölni." #. RAmgF #: dabapropadd.xhp @@ -6925,7 +6925,7 @@ "par_idN10715\n" "help.text" msgid "In dBASE format, deleted records remain in the file." -msgstr "" +msgstr "A dBASE formátumban a törölt rekordok benne maradnak a fájlban." #. yPXvG #: dabapropadd.xhp @@ -6934,7 +6934,7 @@ "par_idN10718\n" "help.text" msgid "To view changes that you make to the database, close the connection to the database, and then reconnect to the database." -msgstr "" +msgstr "Az adatbázisban végrehajtott változtatások megtekintéséhez zárja le az adatbázissal való kapcsolatot, majd kapcsolódjon újra az adatbázishoz." #. 9EL3T #: dabapropadd.xhp @@ -6943,7 +6943,7 @@ "par_idN1059D\n" "help.text" msgid "Indexes" -msgstr "" +msgstr "Jegyzékek" #. EuWB8 #: dabapropadd.xhp @@ -6952,7 +6952,7 @@ "par_idN10725\n" "help.text" msgid "Opens the Indexes dialog, where you can organize the table indexes in the current dBASE database." -msgstr "" +msgstr "Megnyitja az Indexek párbeszédablakot, ahol kezelheti az aktuális dBASE-adatbázis táblaindexeit." #. zGqEv #: dabapropadd.xhp @@ -6961,7 +6961,7 @@ "par_idN105B9\n" "help.text" msgid "Text contains headers" -msgstr "" +msgstr "A szöveg fejléceket tartalmaz" #. RVLEb #: dabapropadd.xhp @@ -6970,7 +6970,7 @@ "par_idN107B0\n" "help.text" msgid "Select this check box if the first line of the text file contains field names." -msgstr "" +msgstr "Jelölje be ezt a négyzetet, ha a szövegfájl első sora mezőneveket tartalmaz." #. FujFi #: dabapropadd.xhp @@ -6979,7 +6979,7 @@ "par_idN105BD\n" "help.text" msgid "Field separator" -msgstr "" +msgstr "Mezőelválasztó" #. f85dT #: dabapropadd.xhp @@ -6988,7 +6988,7 @@ "par_idN107CF\n" "help.text" msgid "Enter or select the character that separates data fields in the text file." -msgstr "" +msgstr "Adja meg vagy válassza ki a szövegfájlokban lévő adatmezőket elválasztó karaktert." #. 2GiWs #: dabapropadd.xhp @@ -6997,7 +6997,7 @@ "par_idN105C1\n" "help.text" msgid "Text separator" -msgstr "" +msgstr "Szövegelválasztó" #. f9igV #: dabapropadd.xhp @@ -7006,7 +7006,7 @@ "par_idN107DC\n" "help.text" msgid "Enter or select the character that identifies a text field in the text file. You cannot use the same character as the field separator." -msgstr "" +msgstr "Írja be vagy válasza ki a szövegmezőt a szövegfájlban azonosító karaktert. Nem használhat mezőelválasztóként kijelölt karaktert." #. nPoAN #: dabapropadd.xhp @@ -7015,7 +7015,7 @@ "par_idN105C5\n" "help.text" msgid "Decimal separator" -msgstr "" +msgstr "Tizedesjel" #. zz9uf #: dabapropadd.xhp @@ -7024,7 +7024,7 @@ "par_idN107E9\n" "help.text" msgid "Enter or select the character that is used as a decimal separator in the text file, for example, a period (0.5) or a comma (0,5)." -msgstr "" +msgstr "Adja meg vagy válassza ki a szövegfájlban tizedesjelként használt karaktert, például pontot (0.5) vagy vesszőt (0,5)." #. pxpUk #: dabapropadd.xhp @@ -7033,7 +7033,7 @@ "par_idN105C9\n" "help.text" msgid "Thousands separator" -msgstr "" +msgstr "Ezreselválasztó" #. Z66yU #: dabapropadd.xhp @@ -7042,7 +7042,7 @@ "par_idN107F6\n" "help.text" msgid "Enter or select the character that is used as a thousands separator in the text file, for example a comma (1,000), or a period (1.000)." -msgstr "" +msgstr "Adja meg vagy válassza ki a szöveges fájlban ezreselválasztóként használt karaktert, például vesszőt (1,000) vagy pontot (1.000)." #. zF6Wc #: dabapropadd.xhp @@ -7051,7 +7051,7 @@ "par_idN105CD\n" "help.text" msgid "File extension" -msgstr "" +msgstr "Fájlkiterjesztés" #. 4UxAN #: dabapropadd.xhp @@ -7060,7 +7060,7 @@ "par_idN10803\n" "help.text" msgid "Select the format for the text file. The extension that you select affects some of the default settings in this dialog." -msgstr "" +msgstr "Válassza ki a szövegfájl formátumát. A kiválasztott kiterjesztés hatással van a párbeszédablak néhány alapértelmezett beállítására." #. KEi9S #: dabapropcon.xhp @@ -7069,7 +7069,7 @@ "tit\n" "help.text" msgid "Connection Type Wizard" -msgstr "" +msgstr "Kapcsolat típusa tündér" #. tR5Cs #: dabapropcon.xhp @@ -7078,7 +7078,7 @@ "par_idN1054D\n" "help.text" msgid "Connection Type Wizard" -msgstr "" +msgstr "Kapcsolat típusa tündér" #. cnXMD #: dabapropcon.xhp @@ -7087,7 +7087,7 @@ "par_idN10551\n" "help.text" msgid "Changes the type of connection for the current database." -msgstr "" +msgstr "Megváltoztatja a kapcsolat típusát az aktuális adatbázishoz." #. UGEKg #: dabapropcon.xhp @@ -7096,7 +7096,7 @@ "par_id9003875\n" "help.text" msgid "In a database window, choose Edit - Database - Connection Type" -msgstr "" +msgstr "Egy adatbázisablakban válassza a Szerkesztés - Adatbázis - Kapcsolattípus lehetőséget" #. nwRC4 #: dabapropcon.xhp @@ -7105,7 +7105,7 @@ "par_idN10569\n" "help.text" msgid "The Connection Type Wizard consists of three pages. You cannot transfer all settings from one database type to another." -msgstr "" +msgstr "A Kapcsolat típusa tündér három oldalból áll. A beállításokat nem lehetséges átvinni egyik adatbázisról a másikra." #. htEBY #: dabapropcon.xhp @@ -7114,7 +7114,7 @@ "par_idN1056C\n" "help.text" msgid "For example, you can use the wizard to open a database file that is in a format that is usually not recognized by an installed database." -msgstr "" +msgstr "Például használhatja a tündért olyan adatbázisfájl megnyitására, amelynek a formátumát nem ismeri föl a telepített adatbázis-kezelő." #. GLS4A #: dabapropcon.xhp @@ -7123,7 +7123,7 @@ "par_idN1056F\n" "help.text" msgid "Database type" -msgstr "" +msgstr "Adatbázis típusa" #. TAPYr #: dabapropcon.xhp @@ -7132,7 +7132,7 @@ "par_idN10573\n" "help.text" msgid "Select the type of database that you want to connect to." -msgstr "" +msgstr "Válassza ki az adatbázis típusát, amelyhez kapcsolódni akar." #. pr7Ss #: dabapropgen.xhp @@ -7141,7 +7141,7 @@ "tit\n" "help.text" msgid "Advanced Properties" -msgstr "" +msgstr "Speciális tulajdonságok" #. eFAEi #: dabapropgen.xhp @@ -7150,7 +7150,7 @@ "par_idN1054D\n" "help.text" msgid "Advanced Properties" -msgstr "" +msgstr "Speciális tulajdonságok" #. u6Nh4 #: dabapropgen.xhp @@ -7159,7 +7159,7 @@ "par_idN1055D\n" "help.text" msgid "Specifies some options for a database." -msgstr "" +msgstr "Megadja az adatbázis néhány beállítását." #. BGBSR #: dabapropgen.xhp @@ -7168,7 +7168,7 @@ "par_id4513992\n" "help.text" msgid "In a database window, choose Edit - Database - Properties, click Advanced Properties tab" -msgstr "" +msgstr "Egy adatbázisablakban válassza a Szerkesztés - Adatbázis - Tulajdonságok lehetőséget, majd kattintson a Speciális tulajdonságok lapra" #. VRoAF #: dabapropgen.xhp @@ -7177,7 +7177,7 @@ "par_idN10572\n" "help.text" msgid "The availability of the following controls depends on the type of database:" -msgstr "" +msgstr "A következő vezérlők elérhetősége függ az adatbázis típusától:" #. BBQPA #: dabapropgen.xhp @@ -7186,7 +7186,7 @@ "par_idN10575\n" "help.text" msgid "Path to dBASE files" -msgstr "" +msgstr "A dBase-fájlok elérési útvonala" #. QKfDa #: dabapropgen.xhp @@ -7195,7 +7195,7 @@ "par_idN10579\n" "help.text" msgid "Enter the path to the directory that contains the dBASE files." -msgstr "" +msgstr "Adja meg a dBase-fájlokat tartalmazó könyvtár elérési útját." #. L6KhU #: dabapropgen.xhp @@ -7204,7 +7204,7 @@ "par_idN1057C\n" "help.text" msgid "Ensure that the *.dbf file name extension of the dBASE files is lowercase." -msgstr "" +msgstr "Győződjön meg róla, hogy a dBASE-fájlok *.dbf fájlnév-kiterjesztése kisbetűkkel legyen írva." #. 3FEHH #: dabapropgen.xhp @@ -7213,7 +7213,7 @@ "par_idN10591\n" "help.text" msgid "Browse" -msgstr "" +msgstr "Tallózás" #. hERNG #: dabapropgen.xhp @@ -7222,7 +7222,7 @@ "par_idN10595\n" "help.text" msgid "Opens a dialog where you can select a file or a directory." -msgstr "" +msgstr "Megnyit egy párbeszédablakot, amelyben kijelölhet egy fájlt vagy könyvtárat." #. ASumy #: dabapropgen.xhp @@ -7231,7 +7231,7 @@ "par_idN105AA\n" "help.text" msgid "Test Connection" -msgstr "" +msgstr "Kapcsolat tesztelése" #. pvebP #: dabapropgen.xhp @@ -7240,7 +7240,7 @@ "par_idN105AE\n" "help.text" msgid "Tests the database connection with the current settings." -msgstr "" +msgstr "A jelenlegi beállításokkal teszteli az adatbázis-kapcsolatot." #. avxGq #: dabapropgen.xhp @@ -7249,7 +7249,7 @@ "par_idN105B1\n" "help.text" msgid "Path to the text files" -msgstr "" +msgstr "A szövegfájlok elérési útvonala" #. zC6Zp #: dabapropgen.xhp @@ -7258,7 +7258,7 @@ "par_idN105B5\n" "help.text" msgid "Enter the path to the folder of the text files." -msgstr "" +msgstr "Adja meg a szövegfájlokat tartalmazó könyvtár elérési útját." #. BbvJR #: dabapropgen.xhp @@ -7267,7 +7267,7 @@ "par_idN105B8\n" "help.text" msgid "Path to the spreadsheet document" -msgstr "" +msgstr "A munkafüzet-dokumentumok elérési útvonala" #. 7uZBe #: dabapropgen.xhp @@ -7276,7 +7276,7 @@ "par_idN105BC\n" "help.text" msgid "Enter the path to the spreadsheet document that you want to use as a database." -msgstr "" +msgstr "Adja meg az adatbázisként használni kívánt munkafüzet-dokumentum elérési útját." #. sHbo7 #: dabapropgen.xhp @@ -7285,7 +7285,7 @@ "par_idN105BF\n" "help.text" msgid "Name of the ODBC data source on your system" -msgstr "" +msgstr "Az ODBC-adatforrás neve a rendszeren" #. oEcfz #: dabapropgen.xhp @@ -7294,7 +7294,7 @@ "par_idN105C3\n" "help.text" msgid "Enter the name of the ODBC data source." -msgstr "" +msgstr "Írja be az ODBC-adatforrás nevét." #. GNzhk #: dabapropgen.xhp @@ -7303,7 +7303,7 @@ "par_idN105C6\n" "help.text" msgid "User name" -msgstr "" +msgstr "Felhasználónév" #. SiH7S #: dabapropgen.xhp @@ -7312,7 +7312,7 @@ "par_idN105CA\n" "help.text" msgid "Enter the user name that is required to access the database." -msgstr "" +msgstr "Adja meg a felhasználónevet, ami az adatbázis eléréséhez szükséges." #. YDXqp #: dabapropgen.xhp @@ -7321,7 +7321,7 @@ "par_idN105CD\n" "help.text" msgid "Password required" -msgstr "" +msgstr "Jelszó szükséges" #. Az64m #: dabapropgen.xhp @@ -7330,7 +7330,7 @@ "par_idN105D1\n" "help.text" msgid "If checked, the user will be asked to enter the password that is required to access the database." -msgstr "" +msgstr "Ha be van jelölve, a felhasználónak meg kell adnia a jelszót, ami az adatbázis eléréséhez szükséges." #. pQT6Z #: dabapropgen.xhp @@ -7339,7 +7339,7 @@ "hd_id7806329\n" "help.text" msgid "Name of the database" -msgstr "" +msgstr "Adatbázis neve" #. HAijN #: dabapropgen.xhp @@ -7348,7 +7348,7 @@ "par_id5589159\n" "help.text" msgid "Enter the name of the database." -msgstr "" +msgstr "Írja be az adatbázis nevét." #. 8Bxuy #: dabapropgen.xhp @@ -7357,7 +7357,7 @@ "par_idN105D4\n" "help.text" msgid "Name of the MySQL database" -msgstr "" +msgstr "A MySQL-adatbázis neve" #. e9p3M #: dabapropgen.xhp @@ -7366,7 +7366,7 @@ "par_idN105D8\n" "help.text" msgid "Enter the name of the MySQL database that you want to use as a data source." -msgstr "" +msgstr "Adja meg az adatforrásként használni kívánt MySQL-adatbázis nevét." #. UECFe #: dabapropgen.xhp @@ -7375,7 +7375,7 @@ "par_idN105DB\n" "help.text" msgid "Name of the Oracle database" -msgstr "" +msgstr "Az Oracle-adatbázis neve" #. dd99x #: dabapropgen.xhp @@ -7384,7 +7384,7 @@ "par_idN105DF\n" "help.text" msgid "Enter the name of the Oracle database that you want to use as a data source." -msgstr "" +msgstr "Adja meg az adatforrásként használni kívánt Oracle-adatbázis nevét." #. dzDEB #: dabapropgen.xhp @@ -7393,7 +7393,7 @@ "par_idN105E9\n" "help.text" msgid "Microsoft Access database file" -msgstr "" +msgstr "Microsoft Access-adatbázisfájl" #. p9EGJ #: dabapropgen.xhp @@ -7402,7 +7402,7 @@ "par_idN105ED\n" "help.text" msgid "Enter the name of the Microsoft Access database file that you want to use as a data source." -msgstr "" +msgstr "Adja meg az adatforrásként használni kívánt Microsoft Access-adatbázisfájl nevét." #. s7mEP #: dabapropgen.xhp @@ -7411,7 +7411,7 @@ "par_idN105F0\n" "help.text" msgid "Host name" -msgstr "" +msgstr "Gépnév" #. WpRBM #: dabapropgen.xhp @@ -7420,7 +7420,7 @@ "par_idN105F4\n" "help.text" msgid "Enter the host name for the LDAP data source." -msgstr "" +msgstr "Írja be az LDAP-adatforrás gépnevét." #. NsdZh #: dabapropgen.xhp @@ -7429,7 +7429,7 @@ "par_idN105F7\n" "help.text" msgid "Data source URL" -msgstr "" +msgstr "Adatforrás URL" #. kB6vt #: dabapropgen.xhp @@ -7438,7 +7438,7 @@ "par_idN105FB\n" "help.text" msgid "Enter the location of the JDBC data source as a URL." -msgstr "" +msgstr "Írja be a JDBC-adatforrás helyét URL formájában." #. 2qqXH #: dabapropgen.xhp @@ -7447,7 +7447,7 @@ "par_idN105FE\n" "help.text" msgid "JDBC driver class" -msgstr "" +msgstr "JDBC-illesztőprogram osztálya" #. 4kGAN #: dabapropgen.xhp @@ -7456,7 +7456,7 @@ "par_idN10602\n" "help.text" msgid "Enter the name of the JDBC driver class that connects to the data source." -msgstr "" +msgstr "Írja be az adatforráshoz kapcsolódó JDBC-illesztőprogram osztályának nevét." #. uprKx #: dabapropgen.xhp @@ -7465,7 +7465,7 @@ "par_idN10605\n" "help.text" msgid "Test Class" -msgstr "" +msgstr "Osztály tesztelése" #. SL9De #: dabapropgen.xhp @@ -7474,7 +7474,7 @@ "par_idN10609\n" "help.text" msgid "Tests the database connection through the JDBC driver class." -msgstr "" +msgstr "Teszteli az adatbázis-kapcsolatot a JDBC-illesztőprogram osztályán keresztül." #. LXtcL #: dabapropgen.xhp @@ -7483,7 +7483,7 @@ "par_idN10613\n" "help.text" msgid "Choose a database" -msgstr "" +msgstr "Adatbázis kiválasztása" #. QNz26 #: dabapropgen.xhp @@ -7492,7 +7492,7 @@ "par_idN10617\n" "help.text" msgid "Select a database from the list or click Create to create a new database." -msgstr "" +msgstr "Válasszon ki egy adatbázist a listából, vagy kattintson a Létrehozás gombra új adatbázis létrehozásához." #. BhD6X #: dabawiz00.xhp @@ -7501,7 +7501,7 @@ "tit\n" "help.text" msgid "Database Wizard" -msgstr "" +msgstr "Adatbázistündér" #. dYT7e #: dabawiz00.xhp @@ -7519,7 +7519,7 @@ "par_idN105B4\n" "help.text" msgid "Database Wizard" -msgstr "" +msgstr "Adatbázistündér" #. 4L7fe #: dabawiz00.xhp @@ -7528,7 +7528,7 @@ "par_id9856563\n" "help.text" msgid "The Database Wizard creates a database file that contains information about a database." -msgstr "" +msgstr "Az Adatbázistündér létrehoz egy adatbázisfájlt, amely az adatbázisról tartalmaz információkat." #. MP58w #: dabawiz00.xhp @@ -7537,7 +7537,7 @@ "par_idN105D5\n" "help.text" msgid "Depending on the type of operation and the type of database, the Database Wizard consists of a varying number of steps." -msgstr "" +msgstr "A művelet és az adatbázis típusától függően az Adatbázistündér lépéseinek száma eltérő." #. BvAbd #: dabawiz00.xhp @@ -7546,7 +7546,7 @@ "par_idN105DB\n" "help.text" msgid "If you create a new database file, the wizard contains two steps." -msgstr "" +msgstr "Új adatbázisfájl létrehozása esetén a tündér két lépésből áll." #. 75qWp #: dabawiz00.xhp @@ -7636,7 +7636,7 @@ "tit\n" "help.text" msgid "Database Selection" -msgstr "" +msgstr "Adatbázis kiválasztása" #. cE94h #: dabawiz01.xhp @@ -7645,7 +7645,7 @@ "bm_id2082583\n" "help.text" msgid "databases; connecting (Base)" -msgstr "" +msgstr "adatbázisok; összekapcsolás (Base)" #. 6LQ8F #: dabawiz01.xhp @@ -7654,7 +7654,7 @@ "par_idN1054D\n" "help.text" msgid "Select Database" -msgstr "" +msgstr "Adatbázis választása" #. MNcgG #: dabawiz01.xhp @@ -7663,7 +7663,7 @@ "par_idN1055D\n" "help.text" msgid "Creates a new database, opens a database file, or connects to an existing database." -msgstr "" +msgstr "Új adatbázist hoz létre, megnyit egy adatbázisfájlt vagy csatlakozik egy meglévő adatbázishoz." #. 3gKji #: dabawiz01.xhp @@ -7672,7 +7672,7 @@ "par_idN10585\n" "help.text" msgid "Create a new database" -msgstr "" +msgstr "Új adatbázis létrehozása" #. QsxqK #: dabawiz01.xhp @@ -7681,7 +7681,7 @@ "par_idN10589\n" "help.text" msgid "Select to create a new database. This option uses the HSQL database engine with default settings. The final page of the wizard appears next." -msgstr "" +msgstr "Válassza ezt új adatbázis létrehozásához. Ez a lehetőség a HSQL-adatbázismotort használja az alapértelmezett beállításokkal. A következő oldal a tündér utolsó oldala." #. FMbMQ #: dabawiz01.xhp @@ -7690,7 +7690,7 @@ "par_id8584246\n" "help.text" msgid "External web page about HSQL." -msgstr "" +msgstr "Külső weboldal a HSQL-ről." #. RzgCQ #: dabawiz01.xhp @@ -7699,7 +7699,7 @@ "par_idN105F9\n" "help.text" msgid "Open an existing database file" -msgstr "" +msgstr "Létező adatbázisfájl megnyitása" #. SrmuV #: dabawiz01.xhp @@ -7708,7 +7708,7 @@ "par_idN105FD\n" "help.text" msgid "Select to open a database file from a list of recently used files or from a file selection dialog." -msgstr "" +msgstr "Válassza ki a megnyitandó adatbázisfájlt az utoljára megnyitott fájlok listájából vagy a fájlkiválasztó párbeszédablak segítségével." #. HNAd8 #: dabawiz01.xhp @@ -7717,7 +7717,7 @@ "par_idN10614\n" "help.text" msgid "Recently used" -msgstr "" +msgstr "Legutóbb használt" #. ZGuNR #: dabawiz01.xhp @@ -7726,7 +7726,7 @@ "par_idN10618\n" "help.text" msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard." -msgstr "" +msgstr "Válassza ki a megnyitandó adatbázisfájlt az utoljára megnyitott fájlok listájából. Kattintson a Befejezés gombra a fájl azonnali megnyitásához és a tündérből való kilépéshez." #. ACzer #: dabawiz01.xhp @@ -7735,7 +7735,7 @@ "par_idN1062F\n" "help.text" msgid "Open" -msgstr "" +msgstr "Megnyitás" #. 9WBfN #: dabawiz01.xhp @@ -7744,7 +7744,7 @@ "par_idN10633\n" "help.text" msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard." -msgstr "" +msgstr "Egy fájlkiválasztó párbeszédablakot nyit meg, amelyben kiválaszthat egy adatbázisfájlt. Kattintson a fájlkiválasztó párbeszédablak Megnyitás vagy az OK gombjára a fájl azonnali megnyitásához és a tündérből való kilépéshez." #. rLwWT #: dabawiz01.xhp @@ -7753,7 +7753,7 @@ "par_idN1058C\n" "help.text" msgid "Connect to an existing database" -msgstr "" +msgstr "Kapcsolódás létező adatbázishoz" #. tF4HK #: dabawiz01.xhp @@ -7762,7 +7762,7 @@ "par_idN10590\n" "help.text" msgid "Select to create a database document for an existing database connection." -msgstr "" +msgstr "Válassza ezt egy meglévő adatbázis-kapcsolaton alapuló adatbázis-dokumentum létrehozásához." #. M4MGu #: dabawiz01.xhp @@ -7771,7 +7771,7 @@ "par_idN10593\n" "help.text" msgid "Database type" -msgstr "" +msgstr "Adatbázis típusa" #. jypBq #: dabawiz01.xhp @@ -7780,7 +7780,7 @@ "par_idN10597\n" "help.text" msgid "Select the database type for the existing database connection." -msgstr "" +msgstr "Kiválasztja az adatbázis típusát a meglévő adatbázis-kapcsolathoz." #. xNvnU #: dabawiz01.xhp @@ -7789,7 +7789,7 @@ "par_idN1059A\n" "help.text" msgid "The Outlook, Evolution, KDE Address Book, and Seamonkey database types do not need additional information. For other database types, the wizard contains additional pages to specify the required information." -msgstr "" +msgstr "Az Outlook, Evolution, KDE-címjegyzék és Seamonkey adatbázistípusokhoz nem szükségesek további információk. A többi adatbázistípushoz a tündér további oldalakat tartalmaz, amelyeken megadhatók a szükséges információk." #. 4RN7W #: dabawiz01.xhp @@ -7798,7 +7798,7 @@ "par_idN10611\n" "help.text" msgid "The next wizard page is one of the following pages:" -msgstr "" +msgstr "A tündér következő oldala az alábbiak közül az egyik:" #. 9fLay #: dabawiz01.xhp @@ -7870,7 +7870,7 @@ "tit\n" "help.text" msgid "Save and proceed" -msgstr "" +msgstr "Mentés és végrehajtás" #. Hjhen #: dabawiz02.xhp @@ -7879,7 +7879,7 @@ "par_idN10544\n" "help.text" msgid "Save and proceed" -msgstr "" +msgstr "Mentés és végrehajtás" #. CECqo #: dabawiz02.xhp @@ -7888,7 +7888,7 @@ "par_idN10554\n" "help.text" msgid "Specifies whether you want to register the database, open the database for editing, or insert a new table." -msgstr "" +msgstr "Megadja, hogy regisztrálni szeretné-e az adatbázist, megnyitja-e az adatbázist szerkesztésre, vagy beszúr-e egy új táblát." #. v3hCS #: dabawiz02.xhp @@ -7897,7 +7897,7 @@ "par_idN10557\n" "help.text" msgid "Yes, register the Database for me" -msgstr "" +msgstr "Igen, regisztrálom az adatbázist" #. 6iEY2 #: dabawiz02.xhp @@ -7906,7 +7906,7 @@ "par_idN105B4\n" "help.text" msgid "Select to register the database within your user copy of %PRODUCTNAME. After registering, the database is displayed in the View - Data Sources window. You must register a database to be able to insert the database fields in a document (Insert - Field - More Fields) or in a mail merge." -msgstr "" +msgstr "Válassza ezt az adatbázis regisztrálásához a %PRODUCTNAME felhasználói másolatába. A regisztrálás után az adatbázis a Nézet - Adatforrások ablakban jelenik meg. Az adatbázist regisztrálnia kell ahhoz, hogy az adatbázismezőket beszúrhassa egy dokumentumba (Beszúrás - Mező - További mezők) vagy körlevélbe." #. BDPbo #: dabawiz02.xhp @@ -7915,7 +7915,7 @@ "par_idN105B7\n" "help.text" msgid "No, do not register the database" -msgstr "" +msgstr "Nem, az adatbázis-regisztráció kihagyása" #. PHFCG #: dabawiz02.xhp @@ -7924,7 +7924,7 @@ "par_idN105BB\n" "help.text" msgid "Select to keep the database information only within the created database file." -msgstr "" +msgstr "Válassza ezt, ha az adatbázis-információkat csak a létrehozott adatbázisfájlban szeretné tartani." #. xJFV8 #: dabawiz02.xhp @@ -7933,7 +7933,7 @@ "par_idN1055B\n" "help.text" msgid "Open the database for editing" -msgstr "" +msgstr "Adatbázis megnyitása szerkesztésre" #. 2oDVV #: dabawiz02.xhp @@ -7942,7 +7942,7 @@ "par_idN105C6\n" "help.text" msgid "Select to display the database file, where you can edit the database structure." -msgstr "" +msgstr "Válassza ezt az adatbázisfájl megjelenítéséhez, ahol szerkeszteni tudja az adatbázis-struktúrát." #. uUaJe #: dabawiz02.xhp @@ -7951,7 +7951,7 @@ "par_idN1055F\n" "help.text" msgid "Create tables using the table wizard" -msgstr "" +msgstr "Táblák létrehozása a táblatündér segítségével" #. CihhJ #: dabawiz02.xhp @@ -7960,7 +7960,7 @@ "par_idN105D1\n" "help.text" msgid "Select to call the Table Wizard after the Database Wizard is finished." -msgstr "" +msgstr "Válassza ezt a Táblatündér meghívásához, miután az Adatbázistündér befejeződött." #. YnZ24 #: dabawiz02access.xhp @@ -7969,7 +7969,7 @@ "tit\n" "help.text" msgid "Microsoft Access Connection" -msgstr "" +msgstr "Microsoft Access-kapcsolat" #. uUAxL #: dabawiz02access.xhp @@ -7978,7 +7978,7 @@ "bm_id2755516\n" "help.text" msgid "Access databases (base)Microsoft Office;Access databases (base)" -msgstr "" +msgstr "Access-adatbázisok (Base)Microsoft Office; Access-adatbázisok (Base)" #. iPpLv #: dabawiz02access.xhp @@ -7987,7 +7987,7 @@ "par_idN1053D\n" "help.text" msgid "Microsoft Access Connection" -msgstr "" +msgstr "Microsoft Access-kapcsolat" #. eMbAE #: dabawiz02access.xhp @@ -7996,7 +7996,7 @@ "par_idN10541\n" "help.text" msgid "Specifies the settings for importing a database file in Microsoft Access or Access 2007 format." -msgstr "" +msgstr "Megadja Microsoft Access vagy Microsoft Access 2007 formátumú adatbázisfájl importálásának beállításait." #. FJFQi #: dabawiz02access.xhp @@ -8014,7 +8014,7 @@ "par_idN10544\n" "help.text" msgid "Microsoft Access database file" -msgstr "" +msgstr "Microsoft Access-adatbázisfájl" #. 5nSHE #: dabawiz02access.xhp @@ -8023,7 +8023,7 @@ "par_idN10548\n" "help.text" msgid "Specifies the path to the database file." -msgstr "" +msgstr "Megadja az adatbázisfájl útvonalát." #. cKU7v #: dabawiz02access.xhp @@ -8032,7 +8032,7 @@ "par_idN1054B\n" "help.text" msgid "Browse" -msgstr "" +msgstr "Tallózás" #. k4EM5 #: dabawiz02access.xhp @@ -8041,7 +8041,7 @@ "par_idN1054F\n" "help.text" msgid "Click to open a file selection dialog." -msgstr "" +msgstr "Kattintson ide egy fájlkiválasztó párbeszédablak megnyitásához." #. gjtnv #: dabawiz02ado.xhp @@ -8050,7 +8050,7 @@ "tit\n" "help.text" msgid "ADO Connection" -msgstr "" +msgstr "ADO-kapcsolat" #. jJtjy #: dabawiz02ado.xhp @@ -8059,7 +8059,7 @@ "bm_id7565233\n" "help.text" msgid "ADO databases (Base)MS ADO interface (Base)databases;ADO (Base)" -msgstr "" +msgstr "ADO adatbázisok (Base)MS ADO interfész (Base)adatbázisok;ADO (Base)" #. 9Yxn5 #: dabawiz02ado.xhp @@ -8068,7 +8068,7 @@ "par_idN1054C\n" "help.text" msgid "ADO Connection" -msgstr "" +msgstr "ADO-kapcsolat" #. Gi6xc #: dabawiz02ado.xhp @@ -8077,7 +8077,7 @@ "par_idN10550\n" "help.text" msgid "Specifies the options for adding an ADO (Microsoft ActiveX Data Objects) database." -msgstr "" +msgstr "Megadja egy ADO (Microsoft ActiveX Data Objects) adatbázis hozzáadásának beállításait." #. pGwdA #: dabawiz02ado.xhp @@ -8086,7 +8086,7 @@ "par_idN10565\n" "help.text" msgid "The ADO interface is a Microsoft Windows proprietary container for connecting to databases." -msgstr "" +msgstr "Az ADO interfész a Microsoft Windows szabadalmazott tárolója az adatbázisokhoz csatlakozáshoz." #. mVEj7 #: dabawiz02ado.xhp @@ -8095,7 +8095,7 @@ "par_idN10568\n" "help.text" msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default." -msgstr "" +msgstr "A $[officename] számára szükséges a Microsoft Data Access Components (MDAC) az ADO interfész használatához. A Microsoft Windows 2000 és XP alapból tartalmazza ezeket a komponenseket." #. CWQxx #: dabawiz02ado.xhp @@ -8104,7 +8104,7 @@ "par_idN1056B\n" "help.text" msgid "Data source URL" -msgstr "" +msgstr "Adatforrás URL" #. dEHxg #: dabawiz02ado.xhp @@ -8113,7 +8113,7 @@ "par_idN1056F\n" "help.text" msgid "Enter the data source URL." -msgstr "" +msgstr "Adja meg az adatforrás URL-t." #. AS8Ye #: dabawiz02ado.xhp @@ -8122,7 +8122,7 @@ "par_idN10572\n" "help.text" msgid "Example URLs" -msgstr "" +msgstr "Példa URL-ek" #. DGA9a #: dabawiz02ado.xhp @@ -8131,7 +8131,7 @@ "par_idN10576\n" "help.text" msgid "To connect to an Access 2000 file, use the format:" -msgstr "" +msgstr "Egy Access 2000 típusú fájlhoz való kapcsolódáshoz használja az alábbi formátumot:" #. EYrtv #: dabawiz02ado.xhp @@ -8140,7 +8140,7 @@ "par_idN10579\n" "help.text" msgid "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=c:\\Access\\nwind2000.mdb" -msgstr "" +msgstr "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=c:\\Access\\nwind2000.mdb" #. JrQva #: dabawiz02ado.xhp @@ -8149,7 +8149,7 @@ "par_idN1057C\n" "help.text" msgid "To connect with a name to a catalog on a Microsoft SQL server that has a name turner, enter:" -msgstr "" +msgstr "Egy névfordítóval rendelkező Microsoft SQL-kiszolgálón található katalógushoz névvel történő kapcsolódás esetén írja be:" #. HeHcf #: dabawiz02ado.xhp @@ -8158,7 +8158,7 @@ "par_idN1057F\n" "help.text" msgid "PROVIDER=sqloledb;DATA SOURCE=turner;INITIAL CATALOG=First" -msgstr "" +msgstr "PROVIDER=sqloledb;DATA SOURCE=turner;INITIAL CATALOG=First" #. eqFwU #: dabawiz02ado.xhp @@ -8167,7 +8167,7 @@ "par_idN10582\n" "help.text" msgid "To access an ODBC driver as a provider:" -msgstr "" +msgstr "Egy ODBC-illesztőprogramhoz szolgáltatóként történő belépés esetén:" #. cibKq #: dabawiz02ado.xhp @@ -8176,7 +8176,7 @@ "par_idN10585\n" "help.text" msgid "DSN=SQLSERVER" -msgstr "" +msgstr "DSN=SQLSERVER" #. FFdf5 #: dabawiz02ado.xhp @@ -8185,7 +8185,7 @@ "par_idN10588\n" "help.text" msgid "Browse" -msgstr "" +msgstr "Tallózás" #. xmZQB #: dabawiz02ado.xhp @@ -8194,7 +8194,7 @@ "par_idN1058C\n" "help.text" msgid "Click to open a database selection dialog." -msgstr "" +msgstr "Kattintson ide egy adatbázis-kiválasztó párbeszédablak megnyitásához." #. Bi3az #: dabawiz02ado.xhp @@ -8203,7 +8203,7 @@ "par_idN10596\n" "help.text" msgid "A user name can have a maximum of 18 characters." -msgstr "" +msgstr "A felhasználónév legfeljebb 18 karakteres lehet." #. iifVJ #: dabawiz02ado.xhp @@ -8212,7 +8212,7 @@ "par_idN10599\n" "help.text" msgid "A password must contain 3 to 18 characters." -msgstr "" +msgstr "A jelszó hosszának 3 és 18 karakter közé kell esnie." #. mxSCU #: dabawiz02dbase.xhp @@ -8221,7 +8221,7 @@ "tit\n" "help.text" msgid "dBASE Connection" -msgstr "" +msgstr "dBASE-kapcsolat" #. vDDMj #: dabawiz02dbase.xhp @@ -8230,7 +8230,7 @@ "par_idN1054A\n" "help.text" msgid "dBASE Connection" -msgstr "" +msgstr "dBASE-kapcsolat" #. 3rzAr #: dabawiz02dbase.xhp @@ -8239,7 +8239,7 @@ "par_idN10556\n" "help.text" msgid "Path to the dBASE files" -msgstr "" +msgstr "A dBASE-fájlok elérési útvonala" #. 9qfqi #: dabawiz02dbase.xhp @@ -8248,7 +8248,7 @@ "par_idN1055A\n" "help.text" msgid "Enter the path to the dBASE *.dbf files." -msgstr "" +msgstr "Adja meg a dBASE *.dbf fájlok útvonalát." #. JtErQ #: dabawiz02dbase.xhp @@ -8257,7 +8257,7 @@ "par_idN10571\n" "help.text" msgid "Browse" -msgstr "" +msgstr "Tallózás" #. VHbhH #: dabawiz02dbase.xhp @@ -8266,7 +8266,7 @@ "par_idN10575\n" "help.text" msgid "Open a path selection dialog." -msgstr "" +msgstr "Nyissa meg az útvonalválasztó párbeszédablakot." #. n9AxK #: dabawiz02jdbc.xhp @@ -8275,7 +8275,7 @@ "tit\n" "help.text" msgid "JDBC Connection" -msgstr "" +msgstr "JDBC-kapcsolat" #. BSPeu #: dabawiz02jdbc.xhp @@ -8284,7 +8284,7 @@ "bm_id3726920\n" "help.text" msgid "JDBC; databases (Base)databases; JDBC (Base)" -msgstr "" +msgstr "JDBC; adatbázisok (Base)adatbázisok; JDBC (Base)" #. nSDvF #: dabawiz02jdbc.xhp @@ -8293,7 +8293,7 @@ "par_idN105FC\n" "help.text" msgid "JDBC Connection" -msgstr "" +msgstr "JDBC-kapcsolat" #. 4vvDv #: dabawiz02jdbc.xhp @@ -8311,7 +8311,7 @@ "par_idN10623\n" "help.text" msgid "JDBC Examples" -msgstr "" +msgstr "JDBC-példák" #. FAkVF #: dabawiz02jdbc.xhp @@ -8320,7 +8320,7 @@ "par_idN10627\n" "help.text" msgid "You can use a JDBC driver class to connect to a JDBC database from %PRODUCTNAME. The driver class is provided by the database manufacturer. Two examples of JDBC databases are Oracle and MySQL." -msgstr "" +msgstr "A JDBC-illesztőprogram osztályát JDBC-adatbázishoz kapcsolódásra használhatja a %PRODUCTNAME-ból. Az illesztőprogram-osztályt az adatbázis-kezelő gyártója biztosítja. JDBC-adatbázisra két példa az Oracle és a MySQL." #. ehUZi #: dabawiz02jdbc.xhp @@ -8329,7 +8329,7 @@ "par_idN1062D\n" "help.text" msgid "The driver classes must be added to %PRODUCTNAME in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced." -msgstr "" +msgstr "Az illesztőprogram-osztályokat hozzá kell adni a %PRODUCTNAME-hoz a %PRODUCTNAME - Beállításokz Eszközök- Beállítások - %PRODUCTNAME - Speciális alatt." #. KTrhC #: dabawiz02jdbc.xhp @@ -8338,7 +8338,7 @@ "par_idN10634\n" "help.text" msgid "Oracle database" -msgstr "" +msgstr "Oracle adatbázis" #. Br2JC #: dabawiz02jdbc.xhp @@ -8347,7 +8347,7 @@ "par_idN10638\n" "help.text" msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver." -msgstr "" +msgstr "Egy Oracle-adatbázis eléréséhez Solaris és Linux rendszereken használhatja a JDBC-illesztőprogramot. Az adatbázis eléréséhez Windows rendszerből ODBC-illesztőprogramra van szükség." #. pei94 #: dabawiz02jdbc.xhp @@ -8356,7 +8356,7 @@ "par_idN1064B\n" "help.text" msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the /product/jdbc/lib/classes111.zip directory. You can also download the latest version from the Oracle web site." -msgstr "" +msgstr "UNIX alatt győződjön meg róla, hogy az Oracle-adatbáziskliens JDBC-támogatással van-e telepítve. A Solaris Oracle kliens 8.x változat JDBC illesztőprogram-osztálya az /product/jdbc/lib/classes111.zip könyvtárban található. A legfrissebb változatot az Oracle webhelyéről is letöltheti." #. DifQh #: dabawiz02jdbc.xhp @@ -8365,7 +8365,7 @@ "par_idN10661\n" "help.text" msgid "In the Data source URL box, enter the location of the Oracle database server. The syntax of the URL depends on the database type. See the documentation that came with the JDBC driver for more information." -msgstr "" +msgstr "Írja be az Oracle-adatbáziskiszolgáló helyét az Adatforrás URL mezőbe. Az URL szintaxisa az adatbázistípustól függ. További információkért tekintse meg a JDBC-illesztőprogramhoz biztosított dokumentációt." #. BBFrJ #: dabawiz02jdbc.xhp @@ -8374,7 +8374,7 @@ "par_idN10668\n" "help.text" msgid "For an Oracle database, the syntax of the URL is:" -msgstr "" +msgstr "Oracle-adatbázis esetén az URL szintaxisa a következő:" #. 7tbob #: dabawiz02jdbc.xhp @@ -8383,7 +8383,7 @@ "par_idN1066B\n" "help.text" msgid "oracle:thin:@hostname:port:database_name" -msgstr "" +msgstr "oracle:thin:@gépnév:port:adatbázisnév" #. RiDDR #: dabawiz02jdbc.xhp @@ -8392,7 +8392,7 @@ "par_idN10674\n" "help.text" msgid "hostname is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server." -msgstr "" +msgstr "a gépnév a számítógép neve, amely az Oracle adatbázist futtatja. A gépnév helyett a kiszolgáló IP-címe is állhat." #. sFfhQ #: dabawiz02jdbc.xhp @@ -8401,7 +8401,7 @@ "par_idN10678\n" "help.text" msgid "port is the port where the Oracle database listens. Ask your database administrator for the correct port address." -msgstr "" +msgstr "a port az a port, ahol az Oracle adatbázis figyel. Kérdezze meg az adatbázis-adminisztrátortól a megfelelő portcímet." #. GDkVv #: dabawiz02jdbc.xhp @@ -8410,7 +8410,7 @@ "par_idN1067C\n" "help.text" msgid "database_name is the name of the Oracle database. Ask your database administrator for the correct name." -msgstr "" +msgstr "az adatbázisnév az Oracle adatbázis neve. Kérdezze meg az adatbázis-adminisztrátortól a megfelelő nevet." #. aQiqR #: dabawiz02jdbc.xhp @@ -8419,7 +8419,7 @@ "par_idN1067F\n" "help.text" msgid "MySQL database" -msgstr "" +msgstr "MySQL adatbázis" #. FEV5u #: dabawiz02jdbc.xhp @@ -8428,7 +8428,7 @@ "par_idN10683\n" "help.text" msgid "The driver for the MySQL database is available on the MySQL web site." -msgstr "" +msgstr "A MySQL adatbázis-kezelő illesztőprogramja a MySQL weboldaláról érhető el." #. p2v67 #: dabawiz02jdbc.xhp @@ -8437,7 +8437,7 @@ "par_idN10689\n" "help.text" msgid "The syntax for a MySQL database is:" -msgstr "" +msgstr "MySQL adatbázis esetén a szintaxis a következő:" #. wEDsL #: dabawiz02jdbc.xhp @@ -8446,7 +8446,7 @@ "par_idN1068C\n" "help.text" msgid "mysql://hostname:port/database_name" -msgstr "" +msgstr "mysql://gépnév:port/adatbázisnév" #. m5Kcx #: dabawiz02jdbc.xhp @@ -8455,7 +8455,7 @@ "par_idN10695\n" "help.text" msgid "hostname is the name of the machine that runs the MySQL database. You can also replace hostname with the IP address of the server." -msgstr "" +msgstr "a gépnév a számítógép neve, amely a MySQL adatbázist futtatja. A gépnév helyett a kiszolgáló IP-címe is állhat." #. LCpew #: dabawiz02jdbc.xhp @@ -8464,7 +8464,7 @@ "par_idN10699\n" "help.text" msgid "port is the default port for MySQL databases, namely 3306." -msgstr "" +msgstr "a port a MySQL adatbázisok alapértelmezett portja, a 3306-os." #. q2DuM #: dabawiz02jdbc.xhp @@ -8473,7 +8473,7 @@ "par_idN1069D\n" "help.text" msgid "database_name is the name of the database." -msgstr "" +msgstr "az adatbázisnév az adatbázis neve." #. YYgSg #: dabawiz02jdbc.xhp @@ -8482,7 +8482,7 @@ "par_idN106A0\n" "help.text" msgid "Data source URL" -msgstr "" +msgstr "Adatforrás URL" #. EcdaK #: dabawiz02jdbc.xhp @@ -8491,7 +8491,7 @@ "par_idN106A4\n" "help.text" msgid "Enter the URL for the database. For example, for the MySQL JDBC driver, enter \"mysql:///\". For more information on the JDBC driver, consult the documentation that came with the driver." -msgstr "" +msgstr "Adja meg az adatbázis URL-címét. Például a MySQL JDBC-illesztőprogram esetén írja be: „mysql:///”. A JDBC-illesztőprogrammal kapcsolatos további információkért tekintse meg az illesztőprogramhoz tartozó dokumentációt." #. eVBSr #: dabawiz02jdbc.xhp @@ -8500,7 +8500,7 @@ "par_idN106BB\n" "help.text" msgid "JDBC Driver Class" -msgstr "" +msgstr "JDBC-illesztőprogram osztálya" #. vFsoP #: dabawiz02jdbc.xhp @@ -8509,7 +8509,7 @@ "par_idN106BF\n" "help.text" msgid "Enter the name of the JDBC driver." -msgstr "" +msgstr "Írja be a JDBC-illesztőprogram nevét." #. VHjhA #: dabawiz02jdbc.xhp @@ -8518,7 +8518,7 @@ "par_id7953733\n" "help.text" msgid "Before you can use a JDBC driver, you need to add its class path. Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced, and click the Class Path button. After you add the path information, restart %PRODUCTNAME." -msgstr "" +msgstr "A JDBC-illesztőprogram használata előtt hozzá kell adni az ezt megvalósító osztály elérési útját. A %PRODUCTNAME - Beállításokz Eszközök - Beállítások - %PRODUCTNAME - Speciális panelen kattintson az Osztály útvonala gombra. Az útvonal-információk hozzáadása után indítsa újra a %PRODUCTNAME programot." #. f8fUr #: dabawiz02jdbc.xhp @@ -8527,7 +8527,7 @@ "par_idN106CE\n" "help.text" msgid "Test Class" -msgstr "" +msgstr "Osztály tesztelése" #. 8VBbq #: dabawiz02jdbc.xhp @@ -8536,7 +8536,7 @@ "par_idN106E4\n" "help.text" msgid "Tests the connection with the current settings." -msgstr "" +msgstr "A jelenlegi beállításokkal teszteli a kapcsolatot." #. FGezr #: dabawiz02jdbc.xhp @@ -8545,7 +8545,7 @@ "par_idN106E7\n" "help.text" msgid "Authentication" -msgstr "" +msgstr "Hitelesítés" #. Y4EFA #: dabawiz02mysql.xhp @@ -8554,7 +8554,7 @@ "tit\n" "help.text" msgid "MariaDB and MySQL Connection" -msgstr "" +msgstr "MariaDB és MySQL-kapcsolat" #. bVNAZ #: dabawiz02mysql.xhp @@ -8563,7 +8563,7 @@ "bm_id861587404584956\n" "help.text" msgid "MariaDB settings (Base)MySQL settings (Base)" -msgstr "" +msgstr "MariaDB beállítások (Base)MySQL beállítások (Base)" #. MseiS #: dabawiz02mysql.xhp @@ -8572,7 +8572,7 @@ "par_idN10549\n" "help.text" msgid "MariaDB and MySQL Connection" -msgstr "" +msgstr "MariaDB és MySQL-kapcsolat" #. 5FPU6 #: dabawiz02mysql.xhp @@ -8581,7 +8581,7 @@ "par_idN1054D\n" "help.text" msgid "Specifies the options for MariaDB and MySQL databases." -msgstr "" +msgstr "Megadja a MariaDB és MySQL-adatbázisok beállításait." #. Bmcwo #: dabawiz02mysql.xhp @@ -8590,7 +8590,7 @@ "hd_id661587405298284\n" "help.text" msgid "Direct Connection for MariaDB and MySQL databases" -msgstr "" +msgstr "Közvetlen kapcsolat MariaDB és MySQL adatbázisokhoz" #. vd9VD #: dabawiz02mysql.xhp @@ -8599,7 +8599,7 @@ "hd_id321587405303769\n" "help.text" msgid "Database name" -msgstr "" +msgstr "Adatbázis neve" #. 6LAsi #: dabawiz02mysql.xhp @@ -8608,7 +8608,7 @@ "par_id371587405314376\n" "help.text" msgid "Enter the name of the MariaDB or MySQL database. Ask your database administrator for the correct name." -msgstr "" +msgstr "Íja be a MariaDB vagy MySQL adatbázis nevét. Kérdezze meg az adatbázis-adminisztrátortól a megfelelő nevet." #. jbdZp #: dabawiz02mysql.xhp @@ -8617,7 +8617,7 @@ "hd_id561587405334695\n" "help.text" msgid "Server URL" -msgstr "" +msgstr "Kiszolgálói URL" #. SshYk #: dabawiz02mysql.xhp @@ -8626,7 +8626,7 @@ "par_id521587405341138\n" "help.text" msgid "Enter the URL for the database server. This is the name of the machine that runs the MariaDB or MySQL database. You can also replace hostname with the IP address of the server." -msgstr "" +msgstr "Írja be az adatbázis-kiszolgáló URL-címét. Ez azon számítógép neve, amely a MariaDB vagy MySQL adatbázist futtatja. A gépnév helyett a kiszolgáló IP-címe is állhat." #. MZQiq #: dabawiz02mysql.xhp @@ -8635,7 +8635,7 @@ "hd_id171587405349438\n" "help.text" msgid "Port number" -msgstr "" +msgstr "Port száma" #. J2SR3 #: dabawiz02mysql.xhp @@ -8644,7 +8644,7 @@ "par_id1001587405358390\n" "help.text" msgid "Enter the port number for the database server. Ask your database administrator for the correct port address. The default port number for MySQL or MariaDB databases is 3306." -msgstr "" +msgstr "Írja be az adatbázis-kiszolgáló portszámát. Kérdezze meg az adatbázis-adminisztrátortól a megfelelő portszámot. A MariaDB vagy MySQL adatbázisok alapértelmezett portszáma 3306." #. ovKhU #: dabawiz02mysql.xhp @@ -8653,7 +8653,7 @@ "hd_id121587407845730\n" "help.text" msgid "Named Pipe" -msgstr "" +msgstr "Névvel rendelkező cső:" #. Rq89B #: dabawiz02mysql.xhp @@ -8662,7 +8662,7 @@ "par_id941587407987180\n" "help.text" msgid "If the MariaDB or MySQL database is to be accessed by a named pipe, enter its name." -msgstr "" +msgstr "Ha a MariaDB vagy MySQL adatbázist névvel rendelkező csövön kell elérni, akkor írja be a nevet." #. wF6bj #: dabawiz02mysql.xhp @@ -8671,7 +8671,7 @@ "hd_id161587405553671\n" "help.text" msgid "Socket" -msgstr "" +msgstr "Szoftvercsatorna" #. e8DB2 #: dabawiz02mysql.xhp @@ -8680,7 +8680,7 @@ "par_id161587405561472\n" "help.text" msgid "If the MariaDB or MySQL database is to be accessed by a socket, enter the socket ID." -msgstr "" +msgstr "Ha a MariaDB vagy MySQL adatbázist szoftvercsatornán kell elérni, akkor írja be a szoftvercsatorna azonosítóját." #. fpBNu #: dabawiz02mysql.xhp @@ -8689,7 +8689,7 @@ "par_idN10562\n" "help.text" msgid "Connect using ODBC (Open Database Connectivity)" -msgstr "" +msgstr "Kapcsolódás ODBC (Open Database Connectivity) használatával" #. E7sE2 #: dabawiz02mysql.xhp @@ -8698,7 +8698,7 @@ "par_idN10566\n" "help.text" msgid "Connects to an existing ODBC data source that was set on a system level." -msgstr "" +msgstr "Rendszerszinten beállított, meglévő ODBC-adatforráshoz kapcsolódik." #. AXrwJ #: dabawiz02mysql.xhp @@ -8707,7 +8707,7 @@ "par_idN10569\n" "help.text" msgid "Connect using JDBC (Java Database Connectivity)" -msgstr "" +msgstr "Kapcsolódás JDBC (Java Database Connectivity) használatával" #. i9TrE #: dabawiz02mysql.xhp @@ -8716,7 +8716,7 @@ "par_idN1056D\n" "help.text" msgid "Connects to an existing JDBC data source that was set on a system level." -msgstr "" +msgstr "Rendszerszinten beállított, meglévő JDBC-adatforráshoz kapcsolódik." #. FUG3D #: dabawiz02mysql.xhp @@ -8725,7 +8725,7 @@ "par_idN10570\n" "help.text" msgid "The next wizard page depends on your choice of ODBC or JDBC:" -msgstr "" +msgstr "A tündér következő oldala attól függ, hogy ODBC-t vagy JDBC-t választott:" #. VYcYK #: dabawiz02mysql.xhp @@ -8734,7 +8734,7 @@ "par_idN10573\n" "help.text" msgid "ODBC Connection" -msgstr "" +msgstr "ODBC-kapcsolat" #. DABkC #: dabawiz02mysql.xhp @@ -8743,7 +8743,7 @@ "par_idN10582\n" "help.text" msgid "JDBC Connection" -msgstr "" +msgstr "JDBC-kapcsolat" #. ujaGF #: dabawiz02mysql.xhp @@ -8752,7 +8752,7 @@ "par_idN10591\n" "help.text" msgid "Authentication" -msgstr "" +msgstr "Hitelesítés" #. HF588 #: dabawiz02odbc.xhp @@ -8761,7 +8761,7 @@ "tit\n" "help.text" msgid "ODBC Connection" -msgstr "" +msgstr "ODBC-kapcsolat" #. sGNau #: dabawiz02odbc.xhp @@ -8779,7 +8779,7 @@ "par_idN1053D\n" "help.text" msgid "ODBC Connection" -msgstr "" +msgstr "ODBC-kapcsolat" #. nb3Qq #: dabawiz02odbc.xhp @@ -8815,7 +8815,7 @@ "par_id8560136\n" "help.text" msgid "To connect to a Microsoft Access database on Windows, use the ADO or Access database interface, rather than ODBC." -msgstr "" +msgstr "Microsoft Access adatbázishoz történő kapcsolódáshoz Windowson használja az ADO vagy az Access adatbázis-interfészt az ODBC helyett." #. vme6U #: dabawiz02odbc.xhp @@ -8824,7 +8824,7 @@ "par_id2082583\n" "help.text" msgid "Drivers for ODBC are supplied and supported by the manufacturer of the database. $[officename] only supports the ODBC 3 standard." -msgstr "" +msgstr "Az ODBC-illesztőprogramokat az adatbázis gyártója szolgáltatja és támogatja. A $[officename] csak az ODBC 3 szabványt támogatja." #. wCexE #: dabawiz02odbc.xhp @@ -8851,7 +8851,7 @@ "par_idN10559\n" "help.text" msgid "Browse" -msgstr "" +msgstr "Tallózás" #. CSCAZ #: dabawiz02odbc.xhp @@ -8869,7 +8869,7 @@ "par_idN10560\n" "help.text" msgid "Choose a data source" -msgstr "" +msgstr "Válasszon adatforrást" #. FhAAU #: dabawiz02odbc.xhp @@ -8896,7 +8896,7 @@ "tit\n" "help.text" msgid "Oracle Database Connection" -msgstr "" +msgstr "Oracle-adatbáziskapcsolat" #. 8H3zh #: dabawiz02oracle.xhp @@ -8905,7 +8905,7 @@ "bm_id5900753\n" "help.text" msgid "Oracle databases (base)" -msgstr "" +msgstr "Oracle-adatbázisok (Base)" #. W6aaT #: dabawiz02oracle.xhp @@ -8923,7 +8923,7 @@ "par_idN105A8\n" "help.text" msgid "Specifies the options to access an Oracle database." -msgstr "" +msgstr "Megadja az Oracle-adatbázisok elérésének beállításait." #. FMq7o #: dabawiz02oracle.xhp @@ -8932,7 +8932,7 @@ "par_idN105BD\n" "help.text" msgid "Oracle database" -msgstr "" +msgstr "Oracle adatbázis" #. 8qHyA #: dabawiz02oracle.xhp @@ -8941,7 +8941,7 @@ "par_idN105C1\n" "help.text" msgid "You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver." -msgstr "" +msgstr "Egy Oracle-adatbázis eléréséhez Solaris és Linux rendszereken használhatja a JDBC-illesztőprogramot. Az adatbázis eléréséhez Windows rendszerből ODBC-illesztőprogramra van szükség." #. sSDYq #: dabawiz02oracle.xhp @@ -8950,7 +8950,7 @@ "par_idN105D4\n" "help.text" msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the /product/jdbc/lib/classes111.zip directory. You can also download the latest version of the driver from the Oracle web site." -msgstr "" +msgstr "UNIX alatt győződjön meg róla, hogy az Oracle-adatbáziskliens JDBC-támogatással van-e telepítve. A Solaris Oracle kliens 8.x változat JDBC illesztőprogram-osztálya az /product/jdbc/lib/classes111.zip könyvtárban található. Az illesztőprogram legfrissebb változatát az Oracle webhelyéről töltheti le." #. 5rxmX #: dabawiz02oracle.xhp @@ -8959,7 +8959,7 @@ "par_idN10608\n" "help.text" msgid "Name of the Oracle database" -msgstr "" +msgstr "Az Oracle-adatbázis neve" #. DxYWQ #: dabawiz02oracle.xhp @@ -8968,7 +8968,7 @@ "par_idN1060C\n" "help.text" msgid "Enter the name of the Oracle database. Ask your database administrator for the correct name." -msgstr "" +msgstr "Írja be az Oracle adatbázis nevét. Kérdezze meg az adatbázis-adminisztrátortól a megfelelő nevet." #. WKBSR #: dabawiz02oracle.xhp @@ -8977,7 +8977,7 @@ "par_idN1060F\n" "help.text" msgid "Server URL" -msgstr "" +msgstr "Kiszolgálói URL" #. vXDGs #: dabawiz02oracle.xhp @@ -8986,7 +8986,7 @@ "par_idN10613\n" "help.text" msgid "Enter the URL for the database server. This is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server." -msgstr "" +msgstr "Írja be az adatbázis-kiszolgáló URL-címét. Ez azon számítógép neve, amely az Oracle adatbázist futtatja. A gépnév helyett a kiszolgáló IP-címe is állhat." #. EEESV #: dabawiz02oracle.xhp @@ -8995,7 +8995,7 @@ "par_idN10616\n" "help.text" msgid "Port number" -msgstr "" +msgstr "Port száma" #. PBuEW #: dabawiz02oracle.xhp @@ -9004,7 +9004,7 @@ "par_idN1061A\n" "help.text" msgid "Enter the port number for the database server. Ask your database administrator for the correct port address." -msgstr "" +msgstr "Írja be az adatbázis-kiszolgáló portszámát. Kérdezze meg az adatbázis-adminisztrátortól a megfelelő portszámot." #. rYRxW #: dabawiz02oracle.xhp @@ -9013,7 +9013,7 @@ "par_idN1061D\n" "help.text" msgid "Oracle JDBC Driver Class" -msgstr "" +msgstr "Oracle JDBC-illesztőprogram osztálya" #. ouDxa #: dabawiz02oracle.xhp @@ -9022,7 +9022,7 @@ "par_idN10621\n" "help.text" msgid "Enter the name of the JDBC driver." -msgstr "" +msgstr "Írja be a JDBC-illesztőprogram nevét." #. JumUz #: dabawiz02oracle.xhp @@ -9031,7 +9031,7 @@ "par_idN10630\n" "help.text" msgid "Test Class" -msgstr "" +msgstr "Osztály tesztelése" #. NdF7k #: dabawiz02oracle.xhp @@ -9040,7 +9040,7 @@ "par_idN10634\n" "help.text" msgid "Tests the connection with the current settings." -msgstr "" +msgstr "A jelenlegi beállításokkal teszteli a kapcsolatot." #. UwteE #: dabawiz02oracle.xhp @@ -9049,7 +9049,7 @@ "par_idN10637\n" "help.text" msgid "Authentication" -msgstr "" +msgstr "Hitelesítés" #. MBZfJ #: dabawiz02pgsql.xhp @@ -9058,7 +9058,7 @@ "tit\n" "help.text" msgid "PostgreSQL Connection" -msgstr "" +msgstr "PostgreSQL kapcsolat" #. JBJjz #: dabawiz02pgsql.xhp @@ -9085,7 +9085,7 @@ "par_id811643043442133\n" "help.text" msgid "Specifies the options for connecting to PostgreSQL databases." -msgstr "" +msgstr "Megadja a PostgreSQL adatbázisokhoz való csatlakozás beállításait." #. Chhvj #: dabawiz02pgsql.xhp @@ -9103,7 +9103,7 @@ "par_id341643044249556\n" "help.text" msgid "Enter the driver specific connection string. The connection string is sequence of keyword/value pairs separated by spaces. For example" -msgstr "" +msgstr "Adja meg az illesztőprogram-specifikus kapcsolati karakterláncot. A kapcsolati karakterlánc kulcsszó/érték párok sorozata, szóközökkel elválasztva. Például" #. wHmxd #: dabawiz02pgsql.xhp @@ -9121,7 +9121,7 @@ "par_id301643045873140\n" "help.text" msgid "where" -msgstr "" +msgstr "hol" #. okKGB #: dabawiz02pgsql.xhp @@ -9130,7 +9130,7 @@ "par_id511643044303340\n" "help.text" msgid "dbname: the name of the database hosted in the DBMS server." -msgstr "" +msgstr "dbname: az adatbázis neve, amelyet a DBMS-kiszolgálóban tárolnak." #. 4GHUU #: dabawiz02pgsql.xhp @@ -9139,7 +9139,7 @@ "par_id331643044364699\n" "help.text" msgid "host: the fully qualified name of the RDBMS server" -msgstr "" +msgstr "host: az RDBMS-kiszolgáló teljes minősített neve." #. 2gktB #: dabawiz02pgsql.xhp @@ -9148,7 +9148,7 @@ "par_id931643044367236\n" "help.text" msgid "port: the server port. The default port for PostgreSQL is 5432." -msgstr "" +msgstr "port: a kiszolgáló portja. A PostgreSQL alapértelmezett portja 5432." #. GYeTa #: dabawiz02pgsql.xhp @@ -9157,7 +9157,7 @@ "par_id421643049901759\n" "help.text" msgid "You can also enter the connection string as" -msgstr "" +msgstr "A kapcsolati karakterláncot megadhatja a következő formában is" #. qAHKg #: dabawiz02pgsql.xhp @@ -9175,7 +9175,7 @@ "par_id71643046088031\n" "help.text" msgid "Refer to the database server administrator for the correct values of the keywords passed in the connection string. Values for user= and password= are ignored but will be requested at connection time." -msgstr "" +msgstr "A kapcsolati karakterláncban átadott kulcsszavak helyes értékeit az adatbázis-kiszolgáló rendszergazdájától tudhatja meg. A user= és password= értékeket a rendszer figyelmen kívül hagyja, de a csatlakozáskor kérni fogja őket." #. bsUA3 #: dabawiz02pgsql.xhp @@ -9184,7 +9184,7 @@ "par_id131643048856194\n" "help.text" msgid "The connection string is displayed in the %PRODUCTNAME Base status bar." -msgstr "" +msgstr "A kapcsolati karakterlánc a %PRODUCTNAME Base állapotsorában jelenik meg." #. FupET #: dabawiz02pgsql.xhp @@ -9202,7 +9202,7 @@ "tit\n" "help.text" msgid "Spreadsheet Database Connection" -msgstr "" +msgstr "Munkafüzet-adatbáziskapcsolat" #. cwGbM #: dabawiz02spreadsheet.xhp @@ -9220,7 +9220,7 @@ "par_idN1053E\n" "help.text" msgid "Location and file name" -msgstr "" +msgstr "Hely és fájlnév" #. 6TKT4 #: dabawiz02spreadsheet.xhp @@ -9229,7 +9229,7 @@ "par_idN10542\n" "help.text" msgid "Enter the path and file name to the spreadsheet file." -msgstr "" +msgstr "Adja meg a munkafüzetfájl nevét és elérési útját." #. XtNjY #: dabawiz02spreadsheet.xhp @@ -9238,7 +9238,7 @@ "par_idN10545\n" "help.text" msgid "Browse" -msgstr "" +msgstr "Tallózás" #. JfUMC #: dabawiz02spreadsheet.xhp @@ -9247,7 +9247,7 @@ "par_idN10549\n" "help.text" msgid "Click to open a file selection dialog." -msgstr "" +msgstr "Kattintson ide egy fájlkiválasztó párbeszédablak megnyitásához." #. JAmAi #: dabawiz02spreadsheet.xhp @@ -9256,7 +9256,7 @@ "par_idN1054C\n" "help.text" msgid "Password required" -msgstr "" +msgstr "Jelszó szükséges" #. 3HzmH #: dabawiz02spreadsheet.xhp @@ -9265,7 +9265,7 @@ "par_idN10550\n" "help.text" msgid "Select to request a password from the user of the database document." -msgstr "" +msgstr "Válassza ezt, ha az adatbázis-dokumentum felhasználójától jelszót kér." #. xngE4 #: dabawiz02text.xhp @@ -9274,7 +9274,7 @@ "tit\n" "help.text" msgid "Text File Connection" -msgstr "" +msgstr "Szövegfájl-kapcsolat" #. dfWU7 #: dabawiz02text.xhp @@ -9283,7 +9283,7 @@ "bm_id2517166\n" "help.text" msgid "tables in databases;importing text formats (Base)text databases (Base)" -msgstr "" +msgstr "táblák adatbázisokban;szövegformátumok importálása (Base)szöveges adatbázisok (Base)" #. htUUB #: dabawiz02text.xhp @@ -9301,7 +9301,7 @@ "par_idN10553\n" "help.text" msgid "Specifies the settings for importing a database in text format." -msgstr "" +msgstr "Megadja a szövegformátumú adatbázisok importálásának beállításait." #. 6yKNw #: dabawiz02text.xhp @@ -9310,7 +9310,7 @@ "par_idN10568\n" "help.text" msgid "In a text format database, data is stored in an unformatted ASCII file, where each record comprises a row. The data fields are divided by separators. Text in the data fields is divided by quotation marks." -msgstr "" +msgstr "Szövegformátumú adatbázisban az adatok formázatlan ASCII-fájlban vannak tárolva, ahol minden rekord egy sorból áll. Az adatmezők elválasztójelekkel vannak felosztva, az adatmezők szövegei pedig idézőjelekkel." #. puYrF #: dabawiz02text.xhp @@ -9319,7 +9319,7 @@ "par_idN1056B\n" "help.text" msgid "Path to text files" -msgstr "" +msgstr "A szövegfájlok elérési útvonala" #. LkFcD #: dabawiz02text.xhp @@ -9328,7 +9328,7 @@ "par_idN1056F\n" "help.text" msgid "Enter the path to the text file or files. If you just want one text file, you can use any extension of the file name. If you enter a folder name, the text files in that folder must have the extension *.csv to be recognized as files of the text database." -msgstr "" +msgstr "Adja meg a szövegfájlok vagy fájlok útvonalát. Ha csak egy szövegfájlt szeretne, a fájl kiterjesztése bármi lehet. Ha mappanevet ad meg itt, akkor a mappában a szövegfájloknak *.csv kiterjesztéssel kell rendelkezniük, hogy szöveges adatbázisfájlokként felismerje őket a rendszer." #. DwHAY #: dabawiz02text.xhp @@ -9337,7 +9337,7 @@ "par_idN10572\n" "help.text" msgid "Browse" -msgstr "" +msgstr "Tallózás" #. tU8mG #: dabawiz02text.xhp @@ -9346,7 +9346,7 @@ "par_idN10576\n" "help.text" msgid "Click to open a file selection dialog." -msgstr "" +msgstr "Kattintson ide egy fájlkiválasztó párbeszédablak megnyitásához." #. MmGr4 #: dabawiz02text.xhp @@ -9355,7 +9355,7 @@ "par_idN10616\n" "help.text" msgid "Plain text files (*.txt)" -msgstr "" +msgstr "Egyszerű szövegfájlok (*.txt)" #. ztjWn #: dabawiz02text.xhp @@ -9364,7 +9364,7 @@ "par_idN1061A\n" "help.text" msgid "Click to access txt files." -msgstr "" +msgstr "Kattintson ide txt-fájlok eléréséhez." #. E5S76 #: dabawiz02text.xhp @@ -9373,7 +9373,7 @@ "par_idN10643\n" "help.text" msgid "'Comma separated value' files (*.csv)" -msgstr "" +msgstr "Strukturált szövegfájlok (*.csv)" #. 2fDr2 #: dabawiz02text.xhp @@ -9382,7 +9382,7 @@ "par_idN10647\n" "help.text" msgid "Click to access csv files." -msgstr "" +msgstr "Kattintson ide csv-fájlok eléréséhez." #. EVBCK #: dabawiz02text.xhp @@ -9391,7 +9391,7 @@ "par_idN10666\n" "help.text" msgid "Custom" -msgstr "" +msgstr "Egyéni" #. 3Z5fx #: dabawiz02text.xhp @@ -9400,7 +9400,7 @@ "par_idN1066A\n" "help.text" msgid "Click to access custom files. Enter the extension in the text box." -msgstr "" +msgstr "Kattintson ide egyéni fájlok eléréséhez. A kiterjesztést adja meg a szövegmezőben." #. rts2F #: dabawiz02text.xhp @@ -9409,7 +9409,7 @@ "par_idN10581\n" "help.text" msgid "Field separator" -msgstr "" +msgstr "Mezőelválasztó" #. 3G6QU #: dabawiz02text.xhp @@ -9418,7 +9418,7 @@ "par_idN10585\n" "help.text" msgid "Enter or select the character that separates data fields in the text file." -msgstr "" +msgstr "Adja meg vagy válassza ki a szövegfájlokban lévő adatmezőket elválasztó karaktert." #. 8rxWL #: dabawiz02text.xhp @@ -9427,7 +9427,7 @@ "par_idN1059C\n" "help.text" msgid "Text separator" -msgstr "" +msgstr "Szövegelválasztó" #. ejFpV #: dabawiz02text.xhp @@ -9436,7 +9436,7 @@ "par_idN105A0\n" "help.text" msgid "Enter or select the character that identifies a text field in the text file. You cannot use the same character as the field separator." -msgstr "" +msgstr "Írja be vagy válasza ki a szövegmezőt a szövegfájlban azonosító karaktert. Nem használhat mezőelválasztóként kijelölt karaktert." #. rSTcV #: dabawiz02text.xhp @@ -9445,7 +9445,7 @@ "par_idN105B8\n" "help.text" msgid "Decimal separator" -msgstr "" +msgstr "Tizedesjel" #. apBAu #: dabawiz02text.xhp @@ -9454,7 +9454,7 @@ "par_idN105BC\n" "help.text" msgid "Enter or select the character that is used as a decimal separator in the text file, for example, a period (0.5) or a comma (0,5)." -msgstr "" +msgstr "Adja meg vagy válassza ki a szövegfájlban tizedesjelként használt karaktert, például pontot (0.5) vagy vesszőt (0,5)." #. CyhGN #: dabawiz02text.xhp @@ -9463,7 +9463,7 @@ "par_idN105D3\n" "help.text" msgid "Thousands separator" -msgstr "" +msgstr "Ezreselválasztó" #. 6TTiq #: dabawiz02text.xhp @@ -9472,7 +9472,7 @@ "par_idN105D7\n" "help.text" msgid "Enter or select the character that is used as a thousands separator in the text file, for example a comma (1,000), or a period (1.000)." -msgstr "" +msgstr "Adja meg vagy válassza ki a szöveges fájlban ezreselválasztóként használt karaktert, például vesszőt (1,000) vagy pontot (1.000)." #. YSNPt #: dabawiz03auth.xhp @@ -9481,7 +9481,7 @@ "tit\n" "help.text" msgid "Set up user authentication" -msgstr "" +msgstr "Felhasználói hitelesítés beállítása" #. EhtLD #: dabawiz03auth.xhp @@ -9499,7 +9499,7 @@ "par_idN1053E\n" "help.text" msgid "Some databases require a user name and password." -msgstr "" +msgstr "Néhány adatbázishoz felhasználónév és jelszó szükséges." #. 6YqKR #: dabawiz03auth.xhp @@ -9508,7 +9508,7 @@ "par_idN10541\n" "help.text" msgid "User name" -msgstr "" +msgstr "Felhasználónév" #. q5JV4 #: dabawiz03auth.xhp @@ -9517,7 +9517,7 @@ "par_idN10545\n" "help.text" msgid "Enter the user name to access the database." -msgstr "" +msgstr "Adja meg az adatbázis eléréséhez szükséges felhasználónevet." #. cAFEU #: dabawiz03auth.xhp @@ -9526,7 +9526,7 @@ "par_idN10548\n" "help.text" msgid "Password required" -msgstr "" +msgstr "Jelszó szükséges" #. wctGK #: dabawiz03auth.xhp @@ -9535,7 +9535,7 @@ "par_idN1054C\n" "help.text" msgid "Select to prompt a user for a password to access the database." -msgstr "" +msgstr "Válassza ezt, ha a felhasználótól jelszót kell kérni az adatbázis eléréséhez." #. xnkR8 #: dabawiz03auth.xhp @@ -9544,7 +9544,7 @@ "par_idN10549\n" "help.text" msgid "Test Connection" -msgstr "" +msgstr "Kapcsolat tesztelése" #. jkqUK #: dabawiz03auth.xhp @@ -9553,7 +9553,7 @@ "par_idN10546\n" "help.text" msgid "Check if the configured connection can be used to access the database." -msgstr "" +msgstr "Ellenőrizze, hogy a beállított kapcsolat használható-e az adatbázis eléréséhez." #. dF4Mp #: dabawiz03auth.xhp @@ -9562,7 +9562,7 @@ "par_idN1054F\n" "help.text" msgid "Save and proceed" -msgstr "" +msgstr "Mentés és végrehajtás" #. cLmBi #: main.xhp @@ -9661,7 +9661,7 @@ "par_idN1083B\n" "help.text" msgid "The Database Wizard helps you to create a database file and to register a new database within %PRODUCTNAME." -msgstr "" +msgstr "Az Adatbázistündér segít létrehozni az adatbázisfájlt és regisztrálni az új adatbázist a %PRODUCTNAME-ban." #. 2jPWg #: main.xhp @@ -9697,7 +9697,7 @@ "tit\n" "help.text" msgid "Menus" -msgstr "" +msgstr "Menük" #. 2Cnz5 #: menubar.xhp @@ -9706,7 +9706,7 @@ "par_idN10552\n" "help.text" msgid "Menus" -msgstr "" +msgstr "Menük" #. xRQaH #: menubar.xhp @@ -9715,7 +9715,7 @@ "par_idN10562\n" "help.text" msgid "In the database window, you see a new set of menu commands for working on the current database file." -msgstr "" +msgstr "Az adatbázisablakban egy pár új menüparancsot talál, amelyekkel az aktuális adatbázisfájl feldolgozható." #. ELZ6P #: menuedit.xhp @@ -9724,7 +9724,7 @@ "tit\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Szerkesztés" #. EeRCy #: menuedit.xhp @@ -9733,7 +9733,7 @@ "par_idN1054D\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Szerkesztés" #. pGydt #: menuedit.xhp @@ -9742,7 +9742,7 @@ "par_idN1055D\n" "help.text" msgid "The Edit menu of a database window." -msgstr "" +msgstr "Az adatbázisablak Szerkesztés menüje." #. 9Djqz #: menuedit.xhp @@ -9751,7 +9751,7 @@ "par_idN10560\n" "help.text" msgid "Copy" -msgstr "" +msgstr "Másolás" #. foKkC #: menuedit.xhp @@ -9760,7 +9760,7 @@ "par_idN10564\n" "help.text" msgid "Copies the selected object to the clipboard." -msgstr "" +msgstr "A kijelölt objektumot átmásolja a vágólapra." #. rEEsQ #: menuedit.xhp @@ -9769,7 +9769,7 @@ "par_idN10567\n" "help.text" msgid "Paste" -msgstr "" +msgstr "Beillesztés" #. Go5ji #: menuedit.xhp @@ -9778,7 +9778,7 @@ "par_idN1056B\n" "help.text" msgid "Inserts an item from the clipboard. If you want, you can insert forms and reports, including subfolders, from one database file to another." -msgstr "" +msgstr "Beszúr egy elemet a vágólapról. Ha szeretné, egyik adatbázisfájlból a másikba átvihet így űrlapokat és jelentéseket, almappákkal együtt." #. CU3BC #: menuedit.xhp @@ -9787,7 +9787,7 @@ "par_idN1056E\n" "help.text" msgid "Paste Special" -msgstr "" +msgstr "Irányított beillesztés" #. AxkJA #: menuedit.xhp @@ -9796,7 +9796,7 @@ "par_idN10572\n" "help.text" msgid "Inserts an item from the clipboard. If you want, you can insert forms and reports, including subfolders, from one database file to another." -msgstr "" +msgstr "Beszúr egy elemet a vágólapról. Ha szeretné, egyik adatbázisfájlból a másikba átvihet így űrlapokat és jelentéseket, almappákkal együtt." #. zGGGW #: menuedit.xhp @@ -9805,7 +9805,7 @@ "par_idN105D7\n" "help.text" msgid "Select All" -msgstr "" +msgstr "Mindent kijelöl" #. sL6Wv #: menuedit.xhp @@ -9814,7 +9814,7 @@ "par_idN105DB\n" "help.text" msgid "Selects all entries, including subfolders, in the lower part of the database window." -msgstr "" +msgstr "Kijelöli az összes bejegyzést az almappákkal együtt az adatbázisablak alsó részében." #. LMbBp #: menuedit.xhp @@ -9823,7 +9823,7 @@ "hd_id3153683\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Szerkesztés" #. MnMPd #: menuedit.xhp @@ -9832,7 +9832,7 @@ "par_id3147209\n" "help.text" msgid "Opens a window where you can edit the selected table, query, form, or report." -msgstr "" +msgstr "Megnyit egy ablakot, ahol szerkesztheti a kijelölt táblát, lekérdezést, űrlapot vagy jelentést." #. NCnUw #: menuedit.xhp @@ -9841,7 +9841,7 @@ "hd_id3145315\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Törlés" #. TmCdC #: menuedit.xhp @@ -9850,7 +9850,7 @@ "par_id3153666\n" "help.text" msgid "Deletes the selected table, query, form, or report." -msgstr "" +msgstr "Törli a kijelölt táblát, lekérdezést, űrlapot vagy jelentést." #. uuDM2 #: menuedit.xhp @@ -9859,7 +9859,7 @@ "par_idN1057C\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Átnevezés" #. 7W5uU #: menuedit.xhp @@ -9868,7 +9868,7 @@ "par_idN10580\n" "help.text" msgid "Renames the selected object. Depending on the database, some names, characters, and name length might be invalid." -msgstr "" +msgstr "Átnevezi a kijelölt objektumot. Az adatbázistól függően bizonyos nevek, karakterek és névhosszúságok érvénytelenek lehetnek." #. CGeTi #: menuedit.xhp @@ -9877,7 +9877,7 @@ "par_idN1058A\n" "help.text" msgid "Open" -msgstr "" +msgstr "Megnyitás" #. 7NkEK #: menuedit.xhp @@ -9886,7 +9886,7 @@ "par_idN1058E\n" "help.text" msgid "Opens the selected object in the last saved state." -msgstr "" +msgstr "Megnyitja a kijelölt objektumot az utolsó mentett állapotában." #. GoDcA #: menuedit.xhp @@ -9895,7 +9895,7 @@ "par_idN10591\n" "help.text" msgid "Create as View" -msgstr "" +msgstr "Létrehozás nézetként" #. sF34n #: menuedit.xhp @@ -9904,7 +9904,7 @@ "par_idN105A7\n" "help.text" msgid "Converts the selected query to a view. The original query remains in your database file and an additional view is generated on the database server. You must have write permission to add a view to a database." -msgstr "" +msgstr "A kijelölt lekérdezést nézetté alakítja. Az eredeti lekérdezés megmarad az adatbázisfájlban, és egy új nézet jön létre az adatbázis-kiszolgálón. A nézet adatbázishoz adásához írási jogosultság szükséges." #. s7wwJ #: menuedit.xhp @@ -9913,7 +9913,7 @@ "par_idN105AA\n" "help.text" msgid "Most databases use queries to filter or to sort database tables to display records on your computer. Views offer the same functionality as queries, but on the server side. If your database is on a server that supports views, you can use views to filter the records on the server to speed up the display time." -msgstr "" +msgstr "A legtöbb adatbázis lekérdezéseket használ a rekordok megjelenítésére a számítógépen az adatbázistáblák szűrése és rendezése által. A nézetek ugyanazt a funkcionalitást biztosítják, mint a lekérdezések, csak kiszolgálóoldalon. Ha a használt adatbázis olyan kiszolgálón van, amely támogatja a nézeteket, használhatja a nézeteket a rekordok kiszolgálón történő szűréséhez. A megjelenítési idő ilyenkor lecsökken." #. 7NDGC #: menuedit.xhp @@ -9922,7 +9922,7 @@ "par_idN105AD\n" "help.text" msgid "Form Wizard" -msgstr "" +msgstr "Űrlaptündér" #. LZsjA #: menuedit.xhp @@ -9931,7 +9931,7 @@ "par_idN105B1\n" "help.text" msgid "Starts the Form Wizard for the selected table, query, or view." -msgstr "" +msgstr "Elindítja az Űrlaptündért a kijelölt táblára, lekérdezésre vagy nézetre." #. BUWRg #: menuedit.xhp @@ -9940,7 +9940,7 @@ "par_idN105C2\n" "help.text" msgid "Report Wizard" -msgstr "" +msgstr "Jelentéstündér" #. U7xE3 #: menuedit.xhp @@ -9949,7 +9949,7 @@ "par_idN105C6\n" "help.text" msgid "Starts the Report Wizard for the selected table, query, or view." -msgstr "" +msgstr "Elindítja az Jelentéstündért a kijelölt táblára, lekérdezésre vagy nézetre." #. yNkzG #: menuedit.xhp @@ -9958,7 +9958,7 @@ "par_idN105DE\n" "help.text" msgid "Database" -msgstr "" +msgstr "Adatbázis" #. EDR8A #: menuedit.xhp @@ -9967,7 +9967,7 @@ "par_idN105E2\n" "help.text" msgid "Opens a submenu." -msgstr "" +msgstr "Megnyit egy almenüt." #. wBPBE #: menuedit.xhp @@ -9976,7 +9976,7 @@ "par_idN105E5\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Tulajdonságok" #. xrED8 #: menuedit.xhp @@ -9985,7 +9985,7 @@ "par_idN105E9\n" "help.text" msgid "Opens the Database Properties dialog." -msgstr "" +msgstr "Megnyitja az Adatbázis tulajdonságai párbeszédablakot." #. CFEiW #: menuedit.xhp @@ -9994,7 +9994,7 @@ "par_idN105EC\n" "help.text" msgid "Connection Type" -msgstr "" +msgstr "Kapcsolat típusa" #. mhCAw #: menuedit.xhp @@ -10003,7 +10003,7 @@ "par_idN105F0\n" "help.text" msgid "Opens the Connection Type Wizard." -msgstr "" +msgstr "Megnyitja a Kapcsolat típusa tündért." #. Rwk4Y #: menuedit.xhp @@ -10012,7 +10012,7 @@ "par_idN105F3\n" "help.text" msgid "Advanced Properties" -msgstr "" +msgstr "Speciális tulajdonságok" #. SAkPC #: menuedit.xhp @@ -10021,7 +10021,7 @@ "par_idN105F7\n" "help.text" msgid "Opens the Advanced Properties dialog." -msgstr "" +msgstr "Megnyitja a Speciális tulajdonságok párbeszédablakot." #. 7BAav #: menufile.xhp @@ -10030,7 +10030,7 @@ "tit\n" "help.text" msgid "File" -msgstr "" +msgstr "Fájl" #. wm7a2 #: menufile.xhp @@ -10039,7 +10039,7 @@ "par_idN1054D\n" "help.text" msgid "File" -msgstr "" +msgstr "Fájl" #. WXK3P #: menufile.xhp @@ -10048,7 +10048,7 @@ "par_idN1055D\n" "help.text" msgid "The File menu of a database window. Only entries specific to databases are listed." -msgstr "" +msgstr "Az adatbázisablak Fájl menüje. Csak az adatbázisokkal kapcsolatos elemek vannak felsorolva." #. 9qysH #: menufile.xhp @@ -10057,7 +10057,7 @@ "par_idN105C0\n" "help.text" msgid "Save" -msgstr "" +msgstr "Mentés" #. qTva3 #: menufile.xhp @@ -10066,7 +10066,7 @@ "par_idN105C4\n" "help.text" msgid "Saves the current database file, query, form or report. For the database file, you see the file save dialog. For the other objects, you see the Save dialog." -msgstr "" +msgstr "Menti az aktuális táblát, lekérdezést, űrlapot vagy jelentést. Az adatbázisfájlnál a fájlmentés párbeszédablak jelenik meg. A többi objektumnál a Mentés párbeszédablak jelenik meg." #. FAvuD #: menufile.xhp @@ -10075,7 +10075,7 @@ "par_idN105D5\n" "help.text" msgid "Save As" -msgstr "" +msgstr "Mentés másként" #. LDiQh #: menufile.xhp @@ -10084,7 +10084,7 @@ "par_idN105D9\n" "help.text" msgid "Saves the current database file with another name. In the file save dialog, select a path and file name to save." -msgstr "" +msgstr "Menti az aktuális adatbázisfájlt egy másik néven. A fájlmentés párbeszédablakban válassza ki a mentéshez az útvonalat és a fájlnevet." #. s3muV #: menufile.xhp @@ -10093,7 +10093,7 @@ "par_idN105EA\n" "help.text" msgid "Export" -msgstr "" +msgstr "Exportálás" #. AXuZV #: menufile.xhp @@ -10102,7 +10102,7 @@ "par_idN105EE\n" "help.text" msgid "Exports the selected report or form to a text document. A dynamic report is exported as a copy of the database contents at the time of export." -msgstr "" +msgstr "Szöveges dokumentumba exportálja a kijelölt jelentést vagy űrlapot. A dinamikus jelentés az adatbázis pillanatnyi állapotának megfelelő adatokkal exportálódik." #. vdU9E #: menufile.xhp @@ -10111,7 +10111,7 @@ "par_idN105F1\n" "help.text" msgid "Send" -msgstr "" +msgstr "Küldés" #. GiW9D #: menufile.xhp @@ -10120,7 +10120,7 @@ "par_idN105F5\n" "help.text" msgid "Opens a submenu." -msgstr "" +msgstr "Megnyit egy almenüt." #. EAusx #: menufile.xhp @@ -10129,7 +10129,7 @@ "par_idN105F8\n" "help.text" msgid "Email Document" -msgstr "" +msgstr "Dokumentum küldése e-mailben" #. Qxg2W #: menufile.xhp @@ -10138,7 +10138,7 @@ "par_idN105FC\n" "help.text" msgid "Opens the default email application to send a new email. The current database file is appended as an attachment. You can enter the subject, the recipients and a mail body." -msgstr "" +msgstr "Megnyitja az alapértelmezett levelezőprogramot új e-mail elküldéséhez. Az aktuális adatbázisfájl mellékletként csatolódik. Beírhatja a tárgyat, a címzetteket és a levéltörzset." #. 9WihT #: menufile.xhp @@ -10147,7 +10147,7 @@ "par_idN105FF\n" "help.text" msgid "Report as Email" -msgstr "" +msgstr "Jelentés e-mailben" #. XWAoV #: menufile.xhp @@ -10156,7 +10156,7 @@ "par_idN10603\n" "help.text" msgid "Opens the default email application to send a new email. The selected report is appended as an attachment. You can enter the subject, the recipients and a mail body. A dynamic report is exported as a copy of the database contents at the time of export." -msgstr "" +msgstr "Megnyitja az alapértelmezett levelezőprogramot új e-mail elküldéséhez. Az aktuális jelentés mellékletként csatolódik. Beírhatja a tárgyat, a címzetteket és a levéltörzset. A dinamikus jelentés az adatbázis pillanatnyi állapotának megfelelő adatokkal exportálódik." #. 9cSVg #: menufile.xhp @@ -10165,7 +10165,7 @@ "par_idN10606\n" "help.text" msgid "Report to Text Document" -msgstr "" +msgstr "Jelentés szöveges dokumentumba" #. SMD5C #: menufile.xhp @@ -10174,7 +10174,7 @@ "par_idN1060A\n" "help.text" msgid "Exports the selected report to a text document. A dynamic report is exported as a copy of the database contents at the time of export." -msgstr "" +msgstr "Szöveges dokumentumba exportálja a kijelölt jelentést. A dinamikus jelentés az adatbázis pillanatnyi állapotának megfelelő adatokkal exportálódik." #. AhvCD #: menufilesave.xhp @@ -10183,7 +10183,7 @@ "tit\n" "help.text" msgid "Save" -msgstr "" +msgstr "Mentés" #. bMiRZ #: menufilesave.xhp @@ -10192,7 +10192,7 @@ "par_idN10547\n" "help.text" msgid "Save" -msgstr "" +msgstr "Mentés" #. BGNgM #: menufilesave.xhp @@ -10201,7 +10201,7 @@ "par_idN1054B\n" "help.text" msgid "In this dialog, you can specify the position and name of a form that you save within a database file. The dialog opens automatically when you save a form the first time." -msgstr "" +msgstr "Ebben a párbeszédablakban megadhatja az adatbázisfájlba mentett űrlap nevét és pozícióját. A párbeszédablak automatikusan megnyílik, ha az űrlapot az első alkalommal menti." #. CDw7n #: menufilesave.xhp @@ -10210,7 +10210,7 @@ "par_idN10564\n" "help.text" msgid "Create New Directory" -msgstr "" +msgstr "Új könyvtár létrehozása" #. LPGUc #: menufilesave.xhp @@ -10219,7 +10219,7 @@ "par_idN10568\n" "help.text" msgid "Click to create a new folder within the database file." -msgstr "" +msgstr "Kattintson ide egy új mappa létrehozásához az adatbázisfájlban." #. P9r94 #: menufilesave.xhp @@ -10228,7 +10228,7 @@ "par_idN1057F\n" "help.text" msgid "Up One Level" -msgstr "" +msgstr "Egy szinttel feljebb" #. 3Es6N #: menufilesave.xhp @@ -10237,7 +10237,7 @@ "par_idN10583\n" "help.text" msgid "Click to go up one level in the folder hierarchy." -msgstr "" +msgstr "Kattintson ide az egy szinttel feljebb ugráshoz a mappahierarchiában." #. fsR7X #: menufilesave.xhp @@ -10246,7 +10246,7 @@ "par_idN1059A\n" "help.text" msgid "File name" -msgstr "" +msgstr "Fájlnév" #. vgBAe #: menufilesave.xhp @@ -10255,7 +10255,7 @@ "par_idN1059E\n" "help.text" msgid "Enter the file name for the saved form." -msgstr "" +msgstr "Adja meg a mentett űrlap fájlnevét." #. AFEqC #: menufilesave.xhp @@ -10264,7 +10264,7 @@ "par_idN105B5\n" "help.text" msgid "Save" -msgstr "" +msgstr "Mentés" #. 48d8x #: menufilesave.xhp @@ -10273,7 +10273,7 @@ "par_idN105B9\n" "help.text" msgid "Click to save the form to the database file." -msgstr "" +msgstr "Kattintson ide az űrlap mentéséhez az adatbázisfájlba." #. oxGKs #: menuinsert.xhp @@ -10282,7 +10282,7 @@ "tit\n" "help.text" msgid "Insert" -msgstr "" +msgstr "Beszúrás" #. CETrU #: menuinsert.xhp @@ -10291,7 +10291,7 @@ "par_idN1054D\n" "help.text" msgid "Insert" -msgstr "" +msgstr "Beszúrás" #. NAACF #: menuinsert.xhp @@ -10300,7 +10300,7 @@ "par_idN1055D\n" "help.text" msgid "The Insert menu of a database window." -msgstr "" +msgstr "Az adatbázisablak Beszúrás menüje." #. JCkjX #: menuinsert.xhp @@ -10309,7 +10309,7 @@ "par_idN10560\n" "help.text" msgid "Form" -msgstr "" +msgstr "Űrlap" #. FoJp3 #: menuinsert.xhp @@ -10318,7 +10318,7 @@ "par_idN10576\n" "help.text" msgid "Opens a new text document in form mode." -msgstr "" +msgstr "Megnyit egy új szöveges dokumentumot úrlap módban." #. Gfck8 #: menuinsert.xhp @@ -10327,7 +10327,7 @@ "par_idN1058B\n" "help.text" msgid "Report" -msgstr "" +msgstr "Jelentés" #. jiTyY #: menuinsert.xhp @@ -10336,7 +10336,7 @@ "par_idN1058F\n" "help.text" msgid "Starts the Report Builder window for the selected table, view, or query." -msgstr "" +msgstr "Elindítja az Jelentéstervező ablakot a kijelölt táblára, lekérdezésre vagy nézetre." #. 99GPr #: menuinsert.xhp @@ -10345,7 +10345,7 @@ "par_idN105A0\n" "help.text" msgid "Query (Design View)" -msgstr "" +msgstr "Lekérdezés (tervezőnézet)" #. nSGAS #: menuinsert.xhp @@ -10354,7 +10354,7 @@ "par_idN105A4\n" "help.text" msgid "Opens a new query in design mode." -msgstr "" +msgstr "Megnyit egy új lekérdezést tervező módban." #. HBCDy #: menuinsert.xhp @@ -10363,7 +10363,7 @@ "par_idN105A7\n" "help.text" msgid "Query (SQL View)" -msgstr "" +msgstr "Lekérdezés (SQL-nézet)" #. xMKBY #: menuinsert.xhp @@ -10372,7 +10372,7 @@ "par_idN105AB\n" "help.text" msgid "Opens a new query in SQL mode." -msgstr "" +msgstr "Megnyit egy új lekérdezést SQL-módban." #. hePEE #: menuinsert.xhp @@ -10381,7 +10381,7 @@ "par_idN105AE\n" "help.text" msgid "Table Design" -msgstr "" +msgstr "Táblatervezés" #. eSSzA #: menuinsert.xhp @@ -10390,7 +10390,7 @@ "par_idN105C4\n" "help.text" msgid "Opens the table design view." -msgstr "" +msgstr "Megnyitja a táblatervező nézetet." #. dDYAD #: menuinsert.xhp @@ -10399,7 +10399,7 @@ "par_idN105C7\n" "help.text" msgid "View Design" -msgstr "" +msgstr "Nézetterv" #. E2CpK #: menuinsert.xhp @@ -10408,7 +10408,7 @@ "par_idN10669\n" "help.text" msgid "Opens a new view in design mode." -msgstr "" +msgstr "Megnyit egy új nézetet tervező módban." #. EcAYG #: menuinsert.xhp @@ -10417,7 +10417,7 @@ "par_idN105E0\n" "help.text" msgid "View (Simple)" -msgstr "" +msgstr "Nézet (egyszerű)" #. 5diz4 #: menuinsert.xhp @@ -10426,7 +10426,7 @@ "par_idN105F6\n" "help.text" msgid "Opens a new view in SQL mode." -msgstr "" +msgstr "Megnyit egy új nézetet SQL-módban." #. UAFhR #: menuinsert.xhp @@ -10435,7 +10435,7 @@ "par_idN105F9\n" "help.text" msgid "Folder" -msgstr "" +msgstr "Mappa" #. KMLGR #: menuinsert.xhp @@ -10444,7 +10444,7 @@ "par_idN1060F\n" "help.text" msgid "Opens a dialog where you can save a new folder in the database file." -msgstr "" +msgstr "Megnyit egy párbeszédablakot, amely segítségével új mappát menthet az adatbázisfájlba." #. eMZgB #: menutools.xhp @@ -10453,7 +10453,7 @@ "tit\n" "help.text" msgid "Tools" -msgstr "" +msgstr "Eszközök" #. icE2E #: menutools.xhp @@ -10462,7 +10462,7 @@ "par_idN1054D\n" "help.text" msgid "Tools" -msgstr "" +msgstr "Eszközök" #. 2XuD9 #: menutools.xhp @@ -10471,7 +10471,7 @@ "par_idN1055D\n" "help.text" msgid "The Tools menu of a database window." -msgstr "" +msgstr "Az adatbázisablak Eszközök menüje." #. yQdGR #: menutools.xhp @@ -10480,7 +10480,7 @@ "par_idN10560\n" "help.text" msgid "Relationships" -msgstr "" +msgstr "Relációk" #. DKgXb #: menutools.xhp @@ -10489,7 +10489,7 @@ "par_idN10576\n" "help.text" msgid "Opens the Relation Design view and checks whether the database connection supports relations." -msgstr "" +msgstr "Megnyitja a Relációtervező nézetet, és ellenőrzi, hogy az adatbázis-kapcsolat támogatja-e a relációkat." #. B2YV6 #: menutools.xhp @@ -10498,7 +10498,7 @@ "par_idN1058A\n" "help.text" msgid "User Administration" -msgstr "" +msgstr "Felhasználókezelés" #. bBBaA #: menutools.xhp @@ -10507,7 +10507,7 @@ "par_idN1058E\n" "help.text" msgid "Opens the User Administration dialog if the database supports this feature." -msgstr "" +msgstr "Megnyitja a Felhasználókezelés párbeszédablakot, ha az adatbázis támogatja ezt a funkciót." #. VThyT #: menutools.xhp @@ -10516,7 +10516,7 @@ "hd_id3153880\n" "help.text" msgid "Table Filter" -msgstr "" +msgstr "Táblaszűrő" #. koDKE #: menutools.xhp @@ -10525,7 +10525,7 @@ "par_id3153252\n" "help.text" msgid "Opens the Table Filter dialog where you can specify which tables of the database to show or to hide." -msgstr "" +msgstr "Megnyitja a Táblaszűrő párbeszédablakot, ahol megadhatja, hogy az adatbázis mely tábláit kell megjeleníteni és melyeket elrejteni." #. YTER3 #: menutools.xhp @@ -10534,7 +10534,7 @@ "par_id3150670\n" "help.text" msgid "Select the tables that you want to filter in the Filter list." -msgstr "" +msgstr "A Szűrő listában válassza ki a szűrni kívánt táblákat." #. ADDYD #: menutools.xhp @@ -10543,7 +10543,7 @@ "par_id3150985\n" "help.text" msgid "If you select the topmost table in a hierarchy, all of the tables in the hierarchy are selected." -msgstr "" +msgstr "Ha a hierarchiában legfelül álló táblát választja ki, akkor a hierarchiában szereplő összes tábla ki lesz jelölve." #. evFBu #: menutools.xhp @@ -10552,7 +10552,7 @@ "par_id3152349\n" "help.text" msgid "If you select a table that is at a lower level in the hierarchy, the tables that occur above it in the hierarchy are not selected." -msgstr "" +msgstr "Ha a hierarchiában lejjebb álló táblát választ ki, akkor a hierarchiában fölötte szereplő táblák nem lesznek kijelölve." #. 4AdAz #: menutools.xhp @@ -10561,7 +10561,7 @@ "par_idN105BC\n" "help.text" msgid "SQL" -msgstr "" +msgstr "SQL" #. nwpGA #: menutools.xhp @@ -10570,7 +10570,7 @@ "par_idN105C0\n" "help.text" msgid "Opens the SQL dialog where you can enter SQL statements." -msgstr "" +msgstr "Megjeleníti az SQL párbeszédablakot, amelyen SQL-parancsokat lehet bevinni." #. CqteP #: menuview.xhp @@ -10579,7 +10579,7 @@ "tit\n" "help.text" msgid "View" -msgstr "" +msgstr "Nézet" #. hK2VC #: menuview.xhp @@ -10588,7 +10588,7 @@ "par_idN1054D\n" "help.text" msgid "View" -msgstr "" +msgstr "Nézet" #. 3Z8JA #: menuview.xhp @@ -10597,7 +10597,7 @@ "par_idN1055D\n" "help.text" msgid "The View menu of a database window." -msgstr "" +msgstr "Az adatbázisablak Nézet menüje." #. 2AidF #: menuview.xhp @@ -10606,7 +10606,7 @@ "par_idN10560\n" "help.text" msgid "Database Objects" -msgstr "" +msgstr "Adatbázis-objektumok" #. 8Bvnx #: menuview.xhp @@ -10615,7 +10615,7 @@ "par_idN10564\n" "help.text" msgid "Opens a submenu." -msgstr "" +msgstr "Megnyit egy almenüt." #. ayFXZ #: menuview.xhp @@ -10624,7 +10624,7 @@ "par_idN10567\n" "help.text" msgid "Forms" -msgstr "" +msgstr "Űrlapok" #. uByBf #: menuview.xhp @@ -10633,7 +10633,7 @@ "par_idN1056B\n" "help.text" msgid "Selects the forms container and shows all forms in the detail view." -msgstr "" +msgstr "Kijelöli az űrlaptárolót, és minden űrlapot részletes nézetben jelenít meg." #. 8i64Y #: menuview.xhp @@ -10642,7 +10642,7 @@ "par_idN1056E\n" "help.text" msgid "Reports" -msgstr "" +msgstr "Jelentések" #. oBrpX #: menuview.xhp @@ -10651,7 +10651,7 @@ "par_idN10572\n" "help.text" msgid "Selects the reports container and shows all reports in the detail view." -msgstr "" +msgstr "Kijelöli a jelentéstárolót, és minden jelentést részletes nézetben jelenít meg." #. 2BQEW #: menuview.xhp @@ -10660,7 +10660,7 @@ "par_idN10575\n" "help.text" msgid "Queries" -msgstr "" +msgstr "Lekérdezések" #. eyZ6P #: menuview.xhp @@ -10669,7 +10669,7 @@ "par_idN10579\n" "help.text" msgid "Selects the queries container and shows all queries in the detail view." -msgstr "" +msgstr "Kijelöli a lekérdezéstárolót, és minden lekérdezést részletes nézetben jelenít meg." #. Ytm9B #: menuview.xhp @@ -10678,7 +10678,7 @@ "par_idN1057C\n" "help.text" msgid "Tables" -msgstr "" +msgstr "Táblázatok" #. Cy23D #: menuview.xhp @@ -10687,7 +10687,7 @@ "par_idN10580\n" "help.text" msgid "Selects the tables container and shows all tables in the detail view." -msgstr "" +msgstr "Kijelöli a táblatárolót, és minden táblát részletes nézetben jelenít meg." #. pjk7X #: menuview.xhp @@ -10696,7 +10696,7 @@ "par_idN10583\n" "help.text" msgid "Sort" -msgstr "" +msgstr "Rendezés" #. eTkp4 #: menuview.xhp @@ -10705,7 +10705,7 @@ "par_idN10587\n" "help.text" msgid "Opens a submenu." -msgstr "" +msgstr "Megnyit egy almenüt." #. sDVoW #: menuview.xhp @@ -10714,7 +10714,7 @@ "par_idN1058A\n" "help.text" msgid "Ascending" -msgstr "" +msgstr "Növekvő" #. Xojrk #: menuview.xhp @@ -10723,7 +10723,7 @@ "par_idN1058E\n" "help.text" msgid "Sorts the entries in the detail view in ascending order." -msgstr "" +msgstr "A részletes nézet elemeit növekvő sorrendben rendezi." #. BbycS #: menuview.xhp @@ -10732,7 +10732,7 @@ "par_idN10591\n" "help.text" msgid "Descending" -msgstr "" +msgstr "Csökkenő" #. vX7Fc #: menuview.xhp @@ -10741,7 +10741,7 @@ "par_idN10595\n" "help.text" msgid "Sorts the entries in the detail view in descending order." -msgstr "" +msgstr "A részletes nézet elemeit csökkenő sorrendbe rendezi." #. wXJzD #: menuview.xhp @@ -10750,7 +10750,7 @@ "par_idN10598\n" "help.text" msgid "Preview" -msgstr "" +msgstr "Előnézet" #. 3HEV9 #: menuview.xhp @@ -10759,7 +10759,7 @@ "par_idN1059C\n" "help.text" msgid "Opens a submenu." -msgstr "" +msgstr "Megnyit egy almenüt." #. yeDpx #: menuview.xhp @@ -10768,7 +10768,7 @@ "par_idN1059F\n" "help.text" msgid "None" -msgstr "" +msgstr "Nincs" #. GAT5A #: menuview.xhp @@ -10777,7 +10777,7 @@ "par_idN105B5\n" "help.text" msgid "Disables the preview in the database window." -msgstr "" +msgstr "Tiltja az előnézetet az adatbázis-ablakban." #. gC6sB #: menuview.xhp @@ -10786,7 +10786,7 @@ "par_idN105B8\n" "help.text" msgid "Document Information" -msgstr "" +msgstr "Dokumentum adatai" #. NJ2Q8 #: menuview.xhp @@ -10795,7 +10795,7 @@ "par_idN105BC\n" "help.text" msgid "The preview window displays the document information of a form or report." -msgstr "" +msgstr "Az előnézet ablak megjeleníti az űrlap vagy jelentés dokumentumadatait." #. KrBDr #: menuview.xhp @@ -10804,7 +10804,7 @@ "par_idN105BF\n" "help.text" msgid "Document" -msgstr "" +msgstr "Dokumentum" #. GE5Rx #: menuview.xhp @@ -10813,7 +10813,7 @@ "par_idN105C3\n" "help.text" msgid "The preview displays the document of a form or report." -msgstr "" +msgstr "Az előnézet megjeleníti az űrlap vagy jelentés dokumentumát." #. yek7q #: menuview.xhp @@ -10822,7 +10822,7 @@ "par_idN105C6\n" "help.text" msgid "Refresh Tables" -msgstr "" +msgstr "Táblák frissítése" #. 79t9N #: menuview.xhp @@ -10831,7 +10831,7 @@ "par_idN105CA\n" "help.text" msgid "Refreshes the tables. " -msgstr "" +msgstr "Frissíti a táblákat. " #. kyYMn #: migrate_macros.xhp @@ -10840,7 +10840,7 @@ "tit\n" "help.text" msgid "Migrate Macros" -msgstr "" +msgstr "Makrók áttelepítése" #. KDtEB #: migrate_macros.xhp @@ -10849,7 +10849,7 @@ "bm_id6009095\n" "help.text" msgid "wizards;macros (Base) Macro Wizard (Base) macros;attaching new (Base) migrating macros (Base)" -msgstr "" +msgstr "tündérek;makrók (Base)Makrótündér (Base)makrók;új csatolása (Base)makrók áttelepítése (Base)" #. tjLuE #: migrate_macros.xhp @@ -10858,7 +10858,7 @@ "hd_id0112200902353472\n" "help.text" msgid "Migrate Macros" -msgstr "" +msgstr "Makrók áttelepítése" #. xMVrd #: migrate_macros.xhp @@ -10867,7 +10867,7 @@ "par_id0112200902353466\n" "help.text" msgid "The Database Document Macro Migration Wizard moves existing macros from sub-documents of an old Base file into the new Base file's macro storage area." -msgstr "" +msgstr "Az Adatbázismakró-áttelepítő tündér áthelyezi egy régi Base-fájl aldokumentumainak makróit az új Base-fájl makrótároló területére." #. ajASD #: migrate_macros.xhp @@ -10876,7 +10876,7 @@ "par_id0224200911454780\n" "help.text" msgid "Choose a location and file name to save the new database file. By default, the new file gets the same name as the old file, while the old file gets renamed with the string \"backup\" in the name." -msgstr "" +msgstr "Válassza ki a helyet és a fájlnevet, ahová az új adatbázis fájlt menti. Alapértelmezés szerint az új fájl neve ugyanaz lesz, mint a régié, és a régi fájl nevébe bekerül a „backup” szó." #. M7aSL #: migrate_macros.xhp @@ -10885,7 +10885,7 @@ "par_id022420091145472\n" "help.text" msgid "The list shows all changes that were applied to the database file." -msgstr "" +msgstr "A listán megjelennek az adatbázisfájlon alkalmazottt módosítások." #. hee9q #: migrate_macros.xhp @@ -10894,7 +10894,7 @@ "par_id0112200902353542\n" "help.text" msgid "Previously, macros have been allowed to reside only in the text sub-documents of forms and reports. Now macros can also be stored in the Base file itself. This means that macros in Base files can be called now from any of its sub-components: forms, reports, table design, query design, relation design, table data view." -msgstr "" +msgstr "Korábban a makrók csak az űrlapok és jelentések szöveges aldokumentumaiban helyezkedhettek el. Most már a makrók magában a Base-fájlban is tárolhatók. Ez azt jelenti, hogy a Base-fájlban levő makrók bármelyik alkomponensből meghívhatók: űrlapokból, jelentésekből, táblatervezőből, lekérdezéstervezőből, relációtervezőből és táblaadatnézetből." #. DhC2o #: migrate_macros.xhp @@ -10903,7 +10903,7 @@ "par_id0112200903075865\n" "help.text" msgid "However, it is technically not possible to store macros both in a Base file and in its sub-documents at the same time. So, if you want to attach some new macros to the Base file, while retaining any existing old macros that were stored in the sub-documents, you must move the existing old macros up to the Base file's macro storage area." -msgstr "" +msgstr "Mindazonáltal nem lehetséges a makrókat a Base-fájlban és annak aldokumentumaiban egyaránt tárolni. Tehát ha új makrókat akar a Base-fájlhoz hozzáadni, és meg akarja tartani az aldokumentumok makróit is, akkor a régi makrókat át kell helyeznie a Base-fájl makrótároló területére." #. mtCb7 #: migrate_macros.xhp @@ -10912,7 +10912,7 @@ "par_id0112200903075830\n" "help.text" msgid "The Database Document Macro Migration Wizard can move the macros up into the Base file's storage area. You can then examine the macros and edit them as needed." -msgstr "" +msgstr "Az Adatbázismakró-áttelepítő tündér képes áthelyezni a makrókat a Base-fájl tárolóterületére. Ezután megvizsgálhatja, és szükség szerint szerkesztheti a makrókat." #. RJUfX #: migrate_macros.xhp @@ -10921,7 +10921,7 @@ "par_id0112200903075951\n" "help.text" msgid "For example, it is possible that macros from the sub-documents had the same module names and macro names. After you moved the macros into one common macro storage area, you must edit the macros to make the names unique. The wizard cannot do this." -msgstr "" +msgstr "Például lehet, hogy az aldokumentumok makrói azonos modulneveket és makróneveket használtak. A makrók közös makrótároló területre való áthelyezése után szerkesztenie kell a makrókat, hogy a nevek egyediek legyenek. A tündér erre nem képes." #. pSFRn #: migrate_macros.xhp @@ -10930,7 +10930,7 @@ "par_id0112200903075915\n" "help.text" msgid "The wizard can backup the Base file to another folder of your choice. The wizard changes the original Base file. The backup remains unchanged." -msgstr "" +msgstr "A tündér kérésre biztonsági mentést készít a Base-fájlról egy szabadon választható mappába. A tündér az eredeti Base-fájlt módosítja. A biztonsági mentés változatlan marad." #. WCGZK #: migrate_macros.xhp @@ -10948,7 +10948,7 @@ "tit\n" "help.text" msgid "User Name and Password Required" -msgstr "" +msgstr "Felhasználói név és jelszó szükséges" #. WekVB #: password.xhp @@ -10957,7 +10957,7 @@ "par_idN10541\n" "help.text" msgid "User Name and Password Required" -msgstr "" +msgstr "Felhasználói név és jelszó szükséges" #. LCLTp #: password.xhp @@ -10966,7 +10966,7 @@ "par_idN1054D\n" "help.text" msgid "User name" -msgstr "" +msgstr "Felhasználónév" #. Rx3tD #: password.xhp @@ -10975,7 +10975,7 @@ "par_idN10551\n" "help.text" msgid "Enter the user name to connect to the data source." -msgstr "" +msgstr "Adja meg az adatforrás eléréséhez szükséges felhasználónevet." #. dQH7s #: password.xhp @@ -10984,7 +10984,7 @@ "par_idN10568\n" "help.text" msgid "Password" -msgstr "" +msgstr "Jelszó" #. dqjRr #: password.xhp @@ -10993,7 +10993,7 @@ "par_idN1056C\n" "help.text" msgid "Enter the password to connect to the data source." -msgstr "" +msgstr "Adja meg az adatforrás eléréséhez szükséges jelszót." #. TudyG #: password.xhp @@ -11002,7 +11002,7 @@ "par_idN10583\n" "help.text" msgid "Remember password till end of session" -msgstr "" +msgstr "Jelszó megjegyzése a munkamenet végéig" #. KYrgJ #: password.xhp @@ -11011,7 +11011,7 @@ "par_idN10587\n" "help.text" msgid "Select to use the same user name and password without further dialog, when you connect again to the same data source in the current %PRODUCTNAME session." -msgstr "" +msgstr "Jelölje be, ha ugyanezt a felhasználói nevet és jelszót akarja használni további párbeszédablak megjelenítése nélkül, amikor ugyanehhez az adatforráshoz csatlakozik a jelenlegi %PRODUCTNAME-munkamenetben." #. EWAYC #: querywizard00.xhp @@ -11020,7 +11020,7 @@ "tit\n" "help.text" msgid "Query Wizard" -msgstr "" +msgstr "Lekérdezéstündér" #. VGUsH #: querywizard00.xhp @@ -11029,7 +11029,7 @@ "par_idN1054C\n" "help.text" msgid "Query Wizard" -msgstr "" +msgstr "Lekérdezéstündér" #. 7eeqf #: querywizard00.xhp @@ -11038,7 +11038,7 @@ "par_idN1055C\n" "help.text" msgid "The Query Wizard helps you to design a database query. The saved query can be called later, either from the graphical user interface, or using the automatically created SQL language command." -msgstr "" +msgstr "A Lekérdezéstündér adatbázis-lekérdezések tervezésében segít. A mentett lekérdezés később előhívható, akár a grafikus felhasználói felületről, akár az automatikusan létrehozott SQL-parancs használatával." #. SCN34 #: querywizard00.xhp @@ -11056,7 +11056,7 @@ "tit\n" "help.text" msgid "Query Wizard - Field Selection" -msgstr "" +msgstr "Lekérdezéstündér - Mező kiválasztása" #. ago2e #: querywizard01.xhp @@ -11065,7 +11065,7 @@ "par_idN10546\n" "help.text" msgid "Query Wizard - Field Selection" -msgstr "" +msgstr "Lekérdezéstündér - Mező kiválasztása" #. zvnWy #: querywizard01.xhp @@ -11074,7 +11074,7 @@ "par_idN10556\n" "help.text" msgid "Specifies the table to create the query, and specifies which fields you wish to include in the query." -msgstr "" +msgstr "Megadja a táblát a lekérdezés létrehozásához, és megadja, hogy mely mezőket kell bevenni a lekérdezésbe." #. bjRCe #: querywizard01.xhp @@ -11083,7 +11083,7 @@ "par_idN10559\n" "help.text" msgid "Tables" -msgstr "" +msgstr "Táblázatok" #. RBgge #: querywizard01.xhp @@ -11092,7 +11092,7 @@ "par_idN1055D\n" "help.text" msgid "Specifies the table for which the query is to be created." -msgstr "" +msgstr "Megadja azt a táblát, amelyhez a lekérdezés készül." #. BFXtZ #: querywizard01.xhp @@ -11101,7 +11101,7 @@ "par_idN10590\n" "help.text" msgid "Fields in the Query" -msgstr "" +msgstr "Lekérdezésben használt mezők" #. n6cwc #: querywizard01.xhp @@ -11110,7 +11110,7 @@ "par_idN10594\n" "help.text" msgid "Displays all fields that will be included in the new query." -msgstr "" +msgstr "Megjeleníti az új lekérdezéshez tartozó összes mezőt." #. MJBo8 #: querywizard01.xhp @@ -11128,7 +11128,7 @@ "tit\n" "help.text" msgid "Query Wizard - Sorting Order" -msgstr "" +msgstr "Lekérdezéstündér - Rendezési sorrend" #. 6jtTb #: querywizard02.xhp @@ -11137,7 +11137,7 @@ "par_idN10543\n" "help.text" msgid "Query Wizard - Sorting Order" -msgstr "" +msgstr "Lekérdezéstündér - Rendezési sorrend" #. hv6wL #: querywizard02.xhp @@ -11146,7 +11146,7 @@ "par_idN10553\n" "help.text" msgid "Specifies the sorting order for the data records in your query." -msgstr "" +msgstr "Megadja a lekérdezés eredményéül megjelenő adatrekordok rendezési sorrendjét." #. eVr57 #: querywizard02.xhp @@ -11155,7 +11155,7 @@ "par_idN10556\n" "help.text" msgid "Sort by" -msgstr "" +msgstr "Rendezési szempont" #. CRtP3 #: querywizard02.xhp @@ -11164,7 +11164,7 @@ "par_idN105B2\n" "help.text" msgid "Specifies the field by which the created query is sorted." -msgstr "" +msgstr "Megadja azt a mezőt, amely szerint a létrehozott lekérdezést rendezni kell." #. xUjcF #: querywizard02.xhp @@ -11173,7 +11173,7 @@ "par_idN1055C\n" "help.text" msgid "Ascending" -msgstr "" +msgstr "Növekvő" #. aSXt6 #: querywizard02.xhp @@ -11182,7 +11182,7 @@ "par_idN105BF\n" "help.text" msgid "Click to sort in alphabetically or numerically ascending order." -msgstr "" +msgstr "Kattintson ide a növekvő betűrendes vagy számsorrendes rendezéshez." #. pR3aG #: querywizard02.xhp @@ -11191,7 +11191,7 @@ "par_idN10562\n" "help.text" msgid "Descending" -msgstr "" +msgstr "Csökkenő" #. 9BtoZ #: querywizard02.xhp @@ -11200,7 +11200,7 @@ "par_idN105CC\n" "help.text" msgid "Click to sort in alphabetically or numerically descending order." -msgstr "" +msgstr "Kattintson ide a csökkenő betűrendes vagy számsorrendes rendezéshez." #. 6U4wS #: querywizard02.xhp @@ -11209,7 +11209,7 @@ "par_idN10568\n" "help.text" msgid "And then by" -msgstr "" +msgstr "Ez után e szerint" #. CqmF3 #: querywizard02.xhp @@ -11218,7 +11218,7 @@ "par_idN105D9\n" "help.text" msgid "Specifies additional fields by which the created query is sorted, if previous sort fields are equal." -msgstr "" +msgstr "Megad további mezőket, amelyek szerint a létrehozott lekérdezést rendezni kell, ha ez előző rendezési mező egyenlő volt." #. pEGB3 #: querywizard02.xhp @@ -11236,7 +11236,7 @@ "tit\n" "help.text" msgid "Query Wizard - Search Conditions" -msgstr "" +msgstr "Lekérdezéstündér - Keresési feltételek" #. usSAE #: querywizard03.xhp @@ -11245,7 +11245,7 @@ "par_idN10543\n" "help.text" msgid "Query Wizard - Search Conditions" -msgstr "" +msgstr "Lekérdezéstündér - Keresési feltételek" #. Axn74 #: querywizard03.xhp @@ -11254,7 +11254,7 @@ "par_idN10553\n" "help.text" msgid "Specifies the search conditions to filter the query." -msgstr "" +msgstr "Megadja a keresési feltételeket a lekérdezés szűréséhez." #. MBS9h #: querywizard03.xhp @@ -11263,7 +11263,7 @@ "par_idN10556\n" "help.text" msgid "Match all of the following" -msgstr "" +msgstr "A következők mind illeszkedjenek" #. eGvAt #: querywizard03.xhp @@ -11272,7 +11272,7 @@ "par_idN105B2\n" "help.text" msgid "Select to filter the query by all the conditions using a logical AND." -msgstr "" +msgstr "Válassza ezt a lekérdezés logikai ÉS művelettel összekötött összes feltétele szerinti szűréshez." #. mowq3 #: querywizard03.xhp @@ -11281,7 +11281,7 @@ "par_idN1055C\n" "help.text" msgid "Match any of the following" -msgstr "" +msgstr "A következők bármelyike illeszkedjen" #. m9DAv #: querywizard03.xhp @@ -11290,7 +11290,7 @@ "par_idN105BF\n" "help.text" msgid "Select to filter the query by any of the conditions using a logical OR." -msgstr "" +msgstr "Válassza ezt a lekérdezés logikai VAGY művelettel összekötött bármely feltétele szerinti szűréshez." #. YzKAZ #: querywizard03.xhp @@ -11299,7 +11299,7 @@ "par_idN10562\n" "help.text" msgid "Field" -msgstr "" +msgstr "Mező" #. zJBqq #: querywizard03.xhp @@ -11308,7 +11308,7 @@ "par_idN105CC\n" "help.text" msgid "Select the field name for the filter condition." -msgstr "" +msgstr "Válassza ki a mezőnevet a szűrőfeltételhez." #. cpBwd #: querywizard03.xhp @@ -11317,7 +11317,7 @@ "par_idN10568\n" "help.text" msgid "Condition" -msgstr "" +msgstr "Feltétel" #. FRFQM #: querywizard03.xhp @@ -11326,7 +11326,7 @@ "par_idN105D9\n" "help.text" msgid "Select the condition for the filter." -msgstr "" +msgstr "Válassza ki a szűrőfeltételt." #. dF2FF #: querywizard03.xhp @@ -11335,7 +11335,7 @@ "par_idN1056E\n" "help.text" msgid "Value" -msgstr "" +msgstr "Érték" #. ZKEEw #: querywizard03.xhp @@ -11344,7 +11344,7 @@ "par_idN105E6\n" "help.text" msgid "Enter the value for the filter condition." -msgstr "" +msgstr "Írja be az értéket a szűrőfeltételhez." #. huAnr #: querywizard03.xhp @@ -11362,7 +11362,7 @@ "tit\n" "help.text" msgid "Query Wizard - Detail or Summary" -msgstr "" +msgstr "Lekérdezéstündér - Részletezés vagy összegzés" #. He5oE #: querywizard04.xhp @@ -11371,7 +11371,7 @@ "par_idN10543\n" "help.text" msgid "Query Wizard - Detail or Summary" -msgstr "" +msgstr "Lekérdezéstündér - Részletezés vagy összegzés" #. pvdAU #: querywizard04.xhp @@ -11380,7 +11380,7 @@ "par_idN10553\n" "help.text" msgid "Specifies whether to display all records of the query, or only the results of aggregate functions." -msgstr "" +msgstr "Megadja, hogy a lekérdezés össze rekordját, vagy csak az összesítő függvények eredményeit kell-e megjeleníteni." #. GNBdc #: querywizard04.xhp @@ -11389,7 +11389,7 @@ "par_idN10556\n" "help.text" msgid "This page is only displayed when there are numerical fields in the query that allow the use of aggregate functions." -msgstr "" +msgstr "Ez az oldal csak akkor jelenik meg, ha a lekérdezésben számmezők is szerepelnek, és így az összesítő függvényeknek van értelme." #. LAhTk #: querywizard04.xhp @@ -11398,7 +11398,7 @@ "par_idN10559\n" "help.text" msgid "Detailed query" -msgstr "" +msgstr "Részletes lekérdezés" #. aXtmP #: querywizard04.xhp @@ -11407,7 +11407,7 @@ "par_idN105BD\n" "help.text" msgid "Select to show all records of the query." -msgstr "" +msgstr "Válassza ezt a lekérdezés összes rekordjának megjelenítéséhez." #. h7yp9 #: querywizard04.xhp @@ -11416,7 +11416,7 @@ "par_idN105C2\n" "help.text" msgid "Summary query" -msgstr "" +msgstr "Összegző lekérdezés" #. 4VMFu #: querywizard04.xhp @@ -11425,7 +11425,7 @@ "par_idN105C8\n" "help.text" msgid "Select to show only results of aggregate functions." -msgstr "" +msgstr "Válassza ezt csak az összesítő függvények eredményének megjelenítéséhez." #. CEC9y #: querywizard04.xhp @@ -11434,7 +11434,7 @@ "par_idN105D7\n" "help.text" msgid "Select the aggregate function and the field name of the numeric field in the list box. You can enter as many aggregate functions as you want, one in each row of controls." -msgstr "" +msgstr "Válassza ki az összesítő függvényt és a számmező mezőnevét a listából. Tetszőleges számú összesítő függvényt megadhat, soronként egyet." #. QCySK #: querywizard04.xhp @@ -11443,7 +11443,7 @@ "par_idN1055D\n" "help.text" msgid "Aggregate function" -msgstr "" +msgstr "Összesítő függvények" #. H3vuB #: querywizard04.xhp @@ -11452,7 +11452,7 @@ "par_idN105E4\n" "help.text" msgid "Select the aggregate function." -msgstr "" +msgstr "Válassza ki az összesítő függvényt." #. 7VBHB #: querywizard04.xhp @@ -11461,7 +11461,7 @@ "par_idN105DD\n" "help.text" msgid "Field name" -msgstr "" +msgstr "Mezőnév" #. DhcSj #: querywizard04.xhp @@ -11470,7 +11470,7 @@ "par_idN10656\n" "help.text" msgid "Select the numeric field name." -msgstr "" +msgstr "Válassza ki a számmező nevét." #. hM5kP #: querywizard04.xhp @@ -11479,7 +11479,7 @@ "par_idN105FE\n" "help.text" msgid "Appends a new row of controls." -msgstr "" +msgstr "Hozzáfűz egy új vezérlőelemsort." #. MYCN9 #: querywizard04.xhp @@ -11488,7 +11488,7 @@ "par_idN1060B\n" "help.text" msgid "Removes the last row of controls." -msgstr "" +msgstr "Eltávolítja az utolsó vezérlőelemsort." #. 95hsW #: querywizard04.xhp @@ -11506,7 +11506,7 @@ "tit\n" "help.text" msgid "Query Wizard - Grouping" -msgstr "" +msgstr "Lekérdezéstündér - Csoportosítás" #. kwKJA #: querywizard05.xhp @@ -11515,7 +11515,7 @@ "par_idN10546\n" "help.text" msgid "Query Wizard - Grouping" -msgstr "" +msgstr "Lekérdezéstündér - Csoportosítás" #. yimYQ #: querywizard05.xhp @@ -11524,7 +11524,7 @@ "par_idN10556\n" "help.text" msgid "Specifies whether to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard." -msgstr "" +msgstr "Megadja, hogy kell-e csoportosítani a lekérdezés eredményét. Az adatforrásnak támogatnia kell a „Group by” SQL-parancsot, különben ez a tündéroldal meg sem jelenik." #. BEcEC #: querywizard05.xhp @@ -11533,7 +11533,7 @@ "par_idN10589\n" "help.text" msgid "Group by" -msgstr "" +msgstr "Csoportosítási szempont" #. XSPcc #: querywizard05.xhp @@ -11542,7 +11542,7 @@ "par_idN1058D\n" "help.text" msgid "Displays all fields that are to be used to group the query." -msgstr "" +msgstr "Megjeleníti az összes mezőt, amely a lekérdezés csoportosításához használandó." #. bebrL #: querywizard05.xhp @@ -11560,7 +11560,7 @@ "tit\n" "help.text" msgid "Query Wizard - Grouping Conditions" -msgstr "" +msgstr "Lekérdezéstündér - Csoportosítási feltételek" #. rvBec #: querywizard06.xhp @@ -11569,7 +11569,7 @@ "par_idN10546\n" "help.text" msgid "Query Wizard - Grouping Conditions" -msgstr "" +msgstr "Lekérdezéstündér - Csoportosítási feltételek" #. isYHF #: querywizard06.xhp @@ -11578,7 +11578,7 @@ "par_idN10556\n" "help.text" msgid "Specifies the conditions to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard." -msgstr "" +msgstr "Megadja a lekérdezés eredménye csoportosításának feltételeit. Az adatforrásnak támogatnia kell a „Group by” SQL-parancsot, különben ez a tündéroldal meg sem jelenik." #. E2hjZ #: querywizard06.xhp @@ -11587,7 +11587,7 @@ "par_idN10559\n" "help.text" msgid "Match all of the following" -msgstr "" +msgstr "A következők mind illeszkedjenek" #. tsdNz #: querywizard06.xhp @@ -11596,7 +11596,7 @@ "par_idN1055D\n" "help.text" msgid "Select to group the query by all the conditions using a logical AND." -msgstr "" +msgstr "Válassza ezt a lekérdezés logikai ÉS művelettel összekötött összes feltétele szerinti csoportosításhoz." #. vG7ub #: querywizard06.xhp @@ -11605,7 +11605,7 @@ "par_idN10560\n" "help.text" msgid "Match any of the following" -msgstr "" +msgstr "A következők bármelyike illeszkedjen" #. H4kNz #: querywizard06.xhp @@ -11614,7 +11614,7 @@ "par_idN10564\n" "help.text" msgid "Select to group the query by any of the conditions using a logical OR." -msgstr "" +msgstr "Válassza ezt a lekérdezés logikai VAGY művelettel összekötött bármely feltétele szerinti csoportosításhoz." #. CRQPr #: querywizard06.xhp @@ -11623,7 +11623,7 @@ "par_idN10567\n" "help.text" msgid "Field name" -msgstr "" +msgstr "Mezőnév" #. AUDUW #: querywizard06.xhp @@ -11632,7 +11632,7 @@ "par_idN1056B\n" "help.text" msgid "Select the field name for the grouping condition." -msgstr "" +msgstr "Válassza ki a mezőnevet a csoportosítási feltételhez." #. vYSzM #: querywizard06.xhp @@ -11641,7 +11641,7 @@ "par_idN1056E\n" "help.text" msgid "Condition" -msgstr "" +msgstr "Feltétel" #. VHAhf #: querywizard06.xhp @@ -11650,7 +11650,7 @@ "par_idN10572\n" "help.text" msgid "Select the condition for the grouping." -msgstr "" +msgstr "Válassza ki a csoportosítási feltételt." #. LYZYG #: querywizard06.xhp @@ -11659,7 +11659,7 @@ "par_idN10575\n" "help.text" msgid "Value" -msgstr "" +msgstr "Érték" #. GBywN #: querywizard06.xhp @@ -11668,7 +11668,7 @@ "par_idN10579\n" "help.text" msgid "Enter the value for the grouping condition." -msgstr "" +msgstr "Írja be az értéket a csoportosítási feltételhez." #. tg3CC #: querywizard06.xhp @@ -11686,7 +11686,7 @@ "tit\n" "help.text" msgid "Query Wizard - Aliases" -msgstr "" +msgstr "Lekérdezéstündér - Álnevek" #. dCG5v #: querywizard07.xhp @@ -11695,7 +11695,7 @@ "par_idN10543\n" "help.text" msgid "Query Wizard - Aliases" -msgstr "" +msgstr "Lekérdezéstündér - Álnevek" #. 8qMru #: querywizard07.xhp @@ -11704,7 +11704,7 @@ "par_idN10553\n" "help.text" msgid "Assigns aliases to field names. Aliases are optional, and can provide more user-friendly names, which are displayed in place of field names. For example, an alias can be used when fields from different tables have the same name." -msgstr "" +msgstr "Álneveket rendel a mezőnevekhez. Az álnevek nem kötelezőek, a céljuk az, hogy felhasználóbarátabb néven hivatkozhasson a mezőnevekre. Például az álnév akkor használható, ha különböző táblákból származó mezőknek ugyanaz a neve." #. GKQBZ #: querywizard07.xhp @@ -11713,7 +11713,7 @@ "par_idN10556\n" "help.text" msgid "Alias" -msgstr "" +msgstr "Álnév" #. TiaDt #: querywizard07.xhp @@ -11722,7 +11722,7 @@ "par_idN1055A\n" "help.text" msgid "Enter the alias for the field name." -msgstr "" +msgstr "Adja meg a mezőnév álnevét." #. cHhQS #: querywizard07.xhp @@ -11740,7 +11740,7 @@ "tit\n" "help.text" msgid "Query Wizard - Overview" -msgstr "" +msgstr "Lekérdezéstündér - Áttekintés" #. eZifq #: querywizard08.xhp @@ -11749,7 +11749,7 @@ "par_idN10543\n" "help.text" msgid "Query Wizard - Overview" -msgstr "" +msgstr "Lekérdezéstündér - Áttekintés" #. Eugc7 #: querywizard08.xhp @@ -11758,7 +11758,7 @@ "par_idN10553\n" "help.text" msgid "Enter a name of the query, and specify whether you want to display or to modify the query after the Wizard is finished." -msgstr "" +msgstr "Írja be a lekérdezés nevét, és adja meg, hogy megjeleníteni vagy módosítani szeretné a lekérdezést a tündér befejezése után." #. zjCxf #: querywizard08.xhp @@ -11767,7 +11767,7 @@ "par_idN10556\n" "help.text" msgid "Name of the query" -msgstr "" +msgstr "Lekérdezés neve" #. ZLJYh #: querywizard08.xhp @@ -11776,7 +11776,7 @@ "par_idN1055A\n" "help.text" msgid "Enter the name of the query." -msgstr "" +msgstr "Írja be a lekérdezés nevét." #. uC9Qc #: querywizard08.xhp @@ -11785,7 +11785,7 @@ "par_idN1055D\n" "help.text" msgid "Display query" -msgstr "" +msgstr "Lekérdezés megjelenítése" #. BJa3G #: querywizard08.xhp @@ -11794,7 +11794,7 @@ "par_idN10561\n" "help.text" msgid "Select to save and display the query." -msgstr "" +msgstr "Válassza ezt a lekérdezés mentéséhez és megjelenítéséhez." #. yN4FB #: querywizard08.xhp @@ -11803,7 +11803,7 @@ "par_idN10564\n" "help.text" msgid "Modify query" -msgstr "" +msgstr "Lekérdezés szerkesztése" #. VKpNF #: querywizard08.xhp @@ -11812,7 +11812,7 @@ "par_idN10568\n" "help.text" msgid "Select to save the query and open it for editing." -msgstr "" +msgstr "Válassza ezt a lekérdezés mentéséhez és szerkesztésre megnyitásához." #. 3ww32 #: querywizard08.xhp @@ -11821,7 +11821,7 @@ "par_idN1056B\n" "help.text" msgid "Overview" -msgstr "" +msgstr "Áttekintés" #. SfUBA #: querywizard08.xhp @@ -11830,7 +11830,7 @@ "par_idN1056F\n" "help.text" msgid "Displays a summary of the query." -msgstr "" +msgstr "Megjeleníti a lekérdezés összegzését." #. 8k8Fx #: querywizard08.xhp @@ -11848,7 +11848,7 @@ "tit\n" "help.text" msgid "Date and Time" -msgstr "" +msgstr "Dátum és idő" #. eDaHU #: rep_datetime.xhp @@ -11857,7 +11857,7 @@ "hd_id2320932\n" "help.text" msgid "Date and Time" -msgstr "" +msgstr "Dátum és idő" #. DrUB4 #: rep_datetime.xhp @@ -11866,7 +11866,7 @@ "par_id8638874\n" "help.text" msgid "You can open the Date and Time dialog of the Report Builder by choosing Insert - Date and Time." -msgstr "" +msgstr "A Jelentéstervező Dátum és idő párbeszédablakának megnyitásához válassza a Beszúrás - Dátum és idő lehetőséget." #. tSLyd #: rep_datetime.xhp @@ -11875,7 +11875,7 @@ "par_id6278878\n" "help.text" msgid "Press Shift-F1 and point with the mouse at an input box to see a help text for this input box." -msgstr "" +msgstr "Nyomja meg a Shift+F1 billentyűkombinációt, vigye az egeret egy beviteli mező fölé a beviteli mező súgószövegének megtekintéséhez." #. ppg4k #: rep_datetime.xhp @@ -11884,7 +11884,7 @@ "par_id393078\n" "help.text" msgid "Enable Include Date to insert a date field into the active area of the report. The date field displays the current date when the report is executed." -msgstr "" +msgstr "Engedélyezze a Dátum beszúrása lehetőséget, hogy a jelentés aktív területére kerüljön egy dátummező. A dátummező a jelentés generálásakor aktuális dátumot jeleníti meg." #. 6ued5 #: rep_datetime.xhp @@ -11893,7 +11893,7 @@ "par_id1271401\n" "help.text" msgid "Select a format to display the date." -msgstr "" +msgstr "Jelölje ki a dátum megjelenítéséhez használt formátumot." #. VvPJF #: rep_datetime.xhp @@ -11902,7 +11902,7 @@ "par_id8718832\n" "help.text" msgid "Enable Include Time to insert a time field into the active area of the report. The time field displays the current time when the report is executed." -msgstr "" +msgstr "Engedélyezze az Idő beszúrása lehetőséget, hogy a jelentés aktív területére kerüljön egy időmező. Az időmező a jelentés generálásakor aktuális időt jeleníti meg." #. DfCAA #: rep_datetime.xhp @@ -11911,7 +11911,7 @@ "par_id8561052\n" "help.text" msgid "Select a format to display the time." -msgstr "" +msgstr "Jelölje ki az idő megjelenítéséhez használt formátumot." #. cVAzu #: rep_datetime.xhp @@ -11920,7 +11920,7 @@ "par_id5992919\n" "help.text" msgid "Click OK to insert the field." -msgstr "" +msgstr "A mező beszúrásához kattintson az OK gombra." #. WFpF6 #: rep_datetime.xhp @@ -11929,7 +11929,7 @@ "par_id4320810\n" "help.text" msgid "You can click the date or time field and drag to another position within the same area, or edit the properties in the Properties window." -msgstr "" +msgstr "Kattinthat a dátum vagy az idő mezőn, és azonos területen belül más helyre húzhatja, vagy szerkesztheti a tulajdonságait a Tulajdonságok ablakban." #. DCjDN #: rep_insertfield.xhp @@ -11938,7 +11938,7 @@ "tit\n" "help.text" msgid "Insert Fields" -msgstr "" +msgstr "Mezők beszúrása" #. DiU2a #: rep_insertfield.xhp @@ -11947,7 +11947,7 @@ "bm_id61540566967968\n" "help.text" msgid "insert fields;in report design add fields;in report design report design;add fields to report" -msgstr "" +msgstr "mezők beszúrása;jelentéstervezőben mezők beszúrása;jelentéstervezőben jelentéstervező;mezők jelentéshez adása" #. ZSrFy #: rep_insertfield.xhp @@ -11965,7 +11965,7 @@ "par_id3587145\n" "help.text" msgid "The Add Field window helps you to insert the table entries in the report." -msgstr "" +msgstr "A Mező hozzáadása ablak segít táblabejegyzéseket beszúrni a jelentésbe." #. dzGbq #: rep_insertfield.xhp @@ -11974,7 +11974,7 @@ "par_id4503921\n" "help.text" msgid "The Add Field window is shown automatically when you have selected a table in the Contents box and leave that box." -msgstr "" +msgstr "A Mező hozzáadása ablak automatikusan megjelenik, amikor kijelöl egy táblát a Tartalom mezőben, és elhagyja azt a mezőt." #. hQDBC #: rep_insertfield.xhp @@ -11983,7 +11983,7 @@ "par_id171540674707522\n" "help.text" msgid "Choose View - Add Field." -msgstr "" +msgstr "Válassza a Nézet - Mező hozzáadása lehetőséget." #. oEoAE #: rep_insertfield.xhp @@ -11992,7 +11992,7 @@ "par_id121540674874655\n" "help.text" msgid "Click the Add Field icon on the toolbar." -msgstr "" +msgstr "Kattintson az eszköztáron a Mező hozzáadása ikonra." #. e4BhF #: rep_insertfield.xhp @@ -12001,7 +12001,7 @@ "par_id991540674901837\n" "help.text" msgid "Add Field icon" -msgstr "" +msgstr "Mező hozzáadása ikon" #. jYge5 #: rep_insertfield.xhp @@ -12010,7 +12010,7 @@ "par_id121540664874655\n" "help.text" msgid "Add Field icon on the toolbar." -msgstr "" +msgstr "Mező hozzáadása ikon az eszköztáron." #. BqWBD #: rep_insertfield.xhp @@ -12019,7 +12019,7 @@ "par_id141540563922693\n" "help.text" msgid "Select the field in the Add Field dialog and click Insert. You can select multiple fields pressing the CommandCtrl key while clicking on the fields name or using the Shift key while pressing the mouse button. Click Insert in the toolbar to add the fields to the report." -msgstr "" +msgstr "Válassza ki a mezőt a Mező hozzáadása ablakban, és kattintson a Beszúrás gombra. Több mezőt is beszúrhat a CommandCtrl lenyomva tartásával a mezők neveire kattintáskor, vagy a Shift billentyű használatával az egérgomb lenyomásakor. Kattintson az eszköztár Beszúrás ikonjára a mezők hozzáadásához a jelentéshez." #. BGjjH #: rep_insertfield.xhp @@ -12028,7 +12028,7 @@ "par_id4051026\n" "help.text" msgid "Drag and drop the field names one by one from the Add Field window into the Detail area of the report. Position the fields as you like. Use the icons in the toolbars to align the fields." -msgstr "" +msgstr "Húzza át egyesével a mezőneveket a Mező hozzáadása ablakból a jelentés Részletek területére. Helyezze el a mezőket tetszés szerint. Használja az eszköztár ikonjait a mezők igazításához." #. Hk568 #: rep_insertfield.xhp @@ -12037,7 +12037,7 @@ "par_id3397320\n" "help.text" msgid "It is not possible to overlap the fields. If you drop a table field on the Detail area, then a label and a text box are inserted." -msgstr "" +msgstr "A mezők átfedése nem lehetséges. Ha egy táblamezőt dob a Részletek területre, egy címke és egy szövegmező lesz beszúrva." #. N9RC7 #: rep_insertfield.xhp @@ -12046,7 +12046,7 @@ "par_id3059785\n" "help.text" msgid "You can also insert text that should be the same on every page of the report. Click the Label Field icon, then drag a rectangle in the Page Header or Page Footer area. Edit the Label property to show the text you want." -msgstr "" +msgstr "Olyan szöveget is beilleszthet, amelynek a jelentés minden oldalán azonosnak kell lennie. Kattintson a Címkemező ikonra, majd húzza a téglalapot az Oldal élőfeje vagy az Oldal élőlába területére. Szerkessze a Címke tulajdonságát a kívánt szöveg megjelenítéséhez." #. yombL #: rep_insertfield.xhp @@ -12055,7 +12055,7 @@ "par_id991540874901837\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. pSksR #: rep_insertfield.xhp @@ -12064,7 +12064,7 @@ "par_id121542664874655\n" "help.text" msgid "Add Label Field icon on the toolbar." -msgstr "" +msgstr "Címkemező hozzáadása ikon az eszköztáron." #. VjpkA #: rep_insertfield.xhp @@ -12073,7 +12073,7 @@ "hd_id251540563929787\n" "help.text" msgid "Sorting fields names" -msgstr "" +msgstr "Mezőnevek rendezése" #. ENcuK #: rep_insertfield.xhp @@ -12082,7 +12082,7 @@ "par_id651540564204840\n" "help.text" msgid "Sort Ascending icon" -msgstr "" +msgstr "Növekvő sorrend ikon" #. EfMFi #: rep_insertfield.xhp @@ -12091,7 +12091,7 @@ "par_id401540563992665\n" "help.text" msgid "Sort names ascending." -msgstr "" +msgstr "Nevek növekvő sorrendbe rendezése." #. rJE3c #: rep_insertfield.xhp @@ -12100,7 +12100,7 @@ "par_id811540564184191\n" "help.text" msgid "Sort Descending icon" -msgstr "" +msgstr "Csökkenő sorrend ikon" #. BEcwL #: rep_insertfield.xhp @@ -12109,7 +12109,7 @@ "par_id401540563942665\n" "help.text" msgid "Sort names descending," -msgstr "" +msgstr "Nevek csökkenő sorrendbe rendezése." #. RVvGD #: rep_insertfield.xhp @@ -12118,7 +12118,7 @@ "par_id851540564212907\n" "help.text" msgid "Undo sorting icon" -msgstr "" +msgstr "Rendezés visszavonása ikon" #. DVAm8 #: rep_insertfield.xhp @@ -12127,7 +12127,7 @@ "par_id401540533942665\n" "help.text" msgid "Restore original sorting" -msgstr "" +msgstr "Eredeti rendezés visszaállítása" #. gCECo #: rep_main.xhp @@ -12136,7 +12136,7 @@ "tit\n" "help.text" msgid "Report Builder" -msgstr "" +msgstr "Jelentéstervező" #. Yyb28 #: rep_main.xhp @@ -12145,7 +12145,7 @@ "bm_id1614429\n" "help.text" msgid "Report Builder Oracle Report Builder" -msgstr "" +msgstr "Jelentéskészítő Oracle Jelentéskészítő" #. DouuB #: rep_main.xhp @@ -12154,7 +12154,7 @@ "hd_id8773155\n" "help.text" msgid "Report Builder" -msgstr "" +msgstr "Jelentéstervező" #. tcUx2 #: rep_main.xhp @@ -12163,7 +12163,7 @@ "par_id5248573\n" "help.text" msgid "The Report Builder is a tool to create your own database reports. Unlike with the Report Wizard, using the Report Builder you can take control to design the report the way you want. The generated report is a Writer document that you can edit, too." -msgstr "" +msgstr "A Jelentéstervező egy adatbázis-jelentéseket létrehozó eszköz. A Jelentéstündérrel ellentétben a Jelentéstervező szabad kezet ad a jelentés megtervezéséhez. A generált jelentés egy Writer-dokumentum, amelyet szerkeszthet is." #. kCCcM #: rep_main.xhp @@ -12172,7 +12172,7 @@ "par_id7128818\n" "help.text" msgid "To use the Report Builder, the Java Runtime Environment (JRE) software must be installed, and this software must be selected in %PRODUCTNAME." -msgstr "" +msgstr "A Jelentéstervező használatához telepíteni kell a Java Runtime Environment (JRE) szoftvert, és ezt a szoftvert kell kiválasztani a %PRODUCTNAME mezőben." #. MUFG8 #: rep_main.xhp @@ -12181,7 +12181,7 @@ "hd_id556047\n" "help.text" msgid "To install the JRE software" -msgstr "" +msgstr "A JRE szoftver telepítése" #. CTy58 #: rep_main.xhp @@ -12190,7 +12190,7 @@ "par_id4515823\n" "help.text" msgid "The Report Builder requires an installed Java Runtime Environment (JRE)." -msgstr "" +msgstr "A Jelentéskezelőhöz telepített Java Runtime Environment (JRE) szoftverre van szükség." #. t42Ud #: rep_main.xhp @@ -12199,7 +12199,7 @@ "par_id4044312\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced." -msgstr "" +msgstr "Válassza a %PRODUCTNAME - BeállításokEszközök - Beállítások - %PRODUCTNAME Speciális lehetőséget." #. bGABC #: rep_main.xhp @@ -12208,7 +12208,7 @@ "par_id1369060\n" "help.text" msgid "Wait up to one minute, while %PRODUCTNAME collects information on installed Java software on your system." -msgstr "" +msgstr "Várjon legfeljebb egy percet, amíg a %PRODUCTNAME összegyűjti a számítógépre telepített Java-szoftver információit." #. oxLT3 #: rep_main.xhp @@ -12217,7 +12217,7 @@ "par_id860927\n" "help.text" msgid "If a recent JRE version is found on your system, you see an entry in the list." -msgstr "" +msgstr "Ha megtalálja a JRE egy friss verzióját a rendszerben, akkor a listában megjelenik egy bejegyzés." #. 87xW7 #: rep_main.xhp @@ -12226,7 +12226,7 @@ "par_id8581804\n" "help.text" msgid "Click the option button in front of the entry to enable this JRE version for use in %PRODUCTNAME." -msgstr "" +msgstr "Kattintson a bejegyzés előtti választógombra, ha ezt a JRE-verziót akarja használni a %PRODUCTNAME programban." #. KmqC6 #: rep_main.xhp @@ -12235,7 +12235,7 @@ "par_id7730033\n" "help.text" msgid "Ensure that Use a Java runtime environment is enabled." -msgstr "" +msgstr "Győződjön meg róla, hogy a Java-futtatókörnyezet használata engedélyezve van." #. oeX8D #: rep_main.xhp @@ -12244,7 +12244,7 @@ "par_id6317636\n" "help.text" msgid "If no JRE version is found on your system, open your web browser and download the JRE software from http://www.java.com. Install the JRE software. Then restart %PRODUCTNAME and open %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced again." -msgstr "" +msgstr "Ha nem található JRE a rendszeren, akkor nyissa meg a webböngészőt, és töltse le a JRE szoftvert a http://www.java.com webhelyről. Telepítse a JRE szoftvert. Ezután indítsa újra a %PRODUCTNAME programot, majd nyissa meg ismét az %PRODUCTNAME - BeállításokEszközök - Beállítások - %PRODUCTNAME - Speciális menüpontot." #. 87hJD #: rep_main.xhp @@ -12253,7 +12253,7 @@ "hd_id9759514\n" "help.text" msgid "To open the Report Builder" -msgstr "" +msgstr "A Jelentéstervező megnyitásához" #. TxLZj #: rep_main.xhp @@ -12262,7 +12262,7 @@ "par_id9076509\n" "help.text" msgid "Open a Base file or create a new database. The database must contain at least one table with at least one data field and a primary key field." -msgstr "" +msgstr "Nyisson meg egy Base-fájlt, vagy hozzon létre egy új adatbázist. Az adatbázisban legalább egy táblának lennie kell, amelyben lennie kell legalább egy adatmezőnek és egy elsődleges kulcsnak." #. NiuEf #: rep_main.xhp @@ -12271,7 +12271,7 @@ "par_id7050691\n" "help.text" msgid "Click the Reports icon in the Base window, then choose Create Report in Design View." -msgstr "" +msgstr "A Base ablakban kattintson a Jelentések ikonra, majd válassza a Jelentés létrehozása a Tervezőnézetben lehetőséget." #. u7db8 #: rep_main.xhp @@ -12280,7 +12280,7 @@ "par_id7118747\n" "help.text" msgid "The Report Builder window opens." -msgstr "" +msgstr "Megnyílik a Jelentéstervező ablaka." #. eC7Ku #: rep_main.xhp @@ -12289,7 +12289,7 @@ "par_id8283639\n" "help.text" msgid "The Report Builder is divided into three parts. On the top you see the menu, with the toolbars below." -msgstr "" +msgstr "A Jelentéstervező három részre oszlik. Fent a menü látható, alatta vannak az eszköztárak." #. FZucS #: rep_main.xhp @@ -12298,7 +12298,7 @@ "par_id2291024\n" "help.text" msgid "On the right you see the Properties window with the property values of the currently selected object." -msgstr "" +msgstr "A jobb oldalon látható a Tulajdonságok ablak az aktuálisan kijelölt objektum tulajdonságértékeivel." #. 9iUTs #: rep_main.xhp @@ -12307,7 +12307,7 @@ "par_id2100589\n" "help.text" msgid "The left part of the Report Builder window shows the Report Builder view. The Report Builder view is initially divided into three sections, from top to bottom:" -msgstr "" +msgstr "A Jelentéstervező ablak bal oldalán a Jelentéstervező nézet jelenik meg. A Jelentéstervező nézet kezdetben három szakaszra van osztva fentről lefelé." #. bpA2e #: rep_main.xhp @@ -12316,7 +12316,7 @@ "par_id5022125\n" "help.text" msgid "Page Header - drag control fields with fixed text into the Page Header area" -msgstr "" +msgstr "Oldal élőfeje - húzzon rögzített szövegű vezérlőmezőket az Oldal élőfeje területre" #. TcX6C #: rep_main.xhp @@ -12325,7 +12325,7 @@ "par_id6844386\n" "help.text" msgid "Detail - drag and drop database fields into the Detail area" -msgstr "" +msgstr "Részletek - húzzon adatbázismezőket a Részletek területre" #. k3qgL #: rep_main.xhp @@ -12334,7 +12334,7 @@ "par_id7018646\n" "help.text" msgid "Page Footer - drag control fields with fixed text into the Page Footer area" -msgstr "" +msgstr "Oldal élőlába - húzzon rögzített szövegű vezérlőmezőket az Oldal élőlába területre" #. GbMdT #: rep_main.xhp @@ -12343,7 +12343,7 @@ "par_id5857112\n" "help.text" msgid "To insert an additional Report Header and Report Footer area choose Edit - Insert Report Header/Footer. These areas contain text that appears at the start and end of the whole report." -msgstr "" +msgstr "További Jelentésfej és Jelentésláb területek beszúrásához válassza a Szerkesztés - Jelentésfej/-láb beszúrása lehetőséget. Ezek a területek olyan szövegeket tartalmaznak, amelyek a teljes jelentés elején és végén jelennek meg." #. cvEuz #: rep_main.xhp @@ -12352,7 +12352,7 @@ "par_id6042664\n" "help.text" msgid "Click the \"-\" icon in front of an area name to collapse that area to one line in the Report Builder view. The \"-\" icon changes to a \"+\" icon, and you can click this to expand the area again." -msgstr "" +msgstr "Kattintson a terület neve előtti \"-\" ikonra a terület egysorossá bezárásához a Jelentéstervező nézetben. A \"-\" ikon \"+\" ikonra változik, és rákattintva a terület ismét kinyitható." #. NCMdn #: rep_main.xhp @@ -12361,7 +12361,7 @@ "par_id1589098\n" "help.text" msgid "You insert database fields by drag-and-drop into the Detail area. See the section \"To insert fields into the report\" below." -msgstr "" +msgstr "Az adatbázismezőket a fogd és vidd technikával szúrhatja ben a Részletek nézetbe. Lásd az alábbi \"Mezők beszúrása a jelentésbe\" szakaszt." #. 3dx6B #: rep_main.xhp @@ -12370,7 +12370,7 @@ "par_id1278420\n" "help.text" msgid "In addition, you can click the Label Field or Text Box icon in the toolbar, then drag a rectangle in the Page Header or Page Footer area, to define a text that is the same on all pages. You enter the text in the Label box of the corresponding Properties window. You can also add graphics by using the Graphics icon." -msgstr "" +msgstr "Ezen kívül kattinthat a Címkemező vagy a Szövegmező eszköztárikonokra, majd húzhat egy téglalapot az Oldal élőfej vagy Oldal élőlába területen egy olyan szöveg megadásához, amely minden oldalon azonos. A szöveget a megfelelő Tulajdonságok ablak Címke mezőjébe írhatja be. Képet is hozzáadhat a Kép ikon segítségével." #. 25GDr #: rep_main.xhp @@ -12379,7 +12379,7 @@ "par_id7479476\n" "help.text" msgid "To connect the report to a database table" -msgstr "" +msgstr "A jelentést csatlakoztatásához egy adatbázistáblához" #. TuFVF #: rep_main.xhp @@ -12388,7 +12388,7 @@ "par_id2218390\n" "help.text" msgid "Move the mouse to the Properties view. You see two tab pages General and Data." -msgstr "" +msgstr "Vigye az egeret a Tulajdonságok nézetre. Két panellap látható itt, az Általános és az Adatok." #. WdBn9 #: rep_main.xhp @@ -12397,7 +12397,7 @@ "par_id7771538\n" "help.text" msgid "On the Data tab page, click Content to open the combo box." -msgstr "" +msgstr "Az Adatok panellapon kattintson a Tartalom elemre a kombinált lista megnyitásához." #. UKbEt #: rep_main.xhp @@ -12406,7 +12406,7 @@ "par_id366527\n" "help.text" msgid "Select the table for that you want to create the report." -msgstr "" +msgstr "Jelölje ki a táblát, amelyhez jelentést kíván létrehozni." #. NzJzg #: rep_main.xhp @@ -12415,7 +12415,7 @@ "par_id7996459\n" "help.text" msgid "After selecting the table, press the Tab key to leave the Content box." -msgstr "" +msgstr "A tábla kijelölése után nyomja meg a Tabulátor billentyűt a Tartalom terület elhagyásához." #. vmDAS #: rep_main.xhp @@ -12433,7 +12433,7 @@ "par_id7657399\n" "help.text" msgid "Select two or more objects and click this icon to align the objects at the left margin of the area." -msgstr "" +msgstr "Jelöljön ki két vagy több objektumot, és kattintson erre az ikonra az objektumok a terület bal oldali margójához igazítására." #. BqG3G #: rep_main.xhp @@ -12442,7 +12442,7 @@ "par_id8925138\n" "help.text" msgid "Select two or more objects and click this icon to align the objects at the right margin of the area." -msgstr "" +msgstr "Jelöljön ki két vagy több objektumot, és kattintson erre az ikonra az objektumok a terület jobb oldali margójához igazítására." #. UcCYH #: rep_main.xhp @@ -12451,7 +12451,7 @@ "par_id5461897\n" "help.text" msgid "Select two or more objects and click this icon to align the objects at the top margin of the area." -msgstr "" +msgstr "Jelöljön ki két vagy több objektumot, és kattintson erre az ikonra az objektumok a terület felső margójához igazítására." #. gDxeY #: rep_main.xhp @@ -12460,7 +12460,7 @@ "par_id8919339\n" "help.text" msgid "Select two or more objects and click this icon to align the objects at the bottom margin of the area." -msgstr "" +msgstr "Jelöljön ki két vagy több objektumot, és kattintson erre az ikonra az objektumok a terület alsó margójához igazítására." #. nNfGG #: rep_main.xhp @@ -12469,7 +12469,7 @@ "par_id4634235\n" "help.text" msgid "Select two or more objects and click this icon to resize the objects to the smallest width." -msgstr "" +msgstr "Jelöljön ki két vagy több objektumot, és kattintson erre az ikonra az objektumok legkisebb szélességre méretezéséhez." #. GuD9F #: rep_main.xhp @@ -12478,7 +12478,7 @@ "par_id1393475\n" "help.text" msgid "Select two or more objects and click this icon to resize the objects to the smallest height." -msgstr "" +msgstr "Jelöljön ki két vagy több objektumot, és kattintson erre az ikonra az objektumok legkisebb magasságra méretezéséhez." #. NAFEu #: rep_main.xhp @@ -12487,7 +12487,7 @@ "par_id6571550\n" "help.text" msgid "Select two or more objects and click this icon to resize the objects to the greatest width." -msgstr "" +msgstr "Jelöljön ki két vagy több objektumot, és kattintson erre az ikonra az objektumok legnagyobb szélességre méretezéséhez." #. ssdFE #: rep_main.xhp @@ -12496,7 +12496,7 @@ "par_id5376140\n" "help.text" msgid "Select two or more objects and click this icon to resize the objects to the greatest height." -msgstr "" +msgstr "Jelöljön ki két vagy több objektumot, és kattintson erre az ikonra az objektumok legnagyobb magasságra méretezéséhez." #. yLQm4 #: rep_main.xhp @@ -12505,7 +12505,7 @@ "par_id9611499\n" "help.text" msgid "Inserts a horizontal line to the current area." -msgstr "" +msgstr "Vízszintes vonalat ad hozzá az aktuális területhez." #. XVFTm #: rep_main.xhp @@ -12514,7 +12514,7 @@ "par_id6765953\n" "help.text" msgid "Inserts a vertical line to the current area." -msgstr "" +msgstr "Függőleges vonalat ad hozzá az aktuális területhez." #. 5gYXB #: rep_main.xhp @@ -12523,7 +12523,7 @@ "par_id0409200922242612\n" "help.text" msgid "Shrinks the selected section to remove top and bottom empty space." -msgstr "" +msgstr "Összezsugorítja a kijelölt szakaszt a felső és az alsó üres helyek eltávolításával." #. K9bij #: rep_main.xhp @@ -12532,7 +12532,7 @@ "par_id0409200922242617\n" "help.text" msgid "Shrinks the selected section to remove top empty space." -msgstr "" +msgstr "Összezsugorítja a kijelölt szakaszt a felső üres hely eltávolításával." #. S4vSt #: rep_main.xhp @@ -12541,7 +12541,7 @@ "par_id0409200922242661\n" "help.text" msgid "Shrinks the selected section to remove bottom empty space." -msgstr "" +msgstr "Összezsugorítja a kijelölt szakaszt az alsó üres hely eltávolításával." #. bFTYS #: rep_main.xhp @@ -12550,7 +12550,7 @@ "par_id1511581\n" "help.text" msgid "After inserting fields in the Detail view, the report is ready for execution." -msgstr "" +msgstr "A mezők beszúrása után a Részletek nézetbe a jelentés készen áll a végrehajtásra." #. j9t2k #: rep_main.xhp @@ -12559,7 +12559,7 @@ "par_id4881740\n" "help.text" msgid "To execute a report" -msgstr "" +msgstr "Egy jelentés végrehajtásához" #. FtAeF #: rep_main.xhp @@ -12568,7 +12568,7 @@ "par_id8286385\n" "help.text" msgid "Click the Execute Report icon on the toolbar." -msgstr "" +msgstr "Kattintson a Jelentés végrehajtása ikonra az eszköztáron" #. QxSrq #: rep_main.xhp @@ -12577,7 +12577,7 @@ "par_id341642784887818\n" "help.text" msgid "Execute Report icon" -msgstr "" +msgstr "Jelentés végrehajtása ikon" #. FRApC #: rep_main.xhp @@ -12586,7 +12586,7 @@ "par_id71642784887822\n" "help.text" msgid "Execute Report icon" -msgstr "" +msgstr "Jelentés végrehajtása ikon" #. EbwoS #: rep_main.xhp @@ -12595,7 +12595,7 @@ "par_id2354197\n" "help.text" msgid "A Writer document opens and shows the report you have created, which contains all values of the database table which you have insert." -msgstr "" +msgstr "Megnyílik egy Writer-dokumentum, és megjelenik a létrehozott jelentés, amely az adatbázistáblából beszúrt minden értéket tartalmaz." #. CCUrN #: rep_main.xhp @@ -12604,7 +12604,7 @@ "par_id2485122\n" "help.text" msgid "If the database contents did change, execute the report again to update the result report." -msgstr "" +msgstr "Ha az adatbázis tartalma megváltozik, hajtsa végre újra a jelentést a jelentés eredményének frissítéséhez." #. XrBwB #: rep_main.xhp @@ -12613,7 +12613,7 @@ "hd_id8746910\n" "help.text" msgid "To edit a report" -msgstr "" +msgstr "Egy jelentés szerkesztéséhez" #. GinFd #: rep_main.xhp @@ -12622,7 +12622,7 @@ "par_id9636524\n" "help.text" msgid "First decide if you want to edit the generated report, which is a static Writer document, or if you want to edit the Report Builder view and then generate a new report based on the new design." -msgstr "" +msgstr "Először döntse el, hogy a generált jelentést akarja-e szerkeszteni, amely egy statikus Writer-dokumentum, vagy a Jelentéstervező-nézetet akarja szerkeszteni, majd az új terven alapuló új jelentést generálni." #. awMUn #: rep_main.xhp @@ -12631,7 +12631,7 @@ "par_id5941648\n" "help.text" msgid "The Writer document is opened read-only. To edit the Writer document, click Edit Document on the information bar, or choose Edit - Edit Mode." -msgstr "" +msgstr "A megnyitott Writer dokumentum csak olvasható. A Writer dokumenum szerkesztéséhez kattintson a Dokumentum szerkesztése lehetőségre az információs sávon, vagy válassza a Szerkesztés – Szerkesztőmód menüelemet." #. G2dAA #: rep_main.xhp @@ -12640,7 +12640,7 @@ "par_id8307138\n" "help.text" msgid "If you want to edit the Report Builder view, you can change some of its properties." -msgstr "" +msgstr "Ha szerkeszteni szeretné a Jelentéstervező nézetet, egyes tulajdonságait módosíthatja." #. XYvED #: rep_main.xhp @@ -12649,7 +12649,7 @@ "par_id7138889\n" "help.text" msgid "Click in the Details area. Then in the Properties window, change some properties, for example the background color." -msgstr "" +msgstr "Kattintson a Részletek területre. Ezután a Tulajdonságok ablakban módosítson egy-két tulajdonságot, például a háttérszínt." #. YbHaF #: rep_main.xhp @@ -12658,7 +12658,7 @@ "par_id9869380\n" "help.text" msgid "After finishing, click the Execute Report icon to create a new report." -msgstr "" +msgstr "A befejezés után kattintson a Jelentés végrehajtása ikonra egy új jelentés létrehozásához." #. h2c39 #: rep_main.xhp @@ -12667,7 +12667,7 @@ "par_id12512\n" "help.text" msgid "If you close the Report Builder, you will be asked if the report should be saved. Click Yes, give the report a name, and click OK." -msgstr "" +msgstr "Ha bezárja a Jelentéstervezőt, a program megkérdezi, hogy mentse-e a jelentést. Ha az Igen lehetőséget választja, adja meg a jelentés nevét, majd kattintson az OK gombra." #. T8vuS #: rep_main.xhp @@ -12676,7 +12676,7 @@ "par_id2676168\n" "help.text" msgid "Sorting the report" -msgstr "" +msgstr "A jelentés rendezése" #. Cg7RE #: rep_main.xhp @@ -12685,7 +12685,7 @@ "par_id2626422\n" "help.text" msgid "Without sorting or grouping, the records will be inserted into the report in the order in which they are retrieved from the database." -msgstr "" +msgstr "A rendezés és csoportosítás nélkül a rekordok abban a sorrendben lesznek beszúrva a jelentésbe, amilyenben lekérdeződtek az adatbázisból." #. ZgBCK #: rep_main.xhp @@ -12694,7 +12694,7 @@ "par_id1743827\n" "help.text" msgid "Open the Report Builder view and click the Sorting and Grouping icon on the toolbar. You see the Sorting and Grouping dialog." -msgstr "" +msgstr "Nyissa meg a Jelentéstervező nézetet, és kattintson az eszköztáron a Rendezés és csoportosítás ikonra. Megjelenik a Rendezés és csoportosítás párbeszédablak." #. rZjJB #: rep_main.xhp @@ -12703,7 +12703,7 @@ "par_id241642785406292\n" "help.text" msgid "Icon Sort and Grouping" -msgstr "" +msgstr "Rendezés és csoportosítás ikon" #. EcCrC #: rep_main.xhp @@ -12712,7 +12712,7 @@ "par_id81642785406296\n" "help.text" msgid "Icon Sort and Grouping" -msgstr "" +msgstr "Rendezés és csoportosítás ikon" #. 35NvQ #: rep_main.xhp @@ -12721,7 +12721,7 @@ "par_id4331797\n" "help.text" msgid "In the Groups box, click the field which you want as the first sort field, and set the Sorting property." -msgstr "" +msgstr "A Csoportok területen kattintson arra a mezőre, amelyet az első rendezési mezőnek szán, és állítsa be a Rendezés tulajdonságot." #. heWc5 #: rep_main.xhp @@ -12730,7 +12730,7 @@ "par_id4191717\n" "help.text" msgid "Execute the report." -msgstr "" +msgstr "Hajtsa végre a jelentést." #. FoAAB #: rep_main.xhp @@ -12739,7 +12739,7 @@ "par_id2318796\n" "help.text" msgid "Grouping" -msgstr "" +msgstr "Csoportosítás" #. gBGNE #: rep_main.xhp @@ -12748,7 +12748,7 @@ "par_id399182\n" "help.text" msgid "Open the Report Builder view and click the Sorting and Grouping icon on the toolbar. You see the Sorting and Grouping dialog." -msgstr "" +msgstr "Nyissa meg a Jelentéstervező nézetet, és kattintson az eszköztáron a Rendezés és csoportosítás ikonra. Megjelenik a Rendezés és csoportosítás párbeszédablak." #. zfuDw #: rep_main.xhp @@ -12757,7 +12757,7 @@ "par_id7588732\n" "help.text" msgid "In the Groups box, open the Group Header list box and select to show a group header." -msgstr "" +msgstr "A Csoportok területen nyissa meg a Csoportfejléc listát, és jelölje be a csoportfejléc megjelenítését." #. 6BQtB #: rep_main.xhp @@ -12766,7 +12766,7 @@ "par_id95828\n" "help.text" msgid "Click the Add Field icon to open the Add Field window." -msgstr "" +msgstr "Kattintson a Mező hozzáadása ikonra a Mező hozzáadása ablak megnyitásához." #. VbSz2 #: rep_main.xhp @@ -12775,7 +12775,7 @@ "par_id911642785710911\n" "help.text" msgid "Icon Add Field" -msgstr "" +msgstr "Mező hozzáadása ikon" #. CKwKa #: rep_main.xhp @@ -12784,7 +12784,7 @@ "par_id831642785710915\n" "help.text" msgid "Icon Add Field" -msgstr "" +msgstr "Mező hozzáadása ikon" #. WyQ6C #: rep_main.xhp @@ -12793,7 +12793,7 @@ "par_id5675527\n" "help.text" msgid "Drag-and-drop the field entry that you want to group into the group header section. Then drag-and-drop the remaining fields into the Detail section." -msgstr "" +msgstr "Húzza a csoportfejléc szakaszba azt a mezőelemet, amelyet csoportosítani akar. A többi mezőt húzza a Részletek szakaszba." #. GscG2 #: rep_main.xhp @@ -12802,7 +12802,7 @@ "par_id3496200\n" "help.text" msgid "Execute the report. The report shows the grouped records." -msgstr "" +msgstr "Hajtsa végre a jelentést. A jelentésben megjelennek a csoportosított rekordok." #. dLiAY #: rep_main.xhp @@ -12811,7 +12811,7 @@ "par_id7599108\n" "help.text" msgid "If you like to sort and group, open the Report Builder view, then open the Sorting and Grouping dialog. Select to show a Group Header for the fields that you want to group, and select to hide the Group Header for the fields that you want to be sorted. Close the Sorting and Grouping window and execute the report." -msgstr "" +msgstr "Ha rendezni és csoportosítani szeretne, nyissa meg a Jelentéstervező nézetet, majd nyissa meg a Rendezés és csoportosítás párbeszédablakot. Jelölje be, hogy a csoportosítani kívánt mezőkhöz csoportfejléc jelenjen meg, és jelölje be a csoportfejléc elrejtését a rendezni kívánt mezőkhöz. Zárja be a Rendezés és csoportosítás párbeszédablakot, majd hajtsa végre a jelentést." #. WGFAC #: rep_main.xhp @@ -12820,7 +12820,7 @@ "par_id888698\n" "help.text" msgid "Updating and printing your data" -msgstr "" +msgstr "Adatok frissítése és nyomtatása" #. 9CfYU #: rep_main.xhp @@ -12829,7 +12829,7 @@ "par_id3394573\n" "help.text" msgid "When you insert some new data or edit data in the table, a new report will show the updated data." -msgstr "" +msgstr "Amikor új adatokat szúr be, vagy szerkeszti az adatokat a táblában, egy új jelentés a frissített adatokat fogja megjeleníteni." #. WBEpS #: rep_main.xhp @@ -12838,7 +12838,7 @@ "par_id7594225\n" "help.text" msgid "Click the Reports icon and double-click your last saved report. A new Writer document will be created which shows the new data." -msgstr "" +msgstr "Kattintson a Jelentések ikonra, és kattintson duplán a legutóbb elmentett jelentésre. Egy új Writer dokumentum jön létre, amely az új adatokat mutatja." #. UFpr2 #: rep_main.xhp @@ -12847,7 +12847,7 @@ "par_id191642785888796\n" "help.text" msgid "Icon Reports" -msgstr "" +msgstr "Jelentések ikon" #. DseWN #: rep_main.xhp @@ -12856,7 +12856,7 @@ "par_id701642785888800\n" "help.text" msgid "Icon Reports" -msgstr "" +msgstr "Jelentések ikon" #. Kp54P #: rep_main.xhp @@ -12865,7 +12865,7 @@ "par_id8147221\n" "help.text" msgid "To print a report, choose File - Print from the Writer document." -msgstr "" +msgstr "A jelentés kinyomtatásához válassza a Fájl - Nyomtatás lehetőséget a Writer-dokumentumban." #. AnAta #: rep_navigator.xhp @@ -12874,7 +12874,7 @@ "tit\n" "help.text" msgid "Report Navigator" -msgstr "" +msgstr "Jelentésnavigátor" #. 6utJF #: rep_navigator.xhp @@ -12883,7 +12883,7 @@ "bm_id5823847\n" "help.text" msgid "formulas in reports;editingfunctions in reports;editing" -msgstr "" +msgstr "képletek jelentésekben;szerkesztésfüggvények jelentésekben;szerkesztés" #. ruhgL #: rep_navigator.xhp @@ -12892,7 +12892,7 @@ "hd_id1821955\n" "help.text" msgid "Report Navigator" -msgstr "" +msgstr "Jelentésnavigátor" #. 7hD99 #: rep_navigator.xhp @@ -12901,7 +12901,7 @@ "par_id1150852\n" "help.text" msgid "You can open the Report Navigator window of the Report Builder by choosing View - Report Navigator." -msgstr "" +msgstr "A Jelentéstervező Jelentésnavigátor ablaka a Nézet - Jelentésnavigátor menüparancs segítségével nyitható meg." #. hBVny #: rep_navigator.xhp @@ -12910,7 +12910,7 @@ "par_id1111484\n" "help.text" msgid "The Report Navigator reveals the structure of the report. You can use the Report Navigator to insert functions into the report." -msgstr "" +msgstr "A Jelentésnavigátor felfedi a jelentés szerkezetét. A Jelentésnavigátor függvények jelentésbe való beszúrására is használható." #. LJxNC #: rep_navigator.xhp @@ -12919,7 +12919,7 @@ "par_id8314157\n" "help.text" msgid "Click an entry in the Report Navigator. The corresponding object or area is selected in the Report Builder view. Right-click an entry to open the context menu." -msgstr "" +msgstr "Kattintson egy elemre a Jelentésnavigátorban. A megfelelő objektum vagy terület kijelölődik a Jelentéstervező nézetben. Kattintson jobb gombbal egy elemen a helyi menü megnyitásához." #. prLAV #: rep_navigator.xhp @@ -12928,7 +12928,7 @@ "hd_id2932828\n" "help.text" msgid "To enter functions to the report" -msgstr "" +msgstr "Függvények beírásához a jelentésbe" #. CSJFz #: rep_navigator.xhp @@ -12937,7 +12937,7 @@ "par_id5091708\n" "help.text" msgid "In the context menu of the Report Navigator, you see the same commands as in the Report Builder view, plus additional commands to create new functions or to delete them." -msgstr "" +msgstr "A Jelentésnavigátor helyi menüjében ugyanazokat a parancsokat találja, mint a Jelentéstervező nézetben, valamint további parancsokat új függvények létrehozásához és törléséhez." #. TVyh8 #: rep_navigator.xhp @@ -12964,7 +12964,7 @@ "hd_id311593\n" "help.text" msgid "To calculate a sum for each client" -msgstr "" +msgstr "Az egyes ügyfelek összegének kiszámítása" #. zGU9C #: rep_navigator.xhp @@ -12973,7 +12973,7 @@ "par_id3948789\n" "help.text" msgid "Open the Report Navigator." -msgstr "" +msgstr "Nyissa meg a Jelentésnavigátort." #. FSYuv #: rep_navigator.xhp @@ -12982,7 +12982,7 @@ "par_id5391399\n" "help.text" msgid "Open the Groups entry and the group where you want to calculate the cost." -msgstr "" +msgstr "Nyissa meg a Csoportok bejegyzést és a csoportot, ahol ki akarja számítani a költséget." #. bP94U #: rep_navigator.xhp @@ -12991,7 +12991,7 @@ "par_id6989654\n" "help.text" msgid "The group has a sub entry called functions." -msgstr "" +msgstr "A csoport rendelkezik egy Függvények albejegyzéssel." #. FbfyS #: rep_navigator.xhp @@ -13000,7 +13000,7 @@ "par_id1803643\n" "help.text" msgid "Open the context menu (right click) on the functions entry, choose to create a new function, and select it." -msgstr "" +msgstr "Nyissa meg a helyi menüt (jobb kattintás) függvénybejegyzésen, és válassza az új függvény létrehozását." #. hTbw9 #: rep_navigator.xhp @@ -13009,7 +13009,7 @@ "par_id868251\n" "help.text" msgid "In the property browser you see the function." -msgstr "" +msgstr "A tulajdonságböngészőben megjelenik a függvény." #. KBn87 #: rep_navigator.xhp @@ -13018,7 +13018,7 @@ "par_id6247749\n" "help.text" msgid "Change the name to e.g. CostCalc and the formula to [CostCalc] + [enter your cost column name]." -msgstr "" +msgstr "Módosítsa a nevet például KltsSzámra, és a képletet a következőre: [KltsSzám] + [adja meg a költségoszlop nevét]." #. y2cwk #: rep_navigator.xhp @@ -13027,7 +13027,7 @@ "par_id1565904\n" "help.text" msgid "In the initial value enter 0." -msgstr "" +msgstr "A kezdeti értékben adjon meg 0-t." #. RkdrZ #: rep_navigator.xhp @@ -13036,7 +13036,7 @@ "par_id1569261\n" "help.text" msgid "Now you can insert a text field and bind it to your [CostCalc] (appears in the data field list box)." -msgstr "" +msgstr "Most már beszúrhat egy szövegmezőt, és hozzákötheti a [KltsSzám] mezőhöz (az adatmezők listájában jelenik meg)." #. utdSG #: rep_navigator.xhp @@ -13045,7 +13045,7 @@ "par_id9256874\n" "help.text" msgid "Maybe you have to set the initial value to the value of the field like [field]." -msgstr "" +msgstr "Előfordulhat, hogy a kezdeti értéket a mező értékére kell állítania: [mező]." #. Hp4tF #: rep_navigator.xhp @@ -13054,7 +13054,7 @@ "par_id4601886\n" "help.text" msgid "If there are blank fields in the cost column, use the following formula to replace the blank fields' content with zero:" -msgstr "" +msgstr "Ha üres mezők találhatók a költségoszlopban, akkor használja a következő képletet az üres mezők tartalmának nullára való lecseréléséhez:" #. Dzpam #: rep_navigator.xhp @@ -13063,7 +13063,7 @@ "par_id1754509\n" "help.text" msgid "[SumCost] + IF(ISBLANK([field]);0;[field])" -msgstr "" +msgstr "[KltsSzám] + HA(ÜRES([mező]);0;[mező])" #. tGCiz #: rep_navigator.xhp @@ -13072,7 +13072,7 @@ "par_id8122196\n" "help.text" msgid "Enter the formula that defines the function. Use OpenFormula syntax." -msgstr "" +msgstr "Írja be a függvényt definiáló képletet. Használja az OpenFormula szintaxist." #. mTZGY #: rep_navigator.xhp @@ -13081,7 +13081,7 @@ "par_id9909665\n" "help.text" msgid "Enter the initial value for the evaluation of the formula. Often this is set to 0 or to 1." -msgstr "" +msgstr "Írja be a képlet kiértékelésének kiinduló értékét. Ez gyakran 0 vagy 1." #. qEtTN #: rep_navigator.xhp @@ -13090,7 +13090,7 @@ "par_id9141819\n" "help.text" msgid "If Deep traversing is enabled, functions are evaluated considering all lower levels of hierarchy. This would be used for instance for line numbering. If Deep traversing is not enabled, only the first level of hierarchy is evaluated." -msgstr "" +msgstr "Ha engedélyezi a Mélyre hatolást lehetőséget, akkor a függvények kiértékelése a hierarchia összes mélyebben fekvő szintjének figyelembe vételével történik. Ez például sorok számozásánál használatos. Ha a mélyre hatolás nem engedélyezett, csak a hierarchia első szintje lesz kiértékelve." #. XGkHa #: rep_navigator.xhp @@ -13099,7 +13099,7 @@ "par_id6354869\n" "help.text" msgid "If Pre evaluation is enabled, functions are evaluated only when the report is finished." -msgstr "" +msgstr "Ha engedélyezi a Kiértékelés előtt lehetőséget, akkor a függvények kiértékelése csak a jelentés végén történik meg." #. nNgrq #: rep_pagenumbers.xhp @@ -13108,7 +13108,7 @@ "tit\n" "help.text" msgid "Page Numbers" -msgstr "" +msgstr "Oldalszámok" #. nTPmB #: rep_pagenumbers.xhp @@ -13117,7 +13117,7 @@ "hd_id3674123\n" "help.text" msgid "Page Numbers" -msgstr "" +msgstr "Oldalszámok" #. oPnyT #: rep_pagenumbers.xhp @@ -13126,7 +13126,7 @@ "par_id3424481\n" "help.text" msgid "You can open the Page Numbers dialog of the Report Builder by choosing Insert - Page Numbers." -msgstr "" +msgstr "A Jelentéstervező Oldalszámok párbeszédablakának megnyitásához válassza a Beszúrás - Oldalszámok lehetőséget." #. ygaGw #: rep_pagenumbers.xhp @@ -13135,7 +13135,7 @@ "par_id1068758\n" "help.text" msgid "Press Shift-F1 and point with the mouse at an input box to see a help text for this input box." -msgstr "" +msgstr "Nyomja meg a Shift+F1 billentyűkombinációt, vigye az egeret egy beviteli mező fölé a beviteli mező súgószövegének megtekintéséhez." #. Cz9Sk #: rep_pagenumbers.xhp @@ -13144,7 +13144,7 @@ "par_id1559190\n" "help.text" msgid "Page N" -msgstr "" +msgstr "N. oldal" #. rcaDS #: rep_pagenumbers.xhp @@ -13153,7 +13153,7 @@ "par_id9879146\n" "help.text" msgid "Page N of M" -msgstr "" +msgstr "N/M. oldal" #. tDDwG #: rep_pagenumbers.xhp @@ -13162,7 +13162,7 @@ "par_id9404278\n" "help.text" msgid "Top of Page (Header)" -msgstr "" +msgstr "Oldal teteje (élőfej)" #. dvqcL #: rep_pagenumbers.xhp @@ -13171,7 +13171,7 @@ "par_id7626880\n" "help.text" msgid "Bottom of Page (Footer)" -msgstr "" +msgstr "Oldal alja (élőláb)" #. XRZPh #: rep_pagenumbers.xhp @@ -13180,7 +13180,7 @@ "par_id6124149\n" "help.text" msgid "Alignment" -msgstr "" +msgstr "Igazítás" #. horox #: rep_pagenumbers.xhp @@ -13189,7 +13189,7 @@ "par_id8257087\n" "help.text" msgid "Select the format for the page numbers, either \"Page N\" or \"Page N of M\", where N stands for the current page number, and M for the total number of pages in the report." -msgstr "" +msgstr "Jelölje ki az oldalszámformátumot, vagy \"N. oldal\" vagy \"N/M. oldal\", ahol N az aktuális oldalszám, és M a jelentés összes oldalainak száma." #. 84Dct #: rep_pagenumbers.xhp @@ -13198,7 +13198,7 @@ "par_id3479415\n" "help.text" msgid "Select to show the page numbers in the Page Header area or in the Page Footer area." -msgstr "" +msgstr "Jelölje be az oldalszámok megjelenítéséhez az Oldal élőfeje és Oldal élőlába területen." #. GxdrQ #: rep_pagenumbers.xhp @@ -13207,7 +13207,7 @@ "par_id4441663\n" "help.text" msgid "Select an alignment. By default the page numbers are centered between the left and right margins. You can align the field to the left or right. You can also select Inside to print page number on odd pages on the left side and even page numbers on the right side. Select Outside for the opposite alignment." -msgstr "" +msgstr "Válassza ki az igazítást. Alapértelmezés szerint az oldalszámok a jobb és bal margó között középen helyezkednek el. A mezőt jobbra vagy balra is igazíthatja. Választhatja a Belül lehetőséget is, ekkor az oldalszámok páratlan oldalaknál balra, páros oldalaknál jobbra kerülnek. A Kívül lehetőség pont fordított igazítást eredményez." #. MJV32 #: rep_pagenumbers.xhp @@ -13216,7 +13216,7 @@ "par_id3012176\n" "help.text" msgid "When you click OK, a data field for the page numbers is inserted. If no header or footer area exist, the area will be created as needed." -msgstr "" +msgstr "Ha az OK gombra kattint, beszúrásra kerül az oldalszámok adatmezője. Ha nincs élőfej vagy élőláb terület, a terület szükség szerint létrejön." #. 6QnRv #: rep_pagenumbers.xhp @@ -13225,7 +13225,7 @@ "par_id8532670\n" "help.text" msgid "You can click the data field and drag to another position within the same area, or edit the properties in the Properties window." -msgstr "" +msgstr "Kattinthat a dátum mezőn, és azonos területen belül más helyre húzhatja, vagy szerkesztheti a tulajdonságait a Tulajdonságok ablakban." #. 7uNv6 #: rep_prop.xhp @@ -13234,7 +13234,7 @@ "tit\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Tulajdonságok" #. CEY5D #: rep_prop.xhp @@ -13243,7 +13243,7 @@ "hd_id8836939\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Tulajdonságok" #. yQEzY #: rep_prop.xhp @@ -13252,7 +13252,7 @@ "par_id2711264\n" "help.text" msgid "The Properties window of the Report Builder always shows the properties of the currently selected object in the Report Builder view." -msgstr "" +msgstr "A Jelentéstervező Tulajdonságok ablaka mindig a Jelentéstervező nézetben éppen kijelölt objektum tulajdonságait mutatja." #. hiDZo #: rep_prop.xhp @@ -13261,7 +13261,7 @@ "par_id1080660\n" "help.text" msgid "Press Shift-F1 and point with the mouse at an input box to see a help text for this input box." -msgstr "" +msgstr "Nyomja meg a Shift-F1 billentyűkombinációt, vigye az egeret egy beviteli mező fölé a beviteli mező súgószövegének megtekintéséhez." #. WFv9q #: rep_prop.xhp @@ -13270,7 +13270,7 @@ "par_id7175817\n" "help.text" msgid "On first start of the Report Builder, the Properties window shows the Data tab page for the whole report." -msgstr "" +msgstr "A Jelentéstervező első megnyitásakor a Tulajdonságok ablakban a teljes jelentéshez tartozó Adatok panellap jelenik meg." #. khEAx #: rep_prop.xhp @@ -13279,7 +13279,7 @@ "par_id9895931\n" "help.text" msgid "Select a table from the Contents list, then press Tab or click outside the input box to leave the input box." -msgstr "" +msgstr "Jelöljön ki egy táblázatot a Tartalom listából, majd nyomja meg a Tabulátor billentyűt, vagy kattintson a beviteli mezőn kívülre a beviteli mező elhagyásához." #. krzKx #: rep_prop.xhp @@ -13297,7 +13297,7 @@ "par_id6993926\n" "help.text" msgid "The General tab page can be used to change the name of the report, and to disable the Page Header or Page Footer areas, among others." -msgstr "" +msgstr "Az Általános panellap a többek között a jelentés nevének módosítására, valamint az oldal élőfejének és élőlábának tiltására szolgál." #. eGuih #: rep_prop.xhp @@ -13306,7 +13306,7 @@ "par_id3729361\n" "help.text" msgid "To display the Data or General tab page for the whole report, choose Edit - Select All - Select Report." -msgstr "" +msgstr "Az Adatok vagy Általános lapoldal megjelenítéséhez a teljes jelentéshez, válassza a Szerkesztés – Összes kiválasztása – Jelentés kiválasztása menüelemet." #. r4tre #: rep_prop.xhp @@ -13315,7 +13315,7 @@ "par_id1768852\n" "help.text" msgid "Groups are kept together by page or by column (default). You must enable Keep Together also." -msgstr "" +msgstr "A csoportok oldalanként vagy hasábonként (alapértelmezett) vannak összetartva. Engedélyeznie kell az Együtt tartás lehetőséget is." #. PFQYf #: rep_prop.xhp @@ -13324,7 +13324,7 @@ "par_id6304818\n" "help.text" msgid "Specifies in which context the page header will be printed: on all pages, or not on pages with a report header or footer." -msgstr "" +msgstr "Megadja, hogy milyen környezetben nyomtatódjon ki az oldal élőfeje: minden oldalon, vagy a jelentésfejet vagy jelentéslábat tartalmazó oldalakon ne" #. 9rAVD #: rep_prop.xhp @@ -13333,7 +13333,7 @@ "par_id401623\n" "help.text" msgid "Specifies in which context the page footer will be printed: on all pages, or not on pages with a report header or footer" -msgstr "" +msgstr "Megadja, hogy milyen környezetben nyomtatódjon ki az oldal élőlába: minden oldalon, vagy a jelentésfejet vagy jelentéslábat tartalmazó oldalakon ne" #. rMRex #: rep_prop.xhp @@ -13342,7 +13342,7 @@ "par_id2162236\n" "help.text" msgid "Specifies to print repeated values." -msgstr "" +msgstr "Megadja, hogy az ismétlődő értékek is nyomtatódjanak." #. nCDvW #: rep_prop.xhp @@ -13351,7 +13351,7 @@ "par_id7022003\n" "help.text" msgid "If you click the Page Header or Page Footer area without selecting any object, you see the General tab page for that area." -msgstr "" +msgstr "Ha objektum kijelölése nélkül kattint az Oldal élőfeje vagy Oldal élőlába területre, megjelenik a terület Általános panellapja." #. xACk2 #: rep_prop.xhp @@ -13360,7 +13360,7 @@ "par_id7004303\n" "help.text" msgid "You can edit some visual properties for the area." -msgstr "" +msgstr "Beállíthatja a terület egyes vizuális tulajdonságait." #. hPUHN #: rep_prop.xhp @@ -13369,7 +13369,7 @@ "par_id2561723\n" "help.text" msgid "Sets the background color for the selected object, both on screen and for printing." -msgstr "" +msgstr "A kijelölt objektum háttérszínét adja meg a képernyőn és nyomtatásban egyaránt." #. BXnJc #: rep_prop.xhp @@ -13378,7 +13378,7 @@ "par_id1064485\n" "help.text" msgid "An invisible object is not shown in the executed report. It is still visible in the Report Builder view." -msgstr "" +msgstr "A láthatatlan objektumok nem jelennek meg a végrehajtott jelentésben. A Jelentéstervező nézetben viszont látszódnak." #. Xd2SG #: rep_prop.xhp @@ -13387,7 +13387,7 @@ "par_id2356028\n" "help.text" msgid "Defines the height of the selected object." -msgstr "" +msgstr "Megadja a kijelölt objektum magasságát." #. GXpuh #: rep_prop.xhp @@ -13396,7 +13396,7 @@ "par_id1404461\n" "help.text" msgid "If the Conditional Print Expression evaluates to TRUE, the selected object will be printed." -msgstr "" +msgstr "Ha a Feltételes nyomtatási kifejezés értéke IGAZ, akkor a kijelölt objektum kinyomtatódik." #. jvkXA #: rep_prop.xhp @@ -13405,7 +13405,7 @@ "par_id7404705\n" "help.text" msgid "Specifies whether the background of the selected object is transparent or opaque." -msgstr "" +msgstr "Megadja, hogy a kijelölt objektum háttere átlátszó vagy átlátszatlan legyen." #. qgLML #: rep_prop.xhp @@ -13414,7 +13414,7 @@ "par_id7466963\n" "help.text" msgid "If you click the Detail area without selecting any object, you see the General tab page for that area." -msgstr "" +msgstr "Ha objektum kijelölése nélkül kattint a Részletek területre, megjelenik a terület Általános panellapja." #. kmEmG #: rep_prop.xhp @@ -13423,7 +13423,7 @@ "par_id3644215\n" "help.text" msgid "You can specify some properties to fine-tune the way the records are printed." -msgstr "" +msgstr "Bizonyos beállítások megadásával finomhangolhatja a rekordok nyomtatásának módját." #. cjDLx #: rep_prop.xhp @@ -13432,7 +13432,7 @@ "par_id3148899\n" "help.text" msgid "Force New Page specifies whether the current section and/or the next section is printed on a new page." -msgstr "" +msgstr "Az Új oldal kényszerítése megadja, hogy az aktuális szakasz és/vagy a következő szakasz új oldalra nyomtatódjon-e." #. CuyG2 #: rep_prop.xhp @@ -13441,7 +13441,7 @@ "par_id6164433\n" "help.text" msgid "New Row Or Column specifies, for a multi-column design, whether the current section and/or the next section will be printed on a new row or column." -msgstr "" +msgstr "Az Új sor vagy oszlop megadja, hogy egy többhasábos elrendezés esetén az aktuális szakasz és/vagy a következő szakasz új sorba vagy oszlopba nyomtatódjon-e." #. nHVy2 #: rep_prop.xhp @@ -13450,7 +13450,7 @@ "par_id7405011\n" "help.text" msgid "Keep Together specifies to print the current object starting on top of a new page if it doesn't fit on the current page." -msgstr "" +msgstr "Az Együtt tartás megadja, hogy az aktuális objektum egy új oldal tetejére nyomtatódjon ki, ha nem fér el az aktuális oldalon." #. FjNyy #: rep_prop.xhp @@ -13459,7 +13459,7 @@ "par_id1536606\n" "help.text" msgid "Insert some data fields into the Detail area, or insert other control fields into any area. When you select an inserted field, you can set the properties in the Properties window." -msgstr "" +msgstr "Szúrjon be adatmezőket a Részletek területre, vagy szúrjon be más vezérlőmezőket bármelyik területre. Ha kijelöl egy beszúrt mezőt, a tulajdonságait módosíthatja a Tulajdonságok ablakban." #. 2LAyX #: rep_prop.xhp @@ -13468,7 +13468,7 @@ "par_id9631641\n" "help.text" msgid "For a Label field, you can change the displayed text in the Label input box." -msgstr "" +msgstr "A Címke mező esetén a megjelenő szöveget a Címke beviteli mezőben módosíthatja." #. iy4M5 #: rep_prop.xhp @@ -13477,7 +13477,7 @@ "par_id7749565\n" "help.text" msgid "For a picture, you can specify to either insert the picture as a link to a file or only as an embedded object in the Base file. The embedded option increases the size of the Base file, while the link option is not as portable to other computers." -msgstr "" +msgstr "Egy kép esetén megadható, hogy a kép hivatkozásként legyen beszúrva a fájlba, vagy beágyazott objektum legyen a Base-fájlban. A beágyazott objektum megnöveli a Base-fájl méretét, a hivatkozás viszont nem annyira vihető át más számítógépekre." #. XKxxX #: rep_prop.xhp @@ -13486,7 +13486,7 @@ "par_id4041871\n" "help.text" msgid "Set the X Position for the selected object" -msgstr "" +msgstr "Adja meg a kijelölt objektum X pozícióját" #. bvgTD #: rep_prop.xhp @@ -13495,7 +13495,7 @@ "par_id9930722\n" "help.text" msgid "Set the Y Position for the selected object" -msgstr "" +msgstr "Adja meg a kijelölt objektum Y pozícióját" #. YGfo2 #: rep_prop.xhp @@ -13504,7 +13504,7 @@ "par_id5749687\n" "help.text" msgid "Sets the width of the selected object." -msgstr "" +msgstr "Beállítja a kijelölt objektum szélességét." #. pwu7Q #: rep_prop.xhp @@ -13513,7 +13513,7 @@ "par_id79348\n" "help.text" msgid "Select the font for the selected text object." -msgstr "" +msgstr "Adja meg a kijelölt szöveghez használandó betűkészletet." #. r9No9 #: rep_prop.xhp @@ -13522,7 +13522,7 @@ "par_id2414014\n" "help.text" msgid "Print when group change" -msgstr "" +msgstr "Nyomtatás ha a csoport változik" #. 25y9K #: rep_prop.xhp @@ -13531,7 +13531,7 @@ "par_id7617114\n" "help.text" msgid "Vert. Alignment" -msgstr "" +msgstr "Függ. igazítás" #. GXFDE #: rep_prop.xhp @@ -13540,7 +13540,7 @@ "par_id1593676\n" "help.text" msgid "On the General tab page of a data field, you can set the Formatting properties, among others." -msgstr "" +msgstr "Az adatmező Általános lapján többek között beállíthatja a formázási tulajdonságokat." #. LyTPo #: rep_prop.xhp @@ -13549,7 +13549,7 @@ "par_id1243629\n" "help.text" msgid "On the Data tab page, you can change the data contents to be shown." -msgstr "" +msgstr "Az Adatok panellapon módosíthatja a megjelenő adattartalmakat." #. g3CBB #: rep_sort.xhp @@ -13558,7 +13558,7 @@ "tit\n" "help.text" msgid "Sorting and Grouping" -msgstr "" +msgstr "Rendezés és csoportosítás" #. GPUqF #: rep_sort.xhp @@ -13567,7 +13567,7 @@ "hd_id3486434\n" "help.text" msgid "Sorting and Grouping" -msgstr "" +msgstr "Rendezés és csoportosítás" #. DCbhT #: rep_sort.xhp @@ -13576,7 +13576,7 @@ "par_id3068636\n" "help.text" msgid "In the Sorting and Grouping dialog of Report Builder, you can define the fields that should be sorted in your report, and the fields that should be kept together to form a group. If you group your report by a certain field, all records with the same value of that field will be kept together in one group." -msgstr "" +msgstr "A Jelentéstervező Rendezés és csoportosítás párbeszédablakán meghatározhatja azokat a mezőket, amelyeket rendezni kell a jelentésben, és a mezőket, amelyeket együtt kell tartani, mint egy csoportot. Ha a jelentést egy adott mező szerint csoportosítja, akkor minden azonos értékű ilyen mező együtt marad egy csoportban." #. KudoP #: rep_sort.xhp @@ -13585,7 +13585,7 @@ "par_id876186\n" "help.text" msgid "The Groups box shows the fields in an order from top to bottom. You can select any field, then click the Move Up or Move Down button to move this field up or down in the list." -msgstr "" +msgstr "A Csoportok területen a mezők felülről lefelé sorrendben jelennek meg. Bármelyik mezőt kijelölheti, majd a Fel vagy a Le gombokkal fel vagy le mozgathatja a mezőt a listán." #. nG4vM #: rep_sort.xhp @@ -13594,7 +13594,7 @@ "par_id3939634\n" "help.text" msgid "The sorting and grouping will be applied in the order of the list from top to bottom." -msgstr "" +msgstr "A rendezés és csoportosítás a lista sorrendjében történik felülről lefelé." #. ZAFvB #: rep_sort.xhp @@ -13603,7 +13603,7 @@ "par_id599688\n" "help.text" msgid "Lists the fields that will be used for sorting or grouping. The field at the top has the highest priority, the second field has the second priority, and so on." -msgstr "" +msgstr "Felsorolja a rendezéshez vagy a csoportosításhoz használandó mezőket. A fent levő mezőnek a legmagasabb a prioritása, a másodiknak a második a prioritása stb." #. ETyGL #: rep_sort.xhp @@ -13612,7 +13612,7 @@ "par_id1371501\n" "help.text" msgid "Click to open a list from which you can select a field." -msgstr "" +msgstr "Kattintson egy lista megnyitásához, amelyről egy mezőt jelölhet ki." #. kEwPE #: rep_sort.xhp @@ -13621,7 +13621,7 @@ "par_id4661702\n" "help.text" msgid "Moves the selected field up in the list." -msgstr "" +msgstr "A kijelölt mezőt egy hellyel feljebb helyezi a listában." #. YmDk5 #: rep_sort.xhp @@ -13630,7 +13630,7 @@ "par_id7868892\n" "help.text" msgid "Moves the selected field down in the list." -msgstr "" +msgstr "A kijelölt mezőt egy hellyel lejjebb helyezi a listában." #. amjzG #: rep_sort.xhp @@ -13639,7 +13639,7 @@ "par_id2188787\n" "help.text" msgid "Select the sorting order." -msgstr "" +msgstr "Rendezési sorrend kiválasztása:" #. bYX8p #: rep_sort.xhp @@ -13648,7 +13648,7 @@ "par_id5833307\n" "help.text" msgid "Select to show or hide the Group Header." -msgstr "" +msgstr "Megadja, hogy a Csoportfej látható vagy rejtett." #. tN76n #: rep_sort.xhp @@ -13657,7 +13657,7 @@ "par_id7726676\n" "help.text" msgid "Select to show or hide the Group Footer." -msgstr "" +msgstr "Megadja, hogy a Csoportláb látható vagy rejtett." #. Ez4dt #: rep_sort.xhp @@ -13666,7 +13666,7 @@ "par_id3729361\n" "help.text" msgid "Select to create a new group on each changed value, or on other properties." -msgstr "" +msgstr "Jelölje be, ha új csoportot akar létrehozni minden módosult értékhez vagy más tulajdonsághoz." #. bd2EW #: rep_sort.xhp @@ -13675,7 +13675,7 @@ "par_id0409200922142041\n" "help.text" msgid "Removes the selected field from the list." -msgstr "" +msgstr "Eltávolítja a kijelölt mezőt a listából." #. CjspM #: rep_sort.xhp @@ -13684,7 +13684,7 @@ "par_id3405560\n" "help.text" msgid "By default a new group is created on every changed value of a record from the selected field. You can change this property depending on the type of field:" -msgstr "" +msgstr "Alapértelmezés szerint új csoport jön létre a kijelölt mezőből származó rekord minden módosult értékénél. Ezt a tulajdonságot a mező típusától függően módosíthatja." #. DD8mt #: rep_sort.xhp @@ -13693,7 +13693,7 @@ "par_id3409527\n" "help.text" msgid "For fields of type Text, you can select Prefix Characters and enter a number n of characters in the text box below. The records which are identical in the first n characters will be grouped together." -msgstr "" +msgstr "A Szöveg típusú mezőknél kijelölheti az Előtag karaktereket, és az alatta levő szövegmezőbe beírhatja a karakterek n számát. Az első n karakterben megegyező rekordok egy csoportba kerülnek." #. DFvf2 #: rep_sort.xhp @@ -13702,7 +13702,7 @@ "par_id7112338\n" "help.text" msgid "For fields of type Date/Time, you can group the records by the same year, quarter, month, week, day, hour, or minute. You can additionally specify an interval for weeks and hours: 2 weeks groups data in biweekly groups, 12 hours groups data in half-day groups." -msgstr "" +msgstr "A Dátum/Idő típusú mezőknél a rekordok csoportosíthatók ugyanazon év, negyedév, hónap, hét, nap, óra vagy perc szerint. Ezen felül meghatározhat intervallumot a hetekhez és az órákhoz: 2 hét az adatokat kéthetes csoportokba rendezi, 12 óra az adatokat félnapos csoportokba rendezi." #. BBwXv #: rep_sort.xhp @@ -13711,7 +13711,7 @@ "par_id2855616\n" "help.text" msgid "For fields of type AutoNumber, Currency, or Number, you specify an interval." -msgstr "" +msgstr "Az AutoSzám, Pénznem vagy Szám mezőtípusokhoz megadhatja az intervallumot." #. mjbMU #: rep_sort.xhp @@ -13720,7 +13720,7 @@ "par_id7700430\n" "help.text" msgid "Enter the group interval value that records are grouped by." -msgstr "" +msgstr "Írja be a csoportintervallum értékét, ami szerint a rekordokat csoportosítani kell." #. XmWsa #: rep_sort.xhp @@ -13729,7 +13729,7 @@ "par_id1180455\n" "help.text" msgid "Select the level of detail by which a group is kept together on the same page." -msgstr "" +msgstr "Válassza ki a részletesség szintjét, amely szerint a csoportot egyben kell tartani ugyanazon az oldalon." #. KbCbd #: rep_sort.xhp @@ -13738,7 +13738,7 @@ "par_id2091433\n" "help.text" msgid "When you specify to keep together some records on the same page, you have three choices:" -msgstr "" +msgstr "Ha bizonyos rekordok ugyanazon az oldalon együtt tartását választja, három lehetősége van:" #. NnDGM #: rep_sort.xhp @@ -13747,7 +13747,7 @@ "par_id5092318\n" "help.text" msgid "No - page boundaries are not taken into account." -msgstr "" +msgstr "Nem - oldalhatárok nem lesznek figyelembe véve." #. Zmwag #: rep_sort.xhp @@ -13756,7 +13756,7 @@ "par_id9312417\n" "help.text" msgid "Whole Group - prints the group header, detail section, and group footer on the same page." -msgstr "" +msgstr "Egész csoport - a csoportfejet, a részletek szakaszt és a csoportlábat ugyanarra az oldalra nyomtatja." #. Bzv5z #: rep_sort.xhp @@ -13765,7 +13765,7 @@ "par_id9089022\n" "help.text" msgid "With First Detail - prints the group header on a page only if the first detail record also can be printed on the same page." -msgstr "" +msgstr "Első részlettel - akkor nyomtatja ki a csoportfejet az oldalra, ha az első részletrekord ugyanarra az oldalra nyomtatódik." #. eDFFK #: tablewizard00.xhp @@ -13774,7 +13774,7 @@ "tit\n" "help.text" msgid "Table Wizard" -msgstr "" +msgstr "Táblatündér" #. CU3Fy #: tablewizard00.xhp @@ -13783,7 +13783,7 @@ "bm_id6009094\n" "help.text" msgid "wizards;database tables (Base)Table Wizard (Base)" -msgstr "" +msgstr "tündérek;adatbázistáblák (Base)Táblatündér (Base)" #. TStMh #: tablewizard00.xhp @@ -13792,7 +13792,7 @@ "par_idN1054C\n" "help.text" msgid "Table Wizard" -msgstr "" +msgstr "Táblatündér" #. rBE4D #: tablewizard00.xhp @@ -13801,7 +13801,7 @@ "par_idN1055C\n" "help.text" msgid "The Table Wizard helps you to create a database table." -msgstr "" +msgstr "A Táblatündér adatbázistáblák létrehozásában segít." #. UBG57 #: tablewizard00.xhp @@ -13819,7 +13819,7 @@ "tit\n" "help.text" msgid "Table Wizard - Select Fields" -msgstr "" +msgstr "Táblatündér - Mezők kijelölése" #. ZFKJc #: tablewizard01.xhp @@ -13828,7 +13828,7 @@ "par_idN10546\n" "help.text" msgid "Table Wizard - Select Fields" -msgstr "" +msgstr "Táblatündér - Mezők kijelölése" #. 4HLFY #: tablewizard01.xhp @@ -13837,7 +13837,7 @@ "par_idN10556\n" "help.text" msgid "Select fields from the provided sample tables as a starting point to create your own table." -msgstr "" +msgstr "Kiindulásként válasszon mezőket a megadott mintatáblákból a saját tábla létrehozásához." #. csKoV #: tablewizard01.xhp @@ -13846,7 +13846,7 @@ "par_idN10559\n" "help.text" msgid "Business" -msgstr "" +msgstr "Üzleti" #. TRDAu #: tablewizard01.xhp @@ -13855,7 +13855,7 @@ "par_idN1055D\n" "help.text" msgid "Select the business category to see only business sample tables." -msgstr "" +msgstr "Válassza az üzleti kategóriát csak az üzleti mintatáblák megjelenítéséhez." #. dCJP5 #: tablewizard01.xhp @@ -13864,7 +13864,7 @@ "par_idN10560\n" "help.text" msgid "Private" -msgstr "" +msgstr "Személyes" #. 9fJfk #: tablewizard01.xhp @@ -13873,7 +13873,7 @@ "par_idN10564\n" "help.text" msgid "Select the private category to see only private sample tables." -msgstr "" +msgstr "Válassza a személyes kategóriát csak a személyes mintatáblák megjelenítéséhez." #. dEiyC #: tablewizard01.xhp @@ -13882,7 +13882,7 @@ "par_idN10567\n" "help.text" msgid "Sample tables" -msgstr "" +msgstr "Mintatáblák" #. AhZXR #: tablewizard01.xhp @@ -13891,7 +13891,7 @@ "par_idN1056B\n" "help.text" msgid "Select one of the sample tables. Then select fields from that table from the left list box. Repeat this step until you have selected all the fields that you need." -msgstr "" +msgstr "Válasszon egy mintatáblát. Azután jelöljön ki ebből a táblából mezőket a bal oldali listából. Ismételje ezt a lépést, amíg az összes szükséges mezőt ki nem jelölte." #. jJf8M #: tablewizard01.xhp @@ -13900,7 +13900,7 @@ "par_idN1059E\n" "help.text" msgid "Selected Fields" -msgstr "" +msgstr "Kijelölt mezők" #. pj8q2 #: tablewizard01.xhp @@ -13909,7 +13909,7 @@ "par_idN105A4\n" "help.text" msgid "Displays all fields that will be included in the new table." -msgstr "" +msgstr "Megjeleníti az új táblához tartozó összes mezőt." #. 4LVS2 #: tablewizard01.xhp @@ -13927,7 +13927,7 @@ "tit\n" "help.text" msgid "Table Wizard - Set Types and Formats" -msgstr "" +msgstr "Táblatündér - Típusok és formátumok beállítása" #. yC4de #: tablewizard02.xhp @@ -13936,7 +13936,7 @@ "par_idN10552\n" "help.text" msgid "Table Wizard - Set Types and Formats" -msgstr "" +msgstr "Táblatündér - Típusok és formátumok beállítása" #. r3sex #: tablewizard02.xhp @@ -13945,7 +13945,7 @@ "par_idN10562\n" "help.text" msgid "Specifies the field information for your selected fields." -msgstr "" +msgstr "Megadja a kijelölt mezők mezőinformációit." #. GmqTu #: tablewizard02.xhp @@ -13954,7 +13954,7 @@ "par_idN10565\n" "help.text" msgid "Selected fields" -msgstr "" +msgstr "Kijelölt mezők" #. 3HRfy #: tablewizard02.xhp @@ -13963,7 +13963,7 @@ "par_idN10569\n" "help.text" msgid "Select a field in order to edit the field information." -msgstr "" +msgstr "Jelöljön ki egy mezőt a mezőinformáció szerkesztéséhez." #. C6Hj6 #: tablewizard02.xhp @@ -13972,7 +13972,7 @@ "par_idN10574\n" "help.text" msgid "−" -msgstr "" +msgstr "−" #. uhA3i #: tablewizard02.xhp @@ -13981,7 +13981,7 @@ "par_idN10578\n" "help.text" msgid "Remove the selected field from the list box." -msgstr "" +msgstr "Eltávolítja a kijelölt mezőt a listából." #. bDhR7 #: tablewizard02.xhp @@ -13990,7 +13990,7 @@ "par_idN1057B\n" "help.text" msgid "+" -msgstr "" +msgstr "+" #. oRB9f #: tablewizard02.xhp @@ -13999,7 +13999,7 @@ "par_idN1057F\n" "help.text" msgid "Add a new data field to the list box." -msgstr "" +msgstr "Új adatmezőt ad a listához." #. t3DZP #: tablewizard02.xhp @@ -14008,7 +14008,7 @@ "par_idN10582\n" "help.text" msgid "Field information" -msgstr "" +msgstr "Mezőinformáció" #. 32RqX #: tablewizard02.xhp @@ -14017,7 +14017,7 @@ "par_idN10586\n" "help.text" msgid "Field name" -msgstr "" +msgstr "Mezőnév" #. CemcB #: tablewizard02.xhp @@ -14026,7 +14026,7 @@ "par_idN1058A\n" "help.text" msgid "Displays the name of the selected data field. If you want, you can enter a new name." -msgstr "" +msgstr "Megmutatja a kiválasztott adatmező nevét. Ha szükséges, új név is megadható." #. iACxs #: tablewizard02.xhp @@ -14035,7 +14035,7 @@ "par_idN1058D\n" "help.text" msgid "Field type" -msgstr "" +msgstr "Mezőtípus" #. FpeCt #: tablewizard02.xhp @@ -14044,7 +14044,7 @@ "par_idN10591\n" "help.text" msgid "Select a field type." -msgstr "" +msgstr "Válasszon egy mezőtípust." #. dBDH3 #: tablewizard02.xhp @@ -14053,7 +14053,7 @@ "hd_id5486922\n" "help.text" msgid "AutoValue" -msgstr "" +msgstr "Automatikus értékadás" #. mhvS4 #: tablewizard02.xhp @@ -14062,7 +14062,7 @@ "par_id4198736\n" "help.text" msgid "If set to Yes, the values for this data field are generated by the database engine." -msgstr "" +msgstr "Ha a beállítás Igen, akkor az adatmező értékeit az adatbázismotor hozza létre." #. c4BZi #: tablewizard02.xhp @@ -14071,7 +14071,7 @@ "par_idN106A0\n" "help.text" msgid "Entry required" -msgstr "" +msgstr "Kötelező adat" #. wEMRe #: tablewizard02.xhp @@ -14080,7 +14080,7 @@ "par_idN106A6\n" "help.text" msgid "If set to Yes, this field must not be empty." -msgstr "" +msgstr "Ha Igen-re van állítva, a mező nem lehet üres." #. aEK5E #: tablewizard02.xhp @@ -14089,7 +14089,7 @@ "par_idN10594\n" "help.text" msgid "Length" -msgstr "" +msgstr "Hossz" #. 2XC9L #: tablewizard02.xhp @@ -14098,7 +14098,7 @@ "par_idN10598\n" "help.text" msgid "Specifies the number of characters for the data field." -msgstr "" +msgstr "Megadja az adatmezőben használható karakterek számát." #. 6BjNy #: tablewizard02.xhp @@ -14107,7 +14107,7 @@ "par_idN1059B\n" "help.text" msgid "Decimal places" -msgstr "" +msgstr "Tizedesjegyek" #. egEhC #: tablewizard02.xhp @@ -14116,7 +14116,7 @@ "par_idN1059F\n" "help.text" msgid "Specifies the number of decimal places for the data field. This option is only available for numerical or decimal data fields." -msgstr "" +msgstr "Adja meg az adatmezőben használható tizedesjegyek számát. Ez a lehetőség csak szám vagy tizedes adatmezők esetében használható." #. Nu72A #: tablewizard02.xhp @@ -14125,7 +14125,7 @@ "par_idN105A2\n" "help.text" msgid "Default value" -msgstr "" +msgstr "Alapértelmezett érték" #. 3GME6 #: tablewizard02.xhp @@ -14134,7 +14134,7 @@ "par_idN105A6\n" "help.text" msgid "Specifies the default value for a Yes/No field." -msgstr "" +msgstr "Megadja az Igen/Nem mező alapértelmezett értékét." #. pJiM3 #: tablewizard02.xhp @@ -14143,7 +14143,7 @@ "par_idN10730\n" "help.text" msgid "Auto-increment statement" -msgstr "" +msgstr "Automatikusan növelő utasítás" #. FDNak #: tablewizard02.xhp @@ -14152,7 +14152,7 @@ "par_id6706747\n" "help.text" msgid "Enter the SQL command specifier that instructs the data source to auto-increment a specified Integer data field. For example, the following MySQL statement used the AUTO_INCREMENT statement to increase the \"id\" field each time the statement creates a data field:" -msgstr "" +msgstr "Írja be azt az SQL-parancsmódosítót, amely az adatforrást a kijelölt egész típusú adatmező automatikus növelésére készteti. Például a következő MySQL-utasítás az AUTO_INCREMENT utasítást használta az „azonosító” mező növeléséhez mindannyiszor, amikor az utasítás egy adatmezőt hoz létre." #. JETWU #: tablewizard02.xhp @@ -14161,7 +14161,7 @@ "par_id8946501\n" "help.text" msgid "CREATE TABLE \"table1\" (\"id\" INTEGER AUTO_INCREMENT)" -msgstr "" +msgstr "CREATE TABLE \"tábla1\" (\"azonosító\" INTEGER AUTO_INCREMENT)" #. 8FrJs #: tablewizard02.xhp @@ -14170,7 +14170,7 @@ "par_id4846949\n" "help.text" msgid "For this example, you must enter AUTO_INCREMENT into the Auto-increment statement box." -msgstr "" +msgstr "Ebben a példában be kell írnia az AUTO_INCREMENT elemet az Automatikusan növelő utasítás mezőbe." #. c3dzF #: tablewizard02.xhp @@ -14188,7 +14188,7 @@ "tit\n" "help.text" msgid "Table Wizard - Set Primary Key" -msgstr "" +msgstr "Táblatündér - Elsődleges kulcs beállítása" #. NjMtW #: tablewizard03.xhp @@ -14197,7 +14197,7 @@ "par_idN10546\n" "help.text" msgid "Table Wizard - Set Primary Key" -msgstr "" +msgstr "Táblatündér - Elsődleges kulcs beállítása" #. jbfcH #: tablewizard03.xhp @@ -14206,7 +14206,7 @@ "par_idN10556\n" "help.text" msgid "Specifies a field in the table to be used as a primary key." -msgstr "" +msgstr "Megadja, hogy a tábla melyik mezője legyen az elsődleges kulcs." #. GAk3T #: tablewizard03.xhp @@ -14215,7 +14215,7 @@ "par_idN10559\n" "help.text" msgid "Create a primary key" -msgstr "" +msgstr "Elsődleges kulcs létrehozása" #. jEViE #: tablewizard03.xhp @@ -14224,7 +14224,7 @@ "par_idN1055D\n" "help.text" msgid "Select to create a primary key. Add a primary key to every database table to uniquely identify each record. For some database systems within %PRODUCTNAME, a primary key is mandatory for editing the tables." -msgstr "" +msgstr "Válassza ezt elsődleges kulcs létrehozásához. Minden adatbázishoz adjon hozzá elsődleges kulcsot, hogy a rekordok egyedien azonosíthatóak legyenek. A %PRODUCTNAME-ban bizonyos adatbázisok esetén az elsődleges kulcs kötelező a táblák szerkesztéséhez." #. ZEDQ9 #: tablewizard03.xhp @@ -14233,7 +14233,7 @@ "par_idN10560\n" "help.text" msgid "Automatically add a primary key" -msgstr "" +msgstr "Elsődleges kulcs automatikus hozzáadása" #. oqASw #: tablewizard03.xhp @@ -14242,7 +14242,7 @@ "par_idN10564\n" "help.text" msgid "Select to automatically add a primary key as an additional field." -msgstr "" +msgstr "Válassza ezt elsődleges kulcs automatikus hozzáadásához külön mezőként." #. JGWGR #: tablewizard03.xhp @@ -14251,7 +14251,7 @@ "par_idN10567\n" "help.text" msgid "Use an existing field as a primary key" -msgstr "" +msgstr "Meglévő mező használata elsődleges kulcsként" #. ndknB #: tablewizard03.xhp @@ -14260,7 +14260,7 @@ "par_idN1056B\n" "help.text" msgid "Select to use an existing field with unique values as a primary key." -msgstr "" +msgstr "Válassza ezt, ha egy meglévő, egyedi értékekkel rendelkező mező lesz az elsődleges kulcs." #. fMF7v #: tablewizard03.xhp @@ -14269,7 +14269,7 @@ "par_idN1056E\n" "help.text" msgid "Field name" -msgstr "" +msgstr "Mezőnév" #. Z7naB #: tablewizard03.xhp @@ -14278,7 +14278,7 @@ "par_idN10572\n" "help.text" msgid "Select the field name." -msgstr "" +msgstr "Válassza ki a mezőnevet." #. bGGBe #: tablewizard03.xhp @@ -14287,7 +14287,7 @@ "par_idN10575\n" "help.text" msgid "Auto value" -msgstr "" +msgstr "Automatikus érték" #. pFSnC #: tablewizard03.xhp @@ -14296,7 +14296,7 @@ "par_idN10579\n" "help.text" msgid "Select to automatically insert a value and increment the field's value for each new record. The database must support automatic incrementation in order to use the Auto value feature." -msgstr "" +msgstr "Válassza ezt egy érték automatikus beszúrásához, és a mező értékének automatikus növeléséhez minden új rekordnál. Az adatbázisnak támogatnia kell az automatikus inkrementációt, különben nem lehet az Automatikus érték funkciót használni." #. EuZFN #: tablewizard03.xhp @@ -14305,7 +14305,7 @@ "par_idN1057C\n" "help.text" msgid "Define primary key by several fields" -msgstr "" +msgstr "Elsődleges kulcs meghatározása több mező alapján" #. 7AfGE #: tablewizard03.xhp @@ -14314,7 +14314,7 @@ "par_idN10580\n" "help.text" msgid "Select to create a primary key from a combination of several existing fields." -msgstr "" +msgstr "Válassza ezt, ha az elsődleges kulcsot több, meglévő mező kombinációjaként akarja létrehozni." #. ymUtk #: tablewizard03.xhp @@ -14323,7 +14323,7 @@ "par_idN10583\n" "help.text" msgid "Available fields" -msgstr "" +msgstr "Elérhető mezők" #. sVEFU #: tablewizard03.xhp @@ -14332,7 +14332,7 @@ "par_idN10587\n" "help.text" msgid "Select a field and click > to add it to the list of primary key fields." -msgstr "" +msgstr "Jelöljön ki egy mezőt, és kattintson a > gombra az elsődleges kulcsmezők listájához való hozzáadáshoz." #. yivEE #: tablewizard03.xhp @@ -14341,7 +14341,7 @@ "par_idN1059A\n" "help.text" msgid "Primary key fields" -msgstr "" +msgstr "Elsődleges kulcs mezői" #. XoNRs #: tablewizard03.xhp @@ -14350,7 +14350,7 @@ "par_idN1059E\n" "help.text" msgid "Select a field and click < to remove it from the list of primary key fields. The primary key is created as a concatenation of the fields in this list, from top to bottom." -msgstr "" +msgstr "Jelöljön ki egy mezőt, és kattintson a < gombra az elsődleges kulcsmezők listájáról való eltávolításhoz. Az elsődleges kulcs a listában felsorolt mezők konkatenációjaként jön létre, fentről lefelé haladva." #. GBnsP #: tablewizard03.xhp @@ -14368,7 +14368,7 @@ "tit\n" "help.text" msgid "Table Wizard - Create Table" -msgstr "" +msgstr "Táblatündér - Tábla létrehozása" #. VhZ3v #: tablewizard04.xhp @@ -14377,7 +14377,7 @@ "par_idN10543\n" "help.text" msgid "Table Wizard - Create Table" -msgstr "" +msgstr "Táblatündér - Tábla létrehozása" #. CEdhG #: tablewizard04.xhp @@ -14386,7 +14386,7 @@ "par_idN10553\n" "help.text" msgid "Enter a name for the table and specify whether you want to modify the table after the wizard is finished." -msgstr "" +msgstr "Írja be a tábla nevét, és adja meg, hogy szeretné-e módosítani a táblát a tündér befejezése után." #. DYQqm #: tablewizard04.xhp @@ -14395,7 +14395,7 @@ "par_idN10556\n" "help.text" msgid "Table name" -msgstr "" +msgstr "Tábla neve" #. XbyrT #: tablewizard04.xhp @@ -14404,7 +14404,7 @@ "par_idN1055A\n" "help.text" msgid "Specifies the table name." -msgstr "" +msgstr "Megadja a tábla nevét." #. ANGE9 #: tablewizard04.xhp @@ -14413,7 +14413,7 @@ "par_idN105E4\n" "help.text" msgid "Catalog of the table" -msgstr "" +msgstr "Tábla katalógusa" #. EJ9oq #: tablewizard04.xhp @@ -14422,7 +14422,7 @@ "par_idN105EA\n" "help.text" msgid "Select the catalog for the table. (Available only if the database supports catalogs)" -msgstr "" +msgstr "Válassza ki a tábla katalógusát. (Csak akkor érhető el, ha az adatbázis támogatja a katalógusokat.)" #. 2ADuK #: tablewizard04.xhp @@ -14431,7 +14431,7 @@ "par_idN10605\n" "help.text" msgid "Schema of the table" -msgstr "" +msgstr "Tábla sémája" #. pfjij #: tablewizard04.xhp @@ -14440,7 +14440,7 @@ "par_idN1060B\n" "help.text" msgid "Select the schema for the table. (Available only if the database supports schemas)" -msgstr "" +msgstr "Válassza ki a tábla sémáját. (Csak akkor érhető el, ha az adatbázis támogatja a sémákat.)" #. DEPmh #: tablewizard04.xhp @@ -14449,7 +14449,7 @@ "par_idN1055D\n" "help.text" msgid "Modify the table design" -msgstr "" +msgstr "Táblaterv módosítása" #. SgDTD #: tablewizard04.xhp @@ -14458,7 +14458,7 @@ "par_idN10561\n" "help.text" msgid "Select to save and edit the table design." -msgstr "" +msgstr "Válassza ezt a táblaterv mentéséhez és szerkesztéséhez." #. JBjXz #: tablewizard04.xhp @@ -14467,7 +14467,7 @@ "par_idN10564\n" "help.text" msgid "Insert data immediately" -msgstr "" +msgstr "Adatok azonnali felvitele" #. sFBFY #: tablewizard04.xhp @@ -14476,7 +14476,7 @@ "par_idN10568\n" "help.text" msgid "Select to save the table design and open the table to enter data." -msgstr "" +msgstr "Válassza ez a táblaterv mentéséhez és a tábla megnyitásához adatbevitel céljából." #. RBiFw #: tablewizard04.xhp @@ -14485,7 +14485,7 @@ "par_idN1056B\n" "help.text" msgid "Create a form based on this table" -msgstr "" +msgstr "Űrlap létrehozása ezen tábla alapján" #. LCcFV #: tablewizard04.xhp @@ -14494,7 +14494,7 @@ "par_idN1056F\n" "help.text" msgid "Select to create a form based on this table. The form is created on a text document with the last used settings of the Form Wizard." -msgstr "" +msgstr "Válassza ezt űrlap létrehozásához ezen tábla alapján. Az űrlap egy szöveges dokumentumban jön létre az Űrlaptündér utoljára használt beállításaival." #. wHGrL #: tablewizard04.xhp @@ -14512,7 +14512,7 @@ "tit\n" "help.text" msgid "Database Form Toolbar" -msgstr "" +msgstr "Adatbázisűrlap-eszköztár" #. ViBjA #: toolbar_form.xhp @@ -14530,7 +14530,7 @@ "hd_id231642796157552\n" "help.text" msgid "New database form" -msgstr "" +msgstr "Új adatbázisűrlap" #. g2PCm #: toolbar_form.xhp @@ -14539,7 +14539,7 @@ "par_id431642796165270\n" "help.text" msgid "Icon New Database Form" -msgstr "" +msgstr "Új adatbázisűrlap ikon" #. BmKGp #: toolbar_form.xhp @@ -14548,7 +14548,7 @@ "par_id321642796165273\n" "help.text" msgid "Creates a new database form." -msgstr "" +msgstr "Új adatbázisűrlap létrehozása." #. 89Xdx #: toolbar_form.xhp @@ -14557,7 +14557,7 @@ "par_idN10634\n" "help.text" msgid "Open database form" -msgstr "" +msgstr "Adatbázisűrlap megnyitása" #. TaigW #: toolbar_form.xhp @@ -14566,7 +14566,7 @@ "par_id581642794179327\n" "help.text" msgid "Icon Open Form" -msgstr "" +msgstr "Űrlap megnyitása ikon" #. 8rq4H #: toolbar_form.xhp @@ -14575,7 +14575,7 @@ "par_idN10638\n" "help.text" msgid "Opens the selected form so you can enter, edit, or delete records." -msgstr "" +msgstr "Megnyitja a kijelölt űrlapot a rekordok beviteléhez, szerkesztéséhez és törléséhez." #. GF2hM #: toolbar_form.xhp @@ -14584,7 +14584,7 @@ "par_idN1064F\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Szerkesztés" #. qnKpJ #: toolbar_form.xhp @@ -14593,7 +14593,7 @@ "par_id1001642794252425\n" "help.text" msgid "Icon Edit Form" -msgstr "" +msgstr "Űrlap szerkesztése ikon" #. WE3Eo #: toolbar_form.xhp @@ -14602,7 +14602,7 @@ "par_idN10653\n" "help.text" msgid "Opens the selected form so you can change the layout." -msgstr "" +msgstr "Megnyitja a kijelölt űrlapot a struktúra megváltoztatásához." #. dfaAA #: toolbar_form.xhp @@ -14611,7 +14611,7 @@ "par_idN1066A\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Törlés" #. AfDGM #: toolbar_form.xhp @@ -14620,7 +14620,7 @@ "par_id941642794399538\n" "help.text" msgid "Icon Delete Form" -msgstr "" +msgstr "Űrlap törlése ikon" #. 969sF #: toolbar_form.xhp @@ -14629,7 +14629,7 @@ "par_idN1066E\n" "help.text" msgid "Deletes the selected form." -msgstr "" +msgstr "Törli a kijelölt űrlapot." #. E8FTE #: toolbar_form.xhp @@ -14638,7 +14638,7 @@ "par_idN10685\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Átnevezés" #. pE8qg #: toolbar_form.xhp @@ -14647,7 +14647,7 @@ "par_id601642794481349\n" "help.text" msgid "Icon Rename Form" -msgstr "" +msgstr "Űrlap átnevezése ikon" #. eMzAD #: toolbar_form.xhp @@ -14656,7 +14656,7 @@ "par_idN10689\n" "help.text" msgid "Renames the selected form." -msgstr "" +msgstr "Átnevezi a kijelölt űrlapot." #. Ej7Bx #: toolbar_query.xhp @@ -14665,7 +14665,7 @@ "tit\n" "help.text" msgid "Database Query Toolbar" -msgstr "" +msgstr "Adatbázis-lekérdezés eszköztár" #. MVKFj #: toolbar_query.xhp @@ -14683,7 +14683,7 @@ "hd_id231642796157552\n" "help.text" msgid "New database query" -msgstr "" +msgstr "Új adatbázis-lekérdezés" #. yw8S8 #: toolbar_query.xhp @@ -14692,7 +14692,7 @@ "par_id431642796165270\n" "help.text" msgid "Icon New Database Query" -msgstr "" +msgstr "Új adatbázis-lekérdezés ikon" #. UnzqA #: toolbar_query.xhp @@ -14701,7 +14701,7 @@ "par_id321642796165273\n" "help.text" msgid "Creates a new database query." -msgstr "" +msgstr "Új adatbázis-lekérdezés létrehozása." #. zqAQx #: toolbar_query.xhp @@ -14710,7 +14710,7 @@ "hd_id981642797173950\n" "help.text" msgid "New Database Query (SQL View)" -msgstr "" +msgstr "Új adatbázis-lekérdezés (SQL-nézet)" #. bSoXy #: toolbar_query.xhp @@ -14719,7 +14719,7 @@ "par_id131642797178876\n" "help.text" msgid "Icon New query (SQL view)" -msgstr "" +msgstr "Új lekérdezés (SQL nézet) ikon" #. CVC97 #: toolbar_query.xhp @@ -14728,7 +14728,7 @@ "par_id911642797178879\n" "help.text" msgid "Opens the SQL window to edit a query in SQL language." -msgstr "" +msgstr "Megnyitja az SQL ablakot, hogy SQL nyelven szerkeszthessen egy lekérdezést." #. G7DB4 #: toolbar_query.xhp @@ -14737,7 +14737,7 @@ "par_idN105C4\n" "help.text" msgid "Open database query" -msgstr "" +msgstr "Adatbázis-lekérdezés megnyitása" #. 35ceG #: toolbar_query.xhp @@ -14746,7 +14746,7 @@ "par_id791642791781980\n" "help.text" msgid "Icon Open Query Object" -msgstr "" +msgstr "Lekérdezés-objektum megnyitása ikon" #. yrGi6 #: toolbar_query.xhp @@ -14755,7 +14755,7 @@ "par_idN105C8\n" "help.text" msgid "Opens the selected query so you can enter, edit, or delete records." -msgstr "" +msgstr "Megnyitja a kijelölt lekérdezést a rekordok beviteléhez, szerkesztéséhez és törléséhez." #. Wpcih #: toolbar_query.xhp @@ -14764,7 +14764,7 @@ "par_idN105DF\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Szerkesztés" #. peDGL #: toolbar_query.xhp @@ -14773,7 +14773,7 @@ "par_id291642791910891\n" "help.text" msgid "Icon Edit Query" -msgstr "" +msgstr "Lekérdezés szerkesztése ikon" #. FEN9q #: toolbar_query.xhp @@ -14782,7 +14782,7 @@ "par_idN105E3\n" "help.text" msgid "Opens the selected query so you can change the structure." -msgstr "" +msgstr "Megnyitja a kijelölt lekérdezést a struktúra megváltoztatásához." #. 6jGeW #: toolbar_query.xhp @@ -14791,7 +14791,7 @@ "par_idN105FA\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Törlés" #. EHvLX #: toolbar_query.xhp @@ -14800,7 +14800,7 @@ "par_id651642792045236\n" "help.text" msgid "Icon Delete Query" -msgstr "" +msgstr "Lekérdezés törlése ikon" #. Ejm28 #: toolbar_query.xhp @@ -14809,7 +14809,7 @@ "par_idN105FE\n" "help.text" msgid "Deletes the selected query." -msgstr "" +msgstr "Törli a kijelölt lekérdezést." #. 9XGHW #: toolbar_query.xhp @@ -14818,7 +14818,7 @@ "par_idN10615\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Átnevezés" #. H78Bh #: toolbar_query.xhp @@ -14827,7 +14827,7 @@ "par_id561642792121799\n" "help.text" msgid "Icon Rename Query" -msgstr "" +msgstr "Lekérdezés átnevezése ikon" #. xXWqz #: toolbar_query.xhp @@ -14836,7 +14836,7 @@ "par_idN10619\n" "help.text" msgid "Renames the selected query." -msgstr "" +msgstr "Átnevezi a kijelölt lekérdezést." #. aqUue #: toolbar_report.xhp @@ -14845,7 +14845,7 @@ "tit\n" "help.text" msgid "Database Report Toolbar" -msgstr "" +msgstr "Adatbázis-jelentés eszköztár" #. N5Spv #: toolbar_report.xhp @@ -14863,7 +14863,7 @@ "hd_id231642796157552\n" "help.text" msgid "New database report" -msgstr "" +msgstr "Új adatbázis-jelentés" #. hxRbm #: toolbar_report.xhp @@ -14872,7 +14872,7 @@ "par_id431642796165270\n" "help.text" msgid "Icon New Database Report" -msgstr "" +msgstr "Új adatbázis-jelentés ikon" #. FzBiP #: toolbar_report.xhp @@ -14881,7 +14881,7 @@ "par_id321642796165273\n" "help.text" msgid "Creates a new database report." -msgstr "" +msgstr "Új adatbázis-jelentés létrehozása." #. DASFx #: toolbar_report.xhp @@ -14890,7 +14890,7 @@ "hd_id261642796491626\n" "help.text" msgid "Database report wizard" -msgstr "" +msgstr "Adatbázis-jelentés tündére" #. wRJAg #: toolbar_report.xhp @@ -14899,7 +14899,7 @@ "par_id251642796542820\n" "help.text" msgid "Icon Database report wizard" -msgstr "" +msgstr "Adatbázis-jelentés tündér ikon" #. Ri9DE #: toolbar_report.xhp @@ -14908,7 +14908,7 @@ "par_id261642796542823\n" "help.text" msgid "Opens the database report wizard, to guide you in creating a database report." -msgstr "" +msgstr "Megnyitja az adatbázis-jelentés tündért, hogy segítsen az adatbázis-jelentés létrehozásában." #. VcR6f #: toolbar_report.xhp @@ -14917,7 +14917,7 @@ "par_idN106A4\n" "help.text" msgid "Open database report" -msgstr "" +msgstr "Adatbázis-jelentés megnyitása" #. JytE5 #: toolbar_report.xhp @@ -14926,7 +14926,7 @@ "par_id321642794819375\n" "help.text" msgid "Icon Open Report" -msgstr "" +msgstr "Jelentés megnyitása ikon" #. RdAb4 #: toolbar_report.xhp @@ -14935,7 +14935,7 @@ "par_idN106A8\n" "help.text" msgid "Opens the selected report so you can enter, edit, or delete records." -msgstr "" +msgstr "Megnyitja a kijelölt jelentést a rekordok beviteléhez, szerkesztéséhez és törléséhez." #. XyYBD #: toolbar_report.xhp @@ -14944,7 +14944,7 @@ "par_idN106BF\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Szerkesztés" #. mmfdU #: toolbar_report.xhp @@ -14953,7 +14953,7 @@ "par_id141642794873165\n" "help.text" msgid "Icon Edit Report" -msgstr "" +msgstr "Jelentés szerkesztése ikon" #. 34f7b #: toolbar_report.xhp @@ -14962,7 +14962,7 @@ "par_idN106C3\n" "help.text" msgid "Opens the selected report so you can change the layout." -msgstr "" +msgstr "Megnyitja a kijelölt jelentést a struktúra megváltoztatásához." #. B7hhM #: toolbar_report.xhp @@ -14971,7 +14971,7 @@ "par_idN106DA\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Törlés" #. frjJR #: toolbar_report.xhp @@ -14980,7 +14980,7 @@ "par_id51642795131634\n" "help.text" msgid "Icon Delete Report" -msgstr "" +msgstr "Jelentés törlése ikon" #. rrRCi #: toolbar_report.xhp @@ -14989,7 +14989,7 @@ "par_idN106DE\n" "help.text" msgid "Deletes the selected report." -msgstr "" +msgstr "Törli a kijelölt jelentést." #. ftpNL #: toolbar_report.xhp @@ -14998,7 +14998,7 @@ "par_idN106F5\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Átnevezés" #. cNjbm #: toolbar_report.xhp @@ -15007,7 +15007,7 @@ "par_id551642795211226\n" "help.text" msgid "Icon Rename Report" -msgstr "" +msgstr "Jelentés átnevezése ikon" #. EYSpz #: toolbar_report.xhp @@ -15016,7 +15016,7 @@ "par_idN106F9\n" "help.text" msgid "Renames the selected report." -msgstr "" +msgstr "Átnevezi a kijelölt jelentést." #. ezZJj #: toolbar_table.xhp @@ -15025,7 +15025,7 @@ "tit\n" "help.text" msgid "Database Table Toolbar" -msgstr "" +msgstr "Adatbázis-táblázat eszköztár" #. 6DNGE #: toolbar_table.xhp @@ -15043,7 +15043,7 @@ "hd_id461642852368590\n" "help.text" msgid "Open document" -msgstr "" +msgstr "Dokumentum megnyitása" #. pRvid #: toolbar_table.xhp @@ -15052,7 +15052,7 @@ "par_id601642852258016\n" "help.text" msgid "Icon Open Document" -msgstr "" +msgstr "Dokumentum megnyitása ikon" #. DAEuG #: toolbar_table.xhp @@ -15061,7 +15061,7 @@ "par_id981642852258019\n" "help.text" msgid "Opens a %PRODUCTNAME document." -msgstr "" +msgstr "Megnyit egy %PRODUCTNAME dokumentumot." #. Z4JdE #: toolbar_table.xhp @@ -15070,7 +15070,7 @@ "hd_id981642852403610\n" "help.text" msgid "Save document" -msgstr "" +msgstr "Dokumentum mentése" #. EoGU4 #: toolbar_table.xhp @@ -15079,7 +15079,7 @@ "par_id731642852435520\n" "help.text" msgid "Icon Save database file" -msgstr "" +msgstr "Adatbázisfájl mentése ikon" #. AgrRB #: toolbar_table.xhp @@ -15088,7 +15088,7 @@ "par_id481642852435523\n" "help.text" msgid "Saves current database file." -msgstr "" +msgstr "Az aktuális adatbázisfájl mentése." #. mLNRZ #: toolbar_table.xhp @@ -15097,7 +15097,7 @@ "hd_id131642852596290\n" "help.text" msgid "Copy" -msgstr "" +msgstr "Másolás" #. xVmGj #: toolbar_table.xhp @@ -15106,7 +15106,7 @@ "par_id381642853541654\n" "help.text" msgid "Icon copy" -msgstr "" +msgstr "Másolás ikon" #. MSHcj #: toolbar_table.xhp @@ -15115,7 +15115,7 @@ "par_id601642853541657\n" "help.text" msgid "Copies the selection to the clipboard." -msgstr "" +msgstr "Átmásolja a kijelölést a vágólapra." #. C9Ezf #: toolbar_table.xhp @@ -15124,7 +15124,7 @@ "hd_id941642852602272\n" "help.text" msgid "Paste" -msgstr "" +msgstr "Beillesztés" #. JDAZJ #: toolbar_table.xhp @@ -15133,7 +15133,7 @@ "par_id761642853673909\n" "help.text" msgid "Icon Paste" -msgstr "" +msgstr "Beillesztés ikon" #. nEsTe #: toolbar_table.xhp @@ -15142,7 +15142,7 @@ "par_id321642853673912\n" "help.text" msgid "Inserts the contents of the clipboard at the location of the cursor, and replaces any selected text or objects." -msgstr "" +msgstr "A vágólap tartalmát beilleszti a kurzor helyére, és lecserél minden kijelölt szöveget vagy objektumot." #. Ct5XD #: toolbar_table.xhp @@ -15151,7 +15151,7 @@ "hd_id1001642852606113\n" "help.text" msgid "Sort ascending" -msgstr "" +msgstr "Növekvő sorrend" #. WDeBp #: toolbar_table.xhp @@ -15169,7 +15169,7 @@ "par_id621642853830977\n" "help.text" msgid "Sorts the entries in the detail view in ascending order." -msgstr "" +msgstr "A részletes nézetben lévő bejegyzéseket növekvő sorrendbe rendezi." #. 542jo #: toolbar_table.xhp @@ -15178,7 +15178,7 @@ "hd_id441642852616281\n" "help.text" msgid "Sort descending" -msgstr "" +msgstr "Csökkenő sorrend" #. iL4by #: toolbar_table.xhp @@ -15187,7 +15187,7 @@ "par_id511642854313007\n" "help.text" msgid "Icon Sort descending" -msgstr "" +msgstr "Csökkenő sorrend ikon" #. e2A2e #: toolbar_table.xhp @@ -15196,7 +15196,7 @@ "par_id81642854313011\n" "help.text" msgid "Sorts the entries in the detail view in descending order." -msgstr "" +msgstr "A részletes nézetben lévő bejegyzéseket csökkenő sorrendbe rendezi." #. VTRY7 #: toolbar_table.xhp @@ -15205,7 +15205,7 @@ "hd_id231642796152552\n" "help.text" msgid "New database form" -msgstr "" +msgstr "Új adatbázisűrlap" #. 4C7Bi #: toolbar_table.xhp @@ -15214,7 +15214,7 @@ "par_id431643796165270\n" "help.text" msgid "Icon New Database Form" -msgstr "" +msgstr "Új adatbázisűrlap ikon" #. YAoeV #: toolbar_table.xhp @@ -15223,7 +15223,7 @@ "par_id321612796165273\n" "help.text" msgid "Creates a new database form (default). Use the drop-down toolbar to create a new database object directly." -msgstr "" +msgstr "Új adatbázisűrlap létrehozása (alapértelmezett). A legördülő eszköztár segítségével közvetlenül hozhat létre új adatbázis-objektumot." #. KuYJ7 #: toolbar_table.xhp @@ -15232,7 +15232,7 @@ "hd_id231642796157552\n" "help.text" msgid "New table design" -msgstr "" +msgstr "Új táblaterv" #. zKJDB #: toolbar_table.xhp @@ -15241,7 +15241,7 @@ "par_id431642796165270\n" "help.text" msgid "Icon New Table design" -msgstr "" +msgstr "Új táblaterv ikon" #. p5PvJ #: toolbar_table.xhp @@ -15250,7 +15250,7 @@ "par_id321642796165273\n" "help.text" msgid "Designs a new database table." -msgstr "" +msgstr "Új adatbázis-táblázatot tervez." #. zoHMV #: toolbar_table.xhp @@ -15259,7 +15259,7 @@ "par_idN10554\n" "help.text" msgid "Open database table" -msgstr "" +msgstr "Adatbázis-táblázat megnyitása" #. gptoW #: toolbar_table.xhp @@ -15268,7 +15268,7 @@ "par_id521642787914042\n" "help.text" msgid "Icon Open Database Table" -msgstr "" +msgstr "Adatbázistábla megnyitása ikon" #. FiWG5 #: toolbar_table.xhp @@ -15277,7 +15277,7 @@ "par_idN10558\n" "help.text" msgid "Opens the selected table so you can enter, edit, or delete records." -msgstr "" +msgstr "Megnyitja a kijelölt táblát a rekordok beviteléhez, szerkesztéséhez és törléséhez." #. 2GZDb #: toolbar_table.xhp @@ -15286,7 +15286,7 @@ "par_idN1056F\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Szerkesztés" #. GEk85 #: toolbar_table.xhp @@ -15295,7 +15295,7 @@ "par_id481642788747900\n" "help.text" msgid "Icon Edit table" -msgstr "" +msgstr "Tábla szerkesztése ikon" #. SpLTj #: toolbar_table.xhp @@ -15304,7 +15304,7 @@ "par_idN10573\n" "help.text" msgid "Opens the selected table so you can change the structure." -msgstr "" +msgstr "Megnyitja a kijelölt táblát a struktúra megváltoztatásához." #. Aoqi2 #: toolbar_table.xhp @@ -15313,7 +15313,7 @@ "par_idN1058A\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Törlés" #. qsDuC #: toolbar_table.xhp @@ -15322,7 +15322,7 @@ "par_id261642788871011\n" "help.text" msgid "Icon Delete Table" -msgstr "" +msgstr "Tábla törlése ikon" #. 7S8xE #: toolbar_table.xhp @@ -15331,7 +15331,7 @@ "par_idN1058E\n" "help.text" msgid "Deletes the selected table." -msgstr "" +msgstr "Törli a kijelölt táblát." #. nxeFo #: toolbar_table.xhp @@ -15340,7 +15340,7 @@ "par_idN105A5\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Átnevezés" #. bkFMf #: toolbar_table.xhp @@ -15349,7 +15349,7 @@ "par_id501642788935574\n" "help.text" msgid "Icon Rename Table" -msgstr "" +msgstr "Tábla átnevezése ikon" #. Bqa33 #: toolbar_table.xhp @@ -15358,7 +15358,7 @@ "par_idN105A9\n" "help.text" msgid "Renames the selected table." -msgstr "" +msgstr "Átnevezi a kijelölt táblát." #. PAxTq #: toolbars.xhp @@ -15376,7 +15376,7 @@ "par_idN10541\n" "help.text" msgid "Database Toolbars " -msgstr "" +msgstr "Adatbázis-eszköztárak " #. B3mEW #: toolbars.xhp diff -Nru libreoffice-7.4.6/translations/source/hu/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/hu/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/hu/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hu/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.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: 2022-07-04 18:04+0200\n" -"PO-Revision-Date: 2022-12-15 13:36+0000\n" +"PO-Revision-Date: 2023-03-22 12:34+0000\n" "Last-Translator: Armin Timar \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542196892.000000\n" #. 3u8hR @@ -563,7 +563,7 @@ "par_id3154682\n" "help.text" msgid "Use a master document to organize complex projects, such as a book. A master document can contain the individual files for each chapter of a book, as well as a table of contents, and an index." -msgstr "" +msgstr "Használjon egy fődokumentumot összetett projektek, például egy könyv szervezéséhez. A fődokumentum tartalmazhatja a könyv egyes fejezeteinek egyedi fájljait, valamint a tartalomjegyzéket és a tárgymutatót.." #. 4SDS6 #: 01010001.xhp @@ -788,7 +788,7 @@ "par_id3152780\n" "help.text" msgid "The name of the database field is bounded by brackets in the Label text box. If you want, you can separate database fields with spaces. Press Enter to insert a database field on a new line." -msgstr "" +msgstr "Az adatbázismező neve a Címke szövege mezőben zárójelben szerepel. Ha szeretné, az adatbázismezőket szóközökkel is elválaszthatja egymástól. Nyomja meg az Enter billentyűt az adatbázismező új sorba történő beillesztéséhez." #. x3AQU #: 01010201.xhp @@ -1247,7 +1247,7 @@ "par_id3155342\n" "help.text" msgid "Allows you to edit a single label or business card and updates the contents of the remaining labels or business cards on the page when you click the Synchronize Labels button." -msgstr "" +msgstr "Elérhetővé teszi egyetlen címke vagy névjegy szerkesztését, és frissíti az oldalon lévő többi címke vagy névjegy tartalmát, amikor a Címkék szinkronizálása gombra kattint.." #. FgCBa #: 01010203.xhp @@ -1787,7 +1787,7 @@ "par_id3155892\n" "help.text" msgid "If you want to include your name on a business card, enter your name on the Private tab. Then choose a layout on the Business Cards tab that includes a name placeholder." -msgstr "" +msgstr "Ha egy névjegykártyán szeretné feltüntetni a nevét, adja meg a nevét a Személyes lapon. Ezután a Névjegyek lapon válasszon egy olyan elrendezést, amely tartalmaz egy név helykitöltőt." #. ES68G #: 01010304.xhp diff -Nru libreoffice-7.4.6/translations/source/hu/helpcontent2/source/text/swriter/guide.po libreoffice-7.4.7/translations/source/hu/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.4.6/translations/source/hu/helpcontent2/source/text/swriter/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/hu/helpcontent2/source/text/swriter/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-04 18:05+0200\n" -"PO-Revision-Date: 2018-11-12 13:44+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: Magyar \n" +"PO-Revision-Date: 2023-03-31 20:34+0000\n" +"Last-Translator: Armin Timar \n" +"Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1542030243.000000\n" #. XAt2Y @@ -68,7 +68,7 @@ "par_id3147251\n" "help.text" msgid "An anchor moves with the element it is attached to as the document is edited. An object retains its position relative to the reference point determined by its anchor, such that, whenever the reference point moves or changes, the object moves relative to it." -msgstr "" +msgstr "A horgony a dokumentum szerkesztésekor együtt mozog azzal az elemmel, amelyhez kapcsolódik. Az objektum megtartja a horgonya által meghatározott referenciaponthoz viszonyított pozícióját, így amikor a referenciapont mozog vagy változik, az objektum is mozog hozzá képest." #. ELWph #: anchor_object.xhp @@ -149,7 +149,7 @@ "par_id261634292505179\n" "help.text" msgid "For example, if you split the paragraph at a point before the anchor, the reference point moves to the start of the new paragraph and the object moves relative to that point. If you join the paragraph to the one before it, the reference point moves to the start of the combined paragraph and the object moves to a position relative to that." -msgstr "" +msgstr "Ha például a bekezdést a horgony előtti pontnál választja szét, a referenciapont az új bekezdés elejére mozog, és az objektum ehhez a ponthoz képest mozog. Ha a bekezdést összekapcsolja az előtte lévővel, a referenciapont az egyesített bekezdés elejére mozog, és az objektum ehhez képest mozog egy pozícióba." #. ekiBZ #: anchor_object.xhp @@ -221,7 +221,7 @@ "hd_id341653868751593\n" "help.text" msgid "Moving an Anchor" -msgstr "" +msgstr "Egy horgony áthelyezése" #. 6DYVe #: anchor_object.xhp @@ -230,7 +230,7 @@ "par_id3145715\n" "help.text" msgid "When you insert a shape, textbox, OLE object, image, or frame in your document, an anchor icon appears where the object is anchored. You can move an anchor or, keeping other object constraints in mind, position an object relative to the anchor's reference point by dragging the object." -msgstr "" +msgstr "Amikor egy alakzatot, szövegdobozt, OLE-objektumot, képet vagy keretet illeszt be a dokumentumba, egy horgony ikon jelenik meg az objektum lehorgonyzásának helyén. A horgonyt áthelyezheti, vagy - egyéb objektumkorlátozásokat szem előtt tartva - az objektumot a horgony referenciapontjához képest az objektum húzásával pozícionálhatja." #. eH7Gv #: anchor_object.xhp @@ -239,7 +239,7 @@ "hd_id841653869348328\n" "help.text" msgid "Changing an Anchor" -msgstr "" +msgstr "Egy horgony módosítása" #. iWVDA #: anchor_object.xhp @@ -797,7 +797,7 @@ "par_id3147759\n" "help.text" msgid "If you choose a word from the AutoCorrect submenu, the underlined word and the replacement word are automatically added to the AutoCorrect list for the current language. To view the AutoCorrect list, choose Tools - AutoCorrect - AutoCorrect Options, and then click the Replace tab." -msgstr "" +msgstr "Ha kiválaszt egy szót az Automatikus javítás almenüből, az aláhúzott szó és a helyettesítő szó automatikusan hozzáadódik az Automatikus javítás listához az aktuális nyelvhez. Az Automatikus javítás lista megtekintéséhez válassza az Eszközök - Automatikus javítás - Automatikus javítás beállításai menüpontot, majd kattintson a Csere fülre." #. XAKfE #: auto_spellcheck.xhp @@ -1256,7 +1256,7 @@ "par_id3155390\n" "help.text" msgid "Choose Format - Character." -msgstr "" +msgstr "Válassza a Formátum - Karakter menüpontot." #. vv3Ti #: background.xhp @@ -1337,7 +1337,7 @@ "par_id3148664\n" "help.text" msgid "Choose Table - Properties." -msgstr "" +msgstr "Válassza a Táblázat - Tulajdonságok menüparancsot." #. wLrJQ #: background.xhp @@ -4055,7 +4055,7 @@ "par_id3155588\n" "help.text" msgid "To add a header to one of the page styles, choose Insert - Header and Footer - Header, and choose the page style that you want to add the header to. In the header frame, type the text that you want to use as the header." -msgstr "" +msgstr "Ha élőfejet szeretne hozzáadni az egyik oldalstílushoz, válassza a Beszúrás - Élőfej és élőláb - Élőfej lehetőséget, és válassza ki azt az oldalstílust, amelyhez élőfejet szeretne hozzáadni. Az élőfej keretébe írja be az élőfejként használni kívánt szöveget." #. pD4bE #: even_odd_sdw.xhp @@ -4064,7 +4064,7 @@ "par_id3147772\n" "help.text" msgid "To add a footer to one of the page styles, choose Insert - Header and Footer - Footer, and choose the page style that you want to add the footer to. In the footer frame, type the text that you want to use as a footer." -msgstr "" +msgstr "Ha élőlábat szeretne hozzáadni az egyik oldalstílushoz, válassza a Beszúrás - Élőfej és élőláb - Élőláb lehetőséget, és válassza ki azt az oldalstílust, amelyhez élőlábat szeretne hozzáadni. Az élőláb keretébe írja be az élőlábként használni kívánt szöveget." #. AeRpW #: even_odd_sdw.xhp @@ -4415,7 +4415,7 @@ "par_id271519643331154\n" "help.text" msgid "Placeholders are not updated." -msgstr "" +msgstr "A helykitöltők nem lesznek frissítve." #. BxLFE #: fields_date.xhp @@ -5000,7 +5000,7 @@ "par_id3147294\n" "help.text" msgid "Email address" -msgstr "" +msgstr "E-mail cím" #. eGMqy #: fields_userdata.xhp @@ -5216,7 +5216,7 @@ "par_id703451\n" "help.text" msgid "When you click Replace, Writer will search the whole document for the text in the Find box, starting at the current cursor position. When text is found, Writer highlights the text and waits for your response. Click Replace to replace the highlighted text in the document with the text in the Replace text box. Click Find Next to advance to the next found text without replacing the current selection." -msgstr "" +msgstr "Amikor a Csere gombra kattint, a Writer az egész dokumentumban a Keresés mezőben lévő szöveget keresi, a kurzor aktuális pozíciójától kezdve. Amikor megtalálta a szöveget, a Writer kiemeli a szöveget, és várja a válaszát. Kattintson a Csere gombra, ha a dokumentumban a kiemelt szöveget a Csere szövegdobozban lévő szöveggel kívánja helyettesíteni. Kattintson a Következő keresése gombra, ha a következő megtalált szövegre szeretne lépni anélkül, hogy az aktuális kijelölést kicserélné." #. xUoWa #: finding.xhp @@ -5927,7 +5927,7 @@ "par_id3155620\n" "help.text" msgid "Choose View - Styles." -msgstr "" +msgstr "Válassza a Nézet - Stílusok menüparancsot." #. GChRw #: footnote_with_line.xhp @@ -7457,7 +7457,7 @@ "par_id3153019\n" "help.text" msgid "Choose Insert - Section." -msgstr "" +msgstr "Válassza a Beszúrás - Szakasz menüpontot." #. jFn7h #: hidden_text.xhp @@ -7907,7 +7907,7 @@ "hd_id361605222538173\n" "help.text" msgid "Positioning indents" -msgstr "" +msgstr "Behúzások pozicionálása" #. qUxKq #: indenting.xhp @@ -7943,7 +7943,7 @@ "hd_id671605222596649\n" "help.text" msgid "Hanging indents" -msgstr "" +msgstr "Függő behúzások" #. mF3Ak #: indenting.xhp @@ -7961,7 +7961,7 @@ "par_id811605224853050\n" "help.text" msgid "The Hanging Indent icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of Before text and First line. This enables you to toggle a paragraph between an indented first line and a hanging indent." -msgstr "" +msgstr "A Függő behúzás ikon a Tulajdonságok oldalsáv Bekezdés szakaszában található. Erre az ikonra kattintva válthat a Szöveg előtt és a Első sor értékek között. Ezzel átkapcsolhatja a bekezdést a behúzott első sor és a függő behúzás között." #. C5rYC #: indenting.xhp @@ -7988,7 +7988,7 @@ "par_id881605223016307\n" "help.text" msgid "Hanging Indent Icon" -msgstr "" +msgstr "Függő behúzás ikon" #. kSX2M #: indenting.xhp @@ -8132,7 +8132,7 @@ "par_id3155871\n" "help.text" msgid "If you cannot place your cursor in the index or table of contents, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids, and then select Enable cursor in the Protected Areas section." -msgstr "" +msgstr "Ha nem tudja elhelyezni a kurzort a tárgymutatóban vagy a tartalomjegyzékben, válassza a %PRODUCTNAME - TulajdonságokEszközök - Beállítások - %PRODUCTNAME Writer - Formázási segédletek menüparancsot, majd válassza a Kurzor engedélyezése lehetőséget a Védett területek szakaszban." #. V3L9k #: indices_edit.xhp @@ -8645,7 +8645,7 @@ "par_id3155900\n" "help.text" msgid "Choose Data - Record." -msgstr "" +msgstr "Válassza az Adatok - Rekord menüparancsot." #. MMDF3 #: indices_literature.xhp @@ -11219,7 +11219,7 @@ "par_idN1085F\n" "help.text" msgid "Click the Area tab." -msgstr "" +msgstr "Kattintson a Terület fülre." #. FivVF #: pagebackground.xhp @@ -11597,7 +11597,7 @@ "par_id4569231\n" "help.text" msgid "For example, the \"First Page\" page style has \"Default Page Style\" as the next style. To see this, you may press Command+TF11 to open the Styles window, click the Page Styles icon, right-click the \"First Page\" entry. Choose Modify from the context menu. On the Organizer tab, you can see the \"Next style\"." -msgstr "" +msgstr "Például az \"Első oldal\" oldalstílusnak a következő stílusa az \"Alapértelmezett oldalstílus\". Ennek megtekintéséhez nyomja meg a Command+TF11 billentyűkombinációt a Stílusok ablak megnyitásához, kattintson a Lapstílusok ikonra, kattintson a jobb gombbal az \"Első oldal\" bejegyzésre. Válassza a Módosítás lehetőséget a helyi menüből. A Szervező lapon megjelenik a \"Következő stílus\"." #. yGPGH #: pagenumbers.xhp @@ -11894,7 +11894,7 @@ "par_idN10727\n" "help.text" msgid "Choose View - Styles." -msgstr "" +msgstr "Válassza a Nézet - Stílusok menüparancsot." #. eFUAG #: pageorientation.xhp @@ -11966,7 +11966,7 @@ "par_id1658375\n" "help.text" msgid "Now you have defined a proper page style with the name \"My Landscape\". To apply the new style, double-click the \"My Landscape\" page style in the Styles window. All pages in the current scope of page styles will be changed. If you defined the \"next style\" to be a different style, only the first page of the current scope of page styles will be changed." -msgstr "" +msgstr "Most már definiáltál egy megfelelő oldalstílust \"Saját fekvő\" névvel. Az új stílus alkalmazásához kattintson duplán a \"Saját fekvő\" oldalstílusra a Stílusok ablakban. Az oldalstílusok jelenlegi hatókörében lévő összes oldal megváltozik. Ha a \"következő stílus\"-t más stílusként határozta meg, akkor csak az oldalstílusok jelenlegi hatókörének első oldala fog megváltozni." #. bfdGy #: pageorientation.xhp @@ -12101,7 +12101,7 @@ "par_id6386913\n" "help.text" msgid "The “Default” page style does not set a different \"next style\" on the Format - Page Style - Organizer tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style." -msgstr "" +msgstr "Az „Alapértelmezett” oldalstílus nem állít be eltérő „következő stílust” a Formátum - Oldal - Szervező lapon. Ehelyett a „következő stílus” szintén „Alapértelmezett” lesz. Minden oldalstílus, amelyet ugyanaz az oldalstílus követ, több oldalon keresztül átnyúlhat. Az oldalstílusok alsó és felső szegélyét az „oldaltörések stílussal” határozza meg. Minden két „oldaltörések stílussal” közötti oldal ugyanazzal a stílussal rendelkezik." #. pyFgt #: pageorientation.xhp @@ -12155,7 +12155,7 @@ "par_id4744407\n" "help.text" msgid "To apply the \"page break with style\" property to an arbitrary paragraph style, choose View - Styles. Click the Paragraph Styles icon. Right-click the name of the paragraph style you want to modify and choose Modify. Click the Text Flow tab. In the Breaks area, activate Enable and With Page Style. Select a page style name from the listbox." -msgstr "" +msgstr "Az \"oldaltörés stílussal\" tulajdonság egy tetszőleges bekezdésstílusra történő alkalmazásához válassza a Nézet - Stílusok lehetőséget. Kattintson a Bekezdésstílusok ikonra. Kattintson a jobb gombbal a módosítani kívánt bekezdésstílus nevére, és válassza a Módosítás lehetőséget. Kattintson a Szövegbeosztás fülre. A Törések területen aktiválja az Engedélyezés és az Oldalstílussal lehetőséget. Válassza ki az oldalstílus nevét a listából." #. xCQW9 #: pagestyles.xhp @@ -12209,7 +12209,7 @@ "par_id3153411\n" "help.text" msgid "Choose View - Styles." -msgstr "" +msgstr "Válassza a Nézet - Stílusok menüparancsot." #. dMpbc #: pagestyles.xhp @@ -12389,7 +12389,7 @@ "par_id891615463137607\n" "help.text" msgid "A special situation arises when a Next style is different than the page style itself, and you want to apply that page style to two consecutive pages. For example, if you have applied First Page style to a page, and want to apply First Page style again to the immediately following page, then you must manually override First Page style, because it is configured to be followed by Default Page Style." -msgstr "" +msgstr "Különleges helyzet áll elő, amikor a Következő stílus eltér magától az oldalstílustól, és ezt az oldalstílust két egymást követő oldalra szeretné alkalmazni. Ha például egy oldalra az Első oldal stílust alkalmazta, és a közvetlenül következő oldalra ismét az Első oldal stílust szeretné alkalmazni, akkor manuálisan felül kell írnia az Első oldal stílust, mivel úgy van beállítva, hogy azt az Alapértelmezett oldalstílus kövesse." #. enqf2 #: pagestyles.xhp @@ -12560,7 +12560,7 @@ "par_idN10628\n" "help.text" msgid "Return to Print dialog." -msgstr "" +msgstr "Térjen vissza a Nyomtatás párbeszédablakra." #. fkF4i #: print_brochure.xhp @@ -12587,7 +12587,7 @@ "par_idN10630\n" "help.text" msgid "Click Print." -msgstr "" +msgstr "Kattintson a Nyomtatás gombra." #. 3HQ8i #: print_brochure.xhp @@ -12677,7 +12677,7 @@ "tit\n" "help.text" msgid "Selecting What to Print" -msgstr "" +msgstr "A nyomtatandó anyagok kijelölése" #. AiDCa #: print_selection.xhp @@ -12713,7 +12713,7 @@ "hd_id601605269573468\n" "help.text" msgid "Printing a single page" -msgstr "" +msgstr "Egyetlen oldal kinyomtatása" #. nFVLk #: print_selection.xhp @@ -13010,7 +13010,7 @@ "par_id3149841\n" "help.text" msgid "Choose View - Styles." -msgstr "" +msgstr "Válassza a Nézet - Stílusok menüparancsot." #. 62pGH #: printer_tray.xhp @@ -13217,7 +13217,7 @@ "hd_id1811201610293\n" "help.text" msgid "Turning on protection" -msgstr "" +msgstr "Védelem bekapcsolása" #. DFXKv #: protection.xhp @@ -13253,7 +13253,7 @@ "par_id1811201645678\n" "help.text" msgid "To enable protection" -msgstr "" +msgstr "A védelem engedélyezése" #. q8Rdo #: protection.xhp @@ -13280,7 +13280,7 @@ "hd_id1811201610294\n" "help.text" msgid "Modification of protection" -msgstr "" +msgstr "A védelem módosítása" #. DMsXm #: protection.xhp @@ -13316,7 +13316,7 @@ "hd_id1811201610295\n" "help.text" msgid "Turning off protection" -msgstr "" +msgstr "Védelem kikapcsolása" #. MefHF #: protection.xhp @@ -13964,7 +13964,7 @@ "par_id911604247329772\n" "help.text" msgid "The Reference Style sets an invisible vertical (typographical) grid, using the line distance specified in the style. All paragraphs that have Page line-spacing activated will use that line distance, aligning the bottom of a text line to the next grid line, regardless of font size or presence of graphics." -msgstr "" +msgstr "A Hivatkozásstílus egy láthatatlan függőleges (tipográfiai) rácsot állít be, a stílusban megadott sortávolságot használva. Minden olyan bekezdés, amelynél az Oldal sortávolsága aktiválva van, ezt a sortávolságot fogja használni, a szövegsor alját a következő rácsvonalhoz igazítva, függetlenül a betűmérettől vagy a grafika jelenlététől." #. SoczS #: registertrue.xhp @@ -14036,7 +14036,7 @@ "par_id481604252645547\n" "help.text" msgid "" -msgstr "" +msgstr "" #. ig8av #: registertrue.xhp @@ -14045,7 +14045,7 @@ "par_id911604252806932\n" "help.text" msgid "" -msgstr "" +msgstr "" #. swii5 #: removing_line_breaks.xhp @@ -14180,7 +14180,7 @@ "par_id3154091\n" "help.text" msgid "You can quickly exit manual formatting by pressing CommandCtrl+Shift+X. For example, if you have pressed CommandCtrl+B to apply the bold typeface to the text that you type, press CommandCtrl+Shift+X to return to the default character format of the paragraph." -msgstr "" +msgstr "A kézi formázásból gyorsan kiléphet a CommandCtrl+Shift+X billentyűkombinációval. Például, ha a CommandCtrl+B billentyűkombinációval félkövér betűtípust alkalmaz a beírt szövegre, nyomja meg a CommandCtrl+Shift+X billentyűt, hogy visszatérjen a bekezdés alapértelmezett karakterformátumához." #. GFUmE #: reset_format.xhp @@ -14630,7 +14630,7 @@ "hd_id641641501024846\n" "help.text" msgid "Editing Read-Only Contents" -msgstr "" +msgstr "Írásvédett tartalom szerkesztése" #. An8Bs #: section_edit.xhp @@ -14693,7 +14693,7 @@ "par_id561641501273767\n" "help.text" msgid "Click OK ." -msgstr "" +msgstr "Kattintson az OK gombra." #. sYLAE #: section_edit.xhp @@ -15467,7 +15467,7 @@ "par_id0525200902184476\n" "help.text" msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the extensions web page." -msgstr "" +msgstr "A szöveg helyesírásának és nyelvtanának ellenőrzéséhez a megfelelő szótárakat kell telepíteni. Sok nyelvhez három különböző szótár létezik: egy helyesírás-ellenőrző, egy kötőszószótár és egy szinonimaszótár. Mindegyik szótár csak egy nyelvre vonatkozik. A nyelvtani ellenőrző programok letölthetők és telepíthetők kiterjesztésként. Lásd a kiterjesztések weboldalt." #. X3zXc #: spellcheck_dialog.xhp @@ -15494,7 +15494,7 @@ "par_id3149836\n" "help.text" msgid "Choose Tools - Spelling." -msgstr "" +msgstr "Válassza az Eszközök - Helyesírás-ellenőrzés lehetőséget." #. CGzAF #: spellcheck_dialog.xhp @@ -15593,7 +15593,7 @@ "par_id3156114\n" "help.text" msgid "Choose View - Styles." -msgstr "" +msgstr "Válassza a Nézet - Stílusok menüparancsot." #. Lkn58 #: stylist_fillformat.xhp @@ -15764,7 +15764,7 @@ "par_id3154851\n" "help.text" msgid "For paragraph, character and list styles, select at least one character in the style that you want to copy, then drag the selection to the Styles deck and release. For frame styles, select the frame and hold the mouse button pressed until the mouse icon changes, then drag to the Styles deck and release." -msgstr "" +msgstr "A bekezdés-, karakter- és listastílusok esetében jelölje ki legalább egy karaktert a másolni kívánt stílusban, majd húzza a kijelölést a Stílusok lapra, és engedje el. A frame stílusok esetében jelölje ki a keretet, és tartsa lenyomva az egérgombot, amíg az egér ikonja meg nem változik, majd húzza a Stílusok lapra, és engedje el." #. 94K4k #: stylist_fromselect.xhp @@ -15881,7 +15881,7 @@ "par_id0310200910360780\n" "help.text" msgid "Only the manually formatted attributes of the text at the cursor position in the document will be added to the style that is selected in the Styles window. Any attributes that were applied as part of a style will not be added to the updated style." -msgstr "" +msgstr "A dokumentumban a kurzor pozíciójában lévő szövegnek csak a kézzel formázott jellemzői kerülnek hozzá a Stílusok ablakban kiválasztott stílushoz. A stílus részeként alkalmazott jellemzők nem kerülnek hozzá a frissített stílushoz." #. NPHpd #: stylist_update.xhp @@ -17123,7 +17123,7 @@ "par_idN10728\n" "help.text" msgid "When you apply formatting to your text by Format - Character, the text stays the same, it is only displayed in another way. On the other hand, when you choose Format - Text or Format - Text - Change Case, the text is permanently changed." -msgstr "" +msgstr "Ha a Formázás - Karakter segítségével formázást alkalmaz a szövegre, a szöveg ugyanaz marad, csak másképp jelenik meg. Ezzel szemben, ha a Formázás - Szöveg vagy a Formázás - Szöveg - Kisbetű – nagybetű lehetőséget választja, a szöveg véglegesen megváltozik." #. p9sab #: text_capital.xhp @@ -17393,7 +17393,7 @@ "par_id321637758600046\n" "help.text" msgid "Align left" -msgstr "" +msgstr "Balra igazítás" #. Q8zi2 #: text_direct_cursor.xhp @@ -17411,7 +17411,7 @@ "par_id321637758600047\n" "help.text" msgid "Centered" -msgstr "" +msgstr "Középen" #. AvKq7 #: text_direct_cursor.xhp @@ -17429,7 +17429,7 @@ "par_id321637758600048\n" "help.text" msgid "Align right" -msgstr "" +msgstr "Jobbra igazítás" #. EuMGF #: text_direct_cursor.xhp @@ -17564,7 +17564,7 @@ "hd_id3156104\n" "help.text" msgid "To Insert a Frame" -msgstr "" +msgstr "Keret beszúrásához" #. yqfuF #: text_frame.xhp @@ -17591,7 +17591,7 @@ "hd_id3145115\n" "help.text" msgid "To Edit a Frame" -msgstr "" +msgstr "Keret szerkesztéséhez" #. oPhnC #: text_frame.xhp @@ -17672,7 +17672,7 @@ "hd_id3148701\n" "help.text" msgid "To Link Frames" -msgstr "" +msgstr "Keretek összekapcsolása" #. AqEGm #: text_frame.xhp @@ -19013,7 +19013,7 @@ "par_id3153137\n" "help.text" msgid "Paragraph Styles give you greater control over numbering that you apply in a document. When you change the list style assigned to a paragraph style, then the numbering format in the list style is applied automatically to all paragraphs using the paragraph style." -msgstr "" +msgstr "A bekezdésstílusok segítségével jobban szabályozhatja a dokumentumban alkalmazott számozást. Ha megváltoztatja a bekezdésstílushoz rendelt listastílust, akkor a bekezdésstílust használó összes bekezdésre automatikusan a listastílus számozási formátuma kerül alkalmazásra." #. M3VEp #: using_numbering.xhp @@ -19175,7 +19175,7 @@ "par_id3145113\n" "help.text" msgid "To look up the word in a different language, click the Language button, and select one of the installed thesaurus languages. A thesaurus library may not be available for all installed languages. You can install languages with a thesaurus library from the Extensions web page." -msgstr "" +msgstr "Ha más nyelven szeretné megkeresni a szót, kattintson a Nyelv gombra, és válassza ki a telepített szókincstár nyelvek egyikét. Előfordulhat, hogy nem minden telepített nyelvhez áll rendelkezésre szókincstár. A szókincstárral rendelkező nyelveket a Kiterjesztések weboldalon telepítheti." #. tLEYs #: using_thesaurus.xhp diff -Nru libreoffice-7.4.6/translations/source/id/basctl/messages.po libreoffice-7.4.7/translations/source/id/basctl/messages.po --- libreoffice-7.4.6/translations/source/id/basctl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/basctl/messages.po 2023-05-03 15:22:13.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-06 20:18+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" +"Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1556766984.000000\n" #. fniWp @@ -404,7 +404,7 @@ #: basctl/inc/strings.hrc:89 msgctxt "RID_STR_DLGIMP_CLASH_RENAME" msgid "Rename" -msgstr "Ganti Nama" +msgstr "Nama Ulang" #. FCqSS #: basctl/inc/strings.hrc:90 @@ -433,7 +433,7 @@ "\n" "$(ARG1)\n" "\n" -"Ganti nama dialog untuk mempertahankan dialog tersebut atau timpa dialog yang sudah ada.\n" +"Nama ulang dialog untuk mempertahankan dialog tersebut atau timpa dialog yang sudah ada.\n" " " #. FRQSJ diff -Nru libreoffice-7.4.6/translations/source/id/basic/messages.po libreoffice-7.4.7/translations/source/id/basic/messages.po --- libreoffice-7.4.6/translations/source/id/basic/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/basic/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2021-12-06 02:38+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507241847.000000\n" #. CacXi @@ -230,7 +230,7 @@ #: basic/inc/basic.hrc:67 msgctxt "RID_BASIC_START" msgid "Renaming on different drives impossible." -msgstr "Mengganti nama pada media yang berbeda tidak dimungkinkan." +msgstr "Tidak dimungkinkan menamai ulang peranti yang berbeda \\." #. 8gEYf #: basic/inc/basic.hrc:68 diff -Nru libreoffice-7.4.6/translations/source/id/chart2/messages.po libreoffice-7.4.7/translations/source/id/chart2/messages.po --- libreoffice-7.4.6/translations/source/id/chart2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/chart2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" +"Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1550758914.000000\n" #. NCRDD @@ -253,7 +253,7 @@ #: chart2/inc/strings.hrc:48 msgctxt "STR_PAGE_APPEARANCE" msgid "Appearance" -msgstr "Kemunculan" +msgstr "Penampilan" #. mvWu8 #: chart2/inc/strings.hrc:49 @@ -631,7 +631,7 @@ #: chart2/inc/strings.hrc:111 msgctxt "STR_ACTION_EDIT_3D_VIEW" msgid "Edit 3D view" -msgstr "Sunting tampilan 3D" +msgstr "Sunting tilikan 3D" #. REBbR #: chart2/inc/strings.hrc:112 @@ -1643,7 +1643,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:175 msgctxt "dlg_InsertErrorBars|extended_tip|RB_PERCENT" msgid "Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area." -msgstr "Menampilkan persentase. Tampilannya merujuk pada titik data yang terkait. Atur persentase dalam wilayah Parameter." +msgstr "Menampilkan persentase. Tayangannya merujuk pada titik data yang terkait. Atur persentase dalam wilayah Parameter." #. tSBH9 #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:200 @@ -3005,19 +3005,19 @@ #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:150 msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Z_ROTATION" msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings." -msgstr "Menata putaran bagan pada sumbu Z. Pratinjau akan menanggapi pengaturan baru ini." +msgstr "Menata putaran bagan pada sumbu Z. Pratilik akan menanggapi pengaturan baru ini." #. AyMWn #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:168 msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Y_ROTATION" msgid "Sets the rotation of the chart on the y axis. The preview responds to the new settings." -msgstr "Menata putaran bagan pada sumbu Y. Pratinjau akan menanggapi pengaturan baru ini." +msgstr "Menata putaran bagan pada sumbu Y. Pratilik akan menanggapi pengaturan baru ini." #. EGS4B #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:186 msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_X_ROTATION" msgid "Sets the rotation of the chart on the x axis. The preview responds to the new settings." -msgstr "Menata putaran bagan pada sumbu X. Pratinjau akan menanggapi pengaturan baru ini." +msgstr "Menata putaran bagan pada sumbu X. Pratilik akan menanggapi pengaturan baru ini." #. RGQDC #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:92 @@ -3167,13 +3167,13 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:427 msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text" msgid "Light Preview" -msgstr "Pratinjau Cahaya" +msgstr "Pratilik Cahaya" #. tQBhd #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:485 msgctxt "tp_3D_SceneIllumination|extended_tip|tp_3D_SceneIllumination" msgid "Set the light sources for the 3D view." -msgstr "Tetapkan sumber cahaya untuk tampilan 3D." +msgstr "Tetapkan sumber cahaya untuk tilikan 3D." #. XRVrG #: chart2/uiconfig/ui/tp_AxisPositions.ui:44 @@ -3503,7 +3503,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:248 msgctxt "tp_ChartType|extended_tip|stack" msgid "Displays stacked series for Line charts." -msgstr "Menampilkan seri bertumpuk untuk bagan Garis." +msgstr "Menayangkan seri bertumpuk untuk bagan Garis." #. KfD2L #: chart2/uiconfig/ui/tp_ChartType.ui:266 @@ -3515,7 +3515,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:274 msgctxt "tp_ChartType|extended_tip|ontop" msgid "Stack series display values on top of each other." -msgstr "Seri tumpukan menampilkan nilai di atas satu sama lain." +msgstr "Seri tumpukan menayangkan nilai di atas satu sama lain." #. C7JxK #: chart2/uiconfig/ui/tp_ChartType.ui:285 @@ -3527,7 +3527,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:293 msgctxt "tp_ChartType|extended_tip|percent" msgid "Stack series display values as percent." -msgstr "Seri tumpukan menampilkan nilai sebagai persen." +msgstr "Seri tumpukan menayangkan nilai sebagai persen." #. ijuPy #: chart2/uiconfig/ui/tp_ChartType.ui:304 @@ -3617,7 +3617,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:47 msgctxt "tp_DataLabel|extended_tip|CB_VALUE_AS_NUMBER" msgid "Displays the absolute values of the data points." -msgstr "Menampilkan nilai absolut dari titik data." +msgstr "Menayangkan nilai absolut dari titik data." #. QFsau #: chart2/uiconfig/ui/tp_DataLabel.ui:58 @@ -3629,7 +3629,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:66 msgctxt "tp_DataLabel|extended_tip|CB_VALUE_AS_PERCENTAGE" msgid "Displays the percentage of the data points in each column." -msgstr "Menampilkan presentase titik data di tiap kolom." +msgstr "Menayangkan persentase titik data di tiap kolom." #. k4iPb #: chart2/uiconfig/ui/tp_DataLabel.ui:77 @@ -3653,7 +3653,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:104 msgctxt "tp_DataLabel|extended_tip|CB_SYMBOL" msgid "Displays the legend icons next to each data point label." -msgstr "Menampilkan ikon legenda di sisi tiap label poin data." +msgstr "Menayangkan ikon legenda di sisi tiap label poin data." #. K3uFN #: chart2/uiconfig/ui/tp_DataLabel.ui:115 @@ -4049,13 +4049,13 @@ #: chart2/uiconfig/ui/tp_DataSource.ui:426 msgctxt "tp_DataSource|extended_tip|EDT_CATEGORIES" msgid "Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the Select data range button." -msgstr "Menampilkan alamat sumber rentang dari kategori (teks yang bisa Anda lihat pada sumbu x kategori bagan). Bagi bagan XY, kotak teks mengandung sumber rentang label data yang mana ditampilkan bagi titik-titik data. Untuk mengecilkan dialog sembari Anda memilih rentang data pada Calc, klik tombol Pilih rentang data." +msgstr "Menayangkan alamat sumber rentang dari kategori (teks yang bisa Anda lihat pada sumbu x kategori bagan). Bagi bagan XY, kotak teks mengandung sumber rentang label data yang mana ditayangkan bagi titik-titik data. Untuk mengecilkan dialog sembari Anda memilih rentang data pada Calc, klik tombol Pilih rentang data." #. EYFEo #: chart2/uiconfig/ui/tp_DataSource.ui:444 msgctxt "tp_DataSource|extended_tip|IMB_RANGE_CAT" msgid "Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the Select data range button." -msgstr "Menampilkan alamat sumber rentang dari kategori (teks yang bisa Anda lihat pada sumbu x kategori bagan). Bagi bagan XY, kotak teks mengandung sumber rentang label data yang mana ditampilkan bagi titik-titik data. Untuk mengecilkan dialog sembari Anda memilih rentang data pada Calc, klik tombol Pilih rentang data." +msgstr "Menayangkan alamat sumber rentang dari kategori (teks yang bisa Anda lihat pada sumbu x kategori bagan). Bagi bagan XY, kotak teks mengandung sumber rentang label data yang mana ditayangkan bagi titik-titik data. Untuk mengecilkan dialog sembari Anda memilih rentang data pada Calc, klik tombol Pilih rentang data." #. YwALA #: chart2/uiconfig/ui/tp_DataSource.ui:481 @@ -4085,7 +4085,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:87 msgctxt "tp_ErrorBars|extended_tip|RB_CONST" msgid "Displays constant values that you specify in the Parameters area." -msgstr "Menampilkan nilai konstanta yang Anda nyatakan dalam wilayah Parameter." +msgstr "Menayangkan nilai konstanta yang Anda nyatakan dalam wilayah Parameter." #. Njqok #: chart2/uiconfig/ui/tp_ErrorBars.ui:99 @@ -4097,7 +4097,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:110 msgctxt "tp_ErrorBars|extended_tip|RB_PERCENT" msgid "Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area." -msgstr "Menampilkan persentase. Tampilannya merujuk pada titik data yang terkait. Atur persentase dalam wilayah Parameter." +msgstr "Menayangkan persentase. Tayangannya merujuk pada titik data yang terkait. Atur persentase dalam wilayah Parameter." #. qCQY8 #: chart2/uiconfig/ui/tp_ErrorBars.ui:137 @@ -4205,7 +4205,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:402 msgctxt "tp_ErrorBars|extended_tip|MF_POSITIVE" msgid "Enter the value to add to the displayed value as the positive error value." -msgstr "Masukkan nilai untuk ditambahkan ke nilai yang ditampilkan sebagai nilai galat positif." +msgstr "Masukkan nilai untuk ditambahkan ke nilai yang ditayangkan sebagai nilai galat positif." #. D5XCD #: chart2/uiconfig/ui/tp_ErrorBars.ui:421 @@ -4235,7 +4235,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:486 msgctxt "tp_ErrorBars|extended_tip|MF_NEGATIVE" msgid "Enter the value to subtract from the displayed value as the negative error value." -msgstr "Masukkan nilai untuk dikurangkan dari nilai yang ditampilkan sebagai nilai galat positif." +msgstr "Masukkan nilai untuk dikurangkan dari nilai yang ditayangkan sebagai nilai galat positif." #. S8d3Y #: chart2/uiconfig/ui/tp_ErrorBars.ui:504 @@ -4409,7 +4409,7 @@ #: chart2/uiconfig/ui/tp_PolarOptions.ui:99 msgctxt "tp_PolarOptions|extended_tip|NF_STARTING_ANGLE" msgid "Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value." -msgstr "Masukkan sudut awal antara 0 dan 359 derajat. Anda juga dapat mengklik panah untuk mengubah nilai yang ditampilkan." +msgstr "Masukkan sudut awal antara 0 dan 359 derajat. Anda juga dapat mengklik panah untuk mengubah nilai yang ditayangkan." #. prqEa #: chart2/uiconfig/ui/tp_PolarOptions.ui:113 @@ -4553,7 +4553,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:63 msgctxt "tp_Scale|extended_tip|CBX_REVERSE" msgid "Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction." -msgstr "Menentukan letak nilai terendah dan nilai tertinggi saat ditampilkan pada sumbu. Keadaan yang tidak dicentang adalah arah matematisnya." +msgstr "Menentukan letak nilai terendah dan nilai tertinggi saat ditayangkan pada sumbu. Keadaan yang tidak dicentang adalah arah matematisnya." #. qBbBL #: chart2/uiconfig/ui/tp_Scale.ui:75 @@ -4757,7 +4757,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:582 msgctxt "tp_Scale|extended_tip|EDT_ORIGIN" msgid "Specifies at which position to display the values along the axis." -msgstr "Menyatakan pada posisi mana menampilkan nilai sepanjang sumbu." +msgstr "Menentukan pada posisi mana menayangkan nilai sepanjang sumbu." #. Dj9GB #: chart2/uiconfig/ui/tp_Scale.ui:594 @@ -4799,7 +4799,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:68 msgctxt "tp_SeriesToAxis|extended_tip|RBT_OPT_AXIS_2" msgid "Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active." -msgstr "Mengubah skala sumbu Y. Sumbu ini hanya akan terlihat apabila sedikitnya satu seri data diberikan padanya dan tampilan sumbu sedang dalam keadaan aktif." +msgstr "Mengubah skala sumbu Y. Sumbu ini hanya akan terlihat apabila sedikitnya satu seri data diberikan padanya dan tilikan sumbu sedang dalam keadaan aktif." #. hV3cT #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:84 @@ -5441,13 +5441,13 @@ #: chart2/uiconfig/ui/wizelementspage.ui:269 msgctxt "wizelementspage|show" msgid "_Display legend" -msgstr "Tampilkan legen_da" +msgstr "Tayangkan legen_da" #. QWAen #: chart2/uiconfig/ui/wizelementspage.ui:277 msgctxt "wizelementspage|extended_tip|show" msgid "Specifies whether to display a legend for the chart." -msgstr "Menentukan apakah Anda hendak menampilkan legenda untuk bagan." +msgstr "Menentukan apakah Anda hendak menayangkan legenda untuk bagan." #. ejdzz #: chart2/uiconfig/ui/wizelementspage.ui:295 @@ -5513,7 +5513,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:429 msgctxt "wizelementspage|extended_tip|x" msgid "Displays grid lines that are perpendicular to the x-axis." -msgstr "Menampilkan garis kisi yang tegak lurus terhadap sumbu x." +msgstr "Menayangkan garis kisi yang tegak lurus terhadap sumbu x." #. KPGMU #: chart2/uiconfig/ui/wizelementspage.ui:440 @@ -5525,7 +5525,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:448 msgctxt "wizelementspage|extended_tip|y" msgid "Displays grid lines that are perpendicular to the y-axis." -msgstr "Menampilkan garis kisi yang tegak lurus terhadap sumbu y." +msgstr "Menayangkan garis kisi yang tegak lurus terhadap sumbu y." #. G65v4 #: chart2/uiconfig/ui/wizelementspage.ui:459 @@ -5537,10 +5537,10 @@ #: chart2/uiconfig/ui/wizelementspage.ui:467 msgctxt "wizelementspage|extended_tip|z" msgid "Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts." -msgstr "Menampilkan garis kisi yang tegak lurus terhadap sumbu z. Pilihan ini hanya tersedia bagi bagan 3D." +msgstr "Menayangkan garis kisi yang tegak lurus terhadap sumbu z. Pilihan ini hanya tersedia bagi bagan 3D." #. wNqwZ #: chart2/uiconfig/ui/wizelementspage.ui:482 msgctxt "wizelementspage|label2" msgid "Display Grids" -msgstr "Tampilkan Kisi" +msgstr "Tayangkan Kisi" diff -Nru libreoffice-7.4.6/translations/source/id/connectivity/messages.po libreoffice-7.4.7/translations/source/id/connectivity/messages.po --- libreoffice-7.4.6/translations/source/id/connectivity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/connectivity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2022-08-19 12:58+0000\n" -"Last-Translator: raniaamina \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1543751768.000000\n" #. 9KHB8 @@ -135,19 +135,19 @@ #: connectivity/inc/strings.hrc:44 msgctxt "STR_QUERY_NOT_LIKE_TOO_COMPLEX" msgid "The query cannot be executed. The “NOT LIKE” condition is too complex." -msgstr "Kueri tidak dapat dijalankan. Kondisi “NOT LIKE” terlalu rumit." +msgstr "Kueri tidak dapat dijalankan. Syarat “NOT LIKE” terlalu rumit." #. AaZzs #: connectivity/inc/strings.hrc:45 msgctxt "STR_QUERY_LIKE_WILDCARD" msgid "The query cannot be executed. The “LIKE” condition contains wildcard in the middle." -msgstr "Kueri tidak dapat dijalankan. Kondisi “LIKE” berisi wildcard di tengah." +msgstr "Kueri tidak dapat dijalankan. Syarat “LIKE” berisi wildcard di tengah." #. GN6F9 #: connectivity/inc/strings.hrc:46 msgctxt "STR_QUERY_LIKE_WILDCARD_MANY" msgid "The query cannot be executed. The “LIKE” condition contains too many wildcards." -msgstr "Kueri tidak dapat dijalankan. Kondisi \"LIKE\" berisi terlalu banyak wildcard." +msgstr "Kueri tidak dapat dijalankan. Syarat \"LIKE\" berisi terlalu banyak wildcard." #. LreLr #: connectivity/inc/strings.hrc:47 @@ -226,13 +226,13 @@ #: connectivity/inc/strings.hrc:59 msgctxt "STR_INVALID_VIEW_DESCRIPTOR_ERROR" msgid "Could not create view: invalid object descriptor." -msgstr "Tak dapat membuat tampilan: deskriptor objek tidak sah." +msgstr "Tak dapat membuat tilikan: deskriptor objek tidak sah." #. BrHQp #: connectivity/inc/strings.hrc:60 msgctxt "STR_VIEW_NO_COMMAND_ERROR" msgid "Could not create view: no command object." -msgstr "Tak dapat membuat tampilan: tidak ada objek perintah." +msgstr "Tak dapat membuat tilikan: tidak ada objek perintah." #. F6ygP #: connectivity/inc/strings.hrc:61 @@ -604,7 +604,7 @@ #: connectivity/inc/strings.hrc:127 msgctxt "STR_DATA_CANNOT_SELECT_UNFILTERED" msgid "Unable to display the complete table content. Please apply a filter." -msgstr "Tak dapat menampilkan isi tabel secara menyeluruh. Mohon terapkan penyaring." +msgstr "Tak dapat menampilkan isi tabel secara menyeluruh. Mohon terapkan penapis." #. wH3TZ msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/id/cui/messages.po libreoffice-7.4.7/translations/source/id/cui/messages.po --- libreoffice-7.4.6/translations/source/id/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/cui/messages.po 2023-05-03 15:22:13.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-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" +"Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564987944.000000\n" #. GyY9M @@ -247,7 +247,7 @@ #: cui/inc/strings.hrc:39 msgctxt "RID_SVXSTR_KEY_FILTER_PATH" msgid "Filters" -msgstr "Penyaring" +msgstr "Penapis" #. 2DKUC #: cui/inc/strings.hrc:40 @@ -388,13 +388,13 @@ #: cui/inc/strings.hrc:67 msgctxt "RID_SVXSTR_RENAME_MENU" msgid "Rename Menu" -msgstr "Ganti Nama Menu" +msgstr "Nama Ulang Menu" #. CmDaN #: cui/inc/strings.hrc:68 msgctxt "RID_SVXSTR_RENAME_TOOLBAR" msgid "Rename Toolbar" -msgstr "Ganti Nama Bilah Alat" +msgstr "Nama Ulang Bilah Alat" #. GsaZE #: cui/inc/strings.hrc:69 @@ -1021,19 +1021,19 @@ #: cui/inc/strings.hrc:178 msgctxt "RID_SVXSTR_EVENT_VIEWCREATED" msgid "View created" -msgstr "Tampilan dibuat" +msgstr "Tilikan dibuat" #. XN9Az #: cui/inc/strings.hrc:179 msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW" msgid "View is going to be closed" -msgstr "Tampilan akan ditutup" +msgstr "Tilikan akan ditutup" #. a9qty #: cui/inc/strings.hrc:180 msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW" msgid "View closed" -msgstr "Tampilan ditutup" +msgstr "Tilikan ditutup" #. dDunN #: cui/inc/strings.hrc:181 @@ -1374,7 +1374,7 @@ #: cui/inc/strings.hrc:245 msgctxt "RID_SVXSTR_RENAMEFAILED" msgid "The object could not be renamed." -msgstr "Objek tidak dapat diganti nama." +msgstr "Objek tidak dapat dinamai ulang." #. eevjm #: cui/inc/strings.hrc:246 @@ -2208,7 +2208,7 @@ #: cui/inc/tipoftheday.hrc:56 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Explore the ten different functions in the status bar (at the bottom of the document window). Place the cursor over each field for an explanation. If not visible, use View ▸ Status Bar." -msgstr "Jelajahi sepuluh fungsi berbeda di bilah status (di bagian bawah jendela dokumen). Tempatkan kursor di atas setiap ruas untuk penjelasan. Jika tidak terlihat, gunakan Tampilan ▸ Bilah Status." +msgstr "Jelajahi sepuluh fungsi berbeda di bilah status (di bagian bawah jendela dokumen). Tempatkan kursor di atas setiap ruas untuk penjelasan. Jika tidak terlihat, gunakan Tilikan ▸ Bilah Status." #. 7JRpP #: cui/inc/tipoftheday.hrc:57 @@ -2244,13 +2244,13 @@ #: cui/inc/tipoftheday.hrc:62 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Icon Theme." -msgstr "Pilih himpunan ikon yang berbeda dari Perkakas ▸ Pilihan ▸ %PRODUCTNAME ▸ Tampilan ▸ Tema Ikon." +msgstr "Pilih himpunan ikon yang berbeda dari Perkakas ▸ Pilihan ▸ %PRODUCTNAME ▸ Tilikan ▸ Tema Ikon." #. Udk4L #: cui/inc/tipoftheday.hrc:63 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can display a number as a fraction (0.125 = 1/8): Format ▸ Cells, under Numbers tab in the Category select Fraction." -msgstr "Anda dapat menampilkan angka sebagai pecahan (0,125 = 1/8): Format ▸ Sel, di bawah tab Angka di Kategori pilih Pecahan." +msgstr "Anda dapat menayangkan angka sebagai pecahan (0,125 = 1/8): Format ▸ Sel, di bawah tab Angka di Kategori pilih Pecahan." #. VxuFm #: cui/inc/tipoftheday.hrc:64 @@ -2292,14 +2292,14 @@ #: 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 "Gunakan Tampilan ▸ Sorotan Nilai untuk menampilkan konten sel dalam warna: Teks/hitam, Rumus/hijau, Bilangan/biru, Sel terlindungi/latar belakang abu-abu." +msgstr "Gunakan Tilikan ▸ Sorotan Nilai untuk menayangkan konten sel dalam warna: Teks/hitam, Rumus/hijau, Bilangan/biru, Sel terlindungi/latar belakang abu-abu." #. kKdqp #. local help missing #: cui/inc/tipoftheday.hrc:71 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create different master pages in a presentation template: View ▸ Master Slide and Slide ▸ New Master (or per toolbar or right click in slide pane)." -msgstr "Anda dapat membuat halaman master yang berbeda dalam templat presentasi: Tampilan ▸ Salindia Induk dan Salindia ▸ Master Baru (atau per bilah alat atau klik kanan di panel salindia)." +msgstr "Anda dapat membuat halaman induk yang berbeda dalam templat presentasi: Tilikan ▸ Salindia Induk dan Salindia ▸ Induk Baru (atau per bilah alat atau klik kanan di panel salindia)." #. b3KPF #: cui/inc/tipoftheday.hrc:72 @@ -2311,7 +2311,7 @@ #: cui/inc/tipoftheday.hrc:73 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Display photos or images with different shapes in Writer. Insert and select shape, then Insert ▸ Image. To adjust image, right-click on selected shape and choose Area." -msgstr "Tampilkan foto atau gambar dengan bentuk berbeda di Writer. Sisipkan dan pilih bentuk, lalu Sisipkan ▸ Gambar. Untuk menyesuaikan gambar, klik kanan pada bentuk yang dipilih dan pilih Wilayah." +msgstr "Tayangkan foto atau gambar dengan bentuk berbeda di Writer. Sisipkan dan pilih bentuk, lalu Sisip ▸ Citra. Untuk menyesuaikan gambar, klik kanan pada bentuk yang dipilih dan pilih Wilayah." #. si5Y9 #: cui/inc/tipoftheday.hrc:74 @@ -2501,7 +2501,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 "Anda dapat beralih antara nama ruas dan nilai aktual melalui menu Tampilan ▸ Nama Ruas (atau %MOD1 + F9)." +msgstr "Anda dapat beralih antara nama ruas dan nilai aktual melalui menu Tilikan ▸ Nama Ruas (atau %MOD1 + F9)." #. 5ZVTy #: cui/inc/tipoftheday.hrc:107 @@ -2581,7 +2581,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 "Dengan menu Pertunjukan Salindia ▸ Pertunjukan Salindia Ubahan, susun ulang dan pilih salindia yang sesuai dengan tampilan salindia dan kebutuhan pemirsa Anda." +msgstr "Dengan menu Pertunjukan Salindia ▸ Pertunjukan Salindia Ubahan, susun ulang dan pilih salindia yang sesuai dengan pertunjukkan salindia dan kebutuhan pemirsa Anda." #. ZZZZo #: cui/inc/tipoftheday.hrc:120 @@ -2623,7 +2623,7 @@ #: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells." -msgstr "Klik kanan pada bilah status di %PRODUCTNAME Calc dan pilih \"Hitung yang terpilih\" untuk menampilkan jumlah sel yang dipilih." +msgstr "Klik kanan pada bilah status di %PRODUCTNAME Calc dan pilih \"Cacah yang terpilih\" untuk menayangkan jumlah sel terpilih." #. h7afF #: cui/inc/tipoftheday.hrc:127 @@ -2647,7 +2647,7 @@ #: cui/inc/tipoftheday.hrc:130 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via View ▸ User Interface." -msgstr "Anda dapat mengubah tampilan %PRODUCTNAME melalui Tampilan ▸ Antarmuka Pengguna." +msgstr "Anda dapat mengubah penampilan %PRODUCTNAME melalui Tilikan ▸ Antarmuka Pengguna." #. J853i #: cui/inc/tipoftheday.hrc:131 @@ -2659,7 +2659,7 @@ #: 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 "Anda dapat menampilkan rumus alih-alih hasil melalui menu Tampilan ▸ Tampilkan Rumus (atau Perkakas ▸ Pilihan ▸ %PRODUCTNAME Calc ▸ Tampilan ▸ Tampilan ▸ Rumus)." +msgstr "Anda dapat menayangkan rumus alih-alih hasil melalui menu Tilikan ▸ Tilikkan Rumus (atau Perkakas ▸ Pilihan ▸ %PRODUCTNAME Calc ▸ Tilikan ▸ Tayangan ▸ Rumus)." #. bY8ve #: cui/inc/tipoftheday.hrc:133 @@ -2671,7 +2671,7 @@ #: 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 "Seorang yang kidal? Aktifkan menu Perkakas ▸ Pilihan ▸ Pengaturan Bahasa ▸ Bahasa ▸ Bahasa Asia dan cek menu Perkakas ▸ Pilihan ▸ %PRODUCTNAME Writer ▸ Tampilan ▸ Penggaris ▸ Rata kanan yang akan menampilkan bilah gulir ke kiri." +msgstr "Seorang yang kidal? Aktifkan menu Perkakas ▸ Pilihan ▸ Pengaturan Bahasa ▸ Bahasa ▸ Bahasa Asia dan cek menu Perkakas ▸ Pilihan ▸ %PRODUCTNAME Writer ▸ Tilikan ▸ Penggaris ▸ Rata kanan yang akan menayangkan bilah gulir ke kiri." #. Bs9w9 #: cui/inc/tipoftheday.hrc:135 @@ -2725,7 +2725,7 @@ #: cui/inc/tipoftheday.hrc:143 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." -msgstr "Pilih \"Tampilan Hierarkis\" di bilah sisi Gaya untuk melihat hubungan antara gaya." +msgstr "Pilih \"Tilikan Hierarkis\" di bilah sisi Gaya untuk melihat hubungan antara gaya." #. ikpFK #: cui/inc/tipoftheday.hrc:144 @@ -2762,7 +2762,7 @@ #: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”." -msgstr "Ingin menampilkan nilai tertinggi dalam lembar sebar saja? Pilih menu Data ▸ Penyaring Otomatis, klik panah drop-down, dan pilih \"Top10\"." +msgstr "Ingin menayangkan nilai tertinggi dalam lembar sebar saja? Pilih menu Data ▸ Penapis Otomatis, klik panah seret-turun, dan pilih \"Top10\"." #. F4CEp #: cui/inc/tipoftheday.hrc:150 @@ -2829,7 +2829,7 @@ #: cui/inc/tipoftheday.hrc:160 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button by going to Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Mouse ▸ Middle button." -msgstr "Anda dapat menyesuaikan tombol tengah tetikus dengan pergi ke Perkakas ▸ Pilihan ▸ %PRODUCTNAME ▸ Tampilan ▸ Tetikus ▸ Tombol tengah." +msgstr "Anda dapat menyesuaikan tombol tengah tetikus dengan pergi ke Perkakas ▸ Pilihan ▸ %PRODUCTNAME ▸ Tilikan ▸ Tetikus ▸ Tombol tengah." #. qQsXD #: cui/inc/tipoftheday.hrc:161 @@ -2898,7 +2898,7 @@ #: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor." -msgstr "Hapus centang Perkakas ▸ Pilihan %PRODUCTNAME Calc ▸ Tampilan ▸ Zum: \"Selaraskan lembar\" sehingga setiap lembar di Calc memiliki faktor zum sendiri." +msgstr "Hapus centang Perkakas ▸ Pilihan %PRODUCTNAME Calc ▸ Tilikan ▸ Zum: \"Selaraskan lembar\" sehingga setiap lembar di Calc memiliki faktor zum sendiri." #. qK7Xz #: cui/inc/tipoftheday.hrc:172 @@ -2943,7 +2943,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 "Nomor Anda ditampilkan sebagai ### di lembar sebar Anda? Kolom terlalu sempit untuk menampilkan semua digit." +msgstr "Nomor Anda ditayangkan sebagai ### di lembar sebar Anda? Kolom terlalu sempit untuk menayangkan semua digit." #. vanqG #: cui/inc/tipoftheday.hrc:179 @@ -2987,7 +2987,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 "Ingin mengekspor rumus ke CSV? Berkas ▸ Simpan Sebagai ▸ Ketik: Teks CSV, centang \"Sunting pengaturan penyaring\", dan centang \"Simpan rumus sel\" pada dialog berikutnya." +msgstr "Ingin mengekspor rumus ke CSV? Berkas ▸ Simpan Sebagai ▸ Ketik: Teks CSV, centang \"Sunting pengaturan penapis\", dan centang \"Simpan rumus sel\" pada dialog berikutnya." #. XLN9z #: cui/inc/tipoftheday.hrc:186 @@ -3094,7 +3094,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 "Pertahankan tajuk kolom dari lembar agar terlihat saat menggulirkan garis melalui Tampilan ▸ Bekukan Sel ▸ Bekukan Baris Pertama." +msgstr "Pertahankan kepala kolom dari lembar agar terlihat saat menggulirkan garis melalui Tilikan ▸ Bekukan Sel ▸ Bekukan Baris Pertama." #. mCfdK #: cui/inc/tipoftheday.hrc:203 @@ -3142,7 +3142,7 @@ #: 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 "Punya banyak gambar di dokumen Writer Anda? Percepat tampilan dengan menonaktifkan Tampilan ▸ Gambar dan bagan." +msgstr "Punya banyak citra di dokumen Writer Anda? Percepat tayangan dengan menonaktifkan Tilikan ▸ Citra dan Bagan." #. Y85ij #: cui/inc/tipoftheday.hrc:211 @@ -3155,7 +3155,7 @@ #: cui/inc/tipoftheday.hrc:212 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…" -msgstr "Ganti nama salindia Anda di Impress untuk membantu Anda menentukan interaksi \"Lihat halaman\" dan memiliki ringkasan yang lebih eksplisit daripada Salindia1, Salindia2 …" +msgstr "Menamai ulang salindia Anda di Impress untuk membantu Anda menentukan interaksi \"Tuju halaman\" dan memiliki ringkasan yang lebih eksplisit daripada Salindia1, Salindia2 …" #. JBgEb #: cui/inc/tipoftheday.hrc:213 @@ -3327,7 +3327,7 @@ #: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Toolbars are contextual—they open depending on the context. If you do not want that, uncheck them from View ▸ Toolbars." -msgstr "Bilah alat itu kontekstual—mereka membuka bergantung pada konteks. Jika Anda tidak menginginkan itu, hapus centang dari Tampilan ▸ Bilah Alat." +msgstr "Bilah alat itu kontekstual—bilah alat yang membuka bergantung pada konteks. Jika Anda tidak menginginkannya, hapus centang dari Tilikan ▸ Bilah Alat." #. WjXyE #: cui/inc/tipoftheday.hrc:241 @@ -3358,7 +3358,7 @@ #: cui/inc/tipoftheday.hrc:245 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display Formatting to specify which non-printing characters are displayed." -msgstr "Pilih pilihan di Perkakas ▸ Pilihan ▸ %PRODUCTNAME Writer ▸ Bantuan Pemformatan ▸ Tampilkan Pemformatan untuk menentukan karakter non-cetak mana yang akan ditampilkan." +msgstr "Pilih pilihan di Perkakas ▸ Pilihan ▸ %PRODUCTNAME Writer ▸ Bantuan Pemformatan ▸ Tayangkan Pemformatan untuk menentukan karakter non-cetak mana yang akan ditayangkan." #. 9cyVB #: cui/inc/tipoftheday.hrc:246 @@ -3376,7 +3376,7 @@ #: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation." -msgstr "Hilangkan centang Pertunjukan Salindia ▸ Pengaturan ▸ Presentasi selalu di atas jika Anda memerlukan program lain menampilkan jendelanya di depan presentasi Anda." +msgstr "Hilangkan centang Pertunjukan Salindia ▸ Pengaturan ▸ Presentasi selalu di atas jika Anda memerlukan program lain menayangkan jendelanya di depan presentasi Anda." #. sogyj #: cui/inc/tipoftheday.hrc:249 @@ -3497,7 +3497,7 @@ #: cui/inc/tipoftheday.hrc:267 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline." -msgstr "Seret & jatuhkan sel dari Calc ke dalam tampilan normal dari sebuah salindia membuat suatu tabel; ke dalam tampilan kerangka, setiap sel membuat suatu baris dalam kerangka." +msgstr "Seret & jatuhkan sel dari Calc ke dalam tilikan normal dari sebuah salindia akan membuat suatu tabel; ke dalam tilikan kerangka, setiap sel membuat suatu baris dalam kerangka." #. DgSwJ #: cui/inc/tipoftheday.hrc:268 @@ -3515,7 +3515,7 @@ #: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and right click a sheet in Sheet tabs above Status bar ▸ Right-To-Left." -msgstr "Untuk menampilkan bilah gulir ke kiri, aktifkan Perkakas ▸ Pilihan ▸ Pengaturan Bahasa ▸ Bahasa ▸ Teks kompleks dan klik kanan lembar di tab Lembar di atas bilah Status ▸ Kanan-Ke-Kiri." +msgstr "Untuk menayangkan bilah gulir ke kiri, aktifkan Perkakas ▸ Pilihan ▸ Pengaturan Bahasa ▸ Bahasa ▸ Teks kompleks dan klik kanan lembar di tab Lembar di atas bilah Status ▸ Kanan-Ke-Kiri." #. gqs9W #: cui/inc/tipoftheday.hrc:271 @@ -3533,7 +3533,7 @@ #: cui/inc/tipoftheday.hrc:273 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" -msgstr "Mengembangkan penyaring XML dan XSLT baru?" +msgstr "Mengembangkan penapis XML dan XSLT baru?" #. C7Ya2 #: cui/inc/tipoftheday.hrc:274 @@ -3678,7 +3678,7 @@ #: cui/inc/treeopt.hrc:37 msgctxt "SID_GENERAL_OPTIONS_RES" msgid "View" -msgstr "Tampilan" +msgstr "Tilikan" #. HCLxc #: cui/inc/treeopt.hrc:38 @@ -3822,7 +3822,7 @@ #: cui/inc/treeopt.hrc:73 msgctxt "SID_SW_EDITOPTIONS_RES" msgid "View" -msgstr "Tampilan" +msgstr "Tilikan" #. MxbiL #: cui/inc/treeopt.hrc:74 @@ -3906,7 +3906,7 @@ #: cui/inc/treeopt.hrc:91 msgctxt "SID_SW_ONLINEOPTIONS_RES" msgid "View" -msgstr "Tampilan" +msgstr "Tilikan" #. 3q8qM #: cui/inc/treeopt.hrc:92 @@ -3972,7 +3972,7 @@ #: cui/inc/treeopt.hrc:110 msgctxt "SID_SC_EDITOPTIONS_RES" msgid "View" -msgstr "Tampilan" +msgstr "Tilikan" #. QMCfy #: cui/inc/treeopt.hrc:111 @@ -4032,7 +4032,7 @@ #: cui/inc/treeopt.hrc:124 msgctxt "SID_SD_EDITOPTIONS_RES" msgid "View" -msgstr "Tampilan" +msgstr "Tilikan" #. UxXLE #: cui/inc/treeopt.hrc:125 @@ -4062,7 +4062,7 @@ #: cui/inc/treeopt.hrc:133 msgctxt "SID_SD_GRAPHIC_OPTIONS_RES" msgid "View" -msgstr "Tampilan" +msgstr "Tilikan" #. et8PK #: cui/inc/treeopt.hrc:134 @@ -4242,7 +4242,7 @@ #: cui/uiconfig/ui/aboutconfigdialog.ui:146 msgctxt "extended_tip|searchEntry" msgid "Type the preference you want to display in the text area" -msgstr "Ketikkan preferensi yang ingin Anda tampilkan di wilayah teks" +msgstr "Ketikkan preferensi yang ingin Anda tayangkan di wilayah teks" #. EhpWF #: cui/uiconfig/ui/aboutconfigdialog.ui:158 @@ -4408,7 +4408,7 @@ #: cui/uiconfig/ui/accelconfigpage.ui:164 msgctxt "accelconfigpage|extended_tip|office" msgid "Displays shortcut keys that are common to all the office suite applications." -msgstr "Menampilkan tombol pintasan yang umum untuk semua aplikasi paket perkantoran." +msgstr "Menayangkan tombol pintasan yang umum untuk semua aplikasi paket perkantoran." #. jjhUE #: cui/uiconfig/ui/accelconfigpage.ui:176 @@ -4420,7 +4420,7 @@ #: cui/uiconfig/ui/accelconfigpage.ui:185 msgctxt "accelconfigpage|extended_tip|module" msgid "Displays shortcut keys for the current office suite application." -msgstr "Menampilkan tombol pintasan untuk aplikasi paket perkantoran saat ini." +msgstr "Menayangkan tombol pintasan untuk aplikasi paket perkantoran saat ini." #. R2nhJ #: cui/uiconfig/ui/accelconfigpage.ui:212 @@ -4516,13 +4516,13 @@ #: cui/uiconfig/ui/accelconfigpage.ui:494 msgctxt "accelconfigpage|extended_tip|function" msgid "Select a function that you want to assign a shortcut key to, click a key combination in the Shortcut keys list, and then click Modify. If the selected function already has a shortcut key, it is displayed in the Keys list." -msgstr "Pilih sebuah fungsi yang anda ingin tetapkan sebagai kunci pintasan, klik sebuah kombinasi kunci dalam senarai kunci Pintasan, dan klik Ubah. Jika fungsi yang dipilih telah memiliki sebuah kunci pintasan, ini ditampilkan dalam senarai Kunci." +msgstr "Pilih sebuah fungsi yang Anda ingin tetapkan suatu kunci pintasan, klik sebuah kombinasi kunci dalam senarai kunci Pintasan, dan klik Ubah. Jika fungsi yang dipilih telah memiliki sebuah kunci pintasan, ini ditayangkan dalam senarai Kunci." #. PzCaG #: cui/uiconfig/ui/accelconfigpage.ui:540 msgctxt "accelconfigpage|extended_tip|keys" msgid "Displays the shortcut keys that are assigned to the selected function." -msgstr "Menampilkan kunci pintasan yang ditetapkan ke fungsi yang dipilih." +msgstr "Menayangkan kunci pintasan yang ditetapkan ke fungsi yang dipilih." #. CqdJF #: cui/uiconfig/ui/accelconfigpage.ui:564 @@ -4762,7 +4762,7 @@ #: cui/uiconfig/ui/additionsdialog.ui:71 msgctxt "menuassignpage|gear_iconAndText" msgid "Detail view" -msgstr "Tampilan terperinci" +msgstr "Tilikan terperinci" #. SoASj #: cui/uiconfig/ui/additionsdialog.ui:82 @@ -4811,7 +4811,7 @@ #: cui/uiconfig/ui/additionsdialog.ui:213 msgctxt "additionsdialog|buttonGear" msgid "Contains commands to modify settings of the additions list such as sorting type or view type." -msgstr "Memuat perintah untuk mengubah pengaturan pengaturan penambahan seperti jenis pengurutan atau jenis tampilan." +msgstr "Memuat perintah untuk mengubah pengaturan pengaturan penambahan seperti jenis pengurutan atau jenis tilikan." #. fUE2f #: cui/uiconfig/ui/additionsfragment.ui:16 @@ -5279,7 +5279,7 @@ #: cui/uiconfig/ui/areatabpage.ui:166 msgctxt "areatabpage|extended_tip|btnusebackground" msgid "Displays the underlying slide background." -msgstr "Menampilkan latar belakang salindia yang mendasarinya." +msgstr "Menayangkan latar belakang salindia yang mendasarinya." #. TFDzi #: cui/uiconfig/ui/areatabpage.ui:220 @@ -5441,7 +5441,7 @@ #: cui/uiconfig/ui/baselinksdialog.ui:98 msgctxt "baselinksdialog|extended_tip|UPDATE_NOW" msgid "Updates the selected link so that the most recently saved version of the linked file is displayed in the current document." -msgstr "Memperbarui tautan pilihan jadi versi yang disimpan paling baru dari berkas tertaut ini ditampilkan di dokumen saat ini." +msgstr "Memperbarui tautan pilihan jadi versi yang disimpan paling baru dari berkas tertaut ini ditayangkan di dokumen saat ini." #. A6Mz4 #: cui/uiconfig/ui/baselinksdialog.ui:171 @@ -5507,7 +5507,7 @@ #: cui/uiconfig/ui/baselinksdialog.ui:365 msgctxt "baselinksdialog|extended_tip|AUTOMATIC" msgid "Automatically updates the contents of the link when you open the file. Any changes made in the source file are then displayed in the file containing the link. Linked graphic files can only be updated manually." -msgstr "Secara otomatis memperbarui konten dari taut ketika Anda membuka berkas. Semua perubahan yang terjadi dalam sumber berkas akan di tampilkan dalam berkas yang mengandung taut. Berkas grafik bertaut hanya dapat diperbarui secara manual." +msgstr "Secara otomatis memperbarui konten dari tautan ketika Anda membuka berkas. Semua perubahan yang terjadi dalam sumber berkas akan ditayangkan dalam berkas yang mengandung tautan. Berkas grafik bertaut hanya dapat diperbarui secara manual." #. GzGG5 #: cui/uiconfig/ui/baselinksdialog.ui:376 @@ -5921,13 +5921,13 @@ #: cui/uiconfig/ui/bulletandposition.ui:494 msgctxt "bulletandposition|extended_tip|suffix" msgid "Enter the text to display after the numbering." -msgstr "Masukkan teks yang akan ditampilkan setelah penomoran." +msgstr "Masukkan teks yang akan ditayangkan setelah penomoran." #. u9Bhq #: cui/uiconfig/ui/bulletandposition.ui:511 msgctxt "bulletandposition|extended_tip|prefix" msgid "Enter the text to display before the numbering." -msgstr "Masukkan teks yang akan ditampilkan sebelum penomoran." +msgstr "Masukkan teks yang akan ditayangkan sebelum penomoran." #. GAS5v #: cui/uiconfig/ui/bulletandposition.ui:526 @@ -6119,7 +6119,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:1091 msgctxt "bulletandposition|label" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. 3C4Fe #: cui/uiconfig/ui/calloutdialog.ui:8 @@ -6215,7 +6215,7 @@ #: cui/uiconfig/ui/calloutpage.ui:170 msgctxt "calloutpage|extended_tip|optimal" msgid "Click here to display a single-angled line in an optimal way." -msgstr "Klik di sini untuk menampilkan garis bersudut tunggal secara optimal." +msgstr "Klik di sini untuk menayangkan garis bersudut tunggal secara optimal." #. dD3os #: cui/uiconfig/ui/calloutpage.ui:190 @@ -6779,7 +6779,7 @@ #: cui/uiconfig/ui/charnamepage.ui:905 msgctxt "charnamepage|preview-atkobject" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. CQrvm #: cui/uiconfig/ui/colorconfigwin.ui:35 @@ -7481,7 +7481,7 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:432 msgctxt "extended tip | hexEntry" msgid "Displays and sets the color value in the RGB color model expressed as a hexadecimal number." -msgstr "Menampilkan dan menetapkan nilai warna dalam model warna RGB yang dinyatakan sebagai angka heksadesimal." +msgstr "Menayangkan dan menetapkan nilai warna dalam model warna RGB yang dinyatakan sebagai angka heksadesimal." #. sD6YC #: cui/uiconfig/ui/colorpickerdialog.ui:447 @@ -7779,7 +7779,7 @@ #: cui/uiconfig/ui/connectortabpage.ui:422 msgctxt "connectortabpage|CTL_PREVIEW|tooltip_text" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. PSBFq #: cui/uiconfig/ui/connectortabpage.ui:427 @@ -8007,7 +8007,7 @@ #: cui/uiconfig/ui/cuiimapdlg.ui:266 msgctxt "cuiimapdlg|extended_tip|textentry" msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser. This text can also be used by assistive technologies." -msgstr "Masukkan teks yang ingin Anda tampilkan saat tetikus bertumpu pada hotspot di peramban. Teks ini juga dapat digunakan oleh teknologi bantu." +msgstr "Masukkan teks yang ingin Anda tayangkan saat tetikus bertumpu pada hotspot di peramban. Teks ini juga dapat digunakan oleh teknologi bantu." #. bsgYj #: cui/uiconfig/ui/cuiimapdlg.ui:294 @@ -8259,7 +8259,7 @@ #: cui/uiconfig/ui/dimensionlinestabpage.ui:280 msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_DECIMALPLACES" msgid "Specifies the number of decimal places used for the display of line properties." -msgstr "Menyatakan banyaknya letak desimal yang dipakai untuk menampilkan properti garis." +msgstr "Menentukan banyaknya letak desimal yang dipakai untuk menayangkan properti garis." #. uruYG #: cui/uiconfig/ui/dimensionlinestabpage.ui:295 @@ -8313,7 +8313,7 @@ #: cui/uiconfig/ui/dimensionlinestabpage.ui:440 msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL" msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line." -msgstr "Jika diaktifkan, menampilkan teks sejajar terhadap garis dimensi. Jika dinonaktifkan, teks ditampilkan 90 derajat terhadap garis dimensi." +msgstr "Jika diaktifkan, menayangkan teks sejajar terhadap garis dimensi. Jika dinonaktifkan, teks ditilikkan 90 derajat terhadap garis dimensi." #. QNscD #: cui/uiconfig/ui/dimensionlinestabpage.ui:452 @@ -8325,13 +8325,13 @@ #: cui/uiconfig/ui/dimensionlinestabpage.ui:461 msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT" msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list." -msgstr "Menampilkan atau menyembunyikan unit pengukuran dimensi. Anda dapat memilih unit pengukuran yang ingin anda tampilkan dari senarai." +msgstr "Menilikkan atau menyembunyikan unit pengukuran dimensi. Anda dapat memilih unit pengukuran yang ingin anda tayangkan dari senarai." #. EEaqi #: 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 "Tampilkan atau sembunyikan unit pengukuran dimensi. Anda juga dapat memilih unit pengukuran yang ingin Anda tampilkan dari senarai." +msgstr "Menilikkan atau menyembunyikan unit pengukuran dimensi. Anda juga dapat memilih unit pengukuran yang ingin Anda tayangkan dari senarai." #. gX83d #: cui/uiconfig/ui/dimensionlinestabpage.ui:495 @@ -8505,7 +8505,7 @@ #: cui/uiconfig/ui/effectspage.ui:42 msgctxt "effectspage|preview-atkobject" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. fHwN8 #: cui/uiconfig/ui/effectspage.ui:75 @@ -8613,7 +8613,7 @@ #: cui/uiconfig/ui/effectspage.ui:154 msgctxt "effectspage|extended_tip|emphasislb" msgid "Select a character to display over or below the entire length of the selected text." -msgstr "Pilih karakter untuk ditampilkan di atas atau di bawah seluruh panjang teks yang dipilih." +msgstr "Pilih karakter untuk ditayangkan di atas atau di bawah seluruh panjang teks yang dipilih." #. Z6WHC #: cui/uiconfig/ui/effectspage.ui:168 @@ -8631,7 +8631,7 @@ #: cui/uiconfig/ui/effectspage.ui:173 msgctxt "effectspage|extended_tip|positionlb" msgid "Specify where to display the emphasis marks." -msgstr "Tentukan tempat untuk menampilkan tanda penekanan." +msgstr "Tentukan tempat untuk menayangkan tanda penekanan." #. ycUGm #: cui/uiconfig/ui/effectspage.ui:186 @@ -8655,7 +8655,7 @@ #: cui/uiconfig/ui/effectspage.ui:221 msgctxt "effectspage|extended_tip|outlinecb" msgid "Displays the outline of the selected characters. This effect does not work with every font." -msgstr "Tampilkan kerangka dari karakter pilihan. Efek ini tidak tersedia untuk semua fonta." +msgstr "Menayangkan kerangka dari karakter pilihan. Efek ini tidak tersedia untuk semua fonta." #. zanV7 #: cui/uiconfig/ui/effectspage.ui:232 @@ -8907,7 +8907,7 @@ #: cui/uiconfig/ui/effectspage.ui:620 msgctxt "effectspage|a11ywarning" msgid "Accessibility option \"Use automatic font color for screen display\" is active. Font color attributes are not currently used to display text." -msgstr "Pilihan aksesibilitas \"Pakai warna fonta otomatis untuk tampilan layar\" aktif. Atribut warna fonta saat ini tidak sedang dipakai untuk menampilkan teks." +msgstr "Pilihan aksesibilitas \"Pakai warna fonta otomatis untuk tayangan layar\" aktif. Atribut warna fonta saat ini tidak sedang dipakai untuk menayangkan teks." #. AZF8Q #: cui/uiconfig/ui/effectspage.ui:634 @@ -8949,7 +8949,7 @@ #: cui/uiconfig/ui/embossdialog.ui:211 msgctxt "embossdialog|extended_tip|EmbossDialog" msgid "Displays a dialog for creating reliefs." -msgstr "Menampilkan dialog untuk membuat relief." +msgstr "Menayangkan dialog untuk membuat relief." #. RjncS #: cui/uiconfig/ui/entrycontextmenu.ui:12 @@ -9459,7 +9459,7 @@ #: cui/uiconfig/ui/fontfeaturesdialog.ui:161 msgctxt "fontfeaturesdialog|preview-atkobject" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. hib9i #: cui/uiconfig/ui/fontfeaturesdialog.ui:195 @@ -9555,13 +9555,13 @@ #: cui/uiconfig/ui/galleryfilespage.ui:154 msgctxt "galleryfilespage|extended_tip|preview" msgid "Displays or hides a preview of the selected file." -msgstr "Menampilkan atau menyembunyikan pratinjau berkas yang dipilih." +msgstr "Menayangkan atau menyembunyikan pratilik berkas terpilih." #. EmQfr #: cui/uiconfig/ui/galleryfilespage.ui:180 msgctxt "galleryfilespage|image-atkobject" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. iGEBB #: cui/uiconfig/ui/galleryfilespage.ui:208 @@ -9700,7 +9700,7 @@ #: cui/uiconfig/ui/galleryupdateprogress.ui:98 msgctxt "galleryupdateprogress|extended_tip|GalleryUpdateProgress" msgid "Updates the view in the window or in the selected object." -msgstr "Perbarui tampilan pada jendela atau pada objek yang dipilih." +msgstr "Memperbarui tilikan pada jendela atau pada objek terpilih." #. YDCTd #: cui/uiconfig/ui/gradientpage.ui:118 @@ -9772,7 +9772,7 @@ #: cui/uiconfig/ui/gradientpage.ui:228 msgctxt "gradientpage|extended_tip|gradienttypelb" msgid "Select the gradient that you want to apply." -msgstr "Pilih gradien yang anda inginkan untuk diterapkan." +msgstr "Pilih gradien yang ingin Anda terapkan." #. BBKZM #: cui/uiconfig/ui/gradientpage.ui:257 @@ -9904,7 +9904,7 @@ #: cui/uiconfig/ui/gradientpage.ui:734 msgctxt "gradientpage|label2" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. VBG9C #: cui/uiconfig/ui/gradientpage.ui:750 @@ -9994,7 +9994,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:120 msgctxt "hangulhanjaconversiondialog|extended_tip|originalword" msgid "Displays the current selection." -msgstr "Menampilkan pilihan saat ini." +msgstr "Menayangkan pilihan saat ini." #. P2Lhg #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:133 @@ -10006,7 +10006,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:156 msgctxt "hangulhanjaconversiondialog|extended_tip|wordinput" msgid "Displays the first replacement suggestion from the dictionary." -msgstr "Menampilkan saran pengganti pertama dari kamus." +msgstr "Menayangkan saran pengganti pertama dari kamus." #. JQfs4 #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:168 @@ -10054,7 +10054,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335 msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket" msgid "The Hangul part will be displayed in brackets after the Hanja part." -msgstr "Bagian hangul akan ditampilkan dalam kurung setelah bagian Hanja." +msgstr "Bagian Hangul akan ditayangkan dalam kurung setelah bagian Hanja." #. 6guxd #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346 @@ -10066,7 +10066,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355 msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket" msgid "The Hanja part will be displayed in brackets after the Hangul part." -msgstr "Bagian Hanja akan ditampilkan dalam kurung setelah di bagian Hangul." +msgstr "Bagian Hanja akan ditayangkan dalam kurung setelah di bagian Hangul." #. xfRqM #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393 @@ -10078,7 +10078,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402 msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above" msgid "The Hangul part will be displayed as ruby text above the Hanja part." -msgstr "Bagian Hangul akan ditampilkan sebagai teks ruby ​​di atas bagian Hanja." +msgstr "Bagian Hangul akan ditayangkan sebagai teks ruby di atas bagian Hanja." #. Crewa #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439 @@ -10090,7 +10090,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448 msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below" msgid "The Hangul part will be displayed as ruby text below the Hanja part." -msgstr "Bagian Hangul akan ditampilkan sebagai teks ruby di bawah bagian Hanja." +msgstr "Bagian Hangul akan ditayangkan sebagai teks ruby di bawah bagian Hanja." #. haBun #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485 @@ -10102,7 +10102,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494 msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above" msgid "The Hanja part will be displayed as ruby text above the Hangul part." -msgstr "Bagian Hanja akan ditampilkan sebagai teks mirah di atas bagian Hangul." +msgstr "Bagian Hanja akan ditayangkan sebagai teks mirah di atas bagian Hangul." #. FfFPC #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531 @@ -10114,7 +10114,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540 msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below" msgid "The Hanja part will be displayed as ruby text below the Hangul part." -msgstr "Bagian Hanja akan ditampilkan sebagai teks mirah di atas bagian Hangul." +msgstr "Bagian Hanja akan ditayangkan sebagai teks ruby di atas bagian Hangul." #. 6CDaz #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572 @@ -10390,7 +10390,7 @@ #: cui/uiconfig/ui/hatchpage.ui:85 msgctxt "hatchpage|extended_tip|add" msgid "Adds a custom hatching pattern to the current list. Specify the properties of your hatching pattern, and then click this button." -msgstr "Menambahkan sebuah pola penetasan khusus ke senarai saat ini. Tentukan properti dari pola penetasan Anda, dan kemudian klik tombol ini." +msgstr "Menambahkan sebuah pola arsiran khusus ke senarai saat ini. Tentukan properti dari pola arsiran Anda, dan kemudian klik tombol ini." #. TGiD7 #: cui/uiconfig/ui/hatchpage.ui:97 @@ -10498,7 +10498,7 @@ #: cui/uiconfig/ui/hatchpage.ui:438 msgctxt "hatchpage|label1" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. ZeF6M #: cui/uiconfig/ui/hatchpage.ui:454 @@ -11218,7 +11218,7 @@ #: cui/uiconfig/ui/hyphenate.ui:146 msgctxt "hyphenate|extended_tip|delete" msgid "Removes the current hyphenation point from the displayed word." -msgstr "Menghapus titik tanda hubung yang benar saat ini dari kata yang ditampilkan." +msgstr "Menghapus titik tanda hubung saat ini dari kata yang ditayangkan." #. dsjvf #: cui/uiconfig/ui/hyphenate.ui:166 @@ -11230,19 +11230,19 @@ #: cui/uiconfig/ui/hyphenate.ui:196 msgctxt "hyphenate|extended_tip|worded" msgid "Displays the hyphenation suggestion(s) for the selected word." -msgstr "Menampilkan saran tanda hubung yang benar untuk kata yang dipilih." +msgstr "Menayangkan saran tanda hubung yang benar untuk kata yang dipilih." #. HAF8G #: cui/uiconfig/ui/hyphenate.ui:216 msgctxt "hyphenate|extended_tip|left" msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed." -msgstr "Mengatur posisi tanda hubung. Pilihan ini hanya tersedia jika lebih dari satu tanda hubung yang benar saran ditampilkan." +msgstr "Mengatur posisi tanda hubung. Pilihan ini hanya tersedia jika lebih dari satu tanda hubung yang benar saran ditayangkan." #. 5gKXt #: cui/uiconfig/ui/hyphenate.ui:235 msgctxt "hyphenate|extended_tip|right" msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed." -msgstr "Mengatur posisi tanda hubung. Pilihan ini hanya tersedia jika lebih dari satu tanda hubung yang benar saran ditampilkan." +msgstr "Mengatur posisi tanda hubung. Pilihan ini hanya tersedia jika lebih dari satu tanda hubung yang benar saran ditayangkan." #. 8QHd8 #: cui/uiconfig/ui/hyphenate.ui:273 @@ -11486,7 +11486,7 @@ #: cui/uiconfig/ui/imagetabpage.ui:576 msgctxt "imagetabpage|label8" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. TokEG #: cui/uiconfig/ui/imagetabpage.ui:592 @@ -11510,7 +11510,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:128 msgctxt "insertfloatingframe|extended_tip|edurl" msgid "Enter the path and the name of the file that you want to display in the floating frame. You can also click the Browse button and locate the file that you want to display." -msgstr "Masukkan jalur dan nama dari berkas yang ingin anda tampilkan pada bingkai ambang. Anda dapat juga klik tombolTelusur dan tempatkan berkas yang anda inginkan untuk ditampilkan." +msgstr "Masukkan jalur dan nama dari berkas yang ingin anda tayangkan pada bingkai ambang. Anda dapat juga klik tombol Telusur dan tempatkan berkas yang anda inginkan untuk ditayangkan." #. 6Zg6E #: cui/uiconfig/ui/insertfloatingframe.ui:143 @@ -11534,7 +11534,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:172 msgctxt "insertfloatingframe|extended_tip|buttonbrowse" msgid "Locate the file that you want to display in the selected floating frame, and then click Open." -msgstr "Tempatkan berkas yang ingin anda tampilkan pada bingkai ambang terpilih, lalu klik Buka." +msgstr "Tempatkan berkas yang ingin Anda tayangkan pada bingkai ambang terpilih, lalu klik Buka." #. CFNgz #: cui/uiconfig/ui/insertfloatingframe.ui:209 @@ -11546,7 +11546,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:218 msgctxt "insertfloatingframe|extended_tip|scrollbaron" msgid "Displays the scrollbar for the floating frame." -msgstr "Menampilkan bilah gulir untuk bingkai ambang." +msgstr "Menayangkan bilah gulir untuk bingkai ambang." #. RTCXH #: cui/uiconfig/ui/insertfloatingframe.ui:230 @@ -11588,7 +11588,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:314 msgctxt "insertfloatingframe|extended_tip|borderon" msgid "Displays the border of the floating frame." -msgstr "Menampilkan garis batas dari bingkai ambang." +msgstr "Menayangkan garis batas dari bingkai ambang." #. P9vwv #: cui/uiconfig/ui/insertfloatingframe.ui:326 @@ -11714,7 +11714,7 @@ #: cui/uiconfig/ui/insertoleobject.ui:262 msgctxt "insertoleobject|asicon" msgid "Display as icon" -msgstr "Tampilkan sebagai ikon" +msgstr "Tayangkan sebagai ikon" #. ry68g #: cui/uiconfig/ui/insertoleobject.ui:281 @@ -12038,7 +12038,7 @@ #: cui/uiconfig/ui/lineendstabpage.ui:164 msgctxt "lineendstabpage|BTN_MODIFY" msgid "_Rename" -msgstr "_Ubah Nama" +msgstr "_Nama ulang" #. cQTAi #: cui/uiconfig/ui/lineendstabpage.ui:168 @@ -12490,7 +12490,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:120 cui/uiconfig/ui/menuassignpage.ui:192 msgctxt "menuassignpage|gear_rename" msgid "_Rename..." -msgstr "_Ganti Nama..." +msgstr "_Nama Ulang..." #. rE3BD #: cui/uiconfig/ui/menuassignpage.ui:128 cui/uiconfig/ui/menuassignpage.ui:200 @@ -12502,7 +12502,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:140 msgctxt "menuassignpage|renameItem" msgid "Rename..." -msgstr "Ganti Nama…" +msgstr "Nama Ulang…" #. vtxfm #: cui/uiconfig/ui/menuassignpage.ui:148 @@ -12568,7 +12568,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:355 msgctxt "menuassignpage|extended_tip|functions" msgid "Displays the results of the combination of the search string and category of the desired function." -msgstr "Menampilkan hasil pencarian kombinasi string dan kategori fungsi yang diinginkan." +msgstr "Menayangkan hasil pencarian kombinasi string dan kategori fungsi yang diinginkan." #. wYjEi #: cui/uiconfig/ui/menuassignpage.ui:372 @@ -12616,7 +12616,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:488 msgctxt "menuassignpage|extended_tip|toplevellist" msgid "Select the menu where the customization is to be applied. The current set of functions is displayed in the box below." -msgstr "Pilih menu tempat penyesuaian diterapkan. Rangkaian fungsi saat ini ditampilkan dalam kotak di bawah ini." +msgstr "Pilih menu tempat penyesuaian diterapkan. Rangkaian fungsi saat ini ditayangkan dalam kotak di bawah ini." #. QN5Bd #: cui/uiconfig/ui/menuassignpage.ui:509 @@ -12676,7 +12676,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:789 msgctxt "menuassignpage|extended_tip|add" msgid "Click on the right arrow button to select a function on the left display box and copy to the right display box. This will add the function to the selected menu." -msgstr "Klik pada tombol panah kanan untuk memilih fungsi pada kotak tapilan kiri dan menyalin ke kotak tampilan kanan. Ini akan menambahkan fungsi pada menu yang terpilih." +msgstr "Klik pada tombol panah kanan untuk memilih fungsi pada kotak tayangan kiri dan menyalin ke kotak tayangan kanan. Tindakan ini akan menambahkan fungsi pada menu terpilih." #. iree8 #: cui/uiconfig/ui/menuassignpage.ui:815 @@ -12700,7 +12700,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:861 msgctxt "menuassignpage|extended_tip|up" msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed menu commands." -msgstr "Klik pada panah Atas dan Bawah di kanan untuk memindahkan perintah terpilih ke atas atau ke bawah pada senarai menu yang menampilkan perintah." +msgstr "Klik pada panah Atas dan Bawah di kanan untuk memindahkan perintah terpilih ke atas atau ke bawah pada senarai menu yang menayangkan perintah." #. S6K2N #: cui/uiconfig/ui/menuassignpage.ui:875 @@ -12712,7 +12712,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:880 msgctxt "menuassignpage|extended_tip|down" msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed menu commands." -msgstr "Klik pada panah Atas dan Bawah di kanan untuk memindahkan perintah terpilih ke atas atau ke bawah pada senarai menu yang menampilkan perintah." +msgstr "Klik pada panah Atas dan Bawah di kanan untuk memindahkan perintah terpilih ke atas atau ke bawah pada senarai menu yang menayangkan perintah." #. fto8m #: cui/uiconfig/ui/menuassignpage.ui:900 @@ -12940,7 +12940,7 @@ #: cui/uiconfig/ui/newlibdialog.ui:141 msgctxt "newlibdialog|altrenametitle" msgid "Rename" -msgstr "Ganti Nama" +msgstr "Nama Ulang" #. 77zVE #: cui/uiconfig/ui/newtabledialog.ui:22 @@ -12982,7 +12982,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:87 msgctxt "numberingformatpage|extended_tip|formatted" msgid "Displays the number format code for the selected format. You can also enter a custom format." -msgstr "Menampilkan kode format nomor untuk format yang dipilih. Anda juga dapat memasukkan format khusus." +msgstr "Menayangkan kode format nomor untuk format yang dipilih. Anda juga dapat memasukkan format khusus." #. 5ATKM #: cui/uiconfig/ui/numberingformatpage.ui:101 @@ -13042,19 +13042,19 @@ #: cui/uiconfig/ui/numberingformatpage.ui:236 msgctxt "numberingformatpage|extended_tip|decimalsed" msgid "Enter the number of decimal places that you want to display." -msgstr "Masukkan jumlah tempat desimal yang ingin anda tampilkan." +msgstr "Masukkan banyaknya digit desimal yang ingin Anda tayangkan." #. VnduH #: cui/uiconfig/ui/numberingformatpage.ui:254 msgctxt "numberingformatpage|extended_tip|denominatored" msgid "With fraction format, enter the number of places for the denominator that you want to display." -msgstr "Dengan format pecahan, masukkan jumlah tempat untuk penyebut yang ingin anda tampilkan." +msgstr "Dengan format pecahan, masukkan banyaknya digit untuk penyebut yang ingin Anda tayangkan." #. zG6sE #: cui/uiconfig/ui/numberingformatpage.ui:278 msgctxt "numberingformatpage|extended_tip|leadzerosed" msgid "Enter the maximum number of zeroes to display in front of the decimal point." -msgstr "MAsukkan jumlah maksimum dari nol untuk ditampilkan di depan titik desimal." +msgstr "Masukkan jumlah maksimum dari nol untuk ditayangkan di depan titik desimal." #. ZiPyf #: cui/uiconfig/ui/numberingformatpage.ui:299 @@ -13144,7 +13144,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:577 msgctxt "numberingformatpage|extended_tip|formatlb" msgid "Select how you want the contents of the selected field to be displayed." -msgstr "Memilih bagaimana Anda ingin isi dari ruas yang dipilih akan ditampilkan." +msgstr "Memilih bagaimana Anda ingin mengisi ruas terpilih akan ditayangkan." #. Wxkzd #: cui/uiconfig/ui/numberingformatpage.ui:594 @@ -13402,13 +13402,13 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:515 msgctxt "numberingoptionspage|extended_tip|suffix" msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box." -msgstr "Masukkan karakter atau teks untuk ditampilkan di belakang nomor dalam senarai. Untuk membuat skema penomoran \"1.)\", masukkan \".)\" pada kotak ini." +msgstr "Masukkan karakter atau teks untuk ditayangkan di belakang nomor dalam senarai. Untuk membuat skema penomoran \"1.)\", masukkan \".)\" pada kotak ini." #. wVrAN #: cui/uiconfig/ui/numberingoptionspage.ui:532 msgctxt "numberingoptionspage|extended_tip|prefix" msgid "Enter a character or the text to display in front of the number in the list." -msgstr "Masukkan karakter atau teks untuk ditampilkan di depan nomor dalam senarai." +msgstr "Masukkan karakter atau teks untuk ditayangkan di depan nomor dalam senarai." #. FLJWG #: cui/uiconfig/ui/numberingoptionspage.ui:545 @@ -13474,7 +13474,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:746 msgctxt "numberingoptionspage|previewlabel" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. oBArM #: cui/uiconfig/ui/numberingpositionpage.ui:88 @@ -13670,7 +13670,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:548 msgctxt "numberingpositionpage|previewframe" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. tGB4m #: cui/uiconfig/ui/objectnamedialog.ui:8 @@ -13760,7 +13760,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:55 msgctxt "extended_tip|textselinreadonly" msgid "Displays cursor in read-only documents." -msgstr "Menampilkan kursos hanya-baca dokumen." +msgstr "Menayangkan kursos hanya-baca dokumen." #. APEfF #: cui/uiconfig/ui/optaccessibilitypage.ui:67 @@ -13772,7 +13772,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:75 msgctxt "extended_tip|animatedgraphics" msgid "Previews animated graphics, such as GIF images." -msgstr "Pratinjau grafik animasi, seperti gambar GIF." +msgstr "Pratilik grafik animasi, seperti gambar GIF." #. 3Q66x #: cui/uiconfig/ui/optaccessibilitypage.ui:87 @@ -13784,7 +13784,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:95 msgctxt "extended_tip|animatedtext" msgid "Previews animated text, such as blinking and scrolling." -msgstr "Pratinjau teks animasi, seperti berkedip dan menggulir." +msgstr "Pratilik teks animasi, seperti berkedip dan menggulir." #. 2A83C #: cui/uiconfig/ui/optaccessibilitypage.ui:111 @@ -13808,25 +13808,25 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:160 msgctxt "optaccessibilitypage|autofontcolor" msgid "Use automatic font _color for screen display" -msgstr "Memakai _warna huruf otomatis untuk tampilan layar" +msgstr "Memakai _warna huruf otomatis untuk tayangan layar" #. BAnK4 #: cui/uiconfig/ui/optaccessibilitypage.ui:168 msgctxt "extended_tip|autofontcolor" msgid "Displays fonts in the office suite using the system color settings. This option only affects the screen display." -msgstr "Menampilkan fonta di paket perkantoran menggunakan pengaturan warna sistem. Pilihan ini hanya mempengaruhi tampilan layar." +msgstr "Menayangkan fonta di paket perkantoran menggunakan pengaturan warna sistem. Pilihan ini hanya mempengaruhi tayangan layar." #. n24Cd #: cui/uiconfig/ui/optaccessibilitypage.ui:180 msgctxt "optaccessibilitypage|systempagepreviewcolor" msgid "_Use system colors for page previews" -msgstr "Memakai warna sistem _untuk pratinjau halaman" +msgstr "Memakai warna sistem _untuk pratilik halaman" #. DRkNv #: cui/uiconfig/ui/optaccessibilitypage.ui:188 msgctxt "extended_tip|systempagepreviewcolor" msgid "Applies the high contrast settings of the operating system to page previews." -msgstr "Menerapkan pengaturan kontras tinggi dari sistem operasi ke pratinjau halaman." +msgstr "Menerapkan pengaturan kontras tinggi dari sistem operasi ke pratilik halaman." #. hGpaw #: cui/uiconfig/ui/optaccessibilitypage.ui:204 @@ -14180,7 +14180,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:34 msgctxt "extended_tip|codecomplete_enable" msgid "Display methods of a Basic object." -msgstr "Menampilkan metoda dari objek Dasar." +msgstr "Menayangkan metode dari objek Basic." #. B8fvE #: cui/uiconfig/ui/optbasicidepage.ui:49 @@ -14264,7 +14264,7 @@ #: cui/uiconfig/ui/optchartcolorspage.ui:77 msgctxt "extended_tip|colors" msgid "Displays all the colors available for the data series." -msgstr "Tampilkan semua warna yang tersedia untuk rangkaian data." +msgstr "Menanyangkan semua warna yang tersedia untuk rangkaian data." #. vTZjC #: cui/uiconfig/ui/optchartcolorspage.ui:88 @@ -14294,7 +14294,7 @@ #: cui/uiconfig/ui/optchartcolorspage.ui:245 msgctxt "extended_tip|OptChartColorsPage" msgid "Displays all the colors available for the data series." -msgstr "Tampilkan semua warna yang tersedia untuk rangkaian data." +msgstr "Menayangkan semua warna yang tersedia untuk rangkaian data." #. fVDQp #: cui/uiconfig/ui/optctlpage.ui:28 @@ -14482,7 +14482,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:129 msgctxt "extended_tip|checklbcontainer" msgid "The [L] and [S] checkbox displays the entries for the pair of OLE objects that can be converted when loaded from a Microsoft format [L] and/or when saved to to a Microsoft format [S]. " -msgstr "Kotak centang [L] dan [S] menampilkan entri untuk pasangan objek OLE yang dapat dikonversi saat dimuat dari format Microsoft [L] dan/atau saat disimpan ke format Microsoft [S]. " +msgstr "Kotak centang [L] dan [S] menayangkan entri untuk pasangan objek OLE yang dapat dikonversi saat dimuat dari format Microsoft [L] dan/atau saat disimpan ke format Microsoft [S]. " #. x5kfq #. The [L] here is repeated as the column title for the "Load" column of this options page @@ -14754,7 +14754,7 @@ #: cui/uiconfig/ui/optfontspage.ui:307 msgctxt "extended_tip | replacements" msgid "Substitutes a font with a font of your choice. The substitution replaces a font only when it is displayed on screen, or on screen and when printing. The replacement does not change the font settings that are saved in the document." -msgstr "Ganti fon dengan fon pilihan anda. Substitusi hanya mengganti fon ketika ditampilkan di layar, atau di layar dan saat mencetak. Penggantian tidak mengubah pengaturan fon yang disimpan dalam dokumen." +msgstr "Ganti fonta dengan fonta pilihan Anda. Penggantian hanya berlaku pada fonta ketika ditayangkan di layar, atau di layar dan saat mencetak. Penggantian tidak mengubah pengaturan fonta yang disimpan dalam dokumen." #. 7ECDC #: cui/uiconfig/ui/optfontspage.ui:319 @@ -14796,7 +14796,7 @@ #: cui/uiconfig/ui/optfontspage.ui:412 msgctxt "extended_tip | fontname" msgid "Select the font for the display of HTML and Basic source code." -msgstr "Pilih fon untuk tampilan HTML dan kode sumber dasar." +msgstr "Pilih fonta untuk tayangan HTML dan kode sumber Basic." #. Cc5tn #: cui/uiconfig/ui/optfontspage.ui:423 @@ -14808,13 +14808,13 @@ #: cui/uiconfig/ui/optfontspage.ui:431 msgctxt "extended_tip | nonpropfontonly" msgid "Check to display only non-proportional fonts in the Fonts list box." -msgstr "Periksa untuk menampilkan hanya fonta tak proporsional pada kotak senarai Fonta." +msgstr "Periksa untuk menayangkan hanya fonta tak proporsional pada kotak senarai Fonta." #. GAiec #: cui/uiconfig/ui/optfontspage.ui:448 msgctxt "extended_tip | fontheight" msgid "Select a font size for the display of HTML and Basic source code." -msgstr "Pilih ukuran fon untuk tampilan pada HTML dan Sumber kode dasar." +msgstr "Pilih ukuran fonta untuk tayangan HTML dan kode sumber Basic." #. AafuA #: cui/uiconfig/ui/optfontspage.ui:466 @@ -14832,7 +14832,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:42 msgctxt "extended_tip | exthelp" msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog." -msgstr "Menampilkan teks bantuan ketika Anda mengistirahatkan penunjuk tetikus pada ikon, perintah menu, atau kontrol pada dialog." +msgstr "Menayangkan teks bantuan ketika Anda mengistirahatkan penunjuk tetikus pada ikon, perintah menu, atau kontrol pada dialog." #. yVGcZ #: cui/uiconfig/ui/optgeneralpage.ui:53 @@ -15120,7 +15120,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:478 msgctxt "opthtmlpage|starbasicwarning" msgid "Display _warning" -msgstr "Tampilkan _peringatan" +msgstr "Tayangkan _peringatan" #. GwwUY #: cui/uiconfig/ui/opthtmlpage.ui:488 @@ -16026,7 +16026,7 @@ #: cui/uiconfig/ui/optpathspage.ui:191 msgctxt "edit" msgid "Click to display the Select Path or Edit Paths dialog." -msgstr "Klik untuk menampilkan dialog Pilih Jalur atau Sunting Jalur." +msgstr "Klik untuk menayangkan dialog Pilih Jalur atau Sunting Jalur." #. 2vbPt #: cui/uiconfig/ui/optpathspage.ui:210 @@ -17137,7 +17137,7 @@ #: cui/uiconfig/ui/optviewpage.ui:179 msgctxt "extended_tip | menuicons" msgid "Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes." -msgstr "Menampilkan ikon di sebelah item menu yang sesuai. Pilih dari \"Otomatis\", \"Sembunyikan\" dan \"Tampilkan\". \"Otomatis\" menampilkan ikon sesuai dengan pengaturan sistem dan tema." +msgstr "Menayangkan ikon di sebelah item menu yang sesuai. Pilih dari \"Otomatis\", \"Sembunyikan\" dan \"Tilikkan\". \"Otomatis\" menayangkan ikon sesuai dengan pengaturan sistem dan tema." #. evVAC #: cui/uiconfig/ui/optviewpage.ui:207 @@ -17221,7 +17221,7 @@ #: cui/uiconfig/ui/optviewpage.ui:319 msgctxt "extended_tip | sidebariconsize" msgid "Specifies the display size of sidebar icons." -msgstr "Menentukan ukuran tampilan ikon bilah sisi." +msgstr "Menentukan ukuran tayangan ikon bilah sisi." #. kPSBA #: cui/uiconfig/ui/optviewpage.ui:332 @@ -17287,7 +17287,7 @@ #: cui/uiconfig/ui/optviewpage.ui:420 msgctxt "optviewpage|iconstyle" msgid "Breeze" -msgstr "Angin Sepoi" +msgstr "Breeze" #. dDE86 #: cui/uiconfig/ui/optviewpage.ui:424 @@ -17329,7 +17329,7 @@ #: cui/uiconfig/ui/optviewpage.ui:518 msgctxt "extended_tip | useaccel" msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display." -msgstr "Langsung mengakses fitur perangkat keras dari tampilan adaptor grafis untuk meningkatkan tampilan layar." +msgstr "Langsung mengakses fitur perangkat keras dari tayangan adaptor grafis untuk meningkatkan tayangan layar." #. 2MWvd #: cui/uiconfig/ui/optviewpage.ui:529 @@ -17341,7 +17341,7 @@ #: cui/uiconfig/ui/optviewpage.ui:538 msgctxt "extended_tip | useaa" msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts." -msgstr "Ketika didukung, Anda dapat mengaktifkan dan menonaktifkan anti-aliasing grafis. Dengan anti-aliasing diaktifkan, tampilan sebagian besar objek grafis terlihat lebih halus dan dengan artefak yang lebih sedikit." +msgstr "Ketika didukung, Anda dapat mengaktifkan dan menonaktifkan anti-aliasing grafis. Dengan pengaktifan anti-aliasing, tayangan sebagian besar objek grafis terlihat lebih halus dan dengan artefak yang lebih sedikit." #. ppJKg #: cui/uiconfig/ui/optviewpage.ui:549 @@ -17389,7 +17389,7 @@ #: cui/uiconfig/ui/optviewpage.ui:644 msgctxt "extended_tip | showfontpreview" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." -msgstr "Menampilkan nama-nama fon yang dapat dipilih dalam fon yang sesuai, misalnya, fon di kotak Fon pada Pemformattan bilah." +msgstr "Menayangkan nama-nama fonta yang dapat dipilih dalam fonta yang sesuai, misalnya, fonta di kotak Fonta pada bilah Pemformattan." #. 2FKuk #: cui/uiconfig/ui/optviewpage.ui:655 @@ -17709,7 +17709,7 @@ #: cui/uiconfig/ui/paragalignpage.ui:136 msgctxt "paragalignpage|checkCB_EXPAND" msgid "_Expand single word" -msgstr "K_embangkan kata tunggal" +msgstr "P_erluas kata tunggal" #. rWghT #: cui/uiconfig/ui/paragalignpage.ui:151 @@ -18154,7 +18154,7 @@ #: cui/uiconfig/ui/pastespecial.ui:116 msgctxt "pastespecial|extended_tip|source" msgid "Displays the source of the clipboard contents." -msgstr "Menampilkan sumber konten papanklip." +msgstr "Menayangkan sumber isi papan klip." #. RwDM8 #: cui/uiconfig/ui/pastespecial.ui:175 @@ -18256,7 +18256,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:381 msgctxt "patterntabpage|label2" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. zmVMN #: cui/uiconfig/ui/patterntabpage.ui:397 @@ -18316,7 +18316,7 @@ #: cui/uiconfig/ui/pickbulletpage.ui:58 msgctxt "pickbulletpage|extended_tip|PickBulletPage" msgid "Displays the different bullet styles that you can apply." -msgstr "Menampilkan gaya bullet berbeda yang dapat anda terapkan." +msgstr "Menayangkan gaya bulatan berbeda yang dapat Anda terapkan." #. LkXNn #: cui/uiconfig/ui/pickgraphicpage.ui:44 @@ -18346,7 +18346,7 @@ #: cui/uiconfig/ui/pickgraphicpage.ui:105 msgctxt "pickgraphicpage|extended_tip|PickGraphicPage" msgid "Displays the different graphics that you can use as bullets in a bulleted list." -msgstr "Tampilkan grafik berbeda yang Anda akan gunakan sebagai bulatan dalam senarai bulatan." +msgstr "Menayangkan grafik berbeda yang Anda akan gunakan sebagai bulatan dalam senarai bulatan." #. q8tMx #: cui/uiconfig/ui/picknumberingpage.ui:37 @@ -18364,7 +18364,7 @@ #: cui/uiconfig/ui/picknumberingpage.ui:58 msgctxt "picknumberingpage|extended_tip|PickNumberingPage" msgid "Displays the different numbering schemes that you can apply." -msgstr "Menampilkan skema penomoran berbeda yang dapat Anda terapkan." +msgstr "Menayangkan skema penomoran berbeda yang dapat Anda terapkan." #. BDFqB #: cui/uiconfig/ui/pickoutlinepage.ui:37 @@ -18382,7 +18382,7 @@ #: cui/uiconfig/ui/pickoutlinepage.ui:58 msgctxt "pickoutlinepage|extended_tip|PickOutlinePage" msgid "Displays the different styles that you can apply to a hierarchical list. Up to nine outline levels in a list hierarchy are supported." -msgstr "Menampilkan gaya-gaya berbeda yang dapat Anda terapkan ke senarai hierarkis. Mendukung hingga sembilan tingkat kerangka dalam hierarki senarai." +msgstr "Menayangkan gaya-gaya berbeda yang dapat Anda terapkan ke senarai hierarkis. Mendukung hingga sembilan tingkat kerangka dalam hierarki senarai." #. hRP6U #: cui/uiconfig/ui/positionpage.ui:62 @@ -18490,7 +18490,7 @@ #: cui/uiconfig/ui/positionpage.ui:507 msgctxt "positionpage|preview-atkobject" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. dckjJ #: cui/uiconfig/ui/positionsizedialog.ui:8 @@ -18670,7 +18670,7 @@ #: cui/uiconfig/ui/possizetabpage.ui:535 msgctxt "possizetabpage|extended_tip|TSB_AUTOGROW_HEIGHT" msgid "Expands the height of the object to the height of the text, if the object is smaller than the text." -msgstr "Perluas ketinggian objek ke ketinggian teks, jika objek lebih kecil dari teks." +msgstr "Memperluas ketinggian objek ke ketinggian teks, jika objek lebih kecil dari teks." #. A4B3x #: cui/uiconfig/ui/possizetabpage.ui:551 @@ -19208,7 +19208,7 @@ #: cui/uiconfig/ui/scriptorganizer.ui:195 msgctxt "scriptorganizer|rename" msgid "Rename..." -msgstr "Ganti nama..." +msgstr "Nama ulang..." #. D6WNC #: cui/uiconfig/ui/scriptorganizer.ui:201 @@ -19364,7 +19364,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:171 msgctxt "extended_tip|whenpdf" msgid "Select to see a warning dialog when you try to export a document to PDF format that displays recorded changes in Writer, or that displays comments." -msgstr "Pilih untuk melihat dialog peringatan ketika Anda mencoba untuk mengekspor dokumen ke format PDF yang menampilkan perubahan yang direkam dalam Writer, atau yang menampilkan komentar." +msgstr "Pilih untuk melihat dialog peringatan ketika Anda mencoba untuk mengekspor dokumen ke format PDF yang menayangkan perubahan yang direkam dalam Writer, atau yang menayangkan komentar." #. pfCsh #: cui/uiconfig/ui/securityoptionsdialog.ui:243 @@ -19562,7 +19562,7 @@ #: cui/uiconfig/ui/shadowtabpage.ui:310 msgctxt "shadowtabpage|label" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. nxBPj #: cui/uiconfig/ui/shadowtabpage.ui:325 @@ -19610,7 +19610,7 @@ #: cui/uiconfig/ui/signatureline.ui:132 msgctxt "signatureline|extended_tip|edit_title" msgid "Enter the title of the signer. The title is displayed in the signature line graphic box." -msgstr "Masukkan gelar penandatangan. Gelar ditampilkan pada kotak grafis baris tanda tangan." +msgstr "Masukkan gelar penandatangan. Gelar ditayangkan pada kotak grafis baris tanda tangan." #. 3SKcg #: cui/uiconfig/ui/signatureline.ui:147 @@ -19622,7 +19622,7 @@ #: cui/uiconfig/ui/signatureline.ui:151 msgctxt "signatureline|extended_tip|edit_email" msgid "Enter the email of the signer. The email is not displayed in the signature line graphic box, but is used for the digital signature." -msgstr "Masukkan surel penandatangan. Surel tidak ditampilkan di kotak grafis garis tanda tangan, tetapi digunakan untuk tanda tangan digital." +msgstr "Masukkan surel penandatangan. Surel tidak ditayangkan di kotak grafis garis tanda tangan, tetapi digunakan untuk tanda tangan digital." #. As8u6 #. Suggested Signer Name @@ -19673,7 +19673,7 @@ #: cui/uiconfig/ui/signatureline.ui:268 msgctxt "signatureline|extended_tip|checkbox_show_sign_date" msgid "Mark this checkbox to display the date of the signature, at the time when the document is digitally signed." -msgstr "Tandai kotak centang ini untuk menampilkan tanggal tanda tangan, pada saat dokumen ditandatangani secara digital." +msgstr "Tandai kotak centang ini untuk menayangkan tanggal tanda tangan, pada saat dokumen ditandatangani secara digital." #. fSsbq #: cui/uiconfig/ui/signatureline.ui:282 @@ -19784,7 +19784,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:300 msgctxt "signsignatureline|extended_tip|edit_comment" msgid "Enter comments about the signature. The comments are displayed in the Description field of the certificate." -msgstr "Masukkan komentar tentang tanda tangan. Komentar ditampilkan pada ruas Keterangan dari sertifikat." +msgstr "Masukkan komentar tentang tanda tangan. Komentar ditayangkan pada ruas Keterangan dari sertifikat." #. k4PqT #: cui/uiconfig/ui/signsignatureline.ui:316 @@ -19796,7 +19796,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:337 msgctxt "signsignatureline|extended_tip|label_hint_text" msgid "This area displays the instructions entered by the document creator when adding the signature line." -msgstr "Wilayah ini menampilkan petunjuk yang dimasukkan oleh pencipta dokumen saat menambahkan baris tanda tangan." +msgstr "Wilayah ini menayangkan petunjuk yang dimasukkan oleh pembuat dokumen saat menambahkan baris tanda tangan." #. kVoG9 #: cui/uiconfig/ui/signsignatureline.ui:352 @@ -20024,7 +20024,7 @@ #: cui/uiconfig/ui/smoothdialog.ui:200 msgctxt "smoothdialog|extended_tip|SmoothDialog" msgid "Softens or blurs the image by applying a low pass filter." -msgstr "Memperhalus atau mengaburkan gambar dengan menerapkan penyaring lulus rendah." +msgstr "Memperhalus atau mengaburkan gambar dengan menerapkan penapis lulus rendah." #. xAH4y #: cui/uiconfig/ui/solarizedialog.ui:13 @@ -20108,7 +20108,7 @@ #: cui/uiconfig/ui/specialcharacters.ui:190 msgctxt "specialcharacters|extended_tip|fontlb" msgid "Select a font to display the special characters that are associated with it." -msgstr "Pilih fonta untuk menampilkan karakter khusus yang terkait dengannya." +msgstr "Pilih fonta untuk menayangkan karakter khusus yang terkait dengannya." #. LxRMr #: cui/uiconfig/ui/specialcharacters.ui:239 @@ -20192,7 +20192,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:173 msgctxt "spellingdialog|extended_tip|sentence" msgid "Displays the sentence with the misspelled word highlighted. Edit the word or the sentence, or click one of the suggestions in the text box below." -msgstr "Menampilkan kalimat dengan kata yang salah eja disorot. Sunting kata atau kalimat, atau klik salah satu saran dalam kotak teks di bawah." +msgstr "Menayangkan kalimat dengan kata yang salah eja disorot. Sunting kata atau kalimat, atau klik salah satu saran dalam kotak teks di bawah." #. 4E4ES #: cui/uiconfig/ui/spellingdialog.ui:190 @@ -21560,7 +21560,7 @@ #: cui/uiconfig/ui/thesaurus.ui:215 msgctxt "thesaurus|extended_tip|wordcb" msgid "Displays the current word, or the related term that you selected by double-clicking a line in the Alternatives list. You can also type text directly in this box to look up your text." -msgstr "Menampilkan kata saat ini, atau istilah terkait yang anda pilih dengan klik-ganda baris dalam senarai Alternatif. Anda juga dapat mengetik teks secara langsung pada kotak untuk mencari teks anda." +msgstr "Menayangkan kata saat ini, atau istilah terkait yang Anda pilih dengan klik ganda baris dalam senarai Alternatif. Anda juga dapat mengetik teks secara langsung pada kotak untuk mencari teks Anda." #. FGgNh #: cui/uiconfig/ui/thesaurus.ui:267 @@ -21698,7 +21698,7 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:363 msgctxt "ToolbarmodeDialog|rightframe" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. WChLB #: cui/uiconfig/ui/transparencytabpage.ui:73 @@ -21950,7 +21950,7 @@ #: cui/uiconfig/ui/twolinespage.ui:223 msgctxt "twolinespage|preview-atkobject" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. 9zxtA #: cui/uiconfig/ui/wordcompletionpage.ui:60 @@ -21992,7 +21992,7 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:126 msgctxt "wordcompletionpage|extended_tip|showastip" msgid "Displays the completed word as a Help Tip." -msgstr "Menampilkan kata yang terlengkapi sebagai Tip Bantuan." +msgstr "Menayangkan kata yang terlengkapi sebagai Tip Bantuan." #. RJa2G #: cui/uiconfig/ui/wordcompletionpage.ui:160 @@ -22088,7 +22088,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:19 msgctxt "zoomdialog|ZoomDialog" msgid "Zoom & View Layout" -msgstr "Zum & Tata Letak Tampilan" +msgstr "Zum & Tata Letak Tilikan" #. JSuui #: cui/uiconfig/ui/zoomdialog.ui:108 @@ -22100,7 +22100,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:117 msgctxt "zoomdialog|extended_tip|optimal" msgid "Resizes the display to fit the width of the text in the document at the moment the command is started." -msgstr "Mengubah ukuran tampilan agar sesuai dengan lebar teks dalam dokumen saat perintah dimulai." +msgstr "Mengubah ukuran tayangan agar sesuai dengan lebar teks dalam dokumen saat perintah dimulai." #. RfuDU #: cui/uiconfig/ui/zoomdialog.ui:129 @@ -22112,7 +22112,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:138 msgctxt "zoomdialog|extended_tip|fitwandh" msgid "Displays the entire page on your screen." -msgstr "Menampilkan seluruh halaman pada layar." +msgstr "Menayangkan seluruh halaman pada layar." #. P9XGA #: cui/uiconfig/ui/zoomdialog.ui:150 @@ -22124,7 +22124,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:159 msgctxt "zoomdialog|extended_tip|fitw" msgid "Displays the complete width of the document page. The top and bottom edges of the page may not be visible." -msgstr "Menampilkan lebar komplet dari halaman dokumen. Tepi atas dan bawah halaman mungkin tidak terlihat." +msgstr "Menayangkan lebar lengkap dari halaman dokumen. Tepi atas dan bawah halaman mungkin tidak terlihat." #. qeWB6 #: cui/uiconfig/ui/zoomdialog.ui:171 @@ -22136,7 +22136,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:180 msgctxt "zoomdialog|extended_tip|100pc" msgid "Displays the document at its actual size." -msgstr "Menampilkan dokumen pada ukuran sebenarnya." +msgstr "Menayangkan dokumen pada ukuran sebenarnya." #. DE7hS #: cui/uiconfig/ui/zoomdialog.ui:197 @@ -22148,7 +22148,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:209 msgctxt "zoomdialog|extended_tip|variable" msgid "Enter the zoom factor at which you want to display the document. Enter a percentage in the box." -msgstr "Masukkan faktor perbesaran tempat anda ingin menampilkan dokumen. Masukkan persentase dalam kotak." +msgstr "Masukkan faktor zum tempat Anda ingin menayangkan dokumen. Masukkan persentase dalam kotak." #. QGHoo #: cui/uiconfig/ui/zoomdialog.ui:231 @@ -22160,7 +22160,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:232 msgctxt "zoomdialog|extended_tip|zoomsb" msgid "Enter the zoom factor at which you want to display the document. Enter a percentage in the box." -msgstr "Masukkan faktor perbesaran tempat anda ingin menampilkan dokumen. Masukkan persentase dalam kotak." +msgstr "Masukkan faktor zum tempat anda ingin menayangkan dokumen. Masukkan persentase dalam kotak." #. 8iPB6 #: cui/uiconfig/ui/zoomdialog.ui:255 @@ -22178,7 +22178,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:293 msgctxt "zoomdialog|extended_tip|automatic" msgid "The automatic view layout displays pages side by side, as many as the zoom factor allows." -msgstr "Tata letak tampilan otomatis menampilkan halaman berdampingan, sebanyak yang dimungkinkan oleh faktor perbesar." +msgstr "Tata letak tilikan otomatis menayangkan halaman berdampingan, sebanyak yang dimungkinkan oleh faktor zum." #. DBVGM #: cui/uiconfig/ui/zoomdialog.ui:305 @@ -22190,7 +22190,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:314 msgctxt "zoomdialog|extended_tip|singlepage" msgid "The single page view layout displays pages beneath each other, but never side by side." -msgstr "Tata letak tampilan halaman tunggal menampilkan halaman di bawah satu sama lain, tetapi tidak pernah berdampingan." +msgstr "Tata letak tilikan halaman tunggal menayangkan halaman di bawah satu sama lain, tetapi tidak pernah berdampingan." #. FdNqb #: cui/uiconfig/ui/zoomdialog.ui:331 @@ -22202,7 +22202,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:344 msgctxt "zoomdialog|extended_tip|columns" msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns." -msgstr "Dalam tata letak tampilan kolom Anda melihat halaman dalam jumlah kolom tertentu berdampingan. Masukkan jumlah kolom." +msgstr "Dalam tata letak tilikan kolom Anda melihat halaman dalam jumlah kolom tertentu berdampingan. Masukkan jumlah kolom." #. opsyv #: cui/uiconfig/ui/zoomdialog.ui:366 @@ -22214,7 +22214,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:367 msgctxt "zoomdialog|extended_tip|columnssb" msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns." -msgstr "Dalam tata letak tampilan kolom Anda melihat halaman dalam jumlah kolom tertentu berdampingan. Masukkan jumlah kolom." +msgstr "Dalam tata letak tilikan kolom Anda melihat halaman dalam jumlah kolom tertentu berdampingan. Masukkan jumlah kolom." #. rhLet #: cui/uiconfig/ui/zoomdialog.ui:386 @@ -22226,16 +22226,16 @@ #: cui/uiconfig/ui/zoomdialog.ui:398 msgctxt "zoomdialog|extended_tip|bookmode" msgid "In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number." -msgstr "Dalam tata letak tampilan modus buku anda melihat dua halaman berdampingan seperti pada buku terbuka. Halaman pertama adalah halaman kanan dengan nomor halaman ganjil." +msgstr "Dalam tata letak tilikan modus buku anda melihat dua halaman berdampingan seperti pada buku terbuka. Halaman pertama adalah halaman kanan dengan nomor halaman ganjil." #. pdZqi #: cui/uiconfig/ui/zoomdialog.ui:414 msgctxt "zoomdialog|label1" msgid "View Layout" -msgstr "Tata Letak Tampilan" +msgstr "Tata Letak Tilikan" #. DWWgJ #: cui/uiconfig/ui/zoomdialog.ui:446 msgctxt "zoomdialog|extended_tip|ZoomDialog" msgid "Reduces or enlarges the screen display." -msgstr "Memperkecil atau memperbesar tampilan layar." +msgstr "Memperkecil atau memperbesar tayangan layar." diff -Nru libreoffice-7.4.6/translations/source/id/dbaccess/messages.po libreoffice-7.4.7/translations/source/id/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/id/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/dbaccess/messages.po 2023-05-03 15:22:13.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-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" +"Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" @@ -13,14 +13,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563272963.000000\n" #. BiN6g #: dbaccess/inc/query.hrc:28 msgctxt "RSC_QUERY_OBJECT_TYPE" msgid "The table view" -msgstr "Tampilan tabel" +msgstr "Tilikan tabel" #. ySuKZ #: dbaccess/inc/query.hrc:29 @@ -109,7 +109,7 @@ #: dbaccess/inc/strings.hrc:27 msgctxt "RID_STR_TABLE_IS_FILTERED" msgid "The table $name$ already exists. It is not visible because it has been filtered out." -msgstr "Tabel $name$ sudah ada. Tabel tidak dapat dilihat karena sudah disaring." +msgstr "Tabel $name$ sudah ada. Tabel tidak dapat dilihat karena sudah ditapis." #. ZfmVR #: dbaccess/inc/strings.hrc:28 @@ -179,7 +179,7 @@ #: dbaccess/inc/strings.hrc:38 msgctxt "RID_STR_NO_UPDATE_MISSING_CONDITION" msgid "Values could not be modified, due to a missing condition statement." -msgstr "Nilai tak dapat diubah, karena tidak adanya pernyataan kondisi." +msgstr "Nilai tak dapat diubah, karena tidak adanya pernyataan syarat." #. 7Jns7 #: dbaccess/inc/strings.hrc:39 @@ -197,7 +197,7 @@ #: dbaccess/inc/strings.hrc:41 msgctxt "RID_STR_NO_CONDITION_FOR_PK" msgid "The WHERE condition could not be created for the primary key." -msgstr "Kondisi WHERE tak dapat diterapkan untuk kunci utama." +msgstr "Syarat WHERE tak dapat diterapkan untuk kunci utama." #. NPDCA #: dbaccess/inc/strings.hrc:42 @@ -281,7 +281,7 @@ #: dbaccess/inc/strings.hrc:55 msgctxt "RID_STR_COLUMN_ALTER_BY_NAME" msgid "The driver does not support the modification of column descriptions by changing the name." -msgstr "Pengandar tidak mendukung modifikasi keterangan kolom dengan mengganti namanya." +msgstr "Penggerak tidak mendukung modifikasi keterangan kolom dengan menamai ulangnya." #. tZWaL #: dbaccess/inc/strings.hrc:56 @@ -655,7 +655,7 @@ #: dbaccess/inc/strings.hrc:117 msgctxt "STR_QRY_CRITERIA_ON_ASTERISK" msgid "A condition cannot be applied to field [*]" -msgstr "Sebuah kondisi tidak bisa diterapkan pada ruas [*]" +msgstr "Sebuah syarat tidak bisa diterapkan pada ruas [*]" #. ygnPh #: dbaccess/inc/strings.hrc:118 @@ -715,13 +715,13 @@ #: dbaccess/inc/strings.hrc:127 msgctxt "STR_QUERYDESIGN_NO_VIEW_SUPPORT" msgid "This database does not support table views." -msgstr "Basis data ini tidak mendukung tampilan tabel." +msgstr "Basis data ini tidak mendukung tilikan tabel." #. wsWmH #: dbaccess/inc/strings.hrc:128 msgctxt "STR_NO_ALTER_VIEW_SUPPORT" msgid "This database does not support altering of existing table views." -msgstr "Basis data ini tidak mendukung pengubahan terhadap tampilan tabel yang ada." +msgstr "Basis data ini tidak mendukung pengubahan terhadap tilikan tabel yang ada." #. DersC #: dbaccess/inc/strings.hrc:129 @@ -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 "$object$ akan dibuka pada tampilan SQL." +msgstr "$object$ akan dibuka pada tilikan SQL." #. pH2Jv #: dbaccess/inc/strings.hrc:141 @@ -848,7 +848,7 @@ #: dbaccess/inc/strings.hrc:152 msgctxt "STR_VIEW_TITLE" msgid "View #" -msgstr "Tampilan #" +msgstr "Tilikan #" #. 8yp2G #: dbaccess/inc/strings.hrc:153 @@ -872,7 +872,7 @@ #: dbaccess/inc/strings.hrc:156 msgctxt "STR_DATASOURCE_GRIDCONTROL_NAME" msgid "Data source table view" -msgstr "Tampilan tabel sumber data" +msgstr "Tilikan tabel sumber data" #. r58gb #: dbaccess/inc/strings.hrc:157 @@ -890,7 +890,7 @@ #: dbaccess/inc/strings.hrc:161 msgctxt "RID_STR_NEW_FORM" msgid "Create Form in Design View..." -msgstr "Buat Formulir pada Desain Tampilan..." +msgstr "Buat Formulir pada Tilikan Desain..." #. vLzx4 #: dbaccess/inc/strings.hrc:162 @@ -908,19 +908,19 @@ #: dbaccess/inc/strings.hrc:164 msgctxt "RID_STR_NEW_REPORT" msgid "Create Report in Design View..." -msgstr "Buat Laporan dalam Desain Tampilan..." +msgstr "Buat Laporan dalam Tilikan Desain..." #. mGsho #: dbaccess/inc/strings.hrc:165 msgctxt "RID_STR_NEW_QUERY" msgid "Create Query in Design View..." -msgstr "Buat Kueri pada Tampilan Desain..." +msgstr "Buat Kueri pada Tilikan Desain..." #. sfADq #: dbaccess/inc/strings.hrc:166 msgctxt "RID_STR_NEW_QUERY_SQL" msgid "Create Query in SQL View..." -msgstr "Buat Kueri pada Tampilan SQL..." +msgstr "Buat Kueri pada Tilikan SQL..." #. 57XvA #: dbaccess/inc/strings.hrc:167 @@ -932,7 +932,7 @@ #: dbaccess/inc/strings.hrc:168 msgctxt "RID_STR_NEW_TABLE" msgid "Create Table in Design View..." -msgstr "Buat Tabel pada Desain Tampilan..." +msgstr "Buat Tabel pada Tilikan Desain..." #. SZdVd #: dbaccess/inc/strings.hrc:169 @@ -944,7 +944,7 @@ #: dbaccess/inc/strings.hrc:170 msgctxt "RID_STR_NEW_VIEW" msgid "Create View..." -msgstr "Buat Tampilan..." +msgstr "Buat Tilikan..." #. uinhG #: dbaccess/inc/strings.hrc:171 @@ -986,7 +986,7 @@ #: dbaccess/inc/strings.hrc:177 msgctxt "RID_STR_QUERIES_HELP_TEXT" msgid "Create a query by specifying the filters, input tables, field names, and properties for sorting or grouping." -msgstr "Membuat kueri dengan menentukan penyaring, tabel masukan, nama ruas, dan properti untuk pengurutan atau pengelompokan." +msgstr "Membuat kueri dengan menentukan penapis, tabel masukan, nama ruas, dan properti untuk pengurutan atau pengelompokan." #. Gk7RQ #: dbaccess/inc/strings.hrc:178 @@ -1016,7 +1016,7 @@ #: dbaccess/inc/strings.hrc:182 msgctxt "RID_STR_VIEWS_HELP_TEXT_DESIGN" msgid "Create a view by specifying the tables and field names you would like to have visible." -msgstr "Membuat tampilan dengan menentukan tabel dan nama ruas yang hendak Anda tampilkan." +msgstr "Buat tilikan dengan menentukan tabel dan nama ruas yang hendak ditampakkan." #. 5ADJN #: dbaccess/inc/strings.hrc:183 @@ -1034,7 +1034,7 @@ #: dbaccess/inc/strings.hrc:185 msgctxt "STR_PREVIEW" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. MpYZa #: dbaccess/inc/strings.hrc:186 @@ -1142,7 +1142,7 @@ #: dbaccess/inc/strings.hrc:206 msgctxt "STR_TITLE_RENAME" msgid "Rename to" -msgstr "Ganti nama jadi" +msgstr "Nama ulang jadi" #. GQDBD #: dbaccess/inc/strings.hrc:207 @@ -1166,7 +1166,7 @@ #: dbaccess/inc/strings.hrc:211 msgctxt "SBA_BROWSER_SETTING_FILTER" msgid "Error setting the filter criteria" -msgstr "Kesalahan dalam mengatur kriteria penyaringan" +msgstr "Kesalahan dalam mengatur kriteria penapisan" #. tXz3U #: dbaccess/inc/strings.hrc:212 @@ -1461,7 +1461,7 @@ #: dbaccess/inc/strings.hrc:258 msgctxt "STR_TABLEDESIGN_DATASOURCE_DELETED" msgid "The table filter could not be adjusted because the data source has been deleted." -msgstr "Penyaring tabel tidak bisa disetel karena sumber data telah dihapus." +msgstr "Penapis tabel tidak bisa diatur karena sumber data telah dihapus." #. Lt4Yc #: dbaccess/inc/strings.hrc:259 @@ -1488,8 +1488,8 @@ "\n" "Should a primary key be created now?" msgstr "" -"Diperlukan adanya indeks yang unik atau sebuah kunci utama untuk mengidentifikasi data pada basis data ini.\n" -"Anda hanya bisa memasukkan data pada tabel ini apabila satu dari dua kondisi struktural tersebut telah terpenuhi.\n" +"Diperlukan adanya indeks yang unik atau sebuah kunci utama untuk mengenali data pada basis data ini.\n" +"Anda hanya bisa memasukkan data pada tabel ini apabila satu dari dua syarat struktural tersebut telah terpenuhi.\n" "\n" "Apakah kunci utama akan dibuat sekarang?" @@ -1821,13 +1821,13 @@ #: dbaccess/inc/strings.hrc:318 msgctxt "STR_ALL_VIEWS" msgid "All views" -msgstr "Semua tampilan" +msgstr "Semua tilikan" #. APBCw #: dbaccess/inc/strings.hrc:319 msgctxt "STR_ALL_TABLES_AND_VIEWS" msgid "All tables and views" -msgstr "Semua tabel dan tampilan" +msgstr "Semua tabel dan tilikan" #. 4SGBJ #: dbaccess/inc/strings.hrc:321 @@ -2477,7 +2477,7 @@ #: dbaccess/inc/strings.hrc:433 msgctxt "STR_CTW_NO_VIEWS_SUPPORT" msgid "The destination database does not support views." -msgstr "Basis data tujuan tidak mendukung tampilan." +msgstr "Basis data tujuan tidak mendukung tilikan." #. RaJQd #: dbaccess/inc/strings.hrc:434 @@ -2907,7 +2907,7 @@ #: dbaccess/uiconfig/ui/copytablepage.ui:61 msgctxt "copytablepage|view" msgid "A_s table view" -msgstr "_Sebagai tampilan tabel" +msgstr "_Sebagai tilikan tabel" #. rhvDJ #: dbaccess/uiconfig/ui/copytablepage.ui:76 @@ -2997,13 +2997,13 @@ #: dbaccess/uiconfig/ui/dbasepage.ui:91 msgctxt "dbasepage|showDelRowsCheckbutton" msgid "Display deleted records as well" -msgstr "Tampilkan juga rekaman yang dihapus" +msgstr "Tayangkan juga rekaman yang dihapus" #. sD2dr #: dbaccess/uiconfig/ui/dbasepage.ui:108 msgctxt "dbasepage|specMessageLabel" msgid "Note: When deleted, and thus inactive, records are displayed, you will not be able to delete records from the data source." -msgstr "Catatan: Ketika terhapus, sehingga tidak aktif, rekaman akan ditampilkan, Anda tidak akan bisa menghapus rekaman dari sumber data." +msgstr "Catatan: Ketika terhapus, sehingga tidak aktif, rekaman akan ditayangkan, Anda tidak akan bisa menghapus rekaman dari sumber data." #. fhzxC #: dbaccess/uiconfig/ui/dbasepage.ui:126 @@ -3211,7 +3211,7 @@ #: dbaccess/uiconfig/ui/directsqldialog.ui:260 msgctxt "directsqldialog|extended_tip|status" msgid "Displays the results, including errors, of the SQL command that you ran." -msgstr "Menampilkan hasil, termasuk galat, dari perintah SQL yang Anda jalankan." +msgstr "Menayangkan hasil, termasuk galat, dari perintah SQL yang Anda jalankan." #. iUSnR #: dbaccess/uiconfig/ui/directsqldialog.ui:271 @@ -3223,7 +3223,7 @@ #: dbaccess/uiconfig/ui/directsqldialog.ui:304 msgctxt "directsqldialog|extended_tip|output" msgid "Displays the results of the SQL command that you ran." -msgstr "Menampilkan hasil dari perintah SQL yang Anda jalankan." +msgstr "Menayangkan hasil dari perintah SQL yang Anda jalankan." #. DYZA5 #: dbaccess/uiconfig/ui/directsqldialog.ui:315 @@ -3606,7 +3606,7 @@ #: dbaccess/uiconfig/ui/indexdesigndialog.ui:115 msgctxt "indexdesigndialog|ID_INDEX_RENAME" msgid "Rename Current Index" -msgstr "Ganti Nama Indeks yang Sekarang" +msgstr "Nama Ulang Indeks Saat Ini" #. Bqozz #: dbaccess/uiconfig/ui/indexdesigndialog.ui:128 @@ -4080,7 +4080,7 @@ #: dbaccess/uiconfig/ui/queryfilterdialog.ui:8 msgctxt "queryfilterdialog|QueryFilterDialog" msgid "Standard Filter" -msgstr "Penyaring Standar" +msgstr "Penapis Standar" #. Vj95w #: dbaccess/uiconfig/ui/queryfilterdialog.ui:95 @@ -4098,7 +4098,7 @@ #: dbaccess/uiconfig/ui/queryfilterdialog.ui:118 msgctxt "queryfilterdialog|label6" msgid "Condition" -msgstr "Kondisi" +msgstr "Syarat" #. DdcwC #: dbaccess/uiconfig/ui/queryfilterdialog.ui:131 @@ -4224,19 +4224,19 @@ #: dbaccess/uiconfig/ui/queryfilterdialog.ui:265 msgctxt "queryfilterdialog|extended_tip|value1" msgid "Specifies a value to filter the field." -msgstr "Menentukan nilai untuk menyaring ruas." +msgstr "Menentukan nilai untuk menapis ruas." #. w42mr #: dbaccess/uiconfig/ui/queryfilterdialog.ui:283 msgctxt "queryfilterdialog|extended_tip|value2" msgid "Specifies a value to filter the field." -msgstr "Menentukan nilai untuk menyaring ruas." +msgstr "Menentukan nilai untuk menapis ruas." #. tB93H #: dbaccess/uiconfig/ui/queryfilterdialog.ui:301 msgctxt "queryfilterdialog|extended_tip|value3" msgid "Specifies a value to filter the field." -msgstr "Menentukan nilai untuk menyaring ruas." +msgstr "Menentukan nilai untuk menapis ruas." #. PFZ8z #: dbaccess/uiconfig/ui/queryfilterdialog.ui:316 @@ -4284,7 +4284,7 @@ #: dbaccess/uiconfig/ui/queryfilterdialog.ui:384 msgctxt "queryfilterdialog|extended_tip|QueryFilterDialog" msgid "Allows you to set the filtering options." -msgstr "Memungkinkan Anda mengatur pilihan penyaringan." +msgstr "Memungkinkan Anda mengatur pilihan penapisan." #. jFD4L #: dbaccess/uiconfig/ui/queryfuncmenu.ui:12 @@ -4638,7 +4638,7 @@ #: dbaccess/uiconfig/ui/sortdialog.ui:266 msgctxt "sortdialog|extended_tip|SortDialog" msgid "Specifies the sort criteria for the data display." -msgstr "Tentukan kriteria pengurutan untuk tampilan data." +msgstr "Tentukan kriteria pengurutan untuk tayangan data." #. nDP3A #: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:24 @@ -4764,13 +4764,13 @@ #: dbaccess/uiconfig/ui/specialsettingspage.ui:138 msgctxt "specialsettingspage|displayver" msgid "Display version columns (when available)" -msgstr "Tampilkan kolom versi (bila tersedia)" +msgstr "Tayangkan kolom versi (bila tersedia)" #. X4qSb #: dbaccess/uiconfig/ui/specialsettingspage.ui:146 msgctxt "specialsettingspage|extended_tip|displayver" msgid "Displays the internal version number of the record in the database table." -msgstr "Tampilkan nomor versi internal dari record dalam tabel basis data." +msgstr "Menayangkan nomor versi internal dari rekaman dalam tabel basis data." #. JqBdc #: dbaccess/uiconfig/ui/specialsettingspage.ui:157 @@ -4998,7 +4998,7 @@ #: dbaccess/uiconfig/ui/tablesfilterdialog.ui:8 msgctxt "tablesfilterdialog|TablesFilterDialog" msgid "Tables Filter" -msgstr "Penyaring Tabel" +msgstr "Penapis Tabel" #. 5ZNAA #: dbaccess/uiconfig/ui/tablesfilterpage.ui:45 @@ -5010,7 +5010,7 @@ #: dbaccess/uiconfig/ui/tablesfilterpage.ui:118 msgctxt "tablesfilterpage|label1" msgid "Tables and Table Filter" -msgstr "Tabel dan Penyaring Tabel" +msgstr "Tabel dan Penapis Tabel" #. xfec4 #: dbaccess/uiconfig/ui/tablesjoindialog.ui:109 diff -Nru libreoffice-7.4.6/translations/source/id/desktop/messages.po libreoffice-7.4.7/translations/source/id/desktop/messages.po --- libreoffice-7.4.6/translations/source/id/desktop/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/desktop/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-07-04 16:15+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1536928910.000000\n" #. v2iwK @@ -887,7 +887,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:89 msgctxt "extensionmanager|extended_tip|shared" msgid "Filter extensions available for all users of this computer." -msgstr "Ekstensi Penyaring tersedia untuk semua pengguna pada komputer ini." +msgstr "Tapis ekstensi tersedia untuk semua pengguna pada komputer ini." #. zhqZT #: desktop/uiconfig/ui/extensionmanager.ui:100 @@ -899,7 +899,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:109 msgctxt "extensionmanager|extended_tip|user" msgid "Filter extensions only available for the currently logged in user." -msgstr "Ekstensi penyaring hanya tersedia untuk pengguna yang saat ini masuk." +msgstr "Tapis ekstensi hanya tersedia untuk pengguna yang saat ini masuk." #. 6wBVk #: desktop/uiconfig/ui/extensionmanager.ui:120 diff -Nru libreoffice-7.4.6/translations/source/id/dictionaries/pt_BR/dialog.po libreoffice-7.4.7/translations/source/id/dictionaries/pt_BR/dialog.po --- libreoffice-7.4.6/translations/source/id/dictionaries/pt_BR/dialog.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/dictionaries/pt_BR/dialog.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-02-06 08:57+0000\n" +"PO-Revision-Date: 2023-04-29 09:35+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547452474.000000\n" #. Bshz7 @@ -259,7 +259,7 @@ "hlp_minus\n" "property.text" msgid "Change hyphen characters to real minus signs." -msgstr "Ubah tanda sambung ke tanda minus sebenarnya." +msgstr "Ubah karakter tanda sambung ke tanda minus sebenarnya." #. VNuhF #: pt_BR_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/id/editeng/messages.po libreoffice-7.4.7/translations/source/id/editeng/messages.po --- libreoffice-7.4.6/translations/source/id/editeng/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/editeng/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:49+0200\n" -"PO-Revision-Date: 2022-12-27 12:05+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1513056505.000000\n" #. BHYB4 @@ -1762,7 +1762,7 @@ #: include/editeng/editrids.hrc:312 msgctxt "RID_OUTLUNDO_COLLAPSE" msgid "Collapse" -msgstr "Tutup" +msgstr "Kuncupkan" #. kKFiE #: include/editeng/editrids.hrc:313 diff -Nru libreoffice-7.4.6/translations/source/id/extensions/messages.po libreoffice-7.4.7/translations/source/id/extensions/messages.po --- libreoffice-7.4.6/translations/source/id/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-07-04 16:16+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1557389916.000000\n" #. cBx8W @@ -1033,7 +1033,7 @@ #: extensions/inc/strings.hrc:63 msgctxt "RID_STR_SHOW_FILTERSORT" msgid "Filtering / Sorting" -msgstr "Penyaringan / Pengurutan" +msgstr "Penapisan / Pengurutan" #. 9uqXs #: extensions/inc/strings.hrc:64 @@ -1093,7 +1093,7 @@ #: extensions/inc/strings.hrc:73 msgctxt "RID_STR_FILTER" msgid "Filter" -msgstr "Penyaring" +msgstr "Penapis" #. ftrCG #: extensions/inc/strings.hrc:74 @@ -1111,7 +1111,7 @@ #: extensions/inc/strings.hrc:76 msgctxt "RID_STR_FILTERPROPOSAL" msgid "Filter proposal" -msgstr "Rancana penyaringan" +msgstr "Ajuan penapisan" #. HDAj8 #: extensions/inc/strings.hrc:77 @@ -2668,7 +2668,7 @@ #: extensions/inc/strings.hrc:341 msgctxt "STR_SLOW_PREVIEW" msgid "The device does not offer a preview option. Therefore, a normal scan will be used as a preview instead. This may take a considerable amount of time." -msgstr "Perangkat ini tidak menawarkan pilihan pratinjau. Oleh karenanya, pindai normal yang akan dipakai sebagai pratinjau. Hal ini mungkin perlu memakan waktu cukup lama." +msgstr "Perangkat ini tidak menawarkan pilihan pratilik. Oleh karenanya, pindai normal yang akan dipakai sebagai pratilik. Hal ini mungkin perlu memakan waktu cukup lama." #. S8o4P #: extensions/inc/strings.hrc:342 @@ -3038,7 +3038,7 @@ #: extensions/inc/strings.hrc:406 msgctxt "RID_STR_COMBOWIZ_DBFIELD" msgid "You can either save the value of the combo box in a database field or use it for display purposes." -msgstr "Anda bisa memilih untuk menyimpan nilai dari kotak kombo dalam sebuah basis data atau menggunakannya untuk ditampilkan." +msgstr "Anda bisa memilih untuk menyimpan nilai dari kotak kombo dalam sebuah basis data atau menggunakannya untuk penayangan." #. 2QUFE #: extensions/inc/strings.hrc:408 @@ -3068,7 +3068,7 @@ #: extensions/uiconfig/sabpilot/ui/contentfieldpage.ui:114 msgctxt "contentfieldpage|label3" msgid "Display field" -msgstr "Tampilkan ruas" +msgstr "Tayangkan ruas" #. FBECK #: extensions/uiconfig/sabpilot/ui/contenttablepage.ui:48 @@ -3248,7 +3248,7 @@ #: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:17 msgctxt "fieldlinkpage|desc" msgid "This is where you select fields with matching contents so that the value from the display field will be shown." -msgstr "Di sini tempat Anda memilih ruas-ruas dengan isi yang cocok sehingga nilai dari ruas yang ditampilkan akan terlihat." +msgstr "Di sini tempat Anda memilih ruas-ruas dengan isi yang cocok sehingga nilai dari ruas yang ditayangkan akan terlihat." #. cWGwU #: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:55 @@ -4102,19 +4102,19 @@ #: extensions/uiconfig/sbibliography/ui/toolbar.ui:67 msgctxt "toolbar|TBC_BT_AUTOFILTER" msgid "AutoFilter" -msgstr "Penyaring Otomatis" +msgstr "Penapis Otomatis" #. Xbpge #: extensions/uiconfig/sbibliography/ui/toolbar.ui:79 msgctxt "toolbar|TBC_BT_FILTERCRIT" msgid "Standard Filter" -msgstr "Penyaring Standar" +msgstr "Penapis Standar" #. 9qFEc #: extensions/uiconfig/sbibliography/ui/toolbar.ui:91 msgctxt "toolbar|TBC_BT_REMOVEFILTER" msgid "Reset Filter" -msgstr "Reset Penyaring" +msgstr "Tata Ulang Penapis" #. C3Tuk #: extensions/uiconfig/sbibliography/ui/toolbar.ui:103 @@ -4180,7 +4180,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:85 msgctxt "sanedialog|extended_tip|deviceInfoButton" msgid "Displays a popup window with information obtained from the scanner driver." -msgstr "Menampilkan suatu jendela popup dengan informasi yang diperoleh dari driver pemindai." +msgstr "Menayangkan suatu jendela muncul dengan informasi yang diperoleh dari penggerak pemindai." #. 3EeXn #: extensions/uiconfig/scanner/ui/sanedialog.ui:97 @@ -4192,7 +4192,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:104 msgctxt "sanedialog|extended_tip|previewButton" msgid "Scans and displays the document in the preview area." -msgstr "Memindai dan menampilkan dokumen dalam area pratinjau." +msgstr "Memindai dan menayangkan dokumen dalam wilayah pratilik." #. ihLsf #: extensions/uiconfig/scanner/ui/sanedialog.ui:116 @@ -4264,13 +4264,13 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:366 msgctxt "sanedialog|extended_tip|preview" msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box." -msgstr "Menampilkan pratinjau dari citra yang dipindai. Area pratinjau memuat delapan pegangan. Seret pegangan untuk menyetel area pindai atau masukkan suatu nilai dalam kotak puntir marjin yang bersesuaian." +msgstr "Menayangkan pratilik dari citra yang dipindai. Wilayah pratilik memuat delapan pegangan. Seret pegangan untuk menata wilayah pindai atau masukkan suatu nilai dalam kotak putar marjin yang bersesuaian." #. FZ7Vw #: extensions/uiconfig/scanner/ui/sanedialog.ui:379 msgctxt "sanedialog|label2" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. EiiLN #: extensions/uiconfig/scanner/ui/sanedialog.ui:413 @@ -4288,7 +4288,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:444 msgctxt "sanedialog|extended_tip|deviceCombobox" msgid "Displays a list of available scanners detected in your system." -msgstr "Menampilkan suatu senarai dari pemindai yang tersedia yang terdeteksi pada sistem Anda." +msgstr "Menayangkan suatu senarai dari pemindai yang tersedia yang terdeteksi pada sistem Anda." #. nBuc6 #: extensions/uiconfig/scanner/ui/sanedialog.ui:466 @@ -4306,7 +4306,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:500 msgctxt "sanedialog|extended_tip|advancedcheckbutton" msgid "Mark this checkbox to display more configuration options for the scanner device." -msgstr "Tandai kotak centang ini untuk menampilkan lebih banyak opsi konfigurasi bagi peranti pemindai." +msgstr "Tandai kotak centang ini untuk menayangkan lebih banyak pilihan konfigurasi bagi peranti pemindai." #. gneMZ #: extensions/uiconfig/scanner/ui/sanedialog.ui:527 @@ -4318,7 +4318,7 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:569 msgctxt "sanedialog\\extended_tip|optionSvTreeListBox" msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below." -msgstr "Menampilkan opsi tingkat lanjut driver pemindai yang tersedia. Klik ganda suatu opsi untuk menampilkan isinya tepat di bawah." +msgstr "Menayangkan pilihan tingkat lanjut penggerak pemindai yang tersedia. Klik ganda suatu pilihan untuk menayangkan isinya tepat di bawah." #. VDQay #: extensions/uiconfig/scanner/ui/sanedialog.ui:607 @@ -4384,7 +4384,7 @@ #: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107 msgctxt "formlinksdialog|explanationLabel" msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form." -msgstr "Subformulir bisa dipakai untuk menampilkan data detail mengenai rekaman saat ini pada formulir induk. Untuk melakukannya, Anda bisa menentukan kolom mana pada subformulir yang cocok dengan kolom pada formulir induk." +msgstr "Subformulir bisa dipakai untuk menayangkan data rinci mengenai rekaman saat ini pada formulir induk. Untuk melakukannya, Anda bisa menentukan kolom mana pada subformulir yang cocok dengan kolom pada formulir induk." #. XkJm4 #: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129 diff -Nru libreoffice-7.4.6/translations/source/id/extras/source/autocorr/emoji.po libreoffice-7.4.7/translations/source/id/extras/source/autocorr/emoji.po --- libreoffice-7.4.6/translations/source/id/extras/source/autocorr/emoji.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/extras/source/autocorr/emoji.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-05-22 03:37+0000\n" +"PO-Revision-Date: 2023-03-08 23:34+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1537518731.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -1574,7 +1574,7 @@ "KEYBOARD\n" "LngText.text" msgid "keyboard" -msgstr "papan ketik" +msgstr "papan tik" #. ⏢ (U+023E2), see http://wiki.documentfoundation.org/Emoji #. MwTaz diff -Nru libreoffice-7.4.6/translations/source/id/filter/messages.po libreoffice-7.4.7/translations/source/id/filter/messages.po --- libreoffice-7.4.6/translations/source/id/filter/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/filter/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-15 22:28+0200\n" -"PO-Revision-Date: 2022-11-16 12:51+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564751052.000000\n" #. 5AQgJ @@ -26,37 +26,37 @@ #: filter/inc/strings.hrc:25 msgctxt "STR_IMPORT_ONLY" msgid "import filter" -msgstr "penyaring impor" +msgstr "penapis impor" #. 7vg82 #: filter/inc/strings.hrc:26 msgctxt "STR_IMPORT_EXPORT" msgid "import/export filter" -msgstr "penyaring impor/ekspor" +msgstr "penapis impor/ekspor" #. q6Bc5 #: filter/inc/strings.hrc:27 msgctxt "STR_EXPORT_ONLY" msgid "export filter" -msgstr "penyaring ekspor" +msgstr "penapis ekspor" #. AmATR #: filter/inc/strings.hrc:28 msgctxt "STR_WARN_DELETE" msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone." -msgstr "Anda yakin untuk menghapus Penyaring XML '%s'? Penyaring yang telah dihapus tidak dapat dikembalikan." +msgstr "Anda yakin untuk menghapus Penapis XML '%s'? Penapis yang telah dihapus tidak dapat dikembalikan." #. Vf3nz #: filter/inc/strings.hrc:29 msgctxt "STR_ERROR_FILTER_NAME_EXISTS" msgid "An XML filter with the name '%s' already exists. Please enter a different name." -msgstr "Penyaring XML dengan nama '%s' sudah ada. Mohon berikan nama yang lain." +msgstr "Penapis XML dengan nama '%s' sudah ada. Mohon berikan nama yang lain." #. e3U54 #: filter/inc/strings.hrc:30 msgctxt "STR_ERROR_TYPE_NAME_EXISTS" msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name." -msgstr "Nama untuk antarmuka '%s1' sudah digunakan oleh penyaring XML '%s2'. Mohon berikan nama yang lain." +msgstr "Nama untuk antarmuka '%s1' sudah digunakan oleh penapis XML '%s2'. Mohon berikan nama yang lain." #. Zt87T #: filter/inc/strings.hrc:31 @@ -80,7 +80,7 @@ #: filter/inc/strings.hrc:34 msgctxt "STR_DEFAULT_FILTER_NAME" msgid "New Filter" -msgstr "Penyaring Baru" +msgstr "Penapis Baru" #. N3wHE #: filter/inc/strings.hrc:35 @@ -92,49 +92,49 @@ #: filter/inc/strings.hrc:36 msgctxt "STR_UNDEFINED_FILTER" msgid "undefined filter" -msgstr "penyaring tidak ditentukan" +msgstr "penapis tidak ditentukan" #. tphDj #: filter/inc/strings.hrc:37 msgctxt "STR_FILTER_HAS_BEEN_SAVED" msgid "The XML filter '%s' has been saved as package '%s'. " -msgstr "Penyaring XML '%s' telah disimpan sebagai paket '%s'. " +msgstr "Penapis XML '%s' telah disimpan sebagai paket '%s'. " #. tJeU3 #: filter/inc/strings.hrc:38 msgctxt "STR_FILTERS_HAVE_BEEN_SAVED" msgid "%s XML filters have been saved in the package '%s'." -msgstr "Penyaring XML %s sudah disimpan pada paket '%s'." +msgstr "Penapis XML %s sudah disimpan pada paket '%s'." #. ZULF4 #: filter/inc/strings.hrc:39 msgctxt "STR_FILTER_PACKAGE" msgid "XSLT filter package" -msgstr "Paket penyaring XSLT" +msgstr "Paket penapis XSLT" #. TAAAB #: filter/inc/strings.hrc:40 msgctxt "STR_FILTER_INSTALLED" msgid "The XML filter '%s' has been installed successfully." -msgstr "Penyaring XML '%s' berhasil dipasang." +msgstr "Penapis XML '%s' berhasil dipasang." #. SwDCV #: filter/inc/strings.hrc:41 msgctxt "STR_FILTERS_INSTALLED" msgid "%s XML filters have been installed successfully." -msgstr "Penyaring XML %s sudah berhasil dipasang." +msgstr "Penapis XML %s sudah berhasil dipasang." #. dirBm #: filter/inc/strings.hrc:42 msgctxt "STR_NO_FILTERS_FOUND" msgid "No XML filter could be installed because the package '%s' does not contain any XML filters." -msgstr "Tidak ada penyaring XML yang dapat dipasang karena paket '%s' tidak memiliki penyaring XML apa pun." +msgstr "Tidak ada penapis XML yang dapat dipasang karena paket '%s' tidak memiliki penapis XML apa pun." #. EifWe #: filter/inc/strings.hrc:43 msgctxt "STR_XML_FILTER_LISTBOX" msgid "XML Filter List" -msgstr "Senarai Penyaring XML" +msgstr "Senarai Penapis XML" #. iUSBA #: filter/inc/strings.hrc:45 @@ -188,7 +188,7 @@ #: filter/inc/strings.hrc:53 msgctxt "T602FILTER_STR_DOT_COMMANDS" msgid "Display dot commands" -msgstr "Tampilkan komando titik" +msgstr "Tayangkan perintah titik" #. c6Atq #: filter/inc/strings.hrc:54 @@ -760,7 +760,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:891 msgctxt "pdfgeneralpage|extended_tip|usereferencexobject" msgid "When the option is enabled, then the reference XObject markup is used: viewers have to support this markup to show vector images. Otherwise a fallback bitmap is shown in the viewer." -msgstr "Ketika pilihan ini dinyalakan, maka rujukan markup XObject digunakan: penampil harus mendukung markup ini untuk menampilkan citra vektor. Jika tidak, bitmap cadangan ditampilkan di penampil." +msgstr "Ketika pilihan ini dinyalakan, maka rujukan markup XObject digunakan: penilik harus mendukung markup ini untuk menampilkan citra vektor. Jika tidak, bitmap cadangan ditampilkan di penilik." #. 2K2cD #: filter/uiconfig/ui/pdfgeneralpage.ui:902 @@ -784,7 +784,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:931 msgctxt "pdfgeneralpage|extended_tip|notes" msgid "Export also the Notes pages view at the end of the exported PDF presentation document." -msgstr "Ekspor juga tampilan halaman Catatan di akhir dokumen presentasi PDF yang diekspor." +msgstr "Ekspor juga tilikan halaman Catatan di akhir dokumen presentasi PDF yang diekspor." #. BGvC2 #: filter/uiconfig/ui/pdfgeneralpage.ui:942 @@ -796,7 +796,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:952 msgctxt "pdfgeneralpage|extended_tip|onlynotes" msgid "Exports only the Notes page views." -msgstr "Mengekspor hanya tampilan halaman Catatan." +msgstr "Mengekspor hanya tilikan halaman Catatan." #. MpRUp #: filter/uiconfig/ui/pdfgeneralpage.ui:963 @@ -922,7 +922,7 @@ #: filter/uiconfig/ui/pdfoptionsdialog.ui:185 msgctxt "pdfoptionsdialog|initialview" msgid "Initial View" -msgstr "Tampilan Awal" +msgstr "Tilikan Awal" #. 35g8K #: filter/uiconfig/ui/pdfoptionsdialog.ui:233 @@ -1288,7 +1288,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:70 msgctxt "pdfuserinterfacepage|extended_tip|resize" msgid "Select to generate a PDF file that is shown in a window displaying the whole initial page." -msgstr "Pilih untuk membuat berkas PDF yang ditampilkan di jendela yang menampilkan keseluruhan halaman awal." +msgstr "Pilih untuk membuat berkas PDF yang ditilikkan di jendela yang menampilkan keseluruhan halaman awal." #. crBwn #: filter/uiconfig/ui/pdfuserinterfacepage.ui:81 @@ -1306,7 +1306,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:100 msgctxt "pdfuserinterfacepage|display" msgid "_Display document title" -msgstr "Tampilkan judul _dokumen" +msgstr "Tayangkan judul _dokumen" #. tdVmB #: filter/uiconfig/ui/pdfuserinterfacepage.ui:108 @@ -1414,7 +1414,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:361 msgctxt "pdfuserinterfacepage|label4" msgid "Collapse Outlines" -msgstr "Ciutkan Kerangka" +msgstr "Kuncupkan Kerangka" #. ibYBv #: filter/uiconfig/ui/pdfviewpage.ui:48 @@ -1588,7 +1588,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:430 msgctxt "pdfviewpage|extended_tip|contfacinglayout" msgid "Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the right." -msgstr "Pilih untuk membuat berkas PDF yang menampilkan halaman berdampingan dalam kolom berkesinambungan. Untuk lebih dari dua halaman, halaman pertama ditampilkan di sebelah kanan." +msgstr "Pilih untuk membuat berkas PDF yang menilikkan halaman berdampingan dalam kolom berkesinambungan. Untuk berkas lebih dari dua halaman, halaman pertama ditayangkan di sebelah kanan." #. 4DFBW #: filter/uiconfig/ui/pdfviewpage.ui:441 @@ -1600,7 +1600,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:450 msgctxt "pdfviewpage|extended_tip|firstonleft" msgid "Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the left. You must enable support for complex text layout on Language settings - Languages in the Options dialog box." -msgstr "Pilih untuk membuat berkas PDF yang menampilkan halaman berdampingan dalam kolom berkesinambungan. Untuk lebih dari dua halaman, halaman pertama ditampilkan di sebelah kiri. Anda harus mengaktifkan dukungan untuk tata letak teks kompleks pada Pengaturan Bahasa - Bahasa di kotak dialog Pilihan." +msgstr "Pilih untuk membuat berkas PDF yang menilikkan halaman berdampingan dalam kolom berkesinambungan. Untuk berkas lebih dari dua halaman, halaman pertama ditayangkan di sebelah kiri. Anda harus mengaktifkan dukungan untuk tata letak teks kompleks pada Pengaturan Bahasa - Bahasa di kotak dialog Pilihan." #. sYKod #: filter/uiconfig/ui/pdfviewpage.ui:465 @@ -1612,7 +1612,7 @@ #: filter/uiconfig/ui/testxmlfilter.ui:8 msgctxt "testxmlfilter|TestXMLFilterDialog" msgid "Test XML Filter: %s" -msgstr "Uji Penyaring XML: %s" +msgstr "Uji Penapis XML: %s" #. 93Aw7 #: filter/uiconfig/ui/testxmlfilter.ui:88 @@ -1636,7 +1636,7 @@ #: filter/uiconfig/ui/testxmlfilter.ui:117 msgctxt "testxmlfilter|extended_tip|exportbrowse" msgid "Locate the file that you want to apply the XML export filter to. The XML code of the transformed file is opened in your default XML editor after transformation." -msgstr "Cari berkas yang Anda ingin terapkan penyaring ekspor XML padanya. Kode XML dari berkas yang ditransformasi dibuka pada penyunting bawaan XML Anda setelah transformasi." +msgstr "Cari berkas yang Anda ingin terapkan penapis ekspor XML padanya. Kode XML dari berkas yang ditransformasi dibuka pada penyunting baku XML Anda setelah transformasi." #. F8CJd #: filter/uiconfig/ui/testxmlfilter.ui:128 @@ -1648,19 +1648,19 @@ #: filter/uiconfig/ui/testxmlfilter.ui:134 msgctxt "testxmlfilter|extended_tip|currentdocument" msgid "The front-most open file that matches the XML filter criteria will be used to test the filter. The current XML export filter transforms the file and the resulting XML code is displayed in the XML Filter output window." -msgstr "Berkas terbuka paling depan yang cocok dengan kriteria penyaring XML akan digunakan untuk menguji penyaring. Penyaring ekspor XML saat ini mengubah berkas dan menghasilkan kode XML yang ditampilkan di jendela Luaran Penyaring XML." +msgstr "Berkas terbuka paling depan yang cocok dengan kriteria penapis XML akan digunakan untuk menguji penapis. Penapis ekspor XML saat ini mengubah berkas dan menghasilkan kode XML yang ditayangkan di jendela Luaran Penapis XML." #. EPLxG #: filter/uiconfig/ui/testxmlfilter.ui:150 msgctxt "testxmlfilter|extended_tip|exportxsltfile" msgid "Displays the file name of the XSLT filter that you entered on the Transformation tab page." -msgstr "Menampilkan nama berkas penyaring XSLT yang Anda masukkan pada halaman tab Transformasi ." +msgstr "Menampilkan nama berkas penapis XSLT yang Anda masukkan pada halaman tab Transformasi ." #. 9HnMA #: filter/uiconfig/ui/testxmlfilter.ui:167 msgctxt "testxmlfilter|extended_tip|currentfilename" msgid "Displays the file name of the document that you want to use to test the XSLT filter." -msgstr "Menampilkan nama berkas dari dkumen yang Anda gunakan untuk menguji penyaring XSLT." +msgstr "Menampilkan nama berkas dari dokumen yang Anda gunakan untuk menguji penapis XSLT." #. b7FMe #: filter/uiconfig/ui/testxmlfilter.ui:186 @@ -1684,7 +1684,7 @@ #: filter/uiconfig/ui/testxmlfilter.ui:235 msgctxt "testxmlfilter|extended_tip|importbrowse" msgid "Opens a file selection dialog. The selected file is opened using the current XML import filter." -msgstr "Membuka dialog pemilihan berkas. Berkas yang dipilih dibuka menggunakan penyaring impor XML saat ini." +msgstr "Membuka dialog pemilihan berkas. Berkas yang dipilih dibuka menggunakan penapis impor XML saat ini." #. RGb9P #: filter/uiconfig/ui/testxmlfilter.ui:246 @@ -1708,13 +1708,13 @@ #: filter/uiconfig/ui/testxmlfilter.ui:281 msgctxt "testxmlfilter|extended_tip|importxsltfile" msgid "Displays the file name of the XSLT filter that you entered on the Transformation tab page." -msgstr "Menampilkan nama berkas penyaring XSLT yang Anda masukkan pada halaman tab Transformasi ." +msgstr "Menampilkan nama berkas penapis XSLT yang Anda masukkan pada halaman tab Transformasi ." #. UAfyw #: filter/uiconfig/ui/testxmlfilter.ui:292 msgctxt "testxmlfilter|displaysource" msgid "Display source" -msgstr "Tampilkan sumber" +msgstr "Tayangkan sumber" #. CdCp5 #: filter/uiconfig/ui/testxmlfilter.ui:300 @@ -1750,7 +1750,7 @@ #: filter/uiconfig/ui/testxmlfilter.ui:399 msgctxt "testxmlfilter|extended_tip|TestXMLFilterDialog" msgid "Tests the XSLT stylesheets used by the selected XML filter." -msgstr "memeriksa XSLT yang menggunakan stylesheets dipilih penyaring XML." +msgstr "Menguji lembar gaya XSLT yang menggunakan penapis XML terpilih." #. DEJXN #: filter/uiconfig/ui/warnpdfdialog.ui:18 @@ -1768,7 +1768,7 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:18 msgctxt "xmlfiltersettings|XMLFilterSettingsDialog" msgid "XML Filter Settings" -msgstr "Pengaturan Penyaring XML" +msgstr "Pengaturan Penapis XML" #. x9LGg #: filter/uiconfig/ui/xmlfiltersettings.ui:41 @@ -1798,7 +1798,7 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:134 msgctxt "xmlfiltersettings|extended_tip|filterlist" msgid "Select one or more filters, then click one of the buttons." -msgstr "Pilih satu atau beberapa penyaring, lalu klik salah satu tombol." +msgstr "Pilih satu atau beberapa penapis, lalu klik salah satu tombol." #. VcMQo #: filter/uiconfig/ui/xmlfiltersettings.ui:156 @@ -1810,7 +1810,7 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:163 msgctxt "xmlfiltersettings|extended_tip|new" msgid "Opens a dialog for creating a new filter." -msgstr "Membuka dialog untuk membuat penyaring baru." +msgstr "Membuka dialog untuk membuat penapis baru." #. W6Ju3 #: filter/uiconfig/ui/xmlfiltersettings.ui:175 @@ -1822,7 +1822,7 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:182 msgctxt "xmlfiltersettings|extended_tip|edit" msgid "Opens a dialog for editing the selected filter." -msgstr "Membuka dialog untuk membuat penyaring baru." +msgstr "Membuka dialog untuk menyunting penapis terpilih." #. DAoSK #: filter/uiconfig/ui/xmlfiltersettings.ui:194 @@ -1834,7 +1834,7 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:201 msgctxt "xmlfiltersettings|extended_tip|test" msgid "Opens a dialog for testing the selected filter." -msgstr "Membuka dialog untuk menguji penyaring yang dipilih." +msgstr "Membuka dialog untuk menguji penapis terpilih." #. FE7Za #: filter/uiconfig/ui/xmlfiltersettings.ui:213 @@ -1858,7 +1858,7 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:239 msgctxt "xmlfiltersettings|extended_tip|save" msgid "Displays a Save as dialog to save the selected file as an XSLT filter package (*.jar)." -msgstr "Menampilkan dialog Simpan sebagai untuk menyimpan berkas yang dipilih sebagai paket penyaring XSLT (*.jar)." +msgstr "Menampilkan dialog Simpan sebagai untuk menyimpan berkas terpilih sebagai paket penapis XSLT (*.jar)." #. CuahL #: filter/uiconfig/ui/xmlfiltersettings.ui:251 @@ -1870,19 +1870,19 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:258 msgctxt "xmlfiltersettings|extended_tip|open" msgid "Displays an Open dialog to open a filter from an XSLT filter package (*.jar)." -msgstr "Menampilkan dialog Buka untuk membuka penyaring dari paket penyaring XSLT (*.jar)." +msgstr "Menampilkan dialog Buka untuk membuka penapis dari paket penapis XSLT (*.jar)." #. bC6ha #: filter/uiconfig/ui/xmlfiltersettings.ui:290 msgctxt "xmlfiltersettings|extended_tip|XMLFilterSettingsDialog" msgid "Opens the XML Filter Settings dialog, where you can create, edit, delete, and test filters to import and to export XML files." -msgstr "Membuka dialog Pengaturan Penyaring XML, di mana Anda dapat membuat, menyunting, menghapus, dan menguji penyaring untuk mengimpor dan mengekspor berkas XML." +msgstr "Membuka dialog Pengaturan Penapis XML, di mana Anda dapat membuat, menyunting, menghapus, dan menguji penapis untuk mengimpor dan mengekspor berkas XML." #. rLZ5z #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:23 msgctxt "xmlfiltertabpagegeneral|label2" msgid "_Filter name:" -msgstr "Nama _penyaring:" +msgstr "Nama _penapis:" #. dreFh #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:37 @@ -1912,7 +1912,7 @@ #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:100 msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername" msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog." -msgstr "Masukkan nama yang ingin Anda tampilkan di kotak senarai dialog Pengaturan Penyaring XML." +msgstr "Masukkan nama yang ingin Anda tayangkan di kotak senarai dialog Pengaturan Penapis XML." #. D5aZP #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119 @@ -1924,13 +1924,13 @@ #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:138 msgctxt "xmlfiltertabpagegeneral|extended_tip|interfacename" msgid "Enter the name that you want to display in the File type box in file dialogs." -msgstr "Masukkan nama yang ingin Anda tampilkan di kotak Jenis berkas dalam dialog berkas." +msgstr "Masukkan nama yang ingin Anda tayangkan di kotak Jenis berkas dalam dialog berkas." #. BFUsA #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:162 msgctxt "xmlfiltertabpagegeneral|extended_tip|application" msgid "Select the application that you want to use with the filter." -msgstr "Pilih aplikasi yang ingin Anda gunakan dengan penyaring." +msgstr "Pilih aplikasi yang ingin Anda gunakan dengan penapis." #. Gfrm2 #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:186 @@ -1942,7 +1942,7 @@ #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:206 msgctxt "xmlfiltertabpagegeneral|extended_tip|XmlFilterTabPageGeneral" msgid "Enter or edit general information for an XML filter." -msgstr "Masukkan dan sunting informasi umum dari Penyaring XML." +msgstr "Masukkan dan sunting informasi umum dari Penapis XML." #. FhD2n #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:24 @@ -2014,13 +2014,13 @@ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:162 msgctxt "xmlfiltertabpagetransformation|extended_tip|xsltexport" msgid "If this is an export filter, enter the file name of the XSLT stylesheet that you want to use for exporting." -msgstr "Jika ini adalah penyaring ekspor, masukkan nama berkas dari lembar gaya XSLT yang ingin Anda gunakan untuk mengekspor." +msgstr "Jika ini adalah penapis ekspor, masukkan nama berkas dari lembar gaya XSLT yang ingin Anda gunakan untuk mengekspor." #. Xgroa #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:185 msgctxt "xmlfiltertabpagetransformation|extended_tip|xsltimport" msgid "If this is an import filter, enter the file name of the XSLT stylesheet that you want to use for importing." -msgstr "Jika ini penyaring impor, masukkan nama berkas stylesheet XSLT yang anda ingin gunakan untuk impor." +msgstr "Jika ini penapis impor, masukkan nama berkas lembar gaya XSLT yang anda ingin gunakan untuk pengimporan." #. wRFNU #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:208 @@ -2032,19 +2032,19 @@ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:229 msgctxt "xmlfiltertabpagetransformation|filtercb" msgid "The filter needs XSLT 2.0 processor" -msgstr "Penyaring perlu prosesor XSLT 2.0" +msgstr "Penapis perlu prosesor XSLT 2.0" #. hDv78 #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:244 msgctxt "xmlfiltertabpagetransformation|extended_tip|XmlFilterTabPageTransformation" msgid "Enter or edit file information for an XML filter." -msgstr "Masukkan atau sunting berkas informasi dari Penyaring XML." +msgstr "Masukkan atau sunting berkas informasi dari Penapis XML." #. MCfGg #: filter/uiconfig/ui/xsltfilterdialog.ui:8 msgctxt "xsltfilterdialog|XSLTFilterDialog" msgid "XML Filter: %s" -msgstr "Penyaring XML: %s" +msgstr "Penapis XML: %s" #. bCZh2 #: filter/uiconfig/ui/xsltfilterdialog.ui:62 @@ -2068,4 +2068,4 @@ #: filter/uiconfig/ui/xsltfilterdialog.ui:149 msgctxt "xsltfilterdialog|extended_tip|XSLTFilterDialog" msgid "Opens a dialog for creating a new filter." -msgstr "Membuka dialog untuk membuat penyaring baru" +msgstr "Membuka dialog untuk membuat penapis baru" diff -Nru libreoffice-7.4.6/translations/source/id/forms/messages.po libreoffice-7.4.7/translations/source/id/forms/messages.po --- libreoffice-7.4.6/translations/source/id/forms/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/forms/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-12-09 14:39+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507241876.000000\n" #. naBgZ @@ -162,7 +162,7 @@ #: forms/inc/strings.hrc:49 msgctxt "RID_STR_COULD_NOT_SET_FILTER" msgid "Error setting the filter criteria" -msgstr "Kesalahan saat menyetel kriteria penyaringan" +msgstr "Kesalahan dalam mengatur kriteria penapisan" #. x4f5J #: forms/inc/strings.hrc:50 diff -Nru libreoffice-7.4.6/translations/source/id/formula/messages.po libreoffice-7.4.7/translations/source/id/formula/messages.po --- libreoffice-7.4.6/translations/source/id/formula/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/formula/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-12-10 11:04+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" +"Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1557389977.000000\n" #. YfKFn @@ -2624,7 +2624,7 @@ #: formula/inc/strings.hrc:31 msgctxt "RID_STR_EXPAND" msgid "Expand" -msgstr "Melebar" +msgstr "Kembangkan" #. Q2KRr #: formula/uiconfig/ui/formuladialog.ui:26 @@ -2732,7 +2732,7 @@ #: formula/uiconfig/ui/functionpage.ui:141 msgctxt "functionpage|extended_tip|function" msgid "Displays the functions found under the selected category. Double-click to select a function." -msgstr "Menampilkan fungsi yang ditemukan di bawah kategori. Klik dua kali untuk memilih fungsi." +msgstr "Menayangkan fungsi yang ditemukan di bawah kategori. Klik ganda untuk memilih fungsi." #. jY887 #: formula/uiconfig/ui/functionpage.ui:155 @@ -2804,4 +2804,4 @@ #: formula/uiconfig/ui/structpage.ui:77 msgctxt "structpage|extended_tip|struct" msgid "Displays a hierarchical representation of the current function." -msgstr "Menampilkan representasi hierarkis dari fungsi saat ini." +msgstr "Menayangkan representasi hierarkis dari fungsi saat ini." diff -Nru libreoffice-7.4.6/translations/source/id/fpicker/messages.po libreoffice-7.4.7/translations/source/id/fpicker/messages.po --- libreoffice-7.4.6/translations/source/id/fpicker/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/fpicker/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-07-12 03:33+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1538497466.000000\n" #. SJGCw @@ -56,7 +56,7 @@ #: fpicker/inc/strings.hrc:30 msgctxt "STR_PREVIEW" msgid "File Preview" -msgstr "Pratinjau Berkas" +msgstr "Pratilik Berkas" #. AGj3z #: fpicker/inc/strings.hrc:31 @@ -273,7 +273,7 @@ #: fpicker/uiconfig/ui/explorerfiledialog.ui:719 msgctxt "explorerfiledialog|options" msgid "Edit _filter settings" -msgstr "Sunting pengaturan _penyaring" +msgstr "Sunting pengaturan _penapis" #. 6XqLj #: fpicker/uiconfig/ui/explorerfiledialog.ui:746 @@ -351,13 +351,13 @@ #: fpicker/uiconfig/ui/remotefilesdialog.ui:253 msgctxt "remotefilesdialog|list_view|tooltip_text" msgid "List view" -msgstr "Tampilan senarai" +msgstr "Tilikan senarai" #. xxBtB #: fpicker/uiconfig/ui/remotefilesdialog.ui:268 msgctxt "remotefilesdialog|icon_view|tooltip_text" msgid "Icon view" -msgstr "Tampilan ikon" +msgstr "Tilikan ikon" #. 6CiqC #: fpicker/uiconfig/ui/remotefilesdialog.ui:284 @@ -387,7 +387,7 @@ #: fpicker/uiconfig/ui/remotefilesdialog.ui:499 msgctxt "remotefilesdialog|filterLabel" msgid "Filter" -msgstr "Penyaring" +msgstr "Penapis" #. rCVer #: fpicker/uiconfig/ui/remotefilesdialog.ui:513 @@ -418,7 +418,7 @@ #: include/fpicker/strings.hrc:18 msgctxt "STR_SVT_FILEPICKER_FILTER_OPTIONS" msgid "~Edit filter settings" -msgstr "Sunting pengaturan p~enyaring" +msgstr "Sunting pengaturan p~enapis" #. k7Sdb #: include/fpicker/strings.hrc:19 diff -Nru libreoffice-7.4.6/translations/source/id/helpcontent2/source/text/scalc/01.po libreoffice-7.4.7/translations/source/id/helpcontent2/source/text/scalc/01.po --- libreoffice-7.4.6/translations/source/id/helpcontent2/source/text/scalc/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/helpcontent2/source/text/scalc/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: libo_help scalc 4.2\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-04 18:04+0200\n" -"PO-Revision-Date: 2022-08-24 10:18+0000\n" -"Last-Translator: serval2412 \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2023-04-09 03:34+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1551149512.000000\n" #. sZfWF @@ -23,7 +23,7 @@ "tit\n" "help.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. NKqbi #: 01120000.xhp @@ -32,7 +32,7 @@ "hd_id1918698\n" "help.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. fVsK6 #: 01120000.xhp diff -Nru libreoffice-7.4.6/translations/source/id/helpcontent2/source/text/sdatabase.po libreoffice-7.4.7/translations/source/id/helpcontent2/source/text/sdatabase.po --- libreoffice-7.4.6/translations/source/id/helpcontent2/source/text/sdatabase.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/helpcontent2/source/text/sdatabase.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-08-24 10:18+0000\n" -"Last-Translator: serval2412 \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2023-04-10 03:34+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. ugSgG #: 02000000.xhp @@ -211,7 +211,7 @@ "par_id3154910\n" "help.text" msgid "You can find out which operators and commands can be used to formulate the filter conditions for a query." -msgstr "Anda dapat mengetahui operator-operator dan perintah-perintah mana yang dapat digunakan untuk merumuskan kondisi penyaringan untuk kueri." +msgstr "Anda dapat mengetahui operator-operator dan perintah-perintah mana yang dapat digunakan untuk merumuskan kondisi penapisan atas suatu kueri." #. xmAkP #: 02000000.xhp diff -Nru libreoffice-7.4.6/translations/source/id/helpcontent2/source/text/shared/06.po libreoffice-7.4.7/translations/source/id/helpcontent2/source/text/shared/06.po --- libreoffice-7.4.6/translations/source/id/helpcontent2/source/text/shared/06.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/helpcontent2/source/text/shared/06.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-05-10 09:33+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2023-04-10 03:34+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1541219105.000000\n" #. EUcrc @@ -23,7 +23,7 @@ "tit\n" "help.text" msgid "Filter screenshots" -msgstr "Cuplikan layar penyaring" +msgstr "Cuplikan layar penapis" #. KKTAL #: filter_screenshots.xhp diff -Nru libreoffice-7.4.6/translations/source/id/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.4.7/translations/source/id/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.4.6/translations/source/id/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/instsetoo_native/inc_openoffice/windows/msi_languages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: msi_languages lo-4.1\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-21 12:32+0100\n" -"PO-Revision-Date: 2022-03-21 10:34+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565594688.000000\n" #. tBfTE @@ -338,7 +338,7 @@ "OOO_ACTIONTEXT_36\n" "LngText.text" msgid "Evaluating launch conditions" -msgstr "Evaluasi kondisi peluncuran" +msgstr "Evaluasi syarat peluncuran" #. 5AK93 #: ActionTe.ulf @@ -3506,7 +3506,7 @@ "OOO_ERROR_37\n" "LngText.text" msgid "Cannot create the directory [2]. A file with this name already exists. Please rename or remove the file and click Retry, or click Cancel to exit." -msgstr "Tidak dapat membuat direktori [2]. Berkas dengan nama sama sudah ada. Silakan ganti nama atau buang berkas itu dan klik Coba Lagi, atau klik Batal untuk keluar." +msgstr "Tidak dapat membuat direktori [2]. Berkas dengan nama sama sudah ada. Silakan nama ulang atau buang berkas itu dan klik Coba Lagi, atau klik Batal untuk keluar." #. oCgqE #: Error.ulf diff -Nru libreoffice-7.4.6/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-09-26 19:50+0000\n" +"PO-Revision-Date: 2023-05-03 11:51+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564751755.000000\n" #. W5ukN @@ -214,7 +214,7 @@ "Label\n" "value.text" msgid "Rename" -msgstr "Ganti Nama" +msgstr "Nama Ulang" #. FrUWR #: BasicIDECommands.xcu @@ -364,7 +364,7 @@ "Label\n" "value.text" msgid "~Filter..." -msgstr "~Penyaring..." +msgstr "~Penapis..." #. RnaE2 #: BibliographyCommands.xcu @@ -424,7 +424,7 @@ "Label\n" "value.text" msgid "AutoFilter" -msgstr "Penyaring Otomatis" +msgstr "Penapis Otomatis" #. Zi7du #: BibliographyCommands.xcu @@ -434,7 +434,7 @@ "Label\n" "value.text" msgid "Reset Filter" -msgstr "Reset Penyaring" +msgstr "Tata Ulang Penapis" #. YF5sR #: CalcCommands.xcu @@ -834,7 +834,7 @@ "Label\n" "value.text" msgid "Pivot Table Filter" -msgstr "Penyaring Tabel Pivot" +msgstr "Penapis Tabel Pivot" #. BGjMw #: CalcCommands.xcu @@ -844,7 +844,7 @@ "PopupLabel\n" "value.text" msgid "~Filter..." -msgstr "~Penyaring..." +msgstr "~Penapis..." #. d2ih5 #: CalcCommands.xcu @@ -934,7 +934,7 @@ "Label\n" "value.text" msgid "Close Preview" -msgstr "Tutup Pratinjau" +msgstr "Tutup Pratilik" #. ewhFn #: CalcCommands.xcu @@ -1364,7 +1364,7 @@ "Label\n" "value.text" msgid "Conditional Formatting: Condition" -msgstr "Pemformatan Bersyarat: Kondisi" +msgstr "Pemformatan Bersyarat: Syarat" #. YxEsD #: CalcCommands.xcu @@ -1374,7 +1374,7 @@ "ContextLabel\n" "value.text" msgid "Condition..." -msgstr "Kondisi..." +msgstr "Syarat..." #. qfECf #: CalcCommands.xcu @@ -2384,7 +2384,7 @@ "Label\n" "value.text" msgid "Scale Screen Display" -msgstr "Ubah Skala Tampilan Layar" +msgstr "Ubah Skala Tayangan Layar" #. csiq5 #: CalcCommands.xcu @@ -2434,7 +2434,7 @@ "Label\n" "value.text" msgid "~Normal View" -msgstr "Tampilan ~Normal" +msgstr "Tilikan ~Normal" #. g86F5 #: CalcCommands.xcu @@ -3554,7 +3554,7 @@ "Label\n" "value.text" msgid "~Standard Filter..." -msgstr "Penyaring ~Standar..." +msgstr "Penapis ~Standar..." #. gqKXw #: CalcCommands.xcu @@ -3564,7 +3564,7 @@ "Label\n" "value.text" msgid "~Advanced Filter..." -msgstr "Penyaring L~anjutan..." +msgstr "Penapis L~anjutan..." #. vqFpr #: CalcCommands.xcu @@ -3574,7 +3574,7 @@ "Label\n" "value.text" msgid "Auto~Filter" -msgstr "Penyaring ~Otomatis" +msgstr "Penapis ~Otomatis" #. XBEpr #: CalcCommands.xcu @@ -3584,7 +3584,7 @@ "Label\n" "value.text" msgid "~Reset Filter" -msgstr "Atu~r Ulang Penyaring" +msgstr "Atu~r Ulang Penapis" #. iXKVq #: CalcCommands.xcu @@ -3634,7 +3634,7 @@ "Label\n" "value.text" msgid "~Hide AutoFilter" -msgstr "S~embunyikan Penyaring Otomatis" +msgstr "S~embunyikan Penapis Otomatis" #. 9zoJF #: CalcCommands.xcu @@ -3674,7 +3674,7 @@ "Label\n" "value.text" msgid "Rename Sheet" -msgstr "Ganti Nama Lembar" +msgstr "Nama Ulang Lembar" #. XX6G4 #: CalcCommands.xcu @@ -4214,7 +4214,7 @@ "Label\n" "value.text" msgid "View Grid Lines" -msgstr "Tampilkan Garis Kisi" +msgstr "Tilikkan Garis Kisi" #. fCpZ4 #: CalcCommands.xcu @@ -4374,7 +4374,7 @@ "Label\n" "value.text" msgid "More ~Filters" -msgstr "Lebih Banyak Pen~yaring" +msgstr "Lebih Banyak Pen~apis" #. ZUA6V #: CalcCommands.xcu @@ -5284,7 +5284,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. Mu9NE #: CalcWindowState.xcu @@ -5314,7 +5314,7 @@ "UIName\n" "value.text" msgid "Image Filter" -msgstr "Penyaring Citra" +msgstr "Penapis Citra" #. 6FRiC #: CalcWindowState.xcu @@ -5374,7 +5374,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. oUWGo #: CalcWindowState.xcu @@ -5404,7 +5404,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "Penyaring Formulir" +msgstr "Penapis Formulir" #. wrFFt #: CalcWindowState.xcu @@ -5644,7 +5644,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. 9sEbF #: CalcWindowState.xcu @@ -5874,7 +5874,7 @@ "Label\n" "value.text" msgid "~3D View..." -msgstr "Tampilan ~3D..." +msgstr "Tilikan ~3D..." #. mpEu3 #: ChartCommands.xcu @@ -7174,7 +7174,7 @@ "Label\n" "value.text" msgid "Switch Design View On/Off" -msgstr "Tampilan Desain Aktif/Tidak" +msgstr "Tilikan Desain Aktif/Tidak" #. Bs2Ez #: DbuCommands.xcu @@ -7264,7 +7264,7 @@ "Label\n" "value.text" msgid "Rename..." -msgstr "Ganti Nama..." +msgstr "Nama Ulang..." #. g7WhS #: DbuCommands.xcu @@ -7284,7 +7284,7 @@ "Label\n" "value.text" msgid "Edit in SQL View..." -msgstr "Sunting pada Tampilan SQL..." +msgstr "Sunting pada Tilikan SQL..." #. un9aP #: DbuCommands.xcu @@ -7324,7 +7324,7 @@ "Label\n" "value.text" msgid "Rename..." -msgstr "Ganti Nama..." +msgstr "Nama Ulang..." #. zEbRV #: DbuCommands.xcu @@ -7364,7 +7364,7 @@ "Label\n" "value.text" msgid "Rename..." -msgstr "Ganti Nama..." +msgstr "Nama Ulang..." #. LRuEv #: DbuCommands.xcu @@ -7404,7 +7404,7 @@ "Label\n" "value.text" msgid "Rename..." -msgstr "Ganti Nama..." +msgstr "Nama Ulang..." #. hDKqq #: DbuCommands.xcu @@ -7444,7 +7444,7 @@ "Label\n" "value.text" msgid "Rename..." -msgstr "Ganti Nama..." +msgstr "Nama Ulang..." #. sVkhu #: DbuCommands.xcu @@ -7474,7 +7474,7 @@ "Label\n" "value.text" msgid "Create as View" -msgstr "Buat sebagai Tampilan" +msgstr "Buat sebagai Tilikan" #. LaMEu #: DbuCommands.xcu @@ -7694,7 +7694,7 @@ "Label\n" "value.text" msgid "Query (Design View)..." -msgstr "Kueri (Tampilan Desain)..." +msgstr "Kueri (Tilikan Desain)..." #. AenSc #: DbuCommands.xcu @@ -7704,7 +7704,7 @@ "PopupLabel\n" "value.text" msgid "New ~Query (Design View)" -msgstr "Kueri ~Baru (Tampilan Desain)" +msgstr "Kueri ~Baru (Tilikan Desain)" #. Njo7R #: DbuCommands.xcu @@ -7714,7 +7714,7 @@ "Label\n" "value.text" msgid "Query (SQL View)..." -msgstr "Kueri (Tampilan SQL)..." +msgstr "Kueri (Tilikan SQL)..." #. mBDrN #: DbuCommands.xcu @@ -7724,7 +7724,7 @@ "PopupLabel\n" "value.text" msgid "New Query (~SQL View)" -msgstr "Kueri Baru (Tampilan ~SQL)" +msgstr "Kueri Baru (Tilikan ~SQL)" #. 6YxzA #: DbuCommands.xcu @@ -7754,7 +7754,7 @@ "Label\n" "value.text" msgid "View Design..." -msgstr "Desain Tampilan..." +msgstr "Desain Tilikan..." #. CL7AM #: DbuCommands.xcu @@ -7774,7 +7774,7 @@ "Label\n" "value.text" msgid "View (Simple)..." -msgstr "Tampilan (Sederhana)..." +msgstr "Tilikan (Sederhana)..." #. xoD2u #: DbuCommands.xcu @@ -7814,7 +7814,7 @@ "Label\n" "value.text" msgid "Table Filter..." -msgstr "Penyaring Tabel..." +msgstr "Penapis Tabel..." #. ZBbCg #: DbuCommands.xcu @@ -7934,7 +7934,7 @@ "Label\n" "value.text" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. KwGGF #: DbuCommands.xcu @@ -8004,7 +8004,7 @@ "Label\n" "value.text" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. GvpF4 #: DrawImpressCommands.xcu @@ -8024,7 +8024,7 @@ "Label\n" "value.text" msgid "Black & White View" -msgstr "Tampilan Hitam & Putih" +msgstr "Tilikan Hitam & Putih" #. fJvby #: DrawImpressCommands.xcu @@ -8074,7 +8074,7 @@ "Label\n" "value.text" msgid "Rename Page..." -msgstr "Ganti Nama Halaman..." +msgstr "Nama Ulang Halaman..." #. gCyCR #: DrawImpressCommands.xcu @@ -8084,7 +8084,7 @@ "Label\n" "value.text" msgid "Rename Slide..." -msgstr "Ganti Nama Salindia..." +msgstr "Nama Ulang Salindia..." #. EoR9S #: DrawImpressCommands.xcu @@ -8094,7 +8094,7 @@ "Label\n" "value.text" msgid "~Rename Layer" -msgstr "Ganti Nama ~Lapisan" +msgstr "Nama Ulang ~Lapisan" #. SZEUF #: DrawImpressCommands.xcu @@ -8504,7 +8504,7 @@ "Label\n" "value.text" msgid "~Display Snap Guides" -msgstr "~Tampilkan Garis Kancing" +msgstr "~Tayangkan Garis Kancing" #. RC4j5 #: DrawImpressCommands.xcu @@ -9034,7 +9034,7 @@ "Label\n" "value.text" msgid "~Drawing View" -msgstr "Tampilan Menggamba~r" +msgstr "Tilikan Menggamba~r" #. coDkB #: DrawImpressCommands.xcu @@ -9504,7 +9504,7 @@ "Label\n" "value.text" msgid "Display Views" -msgstr "Tampilkan Tilikan" +msgstr "Tayangkan Tilikan" #. fud7F #: DrawImpressCommands.xcu @@ -10304,7 +10304,7 @@ "Label\n" "value.text" msgid "Rename Master" -msgstr "Ganti Nama Induk" +msgstr "Nama Ulang Induk" #. E7WHo #: DrawImpressCommands.xcu @@ -10314,7 +10314,7 @@ "Label\n" "value.text" msgid "Close Master View" -msgstr "Tutup Tampilan Induk" +msgstr "Tutup Tilikan Induk" #. wAtyn #: DrawImpressCommands.xcu @@ -11524,7 +11524,7 @@ "Label\n" "value.text" msgid "Export Preview PDF" -msgstr "Ekspor PDF Pratinjau" +msgstr "Ekspor PDF Pratilik" #. sBp7W #: DrawImpressCommands.xcu @@ -11984,7 +11984,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. jAXv5 #: DrawWindowState.xcu @@ -12004,7 +12004,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "Penyaring Formulir" +msgstr "Penapis Formulir" #. CDRya #: DrawWindowState.xcu @@ -12054,7 +12054,7 @@ "UIName\n" "value.text" msgid "Image Filter" -msgstr "Penyaring Citra" +msgstr "Penapis Citra" #. XzZLB #: DrawWindowState.xcu @@ -12254,7 +12254,7 @@ "UIName\n" "value.text" msgid "Master View" -msgstr "Tampilan Induk" +msgstr "Tilikan Induk" #. Bcmob #: DrawWindowState.xcu @@ -12794,7 +12794,7 @@ "Label\n" "value.text" msgid "Expand" -msgstr "Melebar" +msgstr "Kembangkan" #. BbEwT #: Effects.xcu @@ -15924,7 +15924,7 @@ "Name\n" "value.text" msgid "View" -msgstr "Tampilan" +msgstr "Tilikan" #. GiAcD #: GenericCategories.xcu @@ -16214,7 +16214,7 @@ "Label\n" "value.text" msgid "Preview in Web Browser" -msgstr "Pratinjau di Penelusur Web" +msgstr "Pratilik di Peramban Web" #. GwMXU #: GenericCommands.xcu @@ -16244,7 +16244,7 @@ "Label\n" "value.text" msgid "Insert Fontwork" -msgstr "Sisipkan Fontwork" +msgstr "Sisipkan Seni Fonta" #. 5UN6F #: GenericCommands.xcu @@ -16254,7 +16254,7 @@ "ContextLabel\n" "value.text" msgid "Fontwork..." -msgstr "Seni fonta..." +msgstr "Seni Fonta (Fontwork)..." #. 6S6oz #: GenericCommands.xcu @@ -16264,7 +16264,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Fontwork Text" -msgstr "Sisipkan Teks Fontwork" +msgstr "Sisipkan Teks Seni Fonta" #. xaHfX #: GenericCommands.xcu @@ -16274,7 +16274,7 @@ "Label\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. TQ2td #: GenericCommands.xcu @@ -16284,7 +16284,7 @@ "Label\n" "value.text" msgid "Fontwork Same Letter Heights" -msgstr "Karakter Fontwork Sama Tinggi" +msgstr "Karakter Seni Fonta Sama Tinggi" #. GsMvi #: GenericCommands.xcu @@ -16294,7 +16294,7 @@ "Label\n" "value.text" msgid "Fontwork Alignment" -msgstr "Perataan Fontwork" +msgstr "Perataan Seni Fonta" #. yZJce #: GenericCommands.xcu @@ -16304,7 +16304,7 @@ "Label\n" "value.text" msgid "Fontwork Character Spacing" -msgstr "Jarak Antarkarakter Fontwork" +msgstr "Jarak Antarkarakter Seni Fonta" #. F49oZ #: GenericCommands.xcu @@ -17454,7 +17454,7 @@ "Label\n" "value.text" msgid "Flowchart: Display" -msgstr "Bagan Alur: Tampilan" +msgstr "Bagan Alur: Tayangan" #. KDopC #: GenericCommands.xcu @@ -17654,7 +17654,7 @@ "Label\n" "value.text" msgid "Plain Text" -msgstr "Teks Biasa" +msgstr "Teks Polos" #. rCAZo #: GenericCommands.xcu @@ -18424,7 +18424,7 @@ "Label\n" "value.text" msgid "Search Formatted Display String" -msgstr "Cari String Tampilan Terformat" +msgstr "Cari String Tayangan Terformat" #. hoECC #: GenericCommands.xcu @@ -18914,7 +18914,7 @@ "ContextLabel\n" "value.text" msgid "Optimal View" -msgstr "Tampilan Optimal" +msgstr "Tilikan Optimal" #. Z7FDE #: GenericCommands.xcu @@ -20406,7 +20406,7 @@ "Label\n" "value.text" msgid "~Web View" -msgstr "Tampilan ~Web" +msgstr "Tilikan ~Web" #. esbH8 #: GenericCommands.xcu @@ -20506,7 +20506,7 @@ "Label\n" "value.text" msgid "Styles Preview" -msgstr "Pratinjau Gaya" +msgstr "Pratilik Gaya" #. Zt2GN #: GenericCommands.xcu @@ -21036,7 +21036,7 @@ "Label\n" "value.text" msgid "~XML Filter Settings..." -msgstr "Pengaturan Penyaring ~XML..." +msgstr "Pengaturan Penapis ~XML..." #. mPdwa #: GenericCommands.xcu @@ -21156,7 +21156,7 @@ "Label\n" "value.text" msgid "Preview Dialog" -msgstr "Dialog Pratinjau" +msgstr "Dialog Pratilik" #. fNSZd #: GenericCommands.xcu @@ -21406,7 +21406,7 @@ "Label\n" "value.text" msgid "~Filter" -msgstr "~Penyaring" +msgstr "~Penapis" #. RqEKi #: GenericCommands.xcu @@ -22466,7 +22466,7 @@ "Label\n" "value.text" msgid "Restore Editing View" -msgstr "Kembalikan Tampilan Sunting" +msgstr "Kembalikan Tilikan Sunting" #. BcCGD #: GenericCommands.xcu @@ -22856,7 +22856,7 @@ "TooltipLabel\n" "value.text" msgid "Display Grid" -msgstr "Tampilkan Kisi" +msgstr "Tayangkan Kisi" #. umAgX #: GenericCommands.xcu @@ -23336,7 +23336,7 @@ "Label\n" "value.text" msgid "Filter" -msgstr "Penyaring" +msgstr "Penapis" #. n9gL6 #: GenericCommands.xcu @@ -23636,7 +23636,7 @@ "Label\n" "value.text" msgid "Email as P~DF..." -msgstr "Surel sebagai P~DF" +msgstr "Surelkan sebagai P~DF" #. MCknE #: GenericCommands.xcu @@ -24726,7 +24726,7 @@ "Label\n" "value.text" msgid "Print Pr~eview" -msgstr "Pratinjau C~etak" +msgstr "Pr~atilik Cetak" #. GM8zL #: GenericCommands.xcu @@ -24736,7 +24736,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Print Preview" -msgstr "Jungkitkan Pratinjau Cetak" +msgstr "Jungkitkan Pratilik Cetak" #. RmzBC #: GenericCommands.xcu @@ -24746,7 +24746,7 @@ "PopupLabel\n" "value.text" msgid "Close Preview" -msgstr "Tutup Pratinjau" +msgstr "Tutup Pratilik" #. F4kBv #: GenericCommands.xcu @@ -24786,7 +24786,7 @@ "Label\n" "value.text" msgid "Reset Filter/Sort" -msgstr "Atur Ulang Penyaring/Urutan" +msgstr "Atur Ulang Penapis/Urutan" #. UdPLv #: GenericCommands.xcu @@ -24826,7 +24826,7 @@ "ContextLabel\n" "value.text" msgid "~Email Document..." -msgstr "~Dokumen Surel..." +msgstr "Sur~elkan Dokumen..." #. 6yTaz #: GenericCommands.xcu @@ -24876,7 +24876,7 @@ "Label\n" "value.text" msgid "Standard Filter..." -msgstr "Penyaring Standar..." +msgstr "Penapis Standar..." #. ZKWWm #: GenericCommands.xcu @@ -24886,7 +24886,7 @@ "Label\n" "value.text" msgid "AutoFilter" -msgstr "Penyaring Otomatis" +msgstr "Penapis Otomatis" #. kesYU #: GenericCommands.xcu @@ -24926,7 +24926,7 @@ "Label\n" "value.text" msgid "Apply Filter" -msgstr "Terapkan Penyaring" +msgstr "Terapkan Penapis" #. 6y4qy #: GenericCommands.xcu @@ -25016,7 +25016,7 @@ "Label\n" "value.text" msgid "Form-Based Filters" -msgstr "Penyaring Berdasar Formulir" +msgstr "Penapis Berdasar Formulir" #. VLGzi #: GenericCommands.xcu @@ -25036,7 +25036,7 @@ "Label\n" "value.text" msgid "Apply Form-Based Filter" -msgstr "Terapkan Penyaring Berdasar Formulir" +msgstr "Terapkan Penapis Berdasar Formulir" #. ZBv9N #: GenericCommands.xcu @@ -25046,7 +25046,7 @@ "Label\n" "value.text" msgid "Filter Navigation" -msgstr "Navigasi Penyaring" +msgstr "Navigasi Penapis" #. Gfump #: GenericCommands.xcu @@ -26116,7 +26116,7 @@ "Label\n" "value.text" msgid "~Filter" -msgstr "~Penyaring" +msgstr "~Penapis" #. AthEh #: GenericCommands.xcu @@ -26156,7 +26156,7 @@ "Label\n" "value.text" msgid "~View" -msgstr "Ta~mpilan" +msgstr "~Tilik" #. iEu6j #: GenericCommands.xcu @@ -26286,7 +26286,7 @@ "Label\n" "value.text" msgid "Change View" -msgstr "Ubah Tampilan" +msgstr "Ubah Tilikan" #. zfgMB #: GenericCommands.xcu @@ -26296,7 +26296,7 @@ "ContextLabel\n" "value.text" msgid "View" -msgstr "Tampilan" +msgstr "Tilikan" #. ZxxTy #: GenericCommands.xcu @@ -27576,7 +27576,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "Penyaring Formulir" +msgstr "Penapis Formulir" #. NnEFW #: ImpressWindowState.xcu @@ -27626,7 +27626,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. 8Srd2 #: ImpressWindowState.xcu @@ -27646,7 +27646,7 @@ "UIName\n" "value.text" msgid "Image Filter" -msgstr "Penyaring Citra" +msgstr "Penapis Citra" #. 92W6B #: ImpressWindowState.xcu @@ -27796,7 +27796,7 @@ "UIName\n" "value.text" msgid "Slide View" -msgstr "Tampilan Salindia" +msgstr "Tilikan Salindia" #. 6xE8P #: ImpressWindowState.xcu @@ -27926,7 +27926,7 @@ "UIName\n" "value.text" msgid "Master View" -msgstr "Tampilan Induk" +msgstr "Tilikan Induk" #. XgwBZ #: ImpressWindowState.xcu @@ -29206,7 +29206,7 @@ "Title\n" "value.text" msgid "Fontwork" -msgstr "Seni fonta" +msgstr "Seni Fonta" #. vnPii #: Sidebar.xcu @@ -29226,7 +29226,7 @@ "Title\n" "value.text" msgid "Default" -msgstr "Bawaan" +msgstr "Baku" #. FSj4z #: Sidebar.xcu @@ -29926,7 +29926,7 @@ "Label\n" "value.text" msgid "~Normal View" -msgstr "Tampilan ~Normal" +msgstr "Tilikan ~Normal" #. DVeEj #: WriterCommands.xcu @@ -30056,7 +30056,7 @@ "Label\n" "value.text" msgid "Preview Zoom" -msgstr "Zum Pratinjau" +msgstr "Zum Pratilik" #. BAjyc #: WriterCommands.xcu @@ -30756,7 +30756,7 @@ "Label\n" "value.text" msgid "Content Control Properties" -msgstr "Properti Kendali Konten" +msgstr "Properti Kendali Isi" #. npNpZ #: WriterCommands.xcu @@ -30936,7 +30936,7 @@ "Label\n" "value.text" msgid "Insert Rich Text Content Control" -msgstr "Sisipkan Kendali Konten Rich Text" +msgstr "Sisipkan Kendali Isi Rich Text" #. GH8DZ #: WriterCommands.xcu @@ -30956,7 +30956,7 @@ "Label\n" "value.text" msgid "Insert Drop-Down List Content Control" -msgstr "Sisipkan Kendali Konten Senarai Tarik-Turun" +msgstr "Sisipkan Kendali Isi Senarai Tarik-Turun" #. Avn9E #: WriterCommands.xcu @@ -30966,7 +30966,7 @@ "Label\n" "value.text" msgid "Insert Picture Content Control" -msgstr "Sisipkan Kendali Konten Gambar" +msgstr "Sisipkan Kendali Isi Gambar" #. oxa64 #: WriterCommands.xcu @@ -30976,7 +30976,7 @@ "Label\n" "value.text" msgid "Insert Date Content Control" -msgstr "Sisipkan Kendali Konten Tanggal" +msgstr "Sisipkan Kendali Isi Tanggal" #. HxFAE #: WriterCommands.xcu @@ -32246,7 +32246,7 @@ "Label\n" "value.text" msgid "Two Pages Preview" -msgstr "Pratinjau Dua Halaman" +msgstr "Pratilik Dua Halaman" #. G7JBA #: WriterCommands.xcu @@ -32256,7 +32256,7 @@ "Label\n" "value.text" msgid "Single Page Preview" -msgstr "Pratinjau Halaman Tunggal" +msgstr "Pratilik Halaman Tunggal" #. APPcq #: WriterCommands.xcu @@ -32276,7 +32276,7 @@ "Label\n" "value.text" msgid "Multiple Pages Preview" -msgstr "Pratinjau Halaman Jamak" +msgstr "Pratilik Halaman Jamak" #. HRuMm #: WriterCommands.xcu @@ -32306,7 +32306,7 @@ "Label\n" "value.text" msgid "Close Preview" -msgstr "Tutup Pratinjau" +msgstr "Tutup Pratilik" #. LmbRA #: WriterCommands.xcu @@ -33016,7 +33016,7 @@ "Label\n" "value.text" msgid "To Previous Paragraph in Level" -msgstr "Ke Halaman Sebelumnya di Tingkat" +msgstr "Ke Paragraf Sebelumnya di Tingkat" #. HrGCz #: WriterCommands.xcu @@ -34626,7 +34626,7 @@ "Label\n" "value.text" msgid "Show Whitespac~e" -msgstr "Tampilkan ~Spasi" +msgstr "Tayangkan Da~erah Kosong" #. RHnwE #: WriterCommands.xcu @@ -34686,7 +34686,7 @@ "Label\n" "value.text" msgid "Book Preview" -msgstr "Pratinjau Buku" +msgstr "Pratilik Buku" #. pk7kQ #: WriterCommands.xcu @@ -34706,7 +34706,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft Word..." -msgstr "Surel sebagai ~Microsoft Word..." +msgstr "Surelkan sebagai ~Microsoft Word..." #. CRkbD #: WriterCommands.xcu @@ -36136,7 +36136,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. Grn9p #: WriterFormWindowState.xcu @@ -36276,7 +36276,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "Penyaring Formulir" +msgstr "Penapis Formulir" #. GfECF #: WriterFormWindowState.xcu @@ -36336,7 +36336,7 @@ "UIName\n" "value.text" msgid "Image Filter" -msgstr "Penyaring Gambar" +msgstr "Penapis Citra" #. CHxFZ #: WriterFormWindowState.xcu @@ -36396,7 +36396,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. WzbV7 #: WriterFormWindowState.xcu @@ -36526,7 +36526,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. LeAwq #: WriterGlobalWindowState.xcu @@ -36626,7 +36626,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. Er7xX #: WriterGlobalWindowState.xcu @@ -36766,7 +36766,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "Penyaring Formulir" +msgstr "Penapis Formulir" #. ijWZE #: WriterGlobalWindowState.xcu @@ -36826,7 +36826,7 @@ "UIName\n" "value.text" msgid "Image Filter" -msgstr "Penyaring Gambar" +msgstr "Penapis Citra" #. DVzs7 #: WriterGlobalWindowState.xcu @@ -36876,7 +36876,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. rqZsp #: WriterGlobalWindowState.xcu @@ -37006,7 +37006,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. 8EuMQ #: WriterGlobalWindowState.xcu @@ -37136,7 +37136,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. Z4q38 #: WriterReportWindowState.xcu @@ -37276,7 +37276,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "Penyaring Formulir" +msgstr "Penapis Formulir" #. TtU2R #: WriterReportWindowState.xcu @@ -37336,7 +37336,7 @@ "UIName\n" "value.text" msgid "Image Filter" -msgstr "Penyaring Gambar" +msgstr "Penapis Citra" #. YukNG #: WriterReportWindowState.xcu @@ -37396,7 +37396,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. wtUgA #: WriterReportWindowState.xcu @@ -37526,7 +37526,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. TnUEj #: WriterWebWindowState.xcu @@ -37596,7 +37596,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. 6fLtS #: WriterWebWindowState.xcu @@ -37756,7 +37756,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. 67QjN #: WriterWebWindowState.xcu @@ -37776,7 +37776,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "Penyaring Formulir" +msgstr "Penapis Formulir" #. Ai2AB #: WriterWebWindowState.xcu @@ -37826,7 +37826,7 @@ "UIName\n" "value.text" msgid "Image Filter" -msgstr "Penyaring Gambar" +msgstr "Penapis Citra" #. sg6nC #: WriterWebWindowState.xcu @@ -37856,7 +37856,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. aAcCd #: WriterWebWindowState.xcu @@ -38056,7 +38056,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. 63SJV #: WriterWindowState.xcu @@ -38246,7 +38246,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "Penyaring Formulir" +msgstr "Penapis Formulir" #. uCE9z #: WriterWindowState.xcu @@ -38306,7 +38306,7 @@ "UIName\n" "value.text" msgid "Image Filter" -msgstr "Penyaring Citra" +msgstr "Penapis Citra" #. F8cP4 #: WriterWindowState.xcu @@ -38356,7 +38356,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. MNMGR #: WriterWindowState.xcu @@ -38486,7 +38486,7 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" #. GFM28 #: WriterWindowState.xcu @@ -38636,7 +38636,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. GgAHU #: XFormsWindowState.xcu @@ -38776,7 +38776,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "Penyaring Formulir" +msgstr "Penapis Formulir" #. nahhi #: XFormsWindowState.xcu @@ -38836,7 +38836,7 @@ "UIName\n" "value.text" msgid "Image Filter" -msgstr "Penyaring Citra" +msgstr "Penapis Citra" #. hVGao #: XFormsWindowState.xcu @@ -38896,7 +38896,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Pratinjau Cetak" +msgstr "Pratilik Cetak" #. jQnAF #: XFormsWindowState.xcu @@ -39026,4 +39026,4 @@ "UIName\n" "value.text" msgid "Fontwork Shape" -msgstr "Bentuk Fontwork" +msgstr "Bentuk Seni Fonta" diff -Nru libreoffice-7.4.6/translations/source/id/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.4.7/translations/source/id/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.4.6/translations/source/id/officecfg/registry/data/org/openoffice/Office.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/officecfg/registry/data/org/openoffice/Office.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-10 11:03+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1550758945.000000\n" #. HhMVS @@ -334,7 +334,7 @@ "DisplayName\n" "value.text" msgid "Display Name" -msgstr "Nama Tampilan" +msgstr "Nama Tayangan" #. mTT2H #: DataAccess.xcu @@ -10604,7 +10604,7 @@ "Name\n" "value.text" msgid "FilterUsed" -msgstr "PenyaringYgDigunakan" +msgstr "PenapisYgDigunakan" #. Yi4Ek #: TableWizard.xcu @@ -10614,7 +10614,7 @@ "ShortName\n" "value.text" msgid "FilterUsed" -msgstr "PenyaringYgDigunakan" +msgstr "PenapisYgDigunakan" #. gaNKU #: TableWizard.xcu diff -Nru libreoffice-7.4.6/translations/source/id/readlicense_oo/docs.po libreoffice-7.4.7/translations/source/id/readlicense_oo/docs.po --- libreoffice-7.4.6/translations/source/id/readlicense_oo/docs.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/readlicense_oo/docs.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2021-11-27 22:41+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1543752481.000000\n" #. q6Gg3 @@ -194,7 +194,7 @@ "s2we11\n" "readmeitem.text" msgid "This \"stand-alone\" ${PRODUCTNAME} installer is provided for users in need of previews, having special needs, and for out-of-the-ordinary cases." -msgstr "Pemasang ${PRODUCTNAME} mandiri ini disediakan bagi pengguna yang memerlukan pratinjau, memiliki kebutuhan khusus, dan kasus-kasus luar biasa." +msgstr "Pemasang ${PRODUCTNAME} mandiri ini disediakan bagi pengguna yang memerlukan pratilik, memiliki kebutuhan khusus, dan kasus-kasus luar biasa." #. FGoTY #: readme.xrm @@ -590,7 +590,7 @@ "abcdef\n" "readmeitem.text" msgid "Difficulties starting ${PRODUCTNAME} (e.g. applications hang) as well as problems with the screen display are often caused by the graphics card driver. If these problems occur, please update your graphics card driver or try using the graphics driver delivered with your operating system." -msgstr "Kesulitan memulai ${PRODUCTNAME} (misalnya aplikasi hang) serta masalah dengan tampilan layar sering kali disebabkan oleh penggerak kartu grafis. Jika masalah ini terjadi, perbarui penggerak kartu grafis Anda atau coba gunakan penggerak grafis yang disertakan dengan sistem operasi Anda." +msgstr "Kesulitan memulai ${PRODUCTNAME} (misalnya aplikasi hang) serta masalah dengan tayangan layar sering kali disebabkan oleh penggerak kartu grafis. Jika masalah ini terjadi, perbarui penggerak kartu grafis Anda atau coba gunakan penggerak grafis yang disertakan dengan sistem operasi Anda." #. inrAd #: readme.xrm @@ -689,7 +689,7 @@ "pji76w0\n" "readmeitem.text" msgid "By default, ${PRODUCTNAME} favours nice-looking graphics over speed. If you experience slow graphics, switching off 'Tools - Options - ${PRODUCTNAME} - View - Use Anti-Aliasing' may help." -msgstr "Secara baku, ${PRODUCTNAME} lebih suka grafik berpenampilan menarik daripada kecepatan. Bila Anda mengalami grafik yang lambat, matikan 'Perkakas - Pilihan - ${PRODUCTNAME} - Tampilan - Pakai anti-alias' mungkin membantu." +msgstr "Secara baku, ${PRODUCTNAME} lebih suka grafik berpenampilan menarik daripada kecepatan. Bila Anda mengalami grafik yang lambat, matikan 'Perkakas - Pilihan - ${PRODUCTNAME} - Tilikan - Pakai anti-alias' mungkin membantu." #. bbgfk #: readme.xrm diff -Nru libreoffice-7.4.6/translations/source/id/reportdesign/messages.po libreoffice-7.4.7/translations/source/id/reportdesign/messages.po --- libreoffice-7.4.6/translations/source/id/reportdesign/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/reportdesign/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:20+0100\n" -"PO-Revision-Date: 2021-11-22 01:38+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1511368170.000000\n" #. FBVr9 @@ -505,7 +505,7 @@ #: reportdesign/inc/strings.hrc:70 msgctxt "RID_STR_PREVIEW_COUNT" msgid "Preview Row(s)" -msgstr "Baris Pratinjau" +msgstr "Pratilik Baris" #. keLPS #: reportdesign/inc/strings.hrc:71 @@ -772,7 +772,7 @@ #: reportdesign/inc/strings.hrc:118 msgctxt "RID_STR_FILTER" msgid "Filter" -msgstr "Penyaring" +msgstr "Penapis" #. WNJaK #: reportdesign/inc/strings.hrc:119 diff -Nru libreoffice-7.4.6/translations/source/id/sc/messages.po libreoffice-7.4.7/translations/source/id/sc/messages.po --- libreoffice-7.4.6/translations/source/id/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-12-27 12:05+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1550908361.000000\n" #. kBovX @@ -44,7 +44,7 @@ #: sc/inc/compiler.hrc:32 msgctxt "RID_FUNCTION_CATEGORIES" msgid "Logical" -msgstr "Lojik" +msgstr "Logikal" #. XBcXD #: sc/inc/compiler.hrc:33 @@ -373,7 +373,7 @@ #: sc/inc/globstr.hrc:71 msgctxt "STR_UNDO_QUERY" msgid "Filter" -msgstr "Penyaring" +msgstr "Penapis" #. HCcTp #: sc/inc/globstr.hrc:72 @@ -1384,7 +1384,7 @@ #: sc/inc/globstr.hrc:248 msgctxt "STR_CELL_FILTER" msgid "Filter" -msgstr "Penyaring" +msgstr "Penapis" #. si2AU #: sc/inc/globstr.hrc:249 @@ -1708,7 +1708,7 @@ #: sc/inc/globstr.hrc:299 msgctxt "STR_UNDO_RENAME_TAB" msgid "Rename Sheet" -msgstr "Ganti Nama Lembar" +msgstr "Nama Ulang Lembar" #. 8soVt #: sc/inc/globstr.hrc:300 @@ -1786,7 +1786,7 @@ #: sc/inc/globstr.hrc:312 msgctxt "STR_ERR_AUTOFILTER" msgid "AutoFilter not possible" -msgstr "Penyaring Otomatis tidak dimungkinkan" +msgstr "Penapis Otomatis tidak dimungkinkan" #. G4ADH #: sc/inc/globstr.hrc:313 @@ -2201,7 +2201,7 @@ #: sc/inc/globstr.hrc:379 msgctxt "STR_OPERATION_FILTER" msgid "Filter" -msgstr "Penyaring" +msgstr "Penapis" #. xg5AD #: sc/inc/globstr.hrc:380 @@ -3027,7 +3027,7 @@ #: sc/inc/globstr.hrc:505 msgctxt "STR_INVALIDCONDITION" msgid "Invalid condition." -msgstr "Kondisi tidak sah." +msgstr "Syarat tidak sah." #. LEU8A #: sc/inc/globstr.hrc:506 @@ -3406,7 +3406,7 @@ #: sc/inc/scerrors.hrc:42 msgctxt "RID_ERRHDLSC" msgid "There is no filter available for this file type." -msgstr "Tidak tersedia penyaring untuk berkas jenis ini." +msgstr "Tidak tersedia penapis untuk berkas jenis ini." #. CZABZ #: sc/inc/scerrors.hrc:44 @@ -6454,7 +6454,7 @@ #: sc/inc/scfuncs.hrc:905 msgctxt "SC_OPCODE_OR" msgid "Logical value 1, logical value 2,... are conditions to be tested and which return either TRUE or FALSE." -msgstr "Nilai logikal 1, nilai logikal 2,... adalah kondisi yang akan diuji dan menghasilkan BENAR atau SALAH." +msgstr "Nilai logikal 1, nilai logikal 2,... adalah syarat yang akan diuji dan menghasilkan BENAR atau SALAH." #. oWP6A #: sc/inc/scfuncs.hrc:911 @@ -6472,7 +6472,7 @@ #: sc/inc/scfuncs.hrc:913 msgctxt "SC_OPCODE_XOR" msgid "Logical value 1, logical value 2, ... are conditions to be tested and which return either TRUE or FALSE." -msgstr "Nilai lojik 1, nilai lojik 2, ... adalah kondisi yang akan diuji dan menghasilkan BENAR atau SALAH." +msgstr "Nilai logikal 1, nilai logikal 2, ... adalah syarat yang akan diuji dan menghasilkan BENAR atau SALAH." #. DrctE #: sc/inc/scfuncs.hrc:919 @@ -6490,7 +6490,7 @@ #: sc/inc/scfuncs.hrc:921 msgctxt "SC_OPCODE_AND" msgid "Logical value 1, logical value 2;...are conditions to be tested and each returns either TRUE or FALSE." -msgstr "Nilai logikal 1, nilai logikal 2;... adalah kondisi 1 hingga 30 yang akan diuji dan masing-masing menghasilkan BENAR atau SALAH." +msgstr "Nilai logikal 1, nilai logikal 2;... adalah syarat 1 hingga 30 yang akan diuji dan masing-masing menghasilkan BENAR atau SALAH." #. EXiAr #: sc/inc/scfuncs.hrc:927 @@ -6622,7 +6622,7 @@ #: sc/inc/scfuncs.hrc:983 msgctxt "SC_OPCODE_SUM_IF" msgid "Totals the arguments that meet the condition." -msgstr "Menjumlah peubah yang memenuhi kondisi." +msgstr "Menjumlah peubah yang memenuhi syarat." #. NCqD7 #: sc/inc/scfuncs.hrc:984 @@ -6664,7 +6664,7 @@ #: sc/inc/scfuncs.hrc:995 msgctxt "SC_OPCODE_AVERAGE_IF" msgid "Averages the arguments that meet the conditions." -msgstr "Merata-ratakan peubah yang memenuhi kondisi." +msgstr "Merata-ratakan peubah yang memenuhi syarat." #. kkYzh #: sc/inc/scfuncs.hrc:996 @@ -6820,7 +6820,7 @@ #: sc/inc/scfuncs.hrc:1040 msgctxt "SC_OPCODE_COUNT_IF" msgid "Counts the arguments which meet the set conditions." -msgstr "Mencacah banyaknya peubah yang memenuhi kondisi." +msgstr "Mencacah banyaknya peubah yang memenuhi syarat." #. wqHJk #: sc/inc/scfuncs.hrc:1041 @@ -14502,7 +14502,7 @@ #: sc/inc/scfuncs.hrc:3493 msgctxt "SC_OPCODE_HYPERLINK" msgid "The cell text to be displayed." -msgstr "Teks sel yang akan ditampilkan." +msgstr "Teks sel yang akan ditzyangkan." #. Cw6S6 #: sc/inc/scfuncs.hrc:3499 @@ -14544,7 +14544,7 @@ #: sc/inc/scfuncs.hrc:3505 msgctxt "SC_OPCODE_GET_PIVOT_DATA" msgid "Field name/value pair to filter the target data." -msgstr "Pasangan nilai/nama ruas untuk menyaring data sasaran." +msgstr "Pasangan nilai/nama ruas untuk menapis data sasaran." #. zeAFh #: sc/inc/scfuncs.hrc:3511 @@ -14766,7 +14766,7 @@ #: sc/inc/scfuncs.hrc:3597 msgctxt "SC_OPCODE_IFS_MS" msgid "Checks 1 or more conditions and returns a value corresponding to the first true condition." -msgstr "Memeriksa 1 kondisi atau lebih dan menghasilkan suatu nilai yang berhubungan dengan kondisi pertama yang benar." +msgstr "Memeriksa 1 syarat atau lebih dan menghasilkan suatu nilai yang berhubungan dengan syarat pertama yang benar." #. Zjofa #: sc/inc/scfuncs.hrc:3598 @@ -16634,13 +16634,13 @@ #: sc/inc/strings.hrc:33 msgctxt "SCSTR_STDFILTER" msgid "Standard Filter..." -msgstr "Penyaring Standar..." +msgstr "Penapis Standar..." #. AbDTU #: sc/inc/strings.hrc:34 msgctxt "SCSTR_CLEAR_FILTER" msgid "Clear Filter" -msgstr "Bersihkan Penyaring" +msgstr "Bersihkan Penapis" #. 7QCjE #: sc/inc/strings.hrc:35 @@ -16670,13 +16670,13 @@ #: sc/inc/strings.hrc:39 msgctxt "SCSTR_FILTER_COLOR" msgid "Filter by Color" -msgstr "Saring berdasarkan Warna" +msgstr "Tapis berdasarkan Warna" #. EYFT8 #: sc/inc/strings.hrc:40 msgctxt "SCSTR_FILTER_CONDITION" msgid "Filter by Condition" -msgstr "Saring berdasarkan Kondisi" +msgstr "Tapis berdasarkan Syarat" #. 5LENV #: sc/inc/strings.hrc:41 @@ -16768,7 +16768,7 @@ #: sc/inc/strings.hrc:57 msgctxt "SCSTR_RENAMETAB" msgid "Rename Sheet" -msgstr "Ganti Nama Lembar" +msgstr "Nama Ulang Lembar" #. EEcgV #: sc/inc/strings.hrc:58 @@ -16934,7 +16934,7 @@ #: sc/inc/strings.hrc:86 msgctxt "SCSTR_UNDO_GRAFFILTER" msgid "Image Filter" -msgstr "Penyaring Gambar" +msgstr "Penapis Citra" #. CfBRk #: sc/inc/strings.hrc:87 @@ -16990,7 +16990,7 @@ #: sc/inc/strings.hrc:97 msgctxt "STR_ACC_CSVGRID_NAME" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. uSKyF #: sc/inc/strings.hrc:98 @@ -17002,7 +17002,7 @@ #: sc/inc/strings.hrc:99 msgctxt "STR_ACC_DOC_NAME" msgid "Document view" -msgstr "Tayangan dokumen" +msgstr "Tilikan dokumen" #. NFaas #: sc/inc/strings.hrc:100 @@ -17026,7 +17026,7 @@ #: sc/inc/strings.hrc:103 msgctxt "STR_ACC_PREVIEWDOC_NAME" msgid "Page preview" -msgstr "Pratinjau halaman" +msgstr "Pratilik halaman" #. RA4AS #: sc/inc/strings.hrc:104 @@ -17098,7 +17098,7 @@ #: sc/inc/strings.hrc:115 msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX" msgid "(Preview mode)" -msgstr "(Modus pratinjau)" +msgstr "(Modus pratilik)" #. ZwiH6 #: sc/inc/strings.hrc:116 @@ -17254,7 +17254,7 @@ #: sc/inc/strings.hrc:141 msgctxt "STR_RENAME_AUTOFORMAT_TITLE" msgid "Rename AutoFormat" -msgstr "Ganti Nama Format Otomatis" +msgstr "Nama Ulang Format Otomatis" #. hqtgD #: sc/inc/strings.hrc:142 @@ -17495,13 +17495,13 @@ #: sc/inc/strings.hrc:185 msgctxt "SCSTR_QHELP_EXPAND_FORMULA" msgid "Expand Formula Bar" -msgstr "Kembangkan Bilah Rumus" +msgstr "Perluas Bilah Rumus" #. ENx2Q #: sc/inc/strings.hrc:186 msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA" msgid "Collapse Formula Bar" -msgstr "Lipat Bilah Rumus" +msgstr "Kuncupkan Bilah Rumus" #. nSD8r #: sc/inc/strings.hrc:188 @@ -18727,7 +18727,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:8 msgctxt "advancedfilterdialog|AdvancedFilterDialog" msgid "Advanced Filter" -msgstr "Penyaring Tingkat Lanjut" +msgstr "Penapis Tingkat Lanjut" #. fUxef #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:38 @@ -18751,19 +18751,19 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:134 msgctxt "advancedfilterdialog|extended_tip|lbfilterarea" msgid "Select the named range, or enter the cell range that contains the filter criteria that you want to use." -msgstr "Pilih rentang bernama, atau masukkan rentang sel yang berisi kriteria penyaring yang ingin Anda gunakan." +msgstr "Pilih rentang bernama, atau masukkan rentang sel yang berisi kriteria penapis yang ingin Anda gunakan." #. AN4qk #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:153 msgctxt "advancedfilterdialog|extended_tip|edfilterarea" msgid "Select the named range, or enter the cell range that contains the filter criteria that you want to use." -msgstr "Pilih rentang bernama, atau masukkan rentang sel yang berisi kriteria penyaring yang ingin Anda gunakan." +msgstr "Pilih rentang bernama, atau masukkan rentang sel yang berisi kriteria penapis yang ingin Anda gunakan." #. yALPD #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:168 msgctxt "advancedfilterdialog|label1" msgid "Read _Filter Criteria From" -msgstr "Baca Kriteria _Penyaring Dari" +msgstr "Baca Kriteria _Penapis Dari" #. HBUJA #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:210 @@ -18775,7 +18775,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:219 msgctxt "advancedfilterdialog|extended_tip|case" msgid "Distinguishes between uppercase and lowercase letters when filtering the data." -msgstr "Membedakan antara huruf besar dan huruf kecil saat menyaring data." +msgstr "Membedakan antara huruf besar dan huruf kecil saat menapis data." #. FHGUG #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:230 @@ -18799,7 +18799,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:259 msgctxt "advancedfilterdialog|extended_tip|regexp" msgid "Allows you to use regular expressions in the filter definition." -msgstr "Memungkinkan anda menggunakan ekspresi reguler dalam definisi penyaring." +msgstr "Memungkinkan Anda menggunakan ekspresi reguler dalam penentuan penapisan." #. tDDfr #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:270 @@ -18811,7 +18811,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:279 msgctxt "advancedfilterdialog|extended_tip|unique" msgid "Excludes duplicate rows in the list of filtered data." -msgstr "Kecualikan baris yang duplikat pada senarai data yang tersaring." +msgstr "Kecualikan baris yang duplikat pada senarai data yang tertapis." #. DbA9A #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:290 @@ -18823,19 +18823,19 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:303 msgctxt "advancedfilterdialog|extended_tip|copyresult" msgid "Select the check box, and then select the cell range where you want to display the filter results." -msgstr "Pilih kotak centang, lalu pilih rentang sel tempat Anda ingin menampilkan hasil penyaring." +msgstr "Pilih kotak centang, lalu pilih rentang sel tempat Anda ingin menayangkan hasil penapis." #. 2c6r8 #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:314 msgctxt "advancedfilterdialog|destpers" msgid "_Keep filter criteria" -msgstr "Pertahan_kan kriteria penyaring" +msgstr "Pertahan_kan kriteria penapis" #. KpECC #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:323 msgctxt "advancedfilterdialog|extended_tip|destpers" msgid "Select the Copy results to check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under Data - Define range as a database range." -msgstr "Pilih kotak centang Salin hasil ke, lalu tentukan rentang tujuan tempat Anda ingin menampilkan data yang disaring. Jika kotak ini dicentang, rentang tujuan tetap tertaut ke kisaran sumber. Anda harus menetapkan rentang sumber di bawah Data - Tentukan Rentang sebagai rentang basis data." +msgstr "Pilih kotak centang Salin hasil ke, lalu tentukan rentang tujuan tempat Anda ingin menayangkan data yang ditapis. Jika kotak ini dicentang, rentang tujuan tetap tertaut ke kisaran sumber. Anda harus menetapkan rentang sumber di bawah Data - Tentukan Rentang sebagai rentang basis data." #. NLz5G #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:355 @@ -18847,7 +18847,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:356 msgctxt "advancedfilterdialog|extended_tip|lbcopyarea" msgid "Select the check box, and then select the cell range where you want to display the filter results." -msgstr "Pilih kotak centang, lalu pilih rentang sel tempat Anda ingin menampilkan hasil penyaring." +msgstr "Pilih kotak centang, lalu pilih rentang sel tempat Anda ingin menayangkan hasil penapis." #. TDWTt #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:378 @@ -18859,7 +18859,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:379 msgctxt "advancedfilterdialog|extended_tip|edcopyarea" msgid "Select the check box, and then select the cell range where you want to display the filter results." -msgstr "Pilih kotak centang, lalu pilih rentang sel tempat Anda ingin menampilkan hasil penyaring." +msgstr "Pilih kotak centang, lalu pilih rentang sel tempat Anda ingin menayangkan hasil penapis." #. YCsyS #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:398 @@ -18889,13 +18889,13 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:462 msgctxt "advancedfilterdialog|extended_tip|more" msgid "Shows additional filter options." -msgstr "Memperlihatkan pilihan penyaring tambahan." +msgstr "Memperlihatkan pilihan penapis tambahan." #. 3CXjk #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:484 msgctxt "advancedfilterdialog|extended_tip|AdvancedFilterDialog" msgid "Defines an advanced filter." -msgstr "Menentukan penyaring lanjutan." +msgstr "Menentukan penapis lanjutan." #. JyzjZ #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:29 @@ -19081,7 +19081,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:131 msgctxt "autoformattable|extended_tip|preview" msgid "Displays a preview of the current selection." -msgstr "Menampilkan pratinjau dari pemilihan saat ini." +msgstr "Menayangkan pratilik dari pemilihan saat ini." #. qcCWk #: sc/uiconfig/scalc/ui/autoformattable.ui:173 @@ -19105,7 +19105,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:237 msgctxt "autoformattable|rename" msgid "Rename" -msgstr "Ganti Nama" +msgstr "Nama Ulang" #. zy4WL #: sc/uiconfig/scalc/ui/autoformattable.ui:243 @@ -19573,7 +19573,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:153 msgctxt "condformatmanager|extended_tip|CONTAINER" msgid "The Conditional Formats list displays the active conditional formatting rules set in the current spreadsheet." -msgstr "Senarai Format Bersyarat menampilkan aturan pemformatan bersyarat aktif yang diatur dalam lembar sebar saat ini." +msgstr "Senarai Format Bersyarat menayangkan aturan pemformatan bersyarat aktif yang diatur dalam lembar sebar saat ini." #. rCgD4 #: sc/uiconfig/scalc/ui/condformatmanager.ui:173 @@ -20215,7 +20215,7 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:156 msgctxt "conditionalformatdialog|extended_tip|list" msgid "List of the conditions defined for the cell range in order of evaluation." -msgstr "Senarai kondisi yang ditentukan untuk rentang sel dalam urutan evaluasi." +msgstr "Senarai syarat yang ditentukan untuk rentang sel dalam urutan evaluasi." #. oEPbA #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:185 @@ -20239,7 +20239,7 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:223 msgctxt "conditionalformatdialog|extended_tip|up" msgid "Increase priority of the selected condition." -msgstr "Tingkatkan prioritas kondisi yang dipilih." +msgstr "Tingkatkan prioritas syarat terpilih." #. yaQBX #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:235 @@ -20251,13 +20251,13 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:242 msgctxt "conditionalformatdialog|extended_tip|down" msgid "Decrease priority of the selected condition." -msgstr "Kurangi prioritas kondisi yang dipilih." +msgstr "Kurangi prioritas syarat terpilih." #. Q6Ag7 #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:265 msgctxt "conditionalformatdialog|label1" msgid "Conditions" -msgstr "Kondisi" +msgstr "Syarat" #. rgGuH #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:298 @@ -20281,7 +20281,7 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:372 msgctxt "conditionalformatdialog|extended_tip|ConditionalFormatDialog" msgid "Choose Conditional Formatting to define format styles depending on certain conditions." -msgstr "Pilih Pemformatan Bersyarat untuk menentukan gaya format tergantung pada kondisi tertentu." +msgstr "Pilih Pemformatan Bersyarat untuk menentukan gaya format tergantung pada syarat tertentu." #. XFw3E #: sc/uiconfig/scalc/ui/conditionaliconset.ui:22 @@ -20479,7 +20479,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:199 msgctxt "consolidatedialog|extended_tip|consareas" msgid "Displays the cell ranges that you want to consolidate." -msgstr "Menampilkan rentang sel yang ingin Anda konsolidasi." +msgstr "Menayangkan rentang sel yang ingin Anda konsolidasi." #. Nw7XJ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:238 @@ -20503,13 +20503,13 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:306 msgctxt "consolidatedialog|extended_tip|lbdestarea" msgid "Displays the first cell in the range where the consolidation results will be displayed." -msgstr "Menampilkan sel pertama dalam rentang tempat hasil konsolidasi akan ditampilkan." +msgstr "Menayangkan sel pertama dalam rentang tempat hasil konsolidasi akan ditayangkan." #. BPrCM #: sc/uiconfig/scalc/ui/consolidatedialog.ui:325 msgctxt "consolidatedialog|extended_tip|eddestarea" msgid "Displays the first cell in the range where the consolidation results will be displayed." -msgstr "Menampilkan sel pertama dalam rentang tempat hasil konsolidasi akan ditampilkan." +msgstr "Menayangkan sel pertama dalam rentang tempat hasil konsolidasi akan ditayangkan." #. HUuw6 #: sc/uiconfig/scalc/ui/consolidatedialog.ui:344 @@ -21073,13 +21073,13 @@ #: sc/uiconfig/scalc/ui/databaroptions.ui:556 msgctxt "databaroptions|label11" msgid "Bar Lengths" -msgstr "Panjang Batang" +msgstr "Panjang Bilah" #. PySqs #: sc/uiconfig/scalc/ui/databaroptions.ui:571 msgctxt "databaroptions|only_bar" msgid "Display bar only" -msgstr "Hanya tampilkan batang" +msgstr "Hanya tayangkan bilah" #. JqJwv #: sc/uiconfig/scalc/ui/databaroptions.ui:579 @@ -21205,7 +21205,7 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:305 msgctxt "datafielddialog|extended_tip|type" msgid "Select the type of calculating of the displayed value for the data field." -msgstr "Pilih jenis penghitungan nilai yang ditampilkan untuk ruas data." +msgstr "Pilih jenis penghitungan nilai yang ditayangkan untuk ruas data." #. DdvoS #: sc/uiconfig/scalc/ui/datafielddialog.ui:320 @@ -21349,7 +21349,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:312 msgctxt "datafieldoptionsdialog|label2" msgid "Display Options" -msgstr "Pilihan Tampilan" +msgstr "Pilihan Tayangan" #. Q34EM #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:341 @@ -21577,7 +21577,7 @@ #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:376 msgctxt "dataproviderdlg/preview" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. 4jLF7 #: sc/uiconfig/scalc/ui/datastreams.ui:8 @@ -22033,13 +22033,13 @@ #: sc/uiconfig/scalc/ui/definename.ui:264 msgctxt "definename|filter" msgid "_Filter" -msgstr "_Penyaring" +msgstr "_Penapis" #. KPv69 #: sc/uiconfig/scalc/ui/definename.ui:272 msgctxt "definename|extended_tip|filter" msgid "Defines the selected area to be used in an advanced filter." -msgstr "Menentukan wilayah yang dipilih untuk digunakan dalam penyaring lanjutan." +msgstr "Menentukan wilayah yang dipilih untuk digunakan dalam penapis lanjutan." #. 6W3iB #: sc/uiconfig/scalc/ui/definename.ui:283 @@ -22411,7 +22411,7 @@ #: sc/uiconfig/scalc/ui/dropmenu.ui:71 msgctxt "dropmenu|SCSTR_DISPLAY" msgid "Display" -msgstr "Tampil" +msgstr "Tayangan" #. kzFT9 #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:15 @@ -22471,7 +22471,7 @@ #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:25 msgctxt "erroralerttabpage|extended_tip|tsbshow" msgid "Displays the error message that you enter in the Contents area when invalid data is entered in a cell." -msgstr "Menampilkan pesan kesalahan yang Anda masukkan di wilayah Isi ketika data yang tidak sah dimasukkan dalam sel." +msgstr "Menayangkan pesan kesalahan yang Anda masukkan di wilayah Isi ketika data yang tidak sah dimasukkan dalam sel." #. pFAUd #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:58 @@ -22489,7 +22489,7 @@ #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:96 msgctxt "erroralerttabpage|extended_tip|errorMsg" msgid "Enter the message that you want to display when invalid data is entered in a cell." -msgstr "Masukkan pesan yang ingin Anda tampilkan ketika data yang tidak valid dimasukkan dalam sel." +msgstr "Masukkan pesan yang ingin Anda tayangkan ketika data yang tidak valid dimasukkan dalam sel." #. HS6Tu #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:125 @@ -22507,7 +22507,7 @@ #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:145 msgctxt "erroralerttabpage|extended_tip|browseBtn" msgid "Opens the Macro dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed." -msgstr "Buka dialog Macro di mana Anda dapat memilih makro yang dieksekusi ketika data yang tidak valid dimasukkan dalam sel. Makro dieksekusi setelah pesan kesalahan ditampilkan." +msgstr "Buka dialog Makro di mana Anda dapat memilih makro yang dieksekusi ketika data yang tidak valid dimasukkan dalam sel. Makro dieksekusi setelah pesan kesalahan ditayangkan." #. BKReu #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:160 @@ -22549,7 +22549,7 @@ #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:197 msgctxt "erroralerttabpage|extended_tip|ErrorAlertTabPage" msgid "Define the error message that is displayed when invalid data is entered in a cell." -msgstr "Tetapkan pesan kesalahan yang ditampilkan ketika data yang tidak valid dimasukkan dalam sel." +msgstr "Tetapkan pesan kesalahan yang ditayangkan ketika data yang tidak valid dimasukkan dalam sel." #. nWmSN #: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:14 @@ -23353,7 +23353,7 @@ #: sc/uiconfig/scalc/ui/functionpanel.ui:84 msgctxt "functionpanel|category" msgid "Logical" -msgstr "Lojik" +msgstr "Logikal" #. 6cFkD #: sc/uiconfig/scalc/ui/functionpanel.ui:85 @@ -23395,13 +23395,13 @@ #: sc/uiconfig/scalc/ui/functionpanel.ui:94 msgctxt "functionpanel|extended_tip|category" msgid "Displays the available functions." -msgstr "Menampilkan fungsi-fungsi yang tersedia." +msgstr "Menayangkan fungsi-fungsi yang tersedia." #. V9ATp #: sc/uiconfig/scalc/ui/functionpanel.ui:141 msgctxt "functionpanel|extended_tip|funclist" msgid "Displays the available functions." -msgstr "Menampilkan fungsi-fungsi yang tersedia." +msgstr "Menayangkan fungsi-fungsi yang tersedia." #. rmQie #: sc/uiconfig/scalc/ui/functionpanel.ui:175 @@ -23515,7 +23515,7 @@ #: sc/uiconfig/scalc/ui/gotosheetdialog.ui:197 msgctxt "gotosheetdialog|GoToSheetDialog" msgid "Displays a list of all visible sheets in your spreadsheet document." -msgstr "Menampilkan senarai semua lembar yang terlihat di dokumen lembar sebar Anda." +msgstr "Menayangkan senarai semua lembar yang terlihat di dokumen lembar sebar Anda." #. XMHEU #: sc/uiconfig/scalc/ui/groupbydate.ui:27 @@ -23719,7 +23719,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:171 msgctxt "headerfootercontent|extended_tip|textviewWND_CENTER" msgid "Enter the text to be displayed at the center of the header or footer." -msgstr "Masukkan teks yang akan ditampilkan di tengah kepala atau kaki." +msgstr "Masukkan teks yang akan ditayangkan di tengah kepala atau kaki." #. YjmDY #: sc/uiconfig/scalc/ui/headerfootercontent.ui:201 @@ -23953,7 +23953,7 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:152 msgctxt "imoptdialog|extended_tip|asshown" msgid "Enabled by default, data will be saved as displayed, including applied number formats. If this checkbox is not marked, raw data content will be saved, as in older versions of the software." -msgstr "Difungsikan secara baku, data akan disimpan seperti yang ditampilkan, termasuk format angka yang diterapkan. Bila kotak centang ini tak ditandai, isi data mentah yang akan disimpan, seperti pada versi perangkat lunak yang lebih lama." +msgstr "Difungsikan secara baku, data akan disimpan seperti yang ditayangkan, termasuk format angka yang diterapkan. Bila kotak centang ini tak ditandai, isi data mentah yang akan disimpan, seperti pada versi perangkat lunak yang lebih lama." #. Fn8ts #: sc/uiconfig/scalc/ui/imoptdialog.ui:164 @@ -24253,7 +24253,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:393 msgctxt "insertsheet|extended_tip|tables" msgid "If you selected a file by using the Browse button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box." -msgstr "Jika Anda memilih berkas dengan menggunakan tombol Telusur, lembar yang terdapat di dalamnya ditampilkan di kotak senarai. Jalur berkas ditampilkan di bawah kotak ini. Pilih lembar ini untuk disisipkan dari kotak senarai." +msgstr "Jika Anda memilih berkas dengan menggunakan tombol Telusur, lembar yang terdapat di dalamnya ditayangkan di kotak senarai. Jalur berkas ditayangkan di bawah kotak ini. Pilih lembar ini untuk disisipkan dari kotak senarai." #. mGqDq #: sc/uiconfig/scalc/ui/insertsheet.ui:412 @@ -24433,13 +24433,13 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:380 msgctxt "managenamesdialog|filter" msgid "_Filter" -msgstr "_Penyaring" +msgstr "_Penapis" #. DoQMz #: sc/uiconfig/scalc/ui/managenamesdialog.ui:388 msgctxt "managenamesdialog|extended_tip|filter" msgid "Defines the selected area to be used in an advanced filter." -msgstr "Menentukan wilayah yang dipilih untuk digunakan dalam penyaring lanjutan." +msgstr "Menentukan wilayah yang dipilih untuk digunakan dalam penapis lanjutan." #. UdLJc #: sc/uiconfig/scalc/ui/managenamesdialog.ui:399 @@ -24835,7 +24835,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:131 msgctxt "namerangesdialog|extended_tip|edassign" msgid "Displays the cell reference of each label range." -msgstr "Menampilkan referensi sel dari setiap rentang label." +msgstr "Menayangkan rujukan sel dari setiap rentang label." #. JXXhm #: sc/uiconfig/scalc/ui/namerangesdialog.ui:150 @@ -24901,7 +24901,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:370 msgctxt "namerangesdialog|extended_tip|range" msgid "Displays the cell reference of each label range." -msgstr "Menampilkan referensi sel dari setiap rentang label." +msgstr "Menayangkan rujukan sel dari setiap rentang label." #. AFqD5 #: sc/uiconfig/scalc/ui/namerangesdialog.ui:387 @@ -25051,7 +25051,7 @@ #: sc/uiconfig/scalc/ui/navigatorpanel.ui:278 msgctxt "navigatorpanel|extended_tip|scenarios" msgid "Displays all available scenarios. Double-click a name to apply that scenario." -msgstr "Menampilkan semua skenario yang ada. Klik ganda pada suatu nama untuk menerapkan skenario." +msgstr "Menayangkan semua skenario yang ada. Klik ganda pada suatu nama untuk menerapkan skenario." #. mHVom #: sc/uiconfig/scalc/ui/navigatorpanel.ui:290 @@ -25081,13 +25081,13 @@ #: sc/uiconfig/scalc/ui/navigatorpanel.ui:323 msgctxt "navigatorpanel|extended_tip|documents" msgid "Displays the names of all open documents." -msgstr "Menampilkan nama dari semua dokumen yang terbuka." +msgstr "Menayangkan nama dari semua dokumen yang terbuka." #. F58Zg #: sc/uiconfig/scalc/ui/navigatorpanel.ui:376 msgctxt "navigatorpanel|extended_tip|contentbox" msgid "Displays all objects in your document." -msgstr "Tampilkan semua objek dalam dokumenmu" +msgstr "Menayangkan semua objek dalam dokumen Anda." #. HfX6U #: sc/uiconfig/scalc/ui/navigatorpanel.ui:474 @@ -25233,7 +25233,7 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:10439 msgctxt "CalcNotebookbar|ViewLabel" msgid "~View" -msgstr "~Tampilan" +msgstr "~Tilikan" #. SAv6Z #: sc/uiconfig/scalc/ui/notebookbar.ui:11548 @@ -25438,7 +25438,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8768 msgctxt "notebookbar_compact|ViewLabel" msgid "~View" -msgstr "~Tampilan" +msgstr "~Tilikan" #. dV94w #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082 @@ -26505,7 +26505,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:119 msgctxt "extended_tip|calc" msgid "Specifies whether to make calculations using the rounded values displayed in the sheet. Charts will be shown with the displayed values. If the Precision as shown option is not marked, the displayed numbers are rounded, but they are calculated internally using the non-rounded number." -msgstr "Menentukan apakah membuat penghitungan menggunakan nilai bulat yang ditampilkan pada lembar. Grafik akan dimunculkan dengan nilai yang tampil. Jika pilihan Ketelitian seperti contoh tidak dicentang, angka yang tampil akan dibulatkan, tetapi akan dihitung secara internal menggunakan angka non-bulat." +msgstr "Menentukan apakah membuat penghitungan menggunakan nilai bulat yang ditampilkan pada lembar. Bagan akan dimunculkan dengan nilai yang ditayangkan. Jika pilihan Ketelitian seperti contoh tidak dicentang, angka yang ditayangkan akan dibulatkan, tetapi akan dihitung secara internal menggunakan angka non-bulat." #. BiDg6 #: sc/uiconfig/scalc/ui/optcalculatepage.ui:130 @@ -26559,7 +26559,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:215 msgctxt "extended_tip|prec" msgid "Defines the number of decimals to be displayed for numbers with the General number format. The numbers are displayed as rounded numbers, but are not saved as rounded numbers." -msgstr "Menentukan jumlah desimal yang akan ditampilkan untuk angka dengan Umum format angka. Angka-angka ditampilkan sebagai angka bulat, tetapi tidak disimpan sebagai angka bulat." +msgstr "Menentukan jumlah desimal yang akan ditayangkan untuk angka dengan Umum format angka. Angka-angka ditayangkan sebagai angka bulat, tetapi tidak disimpan sebagai angka bulat." #. tnj5y #: sc/uiconfig/scalc/ui/optcalculatepage.ui:237 @@ -27045,7 +27045,7 @@ #: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:130 msgctxt "optimalcolwidthdialog|extended_tip|default" msgid "Defines the optimal column width in order to display the entire contents of the column." -msgstr "Menentukan lebar kolom yang optimal untuk menampilkan seluruh isi kolom." +msgstr "Menentukan lebar kolom yang optimal untuk menayangkan seluruh isi kolom." #. KssXT #: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:161 @@ -27129,13 +27129,13 @@ #: sc/uiconfig/scalc/ui/optsortlists.ui:163 msgctxt "extended_tip|lists" msgid "Displays all the available lists. These lists can be selected for editing." -msgstr "Menampilkan seluruh baris yang tersedia. Baris tersebut dapat dipilih untuk penyuntingan." +msgstr "Menayangkan seluruh baris yang tersedia. Baris tersebut dapat dipilih untuk penyuntingan." #. esSFN #: sc/uiconfig/scalc/ui/optsortlists.ui:187 msgctxt "extended_tip|entries" msgid "Displays the content of the currently selected list. This content can be edited." -msgstr "Menampilkan konten dari baris yang dipilih saat ini. Konten ini dapat disunting." +msgstr "Menayangkan konten dari baris yang dipilih saat ini. Konten ini dapat disunting." #. GcE5C #: sc/uiconfig/scalc/ui/optsortlists.ui:213 @@ -27189,7 +27189,7 @@ #: sc/uiconfig/scalc/ui/optsortlists.ui:311 msgctxt "extended_tip|OptSortLists" msgid "All user-defined lists are displayed in the Sort Lists dialog. You can also define and edit your own lists. Only text can be used as sort lists, no numbers." -msgstr "Seluruh senarai yang ditentukan pengguna akan ditampilkan pada dialog Senarai Urut. Anda juga dapat menetapkan dan menyunting senarai milik Anda sendiri. Hanya teks yang dapat digunakan sebagai senarai terurut, bukan angka." +msgstr "Seluruh senarai yang ditentukan pengguna akan ditayangkan pada dialog Senarai Urut. Anda juga dapat menetapkan dan menyunting senarai milik Anda sendiri. Hanya teks yang dapat digunakan sebagai senarai terurut, bukan angka." #. U2gkF #: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:8 @@ -27201,7 +27201,7 @@ #: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:153 msgctxt "pagetemplatedialog|organizer" msgid "Organizer" -msgstr "Pengorganisasi" +msgstr "Pengelola" #. CbW7A #: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:200 @@ -27279,7 +27279,7 @@ #: sc/uiconfig/scalc/ui/paratemplatedialog.ui:152 msgctxt "paratemplatedialog|organizer" msgid "Organizer" -msgstr "Pengorganisasi" +msgstr "Pengelola" #. asnEd #: sc/uiconfig/scalc/ui/paratemplatedialog.ui:199 @@ -27705,7 +27705,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:41 msgctxt "pivotfielddialog|extended_tip|options" msgid "Opens the Data Field Options dialog. The Options button is visible for filters and column or row fields only." -msgstr "Membuka dialog Pilihan Ruas Data. Tombol Pilihan hanya terlihat untuk penyaring dan ruas kolom atau baris." +msgstr "Membuka dialog Pilihan Ruas Data. Tombol Pilihan hanya terlihat untuk penapis dan ruas kolom atau baris." #. KBmND #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:133 @@ -27759,7 +27759,7 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:8 msgctxt "pivotfilterdialog|PivotFilterDialog" msgid "Filter" -msgstr "Penyaring" +msgstr "Penapis" #. BG3Bc #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:102 @@ -27777,7 +27777,7 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:110 msgctxt "pivotfilterdialog|extended_tip|connect1" msgid "Select a logical operator for the filter." -msgstr "Pilih operator logis untuk penyaring." +msgstr "Pilih operator logis untuk penapis." #. TW6Uf #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:124 @@ -27795,7 +27795,7 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:129 msgctxt "pivotfilterdialog|extended_tip|connect2" msgid "Select a logical operator for the filter." -msgstr "Pilih operator logis untuk penyaring." +msgstr "Pilih operator logis untuk penapis." #. rDPh7 #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:142 @@ -27813,7 +27813,7 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:164 msgctxt "pivotfilterdialog|label4" msgid "Condition" -msgstr "Kondisi" +msgstr "Syarat" #. nCtXa #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:175 @@ -27825,19 +27825,19 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:191 msgctxt "pivotfilterdialog|extended_tip|field1" msgid "Select the field that you want to use in the filter. If field names are not available, the column labels are listed." -msgstr "Pilih ruas yang Anda ingin gunakan dalam penyaring. Jika nama ruas tidak tersedia, label kolom tersenarai." +msgstr "Pilih ruas yang Anda ingin gunakan dalam penapis. Jika nama ruas tidak tersedia, label kolom tersenarai." #. mDaxf #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:209 msgctxt "pivotfilterdialog|extended_tip|field2" msgid "Select the field that you want to use in the filter. If field names are not available, the column labels are listed." -msgstr "Pilih ruas yang Anda ingin gunakan dalam penyaring. Jika nama ruas tidak tersedia, label kolom tersenarai." +msgstr "Pilih ruas yang Anda ingin gunakan dalam penapis. Jika nama ruas tidak tersedia, label kolom tersenarai." #. 3N44y #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:227 msgctxt "pivotfilterdialog|extended_tip|field3" msgid "Select the field that you want to use in the filter. If field names are not available, the column labels are listed." -msgstr "Pilih ruas yang Anda ingin gunakan dalam penyaring. Jika nama ruas tidak tersedia, label kolom tersenarai." +msgstr "Pilih ruas yang Anda ingin gunakan dalam penapis. Jika nama ruas tidak tersedia, label kolom tersenarai." #. jTLFv #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:253 @@ -27879,7 +27879,7 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:404 msgctxt "pivotfilterdialog|label1" msgid "Filter Criteria" -msgstr "Kriteria Penyaring" +msgstr "Kriteria Penapisan" #. ckB2T #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:443 @@ -27903,7 +27903,7 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:472 msgctxt "pivotfilterdialog|extended_tip|regexp" msgid "Allows you to use regular expressions in the filter definition." -msgstr "Memungkinkan Anda menggunakan ekspresi reguler dalam definisi penyaring." +msgstr "Memungkinkan Anda menggunakan ekspresi reguler dalam penentuan penapisan." #. cirEo #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:483 @@ -27915,7 +27915,7 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:492 msgctxt "pivotfilterdialog|extended_tip|unique" msgid "Excludes duplicate rows in the list of filtered data." -msgstr "Kecualikan baris yang duplikat pada senarai data yang tersaring." +msgstr "Kecualikan baris yang duplikat pada senarai data yang tertapis." #. GcFuF #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:520 @@ -27933,7 +27933,7 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:537 msgctxt "pivotfilterdialog|extended_tip|dbarea" msgid "Displays the name of the filtered data range in the table." -msgstr "Tampilkan nama dari rentang data yang tersaring di daam tabel." +msgstr "Menayangkan nama dari rentang data yang tertapis di daam tabel." #. SxeCx #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:558 @@ -27969,7 +27969,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:214 msgctxt "pivottablelayoutdialog|extended_tip|listbox-column" msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Filters, Row Fields, Column Fields and Data Fields areas." -msgstr "Untuk menentukan tata letak tabel pivot, seret dan lepaskan tombol ruas data ke wilayah Penyaring, Ruas Baris, Ruas Kolom, dan Ruas Data." +msgstr "Untuk menentukan tata letak tabel pivot, seret dan lepaskan tombol ruas data ke wilayah Penapis, Ruas Baris, Ruas Kolom, dan Ruas Data." #. WWrpy #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:244 @@ -27981,7 +27981,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:295 msgctxt "pivottablelayoutdialog|extended_tip|listbox-data" msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Filters, Row Fields, Column Fields and Data Fields areas." -msgstr "Untuk menentukan tata letak tabel pivot, seret dan lepaskan tombol ruas data ke wilayah Penyaring, Ruas Baris, Ruas Kolom, dan Ruas Data." +msgstr "Untuk menentukan tata letak tabel pivot, seret dan lepaskan tombol ruas data ke wilayah Penapis, Ruas Baris, Ruas Kolom, dan Ruas Data." #. BhTuC #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:325 @@ -27993,19 +27993,19 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:374 msgctxt "pivottablelayoutdialog|extended_tip|listbox-row" msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Filters, Row Fields, Column Fields and Data Fields areas." -msgstr "Untuk menentukan tata letak tabel pivot, seret dan lepaskan tombol ruas data ke wilayah Penyaring, Ruas Baris, Ruas Kolom, dan Ruas Data." +msgstr "Untuk menentukan tata letak tabel pivot, seret dan lepaskan tombol ruas data ke wilayah Penapis, Ruas Baris, Ruas Kolom, dan Ruas Data." #. 4XvEh #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:404 msgctxt "pivottablelayoutdialog|label2" msgid "Filters:" -msgstr "Penyaring:" +msgstr "Penapis:" #. yN8BR #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:455 msgctxt "pivottablelayoutdialog|extended_tip|listbox-page" msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Filters, Row Fields, Column Fields and Data Fields areas." -msgstr "Untuk menentukan tata letak tabel pivot, seret dan lepaskan tombol ruas data ke wilayah Penyaring, Ruas Baris, Ruas Kolom, dan Ruas Data." +msgstr "Untuk menentukan tata letak tabel pivot, seret dan lepaskan tombol ruas data ke wilayah Penapis, Ruas Baris, Ruas Kolom, dan Ruas Data." #. Scoht #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:517 @@ -28017,7 +28017,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:567 msgctxt "pivottablelayoutdialog|extended_tip|listbox-fields" msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Filters, Row Fields, Column Fields and Data Fields areas." -msgstr "Untuk menentukan tata letak tabel pivot, seret dan lepaskan tombol ruas data ke wilayah Penyaring, Ruas Baris, Ruas Kolom, dan Ruas Data." +msgstr "Untuk menentukan tata letak tabel pivot, seret dan lepaskan tombol ruas data ke wilayah Penapis, Ruas Baris, Ruas Kolom, dan Ruas Data." #. BL7Ff #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:598 @@ -28059,7 +28059,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:672 msgctxt "pivottablelayoutdialog|extended_tip|check-total-rows" msgid "Calculates and displays the grand total of the row calculation." -msgstr "Menghitung dan menampilkan total keseluruhan perhitungan baris." +msgstr "Menghitung dan menayangkan total keseluruhan perhitungan baris." #. Br8BE #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:683 @@ -28071,13 +28071,13 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:691 msgctxt "pivottablelayoutdialog|extended_tip|check-total-columns" msgid "Calculates and displays the grand total of the column calculation." -msgstr "Menghitung dan menampilkan jumlah total perhitungan kolom." +msgstr "Menghitung dan menayangkan jumlah total perhitungan kolom." #. VXEdh #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:702 msgctxt "pivottablelayoutdialog|check-add-filter" msgid "Add filter" -msgstr "Tambah penyaring" +msgstr "Tambah penapis" #. TEUXm #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:710 @@ -28119,7 +28119,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:829 msgctxt "pivottablelayoutdialog|extended_tip|destination-edit" msgid "Select the area where you want to display the results of the pivot table." -msgstr "Pilih wilayah di mana Anda ingin menampilkan hasil tabel pivot." +msgstr "Pilih wilayah di mana Anda ingin menayangkan hasil tabel pivot." #. WEQjx #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:845 @@ -28131,7 +28131,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:860 msgctxt "pivottablelayoutdialog|extended_tip|destination-list" msgid "Select the area where you want to display the results of the pivot table." -msgstr "Pilih wilayah di mana Anda ingin menampilkan hasil tabel pivot." +msgstr "Pilih wilayah di mana Anda ingin menayangkan hasil tabel pivot." #. UjyGK #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:872 @@ -28185,7 +28185,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1028 msgctxt "pivottablelayoutdialog|extended_tip|more" msgid "Displays or hides additional options for defining the pivot table." -msgstr "Menampilkan atau menyembunyikan pilihan tambahan untuk menentukan tabel pivot." +msgstr "Menayangkan atau menyembunyikan pilihan tambahan untuk menentukan tabel pivot." #. rSsEg #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1054 @@ -28449,7 +28449,7 @@ #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:155 msgctxt "randomnumbergenerator|extended_tip|cell-range-edit" msgid "Define the range of cells to fill with random numbers. If you have previously selected a range, it will be displayed here." -msgstr "Tentukan rentang sel yang akan diisi dengan angka acak. Bila Anda sebelumnya telah memilih suatu rentang, itu akan ditampilkan di sini." +msgstr "Tentukan rentang sel yang akan diisi dengan angka acak. Bila Anda sebelumnya telah memilih suatu rentang, rentang tersebut akan ditayangkan di sini." #. Jy5mE #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:183 @@ -28653,7 +28653,7 @@ #: sc/uiconfig/scalc/ui/regressiondialog.ui:228 msgctxt "regressiondialog|extended_tip|output-range-edit" msgid "The reference of the top left cell of the range where the results will be displayed." -msgstr "Referensi sel kiri atas dari rentang di mana hasil akan ditampilkan." +msgstr "Rujukan sel kiri atas dari rentang di mana hasil akan ditayangkan." #. ngLrg #: sc/uiconfig/scalc/ui/regressiondialog.ui:254 @@ -29019,7 +29019,7 @@ #: sc/uiconfig/scalc/ui/scenariodialog.ui:157 msgctxt "scenariodialog|extended_tip|comment" msgid "Specifies additional information about the scenario. This information will be displayed in the Navigator when you click the Scenarios icon and select the desired scenario." -msgstr "Menentukan informasi tambahan tentang skenario. Informasi ini akan ditampilkan dalam Navigator ketika Anda mengklik ikon Skenario dan pilih yang diinginkan skenario." +msgstr "Menentukan informasi tambahan tentang skenario. Informasi ini akan ditayangkan dalam Navigator ketika Anda mengklik ikon Skenario dan pilih skenario yang diinginkan." #. X9GgG #: sc/uiconfig/scalc/ui/scenariodialog.ui:170 @@ -29067,7 +29067,7 @@ #: sc/uiconfig/scalc/ui/scenariodialog.ui:263 msgctxt "scenariodialog|showframe" msgid "_Display border" -msgstr "_Tampilkan tepi" +msgstr "_Tayangkan garis batas" #. NuN3J #: sc/uiconfig/scalc/ui/scenariodialog.ui:274 @@ -29205,7 +29205,7 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:246 msgctxt "scgeneralpage|formatcb" msgid "Expand _formatting" -msgstr "Kembangkan pem_formatan" +msgstr "Perluas pem_formatan" #. 8fqgH #: sc/uiconfig/scalc/ui/scgeneralpage.ui:254 @@ -29217,13 +29217,13 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:266 msgctxt "scgeneralpage|exprefcb" msgid "Expand _references when new columns/rows are inserted" -msgstr "Kembangkan acuan ketika kolom/ba_ris baru disisipkan" +msgstr "Perluas acuan ketika kolom/ba_ris baru disisipkan" #. yybGX #: sc/uiconfig/scalc/ui/scgeneralpage.ui:274 msgctxt "extended_tip|exprefcb" msgid "Specifies whether to expand references when inserting columns or rows adjacent to the reference range. This is only possible if the reference range, where the column or row is inserted, originally spanned at least two cells in the desired direction." -msgstr "Menentukan apakah akan melebarkan referensi ketika menyisipkan kolom atau baris yang berdekatan dengan rentang referensi. Ini hanya akan dimungkinkan jika rentang referensi, di mana kolom atau baris disisipkan, semula terentang setidaknya dua sel dalam arah yang diinginkan." +msgstr "Menentukan apakah akan memperluas rujukan ketika menyisipkan kolom atau baris yang berdekatan dengan rentang rujukan. Ini hanya akan dimungkinkan jika rentang rujukan, di mana kolom atau baris disisipkan, semula terentang setidaknya dua sel dalam arah yang diinginkan." #. 6oRpB #: sc/uiconfig/scalc/ui/scgeneralpage.ui:291 @@ -29343,7 +29343,7 @@ #: sc/uiconfig/scalc/ui/searchresults.ui:40 msgctxt "searchresults|ShowBox" msgid "Enable the dialog again at Tools > Options > Calc > View" -msgstr "Fungsikan lagi dialog pada Perkakas > Pilihan> Calc > Tampilan" +msgstr "Fungsikan lagi dialog pada Perkakas > Pilihan> Calc > Tilikan" #. sekAN #: sc/uiconfig/scalc/ui/searchresults.ui:101 @@ -29979,7 +29979,7 @@ #: sc/uiconfig/scalc/ui/showchangesdialog.ui:178 msgctxt "showchangesdialog|label1" msgid "Filter Settings" -msgstr "Pengaturan Penyaring" +msgstr "Pengaturan Penapis" #. B3EDe #: sc/uiconfig/scalc/ui/showchangesdialog.ui:253 @@ -30021,7 +30021,7 @@ #: sc/uiconfig/scalc/ui/showsheetdialog.ui:157 msgctxt "showsheetdialog|extended_tip|ShowSheetDialog" msgid "Displays a list of all hidden sheets in your spreadsheet document." -msgstr "Menampilkan senarai dari semua lembar yang tersembunyi di dokumen lembar sebar Anda" +msgstr "Menayangkan senarai dari semua lembar yang tersembunyi di dokumen lembar sebar Anda." #. ktHTz #: sc/uiconfig/scalc/ui/sidebaralignment.ui:52 @@ -30249,7 +30249,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:162 msgctxt "sidebarnumberformat|denominatorplaces|tooltip_text" msgid "Enter the number of places for the denominator that you want to display." -msgstr "Masukkan berapa banyak angka denominator yang ingin Anda tampilkan." +msgstr "Masukkan berapa banyak angka denominator yang ingin Anda tayangkan." #. ySDGH #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:167 @@ -30261,13 +30261,13 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:181 msgctxt "sidebarnumberformat|decimalplaces|tooltip_text" msgid "Enter the number of decimal places that you want to display." -msgstr "Masukkan banyaknya dijit desimal yang ingin Anda tampilkan." +msgstr "Masukkan banyaknya digit desimal yang ingin Anda tayangkan." #. 5tvJA #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:186 msgctxt "sidebarnumberformat|decimalplaces-atkobject" msgid "Decimal Places" -msgstr "Tempat Desimal" +msgstr "Digit Desimal" #. 4h3mG #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:219 @@ -30279,7 +30279,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:234 msgctxt "sidebarnumberformat|leadingzeroes|tooltip_text" msgid "Enter the maximum number of zeroes to display before the decimal point." -msgstr "Masukkan banyaknya nol maksimum yang ditampilkan sebelum titik desimal." +msgstr "Masukkan banyaknya nol maksimum yang ditayangkan sebelum titik desimal." #. UFTBa #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:240 @@ -30339,7 +30339,7 @@ #: sc/uiconfig/scalc/ui/simplerefdialog.ui:142 msgctxt "simplerefdialog|extended_tip|SimpleRefDialog" msgid "Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the Set Reference button (...)." -msgstr "Menyaring senarai perubahan sesuai dengan rentang sel yang Anda tentukan. Untuk memilih rentang sel di lembar Anda, klik tombol Atur Rujukan (...)." +msgstr "Menapis senarai perubahan sesuai dengan rentang sel yang Anda tentukan. Untuk memilih rentang sel di lembar Anda, klik tombol Atur Rujukan (...)." #. GGUrx #: sc/uiconfig/scalc/ui/solverdlg.ui:8 @@ -30681,7 +30681,7 @@ #: sc/uiconfig/scalc/ui/solverdlg.ui:869 msgctxt "solverdlg|label1" msgid "Limiting Conditions" -msgstr "Kondisi Yang Membatasi" +msgstr "Syarat Yang Membatasi" #. bXYQB #: sc/uiconfig/scalc/ui/solverdlg.ui:899 @@ -30951,7 +30951,7 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:146 msgctxt "sortoptionspage|extended_tip|outarealb" msgid "Select a named cell range where you want to display the sorted list, or enter a cell range in the input box." -msgstr "Pilih nama rentang sel dimana kamu ingin menampilkan senarai terurut, atau masukkan rentang sel di kotak masukan." +msgstr "Pilih nama rentang sel dimana Anda ingin menayangkan senarai terurut, atau masukkan rentang sel di kotak masukan." #. ABGSS #: sc/uiconfig/scalc/ui/sortoptionspage.ui:167 @@ -30963,7 +30963,7 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:168 msgctxt "sortoptionspage|extended_tip|outareaed" msgid "Enter the cell range where you want to display the sorted list, or select a named range from the list." -msgstr "Masukkan rentang sel tempat Anda ingin menampilkan senarai yang diurutkan, atau pilih rentang bernama dari senarai." +msgstr "Masukkan rentang sel tempat Anda ingin menayangkan senarai yang diurutkan, atau pilih rentang bernama dari senarai." #. GwzEB #: sc/uiconfig/scalc/ui/sortoptionspage.ui:179 @@ -31179,7 +31179,7 @@ #: sc/uiconfig/scalc/ui/sparklinedialog.ui:570 msgctxt "SparklineDialog|label_DisplayEmptyCellsAs" msgid "Display empty cells as:" -msgstr "Tampilkan sel kosong sebagai:" +msgstr "Tayangkan sel kosong sebagai:" #. K3oCB #: sc/uiconfig/scalc/ui/sparklinedialog.ui:585 @@ -31203,7 +31203,7 @@ #: sc/uiconfig/scalc/ui/sparklinedialog.ui:597 msgctxt "SparklineDialog|checkButton_Hidden" msgid "Display hidden" -msgstr "Tampilkan yang tersembunyi" +msgstr "Tayangkan yang tersembunyi" #. gxx8E #: sc/uiconfig/scalc/ui/sparklinedialog.ui:612 @@ -31293,7 +31293,7 @@ #: sc/uiconfig/scalc/ui/sparklinedialog.ui:780 msgctxt "SparklineDialog|checkBox_DisplayX" msgid "Display X axis" -msgstr "Tampilkan sumbu X" +msgstr "Tayangkan sumbu X" #. uAAF6 #: sc/uiconfig/scalc/ui/sparklinedialog.ui:800 @@ -31329,7 +31329,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:76 msgctxt "standardfilterdialog|StandardFilterDialog" msgid "Standard Filter" -msgstr "Penyaring Standar" +msgstr "Penapis Standar" #. PLynG #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:94 @@ -31449,7 +31449,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:322 msgctxt "standardfilterdialog|label4" msgid "Condition" -msgstr "Kondisi" +msgstr "Syarat" #. ZgtGB #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:333 @@ -31689,13 +31689,13 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:852 msgctxt "standardfilterdialog|extended_tip|val1" msgid "Specifies a value to filter the field." -msgstr "Menentukan nilai untuk menyaring ruas." +msgstr "Menentukan nilai untuk menapis ruas." #. ekQLB #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:915 msgctxt "standardfilterdialog|label1" msgid "Filter Criteria" -msgstr "Kriteria Penyaringan" +msgstr "Kriteria Penapisan" #. L6LRF #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:954 @@ -31707,7 +31707,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:963 msgctxt "standardfilterdialog|extended_tip|case" msgid "Distinguishes between uppercase and lowercase letters when filtering the data." -msgstr "Membedakan antara huruf besar dan huruf kecil saat menyaring data." +msgstr "Membedakan antara huruf besar dan huruf kecil saat menapis data." #. yud2Z #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:974 @@ -31731,7 +31731,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1003 msgctxt "standardfilterdialog|extended_tip|regexp" msgid "Allows you to use regular expressions in the filter definition." -msgstr "Memungkinkan Anda menggunakan ekspresi reguler dalam definisi penyaring." +msgstr "Memungkinkan Anda menggunakan ekspresi reguler dalam penentuan penapisan." #. Y8AtC #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1014 @@ -31743,7 +31743,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1023 msgctxt "standardfilterdialog|extended_tip|unique" msgid "Excludes duplicate rows in the list of filtered data." -msgstr "Kecualikan baris yang duplikat pada senarai data yang tersaring." +msgstr "Kecualikan baris yang duplikat pada senarai data yang tertapis." #. BRiA2 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1034 @@ -31755,19 +31755,19 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1047 msgctxt "standardfilterdialog|extended_tip|copyresult" msgid "Select the check box, and then select the cell range where you want to display the filter results." -msgstr "Pilih kotak centang, lalu pilih rentang sel tempat Anda ingin menampilkan hasil penyaring." +msgstr "Pilih kotak centang, lalu pilih rentang sel tempat Anda ingin menayangkan hasil penapis." #. wDy43 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1058 msgctxt "standardfilterdialog|destpers" msgid "_Keep filter criteria" -msgstr "Pertahan_kan kriteria penyaring" +msgstr "Pertahan_kan kriteria penapis" #. rSZi5 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1067 msgctxt "standardfilterdialog|extended_tip|destpers" msgid "Select the Copy results to check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under Data - Define range as a database range." -msgstr "Pilih kotak centang Salin hasil ke, lalu tentukan rentang tujuan tempat Anda ingin menampilkan data yang disaring. Jika kotak ini dicentang, rentang tujuan tetap tertaut ke kisaran sumber. Anda harus menetapkan rentang sumber di bawah Data - Tentukan Rentang sebagai rentang basis data." +msgstr "Pilih kotak centang Salin hasil ke, lalu tentukan rentang tujuan tempat Anda ingin menayangkan data yang ditapis. Jika kotak ini dicentang, rentang tujuan tetap tertaut ke kisaran sumber. Anda harus menetapkan rentang sumber di bawah Data - Tentukan Rentang sebagai rentang basis data." #. StG9B #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1099 @@ -31779,7 +31779,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1100 msgctxt "standardfilterdialog|extended_tip|lbcopyarea" msgid "Select the check box, and then select the cell range where you want to display the filter results." -msgstr "Pilih kotak centang, lalu pilih rentang sel tempat Anda ingin menampilkan hasil penyaring." +msgstr "Pilih kotak centang, lalu pilih rentang sel tempat Anda ingin menayangkan hasil penapis." #. aX8Ar #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1122 @@ -31791,7 +31791,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1123 msgctxt "standardfilterdialog|extended_tip|edcopyarea" msgid "Select the check box, and then select the cell range where you want to display the filter results." -msgstr "Pilih kotak centang, lalu pilih rentang sel tempat Anda ingin menampilkan hasil penyaring." +msgstr "Pilih kotak centang, lalu pilih rentang sel tempat Anda ingin menayangkan hasil penapis." #. WSVsk #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1142 @@ -31821,13 +31821,13 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1206 msgctxt "standardfilterdialog|extended_tip|more" msgid "Shows additional filter options." -msgstr "Memperlihatkan pilihan penyaring tambahan." +msgstr "Memperlihatkan pilihan penapis tambahan." #. NNCfP #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1226 msgctxt "standardfilterdialog|extended_tip|StandardFilterDialog" msgid "Specifies the logical conditions to filter your table data." -msgstr "Menentukan kondisi logis untuk menyaring data tabel Anda." +msgstr "Menentukan syarat logis untuk menapis data tabel Anda." #. uBMEs #: sc/uiconfig/scalc/ui/statisticsinfopage.ui:24 @@ -32325,7 +32325,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:733 msgctxt "textimportcsv|extended_tip|columntype" msgid "Choose a column in the preview window and select the data type to be applied the imported data." -msgstr "Pilih suatu kolom dalam jendela pratinjau dan pilih jenis data yang akan diterapkan pada data yang diimpor." +msgstr "Pilih suatu kolom dalam jendela pratilik dan pilih jenis data yang akan diterapkan pada data yang diimpor." #. A79gL #: sc/uiconfig/scalc/ui/textimportcsv.ui:812 @@ -32469,7 +32469,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:91 msgctxt "extended_tip|value" msgid "Mark the Value highlighting box to show the cell contents in different colors, depending on type. Text cells are formatted in black, formulas in green, number cells in blue, and protected cells are shown with light grey background, no matter how their display is formatted." -msgstr "Tandai Menyoroti nilai kotak untuk menampilkan isi sel dalam berbagai warna, tergantung pada jenisnya. Sel teks diformat dalam warna hitam, rumus berwarna hijau, sel angka berwarna biru, dan sel yang dilindungi ditunjukkan dengan latar belakang abu-abu terang, tidak peduli bagaimana tampilan mereka diformat." +msgstr "Tandai kotak penyorot Nilai untuk menayangkan isi sel dalam berbagai warna, tergantung pada jenisnya. Sel teks diformat dalam warna hitam, rumus berwarna hijau, sel angka berwarna biru, dan sel yang dilindungi ditunjukkan dengan latar belakang abu-abu terang, tidak peduli bagaimana tayangan mereka diformat." #. ah84V #: sc/uiconfig/scalc/ui/tpviewpage.ui:102 @@ -32481,7 +32481,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:110 msgctxt "extended_tip|anchor" msgid "Specifies whether the anchor icon is displayed when an inserted object, such as a graphic, is selected." -msgstr "Menentukan apakah ikon tambat ditampilkan ketika objek yang dimasukkan, seperti grafik, dipilih." +msgstr "Menentukan apakah ikon tambat ditayangkan ketika objek yang dimasukkan, seperti grafik, dipilih." #. XBGqd #: sc/uiconfig/scalc/ui/tpviewpage.ui:121 @@ -32493,7 +32493,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:129 msgctxt "extended_tip|clipmark" msgid "If a cell contains text that is wider than the width of the cell, the text is displayed over empty neighboring cells in the same row. If there is no empty neighboring cell, a small triangle at the cell border indicates that the text continues." -msgstr "Jika sebuah sel berisi teks yang lebih lebar dari lebar sel, teks ditampilkan di atas sel-sel tetangga yang kosong di baris yang sama. Jika tidak ada sel tetangga yang kosong, segitiga kecil pada garis batas sel menunjukkan bahwa teks berlanjut." +msgstr "Jika sebuah sel berisi teks yang lebih lebar dari lebar sel, teks ditayangkan di atas sel-sel tetangga yang kosong di baris yang sama. Jika tidak ada sel tetangga yang kosong, segitiga kecil pada garis batas sel menunjukkan bahwa teks berlanjut." #. aqEWS #: sc/uiconfig/scalc/ui/tpviewpage.ui:140 @@ -32511,7 +32511,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:163 msgctxt "tpviewpage|label4" msgid "Display" -msgstr "Tampilan" +msgstr "Tayangan" #. oCEpm #: sc/uiconfig/scalc/ui/tpviewpage.ui:190 @@ -32523,7 +32523,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:198 msgctxt "extended_tip|rowcolheader" msgid "Specifies whether to display row and column headers." -msgstr "Menentukan apakah akan menampilkan tajuk baris dan kolom." +msgstr "Menentukan apakah akan menayangkan kepala baris dan kolom." #. WAwjG #: sc/uiconfig/scalc/ui/tpviewpage.ui:209 @@ -32535,7 +32535,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:217 msgctxt "extended_tip|hscroll" msgid "Specifies whether to display a horizontal scrollbar at the bottom of the document window." -msgstr "Menentukan apakah akan menampilkan bilah gulir horizontal di bagian bawah jendela dokumen." +msgstr "Menentukan apakah akan menayangkan bilah gulir horizontal di bagian bawah jendela dokumen." #. PZvCk #: sc/uiconfig/scalc/ui/tpviewpage.ui:228 @@ -32547,7 +32547,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:236 msgctxt "extended_tip|vscroll" msgid "Specifies whether to display a vertical scrollbar at the right of the document window." -msgstr "Menentukan apakah akan menampilkan bilah gulir vertikal di sebelah kanan jendela dokumen." +msgstr "Menentukan apakah akan menayangkan bilah gulir vertikal di sebelah kanan jendela dokumen." #. rPmMd #: sc/uiconfig/scalc/ui/tpviewpage.ui:247 @@ -32559,7 +32559,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:255 msgctxt "extended_tip|tblreg" msgid "Specifies whether to display the sheet tabs at the bottom of the spreadsheet document." -msgstr "Menentukan apakah akan menampilkan tab lembar pada bagian bawah dokumen lembar sebar." +msgstr "Menentukan apakah akan menayangkan tab lembar pada bagian bawah dokumen lembar sebar." #. WJSnC #: sc/uiconfig/scalc/ui/tpviewpage.ui:266 @@ -32661,7 +32661,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:446 msgctxt "extended_tip|grid" msgid "Specifies when grid lines will be displayed. Default is to display grid lines only on cells that do not have a background color. You can choose to also display grid lines on cells with background color, or to hide them." -msgstr "Menentukan saat garis kisi akan ditampilkan. Bawaan menampilkan garis kisi hanya pada sel yang tidak memiliki warna latar. Anda dapat memilih untuk menampilkan kisi garis pada sel dengan warna latar, atau menyembunyikannya." +msgstr "Menentukan saat garis kisi akan ditayangkan. Bakunya menayangkan garis kisi hanya pada sel yang tidak memiliki warna latar. Anda dapat memilih untuk menayangkan kisi garis pada sel dengan warna latar, atau menyembunyikannya." #. yajBD #: sc/uiconfig/scalc/ui/tpviewpage.ui:469 @@ -32787,7 +32787,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:687 msgctxt "extended_tip|TpViewPage" msgid "Defines which elements of the Calc main window are displayed. You can also show or hide highlighting of values in tables." -msgstr "Menentukan elemen mana dari jendela utama Calc yang ditampilkan. Anda juga dapat menampilkan atau menyembunyikan penyorotan nilai dalam tabel." +msgstr "Menentukan elemen mana dari jendela utama Calc yang ditayangkan. Anda juga dapat menayangkan atau menyembunyikan penyorotan nilai dalam tabel." #. AnLEa #: sc/uiconfig/scalc/ui/ttestdialog.ui:95 @@ -33045,7 +33045,7 @@ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:253 msgctxt "validationcriteriapage|extended_tip|sortascend" msgid "Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken." -msgstr "Mengurutkan senarai pemilihan dalam urutan menaik dan menyaring duplikat dari senarai. Jika tidak dicentang, urutan dari sumber data diambil." +msgstr "Mengurutkan senarai pemilihan dalam urutan menaik dan menapis duplikat dari senarai. Jika tidak dicentang, urutan dari sumber data diambil." #. 96jcJ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:266 @@ -33117,13 +33117,13 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:25 msgctxt "validationhelptabpage|extended_tip|tsbhelp" msgid "Displays the message that you enter in the Contents box when the cell or cell range is selected in the sheet." -msgstr "Menampilkan pesan yang Anda masukkan di kotak Isi ketika sel atau rentang sel dipilih di lembar." +msgstr "Menayangkan pesan yang Anda masukkan di kotak Isi ketika sel atau rentang sel dipilih di lembar." #. 9NNLK #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:63 msgctxt "validationhelptabpage|extended_tip|title" msgid "Enter the title that you want to display when the cell or cell range is selected." -msgstr "Masukkan judul yang ingin Anda tampilkan ketika sel atau rentang sel dipilih." +msgstr "Masukkan judul yang ingin Anda tayangkan ketika sel atau rentang sel dipilih." #. WZNfj #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:76 @@ -33141,7 +33141,7 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:116 msgctxt "validationhelptabpage|extended_tip|inputhelp" msgid "Enter the message that you want to display when the cell or cell range is selected." -msgstr "Masukkan pesan yang ingin Anda tampilkan ketika sel atau rentang sel dipilih." +msgstr "Masukkan pesan yang ingin Anda tayangkan ketika sel atau rentang sel dipilih." #. epdvk #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:133 @@ -33153,7 +33153,7 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:148 msgctxt "validationhelptabpage|extended_tip|ValidationHelpTabPage" msgid "Enter the message that you want to display when the cell or cell range is selected in the sheet." -msgstr "Masukkan pesan yang ingin Anda tampilkan ketika sel atau rentang sel dipilih dalam lembar." +msgstr "Masukkan pesan yang ingin Anda tayangkan ketika sel atau rentang sel dipilih dalam lembar." #. XEHEu #: sc/uiconfig/scalc/ui/warnautocorrect.ui:13 diff -Nru libreoffice-7.4.6/translations/source/id/sccomp/messages.po libreoffice-7.4.7/translations/source/id/sccomp/messages.po --- libreoffice-7.4.6/translations/source/id/sccomp/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/sccomp/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-29 16:03+0200\n" -"PO-Revision-Date: 2021-06-11 15:15+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.6.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1515322148.000000\n" #. whDxm @@ -86,7 +86,7 @@ #: sccomp/inc/strings.hrc:35 msgctxt "RID_ERROR_INFEASIBLE" msgid "The model is infeasible. Check limiting conditions." -msgstr "Model tidak dimungkinkan. Periksa kondisi batasan." +msgstr "Model tidak dimungkinkan. Periksa syarat yang membatasi." #. iGYmo #: sccomp/inc/strings.hrc:36 diff -Nru libreoffice-7.4.6/translations/source/id/scp2/source/activex.po libreoffice-7.4.7/translations/source/id/scp2/source/activex.po --- libreoffice-7.4.6/translations/source/id/scp2/source/activex.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/scp2/source/activex.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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: 2016-05-16 18:52+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1463424726.000000\n" #. jydgc @@ -32,4 +32,4 @@ "STR_DESC_MODULE_OPTIONAL_ACTIVEXCONTROL\n" "LngText.text" msgid "Deprecated Component (see release notes) to enable Microsoft Internet Explorer to display %PRODUCTNAME documents." -msgstr "Komponen Yang Tak Berlaku Lagi (lihat catatan rilis) yang memungkinkan Microsoft Internet Explorer menampilkan dokumen %PRODUCTNAME." +msgstr "Komponen Yang Tak Berlaku Lagi (lihat catatan rilis) yang memungkinkan Microsoft Internet Explorer menayangkan dokumen %PRODUCTNAME." diff -Nru libreoffice-7.4.6/translations/source/id/scp2/source/graphicfilter.po libreoffice-7.4.7/translations/source/id/scp2/source/graphicfilter.po --- libreoffice-7.4.6/translations/source/id/scp2/source/graphicfilter.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/scp2/source/graphicfilter.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-04-27 15:55+0200\n" -"PO-Revision-Date: 2014-06-02 08:05+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: Indonesian <>\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1401696347.000000\n" #. yNDcH @@ -23,7 +23,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT\n" "LngText.text" msgid "Image Filters" -msgstr "Penyaring Gambar" +msgstr "Penapis Gambar" #. NGACu #: module_graphicfilter.ulf @@ -32,7 +32,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT\n" "LngText.text" msgid "Additional filters required to read alien image formats." -msgstr "Diperlukan penyaring tambahan untuk membaca format grafik asing." +msgstr "Diperlukan penapis tambahan untuk membaca format grafik asing." #. AGhyB #: module_graphicfilter.ulf @@ -41,7 +41,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_ADOBE\n" "LngText.text" msgid "Adobe Photoshop Import Filter" -msgstr "Penyaring Impor Adobe Photoshop" +msgstr "Penapis Impor Adobe Photoshop" #. 7g8wn #: module_graphicfilter.ulf @@ -50,7 +50,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_ADOBE\n" "LngText.text" msgid "Adobe Photoshop Import Filter" -msgstr "Penyaring Impor Adobe Photoshop" +msgstr "Penapis Impor Adobe Photoshop" #. BuJNs #: module_graphicfilter.ulf @@ -68,7 +68,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_TGA\n" "LngText.text" msgid "TGA TrueVision TARGA Import Filter" -msgstr "Penyaring Impor TGA TrueVision TARGA" +msgstr "Penapis Impor TGA TrueVision TARGA" #. 2eKBa #: module_graphicfilter.ulf @@ -77,7 +77,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_EPS\n" "LngText.text" msgid "EPS Import/Export Filter" -msgstr "Penyaring Impor/Ekspor EPS" +msgstr "Penapis Impor/Ekspor EPS" #. TYdEn #: module_graphicfilter.ulf @@ -86,7 +86,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_EPS\n" "LngText.text" msgid "Encapsulated Postscript Import/Export Filter" -msgstr "Penyaring Impor/Ekspor Enkapsulasi Postscript" +msgstr "Penapis Impor/Ekspor Enkapsulasi Postscript" #. MjpxH #: module_graphicfilter.ulf @@ -95,7 +95,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_XPM\n" "LngText.text" msgid "XPM Export Filter" -msgstr "Penyaring Ekspor XPM" +msgstr "Penapis Ekspor XPM" #. E2iXD #: module_graphicfilter.ulf @@ -104,7 +104,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_XPM\n" "LngText.text" msgid "XPM Export Filter" -msgstr "Penyaring Ekspor XPM" +msgstr "Penapis Ekspor XPM" #. NcCsf #: module_graphicfilter.ulf @@ -122,7 +122,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_PBMP\n" "LngText.text" msgid "Portable Bitmap Import/Export Filters" -msgstr "Penyaring Impor/Ekspor Portable Bitmap" +msgstr "Penapis Impor/Ekspor Portable Bitmap" #. p4zwV #: module_graphicfilter.ulf @@ -140,7 +140,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_SUNRST\n" "LngText.text" msgid "SUN Rasterfile Import/Export Filters" -msgstr "Penyaring Import/Ekspor SUN Rasterfile" +msgstr "Penapis Import/Ekspor SUN Rasterfile" #. XNt5u #: module_graphicfilter.ulf @@ -158,7 +158,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_ACAD\n" "LngText.text" msgid "AutoCAD Import Filter" -msgstr "Penyaring Impor AutoCAD" +msgstr "Penapis Impor AutoCAD" #. Ce6Le #: module_graphicfilter.ulf @@ -176,7 +176,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_KODAC\n" "LngText.text" msgid "Kodak Photo-CD Import Filter" -msgstr "Penyaring Impor Kodak Photo-CD" +msgstr "Penapis Impor Kodak Photo-CD" #. bYCLv #: module_graphicfilter.ulf @@ -194,7 +194,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_MACPICT\n" "LngText.text" msgid "Mac-Pict Import/Export Filters" -msgstr "Penyaring Impor/Ekspor Mac-Pict" +msgstr "Penapis Impor/Ekspor Mac-Pict" #. 7RyBK #: module_graphicfilter.ulf @@ -212,7 +212,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_OS2META\n" "LngText.text" msgid "OS/2 Metafile Import/Export Filters" -msgstr "Penyaring Impor/Ekspor OS/2 Metafile" +msgstr "Penapis Impor/Ekspor OS/2 Metafile" #. ARyAy #: module_graphicfilter.ulf @@ -248,7 +248,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_TIFF\n" "LngText.text" msgid "TIFF Import and Export Filter" -msgstr "Penyaring Impor/Ekspor TIFF" +msgstr "Penapis Impor/Ekspor TIFF" #. AhuaC #: module_graphicfilter.ulf @@ -266,4 +266,4 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_SVG\n" "LngText.text" msgid "SVG Export Filter" -msgstr "Penyaring Ekspor SVG" +msgstr "Penapis Ekspor SVG" diff -Nru libreoffice-7.4.6/translations/source/id/scp2/source/impress.po libreoffice-7.4.7/translations/source/id/scp2/source/impress.po --- libreoffice-7.4.6/translations/source/id/scp2/source/impress.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/scp2/source/impress.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-05-04 22:37+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1429885517.000000\n" #. USjxN @@ -32,7 +32,7 @@ "STR_FI_TOOLTIP_IMPRESS\n" "LngText.text" msgid "Create and edit presentations for slideshows, meeting and Web pages by using Impress." -msgstr "Mengolah presentasi untuk pertunjukan, rapat, dan halaman web menggunakan Impress." +msgstr "Membuat dan menyunting presentasi untuk pertunjukan salindia, rapat, dan halaman web menggunakan Impress." #. 4XJxj #: module_impress.ulf @@ -50,7 +50,7 @@ "STR_DESC_MODULE_PRG_IMPRESS\n" "LngText.text" msgid "Create and edit presentations for slideshows, meeting and Web pages by using %PRODUCTNAME Impress." -msgstr "Mengolah presentasi untuk pertunjukan, rapat, dan halaman web menggunakan %PRODUCTNAME Impress." +msgstr "Membuat dan menyunting presentasi untuk pertunjukan salindia, rapat, dan halaman web menggunakan %PRODUCTNAME Impress." #. 33n88 #: module_impress.ulf diff -Nru libreoffice-7.4.6/translations/source/id/scp2/source/winexplorerext.po libreoffice-7.4.7/translations/source/id/scp2/source/winexplorerext.po --- libreoffice-7.4.6/translations/source/id/scp2/source/winexplorerext.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/scp2/source/winexplorerext.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-08-21 21:37+0200\n" -"PO-Revision-Date: 2021-04-16 12:37+0000\n" +"PO-Revision-Date: 2023-04-08 19:33+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563639596.000000\n" #. 9FHTe @@ -32,4 +32,4 @@ "STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n" "LngText.text" msgid "Enables the Microsoft File Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and perform full-text search." -msgstr "Membuat Microsoft File Explorer mampu menampilkan informasi tentang dokumen %PRODUCTNAME, misalnya pratinjau keluku, dan pencarian teks lengkap." +msgstr "Membuat Microsoft File Explorer mampu menampilkan informasi tentang dokumen %PRODUCTNAME, misalnya pratilik keluku, dan pencarian teks lengkap." diff -Nru libreoffice-7.4.6/translations/source/id/scp2/source/writer.po libreoffice-7.4.7/translations/source/id/scp2/source/writer.po --- libreoffice-7.4.6/translations/source/id/scp2/source/writer.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/scp2/source/writer.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-05-04 22:37+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1387018057.000000\n" #. V3iDr @@ -113,7 +113,7 @@ "STR_DESC_MODULE_PRG_WRT_WRITER2LATEX\n" "LngText.text" msgid "LaTeX export filter for Writer documents." -msgstr "Penyaring ekspor LaTeX untuk dokumen Writer." +msgstr "Penapis ekspor LaTeX untuk dokumen Writer." #. 9mhd6 #: registryitem_writer.ulf diff -Nru libreoffice-7.4.6/translations/source/id/scp2/source/xsltfilter.po libreoffice-7.4.7/translations/source/id/scp2/source/xsltfilter.po --- libreoffice-7.4.6/translations/source/id/scp2/source/xsltfilter.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/scp2/source/xsltfilter.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2013-05-23 23:41+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1369352492.000000\n" #. VPt2X @@ -23,7 +23,7 @@ "STR_NAME_MODULE_OPTIONAL_XSLTFILTERSAMPLES\n" "LngText.text" msgid "XSLT Sample Filters" -msgstr "Penyaring Sampel XSLT" +msgstr "Penapis Sampel XSLT" #. QqGa5 #: module_xsltfilter.ulf @@ -32,4 +32,4 @@ "STR_DESC_MODULE_OPTIONAL_XSLTFILTERSAMPLES\n" "LngText.text" msgid "XSLT Sample Filters" -msgstr "Penyaring Sampel XSLT" +msgstr "Penapis Sampel XSLT" diff -Nru libreoffice-7.4.6/translations/source/id/sd/messages.po libreoffice-7.4.7/translations/source/id/sd/messages.po --- libreoffice-7.4.6/translations/source/id/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-11-16 12:50+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565578255.000000\n" #. WDjkB @@ -963,7 +963,7 @@ #: sd/inc/strings.hrc:116 msgctxt "STR_IMPORT_GRFILTER_FILTERERROR" msgid "Image filter not found" -msgstr "Penyaring gambar tak ditemukan" +msgstr "Penapis citra tak ditemukan" #. qdeHG #: sd/inc/strings.hrc:117 @@ -1289,7 +1289,7 @@ #: sd/inc/strings.hrc:173 msgctxt "STR_PUBLISH_NEXT" msgid "Continue" -msgstr "Teruskan" +msgstr "Lanjutkan" #. zh6Ad #: sd/inc/strings.hrc:174 @@ -1594,7 +1594,7 @@ #: sd/inc/strings.hrc:225 msgctxt "STR_UNDO_GRAFFILTER" msgid "Image filter" -msgstr "Penyaring citra" +msgstr "Penapis citra" #. AGE8e #: sd/inc/strings.hrc:226 @@ -1646,13 +1646,13 @@ #: sd/inc/strings.hrc:233 msgctxt "STR_TITLE_RENAMESLIDE" msgid "Rename Slide" -msgstr "Ganti Nama Salindia" +msgstr "Nama Ulang Salindia" #. KEEy2 #: sd/inc/strings.hrc:234 msgctxt "STR_TITLE_RENAMEPAGE" msgid "Rename Page" -msgstr "Ganti Nama Halaman" +msgstr "Nama Ulang Halaman" #. rBmcL #: sd/inc/strings.hrc:235 @@ -1670,7 +1670,7 @@ #: sd/inc/strings.hrc:237 msgctxt "STR_TITLE_RENAMEMASTER" msgid "Rename Master Slide" -msgstr "Ganti Nama Salindia Induk" +msgstr "Nama Ulang Salindia Induk" #. rWiXQ #: sd/inc/strings.hrc:238 @@ -1784,13 +1784,13 @@ #: sd/inc/strings.hrc:256 msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION" msgid "Preview not available" -msgstr "Pratinjau tidak tersedia" +msgstr "Pratilik tidak tersedia" #. bAJoa #: sd/inc/strings.hrc:257 msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION" msgid "Preparing preview" -msgstr "Menyiapkan pratinjau" +msgstr "Menyiapkan pratilik" #. nDrpm #: sd/inc/strings.hrc:258 @@ -1802,7 +1802,7 @@ #: sd/inc/strings.hrc:259 msgctxt "STR_GRAPHICS_STYLE_FAMILY" msgid "Drawing Styles" -msgstr "Gaya Menggambar" +msgstr "Gaya Gambar" #. tR4CL #: sd/inc/strings.hrc:260 @@ -2440,25 +2440,25 @@ #: sd/inc/strings.hrc:374 msgctxt "SID_SD_A11Y_D_DRAWVIEW_N" msgid "Drawing View" -msgstr "Tampilan Menggambar" +msgstr "Tilikan Menggambar" #. GfnmX #: sd/inc/strings.hrc:375 msgctxt "SID_SD_A11Y_I_DRAWVIEW_N" msgid "Drawing View" -msgstr "Tampilan Menggambar" +msgstr "Tilikan Menggambar" #. YCVqM #: sd/inc/strings.hrc:376 msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N" msgid "Outline View" -msgstr "Tampilan Kerangka" +msgstr "Tilikan Kerangka" #. k2hXi #: sd/inc/strings.hrc:377 msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N" msgid "Slides View" -msgstr "Tampilan Salindia" +msgstr "Tilikan Salindia" #. A22hR #: sd/inc/strings.hrc:378 @@ -2470,13 +2470,13 @@ #: sd/inc/strings.hrc:379 msgctxt "SID_SD_A11Y_I_NOTESVIEW_N" msgid "Notes View" -msgstr "Tampilan Catatan" +msgstr "Tilikan Catatan" #. qr5ov #: sd/inc/strings.hrc:380 msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N" msgid "Handout View" -msgstr "Tampilan Kliping" +msgstr "Tilikan Kliping" #. Ycpb4 #: sd/inc/strings.hrc:381 @@ -3940,7 +3940,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:8243 msgctxt "drawnotebookbar|ViewLabel" msgid "~View" -msgstr "~Tampilan" +msgstr "~Tilikan" #. 94L75 #: sd/uiconfig/sdraw/ui/notebookbar.ui:9588 @@ -4158,7 +4158,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7662 msgctxt "notebookbar_draw_compact|ViewLabel" msgid "~View" -msgstr "~Tampilan" +msgstr "~Tilikan" #. CqEAM #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9144 @@ -4527,13 +4527,13 @@ #: sd/uiconfig/sdraw/ui/vectorize.ui:45 msgctxt "vectorize|preview" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. c8AEr #: sd/uiconfig/sdraw/ui/vectorize.ui:52 msgctxt "vectorize|extended_tip|preview" msgid "Previews the converted image without applying the changes." -msgstr "Pratinjau gambar yang dikonversi tanpa menerapkan perubahan." +msgstr "Pratilik citra terkonversi tanpa menerapkan perubahan." #. 4LBUQ #: sd/uiconfig/sdraw/ui/vectorize.ui:126 @@ -4545,7 +4545,7 @@ #: sd/uiconfig/sdraw/ui/vectorize.ui:145 msgctxt "vectorize|extended_tip|colors" msgid "Enter the number of colors to be displayed in the converted image. A polygon is generated for each occurrence of a color in the image." -msgstr "Masukkan jumlah warna yang akan ditampilkan dalam citra yang dikonversi. Sebuah poligon dihasilkan untuk setiap kemunculan warna pada citra." +msgstr "Masukkan jumlah warna yang akan ditayangkan dalam citra terkonversi. Sebuah poligon dihasilkan untuk setiap kemunculan warna pada citra." #. Fzf9L #: sd/uiconfig/sdraw/ui/vectorize.ui:158 @@ -4689,13 +4689,13 @@ #: sd/uiconfig/simpress/ui/currentmastermenu.ui:56 msgctxt "currentmastermenu|large" msgid "Show _Large Preview" -msgstr "Tampi_lkan Pratinjau Besar" +msgstr "Tampi_lkan Pratilik Besar" #. kUpxX #: sd/uiconfig/simpress/ui/currentmastermenu.ui:64 msgctxt "currentmastermenu|small" msgid "Show S_mall Preview" -msgstr "Ta_mpilkan Pratinjau Kecil" +msgstr "Ta_mpilkan Pratilik Kecil" #. PbBwr #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:45 @@ -4975,7 +4975,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:140 msgctxt "customanimationspanel|extended_tip|custom_animation_list" msgid "The animation list displays all animations for the current slide." -msgstr "Senarai animasi menampilkan semua animasi bagi salindia saat ini." +msgstr "Senarai animasi menayangkan semua animasi bagi salindia saat ini." #. VBxbo #: sd/uiconfig/simpress/ui/customanimationspanel.ui:171 @@ -5131,7 +5131,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:472 msgctxt "customanimationspanel|extended_tip|start_effect_list" msgid "Displays when the selected animation effect should be started." -msgstr "Menampilkan saat animasi efek yang terpilih telah dimulai." +msgstr "Menayangkan saat animasi efek yang terpilih telah dimulai." #. 8AUq9 #: sd/uiconfig/simpress/ui/customanimationspanel.ui:486 @@ -5179,13 +5179,13 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:590 msgctxt "customanimationspanel|auto_preview" msgid "Automatic Preview" -msgstr "Pratinjau Otomatis" +msgstr "Pratilik Otomatis" #. GufhE #: sd/uiconfig/simpress/ui/customanimationspanel.ui:598 msgctxt "customanimationspanel|extended_tip|auto_preview" msgid "Select to preview new or edited effects on the slide while you assign them." -msgstr "Pilih untuk mempratinjau efek baru atau yang disunting pada salindia ketika Anda menugaskan mereka." +msgstr "Pilih untuk memratilik efek baru atau yang disunting pada salindia ketika Anda menugaskannya." #. KP8UC #: sd/uiconfig/simpress/ui/customanimationspanel.ui:610 @@ -5197,13 +5197,13 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:614 msgctxt "customanimationspanel|play|tooltip_text" msgid "Preview Effect" -msgstr "Pratinjau Efek" +msgstr "Pratilik Efek" #. sUTTG #: sd/uiconfig/simpress/ui/customanimationspanel.ui:621 msgctxt "customanimationspanel|extended_tip|play" msgid "Plays the selected animation effect in the preview." -msgstr "Memutar efek animasi yang dipilih dalam pratinjau." +msgstr "Memutar efek animasi yang dipilih dalam pratilik." #. LBEzG #: sd/uiconfig/simpress/ui/customanimationspanel.ui:633 @@ -5479,7 +5479,7 @@ #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:128 msgctxt "definecustomslideshow|extended_tip|customname" msgid "Displays the name of the custom slide show. If you want, you can enter a new name." -msgstr "Menampilkan nama pertunjukan salindia ubahan. Bila Anda mau, Anda dapat memasukkan nama baru." +msgstr "Menayangkan nama pertunjukan salindia ubahan. Bila Anda mau, Anda dapat memasukkan nama baru." #. HB63C #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:159 @@ -5563,7 +5563,7 @@ #: sd/uiconfig/simpress/ui/dlgfield.ui:108 msgctxt "dlgfield|extended_tip|fixedRB" msgid "Displays the content of the field when the field was inserted." -msgstr "Menampilkan isi ruas ketika ruas disisipkan." +msgstr "Menayangkan isi ruas ketika ruas disisipkan." #. VKhAG #: sd/uiconfig/simpress/ui/dlgfield.ui:120 @@ -5575,7 +5575,7 @@ #: sd/uiconfig/simpress/ui/dlgfield.ui:129 msgctxt "dlgfield|extended_tip|varRB" msgid "Displays the current value of the field." -msgstr "Menampilkan nilai ruas saat ini." +msgstr "Menayangkan nilai ruas saat ini." #. RAGYv #: sd/uiconfig/simpress/ui/dlgfield.ui:145 @@ -5599,7 +5599,7 @@ #: sd/uiconfig/simpress/ui/dlgfield.ui:222 msgctxt "dlgfield|extended_tip|formatLB" msgid "Select a display format for the field." -msgstr "Memilih format tampilan bagi ruas." +msgstr "Memilih format tayangan bagi ruas." #. fmuQT #: sd/uiconfig/simpress/ui/dlgfield.ui:231 @@ -5641,7 +5641,7 @@ #: sd/uiconfig/simpress/ui/dockinganimation.ui:139 msgctxt "dockinganimation|extended_tip|duration" msgid "Enter the number of seconds to display the current image. This option is only available if you select the Bitmap object option in the Animation group field." -msgstr "Masukkan berapa detik menampilkan citra saat ini. Pilihan ini hanya tersedia bila Anda memilih pilihan Objek bitmap dalam ruas Grup animasi." +msgstr "Masukkan berapa detik menayangkan citra saat ini. Pilihan ini hanya tersedia bila Anda memilih pilihan Objek bitmap dalam ruas Grup animasi." #. B5sxX #: sd/uiconfig/simpress/ui/dockinganimation.ui:152 @@ -6055,13 +6055,13 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:149 msgctxt "headerfootertab|extended_tip|rb_fixed" msgid "Displays the date and time that you enter in the text box." -msgstr "Menampilkan tanggal dan waktu yang Anda masukkan dalam kotak teks." +msgstr "Menayangkan tanggal dan waktu yang Anda masukkan dalam kotak teks." #. Nycig #: sd/uiconfig/simpress/ui/headerfootertab.ui:170 msgctxt "headerfootertab|extended_tip|datetime_value" msgid "Displays the date and time that you enter in the text box." -msgstr "Menampilkan tanggal dan waktu yang Anda masukkan dalam kotak teks." +msgstr "Menayangkan tanggal dan waktu yang Anda masukkan dalam kotak teks." #. Zch2Q #: sd/uiconfig/simpress/ui/headerfootertab.ui:195 @@ -6073,7 +6073,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:207 msgctxt "headerfootertab|extended_tip|rb_auto" msgid "Displays the date and time that the slide was created. Select a date format from the list." -msgstr "Menampilkan tanggal dan waktu saat salindia dibuat. Pilih format tanggal dari senarai." +msgstr "Menayangkan tanggal dan waktu saat salindia dibuat. Pilih format tanggal dari senarai." #. fXSJq #: sd/uiconfig/simpress/ui/headerfootertab.ui:229 @@ -6091,7 +6091,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:258 msgctxt "headerfootertab|extended_tip|datetime_format_list" msgid "Displays the date and time that the slide was created. Select a date format from the list." -msgstr "Menampilkan tanggal dan waktu saat salindia dibuat. Pilih format tanggal dari senarai." +msgstr "Menayangkan tanggal dan waktu saat salindia dibuat. Pilih format tanggal dari senarai." #. mDMwW #: sd/uiconfig/simpress/ui/headerfootertab.ui:271 @@ -6151,7 +6151,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:439 msgctxt "headerfootertab|extended_tip|not_on_title" msgid "Does not display your specified information on the first slide of your presentation." -msgstr "Tidak menampilkan informasi yang telah ditentukan sebelumya pada salindia pertama presentasi." +msgstr "Tidak menayangkan informasi yang telah ditentukan sebelumya pada salindia pertama presentasi." #. jjanG #: sd/uiconfig/simpress/ui/headerfootertab.ui:453 @@ -6403,7 +6403,7 @@ #: sd/uiconfig/simpress/ui/interactionpage.ui:203 msgctxt "interactionpage|extended_tip|treedoc" msgid "Opens and displays a file during a slide show. If you select an ODF file as the target document, you can also specify the page that will open." -msgstr "Membuka dan menampilkan berkas selama pertunjukan salindia. Jika Anda memilih berkas ODF sebagai dokumen target, Anda juga dapat menentukan halaman yang akan dibuka." +msgstr "Membuka dan menayangkan berkas selama pertunjukan salindia. Jika Anda memilih berkas ODF sebagai dokumen target, Anda juga dapat menentukan halaman yang akan dibuka." #. MZvua #: sd/uiconfig/simpress/ui/interactionpage.ui:268 @@ -6589,13 +6589,13 @@ #: sd/uiconfig/simpress/ui/mastermenu.ui:34 msgctxt "mastermenu|large" msgid "Show _Large Preview" -msgstr "Tampi_lkan Pratinjau Besar" +msgstr "Tampi_lkan Pratilik Besar" #. hTJCE #: sd/uiconfig/simpress/ui/mastermenu.ui:42 msgctxt "mastermenu|small" msgid "Show S_mall Preview" -msgstr "Ta_mpilkan Pratinjau Kecil" +msgstr "Ta_mpilkan Pratilik Kecil" #. qF7zf #: sd/uiconfig/simpress/ui/navigatorpanel.ui:12 @@ -6715,7 +6715,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:238 msgctxt "navigatorpanel|extended_tip|shapes" msgid "In the submenu you can choose to display a list of all shapes or only the named shapes. Use drag-and-drop in the list to reorder the shapes. When you set the focus to a slide and press the Tab key, the next shape in the defined order is selected." -msgstr "Pada submenu, Anda bisa memilih untuk menampilkan senarai dari semua bentuk atau hanya bentuk yang memiiki nama. Gunakan teknik seret dan lepaskan untuk menyusun ulang senarai bentuk. Saat Anda memfokuskannya pada salindia dan menekan tombol Tab, bentuk berikutnya pada urutan yang telah ditentukan akan terpilih." +msgstr "Pada submenu, Anda bisa memilih untuk menayangkan senarai dari semua bentuk atau hanya bentuk yang memiiki nama. Gunakan teknik seret dan lepaskan untuk menyusun ulang senarai bentuk. Saat Anda memfokuskannya pada salindia dan menekan tombol Tab, bentuk berikutnya pada urutan yang telah ditentukan akan terpilih." #. DzQZC #: sd/uiconfig/simpress/ui/navigatorpanel.ui:261 @@ -6829,7 +6829,7 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:9465 msgctxt "impressnotebookbar|ViewLabel" msgid "~View" -msgstr "~Tampilan" +msgstr "~Tilikan" #. bWC2b #: sd/uiconfig/simpress/ui/notebookbar.ui:10359 @@ -7059,7 +7059,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8761 msgctxt "notebookbar_impress_compact|ViewLabel" msgid "~View" -msgstr "~Tampilan" +msgstr "~Tilikan" #. CzCMC #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10445 @@ -8018,7 +8018,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:411 msgctxt "extended_tip|backgroundback" msgid "Specifies whether to use the cache for displaying objects on the master slide." -msgstr "Menentukan apakah akan menggunakan tembolok untuk menampilkan objek pada salindia induk." +msgstr "Menentukan apakah akan menggunakan tembolok untuk menayangkan objek pada salindia induk." #. psubE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:427 @@ -8138,7 +8138,7 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:261 msgctxt "photoalbum|label2" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. XC4DZ #: sd/uiconfig/simpress/ui/photoalbum.ui:290 @@ -8264,37 +8264,37 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:298 msgctxt "presentationdialog|presdisplay_label" msgid "P_resentation display:" -msgstr "Tampilan p_resentasi:" +msgstr "Tayangan p_resentasi:" #. ECzT8 #: sd/uiconfig/simpress/ui/presentationdialog.ui:321 msgctxt "presentationdialog|externalmonitor_str" msgid "Display %1 (external)" -msgstr "Tampilan %1 (eksternal)" +msgstr "Tayangan %1 (eksternal)" #. xDUjL #: sd/uiconfig/simpress/ui/presentationdialog.ui:331 msgctxt "presentationdialog|monitor_str" msgid "Display %1" -msgstr "Tampilan %1" +msgstr "Tayangan %1" #. DZ2HG #: sd/uiconfig/simpress/ui/presentationdialog.ui:341 msgctxt "presentationdialog|allmonitors_str" msgid "All displays" -msgstr "Semua tampilan" +msgstr "Semua tayangan" #. 65GqG #: sd/uiconfig/simpress/ui/presentationdialog.ui:351 msgctxt "presentationdialog|external_str" msgid "Auto External (Display %1)" -msgstr "Eksternal Otomatis (Tampilan %1)" +msgstr "Eksternal Otomatis (Tayangan %1)" #. m9FjZ #: sd/uiconfig/simpress/ui/presentationdialog.ui:370 msgctxt "presentationdialog|label3" msgid "Multiple Displays" -msgstr "Multi Tampilan" +msgstr "Multi Tayangan" #. bvPPh #: sd/uiconfig/simpress/ui/presentationdialog.ui:408 @@ -8330,7 +8330,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:460 msgctxt "presentationdialog|extended_tip|auto" msgid "Restarts the slide show after the pause interval you specify. A pause slide is displayed between the final slide and the start slide. Press the Esc key to stop the show." -msgstr "Mulai ulang pertunjukan salindia setelah interval jeda yang Anda nyatakan. Suatu salindia jeda ditampilkan di antara salindia terakhir dan salindia awal. Tekan tombol Esc untuk menghentikan pertunjukan." +msgstr "Mulai ulang pertunjukan salindia setelah selingan jeda yang Anda nyatakan. Suatu salindia jeda ditayangkan di antara salindia terakhir dan salindia awal. Tekan tombol Esc untuk menghentikan pertunjukan." #. FPAvh #: sd/uiconfig/simpress/ui/presentationdialog.ui:471 @@ -8342,7 +8342,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:480 msgctxt "presentationdialog|extended_tip|showlogo" msgid "Displays the application logo on the pause slide." -msgstr "Menampilkan logo aplikasi pada salindia jeda." +msgstr "Menayangkan logo aplikasi pada salindia jeda." #. vJ9Ns #: sd/uiconfig/simpress/ui/presentationdialog.ui:494 @@ -8414,7 +8414,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:617 msgctxt "presentationdialog|extended_tip|animationsallowed" msgid "Displays all frames of animated GIF files during the slide show." -msgstr "Menampilkan semua bingkai dari animasi GIF selama pertunjukan salindia." +msgstr "Menayangkan semua bingkai dari animasi GIF selama pertunjukan salindia." #. ZvDVF #: sd/uiconfig/simpress/ui/presentationdialog.ui:628 @@ -8732,7 +8732,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:216 msgctxt "publishingdialog|extended_tip|designsTreeview" msgid "Displays all existing designs." -msgstr "Menampilkan semua desain yang ada." +msgstr "Menayangkan semua desain yang ada." #. mEc7e #: sd/uiconfig/simpress/ui/publishingdialog.ui:245 @@ -8864,7 +8864,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:603 msgctxt "publishingdialog|extended_tip|durationSpinbutton" msgid "Defines the amount of time for each slide display." -msgstr "Menentukan banyaknya waktu untuk setiap tampilan salindia." +msgstr "Menentukan banyaknya waktu untuk setiap tayangan salindia." #. jMsf2 #: sd/uiconfig/simpress/ui/publishingdialog.ui:622 @@ -8876,7 +8876,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:631 msgctxt "publishingdialog|extended_tip|endlessCheckbutton" msgid "Automatically restarts the HTML presentation after the last slide has been displayed." -msgstr "Secara otomatis menjalankan ulang presentasi HTML setelah salindia akhir salindia akan ditampilkan." +msgstr "Secara otomatis menjalankan ulang presentasi HTML setelah salindia akhir salindia selesai ditayangkan." #. NFmGJ #: sd/uiconfig/simpress/ui/publishingdialog.ui:654 @@ -8906,7 +8906,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:716 msgctxt "publishingdialog|extended_tip|notesCheckbutton" msgid "Specifies that your notes are also displayed." -msgstr "Menentukan bahwa catatan anda juga di tampilkan." +msgstr "Menentukan bahwa catatan anda juga ditayangkan." #. GNRxU #: sd/uiconfig/simpress/ui/publishingdialog.ui:732 @@ -8954,7 +8954,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:884 msgctxt "publishingdialog|extended_tip|framesRadiobutton" msgid "Creates standard HTML pages with frames. The exported page will be placed in the main frame, and the frame to the left will display a table of contents in the form of hyperlinks." -msgstr "membuat halaman standar dengan halaman bingkai. ekspor halaman yang akan di tempatkan di bingkai utama, dan bingkai akan ditampilkan di meja konten dalam bentuk pranala." +msgstr "Membuat halaman standar dengan halaman bingkai. ekspor halaman yang akan ditempatkan di bingkai utama, dan bingkai akan ditayangkan di meja konten dalam bentuk pranala." #. CA35b #: sd/uiconfig/simpress/ui/publishingdialog.ui:895 @@ -9062,7 +9062,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1174 msgctxt "publishingdialog|extended_tip|resolution3Radiobutton" msgid "Select a high resolution for a high quality slide display." -msgstr "Pilih resolusi tinggi untuk tampilan salindia yang berkualitas tinggi." +msgstr "Pilih resolusi tinggi untuk tayangan salindia yang berkualitas tinggi." #. d6ACJ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1186 @@ -9074,7 +9074,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1195 msgctxt "publishingdialog|extended_tip|resolution4Radiobutton" msgid "Select a full HD resolution for a very high-quality slide display." -msgstr "Pilih resolusi full HD untuk tampilan salindia berkualitas sangat tinggi." +msgstr "Pilih resolusi full HD untuk tayangan salindia berkualitas sangat tinggi." #. zsvW6 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1211 @@ -9356,7 +9356,7 @@ #: sd/uiconfig/simpress/ui/sdviewpage.ui:30 msgctxt "extended_tip|ruler" msgid "Specifies whether to display the rulers at the top and to the left of the work area." -msgstr "Menentukan apakah menampilkan penggaris pada bagian atas dan bagian kiri wilayah kerja." +msgstr "Menentukan apakah menayangkan penggaris pada bagian atas dan bagian kiri wilayah kerja." #. RPDaD #: sd/uiconfig/simpress/ui/sdviewpage.ui:42 @@ -9368,7 +9368,7 @@ #: sd/uiconfig/simpress/ui/sdviewpage.ui:50 msgctxt "extended_tip|dragstripes" msgid "Specifies whether to display guides when moving an object." -msgstr "Menentukan apakah akan menampilkan panduan saat memindahkan objek." +msgstr "Menentukan apakah akan menayangkan panduan saat memindahkan objek." #. Grues #: sd/uiconfig/simpress/ui/sdviewpage.ui:62 @@ -9380,7 +9380,7 @@ #: sd/uiconfig/simpress/ui/sdviewpage.ui:70 msgctxt "extended_tip|handlesbezier" msgid "Displays the control points of all Bézier points if you have previously selected a Bézier curve. If the All control points in Bézier editor option is not marked, only the control points of the selected Bézier points will be visible." -msgstr "Menampilkan titik kendali untuk semua titik Bézier jika Anda sebelumnya telah memilih kurva Bézier. Jika pilihan penyunting Seluruh titik kendali pada Bézier tidak ditandai, hanya titik kendali dari titik Bézier yang dipilih akan terlihat." +msgstr "Menayangkan titik kendali untuk semua titik Bézier jika Anda sebelumnya telah memilih kurva Bézier. Jika pilihan penyunting Seluruh titik kendali pada Bézier tidak ditandai, hanya titik kendali dari titik Bézier yang dipilih akan terlihat." #. hz6x7 #: sd/uiconfig/simpress/ui/sdviewpage.ui:82 @@ -9392,19 +9392,19 @@ #: sd/uiconfig/simpress/ui/sdviewpage.ui:90 msgctxt "extended_tip|moveoutline" msgid "The contour line of each individual object is displayed when moving this object." -msgstr "Garis kontur masing-masing objek ditampilkan saat menggerakkan objek ini." +msgstr "Garis kontur masing-masing objek ditayangkan saat menggerakkan objek ini." #. kJGzf #: sd/uiconfig/simpress/ui/sdviewpage.ui:106 msgctxt "sdviewpage|label1" msgid "Display" -msgstr "Tampilan" +msgstr "Tayangan" #. peBce #: sd/uiconfig/simpress/ui/sdviewpage.ui:114 msgctxt "extended_tip|SdViewPage" msgid "Specifies the available display modes." -msgstr "Menentukan modus tampilan yang tersedia." +msgstr "Menentukan modus tayangan yang tersedia." #. 7DgNY #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:38 @@ -9458,13 +9458,13 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:269 msgctxt "sidebarslidebackground|masterslidebutton" msgid "Master View" -msgstr "Tampilan Induk" +msgstr "Tilikan Induk" #. EVfaj #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:282 msgctxt "sidebarslidebackground|closemasterslide" msgid "Close Master View" -msgstr "Tutup Tampilan Induk" +msgstr "Tutup Tilikan Induk" #. SzLMK #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:313 @@ -9584,7 +9584,7 @@ #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:33 msgctxt "slidedesigndialog|extended_tip|load" msgid "Displays the Load Master Slide dialog, where you can select additional slide designs." -msgstr "Menampilkan dialog Muat Salindia Induk yang di mana Anda dapat memilih desain salindia tambahan." +msgstr "Menayangkan dialog Muat Salindia Induk yang di mana Anda dapat memilih desain salindia tambahan." #. RQGwn #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:114 @@ -9620,7 +9620,7 @@ #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:212 msgctxt "slidedesigndialog|extended_tip|SlideDesignDialog" msgid "Displays the Available Master Slides dialog, where you can select a layout scheme for the current slide. Any objects in the slide design are inserted behind objects in the current slide." -msgstr "Menampilkan dialog Salindia Master yang Tersedia yang di mana Anda dapat memilih skema tata letak untuk salindia saat ini. Objek apa pun yang ada dalam desain salindia akan disisipkan di belakang objek di salindia saat ini." +msgstr "Menayangkan dialog Salindia Induk yang Tersedia yang di mana Anda dapat memilih skema tata letak untuk salindia saat ini. Objek apa pun yang ada dalam desain salindia akan disisipkan di belakang objek di salindia saat ini." #. Zr5wz #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:59 @@ -9758,7 +9758,7 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:392 msgctxt "slidetransitionspanel|auto_preview" msgid "Automatic Preview" -msgstr "Pratinjau Otomatis" +msgstr "Pratilik Otomatis" #. DEDBU #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400 @@ -9776,19 +9776,19 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416 msgctxt "slidetransitionspanel|play|tooltip_text" msgid "Preview Effect" -msgstr "Pratinjau Efek" +msgstr "Pratilik Efek" #. HddiF #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423 msgctxt "slidetransitionspanel|extended_tip|play" msgid "Shows the current slide transition as a preview." -msgstr "Menampilkan transisi salindia saat ini sebagai pratinjau." +msgstr "Menampilkan transisi salindia saat ini sebagai pratilik." #. E9Xpn #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456 msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel" msgid "Defines the special effect that plays when you display a slide during a slide show." -msgstr "Menentukan efek khusus yang diputar ketika Anda menampilkan suatu salindia dalam suatu pertunjukan salindia." +msgstr "Menentukan efek khusus yang diputar ketika Anda menayangkan suatu salindia dalam suatu pertunjukan salindia." #. T99jN #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:24 @@ -9842,7 +9842,7 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:152 msgctxt "templatedialog|organizer" msgid "Organizer" -msgstr "Pengorganisasi" +msgstr "Pengelola" #. 5d7Zo #: sd/uiconfig/simpress/ui/templatedialog.ui:199 @@ -9860,7 +9860,7 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:295 msgctxt "templatedialog|shadowing" msgid "Shadowing" -msgstr "Bayangan" +msgstr "Pembayangan" #. Wuy8t #: sd/uiconfig/simpress/ui/templatedialog.ui:343 diff -Nru libreoffice-7.4.6/translations/source/id/sfx2/classification.po libreoffice-7.4.7/translations/source/id/sfx2/classification.po --- libreoffice-7.4.6/translations/source/id/sfx2/classification.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/sfx2/classification.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-07-01 17:54+0200\n" -"PO-Revision-Date: 2021-07-30 15:39+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2023-04-04 21:33+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.6.2\n" +"X-Generator: Weblate 4.15.2\n" #. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification #. TEpY4 @@ -93,7 +93,7 @@ "BAC_VisualMarkingPart_Conf_Footer\n" "LngText.text" msgid "This content is marked Confidential. Do not distribute it externally without business approval." -msgstr "Konten ini ditandai Konfidensial. Jangan mendistribusikan itu ke eksternal tanpa persetujuan bisnis." +msgstr "Konten ini ditandai Konfidensial. Jangan mendistribusikannya ke eksternal tanpa persetujuan bisnis." #. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification #. e9jBi @@ -133,7 +133,7 @@ "BAC_VisualMarkingPart_IO_Footer\n" "LngText.text" msgid "This content is marked Internal Only. Do not distribute it outside of the business." -msgstr "Konten ini ditandai Hanya Internal. Jangan mendistribusikan itu di luar dari bisnis." +msgstr "Konten ini ditandai Hanya Internal. Jangan mendistribusikannya di luar dari kepentingan." #. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification #. G5zDf @@ -143,4 +143,4 @@ "BAC_VisualMarkingPart_IO_Watermark\n" "LngText.text" msgid "This content is marked Internal Only. Do not distribute it outside of the business." -msgstr "Konten ini ditandai Hanya Internal. Jangan mendistribusikan itu di luar dari bisnis." +msgstr "Konten ini ditandai Hanya Internal. Jangan mendistribusikannya di luar dari kepentingan." diff -Nru libreoffice-7.4.6/translations/source/id/sfx2/messages.po libreoffice-7.4.7/translations/source/id/sfx2/messages.po --- libreoffice-7.4.6/translations/source/id/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2022-07-12 03:33+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563639732.000000\n" #. bHbFE @@ -80,7 +80,7 @@ #: include/sfx2/strings.hrc:35 msgctxt "STR_SFX_RENAME" msgid "~Rename" -msgstr "~Ganti Nama" +msgstr "~Nama Ulang" #. Gnhk4 #: include/sfx2/strings.hrc:36 @@ -555,7 +555,7 @@ #: include/sfx2/strings.hrc:109 msgctxt "STR_GID_VIEW" msgid "View" -msgstr "Tampilan" +msgstr "Tilikan" #. NQnym #: include/sfx2/strings.hrc:110 @@ -942,7 +942,7 @@ #: include/sfx2/strings.hrc:169 msgctxt "RID_SVXSTR_GRFILTER_FILTERERROR" msgid "Image filter not found" -msgstr "Penyaring gambar tak ditemukan" +msgstr "Penapis citra tak ditemukan" #. huEFV #: include/sfx2/strings.hrc:170 @@ -1009,7 +1009,7 @@ "The selected filter $(FILTER) has not been installed.\n" "Would you like to do this now?" msgstr "" -"Penyaring $(FILTER) yang dipilih belum terpasang.\n" +"Penapis $(FILTER) yang dipilih belum terpasang.\n" "Apakah Anda hendak memasangnya sekarang?" #. gQhYY @@ -1019,7 +1019,7 @@ "The selected filter $(FILTER) is not included in your edition.\n" "You can find information about orders on our homepage." msgstr "" -"Penyaring $(FILTER) yang dipilih tidak termasuk pada edisi Anda.\n" +"Penapis $(FILTER) yang dipilih tidak termasuk pada edisi Anda.\n" "Anda bisa menemukan informasi untuk pemesanannya di situs kami." #. Y9yeS @@ -1982,13 +1982,13 @@ #: include/sfx2/strings.hrc:356 msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE" msgid "Rename" -msgstr "Ganti Nama" +msgstr "Nama Ulang" #. EyjE3 #: include/sfx2/strings.hrc:357 msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY" msgid "Rename Category" -msgstr "Ganti Nama Kategori" +msgstr "Nama Ulang Kategori" #. T79Eb #: include/sfx2/strings.hrc:358 @@ -2871,7 +2871,7 @@ #: sfx2/uiconfig/ui/bookmarkdialog.ui:83 msgctxt "bookmarkdialog|alttitle" msgid "Rename Bookmark" -msgstr "Ganti Nama Markah" +msgstr "Nama Ulang Markah" #. Fq2rD #: sfx2/uiconfig/ui/bookmarkdialog.ui:102 @@ -2883,13 +2883,13 @@ #: sfx2/uiconfig/ui/bookmarkmenu.ui:12 msgctxt "bookmarkmenu|display" msgid "Display" -msgstr "Tampilan" +msgstr "Tayangan" #. VDDCt #: sfx2/uiconfig/ui/bookmarkmenu.ui:26 msgctxt "bookmarkmenu|rename" msgid "Rename..." -msgstr "Ganti Nama..." +msgstr "Nama Ulang..." #. fCQ9n #: sfx2/uiconfig/ui/bookmarkmenu.ui:34 @@ -3087,7 +3087,7 @@ #: sfx2/uiconfig/ui/developmenttool.ui:128 msgctxt "developmenttool|dom_refresh_button-tooltip" msgid "Refresh Document Model Tree View" -msgstr "Muat Ulang Tampilan Pohon Model Dokumen" +msgstr "Muat Ulang Tilikan Pohon Model Dokumen" #. FD2yt #: sfx2/uiconfig/ui/developmenttool.ui:129 @@ -3383,13 +3383,13 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:366 msgctxt "documentinfopage|extended_tip|nameed" msgid "Displays the file name." -msgstr "Menampilkan nama berkas." +msgstr "Menayangkan nama berkas." #. LCDUj #: sfx2/uiconfig/ui/documentinfopage.ui:397 msgctxt "documentinfopage|thumbnailsavecb" msgid "Save preview image with this document" -msgstr "Simpan citra pratinjau dengan dokumen ini" +msgstr "Simpan citra Pratilik dengan dokumen ini" #. 2GKBr #: sfx2/uiconfig/ui/documentinfopage.ui:415 @@ -3563,7 +3563,7 @@ #: sfx2/uiconfig/ui/helpbookmarkpage.ui:83 msgctxt "helpbookmarkpage|display" msgid "_Display" -msgstr "_Tampilan" +msgstr "_Tayangan" #. S7ppr #: sfx2/uiconfig/ui/helpcontrol.ui:77 @@ -3593,7 +3593,7 @@ #: sfx2/uiconfig/ui/helpindexpage.ui:30 msgctxt "helpindexpage|display" msgid "_Display" -msgstr "_Tampilan" +msgstr "_Tayangan" #. 4MkAM #: sfx2/uiconfig/ui/helpindexpage.ui:116 @@ -3635,7 +3635,7 @@ #: sfx2/uiconfig/ui/helpsearchpage.ui:30 msgctxt "helpsearchpage|display" msgid "_Display" -msgstr "_Tampilkan" +msgstr "_Tayangan" #. JDsn3 #: sfx2/uiconfig/ui/helpsearchpage.ui:46 @@ -3977,7 +3977,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:419 msgctxt "loadtemplatedialog|extended_tip|expander" msgid "Shows or hides a preview of a selected template." -msgstr "Menampilkan atau menyembunyikan pratinjau dari suatu templat yang dipilih." +msgstr "Menampilkan atau menyembunyikan pratilik dari suatu templat terpilih." #. CRcca #: sfx2/uiconfig/ui/loadtemplatedialog.ui:449 @@ -4937,13 +4937,13 @@ #: sfx2/uiconfig/ui/templatedlg.ui:180 msgctxt "templatedlg|extended_tip|action_menu" msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager." -msgstr "Menyediakan perintah untuk membuat, mengganti nama dan menghapus kategori, mengatur ulang templat baku, dan memuat ulang pengelola templat." +msgstr "Menyediakan perintah untuk membuat, menamai ulang dan menghapus kategori, mengatur ulang templat baku, dan memuat ulang pengelola templat." #. fXVNY #: sfx2/uiconfig/ui/templatedlg.ui:207 msgctxt "templatedlg|filter_application|tooltip_text" msgid "Filter by Application" -msgstr "Saring menurut Aplikasi" +msgstr "Tapis berdasarkan Aplikasi" #. tqVhJ #: sfx2/uiconfig/ui/templatedlg.ui:209 @@ -4979,7 +4979,7 @@ #: sfx2/uiconfig/ui/templatedlg.ui:227 msgctxt "templatedlg|filter_folder|tooltip_text" msgid "Filter by Category" -msgstr "Saring menurut Kategori" +msgstr "Tapis berdasarkan Kategori" #. 93CGw #: sfx2/uiconfig/ui/templatedlg.ui:229 @@ -4991,7 +4991,7 @@ #: sfx2/uiconfig/ui/templatedlg.ui:250 msgctxt "templatedlg|label1" msgid "Filter" -msgstr "Penyaring" +msgstr "Penapis" #. ewTL3 #: sfx2/uiconfig/ui/templatedlg.ui:356 @@ -5033,13 +5033,13 @@ #: sfx2/uiconfig/ui/templatedlg.ui:463 msgctxt "templatedlg|thumbnail_view_btn|tooltip_text" msgid "Thumbnail View" -msgstr "Tampilan Keluku" +msgstr "Tilikan Keluku" #. j76ke #: sfx2/uiconfig/ui/templatedlg.ui:480 msgctxt "templatedlg|list_view_btn|tooltip_text" msgid "List View" -msgstr "Tampilan Senarai" +msgstr "Tilikan Senarai" #. pm89q #: sfx2/uiconfig/ui/templatepanel.ui:127 @@ -5075,7 +5075,7 @@ #: sfx2/uiconfig/ui/templatepanel.ui:280 msgctxt "commontemplate|STR_PREVIEW_CHECKBOX" msgid "Show previews" -msgstr "Tampilkan pratinjau" +msgstr "Tampilkan pratilik" #. p9AWW #: sfx2/uiconfig/ui/versioncommentdialog.ui:8 @@ -5177,7 +5177,7 @@ #: sfx2/uiconfig/ui/versionsofdialog.ui:91 msgctxt "versionsofdialog|extended_tip|show" msgid "Displays the entire comment for the selected version." -msgstr "Menampilkan seluruh komentar untuk versi yang dipilih." +msgstr "Menayangkan seluruh komentar untuk versi terpilih." #. E8yNH #: sfx2/uiconfig/ui/versionsofdialog.ui:119 diff -Nru libreoffice-7.4.6/translations/source/id/starmath/messages.po libreoffice-7.4.7/translations/source/id/starmath/messages.po --- libreoffice-7.4.6/translations/source/id/starmath/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/starmath/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:51+0200\n" -"PO-Revision-Date: 2022-01-28 13:38+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563273064.000000\n" #. GrDhX @@ -2810,7 +2810,7 @@ #: starmath/uiconfig/smath/ui/catalogdialog.ui:205 msgctxt "catalogdialog|extended_tip|preview" msgid "Displays a preview of the current selection." -msgstr "Menampilkan pratinjau dari pemilihan saat ini." +msgstr "Menayangkan pratilik dari pemilihan saat ini." #. DSYgZ #: starmath/uiconfig/smath/ui/catalogdialog.ui:246 @@ -3729,7 +3729,7 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:253 msgctxt "symdefinedialog|extended_tip|add" msgid "Click this button to add the symbol shown in the right preview window to the current symbol set." -msgstr "Klik tombol ini untuk menambah simbol yang ditampilkan pada kotak pratinjau sebelah kiri ke dalam kelompok simbol yang sedang dipilih saat itu." +msgstr "Klik tombol ini untuk menambah simbol yang ditampilkan pada kotak pratilik sebelah kiri ke dalam kelompok simbol yang sedang dipilih saat itu." #. CGCTr #: starmath/uiconfig/smath/ui/symdefinedialog.ui:265 @@ -3741,13 +3741,13 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:272 msgctxt "symdefinedialog|extended_tip|modify" msgid "Click this button to replace the name of the symbol shown in the left preview window (the old name is displayed in the Old symbol list box) with the new name you have entered in the Symbol list box." -msgstr "Klik tombol ini untuk mengganti nama simbol yang ditampilkan pada kotak pratinjau di sebelah kiri (nama lama ditampilkan pada kotak senarai Simbol lama) dengan nama baru yang telah Anda tentukan pada kotak senarai Simbol." +msgstr "Klik tombol ini untuk mengganti nama simbol yang ditilikkan pada kotak pratilik di sebelah kiri (nama lama ditayangkan pada kotak senarai simbol Lama) dengan nama baru yang telah Anda tentukan pada kotak senarai Simbol." #. 3GfeR #: starmath/uiconfig/smath/ui/symdefinedialog.ui:291 msgctxt "symdefinedialog|extended_tip|delete" msgid "Click to remove the symbol shown in the left preview window from the current symbol set." -msgstr "Klik untuk menghapus simbol yang ditampilkan pada kotak pratinjau di sebelah kiri dari kelompok yang dipilih." +msgstr "Klik untuk menghapus simbol yang ditampilkan pada kotak pratilik di sebelah kiri dari himpunan simbol saat ini." #. jwzjd #: starmath/uiconfig/smath/ui/symdefinedialog.ui:332 @@ -3783,13 +3783,13 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:406 msgctxt "symdefinedialog|extended_tip|fonts" msgid "Displays the name of the current font and enables you to select a different font." -msgstr "Menampilkan nama fonta yang sedang dipakai, serta dapat Anda ubah untuk memilih fonta yang lain." +msgstr "Menayangkan nama fonta yang sedang dipakai dan Anda dapat memilih fonta yang lain." #. UEdYh #: starmath/uiconfig/smath/ui/symdefinedialog.ui:423 msgctxt "symdefinedialog|extended_tip|fontsSubsetLB" msgid "If you selected a non-symbol font in the Font list box, you can select a Unicode subset in which to place your new or edited symbol. When a subset has been selected, all symbols belonging to this subset of the current symbol set are displayed in the symbols list above." -msgstr "Apabila Anda memilih fonta nonsimbol pada kotak senarai Fonta, Anda bisa memilih subset Unikode untuk menempatkan simbol yang telah Anda ubah atau simbol yang baru. Setelah subset terpilih, semua simbol yang terdapat pada subset itu akan ditampilkan pada senarai simbol di atasnya." +msgstr "Apabila Anda memilih fonta nonsimbol pada kotak senarai Fonta, Anda bisa memilih subset Unikode untuk menempatkan simbol yang telah Anda ubah atau simbol yang baru. Setelah subset terpilih, semua simbol yang terdapat pada subset itu akan ditayangkan pada senarai simbol di atasnya." #. 8XjkA #: starmath/uiconfig/smath/ui/symdefinedialog.ui:448 @@ -3807,7 +3807,7 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:490 msgctxt "symdefinedialog|extended_tip|styles" msgid "The current typeface is displayed. You can change the typeface by selecting one from the list box." -msgstr "Jenis huruf saat ini ditampilkan. Anda bisa mengubahnya dengan memilih salah satu jenis tampilan dari kotak senarai yang tersedia." +msgstr "Jenis huruf saat ini ditayangkan. Anda bisa mengubahnya dengan memilih salah satu jenis dari kotak senarai yang tersedia." #. zBbJC #: starmath/uiconfig/smath/ui/symdefinedialog.ui:646 diff -Nru libreoffice-7.4.6/translations/source/id/svtools/messages.po libreoffice-7.4.7/translations/source/id/svtools/messages.po --- libreoffice-7.4.6/translations/source/id/svtools/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/svtools/messages.po 2023-05-03 15:22:13.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-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" +"Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563273342.000000\n" #. fLdeV @@ -2526,7 +2526,7 @@ #: svtools/inc/errtxt.hrc:134 msgctxt "RID_ERRHDL" msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator." -msgstr "Penyaring untuk format berkas ini dinonaktifkan dalam konfigurasi. Harap hubungi administrator sistem Anda." +msgstr "Penapis untuk format berkas ini dinonaktifkan dalam konfigurasi. Harap hubungi administrator sistem Anda." #. WZiDE #: svtools/inc/errtxt.hrc:140 @@ -5118,7 +5118,7 @@ #: svtools/uiconfig/ui/fileviewmenu.ui:20 msgctxt "fileviewmenu|rename" msgid "_Rename" -msgstr "_Ganti Nama" +msgstr "_Nama ulang" #. puJ5X #: svtools/uiconfig/ui/graphicexport.ui:51 @@ -5376,13 +5376,13 @@ #: svtools/uiconfig/ui/graphicexport.ui:730 msgctxt "graphicexport|tiffpreviewcb" msgid "Image preview (TIFF)" -msgstr "Pratinjau gambar (TIFF)" +msgstr "Pratilik gambar (TIFF)" #. H8vtD #: svtools/uiconfig/ui/graphicexport.ui:739 msgctxt "graphicexport|extended_tip|tiffpreviewcb" msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file." -msgstr "Menyatakan apakah citra pratinjau diekspor dalam format TIFF bersamaan dengan berkas PostScript sebenarnyai." +msgstr "Menyatakan apakah citra pratilik diekspor dalam format TIFF bersamaan dengan berkas PostScript sebenarnya." #. AeEJu #: svtools/uiconfig/ui/graphicexport.ui:750 @@ -5394,13 +5394,13 @@ #: svtools/uiconfig/ui/graphicexport.ui:758 msgctxt "graphicexport|extended_tip|epsipreviewcb" msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code." -msgstr "Menyatakan apakah grafis pratinjau monokrom dalam format EPSI diekspor bersamaan dengan berkas PostScript. Format ini hanya memuat karakter yang dapat dicetak dari kode ASCII 7-bit." +msgstr "Menyatakan apakah grafis pratilik monokrom dalam format EPSI diekspor bersamaan dengan berkas PostScript. Format ini hanya memuat karakter yang dapat dicetak dari kode ASCII 7-bit." #. sRbZb #: svtools/uiconfig/ui/graphicexport.ui:773 msgctxt "graphicexport|label17" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. Jfbgx #: svtools/uiconfig/ui/graphicexport.ui:800 diff -Nru libreoffice-7.4.6/translations/source/id/svx/messages.po libreoffice-7.4.7/translations/source/id/svx/messages.po --- libreoffice-7.4.6/translations/source/id/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2022-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565578186.000000\n" #. 3GkZj @@ -662,13 +662,13 @@ #: include/svx/strings.hrc:132 msgctxt "STR_ObjNameSingulPAGE" msgid "Preview object" -msgstr "Pratinjau objek" +msgstr "Pratilik objek" #. UCECt #: include/svx/strings.hrc:133 msgctxt "STR_ObjNamePluralPAGE" msgid "Preview objects" -msgstr "Pratinjau objek" +msgstr "Pratilik objek" #. GCVKi #: include/svx/strings.hrc:134 @@ -1967,73 +1967,73 @@ #: include/svx/strings.hrc:352 msgctxt "SIP_XA_FORMTXTSTYLE" msgid "Fontwork style" -msgstr "Gaya Fontwork" +msgstr "Gaya Seni Fonta" #. qMnRZ #: include/svx/strings.hrc:353 msgctxt "SIP_XA_FORMTXTADJUST" msgid "Fontwork alignment" -msgstr "Perataan Fontwork" +msgstr "Perataan Seni Fonta" #. fpGEZ #: include/svx/strings.hrc:354 msgctxt "SIP_XA_FORMTXTDISTANCE" msgid "Fontwork spacing" -msgstr "Spasi Fontwork" +msgstr "Spasi Seni Fonta" #. CUBXL #: include/svx/strings.hrc:355 msgctxt "SIP_XA_FORMTXTSTART" msgid "Fontwork font begin" -msgstr "Karakter awal Fontwork" +msgstr "Karakter awal Seni Fonta" #. JSVHo #: include/svx/strings.hrc:356 msgctxt "SIP_XA_FORMTXTMIRROR" msgid "Fontwork mirror" -msgstr "Cermin Fontwork" +msgstr "Cermin Seni Fonta" #. P5W29 #: include/svx/strings.hrc:357 msgctxt "SIP_XA_FORMTXTOUTLINE" msgid "Fontwork outline" -msgstr "Kerangka Fontwork" +msgstr "Kerangka Seni Fonta" #. LKCDD #: include/svx/strings.hrc:358 msgctxt "SIP_XA_FORMTXTSHADOW" msgid "Fontwork shadow" -msgstr "Bayangan Fontwork" +msgstr "Bayangan Seni Fonta" #. oDiYn #: include/svx/strings.hrc:359 msgctxt "SIP_XA_FORMTXTSHDWCOLOR" msgid "Fontwork shadow color" -msgstr "Warna bayangan Fontwork" +msgstr "Warna bayangan Seni Fonta" #. sFLRA #: include/svx/strings.hrc:360 msgctxt "SIP_XA_FORMTXTSHDWXVAL" msgid "Fontwork shadow offset X" -msgstr "Offset X dari bayangan Fontwork" +msgstr "Offset X dari bayangan Seni Fonta" #. daERW #: include/svx/strings.hrc:361 msgctxt "SIP_XA_FORMTXTSHDWYVAL" msgid "Fontwork shadow offset Y" -msgstr "Offset Y dari bayangan Fontwork" +msgstr "Offset Y dari bayangan Seni Fonta" #. LdeJZ #: include/svx/strings.hrc:362 msgctxt "SIP_XA_FORMTXTHIDEFORM" msgid "Hide fontwork outline" -msgstr "Sembunyikan kerangka Fontwork" +msgstr "Sembunyikan kerangka Seni Fonta" #. 3sPPg #: include/svx/strings.hrc:363 msgctxt "SIP_XA_FORMTXTSHDWTRANSP" msgid "Fontwork shadow transparency" -msgstr "Transparansi bayangan Fontwork" +msgstr "Transparansi bayangan Seni Fonta" #. q6MHs #: include/svx/strings.hrc:364 @@ -2741,7 +2741,7 @@ #: include/svx/strings.hrc:481 msgctxt "SIP_EE_PARA_BULLETSTATE" msgid "Display bullets" -msgstr "Tampilkan bulatan" +msgstr "Tayangkan bulatan" #. 8Q88u #: include/svx/strings.hrc:482 @@ -5786,7 +5786,7 @@ #: include/svx/strings.hrc:1042 msgctxt "RID_SVXSTR_GALLERY_FILTER" msgid "Graphics filter" -msgstr "Penyaring grafik" +msgstr "Penapis grafik" #. YNjeD #: include/svx/strings.hrc:1043 @@ -5948,7 +5948,7 @@ #: include/svx/strings.hrc:1070 msgctxt "RID_GALLERYSTR_THEME_KEYBOARD" msgid "Keyboard" -msgstr "Papan Ketik" +msgstr "Papan Tik" #. LYdAf #: include/svx/strings.hrc:1071 @@ -6471,25 +6471,25 @@ #: include/svx/strings.hrc:1164 msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE" msgid "Apply Fontwork Shape" -msgstr "Menerapkan Bentuk Fontwork" +msgstr "Menerapkan Bentuk Seni Fonta" #. h3CLw #: include/svx/strings.hrc:1165 msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT" msgid "Apply Fontwork Same Letter Heights" -msgstr "Menerapkan Karakter Sama Tinggi Fontwork" +msgstr "Menerapkan Huruf Sama Tinggi Seni Fonta" #. 6h2dG #: include/svx/strings.hrc:1166 msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT" msgid "Apply Fontwork Alignment" -msgstr "Menerapkan Perataan Fontwork" +msgstr "Menerapkan Perataan Seni Fonta" #. eKHcV #: include/svx/strings.hrc:1167 msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING" msgid "Apply Fontwork Character Spacing" -msgstr "Menerapkan Jarak Antarkarakter Fontwork" +msgstr "Menerapkan Jarak Antarkarakter Seni Fonta" #. oo88Y #: include/svx/strings.hrc:1169 @@ -6934,13 +6934,13 @@ #: include/svx/strings.hrc:1249 msgctxt "RID_STR_FILTER_NAVIGATOR" msgid "Filter navigator" -msgstr "Navigator penyaring" +msgstr "Navigator penapis" #. BUYuD #: include/svx/strings.hrc:1250 msgctxt "RID_STR_FILTER_FILTER_FOR" msgid "Filter for" -msgstr "Penyaring untuk" +msgstr "Penapis untuk" #. AcTBB #: include/svx/strings.hrc:1251 @@ -6952,7 +6952,7 @@ #: include/svx/strings.hrc:1252 msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY" msgid "Valid bound controls which can be used in the table view do not exist in the current form." -msgstr "Kendali yang disertakan secara sah yang dapat dipakai dalam tampilan tabel tidak tersedia dalam formulir ini." +msgstr "Kendali yang disertakan secara sah yang dapat dipakai dalam tilikan tabel tidak tersedia dalam formulir ini." #. iEoGb #: include/svx/strings.hrc:1253 @@ -7006,7 +7006,7 @@ #: include/svx/strings.hrc:1261 msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS" msgid "The database already contains a table or view with name \"#\"." -msgstr "Basis data sudah mempunyai tabel atau tampilan bernama \"#\"." +msgstr "Basis data sudah mempunyai tabel atau tilikan bernama \"#\"." #. cECTG #: include/svx/strings.hrc:1262 @@ -7493,7 +7493,7 @@ #: include/svx/strings.hrc:1343 msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW" msgid "Optimal View" -msgstr "Tampilan Optimal" +msgstr "Tilikan Optimal" #. Wi5Fy #: include/svx/strings.hrc:1345 @@ -7805,7 +7805,7 @@ #: include/svx/strings.hrc:1404 msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED" msgid "Formatted Display" -msgstr "Tampilan Terformat" +msgstr "Tayangan Terformat" #. hAmnh #: include/svx/strings.hrc:1406 @@ -13004,19 +13004,19 @@ #: svx/uiconfig/ui/addconditiondialog.ui:8 msgctxt "addconditiondialog|AddConditionDialog" msgid "Add Condition" -msgstr "Tambah Kondisi" +msgstr "Tambah Syarat" #. zVZ7P #: svx/uiconfig/ui/addconditiondialog.ui:88 msgctxt "addconditiondialog|label1" msgid "_Condition:" -msgstr "_Kondisi:" +msgstr "_Syarat:" #. CBWg9 #: svx/uiconfig/ui/addconditiondialog.ui:114 msgctxt "addconditiondialog|extended_tip|condition" msgid "Enter a condition." -msgstr "Masukkan sebuah kondisi." +msgstr "Masukkan sebuah syarat." #. GztAA #: svx/uiconfig/ui/addconditiondialog.ui:144 @@ -13040,13 +13040,13 @@ #: svx/uiconfig/ui/addconditiondialog.ui:191 msgctxt "addconditiondialog|extended_tip|result" msgid "Displays a preview of the result." -msgstr "Menampilkan pratinjau hasil." +msgstr "Menayangkan pratilik hasil." #. obZQs #: svx/uiconfig/ui/addconditiondialog.ui:221 msgctxt "addconditiondialog|extended_tip|AddConditionDialog" msgid "Add a condition in this subdialog of the Add Item / Edit Item dialog of the Data Navigator." -msgstr "Tambahkan kondisi di subdialog ini dari dialog Tambah Item / Sunting Item pada Navigator Data." +msgstr "Tambahkan syarat di subdialog ini dari dialog Tambah Item / Sunting Item pada Navigator Data." #. AVvdB #: svx/uiconfig/ui/adddataitemdialog.ui:100 @@ -13112,7 +13112,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:258 msgctxt "adddataitemdialog|requiredcond" msgid "Condition" -msgstr "Kondisi" +msgstr "Syarat" #. ZmXJi #: svx/uiconfig/ui/adddataitemdialog.ui:266 @@ -13136,7 +13136,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:296 msgctxt "adddataitemdialog|relevantcond" msgid "Condition" -msgstr "Kondisi" +msgstr "Syarat" #. ZzhU6 #: svx/uiconfig/ui/adddataitemdialog.ui:304 @@ -13184,7 +13184,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:372 msgctxt "adddataitemdialog|constraintcond" msgid "Condition" -msgstr "Kondisi" +msgstr "Syarat" #. HFeZa #: svx/uiconfig/ui/adddataitemdialog.ui:380 @@ -13196,7 +13196,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:391 msgctxt "adddataitemdialog|readonlycond" msgid "Condition" -msgstr "Kondisi" +msgstr "Syarat" #. DvGPL #: svx/uiconfig/ui/adddataitemdialog.ui:399 @@ -13208,7 +13208,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:410 msgctxt "adddataitemdialog|calculatecond" msgid "Condition" -msgstr "Kondisi" +msgstr "Syarat" #. F6JBe #: svx/uiconfig/ui/adddataitemdialog.ui:418 @@ -13400,13 +13400,13 @@ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:154 msgctxt "asianphoneticguidedialog|extended_tip|Left2ED" msgid "Displays the base text that you selected in the current file. If you want, you can modify the base text by entering new text here." -msgstr "Menampilkan teks dasar yang Anda pilih dalam berkas saat ini. Jika mau, Anda dapat memodifikasi teks dasar dengan memasukkan teks baru di sini." +msgstr "Menayangkan teks dasar yang Anda pilih dalam berkas saat ini. Jika mau, Anda dapat mengubah teks dasar dengan memasukkan teks baru di sini." #. CgQBG #: svx/uiconfig/ui/asianphoneticguidedialog.ui:171 msgctxt "asianphoneticguidedialog|extended_tip|Left1ED" msgid "Displays the base text that you selected in the current file. If you want, you can modify the base text by entering new text here." -msgstr "Menampilkan teks dasar yang Anda pilih dalam berkas saat ini. Jika mau, Anda dapat memodifikasi teks dasar dengan memasukkan teks baru di sini." +msgstr "Menayangkan teks dasar yang Anda pilih dalam berkas saat ini. Jika mau, Anda dapat mengubah teks dasar dengan memasukkan teks baru di sini." #. NWo3X #: svx/uiconfig/ui/asianphoneticguidedialog.ui:189 @@ -13436,7 +13436,7 @@ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:225 msgctxt "asianphoneticguidedialog|extended_tip|Left3ED" msgid "Displays the base text that you selected in the current file. If you want, you can modify the base text by entering new text here." -msgstr "Menampilkan teks dasar yang Anda pilih dalam berkas saat ini. Jika mau, Anda dapat memodifikasi teks dasar dengan memasukkan teks baru di sini." +msgstr "Menayangkan teks dasar yang Anda pilih dalam berkas saat ini. Jika mau, Anda dapat mengubah teks dasar dengan memasukkan teks baru di sini." #. 7JS7K #: svx/uiconfig/ui/asianphoneticguidedialog.ui:242 @@ -13472,7 +13472,7 @@ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:279 msgctxt "asianphoneticguidedialog|extended_tip|Left4ED" msgid "Displays the base text that you selected in the current file. If you want, you can modify the base text by entering new text here." -msgstr "Menampilkan teks dasar yang Anda pilih dalam berkas saat ini. Jika mau, Anda dapat memodifikasi teks dasar dengan memasukkan teks baru di sini." +msgstr "Menayangkan teks dasar yang Anda pilih dalam berkas saat ini. Jika mau, Anda dapat mengubah teks dasar dengan memasukkan teks baru di sini." #. opK8r #: svx/uiconfig/ui/asianphoneticguidedialog.ui:317 @@ -13574,7 +13574,7 @@ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:446 msgctxt "asianphoneticguidedialog|label1" msgid "Preview:" -msgstr "Pratinjau:" +msgstr "Pratilik:" #. HG9Rn #: svx/uiconfig/ui/asianphoneticguidedialog.ui:503 @@ -13976,7 +13976,7 @@ #: svx/uiconfig/ui/classificationdialog.ui:382 msgctxt "classificationdialog|extended_tip|classiticationEditWindow" msgid "Displays the current classification terms of the document or paragraph." -msgstr "Menampilkan istilah klasifikasi saat ini dari dokumen atau paragraf." +msgstr "Menayangkan istilah klasifikasi saat ini dari dokumen atau paragraf." #. cDs9q #: svx/uiconfig/ui/classificationdialog.ui:418 @@ -14366,7 +14366,7 @@ #: svx/uiconfig/ui/datanavigator.ui:61 msgctxt "datanavigator|extended_tip|instancesdetails" msgid "Switches the display to show or hide details." -msgstr "Alihkan tampilan untuk menampilkan atau menyembunyikan rincian." +msgstr "Alihkan tayangan untuk menilikkan atau menyembunyikan rincian." #. rMqsT #: svx/uiconfig/ui/datanavigator.ui:74 @@ -14420,7 +14420,7 @@ #: svx/uiconfig/ui/datanavigator.ui:162 msgctxt "datanavigator|extended_tip|modelsbutton" msgid "Adds, renames, and removes XForms models." -msgstr "Menambah, mengganti nama, dan menghapus model XForms." +msgstr "Menambah, menamai ulang, dan menghapus model XForms." #. BF3zW #: svx/uiconfig/ui/datanavigator.ui:224 @@ -14684,7 +14684,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:594 msgctxt "docking3deffects|extended_tip|flat" msgid "Renders the 3D surface as polygons." -msgstr "Membuat permukaan 3D sebagai poligon." +msgstr "Merender permukaan 3D sebagai poligon." #. aLmTz #: svx/uiconfig/ui/docking3deffects.ui:608 @@ -14774,19 +14774,19 @@ #: svx/uiconfig/ui/docking3deffects.ui:799 msgctxt "docking3deffects|preview-atkobject" msgid "3D Preview" -msgstr "Pratinjau 3D" +msgstr "Pratilik 3D" #. snUGf #: svx/uiconfig/ui/docking3deffects.ui:832 msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text" msgid "Light Preview" -msgstr "Pratinjau Cahaya" +msgstr "Pratilik Cahaya" #. c86Xg #: svx/uiconfig/ui/docking3deffects.ui:837 msgctxt "docking3deffects|lightpreview-atkobject" msgid "Color Light Preview" -msgstr "Pratinjau Warna Cahaya" +msgstr "Pratilik Warna Cahaya" #. ysdwL #: svx/uiconfig/ui/docking3deffects.ui:924 @@ -15104,7 +15104,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1741 msgctxt "docking3deffects|label25" msgid "_Filtering" -msgstr "_Penyaringan" +msgstr "_Penapisan" #. Gq2zg #: svx/uiconfig/ui/docking3deffects.ui:1758 @@ -15230,7 +15230,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1979 msgctxt "docking3deffects|texfilter|tooltip_text" msgid "Filtering On/Off" -msgstr "Penyaringan Aktif/Tidak" +msgstr "Penapisan Aktif/Tidak" #. mMhpy #: svx/uiconfig/ui/docking3deffects.ui:1987 @@ -15386,7 +15386,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2344 msgctxt "docking3deffects|assign|tooltip_text" msgid "Assign" -msgstr "Berikan" +msgstr "Tugaskan" #. cjrJ9 #: svx/uiconfig/ui/docking3deffects.ui:2358 @@ -15678,7 +15678,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:552 msgctxt "dockingcolorreplace|extended_tip|toolgrid" msgid "Displays the color in the selected image that directly underlies the current mouse pointer position. This features only works if the Color Replacer tool is selected." -msgstr "Menampilkan warna dalam citra yang dipilih yang secara langsung dibawah posisi penunjuk tetikus saat ini. Fitur ini hanya bekerja jika perkakas Pengganti Warna yang dipilih." +msgstr "Menayangkan warna dalam citra yang dipilih yang secara langsung di bawah posisi penunjuk tetikus saat ini. Fitur ini hanya bekerja jika perkakas Pengganti Warna terpilih." #. gbska #: svx/uiconfig/ui/dockingcolorreplace.ui:568 @@ -16134,7 +16134,7 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:207 msgctxt "findreplacedialog-mobile|searchformatted" msgid "For_matted display" -msgstr "Tampilan terfor_mat" +msgstr "Tayangan terfor_mat" #. 3KibH #: svx/uiconfig/ui/findreplacedialog-mobile.ui:226 @@ -16386,7 +16386,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:220 msgctxt "findreplacedialog|searchformatted" msgid "For_matted display" -msgstr "Tampilan terfor_mat" +msgstr "Tayangan terfor_mat" #. vzB7B #: svx/uiconfig/ui/findreplacedialog.ui:228 @@ -16842,7 +16842,7 @@ #: svx/uiconfig/ui/floatingcontour.ui:189 msgctxt "floatingcontour|extended_tip|TBI_WORKPLACE" msgid "Deletes the custom contour. Click here, and then click in the preview area." -msgstr "Hapus kontur khusus. Klik di sini, dan kemudian klik di wilayah pratinjau." +msgstr "Hapus kontur khusus. Klik di sini, kemudian klik di wilayah pratilik." #. qesJi #: svx/uiconfig/ui/floatingcontour.ui:212 @@ -17004,7 +17004,7 @@ #: svx/uiconfig/ui/floatingcontour.ui:497 msgctxt "floatingcontour|extended_tip|container" msgid "Displays a preview of the contour." -msgstr "Menampilkan pratinjau kontur." +msgstr "Menayangkan pratilik kontur." #. jNUEr #: svx/uiconfig/ui/floatingcontour.ui:528 @@ -17088,19 +17088,19 @@ #: svx/uiconfig/ui/fontworkgallerydialog.ui:16 msgctxt "fontworkgallerydialog|FontworkGalleryDialog" msgid "Fontwork Gallery" -msgstr "Galeri Fontwork" +msgstr "Galeri Seni Fonta" #. GB7pa #: svx/uiconfig/ui/fontworkgallerydialog.ui:99 msgctxt "fontworkgallerydialog|label1" msgid "Select a Fontwork style:" -msgstr "Pilih gaya Fontwork:" +msgstr "Pilih gaya Seni Fonta:" #. CVMKf #: svx/uiconfig/ui/fontworkspacingdialog.ui:14 msgctxt "fontworkspacingdialog|FontworkSpacingDialog" msgid "Fontwork Character Spacing" -msgstr "Jarak Antar Karakter Fontwork" +msgstr "Jarak Antar Karakter Seni Fonta" #. zqf9w #: svx/uiconfig/ui/fontworkspacingdialog.ui:83 @@ -17208,7 +17208,7 @@ #: svx/uiconfig/ui/formnavimenu.ui:80 msgctxt "formnavimenu|rename" msgid "_Rename" -msgstr "_Ganti Nama" +msgstr "_Nama Ulang" #. T7dN7 #: svx/uiconfig/ui/formnavimenu.ui:88 @@ -17292,7 +17292,7 @@ #: svx/uiconfig/ui/gallerymenu1.ui:34 msgctxt "gallerymenu1|rename" msgid "_Rename" -msgstr "_Ganti Nama" +msgstr "_Nama Ulang" #. rr7D5 #: svx/uiconfig/ui/gallerymenu1.ui:48 @@ -17322,7 +17322,7 @@ #: svx/uiconfig/ui/gallerymenu2.ui:40 msgctxt "gallerymenu2|preview" msgid "_Preview" -msgstr "_Pratinjau" +msgstr "_Pratilik" #. AbxBp #: svx/uiconfig/ui/gallerymenu2.ui:54 @@ -17658,7 +17658,7 @@ #: svx/uiconfig/ui/imapdialog.ui:495 msgctxt "imapdialog|extended_tip|text" msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser. This text is also used by assistive technologies" -msgstr "Masukkan teks yang ingin Anda tampilkan saat tetikus beristirahat pada hotspot di peramban. Teks ini juga digunakan oleh teknologi bantu." +msgstr "Masukkan teks yang ingin Anda tayangkan saat tetikus beristirahat pada hotspot di peramban. Teks ini juga digunakan oleh teknologi bantu." #. b8MfH #: svx/uiconfig/ui/imapdialog.ui:533 @@ -17682,7 +17682,7 @@ #: svx/uiconfig/ui/imapdialog.ui:597 msgctxt "imapdialog|extended_tip|container" msgid "Displays the image map, so that you can click and edit the hotspots." -msgstr "Menampilkan peta citra, jadi anda dapat mengklik dan menyunting hotspot." +msgstr "Menayangkan peta citra, jadi Anda dapat mengklik dan menyunting hotspot." #. FkpS8 #: svx/uiconfig/ui/imapdialog.ui:625 @@ -17796,7 +17796,7 @@ #: svx/uiconfig/ui/linkwarndialog.ui:14 msgctxt "linkwarndialog|LinkWarnDialog" msgid "This is dangerous if you move and/or rename the files. Do you want to embed the graphic instead?" -msgstr "Berbahaya bila Anda memindahkan dan/atau mengganti nama berkas. Apakah Anda ingin menanamkan grafik sebagai pengganti?" +msgstr "Berbahaya bila Anda memindahkan dan/atau menamai ulang berkas. Apakah Anda ingin menanamkan grafik sebagai pengganti?" #. zQ2fY #: svx/uiconfig/ui/linkwarndialog.ui:25 @@ -17946,7 +17946,7 @@ #: svx/uiconfig/ui/optgridpage.ui:97 msgctxt "extended_tip|gridvisible" msgid "Specifies whether to display the grid." -msgstr "Menentukan apakah akan menampilkan kisi." +msgstr "Menentukan apakah akan menayangkan kisi." #. qpLqx #: svx/uiconfig/ui/optgridpage.ui:112 @@ -18354,7 +18354,7 @@ #: svx/uiconfig/ui/presetmenu.ui:12 msgctxt "presetmenu|rename" msgid "Rename" -msgstr "Ganti Nama" +msgstr "Nama Ulang" #. j4qLg #: svx/uiconfig/ui/presetmenu.ui:20 @@ -18502,7 +18502,7 @@ #: svx/uiconfig/ui/redlinecontrol.ui:49 msgctxt "redlinecontrol|filter" msgid "Filter" -msgstr "Penyaring" +msgstr "Penapis" #. EEEtQ #: svx/uiconfig/ui/redlinefilterpage.ui:37 @@ -18514,7 +18514,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:45 msgctxt "redlinefilterpage|extended_tip|date" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "Menyaring senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." +msgstr "Menapis senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." #. EnyT2 #: svx/uiconfig/ui/redlinefilterpage.ui:56 @@ -18526,7 +18526,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:64 msgctxt "redlinefilterpage|extended_tip|author" msgid "Filters the list of changes according to the name of the author that you select from the list." -msgstr "Menyaring senarai perubahan sesuai nama dari pengarang yang Anda pilih dari senarai." +msgstr "Menapis senarai perubahan sesuai nama dari pengarang yang Anda pilih dari senarai." #. G36HS #: svx/uiconfig/ui/redlinefilterpage.ui:75 @@ -18538,7 +18538,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:86 msgctxt "redlinefilterpage|extended_tip|comment" msgid "Filters the comments of the changes according to the keyword(s) that you enter." -msgstr "Saring komentar dari perubahan sesuai kata kunci yang Anda masukkan." +msgstr "Menapis komentar dari perubahan sesuai kata kunci yang Anda masukkan." #. gPhYL #: svx/uiconfig/ui/redlinefilterpage.ui:106 @@ -18550,7 +18550,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:107 msgctxt "redlinefilterpage|extended_tip|commentedit" msgid "Filters the comments of the changes according to the keyword(s) that you enter." -msgstr "Saring komentar dari perubahan sesuai kata kunci yang Anda masukkan." +msgstr "Menapis komentar dari perubahan sesuai kata kunci yang Anda masukkan." #. 3joBm #: svx/uiconfig/ui/redlinefilterpage.ui:118 @@ -18562,7 +18562,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:126 msgctxt "redlinefilterpage|extended_tip|range" msgid "Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the Set Reference button (...)." -msgstr "Menyaring senarai perubahan sesuai dengan rentang sel yang Anda tentukan. Untuk memilih rentang sel di lembar Anda, klik tombol Atur Rujukan (...)." +msgstr "Menapis senarai perubahan sesuai dengan rentang sel yang Anda tentukan. Untuk memilih rentang sel di lembar Anda, klik tombol Atur Rujukan (...)." #. fdw75 #: svx/uiconfig/ui/redlinefilterpage.ui:147 @@ -18574,7 +18574,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:148 msgctxt "redlinefilterpage|extended_tip|actionlist" msgid "Filters the list of changes according to the type of change that you select in the Action box." -msgstr "Menyaring senarai perubahan sesuai dengan jenis perubahan yang Anda pilih di kotak Tindakan." +msgstr "Menapis senarai perubahan sesuai dengan jenis perubahan yang Anda pilih di kotak Tindakan." #. c4doe #: svx/uiconfig/ui/redlinefilterpage.ui:159 @@ -18586,7 +18586,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:167 msgctxt "redlinefilterpage|extended_tip|action" msgid "Filters the list of changes according to the type of change that you select in the Action box." -msgstr "Menyaring senarai perubahan sesuai dengan jenis perubahan yang Anda pilih di kotak Tindakan." +msgstr "Menapis senarai perubahan sesuai dengan jenis perubahan yang Anda pilih di kotak Tindakan." #. r9bBY #: svx/uiconfig/ui/redlinefilterpage.ui:188 @@ -18598,7 +18598,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:189 msgctxt "redlinefilterpage|extended_tip|authorlist" msgid "Filters the list of changes according to the name of the author that you select from the list." -msgstr "Menyaring senarai perubahan sesuai nama dari pengarang yang Anda pilih dari senarai." +msgstr "Menapis senarai perubahan sesuai nama dari pengarang yang Anda pilih dari senarai." #. mGrjp #: svx/uiconfig/ui/redlinefilterpage.ui:217 @@ -18610,7 +18610,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:218 msgctxt "redlinefilterpage|extended_tip|rangeedit" msgid "Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the Set Reference button (...)." -msgstr "Menyaring senarai perubahan sesuai dengan rentang sel yang Anda tentukan. Untuk memilih rentang sel di lembar Anda, klik tombol Atur Rujukan (...)." +msgstr "Menapis senarai perubahan sesuai dengan rentang sel yang Anda tentukan. Untuk memilih rentang sel di lembar Anda, klik tombol Atur Rujukan (...)." #. CcvJU #: svx/uiconfig/ui/redlinefilterpage.ui:235 @@ -18658,13 +18658,13 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:275 msgctxt "redlinefilterpage|datecond-atkobject" msgid "Date Condition" -msgstr "Kondisi Tanggal" +msgstr "Syarat Tanggal" #. qf5wZ #: svx/uiconfig/ui/redlinefilterpage.ui:276 msgctxt "redlinefilterpage|extended_tip|datecond" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "Menyaring senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." +msgstr "Menapis senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." #. Z2Wv3 #: svx/uiconfig/ui/redlinefilterpage.ui:299 @@ -18682,7 +18682,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:321 msgctxt "redlinefilterpage|extended_tip|startdate" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "Menyaring senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." +msgstr "Menapis senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." #. CyQhk #: svx/uiconfig/ui/redlinefilterpage.ui:342 @@ -18694,7 +18694,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:343 msgctxt "redlinefilterpage|extended_tip|starttime" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "Menyaring senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." +msgstr "Menapis senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." #. TbDDR #: svx/uiconfig/ui/redlinefilterpage.ui:358 @@ -18712,7 +18712,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:380 msgctxt "redlinefilterpage|extended_tip|enddate" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "Menyaring senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." +msgstr "Menapis senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." #. jbLhY #: svx/uiconfig/ui/redlinefilterpage.ui:401 @@ -18724,7 +18724,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:402 msgctxt "redlinefilterpage|extended_tip|endtime" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "Menyaring senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." +msgstr "Menapis senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." #. PAFLU #: svx/uiconfig/ui/redlinefilterpage.ui:417 @@ -18736,7 +18736,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:444 msgctxt "redlinefilterpage|extended_tip|RedlineFilterPage" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "Menyaring senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." +msgstr "Menapis senarai perubahan sesuai tanggal dan waktu yang Anda tentukan." #. p8TCX #: svx/uiconfig/ui/redlineviewpage.ui:70 svx/uiconfig/ui/redlineviewpage.ui:166 @@ -19386,7 +19386,7 @@ #: svx/uiconfig/ui/sidebargallery.ui:304 msgctxt "sidebargallery|RID_SVXSTR_GALLERY_ICONVIEW" msgid "Icon View" -msgstr "Tampilan Ikon" +msgstr "Tilikan Ikon" #. TZSrQ #: svx/uiconfig/ui/sidebargallery.ui:309 svx/uiconfig/ui/sidebargallery.ui:328 @@ -19398,7 +19398,7 @@ #: svx/uiconfig/ui/sidebargallery.ui:323 msgctxt "sidebargallery|RID_SVXSTR_GALLERY_LISTVIEW" msgid "Detailed View" -msgstr "Tampilan Rinci" +msgstr "Tilikan Rinci" #. YDmBa #: svx/uiconfig/ui/sidebargallery.ui:354 @@ -20251,7 +20251,7 @@ #: svx/uiconfig/ui/zoommenu.ui:16 msgctxt "zoommenu|extended_tip|page" msgid "Displays the entire page on your screen." -msgstr "Menampilkan seluruh halaman pada layar." +msgstr "Menayangkan seluruh halaman pada layar." #. gZGXQ #: svx/uiconfig/ui/zoommenu.ui:25 @@ -20263,19 +20263,19 @@ #: svx/uiconfig/ui/zoommenu.ui:29 msgctxt "zoommenu|extended_tip|width" msgid "Displays the complete width of the document page. The top and bottom edges of the page may not be visible." -msgstr "Menampilkan lebar komplet dari halaman dokumen. Tepi atas dan bawah halaman mungkin tidak terlihat." +msgstr "Menayangkan lebar lengkap dari halaman dokumen. Tepi atas dan bawah halaman mungkin tidak terlihat." #. ZQxa5 #: svx/uiconfig/ui/zoommenu.ui:38 msgctxt "zoommenu|optimal" msgid "Optimal View" -msgstr "Tampilan Optimal" +msgstr "Tilikan Optimal" #. Ya8B2 #: svx/uiconfig/ui/zoommenu.ui:42 msgctxt "zoommenu|extended_tip|optimal" msgid "Resizes the display to fit the width of the text in the document at the moment the command is started." -msgstr "Mengubah ukuran tampilan agar sesuai dengan lebar teks dalam dokumen saat perintah dimulai." +msgstr "Mengubah ukuran tayangan agar sesuai dengan lebar teks dalam dokumen saat perintah dimulai." #. tMYhp #: svx/uiconfig/ui/zoommenu.ui:51 @@ -20299,7 +20299,7 @@ #: svx/uiconfig/ui/zoommenu.ui:71 msgctxt "zoommenu|extended_tip|100" msgid "Displays the document at its actual size." -msgstr "Menampilkan dokumen pada ukuran sebenarnya." +msgstr "Menayangkan dokumen pada ukuran sebenarnya." #. DjAKP #: svx/uiconfig/ui/zoommenu.ui:80 diff -Nru libreoffice-7.4.6/translations/source/id/sw/messages.po libreoffice-7.4.7/translations/source/id/sw/messages.po --- libreoffice-7.4.6/translations/source/id/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/sw/messages.po 2023-05-03 15:22:13.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-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" +"Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565578102.000000\n" #. v3oJv @@ -1010,13 +1010,13 @@ #: sw/inc/inspectorproperties.hrc:88 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Highlight" -msgstr "Penyorotan Kar" +msgstr "Kar Sorot" #. T44dN #: sw/inc/inspectorproperties.hrc:89 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Interoperability Grab Bag" -msgstr "" +msgstr "Kantong Serba Guna Interoperabilitas Kar" #. EzwnG #: sw/inc/inspectorproperties.hrc:90 @@ -1256,7 +1256,7 @@ #: sw/inc/inspectorproperties.hrc:129 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Display Name" -msgstr "Nama Tampilan" +msgstr "Nama Tayangan" #. JXrsY #: sw/inc/inspectorproperties.hrc:130 @@ -1640,7 +1640,7 @@ #: sw/inc/inspectorproperties.hrc:193 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Filter" -msgstr "Penyaring Citra Latar Para" +msgstr "Penapis Citra Latar Para" #. Yy5RY #: sw/inc/inspectorproperties.hrc:194 @@ -3559,7 +3559,7 @@ #: sw/inc/strings.hrc:250 msgctxt "STR_DLLNOTFOUND" msgid "Filter not found." -msgstr "Penyaring tidak ketemu." +msgstr "Penapis tidak ditemukan." #. HhLap #: sw/inc/strings.hrc:251 @@ -3950,7 +3950,7 @@ #: sw/inc/strings.hrc:323 msgctxt "STR_RENAME_AUTOFORMAT_TITLE" msgid "Rename AutoFormat" -msgstr "Ganti Nama Format Otomatis" +msgstr "Nama Ulang Format Otomatis" #. GDdL3 #: sw/inc/strings.hrc:324 @@ -5268,7 +5268,7 @@ #: sw/inc/strings.hrc:544 msgctxt "STR_UNDO_PAGEDESC_RENAME" msgid "Rename page style: $1 $2 $3" -msgstr "Mengganti nama gaya halaman: $1 $2 $3" +msgstr "Nama ulang gaya halaman: $1 $2 $3" #. UcTVv #: sw/inc/strings.hrc:545 @@ -5298,7 +5298,7 @@ #: sw/inc/strings.hrc:549 msgctxt "STR_UNDO_TXTFMTCOL_RENAME" msgid "Rename paragraph style: $1 $2 $3" -msgstr "Mengganti nama gaya paragraf: $1 $2 $3" +msgstr "Nama ulang gaya paragraf: $1 $2 $3" #. J2FcF #: sw/inc/strings.hrc:550 @@ -5316,7 +5316,7 @@ #: sw/inc/strings.hrc:552 msgctxt "STR_UNDO_CHARFMT_RENAME" msgid "Rename character style: $1 $2 $3" -msgstr "Mengganti nama gaya karakter: $1 $2 $3" +msgstr "Nama ulang gaya karakter: $1 $2 $3" #. AvK4p #: sw/inc/strings.hrc:553 @@ -5334,7 +5334,7 @@ #: sw/inc/strings.hrc:555 msgctxt "STR_UNDO_FRMFMT_RENAME" msgid "Rename frame style: $1 $2 $3" -msgstr "Mengganti nama gaya bingkai: $1 $2 $3" +msgstr "Nama ulang gaya bingkai: $1 $2 $3" #. GG9BH #: sw/inc/strings.hrc:556 @@ -5352,13 +5352,13 @@ #: sw/inc/strings.hrc:558 msgctxt "STR_UNDO_NUMRULE_RENAME" msgid "Rename numbering style: $1 $2 $3" -msgstr "Mengganti nama gaya penomoran: $1 $2 $3" +msgstr "Nama ulang gaya penomoran: $1 $2 $3" #. oWrh9 #: sw/inc/strings.hrc:559 msgctxt "STR_UNDO_BOOKMARK_RENAME" msgid "Rename bookmark: $1 $2 $3" -msgstr "Mengganti nama markah: $1 $2 $3" +msgstr "Nama ulang markah: $1 $2 $3" #. WTcEw #: sw/inc/strings.hrc:560 @@ -5541,13 +5541,13 @@ #: sw/inc/strings.hrc:591 msgctxt "STR_ACCESS_DOC_NAME" msgid "Document view" -msgstr "Tampilan dokumen" +msgstr "Tilikan dokumen" #. FrBrC #: sw/inc/strings.hrc:592 msgctxt "STR_ACCESS_DOC_DESC" msgid "Document view" -msgstr "Tampilan dokumen" +msgstr "Tilikan dokumen" #. BCEgS #: sw/inc/strings.hrc:593 @@ -5649,13 +5649,13 @@ #: sw/inc/strings.hrc:609 msgctxt "STR_ACCESS_PREVIEW_DOC_NAME" msgid "Document preview" -msgstr "Pratinjau dokumen" +msgstr "Pratilik dokumen" #. eYFFo #: sw/inc/strings.hrc:610 msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX" msgid "(Preview mode)" -msgstr "(Modus pratinjau)" +msgstr "(Modus pratilik)" #. Fp7Hn #: sw/inc/strings.hrc:611 @@ -5673,7 +5673,7 @@ #: sw/inc/strings.hrc:614 msgctxt "STR_COMCORE_CANT_SHOW" msgid "Image cannot be displayed." -msgstr "Citra tidak dapat ditampilkan." +msgstr "Citra tidak dapat ditayangkan." #. iJsFt #: sw/inc/strings.hrc:615 @@ -5943,13 +5943,13 @@ #: sw/inc/strings.hrc:664 msgctxt "STR_ACCESS_TL_GLOBAL" msgid "Global View" -msgstr "Tampilan Global" +msgstr "Tilikan Global" #. aeeRP #: sw/inc/strings.hrc:665 msgctxt "STR_ACCESS_TL_CONTENT" msgid "Content Navigation View" -msgstr "Tampilan Navigasi Isi" +msgstr "Tilikan Navigasi Isi" #. UAExA #: sw/inc/strings.hrc:666 @@ -6039,7 +6039,7 @@ #: sw/inc/strings.hrc:681 msgctxt "STR_EXPANDALL" msgid "Expand All" -msgstr "Kembangkan Semua" +msgstr "Perluas Semua" #. FxGVt #: sw/inc/strings.hrc:682 @@ -6069,7 +6069,7 @@ #: sw/inc/strings.hrc:686 msgctxt "STR_DISPLAY" msgid "Display" -msgstr "Tampilan" +msgstr "Tayangan" #. 3VXp5 #: sw/inc/strings.hrc:687 @@ -7013,7 +7013,7 @@ #: sw/inc/strings.hrc:855 msgctxt "ST_SALUTATIONPREVIEW" msgid "Salutation preview" -msgstr "Pratinjau sapaan" +msgstr "Pratilik sapaan" #. 2UVE6 #: sw/inc/strings.hrc:856 @@ -7037,7 +7037,7 @@ #: sw/inc/strings.hrc:859 msgctxt "ST_PREVIEW" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. ijdxe #: sw/inc/strings.hrc:860 @@ -8006,7 +8006,7 @@ #: sw/inc/strings.hrc:1064 msgctxt "STR_COND" msgid "~Condition" -msgstr "~Kondisi" +msgstr "~Syarat" #. X9cqJ #: sw/inc/strings.hrc:1065 @@ -8132,19 +8132,19 @@ #: sw/inc/strings.hrc:1088 msgctxt "STR_VIEWLAYOUT_ONE" msgid "Single-page view" -msgstr "Tampilan halaman tunggal" +msgstr "Tilikan halaman tunggal" #. 57ju6 #: sw/inc/strings.hrc:1089 msgctxt "STR_VIEWLAYOUT_MULTI" msgid "Multiple-page view" -msgstr "Tampilan halaman jamak" +msgstr "Tilikan halaman jamak" #. tbig8 #: sw/inc/strings.hrc:1090 msgctxt "STR_VIEWLAYOUT_BOOK" msgid "Book view" -msgstr "Tampilan buku" +msgstr "Tilikan buku" #. xBHUG #: sw/inc/strings.hrc:1091 @@ -9220,7 +9220,7 @@ #: sw/inc/strings.hrc:1277 msgctxt "STR_GRFILTER_FILTERERROR" msgid "Image filter not found" -msgstr "Penyaring gambar tak ditemukan" +msgstr "Penapis citra tak ditemukan" #. tEqyq #: sw/inc/strings.hrc:1278 @@ -10277,7 +10277,7 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:309 msgctxt "addressblockdialog|label3" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. pAsvT #: sw/uiconfig/swriter/ui/addressblockdialog.ui:323 @@ -10301,7 +10301,7 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:411 msgctxt "addressblockdialog|extended_tip|addrpreview" msgid "Displays a preview of the first database record with the current salutation layout." -msgstr "Menampilkan pratinjau catatan basis data pertama dengan tata letak sapaan saat ini." +msgstr "Menayangkan pratilik catatan basis data pertama dengan tata letak sapaan saat ini." #. HQ7GB #: sw/uiconfig/swriter/ui/addressblockdialog.ui:436 @@ -10409,7 +10409,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:8 msgctxt "asciifilterdialog|AsciiFilterDialog" msgid "ASCII Filter Options" -msgstr "Pilihan Penyaring ASCII" +msgstr "Pilihan Penapis ASCII" #. qa99e #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:98 @@ -10445,7 +10445,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:171 msgctxt "asciifilterdialog|extended_tip|font" msgid "By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing." -msgstr "Dengan mengatur fonta baku, Anda menentukan bahwa teks harus ditampilkan dalam fonta tertentu. Fonta baku hanya dapat dipilih saat melakukan impor." +msgstr "Dengan mengatur fonta baku, Anda menentukan bahwa teks harus ditayangkan dalam fonta tertentu. Fonta baku hanya dapat dipilih saat melakukan impor." #. Vd7Uv #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:188 @@ -10541,7 +10541,7 @@ #: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:203 msgctxt "assignfieldsdialog|ST_PREVIEW" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. iGH2C #: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:216 @@ -10553,19 +10553,19 @@ #: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:242 msgctxt "assignfieldsdialog|PREVIEW_LABEL" msgid "Address block preview" -msgstr "Pratinjau blok alamat" +msgstr "Pratilik blok alamat" #. vHo84 #: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:269 msgctxt "assignfieldsdialog|extended_tip|PREVIEW" msgid "Displays a preview of the values of the first data record." -msgstr "Menampilkan pratinjau nilai-nilai catatan data pertama." +msgstr "Menayangkan pratilik nilai-nilai catatan data pertama." #. VHDRJ #: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:302 msgctxt "assignfieldsdialog|extended_tip|AssignFieldsDialog" msgid "Matches the logical field names of the layout dialog to the field names in your database when you create new address blocks or salutations." -msgstr "Mencocokkan nama ruas lojik dari dialog tata letak ke nama ruas dalam basis data Anda ketika Anda membuat blok alamat atau sapaan yang baru." +msgstr "Mencocokkan nama ruas logikal dari dialog tata letak ke nama ruas dalam basis data Anda ketika Anda membuat blok alamat atau sapaan yang baru." #. RhjgE #: sw/uiconfig/swriter/ui/assignstylesdialog.ui:92 @@ -10829,7 +10829,7 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:131 msgctxt "autoformattable|extended_tip|preview" msgid "Displays a preview of the current selection." -msgstr "Menampilkan pratinjau dari pemilihan saat ini." +msgstr "Menayangkan pratilik dari pemilihan saat ini." #. q7HjF #: sw/uiconfig/swriter/ui/autoformattable.ui:173 @@ -10853,7 +10853,7 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:237 msgctxt "autoformattable|rename" msgid "Rename" -msgstr "Ganti Nama" +msgstr "Nama Ulang" #. SEACv #: sw/uiconfig/swriter/ui/autoformattable.ui:260 @@ -10991,7 +10991,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:72 msgctxt "autotext|rename" msgid "Rename..." -msgstr "Ganti nama..." +msgstr "Nama ulang..." #. Bd2zf #: sw/uiconfig/swriter/ui/autotext.ui:76 @@ -11057,7 +11057,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:186 msgctxt "autotext|extended_tip|autotext" msgid "Click to display additional AutoText commands, for example, to create a new AutoText entry from a text selection in the current document." -msgstr "Klik untuk menampilkan perintah Teks Otomatis tambahan, misalnya, perintah membuat entri baru dari teks yang sedang disorot pada dokumen aktif." +msgstr "Klik untuk menayangkan perintah Teks Otomatis tambahan, misalnya, perintah membuat entri baru dari teks yang sedang disorot pada dokumen saat ini." #. hXXv3 #: sw/uiconfig/swriter/ui/autotext.ui:198 @@ -11069,7 +11069,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:205 msgctxt "autotext|extended_tip|categories" msgid "Adds, renames, or deletes AutoText categories." -msgstr "Menambah, mengganti nama, atau menghapus kategori Teks Otomatis." +msgstr "Menambah, menamai ulang, atau menghapus kategori Teks Otomatis." #. 6fErD #: sw/uiconfig/swriter/ui/autotext.ui:217 @@ -11123,7 +11123,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:379 msgctxt "autotext|inserttip" msgid "_Display remainder of name as suggestion while typing" -msgstr "_Tampilkan sisa nama sebagai saran selama mengetik" +msgstr "_Tayangkan sisa nama sebagai saran selama mengetik" #. GdqFE #: sw/uiconfig/swriter/ui/autotext.ui:404 @@ -11141,13 +11141,13 @@ #: sw/uiconfig/swriter/ui/autotext.ui:436 msgctxt "autotext|extended_tip|name" msgid "Displays the name of the selected AutoText category. To change the name of the category, type a new name, and then click Rename. To create a new category, type a name, and then click New." -msgstr "Menampilkan nama kategori Teks Otomatis yang disorot. Untuk mengganti nama kategori, ketik nama baru, lalu klik Ganti Nama. Untuk membuat kategori baru, ketik nama lalu klik Baru." +msgstr "Menayangkan nama kategori Teks Otomatis terpilih. Untuk menamai ulang kategori, ketik nama baru, lalu klik Nama Ulang. Untuk membuat kategori baru, ketik nama lalu klik Baru." #. Ye7DD #: sw/uiconfig/swriter/ui/autotext.ui:456 msgctxt "autotext|extended_tip|shortname" msgid "Displays the shortcut for the selected AutoText entry. If you are creating a new AutoText entry, type the shortcut that you want to use for the entry." -msgstr "Menampilkan shortcut dari entri Teks Otomatis. Jika Anda sedang membuat entri Teks Otomatis, ketik shortcut yang ingin digunakan untuk entri tersebut." +msgstr "Menayangkan pintasan dari entri Teks Otomatis. Jika Anda sedang membuat entri Teks Otomatis, ketik pintasan yang ingin digunakan untuk entri tersebut." #. NBAos #: sw/uiconfig/swriter/ui/autotext.ui:508 @@ -11159,7 +11159,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:542 msgctxt "autotext|example-atkobject" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. 2FEex #: sw/uiconfig/swriter/ui/autotext.ui:578 @@ -11843,7 +11843,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:476 msgctxt "cardmediumpage|extended_tip|formatinfo" msgid "The paper type and the dimensions of the business card are displayed at the bottom of the Format area." -msgstr "Jenis kertas dan dimensi dari kartu nama ditampilkan di bagian dasar wilayah Format." +msgstr "Jenis kertas dan dimensi dari kartu nama ditayangkan di bagian dasar wilayah Format." #. 3zCCN #: sw/uiconfig/swriter/ui/cardmediumpage.ui:501 @@ -12011,7 +12011,7 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:145 msgctxt "charurlpage|extended_tip|texted" msgid "Enter the text that you want to display for the hyperlink." -msgstr "Masukan teks yang ingin anda tampilkan untuk pranala." +msgstr "Masukan teks yang ingin Anda tayangkan untuk pranala." #. BmLb8 #: sw/uiconfig/swriter/ui/charurlpage.ui:156 @@ -12143,13 +12143,13 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:353 msgctxt "columnpage|extended_tip|back" msgid "Moves the column display one column to the left." -msgstr "Memindahkan kolom menampilkan satu kolom ke kiri." +msgstr "Memindahkan kolom menayangkan satu kolom ke kiri." #. EDA5k #: sw/uiconfig/swriter/ui/columnpage.ui:374 msgctxt "columnpage|extended_tip|next" msgid "Moves the column display one column to the right." -msgstr "Memindahkan kolom menampilkan satu kolom ke kanan." +msgstr "Memindahkan kolom menayangkan satu kolom ke kanan." #. Xn7wn #: sw/uiconfig/swriter/ui/columnpage.ui:408 @@ -12371,7 +12371,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:88 msgctxt "conditionpage|usedft" msgid "Applied Styles" -msgstr "Gaya Yang Diterapkan" +msgstr "Gaya Terpakai" #. B9oQk #: sw/uiconfig/swriter/ui/conditionpage.ui:99 @@ -12581,7 +12581,7 @@ #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:26 msgctxt "contentcontroldlg|ContentControlDialog" msgid "Content Control Properties" -msgstr "Properti Kendali Konten" +msgstr "Properti Kendali Isi" #. bHXzy #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:102 @@ -12623,7 +12623,7 @@ #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:255 msgctxt "contentcontroldlg|displayname" msgid "Display Name" -msgstr "Nama Tampilan" +msgstr "Nama Tayangan" #. qy8VG #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:269 @@ -12677,13 +12677,13 @@ #: sw/uiconfig/swriter/ui/contentcontrollistitemdlg.ui:8 msgctxt "contentcontrollistitemdlg|ContentControlListItemDialog" msgid "Content Control List Item Properties" -msgstr "Properti Item Senarai Kendali Konten" +msgstr "Properti Item Senarai Kendali Isi" #. 4AXKq #: sw/uiconfig/swriter/ui/contentcontrollistitemdlg.ui:90 msgctxt "contentcontrollistitemdlg|lbdisplayname" msgid "Display name:" -msgstr "Nama tampilan:" +msgstr "Nama tayangan:" #. T6EME #: sw/uiconfig/swriter/ui/contentcontrollistitemdlg.ui:117 @@ -12887,7 +12887,7 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:212 msgctxt "createaddresslist|extended_tip|START" msgid "Click the buttons to navigate through the records or enter a record number to display a record." -msgstr "Klik tombol untuk menavigasi catatan atau memasukkan nomor catatan untuk menampilkan catatan." +msgstr "Klik tombol untuk menavigasi catatan atau memasukkan nomor catatan untuk menayangkan catatan." #. XAhXo #: sw/uiconfig/swriter/ui/createaddresslist.ui:223 @@ -12899,7 +12899,7 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:229 msgctxt "createaddresslist|extended_tip|PREV" msgid "Click the buttons to navigate through the records or enter a record number to display a record." -msgstr "Klik tombol untuk menavigasi catatan atau memasukkan nomor catatan untuk menampilkan catatan." +msgstr "Klik tombol untuk menavigasi catatan atau memasukkan nomor catatan untuk menayangkan catatan." #. BFEtt #: sw/uiconfig/swriter/ui/createaddresslist.ui:240 @@ -12911,7 +12911,7 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:246 msgctxt "createaddresslist|extended_tip|END" msgid "Click the buttons to navigate through the records or enter a record number to display a record." -msgstr "Klik tombol untuk menavigasi catatan atau memasukkan nomor catatan untuk menampilkan catatan." +msgstr "Klik tombol untuk menavigasi catatan atau memasukkan nomor catatan untuk menayangkan catatan." #. vzQvB #: sw/uiconfig/swriter/ui/createaddresslist.ui:257 @@ -12923,19 +12923,19 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:263 msgctxt "createaddresslist|extended_tip|NEXT" msgid "Click the buttons to navigate through the records or enter a record number to display a record." -msgstr "Klik tombol untuk menavigasi catatan atau memasukkan nomor catatan untuk menampilkan catatan." +msgstr "Klik tombol untuk menavigasi catatan atau memasukkan nomor catatan untuk menayangkan catatan." #. r6T84 #: sw/uiconfig/swriter/ui/createaddresslist.ui:287 msgctxt "createaddresslist|extended_tip|SETNOSB" msgid "Click the buttons to navigate through the records or enter a record number to display a record." -msgstr "Klik tombol untuk menavigasi catatan atau memasukkan nomor catatan untuk menampilkan catatan." +msgstr "Klik tombol untuk menavigasi catatan atau memasukkan nomor catatan untuk menayangkan catatan." #. KdhEt #: sw/uiconfig/swriter/ui/createaddresslist.ui:305 msgctxt "createaddresslist|extended_tip|SETNOED" msgid "Click the buttons to navigate through the records or enter a record number to display a record." -msgstr "Klik tombol untuk menavigasi catatan atau memasukkan nomor catatan untuk menampilkan catatan." +msgstr "Klik tombol untuk menavigasi catatan atau memasukkan nomor catatan untuk menayangkan catatan." #. hPwMj #: sw/uiconfig/swriter/ui/createaddresslist.ui:349 @@ -12983,7 +12983,7 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:413 msgctxt "createaddresslist|extended_tip|CUSTOMIZE" msgid "Opens the Customize Address List dialog where you can rearrange, rename, add, and delete fields." -msgstr "Membuka dialog Gubah Senarai Alamat di mana Anda dapat mengatur ulang, mengganti nama, menambah, dan menghapus ruas-ruas." +msgstr "Membuka dialog Gubah Senarai Alamat di mana Anda dapat mengatur ulang, menamai ulang, menambah, dan menghapus ruas-ruas." #. DG4y3 #: sw/uiconfig/swriter/ui/createaddresslist.ui:448 @@ -13055,7 +13055,7 @@ #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:149 msgctxt "customizeaddrlistdialog|rename" msgid "_Rename..." -msgstr "_Ganti Nama..." +msgstr "_Nama Ulang..." #. 8QggP #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:156 @@ -13073,7 +13073,7 @@ #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:226 msgctxt "customizeaddrlistdialog|extended_tip|treeview" msgid "Select the fields that you want to move, delete, or rename." -msgstr "Pilih ruas yang ingin Anda pindahkan, hapus, atau ganti nama." +msgstr "Pilih ruas yang ingin Anda pindahkan, hapus, atau nama ulang." #. Bmbc2 #: sw/uiconfig/swriter/ui/datasourcesunavailabledialog.ui:7 @@ -13109,7 +13109,7 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:58 msgctxt "dropcapspage|checkCB_SWITCH" msgid "_Display drop caps" -msgstr "Tampilkan _kapital turun" +msgstr "Tayangkan _kapital turun" #. PEHkg #: sw/uiconfig/swriter/ui/dropcapspage.ui:66 @@ -13127,7 +13127,7 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:86 msgctxt "dropcapspage|extended_tip|checkCB_WORD" msgid "Displays the first letter of the first word in the paragraph as a drop cap, and the remaining letters of the word as large type." -msgstr "Menampilkan huruf pertama dari kata pertama dalam paragraf sebagai kapital turun, dan huruf yang tersisa dari kata tersebut sebagai tipe besar." +msgstr "Menayangkan huruf pertama dari kata pertama dalam paragraf sebagai kapital turun, dan huruf yang tersisa dari kata tersebut sebagai tipe besar." #. YEaFN #: sw/uiconfig/swriter/ui/dropcapspage.ui:100 @@ -13187,7 +13187,7 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:266 msgctxt "dropcapspage|extended_tip|entryEDT_TEXT" msgid "Enter the text that you want to display as drop caps instead of the first letters of the paragraph." -msgstr "Masukkan teks yang ingin Anda tampilkan sebagai kapital turun bukan sebagai huruf pertama paragraf." +msgstr "Masukkan teks yang ingin Anda tayangkan sebagai kapital turun bukan sebagai huruf pertama paragraf." #. eTLND #: sw/uiconfig/swriter/ui/dropcapspage.ui:281 @@ -13229,13 +13229,13 @@ #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:59 msgctxt "dropdownfielddialog|extended_tip|next" msgid "Closes the current Input list and displays the next, if available." -msgstr "Menutup senarai Masukan saat ini dan menampilkan yang selanjutnya, bila ada." +msgstr "Menutup senarai Masukan saat ini dan menayangkan yang selanjutnya, bila ada." #. Ct7px #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:84 msgctxt "dropdownfielddialog|extended_tip|edit" msgid "Displays the Edit Fields: Functions dialog, where you can edit the Input list." -msgstr "Menampilkan dialog Sunting Ruas: Fungsi, di mana Anda dapat menyunting senarai Masukan." +msgstr "Menayangkan dialog Sunting Ruas: Fungsi, di mana Anda dapat menyunting senarai Masukan." #. k3yMJ #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:211 @@ -13289,7 +13289,7 @@ #: sw/uiconfig/swriter/ui/editcategories.ui:69 msgctxt "editcategories|rename" msgid "_Rename" -msgstr "_Ganti Nama" +msgstr "_Nama Ulang" #. HmC7z #: sw/uiconfig/swriter/ui/editcategories.ui:77 @@ -13313,7 +13313,7 @@ #: sw/uiconfig/swriter/ui/editcategories.ui:231 msgctxt "editcategories|extended_tip|pathlb" msgid "Displays the current path to the directory where the selected AutoText category files are stored. If you are creating an AutoText category, select where you want to store the category files." -msgstr "Menampilkan jalur direktori lengkap yang menjadi lokasi berkas kategori Teks Otomatis. Jika Anda membuat kategori Teks Otomatis, pilih lokasi penyimpanan berkas kategori." +msgstr "Menayangkan jalur direktori lengkap yang menjadi lokasi berkas kategori Teks Otomatis. Jika Anda membuat kategori Teks Otomatis, pilih lokasi penyimpanan berkas kategori." #. 94dZM #: sw/uiconfig/swriter/ui/editcategories.ui:244 @@ -13331,13 +13331,13 @@ #: sw/uiconfig/swriter/ui/editcategories.ui:277 msgctxt "editcategories|extended_tip|name" msgid "Displays the name of the selected AutoText category. To change the name of the category, type a new name, and then click Rename. To create a new category, type a name, and then click New." -msgstr "Menampilkan nama kategori Teks Otomatis yang disorot. Untuk mengganti nama kategori, ketik nama baru, lalu klik Ganti Nama. Untuk membuat kategori baru, ketik nama lalu klik Baru." +msgstr "Menayangkan nama kategori Teks Otomatis terpilih. Untuk menamai ulang kategori, ketik nama baru, lalu klik Nama Ulang. Untuk membuat kategori baru, ketik nama lalu klik Baru." #. saGoB #: sw/uiconfig/swriter/ui/editcategories.ui:308 msgctxt "editcategories|extended_tip|EditCategoriesDialog" msgid "Adds, renames, or deletes AutoText categories." -msgstr "Menambah, mengganti nama, atau menghapus kategori Teks Otomatis." +msgstr "Menambah, menamai ulang, atau menghapus kategori Teks Otomatis." #. uQE9B #: sw/uiconfig/swriter/ui/editfielddialog.ui:18 @@ -13559,13 +13559,13 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:614 msgctxt "editsectiondialog|conditionft" msgid "_With Condition" -msgstr "D_engan Kondisi" +msgstr "D_engan Syarat" #. yHCZA #: sw/uiconfig/swriter/ui/editsectiondialog.ui:634 msgctxt "editsectiondialog|extended_tip|condition" msgid "Enter the condition that must be met to hide the section." -msgstr "Masukkan kondisi yang mesti dipenuhi untuk menyembunyikan seksi." +msgstr "Masukkan syarat yang harus terpenuhi untuk menyembunyikan seksi." #. tnwHD #: sw/uiconfig/swriter/ui/editsectiondialog.ui:655 @@ -13625,13 +13625,13 @@ #: sw/uiconfig/swriter/ui/endnotepage.ui:107 msgctxt "endnotepage|extended_tip|prefix" msgid "Enter the text that you want to display in front of the endnote number in the note text." -msgstr ">Masukkan teks yang ingin Anda tampilkan di depan nomor catatan akhir pada teks catatan ." +msgstr "Masukkan teks yang ingin Anda tayangkan di depan nomor catatan akhir pada teks catatan ." #. UFXFD #: sw/uiconfig/swriter/ui/endnotepage.ui:124 msgctxt "endnotepage|extended_tip|suffix" msgid "Enter the text that you want to display after the endnote number in the note text." -msgstr "Masukkan teks yang ingin Anda tampilkan setelah nomor catatan akhir di teks catatan." +msgstr "Masukkan teks yang ingin Anda tayangkan setelah nomor catatan akhir di teks catatan." #. Fby7r #: sw/uiconfig/swriter/ui/endnotepage.ui:139 @@ -13781,7 +13781,7 @@ #: sw/uiconfig/swriter/ui/envaddresspage.ui:341 msgctxt "envaddresspage|preview-atkobject" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. jdjqJ #: sw/uiconfig/swriter/ui/envaddresspage.ui:359 @@ -14003,7 +14003,7 @@ #: sw/uiconfig/swriter/ui/envformatpage.ui:629 msgctxt "envformatpage|preview-atkobject" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. C6GDB #: sw/uiconfig/swriter/ui/envformatpage.ui:644 @@ -14325,7 +14325,7 @@ #: sw/uiconfig/swriter/ui/findentrydialog.ui:33 msgctxt "findentrydialog|extended_tip|find" msgid "Displays the next record that contains the search text." -msgstr "Tampilkan catatan berikutnya yang berisi teks pencarian." +msgstr "Menayangkan catatan berikutnya yang berisi teks pencarian." #. veaSC #: sw/uiconfig/swriter/ui/findentrydialog.ui:97 @@ -14379,19 +14379,19 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:131 msgctxt "flddbpage|label5" msgid "_Condition" -msgstr "_Kondisi" +msgstr "_Syarat" #. AoBvb #: sw/uiconfig/swriter/ui/flddbpage.ui:149 msgctxt "flddbpage|extended_tip|condition" msgid "For fields linked to a condition, enter the criteria here." -msgstr "Untuk ruas yang terkait dengan suatu kondisi, masukkan kriteria di sini." +msgstr "Untuk ruas yang terkait dengan suatu syarat, masukkan kriteria di sini." #. 8Xd25 #: sw/uiconfig/swriter/ui/flddbpage.ui:178 msgctxt "flddbpage|extended_tip|recnumber" msgid "Enter the number of the record that you want to insert when the condition that you specify is met." -msgstr "Masukkan nomor rekaman yang ingin Anda masukkan ketika kondisi yang Anda tentukan terpenuhi." +msgstr "Masukkan nomor rekaman yang ingin Anda masukkan ketika syarat yang Anda tentukan terpenuhi." #. WnvGZ #: sw/uiconfig/swriter/ui/flddbpage.ui:191 @@ -14679,7 +14679,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:386 msgctxt "fldfuncpage|extended_tip|cond1" msgid "Enter the text to display when the condition is met in the Then box, and the text to display when the condition is not met in the Else box." -msgstr "Masukkan teks yang akan ditampilkan ketika syarat dipenuhi dalam kotak Maka, dan teks yang akan ditampilkan ketika syarat tidak dipenuhi dalam kotak Selain Itu." +msgstr "Masukkan teks yang akan ditayangkan ketika syarat dipenuhi dalam kotak Maka, dan teks yang akan ditayangkan ketika syarat tidak dipenuhi dalam kotak Selain Itu." #. VjhuY #: sw/uiconfig/swriter/ui/fldfuncpage.ui:411 @@ -14691,7 +14691,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:430 msgctxt "fldfuncpage|extended_tip|cond2" msgid "Enter the text to display when the condition is met in the Then box, and the text to display when the condition is not met in the Else box." -msgstr "Masukkan teks yang akan ditampilkan ketika syarat dipenuhi dalam kotak Maka, dan teks yang akan ditampilkan ketika syarat tidak dipenuhi dalam kotak Selain Itu." +msgstr "Masukkan teks yang akan ditayangkan ketika syarat dipenuhi dalam kotak Maka, dan teks yang akan ditayangkan ketika syarat tidak dipenuhi dalam kotak Selain Itu." #. ALCUE #: sw/uiconfig/swriter/ui/fldfuncpage.ui:462 @@ -14781,7 +14781,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:169 msgctxt "fldrefpage|extended_tip|format" msgid "Select the format that you want to use for the selected reference field." -msgstr "Pilih format yang ingin Anda pakai untuk ruas acuan yang dipilih." +msgstr "Pilih format yang ingin Anda pakai untuk ruas rujukan yang dipilih." #. GbvEW #: sw/uiconfig/swriter/ui/fldrefpage.ui:180 @@ -14799,7 +14799,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:249 msgctxt "fldrefpage|filter" msgid "Filter Selection" -msgstr "Saring Pemilihan" +msgstr "Tapis Pemilihan" #. DToph #: sw/uiconfig/swriter/ui/fldrefpage.ui:311 @@ -15219,7 +15219,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:126 msgctxt "footnotepage|extended_tip|pospagecb" msgid "Displays footnotes at the bottom of the page." -msgstr ">Menampilkan catatan kaki di bagian bawah dari halaman." +msgstr "Menayangkan catatan kaki di bagian bawah dari halaman." #. 8zwoB #: sw/uiconfig/swriter/ui/footnotepage.ui:137 @@ -15231,7 +15231,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:149 msgctxt "footnotepage|extended_tip|posdoccb" msgid "Displays footnotes at the end of the document as endnotes." -msgstr "Menampilkan catatan kaki di bagian akhir dokumen sebagai catatan akhir." +msgstr "Menayangkan catatan kaki di bagian akhir dokumen sebagai catatan akhir." #. BGVTw #: sw/uiconfig/swriter/ui/footnotepage.ui:167 @@ -15267,13 +15267,13 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:204 msgctxt "footnotepage|extended_tip|prefix" msgid "Enter the text that you want to display in front of the footnote number in the note text." -msgstr "Masukkan teks yang ingin Anda tampilkan di depan nomor catatan kaki di teks catatan." +msgstr "Masukkan teks yang ingin Anda tayangkan di depan nomor catatan kaki di teks catatan." #. 7rE4w #: sw/uiconfig/swriter/ui/footnotepage.ui:221 msgctxt "footnotepage|extended_tip|suffix" msgid "Enter the text that you want to display after the footnote number in the note text." -msgstr "Masukkan teks yang ingin Anda tampilkan setelah nomor catatan kaki pada teks catatan." +msgstr "Masukkan teks yang ingin Anda tayangkan setelah nomor catatan kaki pada teks catatan." #. YAUrj #: sw/uiconfig/swriter/ui/footnotepage.ui:236 @@ -15303,13 +15303,13 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:317 msgctxt "footnotepage|extended_tip|contfromed" msgid "Enter the text that you want to display on the page where the footnotes are continued, for example, \"Continued from Page \". Writer automatically inserts the number of the previous page." -msgstr "Masukkan teks yang ingin ditampilkan pada halaman tempat catatan kaki dilanjutkan, misalnya \"Lanjutan dari Halaman\". Writer secara otomatis memasukkan nomor halaman sebelumnya." +msgstr "Masukkan teks yang ingin ditayangkan pada halaman tempat catatan kaki dilanjutkan, misalnya \"Lanjutan dari Halaman\". Writer secara otomatis memasukkan nomor halaman sebelumnya." #. 2X7QW #: sw/uiconfig/swriter/ui/footnotepage.ui:336 msgctxt "footnotepage|extended_tip|conted" msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". Writer automatically inserts the number of the following page." -msgstr "Masukkan teks yang ingin ditampilkan saat catatan kaki dilanjutkan di halaman berikutnya, misalnya \"Lanjutan di Halaman\". Writer secara otomatis memasukkan nomor halaman berikut." +msgstr "Masukkan teks yang ingin ditayangkan saat catatan kaki dilanjutkan di halaman berikutnya, misalnya \"Lanjutan di Halaman\". Writer secara otomatis memasukkan nomor halaman berikut." #. ZEhG2 #: sw/uiconfig/swriter/ui/footnotepage.ui:351 @@ -15411,7 +15411,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150 msgctxt "footnotesendnotestabpage|extended_tip|ftnsuffix" msgid "Enter the text that you want to display after the footnote number." -msgstr "Masukkan teks yang ingin Anda tampilkan setelah catatan kaki." +msgstr "Masukkan teks yang ingin Anda tayangkan setelah catatan kaki." #. JzjqC #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:163 @@ -15429,7 +15429,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:198 msgctxt "footnotesendnotestabpage|extended_tip|ftnprefix" msgid "Enter the text that you want to display in front of the footnote number." -msgstr "Masukkan teks yang ingin Anda tampilkan di depan nomor catatan kaki." +msgstr "Masukkan teks yang ingin Anda tayangkan di depan nomor catatan kaki." #. MFBgR #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212 @@ -15507,7 +15507,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:425 msgctxt "footnotesendnotestabpage|extended_tip|endsuffix" msgid "Enter the text that you want to display after the endnote number." -msgstr "Masukkan teks yang ingin Anda tampilkan setelah nomor catatan akhir." +msgstr "Masukkan teks yang ingin Anda tayangkan setelah nomor catatan akhir." #. GmatM #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:438 @@ -15525,7 +15525,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:473 msgctxt "footnotesendnotestabpage|extended_tip|endprefix" msgid "Enter the text that you want to display in front of the endnote number" -msgstr "Masukkan teks yang Anda inginkan untuk ditampilkan di depan nomor catatan akhir." +msgstr "Masukkan teks yang Anda inginkan untuk ditayangkan di depan nomor catatan akhir." #. iFELv #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:487 @@ -15543,7 +15543,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:530 msgctxt "footnotesendnotestabpage|extended_tip|FootnotesEndnotesTabPage" msgid "Specifies where footnotes and endnotes are displayed as well as their numbering formats." -msgstr "Menentukan di mana catatan kaki dan catatan akhir ditampilkan serta format penomorannya." +msgstr "Menentukan di mana catatan kaki dan catatan akhir ditayangkan serta format penomorannya." #. GzLJU #: sw/uiconfig/swriter/ui/formatsectiondialog.ui:8 @@ -15603,7 +15603,7 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:134 msgctxt "formattablepage|extended_tip|relwidth" msgid "Displays the width of the table as a percentage of the page width." -msgstr "Menampilkan lebar tabel sebagai persentase dari lebar halaman." +msgstr "Menayangkan lebar tabel sebagai persentase dari lebar halaman." #. YioP3 #: sw/uiconfig/swriter/ui/formattablepage.ui:153 @@ -16023,7 +16023,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:469 msgctxt "frmaddpage|extended_tip|prev" msgid "Displays the frame that comes before the current frame in a linked sequence. To add or change the previous link, select a frame from the list. If you are linking frames, the current frame and the target frame must be empty." -msgstr "Menampilkan bingkai yang muncul sebelum bingkai saat ini dalam urutan tertaut. Untuk menambah atau mengubah tautan sebelumnya, pilih bingkai dari senarai. Jika Anda menautkan bingkai, bingkai saat ini dan bingkai target harus kosong." +msgstr "Menayangkan bingkai yang muncul sebelum bingkai saat ini dalam urutan tertaut. Untuk menambah atau mengubah tautan sebelumnya, pilih bingkai dari senarai. Jika Anda menautkan bingkai, bingkai saat ini dan bingkai target harus kosong." #. 6CXC7 #: sw/uiconfig/swriter/ui/frmaddpage.ui:482 @@ -16047,7 +16047,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:503 msgctxt "frmaddpage|extended_tip|next" msgid "Displays the frame that comes after the current frame in a linked sequence. To add or change the next link, select a frame from the list. If you are linking frames, the target frame must be empty." -msgstr "Menampilkan bingkai yang muncul setelah bingkai saat ini dalam urutan tertaut. Untuk menambah atau mengubah tautan berikutnya, pilih bingkai dari senarai. Jika Anda menautkan bingkai, bingkai target harus kosong." +msgstr "Menayangkan bingkai yang muncul setelah bingkai saat ini dalam urutan tertaut. Untuk menambah atau mengubah tautan berikutnya, pilih bingkai dari senarai. Jika Anda menautkan bingkai, bingkai target harus kosong." #. s6AqL #: sw/uiconfig/swriter/ui/frmaddpage.ui:518 @@ -16257,7 +16257,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:502 msgctxt "frmtypepage|lbPreview" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. 7RCJH #: sw/uiconfig/swriter/ui/frmtypepage.ui:539 @@ -16719,7 +16719,7 @@ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:8 msgctxt "inputfielddialog|InputFieldDialog" msgid "Review Fields" -msgstr "Pratinjau Ruas" +msgstr "Pratilik Ruas" #. jLu5C #: sw/uiconfig/swriter/ui/inputfielddialog.ui:31 @@ -16749,7 +16749,7 @@ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:176 msgctxt "inputfielddialog|extended_tip|text" msgid "This box displays the name that you entered in the Reference box on the Functions or Variables tab of the Fields dialog. The box underneath displays the contents of the field." -msgstr "Kotak ini menampilkan nama yang Anda masukkan pada kotak Rujukan pada tab Fungsi atau Variabel dari dialog Ruas. Kotak di bawahnya menampilkan konten ruas." +msgstr "Kotak ini menayangkan nama yang Anda masukkan pada kotak Rujukan pada tab Fungsi atau Variabel dari dialog Ruas. Kotak di bawahnya menayangkan konten ruas." #. KcGwQ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:207 @@ -17169,7 +17169,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:166 msgctxt "insertbookmark|condlabel" msgid "_Condition:" -msgstr "_Kondisi:" +msgstr "_Syarat:" #. XbAhB #: sw/uiconfig/swriter/ui/insertbookmark.ui:239 @@ -17229,7 +17229,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:368 msgctxt "insertbookmark|rename" msgid "Rename" -msgstr "Ganti Nama" +msgstr "Nama Ulang" #. gb2CC #: sw/uiconfig/swriter/ui/insertbookmark.ui:395 @@ -17463,7 +17463,7 @@ #: sw/uiconfig/swriter/ui/insertcaption.ui:377 msgctxt "insertcaption|label3" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. oeQRS #: sw/uiconfig/swriter/ui/insertcaption.ui:411 @@ -18075,7 +18075,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:437 msgctxt "inserttable|extended_tip|previewinstable" msgid "Displays a preview of the current selection." -msgstr "Menampilkan pratinjau dari pemilihan saat ini." +msgstr "Menayangkan pratilik dari pemilihan saat ini." #. QDdwV #: sw/uiconfig/swriter/ui/inserttable.ui:479 @@ -18225,37 +18225,37 @@ #: sw/uiconfig/swriter/ui/labelformatpage.ui:201 msgctxt "labelformatpage|extended_tip|hori" msgid "Displays the distance between the left edges of adjacent labels or business cards. If you are defining a custom format, enter a value here." -msgstr "Menampilkan jarak antara tepi kiri label yang berdekatan atau kartu nama. Jika Anda menentukan format ubahan, masukkan nilai di sini." +msgstr "Menayangkan jarak antara tepi kiri label yang berdekatan atau kartu nama. Jika Anda menentukan format ubahan, masukkan nilai di sini." #. wKgmD #: sw/uiconfig/swriter/ui/labelformatpage.ui:219 msgctxt "labelformatpage|extended_tip|vert" msgid "Displays the distance between the upper edge of a label or a business card and the upper edge of the label or the business card directly below. If you are defining a custom format, enter a value here." -msgstr "Menampilkan jarak antara tepi atas label atau kartu nama dan tepi atas label atau kartu nama langsung di bawah. Jika Anda menentukan format ubahan, masukkan nilai di sini." +msgstr "Menayangkan jarak antara tepi atas label atau kartu nama dan tepi atas label atau kartu nama langsung di bawah. Jika Anda menentukan format ubahan, masukkan nilai di sini." #. iSpdv #: sw/uiconfig/swriter/ui/labelformatpage.ui:237 msgctxt "labelformatpage|extended_tip|width" msgid "Displays the width for the label or the business card. If you are defining a custom format, enter a value here." -msgstr "Menampilkan lebar untuk label atau kartu bisnis. Jika Anda ingin menentukan format ubahan, masukkan nilai di sini." +msgstr "Menayangkan lebar untuk label atau kartu bisnis. Jika Anda ingin menentukan format ubahan, masukkan nilai di sini." #. WGJFY #: sw/uiconfig/swriter/ui/labelformatpage.ui:255 msgctxt "labelformatpage|extended_tip|height" msgid "Displays the height for the label or business card. If you are defining a custom format, enter a value here." -msgstr "Menampilkan tinggi untuk label atau kartu bisnis. Jika Anda ingin menentukan format ubahan, masukkan nilai di sini." +msgstr "Menayangkan tinggi untuk label atau kartu bisnis. Jika Anda ingin menentukan format ubahan, masukkan nilai di sini." #. tGisE #: sw/uiconfig/swriter/ui/labelformatpage.ui:273 msgctxt "labelformatpage|extended_tip|left" msgid "Displays the distance from the left edge of the page to the left edge of the first label or business card. If you are defining a custom format, enter a value here." -msgstr "Menampilkan jarak dari tepi kiri halaman ke tepi kiri label pertama atau kartu nama. Jika Anda menentukan format ubahan, masukkan nilai di sini." +msgstr "Menayangkan jarak dari tepi kiri halaman ke tepi kiri label pertama atau kartu nama. Jika Anda menentukan format ubahan, masukkan nilai di sini." #. aMAV5 #: sw/uiconfig/swriter/ui/labelformatpage.ui:291 msgctxt "labelformatpage|extended_tip|top" msgid "Displays distance from the top edge of the page to the top of the first label or business card. If you are defining a custom format, enter a value here." -msgstr "Menampilkan jarak dari tepi atas halaman ke bagian atas label pertama atau kartu nama. Jika Anda menentukan format ubahan, masukkan nilai di sini." +msgstr "Menayangkan jarak dari tepi atas halaman ke bagian atas label pertama atau kartu nama. Jika Anda menentukan format ubahan, masukkan nilai di sini." #. tzdCa #: sw/uiconfig/swriter/ui/labelformatpage.ui:309 @@ -19263,13 +19263,13 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:415 msgctxt "mmaddressblockpage|extended_tip|addresspreview" msgid "Shows a preview of the address block template filled with data." -msgstr "Menunjukkan pratinjau templat blok alamat diisi dengan data." +msgstr "Menunjukkan pratilik templat blok alamat diisi dengan data." #. de4LB #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:439 msgctxt "mmaddressblockpage|prev|tooltip_text" msgid "Preview Previous Address Block" -msgstr "Pratinjau Blok Alamat Sebelumnya" +msgstr "Pratilik Blok Alamat Sebelumnya" #. Eh2p9 #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:444 @@ -19281,7 +19281,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:458 msgctxt "mmaddressblockpage|next|tooltip_text" msgid "Preview Next Address Block" -msgstr "Pratinjau Blok Alamat Selanjutnya" +msgstr "Pratilik Blok Alamat Selanjutnya" #. 9sK8G #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:463 @@ -19461,13 +19461,13 @@ #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:397 msgctxt "mmlayoutpage|example-atkobject" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. bh5DE #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:398 msgctxt "mmlayoutpage|extended_tip|example" msgid "Provides a preview of the salutation positioning on the page." -msgstr "Menyediakan pratinjau dari posisi sapaan pada halaman." +msgstr "Menyediakan pratilik dari posisi sapaan pada halaman." #. 2EvMJ #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:423 @@ -20055,7 +20055,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:55 msgctxt "mmsalutationpage|previewft" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. UqSJW #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:76 @@ -20073,13 +20073,13 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:114 msgctxt "mmsalutationpage|extended_tip|preview" msgid "Displays a preview of the salutation." -msgstr "Tampilkan pratinjau sapaan." +msgstr "Menayangkan pratilik sapaan." #. NUC5G #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:138 msgctxt "mmsalutationpage|prev|tooltip_text" msgid "Preview Previous Address Block" -msgstr "Pratinjau Blok Alamat Sebelumnya" +msgstr "Pratilik Blok Alamat Sebelumnya" #. WUhJW #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:143 @@ -20091,7 +20091,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:157 msgctxt "mmsalutationpage|next|tooltip_text" msgid "Preview Next Address Block" -msgstr "Pratinjau Blok Alamat Selanjutnya" +msgstr "Pratilik Blok Alamat Selanjutnya" #. rnqbV #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:162 @@ -20511,7 +20511,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154 msgctxt "navigatorcontextmenu|STR_RENAME" msgid "_Rename..." -msgstr "_Ganti Nama..." +msgstr "_Nama Ulang..." #. U5nAb #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:162 @@ -20649,13 +20649,13 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:380 msgctxt "navigatorcontextmenu|STR_DISPLAY" msgid "Display" -msgstr "Tampilan" +msgstr "Tayangan" #. bgZoy #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:400 msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES" msgid "Collapse All Categories" -msgstr "Ciutkan Semua Kategori" +msgstr "Kuncupkan Semua Kategori" #. ba8wC #: sw/uiconfig/swriter/ui/navigatorpanel.ui:18 @@ -20709,7 +20709,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:270 msgctxt "navigatorpanel|extended_tip|contenttoggle" msgid "Switches between master view and normal view if a master document is open." -msgstr "Tukar tampilan antara tilik master dan tilik normal jika dokumen master sedang dibuka." +msgstr "Menukar antara tilikan induk dan tilikan normal jika dokumen induk sedang dibuka." #. aVJn7 #: sw/uiconfig/swriter/ui/navigatorpanel.ui:377 @@ -20733,7 +20733,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:420 msgctxt "navigatorpanel|extended_tip|root" msgid "Switches between the display of all categories in the Navigator and the selected category." -msgstr "Bertukar antara menampilkan semua kategori dalam Navigator dan kategori yang dipilih." +msgstr "Bertukar antara menayangkan semua kategori dalam Navigator dan kategori terpilih." #. Ngjxu #: sw/uiconfig/swriter/ui/navigatorpanel.ui:442 @@ -20889,7 +20889,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:771 msgctxt "navigatorpanel|extended_tip|globaltoggle" msgid "Switches between master view and normal view if a master document is open." -msgstr "Tukar tampilan antara tilik master dan tilik normal jika dokumen master sedang dibuka." +msgstr "Menukar antara tilikan induk dan tilikan normal jika dokumen induk sedang dibuka." #. HS3W2 #: sw/uiconfig/swriter/ui/navigatorpanel.ui:793 @@ -21093,7 +21093,7 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:9717 msgctxt "WriterNotebookbar|ViewLabel" msgid "~View" -msgstr "~Tampilan" +msgstr "~Tilik" #. RgE7C #: sw/uiconfig/swriter/ui/notebookbar.ui:10860 @@ -21285,7 +21285,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9055 msgctxt "notebookbar_compact|ViewLabel" msgid "~View" -msgstr "~Tampilan" +msgstr "~Tilikan" #. W5JNf #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10364 @@ -22856,7 +22856,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:235 msgctxt "optcompatpage|format" msgid "Expand word space on lines with manual line breaks in justified paragraphs" -msgstr "Kembangkan spasi kata pada baris-baris dengan pemutusan baris manual dalam paragraf terratakan" +msgstr "Perluas spasi kata pada baris-baris dengan pemutusan baris manual dalam paragraf terratakan" #. mjaAT #: sw/uiconfig/swriter/ui/optcompatpage.ui:236 @@ -23042,7 +23042,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:42 msgctxt "extended_tip|paragraph" msgid "Specifies whether paragraph delimiters are displayed. The paragraph delimiters also contain paragraph format information." -msgstr "Smenentukan apakah pembatas paragraf ditampilkan. Pembatas paragraf juga berisi informasi format paragraf." +msgstr "Menentukan apakah pembatas paragraf ditayangkan. Pembatas paragraf juga berisi informasi format paragraf." #. jBMu5 #: sw/uiconfig/swriter/ui/optformataidspage.ui:53 @@ -23054,7 +23054,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:61 msgctxt "extended_tip|hyphens" msgid "Specifies whether soft hyphens (called also as optional or discretionary hyphens) are displayed. These are hidden user-defined delimiters that you enter within a word by pressing Ctrl+Hyphen(-). Words with soft hyphens are only separated at the end of a line at the point where a soft hyphen has been inserted, irrespective of whether the automatic hyphenation is activated or deactivated." -msgstr "Menentukan apakah tanda hubung lunak (disebut juga sebagai tanda hubung opsional atau diskresioner) ditampilkan. Ini adalah pembatas yang ditentukan pengguna yang tersembunyi yang Anda masukkan dalam sebuah kata dengan menekanCtrl+Hyphen(-). Kata-kata dengan tanda hubung lunak hanya dipisahkan pada akhir garis pada titik di mana tanda hubung lunak telah dimasukkan, terlepas dari apakah tanda hubung otomatis diaktifkan atau dinonaktifkan." +msgstr "Menentukan apakah tanda hubung lunak (disebut juga sebagai tanda hubung opsional atau diskresioner) ditayangkan. Ini adalah pembatas yang ditentukan pengguna yang tersembunyi yang Anda masukkan dalam sebuah kata dengan menekanCtrl+Hyphen(-). Kata-kata dengan tanda hubung lunak hanya dipisahkan pada akhir garis pada titik di mana tanda hubung lunak telah dimasukkan, terlepas dari apakah tanda hubung otomatis diaktifkan atau dinonaktifkan." #. GTJrw #: sw/uiconfig/swriter/ui/optformataidspage.ui:72 @@ -23090,7 +23090,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:118 msgctxt "extended_tip|tabs" msgid "Specifies that tab stops are displayed as small arrows." -msgstr "Menentukan bahwa penghentian tab ditampilkan sebagai panah kecil." +msgstr "Menentukan bahwa penghentian tab ditayangkan sebagai panah kecil." #. rBxLK #: sw/uiconfig/swriter/ui/optformataidspage.ui:129 @@ -23102,7 +23102,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:137 msgctxt "extended_tip|break" msgid "Displays all line breaks inserted with the Shift+Enter shortcut. These breaks create a new line, but do not start a new paragraph." -msgstr "Menampilkan semua pemutus baris yang disisipkan dengan pintasan Shift+Enter. Pemutus ini membuat baris baru, tetapi tidak memulai paragraf baru." +msgstr "Menayangkan semua pemutus baris yang disisipkan dengan pintasan Shift+Enter. Pemutus ini membuat baris baru, tetapi tidak memulai paragraf baru." #. wy3SL #: sw/uiconfig/swriter/ui/optformataidspage.ui:148 @@ -23114,7 +23114,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:156 msgctxt "extended_tip|hiddentext" msgid "Displays text that uses the character format \"hidden\", when View - Formatting Marks is enabled." -msgstr "Menampilkan teks yang menggunakan format karakter \"tersembunyi\", ketika Tampilan - Pemformatan Tanda dinyalakan." +msgstr "Menayangkan teks yang menggunakan format karakter \"tersembunyi\", ketika Tilikan - Tanda Pemformatan dinyalakan." #. ubosK #: sw/uiconfig/swriter/ui/optformataidspage.ui:167 @@ -23136,7 +23136,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:259 msgctxt "optformataidspage|displayfl" msgid "Display Formatting" -msgstr "Tampilkan Pemformatan" +msgstr "Tayangkan Pemformatan" #. ufN3R #: sw/uiconfig/swriter/ui/optformataidspage.ui:287 @@ -23256,7 +23256,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:551 msgctxt "extended_tip|OptFormatAidsPage" msgid "In Writer text and HTML documents, defines the display for certain characters and for the direct cursor." -msgstr "Dalam teks Writer dan dokumen HTML, menentukan tampilan untuk karakter tertentu dan untuk kursor langsung." +msgstr "Dalam teks Writer dan dokumen HTML, menentukan tayangan untuk karakter tertentu dan untuk kursor langsung." #. V9Ahc #: sw/uiconfig/swriter/ui/optgeneralpage.ui:43 @@ -23268,7 +23268,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:51 msgctxt "extended_tip|updatefields" msgid "The contents of all fields are updated automatically whenever the screen contents are displayed as new. Even with this box unchecked, some fields are updated each time a special condition takes place." -msgstr "Konten semua ruas diperbarui secara otomatis setiap kali konten layar ditampilkan sebagai yang baru. Bahkan jika kotak ini tidak dicentang, beberapa ruas diperbarui setiap kali kondisi khusus terjadi." +msgstr "Konten semua ruas diperbarui secara otomatis setiap kali konten layar ditayangkan sebagai yang baru. Bahkan jika kotak ini tidak dicentang, beberapa ruas diperbarui setiap kali syarat khusus terjadi." #. gGD6o #: sw/uiconfig/swriter/ui/optgeneralpage.ui:62 @@ -23280,7 +23280,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:70 msgctxt "extended_tip|updatecharts" msgid "Specifies whether to automatically update charts. Whenever a Writer table cell value changes and the cursor leaves that cell, the chart that displays the cell value is updated automatically." -msgstr "Menentukan apakah akan memperbarui grafik secara otomatis. Setiap kali nilai sel tabel Penulis berubah dan kursor meninggalkan sel itu, bagan yang menampilkan nilai sel diperbarui secara otomatis." +msgstr "Menentukan apakah akan memperbarui grafik secara otomatis. Setiap kali nilai sel tabel Penulis berubah dan kursor meninggalkan sel tersebut, bagan yang menayangkan nilai sel diperbarui secara otomatis." #. GfsZW #: sw/uiconfig/swriter/ui/optgeneralpage.ui:85 @@ -23496,7 +23496,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:78 msgctxt "extended_tip|insert" msgid "Specifies how changes in the document are displayed when text is inserted." -msgstr "Menentukan bagaimana perubahan dalam dokumen ditampilkan saat teks dimasukkan." +msgstr "Menentukan bagaimana perubahan dalam dokumen ditayangkan saat teks dimasukkan." #. mGEfK #: sw/uiconfig/swriter/ui/optredlinepage.ui:101 @@ -23508,7 +23508,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:102 msgctxt "extended_tip|insertcolor" msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by Writer, then modified to match to the author of each change." -msgstr "Anda juga dapat memilih warna untuk menampilkan setiap jenis perubahan yang direkam. Ketika Anda memilih kondisi \"Oleh pengarang\" dalam senarai, warna secara otomatis ditentukan oleh Writer, kemudian diubah agar sesuai dengan penulis di setiap perubahan." +msgstr "Anda juga dapat memilih warna untuk menayangkan setiap jenis perubahan yang direkam. Ketika Anda memilih syarat \"Oleh pengarang\" dalam senarai, warna secara otomatis ditentukan oleh Writer, kemudian diubah agar sesuai dengan pengarang di setiap perubahan." #. aCEwk #: sw/uiconfig/swriter/ui/optredlinepage.ui:145 @@ -23532,7 +23532,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:210 msgctxt "extended_tip|deleted" msgid "Specifies how changes in the document are displayed when text is deleted. If you record text deletions, the text is displayed with the selected attribute (for example, strikethrough) and is not deleted." -msgstr "Menentukan bagaimana perubahan dalam dokumen ditampilkan saat teks dihapus. Jika Anda merekam penghapusan teks, teks ditampilkan dengan atribut yang dipilih (misalnya, dicoret) dan tidak dihapus." +msgstr "Menentukan bagaimana perubahan dalam dokumen ditayangkan saat teks dihapus. Jika Anda merekam penghapusan teks, teks ditayangkan dengan atribut yang dipilih (misalnya, dicoret) dan tidak dihapus." #. P2XbL #: sw/uiconfig/swriter/ui/optredlinepage.ui:233 @@ -23544,7 +23544,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:234 msgctxt "extended_tip|deletedcolor" msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by Writer, then modified to match to the author of each change." -msgstr "Anda juga dapat memilih warna untuk menampilkan setiap jenis perubahan yang direkam. Ketika Anda memilih kondisi \"Oleh pengarang\" dalam senarai, warna secara otomatis ditentukan oleh Writer, kemudian diubah agar sesuai dengan penulis di setiap perubahan." +msgstr "Anda juga dapat memilih warna untuk menayangkan setiap jenis perubahan yang direkam. Ketika Anda memilih syarat \"Oleh pengarang\" dalam senarai, warna secara otomatis ditentukan oleh Writer, kemudian diubah agar sesuai dengan pengarang di setiap perubahan." #. 3FpZy #: sw/uiconfig/swriter/ui/optredlinepage.ui:277 @@ -23568,7 +23568,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:342 msgctxt "extended_tip|changed" msgid "Defines how changes to text attributes are displayed in the document. These changes affect attributes such as bold, italic or underline." -msgstr "Menentukan bagaimana perubahan atribut teks ditampilkan dalam dokumen. Perubahan ini memengaruhi atribut seperti huruf tebal, miring atau bergaris bawah." +msgstr "Menentukan bagaimana perubahan atribut teks ditayangkan dalam dokumen. Perubahan ini memengaruhi atribut seperti huruf tebal, miring atau bergaris bawah." #. QUmdP #: sw/uiconfig/swriter/ui/optredlinepage.ui:365 @@ -23580,7 +23580,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:366 msgctxt "extended_tip|changedcolor" msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by Writer, then modified to match to the author of each change." -msgstr "Anda juga dapat memilih warna untuk menampilkan setiap jenis perubahan yang direkam. Ketika Anda memilih kondisi \"Oleh pengarang\" dalam senarai, warna secara otomatis ditentukan oleh Writer, kemudian diubah agar sesuai dengan penulis di setiap perubahan." +msgstr "Anda juga dapat memilih warna untuk menayangkan setiap jenis perubahan yang direkam. Ketika Anda memilih syarat \"Oleh pengarang\" dalam senarai, warna secara otomatis ditentukan oleh Writer, kemudian diubah agar sesuai dengan pengarang di setiap perubahan." #. ZqYdk #: sw/uiconfig/swriter/ui/optredlinepage.ui:409 @@ -24078,7 +24078,7 @@ #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:322 msgctxt "outlinenumberingpage|label17" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. xVDF2 #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:359 @@ -24310,7 +24310,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:531 msgctxt "outlinepositionpage|label17" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. PvTZ8 #: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:20 @@ -24892,7 +24892,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:59 msgctxt "picturepage|extended_tip|entry" msgid "Displays the path to the linked graphic file. To change the link, click the Browse button and then locate the file that you want to link to." -msgstr "Menampilkan jalur ke file grafik yang ditautkan. Untuk mengubah tautan, klik tautanJelajahtombol dan kemudian cari file yang ingin Anda tautkan." +msgstr "Menayangkan jalur ke berkas grafik yang ditautkan. Untuk mengubah tautan, klik tombol Telusur dan kemudian cari berkas yang ingin Anda tautkan." #. PqFMY #: sw/uiconfig/swriter/ui/picturepage.ui:72 @@ -25048,7 +25048,7 @@ #: sw/uiconfig/swriter/ui/previewzoomdialog.ui:185 msgctxt "previewzoomdialog|extended_tip|PreviewZoomDialog" msgid "Defines the number of pages displayed on screen. Click the arrow next to the icon to open a grid to select the number of pages to be displayed as rows and columns in the preview." -msgstr "Menentukan jumlah halaman yang ditampilkan di layar. Klik panah di sebelah ikon untuk membuka kisi agar dapat memilih jumlah halaman berdasarkan jumlah baris dan kolom pada pratinjau." +msgstr "Menentukan jumlah halaman yang ditayangkan di layar. Klik panah di sebelah ikon untuk membuka kisi agar dapat memilih jumlah halaman berdasarkan jumlah baris dan kolom pada pratilik." #. 2UCY8 #: sw/uiconfig/swriter/ui/printeroptions.ui:26 @@ -25970,7 +25970,7 @@ #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:8 msgctxt "renameautotextdialog|RenameAutoTextDialog" msgid "Rename AutoText" -msgstr "Ganti Nama Teks Otomatis" +msgstr "Nama Ulang Teks Otomatis" #. X34y4 #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:80 @@ -25988,7 +25988,7 @@ #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:115 msgctxt "renameautotextdialog|extended_tip|oldname" msgid "Displays the current name of the selected AutoText item." -msgstr "Menampilkan nama item Teks Otomatis yang sedang disorot." +msgstr "Menayangkan nama item Teks Otomatis terpilih." #. qMN6w #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:135 @@ -26024,7 +26024,7 @@ #: sw/uiconfig/swriter/ui/renameentrydialog.ui:8 msgctxt "renameentrydialog|RenameEntryDialog" msgid "Rename Element" -msgstr "Ganti Nama Elemen" +msgstr "Nama Ulang Elemen" #. E4Th3 #: sw/uiconfig/swriter/ui/renameentrydialog.ui:100 @@ -26036,7 +26036,7 @@ #: sw/uiconfig/swriter/ui/renameobjectdialog.ui:8 msgctxt "renameobjectdialog|RenameObjectDialog" msgid "Rename object: " -msgstr "Ganti nama objek: " +msgstr "Nama ulang objek: " #. kWc8q #: sw/uiconfig/swriter/ui/renameobjectdialog.ui:98 @@ -26102,7 +26102,7 @@ #: sw/uiconfig/swriter/ui/saveashtmldialog.ui:15 msgctxt "saveashtmldialog|SaveAsHTMLDialog" msgid "The source code can only be displayed if the document is saved in HTML format." -msgstr "Kode sumber hanya dapat ditampilkan bila dokumen disimpan dalam format HTML." +msgstr "Kode sumber hanya dapat ditayangkan bila dokumen disimpan dalam format HTML." #. 6zCYG #: sw/uiconfig/swriter/ui/savelabeldialog.ui:8 @@ -26300,13 +26300,13 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:494 msgctxt "sectionpage|condlabel" msgid "_With Condition" -msgstr "_Dengan Kondisi" +msgstr "_Dengan Syarat" #. W8PCT #: sw/uiconfig/swriter/ui/sectionpage.ui:515 msgctxt "sectionpage|extended_tip|withcond" msgid "Enter the condition that must be met to hide the section." -msgstr "Masukkan kondisi yang mesti dipenuhi untuk menyembunyikan seksi." +msgstr "Masukkan syarat yang harus terpenuhi untuk menyembunyikan seksi." #. sKZmk #: sw/uiconfig/swriter/ui/sectionpage.ui:536 @@ -26384,13 +26384,13 @@ #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:189 msgctxt "selectaddressdialog|filter" msgid "_Filter..." -msgstr "_Penyaring..." +msgstr "_Penapis..." #. MByRg #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:196 msgctxt "selectaddressdialog|extended_tip|filter" msgid "Opens the Standard Filter dialog , where you can apply filters to the address list to display the recipients that you want to see." -msgstr "Buka dialog Penyaring Standar, di mana Anda dapat menerapkan penyaring ke senarai alamat untuk menampilkan penerima yang ingin Anda lihat." +msgstr "Buka dialog Penapis Standar, di mana Anda dapat menerapkan penapis ke senarai alamat untuk menayangkan penerima yang ingin Anda lihat." #. XLNrP #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:208 @@ -26612,7 +26612,7 @@ #: sw/uiconfig/swriter/ui/selecttabledialog.ui:181 msgctxt "selecttabledialog|preview" msgid "_Preview" -msgstr "_Pratinjau" +msgstr "_Pratilik" #. Wo98B #: sw/uiconfig/swriter/ui/selecttabledialog.ui:188 @@ -27248,7 +27248,7 @@ #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:266 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." -msgstr "Menampilkan statistik untuk berkas saat ini." +msgstr "Menayangkan statistik untuk berkas saat ini." #. M4Ub9 #: sw/uiconfig/swriter/ui/stringinput.ui:74 @@ -27320,7 +27320,7 @@ #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:146 msgctxt "tablecolumnpage|extended_tip|space" msgid "Displays the amount of space that is available for adjusting the width of the columns. To set the width of the table, click the Table tab." -msgstr "Menampilkan jumlah ruang yang tersedia untuk menyesuaikan lebar kolom. Untuk mengatur lebar tabel, klik tab Tabel." +msgstr "Menayangkan jumlah ruang yang tersedia untuk menyesuaikan lebar kolom. Untuk mengatur lebar tabel, klik tab Tabel." #. GZ93v #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:191 @@ -27398,13 +27398,13 @@ #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:416 msgctxt "tablecolumnpage|extended_tip|back" msgid "Displays the table columns found to the left of the current column." -msgstr "Tampilkan kolom tabel yang ditemukan di sebelah kiri kolom kini." +msgstr "Menayangkan kolom tabel yang ditemukan di sebelah kiri kolom kini." #. bJpi8 #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:436 msgctxt "tablecolumnpage|extended_tip|next" msgid "Displays the table columns found to the right of the current column." -msgstr "Tampilkan kolom tabel yang ditemukan di sebelah kanan kolom kini." +msgstr "Menayangkan kolom tabel yang ditemukan di sebelah kanan kolom kini." #. iJhVV #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:451 @@ -27722,7 +27722,7 @@ #: sw/uiconfig/swriter/ui/templatedialog1.ui:173 msgctxt "templatedialog1|organizer" msgid "Organizer" -msgstr "Pengorganisasi" +msgstr "Pengelola" #. BvEuD #: sw/uiconfig/swriter/ui/templatedialog1.ui:220 @@ -27770,7 +27770,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:168 msgctxt "templatedialog16|organizer" msgid "Organizer" -msgstr "Pengorganisasi" +msgstr "Pengelola" #. VzEYH #: sw/uiconfig/swriter/ui/templatedialog16.ui:169 @@ -27860,7 +27860,7 @@ #: sw/uiconfig/swriter/ui/templatedialog2.ui:168 msgctxt "templatedialog2|organizer" msgid "Organizer" -msgstr "Pengorganisasi" +msgstr "Pengelola" #. G7U5N #: sw/uiconfig/swriter/ui/templatedialog2.ui:215 @@ -27950,7 +27950,7 @@ #: sw/uiconfig/swriter/ui/templatedialog2.ui:887 msgctxt "templatedialog2|condition" msgid "Condition" -msgstr "Kondisi" +msgstr "Syarat" #. H6CCV #: sw/uiconfig/swriter/ui/templatedialog2.ui:935 @@ -27974,7 +27974,7 @@ #: sw/uiconfig/swriter/ui/templatedialog4.ui:168 msgctxt "templatedialog4|organizer" msgid "Organizer" -msgstr "Pengorganisasi" +msgstr "Pengelola" #. Q2PQs #: sw/uiconfig/swriter/ui/templatedialog4.ui:215 @@ -28040,7 +28040,7 @@ #: sw/uiconfig/swriter/ui/templatedialog8.ui:168 msgctxt "templatedialog8|organizer" msgid "Organizer" -msgstr "Pengorganisasi" +msgstr "Pengelola" #. UbZRu #: sw/uiconfig/swriter/ui/templatedialog8.ui:215 @@ -28274,7 +28274,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:430 msgctxt "textgridpage|extended_tip|checkCB_RUBYBELOW" msgid "Displays Ruby text to the left of or below the base text." -msgstr "Menampilkan teks Ruby di sebelah kiri atau di bawah teks dasar." +msgstr "Menayangkan teks Ruby di sebelah kiri atau di bawah teks dasar." #. qCgRA #: sw/uiconfig/swriter/ui/textgridpage.ui:446 @@ -28286,7 +28286,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:476 msgctxt "textgridpage|checkCB_DISPLAY" msgid "Display grid" -msgstr "Tampilkan kisi" +msgstr "Tayangkan kisi" #. rB5ty #: sw/uiconfig/swriter/ui/textgridpage.ui:485 @@ -28322,7 +28322,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:565 msgctxt "textgridpage|labelFL_DISPLAY" msgid "Grid Display" -msgstr "Tampilan Kisi" +msgstr "Tayangan Kisi" #. F6YEz #: sw/uiconfig/swriter/ui/textgridpage.ui:580 @@ -28442,7 +28442,7 @@ #: sw/uiconfig/swriter/ui/tocdialog.ui:86 msgctxt "tocdialog|showexample" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. FcBc2 #: sw/uiconfig/swriter/ui/tocdialog.ui:162 @@ -28478,7 +28478,7 @@ #: sw/uiconfig/swriter/ui/tocdialog.ui:374 msgctxt "tocdialog|example-atkobject" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. P4YC4 #: sw/uiconfig/swriter/ui/tocentriespage.ui:120 @@ -28514,7 +28514,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:227 msgctxt "tocentriespage|extended_tip|token" msgid "Displays the remainder of the Structure line." -msgstr "Tampilkan sisa baris Struktur." +msgstr "Menayangkan sisa baris Struktur." #. 6JdC4 #: sw/uiconfig/swriter/ui/tocentriespage.ui:254 @@ -29252,7 +29252,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:670 msgctxt "tocindexpage|displayft" msgid "Display:" -msgstr "Tampilan:" +msgstr "Tayangan:" #. AC6q4 #: sw/uiconfig/swriter/ui/tocindexpage.ui:685 @@ -29558,7 +29558,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:50 msgctxt "extended_tip|helplines" msgid "Displays snap lines around the frames when frames are moved. You can select the Helplines While Moving option to show the exact position of the object using lineal values." -msgstr "Menampilkan garis kancing di sekitar bingkai ketika bingkai dipindahkan. Anda dapat memilih pilihan Garis bantu Ketika Memindah untuk menunjukkan posisi yang tepat dari objek menggunakan nilai garis." +msgstr "Menayangkan garis kancing di sekitar bingkai ketika bingkai dipindahkan. Anda dapat memilih pilihan Garis bantu Ketika Memindah untuk menunjukkan posisi yang tepat dari objek menggunakan nilai garis." #. m8nZM #: sw/uiconfig/swriter/ui/viewoptionspage.ui:65 @@ -29576,7 +29576,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:102 msgctxt "extended_tip|graphics" msgid "Specifies whether to display images and objects on the screen." -msgstr "Menentukan apakah akan menampilkan citra dan objek di layar." +msgstr "Menentukan apakah akan menayangkan citra dan objek di layar." #. KFpGX #: sw/uiconfig/swriter/ui/viewoptionspage.ui:113 @@ -29588,7 +29588,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:121 msgctxt "extended_tip|tables" msgid "Displays the tables contained in your document." -msgstr "Menampilkan tabel yang ada dalam dokumen Anda." +msgstr "Menayangkan tabel yang ada dalam dokumen Anda." #. jfsAp #: sw/uiconfig/swriter/ui/viewoptionspage.ui:132 @@ -29600,7 +29600,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:140 msgctxt "extended_tip|drawings" msgid "Displays the drawings and controls contained in your document." -msgstr "Menampilkan gambar dan kendali yang ada dalam dokumen Anda." +msgstr "Menayangkan gambar dan kendali yang ada dalam dokumen Anda." #. YonUg #: sw/uiconfig/swriter/ui/viewoptionspage.ui:151 @@ -29612,7 +29612,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:159 msgctxt "extended_tip|comments" msgid "Displays comments. Click a comment to edit the text. Use the context menu in Navigator to locate or delete a comment. Use the comments's context menu to delete this comment or all comments or all comments of this author." -msgstr "Menampilkan komentar. Klik komentar untuk menyunting teksnya. Gunakan menu konteks pada Navigator untuk mencari atau menghapus komentar. Gunakan menu konteks komentar untuk menghapus komentar ini atau semua komentar ataupun semua komentar dari penulis ini." +msgstr "Menayangkan komentar. Klik komentar untuk menyunting teksnya. Gunakan menu konteks pada Navigator untuk mencari atau menghapus komentar. Gunakan menu konteks komentar untuk menghapus komentar ini atau semua komentar ataupun semua komentar dari penulis ini." #. L6B3t #: sw/uiconfig/swriter/ui/viewoptionspage.ui:170 @@ -29624,7 +29624,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:188 msgctxt "viewoptionspage|displaylabel" msgid "Display" -msgstr "Tampilan" +msgstr "Tayangan" #. Fs7Ah #: sw/uiconfig/swriter/ui/viewoptionspage.ui:218 @@ -29636,7 +29636,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:226 msgctxt "extended_tip|hiddentextfield" msgid "Displays text that is hidden by Conditional Text or Hidden Text fields." -msgstr "Menampilkan teks yang disembunyikan oleh ruas Teks Bersyarat atau Teks Tersembunyi." +msgstr "Menayangkan teks yang disembunyikan oleh ruas Teks Bersyarat atau Teks Tersembunyi." #. Mbfk7 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:237 @@ -29648,13 +29648,13 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:245 msgctxt "extended_tip|hiddenparafield" msgid "If you have inserted text using the Hidden Paragraph field, specifies whether to display the hidden paragraph." -msgstr "Jika Anda telah menyisipkan teks menggunakan ruas Paragraf Tersembunyi, tentukan apakah akan menampilkan paragraf tersembunyi tersebut." +msgstr "Jika Anda telah menyisipkan teks menggunakan ruas Paragraf Tersembunyi, tentukan apakah akan menayangkan paragraf tersembunyi tersebut." #. hFXBr #: sw/uiconfig/swriter/ui/viewoptionspage.ui:260 msgctxt "viewoptionspage|fieldslabel" msgid "Display Fields" -msgstr "Tampilan Ruas" +msgstr "Tayangkan Ruas" #. EiyCk #: sw/uiconfig/swriter/ui/viewoptionspage.ui:290 @@ -29666,7 +29666,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:298 msgctxt "extended_tip|changesinmargin" msgid "Displays text that is hidden by Conditional Text or Hidden Text fields." -msgstr "Menampilkan teks yang disembunyikan oleh ruas Teks Bersyarat atau Teks Tersembunyi." +msgstr "Menayangkan teks yang disembunyikan oleh ruas Teks Bersyarat atau Teks Tersembunyi." #. 6RQCH #: sw/uiconfig/swriter/ui/viewoptionspage.ui:309 @@ -29678,7 +29678,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:327 msgctxt "viewoptionspage|changeslabel" msgid "Display tracked changes" -msgstr "Tampilan perubahan lacakan" +msgstr "Tayangkan perubahan lacakan" #. YD6TK #: sw/uiconfig/swriter/ui/viewoptionspage.ui:369 @@ -29702,19 +29702,19 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:407 msgctxt "extended_tip|vruler" msgid "Displays the vertical ruler. Select the desired measurement unit from the corresponding list." -msgstr "Menampilkan penggaris vertikal. Pilih unit pengukuran yang diinginkan dari senarai yang sesuai." +msgstr "Menayangkan penggaris vertikal. Pilih unit pengukuran yang diinginkan dari senarai yang sesuai." #. VproR #: sw/uiconfig/swriter/ui/viewoptionspage.ui:423 msgctxt "extended_tip|hrulercombobox" msgid "Displays the horizontal ruler. Select the desired measurement unit from the corresponding list." -msgstr "Menampilkan penggaris horizontal. Pilih unit pengukuran yang diinginkan dari senarai yang sesuai." +msgstr "Menayangkan penggaris horizontal. Pilih unit pengukuran yang diinginkan dari senarai yang sesuai." #. HAEGG #: sw/uiconfig/swriter/ui/viewoptionspage.ui:442 msgctxt "extended_tip|vrulercombobox" msgid "Displays the vertical ruler. Select the desired measurement unit from the corresponding list." -msgstr "Menampilkan penggaris vertikal. Pilih unit pengukuran yang diinginkan dari senarai yang sesuai." +msgstr "Menayangkan penggaris vertikal. Pilih unit pengukuran yang diinginkan dari senarai yang sesuai." #. P2W3a #: sw/uiconfig/swriter/ui/viewoptionspage.ui:453 @@ -29738,13 +29738,13 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:482 msgctxt "extended_tip|hruler" msgid "Displays the horizontal ruler. Select the desired measurement unit from the corresponding list." -msgstr "Menampilkan penggaris horizontal. Pilih unit pengukuran yang diinginkan dari senarai yang sesuai." +msgstr "Menayangkan penggaris horizontal. Pilih unit pengukuran yang diinginkan dari senarai yang sesuai." #. me2R7 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:503 msgctxt "viewoptionspage|label3" msgid "View" -msgstr "Tampilan" +msgstr "Tilikan" #. r6Sp2 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:537 @@ -29774,7 +29774,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:603 msgctxt "viewoptionspage|extended_tip|outlinecontentvisibilitybutton" msgid "Displays outline folding buttons on the left of the outline headings." -msgstr "Menampilkan tombol pelipatan kerangka pada bagian kiri tajuk-tajuk kerangka." +msgstr "Menayangkan tombol pelipatan kerangka pada bagian kiri tajuk-tajuk kerangka." #. gAXeG #: sw/uiconfig/swriter/ui/viewoptionspage.ui:614 @@ -29786,7 +29786,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:623 msgctxt "viewoptionspage|extended_tip|suboutlinelevelsascontent" msgid "Displays the folding buttons of the outline sub levels." -msgstr "Menampilkan tombol pelipatan sub-sub tingkat kerangka." +msgstr "Menayangkan tombol pelipatan sub-sub tingkat kerangka." #. P8f3D #: sw/uiconfig/swriter/ui/viewoptionspage.ui:638 @@ -29798,7 +29798,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:666 msgctxt "extended_tip|ViewOptionsPage" msgid "Defines the default settings for displaying objects in your text documents and also the default settings for the window elements." -msgstr "Menentukan pengaturan bawaan untuk menampilkan objek dalam dokumen teks Anda dan juga pengaturan bawaan untuk elemen jendela." +msgstr "Menentukan pengaturan baku untuk menayangkan objek dalam dokumen teks Anda dan juga pengaturan baku untuk elemen jendela." #. z2dFZ #: sw/uiconfig/swriter/ui/warndatasourcedialog.ui:7 @@ -29853,7 +29853,7 @@ #: sw/uiconfig/swriter/ui/watermarkdialog.ui:118 msgctxt "watermarkdialog|extended_tip|TextInput" msgid "Enter the watermark text to be displayed as image in the page background." -msgstr "Masukkan teks watermark akan ditampilkan sebagai gambar di latar belakang halaman." +msgstr "Masukkan teks watermark akan ditayangkan sebagai citra di latar belakang halaman." #. Cy5bR #: sw/uiconfig/swriter/ui/watermarkdialog.ui:132 diff -Nru libreoffice-7.4.6/translations/source/id/swext/mediawiki/help.po libreoffice-7.4.7/translations/source/id/swext/mediawiki/help.po --- libreoffice-7.4.6/translations/source/id/swext/mediawiki/help.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/swext/mediawiki/help.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2022-07-04 16:16+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542467008.000000\n" #. 7EFBE @@ -491,7 +491,7 @@ "par_id3735465\n" "help.text" msgid "Native OpenDocument hyperlinks are transformed into “external” wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the wiki web. For creating wiki links that point to other subjects of the same wiki domain, use wiki links." -msgstr "Pranala natif OpenDocument akan diubah menjadi taut \"eksternal\" wiki. Oleh karenanya, fasilitas taut bawaan OpenDocument harus digunakan hanya untuk membuat taut yang menuju ke situs lain di luar web wiki. Untuk menciptakan taut wiki yang mengarah pada subjek lain pada domain wiki yang sama, gunakan taut wiki." +msgstr "Pranala natif OpenDocument akan diubah menjadi taut \"eksternal\" wiki. Oleh karenanya, fasilitas taut bawaan OpenDocument harus digunakan hanya untuk membuat taut yang menuju ke situs lain di luar web wiki. Untuk menciptakan taut wiki yang mengarah pada subjek lain pada ranah wiki yang sama, gunakan taut wiki." #. ULYGr #: wikiformats.xhp @@ -590,7 +590,7 @@ "par_id3541673\n" "help.text" msgid "Images cannot be exported by a transformation producing a single file of wiki text. However, if the image is already uploaded to the target wiki domain (e. g., Wikimedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported." -msgstr "Gambar tidak bisa diekspor sebagai berkas tunggal teks wiki. Namun, jika gambar sudah diunggah pada domain wiki yang dituju (mis. WikiMedia Commons), maka transformasi akan menghasilkan tag gambar yang benar yang menyertakan gambar. Keterangan gambar juga didukung." +msgstr "Gambar tidak bisa diekspor sebagai berkas tunggal teks wiki. Namun, jika gambar sudah diunggah pada ranah wiki yang dituju (mis. WikiMedia Commons), maka transformasi akan menghasilkan tag gambar yang benar yang menyertakan gambar. Keterangan gambar juga didukung." #. nGuGG #: wikiformats.xhp diff -Nru libreoffice-7.4.6/translations/source/id/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-7.4.7/translations/source/id/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-7.4.6/translations/source/id/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-05-17 06:37+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1401697395.000000\n" #. sc9Hg @@ -34,7 +34,7 @@ "NoWikiFilter\n" "value.text" msgid "The MediaWiki export filter cannot be found. Choose 'Tools-XML Filter Settings' to install the filter, or use the setup to install the component." -msgstr "Penyaring ekspor MediaWiki tidak ditemukan. Pilih 'Perkakas-Pengaturan Penyaring XML' untuk memasang penyaring tersebut, atau gunakan setup untuk memasang komponen itu." +msgstr "Penapis ekspor MediaWiki tidak ditemukan. Pilih 'Perkakas-Pengaturan Penapis XML' untuk memasang penapis tersebut, atau gunakan penata untuk memasang komponen tersebut." #. iB82N #: WikiExtension.xcu diff -Nru libreoffice-7.4.6/translations/source/id/sysui/desktop/share.po libreoffice-7.4.7/translations/source/id/sysui/desktop/share.po --- libreoffice-7.4.6/translations/source/id/sysui/desktop/share.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/sysui/desktop/share.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-05-16 05:38+0000\n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1463424021.000000\n" #. a9uCy @@ -554,7 +554,7 @@ "xsltfilter\n" "LngText.text" msgid "XSLT based filters" -msgstr "Penyaring berbasis XSLT" +msgstr "Penapis berbasis XSLT" #. DE2Gk #: launcher_unityquicklist.ulf diff -Nru libreoffice-7.4.6/translations/source/id/uui/messages.po libreoffice-7.4.7/translations/source/id/uui/messages.po --- libreoffice-7.4.6/translations/source/id/uui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/uui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-04-26 13:59+0200\n" -"PO-Revision-Date: 2022-04-05 00:40+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1550305636.000000\n" #. DLY8p @@ -534,7 +534,7 @@ #: uui/inc/ids.hrc:172 msgctxt "STR_UUI_SSLWARN_INVALID_TITLE" msgid "Security Warning: Domain Name Mismatch" -msgstr "Peringatan Keamanan: Nama Domain Tidak Cocok" +msgstr "Peringatan Keamanan: Nama Ranah Tidak Cocok" #. wH3TZ msgctxt "stock" @@ -1011,13 +1011,13 @@ #: uui/uiconfig/ui/filterselect.ui:16 msgctxt "filterselect|FilterSelectDialog" msgid "Filter Selection" -msgstr "Saring Pemilihan" +msgstr "Tapis Pemilihan" #. HoJXz #: uui/uiconfig/ui/filterselect.ui:137 msgctxt "filterselect|extended_tip|filters" msgid "Select the import filter for the file that you want to open." -msgstr "Pilih penyaring impor untuk berkas yang ingin Anda buka." +msgstr "Pilih penapis impor untuk berkas yang ingin Anda buka." #. 8o9Bq #: uui/uiconfig/ui/logindialog.ui:8 @@ -1255,7 +1255,7 @@ #: uui/uiconfig/ui/simplenameclash.ui:55 msgctxt "simplenameclash|rename" msgid "Rename" -msgstr "Ganti Nama" +msgstr "Nama Ulang" #. iX6rE #: uui/uiconfig/ui/sslwarndialog.ui:8 diff -Nru libreoffice-7.4.6/translations/source/id/vcl/messages.po libreoffice-7.4.7/translations/source/id/vcl/messages.po --- libreoffice-7.4.6/translations/source/id/vcl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/vcl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-08-24 12:29+0200\n" -"PO-Revision-Date: 2022-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564211137.000000\n" #. k5jTM @@ -604,7 +604,7 @@ #: vcl/inc/printaccessoryview.hrc:27 msgctxt "SV_PRINT_NATIVE_STRINGS" msgid "Preview" -msgstr "Pratinjau" +msgstr "Pratilik" #. BgxCz #: vcl/inc/printaccessoryview.hrc:28 @@ -864,7 +864,7 @@ #: vcl/inc/strings.hrc:73 msgctxt "SV_PRINT_NOPREVIEW" msgid "Preview is disabled" -msgstr "Pratinjau dinonaktifkan" +msgstr "Pratilik dinonaktifkan" #. xMtCc #: vcl/inc/strings.hrc:74 @@ -1756,7 +1756,7 @@ #: vcl/uiconfig/ui/cupspassworddialog.ui:148 msgctxt "cupspassworddialog|label1" msgid "_Domain:" -msgstr "_Domain:" +msgstr "_Ranah:" #. zQA7A #: vcl/uiconfig/ui/editmenu.ui:12 @@ -1852,13 +1852,13 @@ #: vcl/uiconfig/ui/printdialog.ui:160 msgctxt "printdialog|printpreview" msgid "Print preview" -msgstr "Pratinjau cetak" +msgstr "Pratilik cetak" #. 67YPm #: vcl/uiconfig/ui/printdialog.ui:166 msgctxt "printdialog|extended_tip|preview" msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview." -msgstr "Pratinjau menampilkan bagaimana lembar kertas akan terlihat. Anda dapat menelusuri semua lembar kertas dengan tombol dibawah pratinjau." +msgstr "Pratilik menampilkan bagaimana lembar kertas akan terlihat. Anda dapat menelusuri semua lembar kertas dengan tombol di bawah pratilik." #. dQEY8 #: vcl/uiconfig/ui/printdialog.ui:196 @@ -1870,7 +1870,7 @@ #: vcl/uiconfig/ui/printdialog.ui:205 msgctxt "printdialog|extended_tip|previewbox" msgid "Turn on or off display of the print preview." -msgstr "Menyalakan atau mematikan tampilan dari pratinjau cetak." +msgstr "Menyalakan atau mematikan tayangan dari pratilik cetak." #. SbgFv #: vcl/uiconfig/ui/printdialog.ui:235 @@ -1882,7 +1882,7 @@ #: vcl/uiconfig/ui/printdialog.ui:240 msgctxt "printdialog|extended_tip|btnFirst" msgid "Shows preview of the first page." -msgstr "Menampilkan pratinjau dari halaman pertama." +msgstr "Menampilkan pratilik dari halaman pertama." #. ebceU #: vcl/uiconfig/ui/printdialog.ui:255 @@ -1894,13 +1894,13 @@ #: vcl/uiconfig/ui/printdialog.ui:260 msgctxt "printdialog|extended_tip|backward" msgid "Shows preview of the previous page." -msgstr "Menampilkan pratinjau dari halaman sebelumnya." +msgstr "Menampilkan pratilik dari halaman sebelumnya." #. c7uMG #: vcl/uiconfig/ui/printdialog.ui:279 msgctxt "printdialog|extended_tip|pageedit" msgid "Enter the number of page to be shown in the preview." -msgstr "Masukkan angka halaman yang akan ditampilkan pada pratinjau." +msgstr "Masukkan angka halaman yang akan ditampilkan pada pratilik." #. yyFVV #: vcl/uiconfig/ui/printdialog.ui:293 @@ -1918,7 +1918,7 @@ #: vcl/uiconfig/ui/printdialog.ui:311 msgctxt "printdialog|extended_tip|forward" msgid "Shows preview of the next page." -msgstr "Menampilkan pratinjau untuk halaman selanjutnya." +msgstr "Menampilkan pratilik untuk halaman selanjutnya." #. Aq6Gv #: vcl/uiconfig/ui/printdialog.ui:326 @@ -1930,7 +1930,7 @@ #: vcl/uiconfig/ui/printdialog.ui:331 msgctxt "printdialog|extended_tip|btnLast" msgid "Shows preview of the last page." -msgstr "Menampilkan pratinjau dari halaman terakhir." +msgstr "Menampilkan pratilik halaman terakhir." #. PD6Aj #: vcl/uiconfig/ui/printdialog.ui:407 @@ -2194,7 +2194,7 @@ #: vcl/uiconfig/ui/printdialog.ui:983 msgctxt "printdialog|extended_tip|papersizebox" msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size." -msgstr "Atur ukuran kertas yang anda akan gunakan. Pratinjau akan menampilkan tampilan dokumen pada sebuah kertas yang diberikan ukuran." +msgstr "Atur ukuran kertas yang anda akan gunakan. Pratilik akan menampilkan tilikan dokumen pada sebuah kertas yang diberikan ukuran." #. EZdsx #: vcl/uiconfig/ui/printdialog.ui:1018 @@ -2344,13 +2344,13 @@ #: vcl/uiconfig/ui/printdialog.ui:1335 msgctxt "printdialog|collationpreview" msgid "Collation preview" -msgstr "Pratinjau kolasi" +msgstr "Pratilik kolasi" #. dePkB #: vcl/uiconfig/ui/printdialog.ui:1340 msgctxt "printdialog|extended_tip|orderpreview" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." -msgstr "Mengubah susunan halaman untuk penceta yang akan dicetak pada setiap lembar kertas. Pratinjau menunjukkan bagaimana setiap kertas terakhir akan terlihat" +msgstr "Mengubah susunan halaman untuk penceta yang akan dicetak pada setiap lembar kertas. Pratilik menunjukkan bagaimana setiap kertas terakhir akan terlihat" #. fCjdq #: vcl/uiconfig/ui/printdialog.ui:1362 diff -Nru libreoffice-7.4.6/translations/source/id/wizards/source/resources.po libreoffice-7.4.7/translations/source/id/wizards/source/resources.po --- libreoffice-7.4.6/translations/source/id/wizards/source/resources.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/wizards/source/resources.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-10-27 12:31+0100\n" -"PO-Revision-Date: 2021-06-18 21:47+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.6.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563639812.000000\n" #. 8UKfi @@ -1607,7 +1607,7 @@ "RID_QUERY_24\n" "property.text" msgid "Condition" -msgstr "Kondisi" +msgstr "Syarat" #. Dvk6K #: resources_en_US.properties @@ -1832,7 +1832,7 @@ "RID_QUERY_53\n" "property.text" msgid "Search conditions:" -msgstr "Kondisi pencarian:" +msgstr "Syarat pencarian:" #. DocWB #: resources_en_US.properties @@ -1841,7 +1841,7 @@ "RID_QUERY_54\n" "property.text" msgid "No conditions were assigned." -msgstr "Kondisi belum dipilih." +msgstr "Syarat belum ditetapkan." #. BfAEG #: resources_en_US.properties @@ -1886,7 +1886,7 @@ "RID_QUERY_59\n" "property.text" msgid "Grouping conditions:" -msgstr "Kondisi pengelompokan:" +msgstr "Syarat pengelompokan:" #. EoMHV #: resources_en_US.properties @@ -1895,7 +1895,7 @@ "RID_QUERY_60\n" "property.text" msgid "No grouping conditions were assigned." -msgstr "Kondisi pengelompokan belum dipilih." +msgstr "Syarat pengelompokan belum ditetapkan." #. NNF8b #: resources_en_US.properties @@ -1922,7 +1922,7 @@ "RID_QUERY_72\n" "property.text" msgid "Select the search conditions" -msgstr "Pilih kondisi pencarian" +msgstr "Pilih syarat pencarian" #. UHCrm #: resources_en_US.properties @@ -1949,7 +1949,7 @@ "RID_QUERY_75\n" "property.text" msgid "Select the grouping conditions" -msgstr "Pilih kondisi pengelompokan" +msgstr "Pilih syarat pengelompokan" #. sy7Lt #: resources_en_US.properties @@ -1994,7 +1994,7 @@ "RID_QUERY_82\n" "property.text" msgid "Search conditions" -msgstr "Kondisi pencarian" +msgstr "Syarat pencarian" #. Z22GZ #: resources_en_US.properties @@ -2021,7 +2021,7 @@ "RID_QUERY_85\n" "property.text" msgid "Grouping conditions" -msgstr "Kondisi pengelompokan" +msgstr "Syarat pengelompokan" #. EB7JF #: resources_en_US.properties @@ -2057,7 +2057,7 @@ "RID_QUERY_89\n" "property.text" msgid "The condition ' ' was chosen twice. Each condition can only be chosen once" -msgstr "Kondisi ' ' telah dipilih dua kali. Tiap kondisi hanya boleh dipilih sekali." +msgstr "Syarat ' ' telah dipilih dua kali. Tiap syarat hanya boleh dipilih sekali." #. ZAHzB #: resources_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/id/xmlsecurity/messages.po libreoffice-7.4.7/translations/source/id/xmlsecurity/messages.po --- libreoffice-7.4.6/translations/source/id/xmlsecurity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/id/xmlsecurity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:21+0100\n" -"PO-Revision-Date: 2021-11-15 11:36+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Rizal Muttaqin \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563272938.000000\n" #. EyJrF @@ -597,7 +597,7 @@ #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:30 msgctxt "extended_tip|low" msgid "A macro can be set to auto-start, and it can perform potentially damaging actions, as for example delete or rename files. This setting is not recommended when you open documents from other authors." -msgstr "Sebuah makto dapat diatur agar dimulai secara otomatis, dan Makro dapat menjalankan tindakan yang berpotensi untuk merusak, misalnya sebagai contoh untuk menghapus dan mengganti nama berkas. Pengaturan ini tidak direkomendasikan saat Anda membuka dokumen dari penulis lain." +msgstr "Sebuah makro dapat diatur agar dimulai secara otomatis, dan makro dapat menjalankan tindakan yang berpotensi untuk merusak, misalnya sebagai contoh untuk menghapus dan menamai ulang berkas. Pengaturan ini tidak direkomendasikan saat Anda membuka dokumen dari penulis lain." #. F9QCX #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:41 @@ -799,7 +799,7 @@ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:228 msgctxt "selectcertificatedialog|extended_tip|viewcert" msgid "Opens the View Certificate dialog where you can examine the selected certificate." -msgstr "Buka dialog Tampilkan Sertifikat dimana anda dapat memeriksa sertifikat terpilih." +msgstr "Buka dialog Tilikkan Sertifikat di mana anda dapat memeriksa sertifikat terpilih." #. dbgmP #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:246 diff -Nru libreoffice-7.4.6/translations/source/it/cui/messages.po libreoffice-7.4.7/translations/source/it/cui/messages.po --- libreoffice-7.4.6/translations/source/it/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-17 21:32+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564768476.000000\n" #. GyY9M @@ -3025,7 +3025,7 @@ #: cui/inc/tipoftheday.hrc:191 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." -msgstr "Adatta il tuo foglio o l'area di stampa a una pagina con Formato ▸ Pagina ▸ scheda Foglio ▸ Modo scala." +msgstr "Adatta il tuo foglio o l'area di stampa a una pagina con Formato ▸ Stile di pagina ▸ scheda Foglio ▸ Modo scala." #. KPLPC #: cui/inc/tipoftheday.hrc:192 @@ -3106,7 +3106,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 "Applica gli stili dei titoli del paragrafo in Writer con le combinazioni di tasti: %MOD1+ applica il Titolo 1, %MOD1+ applica il Titolo 2, e via discorrendo." +msgstr "Applica gli stili dei titoli del paragrafo in Writer con le combinazioni di tasti: %MOD1+1 applica il Titolo 1, %MOD1+2 applica il Titolo 2, ecc." #. DA82R #: cui/inc/tipoftheday.hrc:205 @@ -8061,7 +8061,7 @@ #: cui/uiconfig/ui/customizedialog.ui:281 msgctxt "customizedialog|contextmenus" msgid "Context Menus" -msgstr "Menu di contesto" +msgstr "Menu contestuali" #. G6BaU #: cui/uiconfig/ui/customizedialog.ui:329 @@ -22184,7 +22184,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:305 msgctxt "zoomdialog|singlepage" msgid "Single page" -msgstr "Singola pagina" +msgstr "Pagina singola" #. E2onG #: cui/uiconfig/ui/zoomdialog.ui:314 diff -Nru libreoffice-7.4.6/translations/source/it/extensions/messages.po libreoffice-7.4.7/translations/source/it/extensions/messages.po --- libreoffice-7.4.6/translations/source/it/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-06-09 10:00+0000\n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" "Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564768483.000000\n" #. cBx8W @@ -2259,7 +2259,7 @@ #: extensions/inc/strings.hrc:272 msgctxt "RID_STR_PROPTITLE_EDIT" msgid "Text Box" -msgstr "Campo di testo" +msgstr "Casella di testo" #. DEn9D #: extensions/inc/strings.hrc:273 diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/scalc/01.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/scalc/01.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/scalc/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/scalc/01.po 2023-05-03 15:22:13.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: 2022-07-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-04-04 11:33+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564768864.000000\n" #. sZfWF @@ -19082,12 +19082,13 @@ #. 3jevg #: 04060109.xhp +#, fuzzy msgctxt "" "04060109.xhp\n" "par_id4484084\n" "help.text" msgid "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion." -msgstr "Se CERCA non può trovare il criterio di ricerca, corrisponde al valore più grande nel vettore di ricerca, il quale è inferiore o uguale al criterio di ricerca." +msgstr "Se CERCA non riesce a trovare il criterio di ricerca, individua il valore più grande nel vettore di ricerca che sia inferiore o uguale al criterio di ricerca." #. sLcHB #: 04060109.xhp diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/schart/00.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/schart/00.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/schart/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/schart/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-01-24 14:44+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563484713.000000\n" #. E9tti @@ -41,7 +41,7 @@ "par_id3150791\n" "help.text" msgid "Choose View - Chart Data Table (Charts)" -msgstr "Scegliete Visualizza - Tabella dei dati del grafico (Grafici)" +msgstr "Scegliere Visualizza - Tabella dei dati del grafico (Grafici)" #. fU5ZG #: 00000004.xhp @@ -50,7 +50,7 @@ "par_id3154686\n" "help.text" msgid "On Formatting bar, click" -msgstr "Nella barra di formattazione, scegliete" +msgstr "Nella barra Formattazione, scegliere" #. GDpSu #: 00000004.xhp @@ -77,7 +77,7 @@ "par_id3153160\n" "help.text" msgid "Choose Insert - Titles (Charts)" -msgstr "Scegliete Inserisci - Titoli (Grafici)" +msgstr "Scegliere Inserisci - Titoli (Grafici)" #. 3x5QB #: 00000004.xhp @@ -86,7 +86,7 @@ "par_id3149121\n" "help.text" msgid "Choose Insert - Legend (Charts)" -msgstr "Scegliete Inserisci - Legenda (Grafici)" +msgstr "Scegliere Inserisci - Legenda (Grafici)" #. HqMQr #: 00000004.xhp @@ -95,7 +95,7 @@ "par_id3155444\n" "help.text" msgid "Choose Format - Legend - Position tab (Charts)" -msgstr "Scegliete Formato - Legenda, scheda Posizione (Grafici)" +msgstr "Scegliere Formato - Legenda, scheda Posizione (Grafici)" #. EH75q #: 00000004.xhp @@ -104,7 +104,7 @@ "par_id3156385\n" "help.text" msgid "Choose Insert - Data Labels (Charts)" -msgstr "Scegliete Inserisci - Didascalia dati (Grafici)" +msgstr "Scegliere Inserisci - Didascalia dati (Grafici)" #. zEfSg #: 00000004.xhp @@ -113,7 +113,7 @@ "par_id3147341\n" "help.text" msgid "Choose Format - Format Selection - Data Point/Data Series - Data Labels tab (for data series and data point) (Charts)" -msgstr "Scegliete Formato - Formato selezione - Punto dati/Serie dati , scheda Didascalia dati (per serie dati e punto dati) (Grafici)" +msgstr "Scegliere Formato - Formato selezione - Punto dati/Serie dati , scheda Didascalia dati (per serie dati e punto dati) (Grafici)" #. SQbvj #: 00000004.xhp @@ -122,7 +122,7 @@ "par_id3149565\n" "help.text" msgid "Choose Insert - Axes (Charts)" -msgstr "Scegliete Inserisci - Assi (Grafici)" +msgstr "Scegliere Inserisci - Assi (Grafici)" #. GttHw #: 00000004.xhp @@ -131,7 +131,7 @@ "par_id3150297\n" "help.text" msgid "Choose Insert - Grids (Charts)" -msgstr "Scegliete Inserisci - Griglia (Grafici)" +msgstr "Scegliere Inserisci - Griglia (Grafici)" #. LWyLt #: 00000004.xhp @@ -140,7 +140,7 @@ "par_id3145789\n" "help.text" msgid "On Formatting bar, click" -msgstr "Nella barra di formattazione, scegliete" +msgstr "Nella barra Formattazione, scegliere" #. zTF9a #: 00000004.xhp @@ -185,7 +185,7 @@ "par_id3148869\n" "help.text" msgid "Choose Insert - X Error Bars, or Insert - Y Error Bars (Charts)" -msgstr "Scegliete Inserisci - Barre errore X o Inserisci - Barre errore Y (Grafici)" +msgstr "Scegliere Inserisci - Barre errore X o Inserisci - Barre errore Y (Grafici)" #. ZD5K5 #: 00000004.xhp @@ -194,7 +194,7 @@ "par_id1061738\n" "help.text" msgid "Choose Insert - Trend Line (Charts)" -msgstr "Menu Inserisci - Linee di tendenza (Grafici)" +msgstr "Scegliere Inserisci - Linee di tendenza (Grafici)" #. UzBjR #: 00000004.xhp @@ -203,7 +203,7 @@ "par_id3154532\n" "help.text" msgid "Choose Insert - Special Character (Charts)" -msgstr "Scegliete Inserisci - Carattere speciale (Grafici)" +msgstr "Scegliere Inserisci - Carattere speciale (Grafici)" #. 8TxLK #: 00000004.xhp @@ -212,7 +212,7 @@ "par_id3153246\n" "help.text" msgid "Choose Format - Format Selection (Charts)" -msgstr "Scegliete Formato - Formato selezione (Grafici)" +msgstr "Scegliere Formato - Formato selezione (Grafici)" #. DqsZe #: 00000004.xhp @@ -221,7 +221,7 @@ "par_id3150214\n" "help.text" msgid "Choose Format - Format Selection - Data Point dialog (Charts)" -msgstr "Scegliete Formato - Formato selezione, finestra di dialogo Punto dati (Grafici)" +msgstr "Scegliere Formato - Formato selezione, finestra di dialogo Punto dati (Grafici)" #. ASTDr #: 00000004.xhp @@ -230,7 +230,7 @@ "par_id3154765\n" "help.text" msgid "Choose Format - Format Selection - Data Series dialog (Charts)" -msgstr "Scegliete Formato - Formato selezione, finestra di dialogo Serie dati (Grafici)" +msgstr "Scegliere Formato - Formato selezione, finestra di dialogo Serie dati (Grafici)" #. p2eYn #: 00000004.xhp @@ -239,7 +239,7 @@ "par_id3153009\n" "help.text" msgid "Choose Format - Format Selection - Data Series - Options tab (Charts)" -msgstr "Scegliete Formato - Formato selezione - Serie di dati, scheda Opzioni (Grafici)" +msgstr "Scegliere Formato - Formato selezione - Serie di dati, scheda Opzioni (Grafici)" #. yRSaN #: 00000004.xhp @@ -248,7 +248,7 @@ "par_id3154707\n" "help.text" msgid "Choose Format - Title (Charts)" -msgstr "Scegliete Formato - Titolo (Grafici)" +msgstr "Scegliere Formato - Titolo (Grafici)" #. CExBh #: 00000004.xhp @@ -257,7 +257,7 @@ "par_id3155758\n" "help.text" msgid "Choose Format - Format Selection - Title dialog (Charts)" -msgstr "Scegliete Formato - Formato selezione, finestra di dialogo Titolo (Grafici)" +msgstr "Scegliere Formato - Formato selezione, finestra di dialogo Titolo (Grafici)" #. icD4Y #: 00000004.xhp @@ -266,7 +266,7 @@ "par_id3153075\n" "help.text" msgid "Choose Format - Format Selection - Title dialog (Charts)" -msgstr "Scegliete Formato - Formato selezione, finestra di dialogo Titolo (Grafici)" +msgstr "Scegliere Formato - Formato selezione, finestra di dialogo Titolo (Grafici)" #. aEnjy #: 00000004.xhp @@ -275,7 +275,7 @@ "par_id3149048\n" "help.text" msgid "Choose Format - Title (Charts)" -msgstr "Scegliete Formato - Titolo (Grafici)" +msgstr "Scegliere Formato - Titolo (Grafici)" #. arVPN #: 00000004.xhp @@ -284,7 +284,7 @@ "par_id3147402\n" "help.text" msgid "Choose Format - Axis (Charts)" -msgstr "Scegliete Formato - Asse (Grafici)" +msgstr "Scegliere Formato - Asse (Grafici)" #. HDvN2 #: 00000004.xhp @@ -293,7 +293,7 @@ "par_id3147297\n" "help.text" msgid "Choose Format - Legend, or Format - Format Selection - Legend (Charts)" -msgstr "Scegliete Formato - Legenda, o Formato - Formato selezione - Legenda (Grafici)" +msgstr "Scegliere Formato - Legenda, o Formato - Formato selezione - Legenda (Grafici)" #. R5dmc #: 00000004.xhp @@ -302,7 +302,7 @@ "par_id3157876\n" "help.text" msgid "Choose Format - Axis - X Axis/Secondary X Axis/Z Axis/All Axes (Charts)" -msgstr "Scegliete Formato - Asse - Asse X/Asse X secondario/Asse Z/Tutti gli assi (Grafici)" +msgstr "Scegliere Formato - Asse - Asse X/Asse X secondario/Asse Z/Tutti gli assi (Grafici)" #. Fphi2 #: 00000004.xhp @@ -311,7 +311,7 @@ "par_id3146883\n" "help.text" msgid "Choose Format - Axis - Y Axis/Secondary Y Axis (Charts)" -msgstr "Scegliete Formato - Asse - Asse Y/Asse Y secondario (Grafici)" +msgstr "Scegliere Formato - Asse - Asse Y/Asse Y secondario (Grafici)" #. BH3xT #: 00000004.xhp @@ -320,7 +320,7 @@ "par_id3149349\n" "help.text" msgid "Choose Format - Axis - Y Axis - Scale tab (Charts)" -msgstr "Scegliete Formato - Asse - Asse Y, scheda Scala (Grafici)" +msgstr "Scegliere Formato - Asse - Asse Y, scheda Scala (Grafici)" #. DbZea #: 00000004.xhp @@ -329,7 +329,7 @@ "par_id1006200812385491\n" "help.text" msgid "Choose Format - Axis - X Axis - Positioning tab (Charts)" -msgstr "Scegliete la scheda Formato - Asse - Asse X - Posizionamento (Grafici) " +msgstr "Scegliere la scheda Formato - Asse - Asse X - Posizionamento (Grafici) " #. 7T8FZ #: 00000004.xhp @@ -338,7 +338,7 @@ "par_id31493459\n" "help.text" msgid "Choose Format - Axis - Y Axis - Positioning tab (Charts)" -msgstr "Scegliete la scheda Formato - Asse - Asse Y - Posizionamento (Grafici) " +msgstr "Scegliere la scheda Formato - Asse - Asse Y - Posizionamento (Grafici) " #. kLZUK #: 00000004.xhp @@ -347,7 +347,7 @@ "par_id3150477\n" "help.text" msgid "Choose Format - Grid (Charts)" -msgstr "Scegliete Formato - Griglia (Grafici)" +msgstr "Scegliere Formato - Griglia (Grafici)" #. 8RRTD #: 00000004.xhp @@ -356,7 +356,7 @@ "par_id3150746\n" "help.text" msgid "Choose Format - Grid - X, Y, Z Axis Major Grid/ X, Y, Z Minor Grid/ All Axis Grids (Charts)" -msgstr "Scegliete Formato - Griglia - Griglia principale asse X, Y, Z/ Griglia ausiliaria X, Y, Z/ Tutte le griglie degli assi (Grafici)" +msgstr "Scegliere Formato - Griglia - Griglia principale asse X, Y, Z/ Griglia ausiliaria X, Y, Z/ Tutte le griglie degli assi (Grafici)" #. aRwaG #: 00000004.xhp @@ -365,7 +365,7 @@ "par_id3145828\n" "help.text" msgid "Choose Format - Chart Wall - Chart dialog (Charts)" -msgstr "Scegliete la finestra di dialogo Formato - Pareti del grafico - Grafico (Grafici) " +msgstr "Scegliere la finestra di dialogo Formato - Pareti del grafico - Grafico (Grafici) " #. F8nYw #: 00000004.xhp @@ -374,7 +374,7 @@ "par_id3153039\n" "help.text" msgid "Choose Format - Chart Floor (Charts)" -msgstr "Scegliete Formato - Pavimento del grafico (Grafici)" +msgstr "Scegliere Formato - Pavimento del grafico (Grafici)" #. e3DQt #: 00000004.xhp @@ -383,7 +383,7 @@ "par_id3150141\n" "help.text" msgid "Choose Format - Chart Area (Charts)" -msgstr "Scegliete Formato - Area del grafico (Grafici)" +msgstr "Scegliere Formato - Area del grafico (Grafici)" #. DMVGy #: 00000004.xhp @@ -392,7 +392,7 @@ "par_id3155830\n" "help.text" msgid "Choose Format - Chart Type (Charts)" -msgstr "Scegliete Formato - Tipo di grafico (Grafici)" +msgstr "Scegliere Formato - Tipo di grafico (Grafici)" #. MoAXJ #: 00000004.xhp @@ -401,7 +401,7 @@ "par_id3145140\n" "help.text" msgid "On Formatting bar, click" -msgstr "Nella barra di formattazione, scegliete" +msgstr "Nella barra Formattazione, scegliere" #. sucpX #: 00000004.xhp @@ -428,7 +428,7 @@ "par_id3155621\n" "help.text" msgid "Choose Format - 3D View (Charts)" -msgstr "Scegliete Formato - Vista 3D (Grafici)" +msgstr "Scegliere Formato - Vista 3D (Grafici)" #. Fqrq7 #: 00000004.xhp @@ -437,7 +437,7 @@ "par_id3150661\n" "help.text" msgid "Choose Format - Arrangement (Charts)" -msgstr "Scegliete Formato - Disposizione (Grafici)" +msgstr "Scegliere Formato - Disposizione (Grafici)" #. fsASf #: 00000004.xhp @@ -446,7 +446,7 @@ "par_id3153046\n" "help.text" msgid "Open context menu - choose Arrangement (Charts)" -msgstr "Aprite il menu di contesto e scegliete Disposizione (Grafici)" +msgstr "Aprire il menu contestuale e scegliere Disposizione (Grafici)" #. YFGGY #: 00000004.xhp @@ -482,7 +482,7 @@ "par_id3153210\n" "help.text" msgid "Show/Hide Axis Descriptions" -msgstr "Mostra/nascondi la descrizione delle assi" +msgstr "Mostra/nascondi la descrizione degli assi" #. E8GSF #: 00000004.xhp @@ -518,7 +518,7 @@ "par_id9631641\n" "help.text" msgid "Choose Insert - Chart..." -msgstr "Scegliete Inserisci - Grafico..." +msgstr "Scegliere Inserisci - Grafico..." #. r4BHs #: 00000004.xhp @@ -527,7 +527,7 @@ "par_id2985320\n" "help.text" msgid "Choose Insert - Chart..." -msgstr "Scegliete Inserisci - Grafico..." +msgstr "Scegliere Inserisci - Grafico..." #. foJgL #: 00000004.xhp @@ -536,7 +536,7 @@ "par_id1096530\n" "help.text" msgid "Double-click a chart, then choose Format - Data Ranges" -msgstr "Fate doppio clic sul grafico, quindi scegliete Formato - Aree dati" +msgstr "Fare doppio clic sul grafico, quindi scegliere Formato - Aree dati" #. XCQwT #: 00000004.xhp @@ -545,7 +545,7 @@ "par_id733359\n" "help.text" msgid "In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button." -msgstr "Nella finestra di dialogo Tipo di grafico di un grafico a linee o un grafico XY che visualizza linee, scegliete Smorza nel menu a tendina del tipo Linee, poi premete il pulsante Proprietà." +msgstr "Nella finestra di dialogo Tipo di grafico di un grafico a linee o un grafico XY che visualizza linee, scegliere Smorza nel menu a tendina del tipo Linee, poi premere il pulsante Proprietà." #. ToFBi #: 00000004.xhp @@ -554,4 +554,4 @@ "par_id8513095\n" "help.text" msgid "In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button." -msgstr "Nella finestra di dialogo Tipo di grafico di un grafico a linee o un grafico XY che visualizza linee, scegliete A gradini nel menu a tendina del tipo Linee, poi premete il pulsante Proprietà." +msgstr "Nella finestra di dialogo Tipo di grafico di un grafico a linee o un grafico XY che visualizza linee, scegliere \"A gradini\" nel menu a tendina del tipo Linee, poi premere il pulsante Proprietà." diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/schart/01.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/schart/01.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/schart/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/schart/01.po 2023-05-03 15:22:13.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: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-03 04:34+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563485645.000000\n" #. DsZFP @@ -86,7 +86,7 @@ "par_id8141117\n" "help.text" msgid "When you create a chart that is based on default data, or when you copy a chart into your document, you can open the Data Table dialog to enter your own data. The chart responds to the data in a live preview." -msgstr "Quando aprite un grafico basato su dati predefiniti o quando copiate un grafico in un documento, potete aprire la finestra di dialogo Tabella dati per immettere i vostri dati. Il grafico mostra un'anteprima dei dati." +msgstr "Quando si apre un grafico basato su dati predefiniti o quando si copia un grafico in un documento, è possibile aprire la finestra di dialogo Tabella dati per immettere i dati. Il grafico ne mostra un'anteprima." #. VoGXA #: 03010000.xhp @@ -95,7 +95,7 @@ "par_id9487594\n" "help.text" msgid "Close the Chart Data dialog to apply all changes to the chart. Choose Edit - Undo to cancel the changes." -msgstr "Chiudete la finestra di dialogo Dati grafico per applicare tutte le modifiche al grafico. Selezionate Modifica - Annulla per annullare le modifiche." +msgstr "Chiudere la finestra di dialogo Dati grafico per applicare tutte le modifiche al grafico. Selezionare Modifica - Annulla per annullare le modifiche." #. iDfxC #: 03010000.xhp @@ -104,7 +104,7 @@ "par_id4149906\n" "help.text" msgid "Insert or select a chart that is not based on existing cell data." -msgstr "Inserite o selezionate un grafico non basato su dati di una cella esistente." +msgstr "Inserire o selezionare un grafico non basato su dati di una cella esistente." #. H9HSu #: 03010000.xhp @@ -113,7 +113,7 @@ "par_id6064943\n" "help.text" msgid "Choose View - Chart Data Table to open the Data Table dialog." -msgstr "Selezionate Visualizza - Tabella dei dati del grafico per aprire la finestra di dialogo Tabella dati." +msgstr "Selezionare Visualizza - Tabella dei dati del grafico per aprire la finestra di dialogo Tabella dati." #. CtH6Q #: 03010000.xhp @@ -131,7 +131,7 @@ "par_id9799798\n" "help.text" msgid "Click a cell in the dialog and change the contents. Click another cell to see the changed contents in the preview." -msgstr "Fate clic su una cella nella finestra di dialogo e modificate i contenuti. Fate clic su un'altra cella per vedere un'anteprima dei contenuti modificati." +msgstr "Fare clic su una cella nella finestra di dialogo e modificare i contenuti. Fare clic su un'altra cella per vedere un'anteprima dei contenuti modificati." #. CBYKU #: 03010000.xhp @@ -140,7 +140,7 @@ "par_id1251258\n" "help.text" msgid "Enter the name of the data series in the text box above the column." -msgstr "Digitate il nome della serie di dati nella casella di testo sopra la colonna." +msgstr "Digitare il nome della serie di dati nella casella di testo sopra la colonna." #. 87TGK #: 03010000.xhp @@ -149,7 +149,7 @@ "par_id743430\n" "help.text" msgid "Use the icons above the table to insert or delete rows and columns. For data series with multiple columns, only whole data series can be inserted or deleted." -msgstr "Utilizzate l'icona sopra la tabella per inserire o eliminare righe e colonne. Per le serie di dati con colonne multiple, possono essere inserite o eliminate solo serie di dati complete." +msgstr "Utilizzare l'icona sopra la tabella per inserire o eliminare righe e colonne. Per le serie di dati con colonne multiple, possono essere inserite o eliminate solo serie di dati complete." #. 5wuLN #: 03010000.xhp @@ -158,7 +158,7 @@ "par_id8111819\n" "help.text" msgid "The order of the data series in the chart is the same as in the data table. Use the Move Series Right icon to switch the current column with its neighbor on the right." -msgstr "L'ordine della serie di dati nel grafico è lo stesso della tabella dati. Utilizzate l'icona Sposta serie a destra per scambiare la colonna attiva con quella alla sua destra." +msgstr "L'ordine della serie di dati nel grafico è lo stesso della tabella dati. Utilizzare l'icona Sposta serie a destra per scambiare la colonna attiva con quella alla sua destra." #. fQcQH #: 03010000.xhp @@ -167,7 +167,7 @@ "par_id9116794\n" "help.text" msgid "The order of the categories or data points in the chart is the same as in the data table. Use the Move Row Down icon to switch the current row with its neighbor below." -msgstr "L'ordine delle categorie o i punti dati nel grafico è lo stesso della tabella dati. Utilizzate l'icona Sposta riga in basso per scambiare la riga attiva con quella sottostante." +msgstr "L'ordine delle categorie o i punti dati nel grafico è lo stesso della tabella dati. Utilizzare l'icona Sposta riga in basso per scambiare la riga attiva con quella sottostante." #. fux4x #: 03010000.xhp @@ -257,7 +257,7 @@ "par_id6697286\n" "help.text" msgid "Enter names for the data series." -msgstr "Digita i nomi per la serie di dati." +msgstr "Digitare i nomi per la serie di dati." #. 9dACT #: 04010000.xhp @@ -284,7 +284,7 @@ "par_id3150298\n" "help.text" msgid "Opens a dialog to enter or modify the titles in a chart. You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed." -msgstr "Tramite questo comando si aprirà una finestra in cui digitare o modificare i titoli in un grafico. Potete definire un testo per il titolo principale, il sottotitolo e le didascalie degli assi, e stabilire se questi elementi devono essere visualizzati." +msgstr "Tramite questo comando si aprirà una finestra in cui digitare o modificare i titoli in un grafico. È possibile definire un testo per il titolo principale, il sottotitolo e le didascalie degli assi, e stabilire se questi elementi debbano essere visualizzati." #. nMBJm #: 04010000.xhp @@ -302,7 +302,7 @@ "par_id3150371\n" "help.text" msgid "Enter the desired title for the chart. This will be displayed at the top of the chart." -msgstr "Inserire il titolo desiderato per il grafico. Questo verrà visualizzato nella parte alta del grafico." +msgstr "Inserire il titolo desiderato per il grafico. Esso verrà visualizzato nella parte alta del grafico." #. PB2Ds #: 04010000.xhp @@ -320,7 +320,7 @@ "par_id3149404\n" "help.text" msgid "Enter the desired subtitle for the chart. This will be displayed under the title set in the Title field." -msgstr "Inserite il sottotitolo desiderato per il grafico. Questo verrà visualizzato sotto il titolo definito nel campo Titolo." +msgstr "Inserire il sottotitolo desiderato per il grafico. Esso verrà visualizzato sotto il titolo definito nel campo Titolo." #. XnAk5 #: 04010000.xhp @@ -446,7 +446,7 @@ "bm_id3156441\n" "help.text" msgid "chart legends; hidinghiding;chart legends" -msgstr "Grafico; nascondere le legendeNascondere;legende nei grafici" +msgstr "Grafico; nascondere le legendeNascondere; legende nei grafici" #. sVYGd #: 04020000.xhp @@ -464,7 +464,7 @@ "par_id3155413\n" "help.text" msgid "Opens the Legend dialog, which allows you to change the position of legends in the chart, and to specify whether the legend is displayed." -msgstr "Apre la finestra di dialogo Legenda, in cui si può modificare la posizione della legenda nel grafico e specificare se debba essere o no visualizzata." +msgstr "Apre la finestra di dialogo Legenda, in cui è possibile modificare la posizione della legenda nel grafico e specificare se debba essere o no visualizzata." #. nyEeY #: 04020000.xhp @@ -473,7 +473,7 @@ "par_id3149124\n" "help.text" msgid "To show or hide a legend, click Legend On/Off on the Formatting bar." -msgstr "Con l'icona Mostra/nascondi legenda nella barra di formattazione si può mostrare o nascondere la legenda." +msgstr "Con l'icona Mostra/nascondi legenda nella barra Formattazione è possibile mostrare o nascondere la legenda." #. CxQSK #: 04020000.xhp @@ -527,7 +527,7 @@ "par_id3155376\n" "help.text" msgid "Select the position for the legend:" -msgstr "Selezionate la posizione per la legenda:" +msgstr "Selezionare la posizione per la legenda:" #. JZBng #: 04020000.xhp @@ -563,7 +563,7 @@ "par_id3153912\n" "help.text" msgid "Positions the legend at the top of the chart." -msgstr "Posiziona la legenda sopra il grafico." +msgstr "Posiziona la legenda in cima al grafico." #. LQDxf #: 04020000.xhp @@ -653,7 +653,7 @@ "par_id1106200812112531\n" "help.text" msgid "Specifies whether the legend should overlap the chart. Turning off this option is useful if you want to display the legend above an empty part of the chart area instead of beside it. This way the drawing area can fill the whole chart area, increasing its readability." -msgstr "Specifica se la leggenda debba sovrapporsi al grafico. La disattivazione di questa opzione è utile se volete visualizzare la legenda sopra una parte vuota dell'area del grafico anziché al suo fianco. In questo modo l'area di disegno può occupare l'intera area del grafico, migliorandone la leggibilità." +msgstr "Specifica se la leggenda debba sovrapporsi al grafico. La disattivazione di questa opzione è utile se si vuole visualizzare la legenda sopra una parte vuota dell'area del grafico anziché al suo fianco. In questo modo l'area di disegno può occupare l'intera area del grafico, migliorandone la leggibilità." #. WXyyt #: 04030000.xhp @@ -689,7 +689,7 @@ "par_id3154684\n" "help.text" msgid "Opens the Data Labels dialog, which enables you to set the data labels." -msgstr "Apre la finestra di dialogo Didascalia dati, in cui si possono impostare le didascalie dei dati." +msgstr "Apre la finestra di dialogo Didascalia dati, in cui è possibile impostare le didascalie dei dati." #. EwAhi #: 04030000.xhp @@ -698,7 +698,7 @@ "par_id0810200912120416\n" "help.text" msgid "If an element of a data series is selected, this command works on that data series only. If no element is selected, this command works on all data series." -msgstr "Se un elemento di una serie di dati è selezionato, questo comando funziona solo su quella serie di dati. Se nessun elemento è selezionato, questo comando funziona su tutte le serie di dati." +msgstr "Se è selezionato un elemento di una serie di dati, questo comando funziona solo su quella serie di dati. Se non è selezionato alcun elemento, questo comando funziona su tutte le serie di dati." #. krmHL #: 04030000.xhp @@ -734,7 +734,7 @@ "par_id9794610\n" "help.text" msgid "Opens a dialog to select the number format." -msgstr "Apre una finestra di dialogo in cui si può selezionare il formato numero." +msgstr "Apre una finestra di dialogo in cui è possibile selezionare il formato del numero." #. uBbyH #: 04030000.xhp @@ -770,7 +770,7 @@ "par_id5476241\n" "help.text" msgid "Opens a dialog to select the percentage format." -msgstr "Apre una finestra di dialogo in cui si può selezionare il formato percentuale." +msgstr "Apre una finestra di dialogo in cui è possibile selezionare il formato percentuale." #. eQMTH #: 04030000.xhp @@ -986,7 +986,7 @@ "par_id3155113\n" "help.text" msgid "Displays the Z axis as a line with subdivisions. This axis can only be displayed in 3D charts." -msgstr "Mostra l'asse Z come una linea con suddivisioni. Questo asse può essere visualizzato solo nei grafici 3D." +msgstr "Mostra l'asse Z come una linea con suddivisioni. Quest'asse può essere visualizzato solo nei grafici 3D." #. d2Ec7 #: 04040000.xhp @@ -1004,7 +1004,7 @@ "par_id3166428\n" "help.text" msgid "Use this area to assign a second axis to your chart. If a data series is already assigned to this axis, $[officename] automatically displays the axis and the label. You can turn off these settings later on. If no data has been assigned to this axis and you activate this area, the values of the primary Y axis are applied to the secondary axis." -msgstr "Utilizzate quest'area per assegnare un secondo asse al grafico. Se una serie dati è già assegnata all'asse, $[officename] mostra automaticamente l'asse e la didascalia. È possibile disattivare queste impostazioni in un secondo momento. Se l'area viene attivata senza che siano stati assegnati dati all'asse, i valori dell'asse primario Y vengono applicati all'asse secondario." +msgstr "Utilizzare quest'area per assegnare un secondo asse al grafico. Se una serie dati è già assegnata all'asse, $[officename] mostra automaticamente l'asse e la didascalia. È possibile disattivare queste impostazioni in un secondo momento. Se l'area viene attivata senza che siano stati assegnati dati all'asse, i valori dell'asse primario Y vengono applicati all'asse secondario." #. oEY8r #: 04040000.xhp @@ -1049,7 +1049,7 @@ "par_id3154762\n" "help.text" msgid "The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. " -msgstr "L'asse principale e quello secondario possono essere suddivisi con scale differenti. Ad esempio, si può usare per un asse una scala con divisioni di 1 cm e per l'altro una scala con divisioni di 5 cm." +msgstr "L'asse principale e quello secondario sono suddivisibili con scale differenti. Ad esempio, si può usare per un asse una scala con divisioni di 1 cm e per l'altro una scala con divisioni di 5 cm." #. CQdYY #: 04050000.xhp @@ -1085,7 +1085,7 @@ "par_id3401287\n" "help.text" msgid "An error bar is an indicator line that spans over a range from x/y - NegativeErrorValue to x/y + PositiveErrorValue. In this term, x or y is the value of the data point. When \"standard deviation\" is selected, x or y is the mean value of the data series. NegativeErrorValue and PositiveErrorValue are the amounts calculated by the error bar function or given explicitly." -msgstr "Una barra d'errore è una linea indicatrice i cui valori sono compresi in un intervallo tra - Valore dell'errore negativo X/Y a + Valore dell'errore positivo X/Y. In questo termine, X o Y è il valore del punto dati. Quando selezionate \"deviazione standard\", X o Y è il valore medio della serie di dati. Il valore dell'errore negativo ed il valore dell'errore positivo sono quantità calcolate dalla funzione della barra dell'errore o possono essere date esplicitamente." +msgstr "Una barra d'errore è una linea indicatrice i cui valori sono compresi in un intervallo tra - Valore dell'errore negativo X/Y a + Valore dell'errore positivo X/Y. In questo termine, X o Y è il valore del punto dati. Quando si seleziona \"deviazione standard\", X o Y è il valore medio della serie di dati. Il valore dell'errore negativo e il valore dell'errore positivo sono quantità calcolate dalla funzione della barra dell'errore o possono essere fornite in modo esplicito." #. 2uEd3 #: 04050000.xhp @@ -1094,7 +1094,7 @@ "par_id3153965\n" "help.text" msgid "The Insert - X/Y Error Bars menu command is only available for 2D charts." -msgstr "Il comando del menu Inserisci - Barre d'errore X/Y è disponibile solo per grafici bidimensionali (2D)." +msgstr "Il comando del menu Inserisci - Barre d'errore X/Y è disponibile solo per i grafici bidimensionali (2D)." #. GE8Ux #: 04050000.xhp @@ -1112,7 +1112,7 @@ "par_id3150202\n" "help.text" msgid "In the Error category area, you can choose different ways to display the error category." -msgstr "Potete scegliere diversi modi di visualizzazione della categoria di errore nell'area Categoria di errore." +msgstr "È possibile scegliere diversi modi di visualizzazione della categoria di errore nell'area Categoria di errore." #. TFxgF #: 04050000.xhp @@ -1220,7 +1220,7 @@ "par_id3149870\n" "help.text" msgid "Error Margin: Displays the highest error margin in percent according to the highest value of the data group. Set the percentage in the Parameters area." -msgstr "Margine di errore: mostra il margine di errore più elevato espresso in percentuale riferito al valore più elevato del gruppo di dati. Impostate la percentuale nell'area Parametri." +msgstr "Margine di errore: mostra il margine di errore più elevato espresso in percentuale riferito al valore più elevato del gruppo di dati. Impostare la percentuale nell'area Parametri." #. ffQE4 #: 04050000.xhp @@ -1247,7 +1247,7 @@ "par_id3872188\n" "help.text" msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size." -msgstr "Fai clic su un pulsante per ridurre la finestra di dialogo, poi seleziona l'intervallo di celle del foglio di lavoro utilizzando il mouse. Fai di nuovo clic sul pulsante per ripristinare le dimensioni massime della finestra di dialogo." +msgstr "Fare clic su un pulsante per ridurre la finestra di dialogo, poi selezionare l'intervallo di celle del foglio di lavoro utilizzando il mouse. Fare di nuovo clic sul pulsante per ripristinare le dimensioni massime della finestra di dialogo." #. XbnB2 #: 04050000.xhp @@ -1274,7 +1274,7 @@ "par_id0428200810573839\n" "help.text" msgid "Enter the value to add to the displayed value as the positive error value." -msgstr "Inserisci il valore da aggiungere al valore visualizzato come valore dell'errore positivo." +msgstr "Inserire il valore da aggiungere al valore visualizzato come valore dell'errore positivo." #. YCbEY #: 04050000.xhp @@ -1283,7 +1283,7 @@ "par_id0428200810573862\n" "help.text" msgid "Enter the value to subtract from the displayed value as the negative error value." -msgstr "Inserisci il valore da sottrarre al valore visualizzato come valore dell'errore negativo." +msgstr "Inserire il valore da sottrarre al valore visualizzato come valore dell'errore negativo." #. kRFcG #: 04050000.xhp @@ -1292,7 +1292,7 @@ "par_id0428200810573844\n" "help.text" msgid "Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet." -msgstr "Inserisci l'intervallo d'indirizzi dai quali ottenere i valori dell'errore positivo. Utilizza il pulsante Riduci per selezionare l'intervallo all'interno di un foglio di lavoro." +msgstr "Inserire l'intervallo d'indirizzi dai quali ottenere i valori dell'errore positivo. Utilizzare il pulsante Riduci per selezionare l'intervallo all'interno di un foglio di lavoro." #. Qpys7 #: 04050000.xhp @@ -1301,7 +1301,7 @@ "par_id0428200810573970\n" "help.text" msgid "Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet." -msgstr "Inserisci l'intervallo d'indirizzi dai quali ottenere i valori dell'errore negativo. Utilizza il pulsante Riduci per selezionare l'intervallo all'interno di un foglio di lavoro." +msgstr "Inserire l'intervallo d'indirizzi dai quali ottenere i valori dell'errore negativo. Utilizzare il pulsante Riduci per selezionare l'intervallo all'interno di un foglio di lavoro." #. bcLoY #: 04050000.xhp @@ -1319,7 +1319,7 @@ "par_id0428200810573991\n" "help.text" msgid "Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically." -msgstr "Abilitare l'uso dei valori dell'errore positivo anche come valori dell'errore negativo. Si può cambiare solo il valore della casella \"Positivo (+)\". Quel valore viene copiato automaticamente nella casella \"Negativo (-)\" ." +msgstr "Abilitare l'uso dei valori dell'errore positivo anche come valori dell'errore negativo. È possibile cambiare solo il valore della casella \"Positivo (+)\". Quel valore viene copiato automaticamente nella casella \"Negativo (-)\" ." #. QZNgb #: 04050000.xhp @@ -1355,7 +1355,7 @@ "par_id0428200810574039\n" "help.text" msgid "Shows positive and negative error bars." -msgstr "Mostra le barre dell'errore negativo e positivo." +msgstr "Mostra le barre dell'errore negative e positive." #. r6Cp5 #: 04050000.xhp @@ -1373,7 +1373,7 @@ "par_id042820081057411\n" "help.text" msgid "Shows only positive error bars." -msgstr "Mostra solo le barre dell'errore positivo." +msgstr "Mostra solo le barre dell'errore positive." #. 4w2iy #: 04050000.xhp @@ -1391,7 +1391,7 @@ "par_id0522200809110667\n" "help.text" msgid "Shows only negative error bars." -msgstr "Mostra solo le barre dell'errore negativo." +msgstr "Mostra solo le barre dell'errore negative." #. 5TUMR #: 04050100.xhp @@ -1427,7 +1427,7 @@ "par_id7272255\n" "help.text" msgid " Trend lines can be added to all 2D chart types except for Pie and Stock charts. " -msgstr " Le linee di tendenza possono essere aggiunte a tutti i tipi di grafici a due dimensioni, tranne a quelli a torta e quelli azionari." +msgstr " Le linee di tendenza possono essere aggiunte a tutti i tipi di grafici a due dimensioni, tranne quelli a torta e quelli azionari." #. NF2z3 #: 04050100.xhp @@ -1589,7 +1589,7 @@ "par_id8398998\n" "help.text" msgid "If you insert a trend line to a chart type that uses categories, like Line or Column, then the numbers 1, 2, 3, are used as x-values to calculate the trend line. For such charts the XY chart type might be more suitable." -msgstr "Se inserite una curva di regressione a un grafico che utilizza categorie, tipo riga o colonna, allora i numeri 1, 2, 3, sono utilizzati come valori x per calcolare la linea di tendenza. Per tali grafici, il tipo di grafico XY potrebbe essere il più adatto." +msgstr "Inserendo una curva di regressione in un grafico che utilizza categorie, tipo riga o colonna, allora i numeri 1, 2, 3, sono utilizzati come valori x per calcolare la linea di tendenza. Per tali grafici, il tipo di grafico XY potrebbe essere il più adatto." #. E7mkV #: 04050100.xhp @@ -1598,7 +1598,7 @@ "par_id4349192\n" "help.text" msgid "To insert a trend line for a data series, first double-click the chart to enter edit mode and select the data series in the chart to which a trend line is to be created." -msgstr "Per inserire una linea di tendenza per una serie di dati, fate prima doppio clic sul grafico per passare al modo modifica, quindi selezionate la serie di dati nel grafico per la quale creare la linea di tendenza." +msgstr "Per inserire una linea di tendenza per una serie di dati, fare prima doppio clic sul grafico per passare al modo modifica, quindi selezionare la serie di dati nel grafico per la quale creare la linea di tendenza." #. VLWvK #: 04050100.xhp @@ -1607,7 +1607,7 @@ "par_id801630627531175\n" "help.text" msgid "Choose Insert - Trend Line, or right-click the data series to open the context menu, and choose Insert Trend Line." -msgstr "Scegliete Inserisci - Linea di tendenza o fate clic col pulsante destro del mouse per aprire il menu contestuale e scegliete Inserisci linea di tendenza." +msgstr "Scegliere Inserisci - Linea di tendenza o fare clic col pulsante destro del mouse per aprire il menu contestuale e scegliere Inserisci linea di tendenza." #. osECL #: 04050100.xhp @@ -1625,7 +1625,7 @@ "par_id9337443\n" "help.text" msgid "To delete a trend line or mean value line, click the line, then press the Del key." -msgstr "Per eliminare una linea di tendenza o una linea del valore medio, fate clic sulla linea e premete il tasto Canc." +msgstr "Per eliminare una linea di tendenza o una linea del valore medio, fare clic sulla linea e premere il tasto Canc." #. nbEcg #: 04050100.xhp @@ -1643,7 +1643,7 @@ "par_id9569689\n" "help.text" msgid "The trend line has the same color as the corresponding data series. To change the line properties, select the trend line and choose Format - Format Selection - Line." -msgstr "La linea di tendenza ha lo stesso colore della serie di dati corrispondente. Per modificare le proprietà della linea, selezionate la linea di tendenza e sceglieteFormato - Formato selezione - Linea." +msgstr "La linea di tendenza ha lo stesso colore della serie di dati corrispondente. Per modificare le proprietà della linea, selezionare la linea di tendenza e scegliere Formato - Formato selezione - Linea." #. JVZCk #: 04050100.xhp @@ -1670,7 +1670,7 @@ "par_id8962065\n" "help.text" msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R2, even if they are not shown: click on the trend line to see the information in the status bar." -msgstr "Quando il grafico è in modo modifica, %PRODUCTNAME fornisce l'equazione della linea di tendenza e il coefficiente di determinazione R2, anche essi non vengono mostrati: fate clic sulla linea di tendenza per visualizzare le informazioni nella barra di stato." +msgstr "Quando il grafico è in modo modifica, %PRODUCTNAME fornisce l'equazione della linea di tendenza e il coefficiente di determinazione R2, anche se essi non vengono mostrati: fare clic sulla linea di tendenza per visualizzare le informazioni nella barra di stato." #. xHGhE #: 04050100.xhp @@ -1679,7 +1679,7 @@ "par_id846888\n" "help.text" msgid "To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose Insert Trend Line Equation." -msgstr "Per visualizzare l'equazione della linea di tendenza, selezionare la linea di tendenza nel grafico, facendo clic col pulsante destro del mouse aprite il menu contestuale e scegliere the chart, right-click to open the context menu, and choose Inserisci equazione della linea di tendenza." +msgstr "Per visualizzare l'equazione della linea di tendenza, selezionare la linea di tendenza nel grafico, facendo clic col pulsante destro del mouse aprite il menu contestuale e scegliere Inserisci equazione della linea di tendenza." #. ohXGJ #: 04050100.xhp @@ -1688,7 +1688,7 @@ "par_id8962066\n" "help.text" msgid "To change format of values (use less significant digits or scientific notation), select the equation in the chart, right-click to open the context menu, and choose Format Trend Line Equation - Numbers." -msgstr "Per cambiare il formato dei valori (usate cifre meno significative o notazione scientifica), selezionate l'equazione nel grafico, fate clic col pulsante destro del mouse per aprire il menu contestuale e scegliete Formatta equazione della linea di tendenza - Numeri." +msgstr "Per cambiare il formato dei valori (usare cifre meno significative o notazione scientifica), selezionare l'equazione nel grafico, fare clic col pulsante destro del mouse per aprire il menu contestuale e scegliere Formatta equazione della linea di tendenza - Numeri." #. e957n #: 04050100.xhp @@ -1697,7 +1697,7 @@ "par_id180820161627109994\n" "help.text" msgid "Default equation uses x for abscissa variable, and f(x) for ordinate variable. To change these names, select the trend line, choose Format - Format Selection – Type and enter names in X Variable Name and Y Variable Name edit boxes." -msgstr "L'equazione predefinita usa x per la variabile dell'ascissa, e f(x) per quella dell'ordinata. Per modificare questi nomi, selezionate la linea di tendenza, scegliete Formato - Formato selezione – Tipo e digitate i nomi nelle caselle di modifica della Variabile del nome X e della Variabile del nome Y." +msgstr "L'equazione predefinita usa x per la variabile dell'ascissa, e f(x) per quella dell'ordinata. Per modificare questi nomi, selezionare la linea di tendenza, scegliere Formato - Formato selezione – Tipo e digitare i nomi nelle caselle di modifica della Variabile del nome X e della Variabile del nome Y." #. jAs3d #: 04050100.xhp @@ -1706,7 +1706,7 @@ "par_id18082016163702791\n" "help.text" msgid "To show the coefficient of determination R2, select the equation in the chart, right-click to open the context menu, and choose Insert R2." -msgstr "Per visualizzare il coefficiente di determinazione R2, selezionate l'equazione nel grafico, fate clic col pulsante destro del mouse per il menu contestuale e scegliete Inserisci R2." +msgstr "Per visualizzare il coefficiente di determinazione R2, selezionare l'equazione nel grafico, fare clic col pulsante destro del mouse per aprire il menu contestuale e scegliere Inserisci R2." #. yfQY2 #: 04050100.xhp @@ -1724,7 +1724,7 @@ "hd_id180820161534333509\n" "help.text" msgid "Trend Lines Curve Types" -msgstr "Tipi di curve delle linee di tendenza" +msgstr "Tipi di curva delle linee di tendenza" #. AB9tE #: 04050100.xhp @@ -1841,7 +1841,7 @@ "par_id181279\n" "help.text" msgid "You should transform your data accordingly; it is best to work on a copy of the original data and transform the copied data." -msgstr "Dovete trasformare i vostri dati di conseguenza; è consigliabile lavorare su, e trasformare, una copia dei dati originali." +msgstr "È necessario trasformare i propri dati di conseguenza; è consigliabile lavorare su una copia dei dati originali e trasformare i dati copiati." #. xrvYT #: 04050100.xhp @@ -1859,7 +1859,7 @@ "par_id7735221\n" "help.text" msgid "You can also calculate the parameters using Calc functions as follows." -msgstr "Potete anche calcolare i parametri utilizzando le funzioni di Calc nel modo seguente." +msgstr "È possibile anche calcolare i parametri utilizzando le funzioni di Calc nel modo seguente." #. KeyG7 #: 04050100.xhp @@ -1994,7 +1994,7 @@ "par_id9112216\n" "help.text" msgid "The exponential regression follows the equation y=b*exp(a*x) or y=b*mx, which is transformed to ln(y)=ln(b)+a*x or ln(y)=ln(b)+ln(m)*x respectively." -msgstr "La regressione esponenziale segue l'equazione y=b*exp(a*x) o y=b*mx, le quali sono trasformate in ln(y)=ln(b)+a*x o ln(y)=ln(b)+ln(m)*x rispettivamente." +msgstr "La regressione esponenziale segue l'equazione y=b*exp(a*x) o y=b*mx, le quali sono trasformate rispettivamente in ln(y)=ln(b)+a*x o ln(y)=ln(b)+ln(m)*x." #. NaM55 #: 04050100.xhp @@ -2129,7 +2129,7 @@ "par_id33875\n" "help.text" msgid "Create a table with the columns x, x2, x3, … , xn, y up to the desired degree n." -msgstr "Create una tabella con le colonne x, 2, x3, … , xn, y fino al grado n desiderato." +msgstr "Creare una tabella con le colonne x, 2, x3, … , xn, y fino al grado n desiderato." #. wJrKC #: 04050100.xhp @@ -2138,7 +2138,7 @@ "par_id8720053\n" "help.text" msgid "Use the formula =LINEST(Data_Y,Data_X) with the complete range x to xn (without headings) as Data_X." -msgstr "Usate la formula =REGR.LIN(Dati_Y,Dati_X) con l'intervallo completo da x a xn (senza intestazioni) come Dati_X." +msgstr "Usare la formula =REGR.LIN(Dati_Y,Dati_X) con l'intervallo completo da x a xn (senza intestazioni) come Dati_X." #. 3zm3C #: 04050100.xhp @@ -2246,7 +2246,7 @@ "par_id3155067\n" "help.text" msgid "Use this dialog to define some options that are available for specific chart types. The contents of the Options dialog vary with the chart type." -msgstr "Utilizzate questa finestra di dialogo per definire alcune opzioni specifiche disponibili per particolari tipi di grafici. Il contenuto della finestra di dialogo Opzioni varia a seconda del tipo di grafico." +msgstr "Utilizzare questa finestra di dialogo per definire alcune opzioni specifiche disponibili per particolari tipi di grafici. Il contenuto della finestra di dialogo Opzioni varia a seconda del tipo di grafico." #. tAu88 #: 04060000.xhp @@ -2264,7 +2264,7 @@ "par_id3145228\n" "help.text" msgid "In this area you can choose between two Y axis scaling modes. The axes can only be scaled and given properties separately." -msgstr "In quest'area potete scegliere tra due possibili ridimensionamenti dell'asse Y. È possibile scalare e assegnare attributi agli assi solo separatamente." +msgstr "In quest'area è possibile scegliere tra due possibili ridimensionamenti dell'asse Y. È possibile scalare e assegnare attributi agli assi solo separatamente." #. mV2z2 #: 04060000.xhp @@ -2318,7 +2318,7 @@ "par_id3150365\n" "help.text" msgid "Define the settings for a bar chart in this area. Any changes apply to all data series of the chart, not to the selected data only." -msgstr "In quest'area potete definire le impostazioni per i grafici a barre. Le modifiche verranno applicate a tutte le serie di dati del grafico, non solo ai dati selezionati." +msgstr "In quest'area è possibile definire le proprie impostazioni per i grafici a barre. Le modifiche saranno applicate a tutte le serie di dati del grafico, non solo ai dati selezionati." #. w8uog #: 04060000.xhp @@ -2354,7 +2354,7 @@ "par_id3156447\n" "help.text" msgid "Defines the necessary settings for overlapping data series. You can choose between -100 and +100%." -msgstr "Definisce le impostazioni necessarie per la sovrapposizione delle serie di dati. Potete scegliere un valore compreso tra -100 e +100%." +msgstr "Definisce le impostazioni necessarie per la sovrapposizione delle serie di dati. È possibile scegliere un valore compreso tra -100 e +100%." #. 4wQHD #: 04060000.xhp @@ -2399,7 +2399,7 @@ "par_id2144535\n" "help.text" msgid "As a result, bars attached to the first y-axis are partly or completely hidden by bars attached to the second y-axis. To avoid this, enable the option to display bars side by side. The bars from different data series are shown as if they were attached only to one axis." -msgstr "Come risultato, le barre collegate al primo asse Y sono parzialmente o completamente nascoste dalle barre collegate al secondo asse Y. Per evitare questo, abilitate l'opzione Mostra le barre affiancate. Le barre che rappresentano differenti serie di dati sono visualizzate come se fossero attaccate solo a un asse." +msgstr "Come risultato, le barre collegate al primo asse Y sono parzialmente o completamente nascoste dalle barre collegate al secondo asse Y. Per evitare questo, abilitare l'opzione per mostrare le barre affiancate. Le barre che rappresentano differenti serie di dati sono visualizzate come se fossero attaccate solo a un asse." #. u8zZt #: 04060000.xhp @@ -2453,7 +2453,7 @@ "par_id1414838\n" "help.text" msgid "When you change the starting angle or the direction, only current versions of the software show the changed values. Older versions of the software display the same document using the default values: Always counterclockwise direction and a starting value of 90 degrees (2D pie charts) or 0 degrees (3D pie charts)." -msgstr "Quando modificate l'angolo di partenza o la direzione, solo l'attuale versione del programma mostra i valori modificati. Versioni precedenti del programma mostrano lo stesso documento utilizzando i valori predefiniti: la rotazione è sempre in senso antiorario e l'angolo iniziale è di 90 gradi (grafici a torta bidimensionali 2D) o 0 gradi (grafici a torta tridimensionali 3D)." +msgstr "Quando si modifica l'angolo di partenza o la direzione, solo l'attuale versione del programma mostra i valori modificati. Versioni precedenti del programma mostrano lo stesso documento utilizzando i valori predefiniti: la rotazione è sempre in senso antiorario e l'angolo iniziale è di 90 gradi (grafici a torta bidimensionali 2D) o 0 gradi (grafici a torta tridimensionali 3D)." #. hvgvC #: 04060000.xhp @@ -2489,7 +2489,7 @@ "par_id0305200910524650\n" "help.text" msgid "Sometimes values are missing in a data series that is shown in a chart. You can select from different options how to plot the missing values. The options are available for some chart types only." -msgstr "A volte alcuni valori sono mancanti nella serie di dati visualizzata nel grafico. Per mezzo di diverse opzioni potete decidere come disegnare i valori mancanti. Le opzioni sono disponibili solo per alcuni tipi di grafico." +msgstr "A volte, nella serie di dati visualizzata nel grafico mancano alcuni valori. Per mezzo di diverse opzioni è possibile decidere come disegnare i valori mancanti. Le opzioni sono disponibili solo per alcuni tipi di grafico." #. iFsLL #: 04060000.xhp @@ -2507,7 +2507,7 @@ "par_id0305200910524811\n" "help.text" msgid "For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net." -msgstr "In caso di valore mancante, non sarà visualizzato alcun dato. Questa è l'impostazione predefinita per i grafici a colonna, a barre, a linea, a rete." +msgstr "In caso di valore mancante, non sarà visualizzato alcun dato. Questa è l'impostazione predefinita per i grafici a colonna, a barre, a linea e a rete." #. uManw #: 04060000.xhp @@ -2516,7 +2516,7 @@ "hd_id0305200910524811\n" "help.text" msgid "Assume zero" -msgstr "Suppone zero" +msgstr "Supponi zero" #. gz7cb #: 04060000.xhp @@ -2525,7 +2525,7 @@ "par_id030520091052489\n" "help.text" msgid "For a missing value, the y-value will be shown as zero. This is the default for chart type Area." -msgstr "In caso di valore mancante, il valore Y sarà visualizzato a zero. Questa è l'impostazione predefinita per grafici ad area." +msgstr "In caso di valore mancante, il valore Y sarà visualizzato come zero. Questa è l'impostazione predefinita per grafici ad area." #. rns6H #: 04060000.xhp @@ -2615,7 +2615,7 @@ "par_id3146974\n" "help.text" msgid "You can divide the axes into sections by assigning gridlines to them. This allows you to get a better overview of the chart, especially if you are working with large charts. The Y axis major grid is activated by default." -msgstr "Si possono dividere gli assi in sezioni mediante una griglia. Questo permette di migliorare la leggibilità dei grafici, in particolar modo se sono di grandi dimensioni. La griglia principale dell'asse Y è attiva in maniera predefinita." +msgstr "È possibile dividere gli assi in sezioni mediante una griglia. Questo permette di migliorare la leggibilità dei grafici, in particolar modo se sono di grandi dimensioni. La griglia principale dell'asse Y è attiva in maniera predefinita." #. EaERh #: 04070000.xhp @@ -2660,7 +2660,7 @@ "par_id3154754\n" "help.text" msgid "The Vertical Grids icon on the Formatting bar toggles the visibility of the grid display for the X axis. It switches between the three states: no grid, major grid and both major and minor grids displayed. The change will affect check boxes in Insert - Grids." -msgstr "Facendo clic sull'icona Griglie verticali nella barra Formattazione si può attivare o disattivare la vista griglia per l'asse X. È possibile alternare tre stati: nessuna griglia, griglia principale o griglia principale e griglie ausiliarie. La modifica riguarda anche le caselle di controllo presenti in Inserisci - Griglie." +msgstr "Facendo clic sull'icona Griglie verticali nella barra Formattazione è possibile attivare o disattivare la vista griglia per l'asse X. È possibile alternare tre stati: nessuna griglia, griglia principale o griglia principale e griglie ausiliarie. La modifica riguarda anche le caselle di controllo presenti in Inserisci - Griglie." #. b5caj #: 04070000.xhp @@ -2723,7 +2723,7 @@ "par_id3156449\n" "help.text" msgid "Use this area to assign a minor grid for each axis. Assigning minor grids to the axis reduces the distance between the major grids." -msgstr "Utilizzate quest'area per assegnare una griglia ausiliaria a ogni asse. Assegnando griglie ausiliarie all'asse, si diminuisce la distanza tra le griglie principali." +msgstr "Utilizzare quest'area per assegnare una griglia ausiliaria a ogni asse. Assegnando griglie ausiliarie all'asse, si diminuisce la distanza tra le griglie principali." #. 9qctc #: 04070000.xhp @@ -2813,7 +2813,7 @@ "par_id3156284\n" "help.text" msgid "Formats the selected object. Depending on the object selected, the command opens dialogs that you can also open by choosing the following commands from the Format menu:" -msgstr "Assegna determinate proprietà all'oggetto selezionato. Il comando apre le finestre di dialogo associate all'oggetto selezionato, che potete richiamare anche con i seguenti comandi del menu Formato:" +msgstr "Assegna determinate proprietà all'oggetto selezionato. Il comando apre le finestre di dialogo associate all'oggetto selezionato, richiamabili anche con i seguenti comandi del menu Formato:" #. vHgCk #: 05010000.xhp @@ -2912,7 +2912,7 @@ "par_id3152577\n" "help.text" msgid "This dialog allows you to change the properties of a selected data point. The dialog appears when there is only one data point selected when you choose Format - Format Selection. Some of the menu entries are only available for 2D or 3D charts." -msgstr "In questa finestra di dialogo potete modificare le proprietà di un punto dati selezionato. La finestra compare se, scegliendo Formato - Formato selezione, è selezionato un unico punto dati. Alcune voci del menu sono disponibili solo nei grafici 2D o solo in quelli 3D." +msgstr "In questa finestra di dialogo è possibile modificare le proprietà di un punto dati selezionato. La finestra compare se, scegliendo Formato - Formato selezione, viene selezionato un unico punto dati. Alcune voci del menu sono disponibili solo nei grafici 2D o solo in quelli 3D." #. QGeL3 #: 05010100.xhp @@ -2921,7 +2921,7 @@ "par_id3149121\n" "help.text" msgid "Any changes made only affect this one data point. For example, if you edit the color of a bar, only the color of that bar will be different." -msgstr "Le modifiche apportate hanno effetto solo sul singolo punto dati selezionato. Se ad esempio modificate il colore di una barra, solo quella barra apparirà con un colore differente." +msgstr "Le modifiche apportate hanno effetto solo sul singolo punto dati selezionato. Se, ad esempio, si modifica il colore di una barra, solo quella barra apparirà con un colore differente." #. VFmBM #: 05010200.xhp @@ -2948,7 +2948,7 @@ "par_id3145750\n" "help.text" msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose Format - Format Selection. Some of the menu entries are only available for 2D or 3D charts." -msgstr "Utilizzate questi comandi per cambiare le proprietà di una serie di dati selezionata. La finestra di dialogo viene visualizzata se quando selezionate Formato - Formato selezione è già selezionata una serie di dati. Alcune delle voci di menu sono disponibili solo per i grafici 2D o 3D." +msgstr "Utilizzare questi comandi per cambiare le proprietà di una serie di dati selezionata. La finestra di dialogo viene visualizzata se quando si seleziona Formato - Formato selezione è già selezionata una serie di dati. Alcune delle voci di menu sono disponibili solo per i grafici 2D o 3D." #. 9jEEq #: 05010200.xhp @@ -2957,7 +2957,7 @@ "par_id3154015\n" "help.text" msgid "Any changes made here affect the entire data series. For example, if you change the color, all elements belonging to this data series will change color." -msgstr "Qualsiasi cambiamento apportato qui si ripercuote sull'intera serie di dati. Ad esempio, se cambiate il colore, tutti gli elementi appartenenti a questa serie di dati cambieranno colore." +msgstr "Qualsiasi cambiamento apportato qui si ripercuote sull'intera serie di dati. Ad esempio, cambiando il colore tutti gli elementi appartenenti a questa serie di dati cambieranno colore." #. ncg3c #: 05010200.xhp @@ -3092,7 +3092,7 @@ "par_id3149666\n" "help.text" msgid "Modifies the properties of the selected title." -msgstr "Con questo comando si possono modificare le caratteristiche del titolo selezionato." +msgstr "Con questo comando è possibile modificare le caratteristiche del titolo selezionato." #. LUkDN #: 05020101.xhp @@ -3137,7 +3137,7 @@ "par_id3145748\n" "help.text" msgid "Some of the options are not available for all types of labels. For example, there are different options for 2D and 3D object labels." -msgstr "Alcune delle opzioni elencate non sono disponibili per tutte le diciture. Ad esempio, le opzioni disponibili sono differenti per le didascalie degli oggetti 2D e per quelle degli oggetti 3D." +msgstr "Alcune delle opzioni elencate non sono disponibili per tutte le didascalie. Ad esempio, le opzioni disponibili sono differenti per le didascalie degli oggetti 2D e per quelle degli oggetti 3D." #. 7qTDU #: 05020101.xhp @@ -3146,7 +3146,7 @@ "par_id3150717\n" "help.text" msgid "Please note that problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size." -msgstr "Vi ricordiamo che se la visualizzazione del grafico è troppo piccola, è possibile che le didascalie vengano visualizzate male. Potete risolvere questo problema ingrandendo la visualizzazione o diminuendo le dimensioni del carattere utilizzato." +msgstr "Si ricorda che, se la visualizzazione del grafico è troppo piccola, è possibile che le didascalie vengano visualizzate male. È possibile risolvere questo problema ingrandendo la visualizzazione o diminuendo le dimensioni del carattere utilizzato." #. k3fKQ #: 05020200.xhp @@ -3236,7 +3236,7 @@ "par_id3147436\n" "help.text" msgid "The AxesTitle On/Off icon on the Formatting bar switches the labeling of all axes on or off." -msgstr "Facendo clic su Mostra/nascondi il titolo degli assi nella barra di formattazione si può attivare o disattivare a livello generale la visualizzazione delle didascalie degli assi." +msgstr "Facendo clic su Mostra/nascondi il titolo degli assi nella barra di formattazione è possibile attivare o disattivare a livello generale la visualizzazione delle didascalie degli assi." #. RAUCj #: 05020201.xhp @@ -3254,7 +3254,7 @@ "par_id3154510\n" "help.text" msgid "Defines the text direction of cell contents. Click one of the ABCD buttons to assign the required direction." -msgstr "Definisce la direzione del testo contenuto nella cella. Facendo clic sui pulsanti ABCD potete assegnare la direzione richiesta." +msgstr "Definisce la direzione del testo contenuto nella cella. Facendo clic sui pulsanti ABCD è possibile assegnare la direzione richiesta." #. zqcfT #: 05020201.xhp @@ -3272,7 +3272,7 @@ "par_id3149018\n" "help.text" msgid "Clicking anywhere on the wheel defines the variable text orientation. The letters \"ABCD\" on the button correspond to the new setting." -msgstr "Facendo clic sul selettore a forma di disco si può definire l'orientazione del testo. Le lettere \"ABCD\" sul pulsante indicano la nuova impostazione." +msgstr "Facendo clic sul selettore a forma di disco è possibile definire l'orientazione del testo. Le lettere \"ABCD\" sul pulsante corrispondono alla nuova impostazione." #. 974Sh #: 05020201.xhp @@ -3299,7 +3299,7 @@ "par_id3150342\n" "help.text" msgid "If you define a vertical x-axis label, the text may be cut off by the line of the x-axis." -msgstr "In una didascalia assi verticale è possibile che questa venga \"tagliata\" dalla linea dell'asse X." +msgstr "Se si definisce una didascalia verticale per l'asse X, è possibile che questa venga \"tagliata\" dalla linea dell'asse X." #. 4n8hZ #: 05020201.xhp @@ -3398,7 +3398,7 @@ "par_id3159230\n" "help.text" msgid "The options on this tab are only available for a 2D chart, under Format - Axis - Y Axis or X Axis. In this area, you can define the alignment of the number labels on the X or Y axis." -msgstr "Le opzioni di questa scheda sono disponibili solo per i grafici bidimensionali, alla voce Formato - Asse - Asse Y o Asse X. In quest'area potete definire l'allineamento delle didascalie numeriche sugli assi X o Y." +msgstr "Le opzioni di questa scheda sono disponibili solo per i grafici bidimensionali, alla voce Formato - Asse - Asse Y o Asse X. In quest'area è possibile definire l'allineamento delle didascalie numeriche sugli assi X o Y." #. woFAp #: 05020201.xhp @@ -3479,7 +3479,7 @@ "par_id3149353\n" "help.text" msgid "Problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size." -msgstr "Se il grafico è troppo piccolo, è possibile che le didascalie risultino di difficile lettura. Per ovviare a questo problema, provate a ingrandire la visualizzazione o a ridurre la dimensione del carattere." +msgstr "Se il grafico è troppo piccolo, è possibile che le didascalie risultino di difficile lettura. Per ovviare a questo problema, provare a ingrandire la visualizzazione o a ridurre la dimensione del carattere." #. w9Znb #: 05020201.xhp @@ -3677,7 +3677,7 @@ "par_id3154319\n" "help.text" msgid "Opens a dialog, where you can edit the properties of the selected axis. The name of the dialog depends on the selected axis." -msgstr "Apre una finestra in cui si possono modificare le proprietà dell'asse selezionato. Il nome della finestra dipende dall'asse selezionato." +msgstr "Apre una finestra in cui è possibile modificare le proprietà dell'asse selezionato. Il nome della finestra dipende dall'asse selezionato." #. k52jm #: 05040100.xhp @@ -3695,7 +3695,7 @@ "par_id3159266\n" "help.text" msgid "Scaling the X axis is only possible in the X-Y chart type." -msgstr "Solo nei grafici del tipo XY è possibile scalare l'asse X." +msgstr "Solo nei grafici del tipo XY è possibile ridimensionare l'asse X." #. Gf2gJ #: 05040200.xhp @@ -3731,7 +3731,7 @@ "par_id3155628\n" "help.text" msgid "Opens the Y Axis dialog, to change properties of the Y axis." -msgstr "Apre la finestra di dialogo per l'asse Y dalla quale è possibile modificare le proprietà dell'asse Y." +msgstr "Apre la finestra di dialogo per l'asse Y in cui è possibile modificare le proprietà dell'asse Y." #. JGn49 #: 05040201.xhp @@ -3749,7 +3749,7 @@ "bm_id3150868\n" "help.text" msgid "scaling; axeslogarithmic scaling along axescharts;scaling axesX axes;scalingY axes; scaling" -msgstr "Scalare;assiScala; logaritmica lungo gli assiGrafico; scalare gli assiX, asse;scalareY, asse;scalare" +msgstr "Ridimensionare;assiScala; logaritmica lungo gli assiGrafico; scalare gli assiX, asse;ridimensionareY, asse;ridimensionare" #. kwALA #: 05040201.xhp @@ -3767,7 +3767,7 @@ "par_id3154013\n" "help.text" msgid "Controls the scaling of the X or Y axis." -msgstr "Controlla la scala dell'asse X o Y." +msgstr "Controlla il ridimensionamento dell'asse X o Y." #. Y42fe #: 05040201.xhp @@ -3776,7 +3776,7 @@ "par_id3148576\n" "help.text" msgid "The axes are automatically scaled by $[officename] so that all values are optimally displayed." -msgstr "$[officename] riduce automaticamente gli assi, in modo tale che tutti i valori siano visualizzati perfettamente." +msgstr "$[officename] ridimensiona automaticamente gli assi, in modo tale che tutti i valori siano visualizzati in modo ottimale." #. uhBHq #: 05040201.xhp @@ -3785,7 +3785,7 @@ "par_id3149379\n" "help.text" msgid "To achieve specific results, you can manually change the axis scaling. For example, you can display only the top areas of the columns by shifting the zero line upwards." -msgstr "Per ottenere un risultato specifico potete anche modificare manualmente la scala dell'asse. Ad esempio, potete scegliere di visualizzare solo la parte superiore delle colonne spostando la linea dello zero verso l'alto." +msgstr "Per ottenere un risultato specifico è possibile anche ridimensionare manualmente l'asse. Ad esempio, è possibile scegliere di visualizzare solo la parte superiore delle colonne spostando la linea dello zero verso l'alto." #. cqLQh #: 05040201.xhp @@ -3803,7 +3803,7 @@ "par_id3149400\n" "help.text" msgid "You can enter values for subdividing axes in this area. You can automatically set the properties Minimum, Maximum, Major interval, Minor interval count and Reference value." -msgstr "In questa sezione potete digitare i valori per la scala degli assi. Potete impostare automaticamente le proprietà Minimo, Massimo, Intervallo principale, Intervallo secondario e Valore di riferimento." +msgstr "In questa sezione è possibile inserire i valori per la suddivisione dell'asse. È possibile impostare automaticamente le proprietà Minimo, Massimo, Intervallo principale, Intervallo secondario e Valore di riferimento." #. 8DGor #: 05040201.xhp @@ -3911,7 +3911,7 @@ "par_id3145389\n" "help.text" msgid "You must first deselect the Automatic option in order to modify the values." -msgstr "Eliminando il contrassegno dalla casella di selezione Automatico si può assegnare un nuovo valore nel campo di testo." +msgstr "Eliminando il contrassegno dalla casella di selezione Automatico è possibili assegnare un nuovo valore nel campo di testo." #. vbqNC #: 05040201.xhp @@ -3920,7 +3920,7 @@ "par_id3149129\n" "help.text" msgid "Disable this feature if you are working with \"fixed\" values, as it does not permit automatic scaling." -msgstr "Se desiderate lavorare con valori \"fissi\", si consiglia di disattivare questa opzione. In questo modo si evita che si verifichi una scala automatica (dinamica)." +msgstr "Se si lavora con valori \"fissi\", disattivare questa opzione, poiché essa non permette il ridimensionamento automatico." #. hATXR #: 05040201.xhp @@ -3938,7 +3938,7 @@ "par_id3145360\n" "help.text" msgid "Specifies that you want the axis to be subdivided logarithmically." -msgstr "Specifica la suddivisione logaritmica dell'asse." +msgstr "Specifica la suddivisione dell'asse in forma logaritmica." #. CCBLE #: 05040201.xhp @@ -3947,7 +3947,7 @@ "par_id3153956\n" "help.text" msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease." -msgstr "Questa funzione è particolarmente utile se utilizzate valori molto diversi tra di loro. Con la scala logaritmica è possibile equiparare le distanze tra le linee della griglia e contemporaneamente fare in modo che esse mostrino una valenza diversa." +msgstr "Questa funzione è particolarmente utile quando si utilizzano valori molto diversi tra loro. Con la scala logaritmica è possibile equiparare le distanze tra le linee della griglia e contemporaneamente fare in modo che esse mostrino una valenza diversa." #. qtLGA #: 05040201.xhp @@ -3983,7 +3983,7 @@ "par_id59225\n" "help.text" msgid "For some types of axes, you can select to format an axis as text or date, or to detect the type automatically. For the axis type \"Date\" you can set the following options." -msgstr "Per alcuni tipi di assi, si può selezionare per formattare un asse come testo o data, o per individuarne automaticamente il tipo. Per il tipo di asse \"Data\", potete impostare le opzioni che seguono." +msgstr "Per alcuni tipi di asse, è possibile selezionare per formattare un asse come testo o data, o per individuarne automaticamente il tipo. Per il tipo di asse \"Data\", è possibile impostare le opzioni seguenti." #. ZDvDA #: 05040201.xhp @@ -4334,7 +4334,7 @@ "par_id3155764\n" "help.text" msgid "Opens a submenu, where you select the grid you want to format." -msgstr "Apre un sottomenu da cui potete selezionare la griglia da formattare." +msgstr "Apre un sottomenu in cui è possibile selezionare la griglia da formattare." #. hUUha #: 05050000.xhp @@ -4469,7 +4469,7 @@ "par_id3154685\n" "help.text" msgid "Opens the Chart Wall dialog, where you can modify the properties of the chart wall. The chart wall is the \"vertical\" background behind the data area of the chart." -msgstr "Apre la finestra di dialogo Pareti del grafico, in cui si possono modificare le proprietà dello sfondo \"verticale\" posto dietro all'area dei dati." +msgstr "Apre la finestra di dialogo Pareti del grafico, in cui è possibile modificare le proprietà dello sfondo \"verticale\" posto dietro l'area dei dati." #. ukkpD #: 05070000.xhp @@ -4505,7 +4505,7 @@ "par_id3150767\n" "help.text" msgid "Opens the Chart Floor dialog, where you can modify the properties of the chart floor. The chart floor is the lower area in 3D charts. This function is only available for 3D charts." -msgstr "Apre la finestra di dialogo Pavimento del grafico, in cui si possono modificare le proprietà dell'area inferiore dei grafici tridimensionali. Questa funzione è disponibile solo per i grafici 3D." +msgstr "Apre la finestra di dialogo Pavimento del grafico, in cui è possibile modificare le proprietà dell'area inferiore dei grafici tridimensionali. Questa funzione è disponibile solo per i grafici 3D." #. rVbgq #: 05080000.xhp @@ -4541,7 +4541,7 @@ "par_id3125864\n" "help.text" msgid "Opens the Chart Area dialog, where you can modify the properties of the chart area. The chart area is the background behind all elements of the chart." -msgstr "Apre la finestra di dialogo Area del grafico, in cui si possono modificare le proprietà dello sfondo su cui compaiono gli elementi del grafico." +msgstr "Apre la finestra di dialogo Area del grafico, in cui è possibile modificare le proprietà dello sfondo su cui compaiono gli elementi del grafico." #. sEsxS #: 05120000.xhp @@ -4568,7 +4568,7 @@ "par_id3145750\n" "help.text" msgid "Allows you to modify the order of the data series already set in the chart." -msgstr "Qui avete la possibilità di modificare in un secondo tempo la disposizione della serie di dati del grafico." +msgstr "Qui si ha la possibilità di modificare in un secondo tempo la disposizione della serie di dati del grafico." #. DE4oP #: 05120000.xhp @@ -4577,7 +4577,7 @@ "par_id3155411\n" "help.text" msgid "The position of the data in the data table remains unchanged. You can only choose the commands after inserting a chart in $[officename] Calc." -msgstr "Durante questa operazione la posizione dei dati nella tabella dati rimane invariata. I comandi sono selezionabili solo se inserite un grafico in $[officename] Calc." +msgstr "Durante questa operazione la posizione dei dati nella tabella dati rimane invariata. I comandi sono selezionabili solo se si inserisce un grafico in $[officename] Calc." #. ymTP6 #: 05120000.xhp @@ -4649,7 +4649,7 @@ "par_id7085787\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "Potete scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." +msgstr "È possibile scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." #. NSMjA #: choose_chart_type.xhp @@ -4667,7 +4667,7 @@ "par_id7309488\n" "help.text" msgid "Choose from the following chart types, depending on data type and intended presentation effect." -msgstr "Potete scegliere uno dei seguenti tipi di grafico, in base ai tipi di dati e agli effetti di visualizzazione scelti." +msgstr "È possibile scegliere uno dei seguenti tipi di grafico, in base ai tipi di dati e agli effetti di visualizzazione scelti." #. bDtES #: choose_chart_type.xhp @@ -4865,7 +4865,7 @@ "par_id9421979\n" "help.text" msgid "In a chart that displays lines (Line type or XY type), you can choose to show curves instead of straight lines. Some options control the properties of those curves." -msgstr "In un grafico che visualizza le linee (tipo a linea o XY), potete scegliere di mostrare delle curve al posto delle linee diritte. Alcune opzioni permettono di controllare le proprietà di queste curve." +msgstr "In un grafico che visualizza le linee (tipo a linea o XY), è possibile scegliere di mostrare delle curve al posto delle linee diritte. Alcune opzioni permettono di controllare le proprietà di queste curve." #. MRAjd #: smooth_line_properties.xhp @@ -4883,7 +4883,7 @@ "par_id1601611\n" "help.text" msgid "Select Cubic Spline or B-Spline." -msgstr "Selezionate Curva Spline cubica o B-Spline." +msgstr "Selezionare Curva Spline cubica o B-Spline." #. CNFQV #: smooth_line_properties.xhp @@ -4901,7 +4901,7 @@ "par_id3464461\n" "help.text" msgid "Optionally set the resolution. A higher value leads to a smoother line." -msgstr "Potete inoltre impostare la risoluzione. Un valore più elevato permette di ottenere linee più smorzate." +msgstr "È possibile inoltre impostare la risoluzione. Un valore più elevato permette di ottenere linee più smorzate." #. eLGMB #: smooth_line_properties.xhp @@ -4910,7 +4910,7 @@ "par_id6998809\n" "help.text" msgid "For B-spline lines optionally set the degree of the polynomials." -msgstr "Potete selezionare facoltativamente il grado dei polinomi per le curve B-spline." +msgstr "È possibile selezionare facoltativamente il grado dei polinomi per le curve B-spline." #. fTSUX #: smooth_line_properties.xhp @@ -4973,7 +4973,7 @@ "par_id9485625\n" "help.text" msgid "In a chart that displays lines (Line type or XY type), you can choose to connect the points with steps instead of straight lines. Some options control the properties of those steps." -msgstr "In un grafico che visualizza le linee (tipo a linea o XY), potete scegliere di collegare i punti con gradini al posto delle linee diritte. Alcune opzioni permettono di controllare le proprietà di questi gradini." +msgstr "In un grafico che visualizza le linee (tipo a linea o XY), è possibile scegliere di collegare i punti con gradini al posto delle linee diritte. Alcune opzioni permettono di controllare le proprietà di questi gradini." #. SsvYA #: stepped_line_properties.xhp @@ -4991,7 +4991,7 @@ "par_id9078573\n" "help.text" msgid "Start step icon" -msgstr "Icona iniziale del gradino" +msgstr "Icona del gradino iniziale" #. 4GdQA #: stepped_line_properties.xhp @@ -5027,7 +5027,7 @@ "par_id9673426\n" "help.text" msgid "Center X icon" -msgstr "Al centro dell'icona X" +msgstr "Icona del centro di X" #. AC7AG #: stepped_line_properties.xhp @@ -5045,7 +5045,7 @@ "par_id56635427\n" "help.text" msgid "Center Y icon" -msgstr "Al centro dell'icona Y" +msgstr "Icona del centro di Y" #. xGcjt #: stepped_line_properties.xhp @@ -5090,7 +5090,7 @@ "par_id6998809\n" "help.text" msgid "On the first page of the Chart Wizard or in the context menu of a chart you can choose a chart type. Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines." -msgstr "Nella prima pagina della Creazione guidata grafico, o nel menu contestuale di un grafico, potete scegliere il tipo di grafico. Apre una finestra per modificare le proprietà della vista a tre dimensioni per i grafici a colonna, a barra, a torta e ad area. Per i grafici a linee e XY (Dispersione) è possibile vedere linee 3D." +msgstr "Nella prima pagina della Creazione guidata grafico, o nel menu contestuale di un grafico, è possibile scegliere il tipo di grafico. Apre una finestra per modificare le proprietà della vista a tre dimensioni per i grafici a colonna, a barra, a torta e ad area. Per i grafici a linee e XY (Dispersione) è possibile vedere linee 3D." #. FJdFw #: three_d_view.xhp @@ -5108,7 +5108,7 @@ "par_id3806878\n" "help.text" msgid "When you leave the dialog with OK, the settings are applied permanently." -msgstr "Le impostazioni vengono applicate in modo permanente quando chiudete la finestra di dialogo facendo clic su OK." +msgstr "Le impostazioni vengono applicate in modo permanente quando si chiude la finestra di dialogo facendo clic su OK." #. MGhrT #: three_d_view.xhp @@ -5117,7 +5117,7 @@ "par_id130619\n" "help.text" msgid "When you leave the dialog with Cancel or Escape, the chart returns to the state when you opened the dialog." -msgstr "Se abbandonate la finestra di dialogo premendo il tasto Esc o Annulla, il grafico ritorna allo stato precedente l'apertura della finestra di dialogo." +msgstr "Se si abbandona la finestra di dialogo premendo il tasto Esc o Annulla, il grafico ritorna allo stato precedente l'apertura della finestra di dialogo." #. 6fpbE #: three_d_view.xhp @@ -5126,7 +5126,7 @@ "par_id8081911\n" "help.text" msgid "For a 3D chart you can choose Format - 3D View to set perspective, appearance and illumination." -msgstr "Per un grafico 3D potete selezionare Formato - Vista 3D per impostare prospettiva, aspetto e illuminazione." +msgstr "Per un grafico 3D è possibile selezionare Formato - Vista 3D per impostare prospettiva, aspetto e illuminazione." #. kB3EJ #: three_d_view.xhp @@ -5144,7 +5144,7 @@ "par_id5781731\n" "help.text" msgid "Enter the values for rotation of the chart on the three axes and for a perspective view." -msgstr "Digitate i valori per la rotazione del grafico sui tre assi e per una vista prospettica." +msgstr "Digitare i valori per la rotazione del grafico sui tre assi e per una vista prospettica." #. q86vQ #: three_d_view.xhp @@ -5153,7 +5153,7 @@ "par_id9999694\n" "help.text" msgid "Set all angles to 0 for a front view of the chart. Pie charts and donut charts are shown as circles." -msgstr "Impostate tutti gli angoli su 0 per una vista frontale del grafico. I grafici a torta e ad anello vengono mostrati come cerchi." +msgstr "Impostare tutti gli angoli su 0 per una vista frontale del grafico. I grafici a torta e ad anello vengono mostrati come cerchi." #. 7gq8D #: three_d_view.xhp @@ -5162,7 +5162,7 @@ "par_id2861720\n" "help.text" msgid "With Right-angled axes enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders." -msgstr "Se è abilitato l'asse ad angolo retto, potete ruotare il contenuto del grafico solo nei versi X e Y, ossia parallelamente ai bordi del grafico." +msgstr "Se è abilitato l'asse ad angolo retto, è possibile ruotare il contenuto del grafico solo nei versi X e Y, ossia parallelamente ai bordi del grafico." #. WbNFp #: three_d_view.xhp @@ -5207,7 +5207,7 @@ "par_id4923245\n" "help.text" msgid "Select the Perspective check box to view the chart in central perspective as through a camera lens instead of using a parallel projection." -msgstr "Selezionate la casella di controllo Prospettiva per visualizzare il grafico in una prospettiva centrale, come attraverso la lente di una fotocamera invece che utilizzando una proiezione parallela." +msgstr "Selezionare la casella di controllo Prospettiva per visualizzare il grafico in una prospettiva centrale, come attraverso la lente di una fotocamera invece che utilizzando una proiezione parallela." #. ttWsp #: three_d_view.xhp @@ -5234,7 +5234,7 @@ "par_id7623828\n" "help.text" msgid "If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes." -msgstr "Se è abilitato l'asse ad angolo retto, puoi ruotare i contenuti del grafico solo nei versi X e Y, ossia parallelamente ai bordi del grafico. Per impostazione predefinita, l'asse ad angolo retto è abilitato nei grafici 3D appena creati. I grafici a ciambella e a torta non supportano gli assi ad angolo retto." +msgstr "Se è abilitato l'asse ad angolo retto, è possibile ruotare i contenuti del grafico solo nei versi X e Y, ossia parallelamente ai bordi del grafico. Per impostazione predefinita, l'asse ad angolo retto è abilitato nei grafici 3D appena creati. I grafici a ciambella e a torta non supportano gli assi ad angolo retto." #. AWYCE #: three_d_view.xhp @@ -5288,7 +5288,7 @@ "par_id1186254\n" "help.text" msgid "Select a scheme from the list box." -msgstr "Selezionate uno schema dall'elenco." +msgstr "Selezionare uno schema dall'elenco." #. NyTEB #: three_d_view.xhp @@ -5306,7 +5306,7 @@ "par_id7141026\n" "help.text" msgid "If you mark or unmark a combination of check boxes that is not given by the Realistic or Simple scheme, you create a Custom scheme." -msgstr "Potete creare uno schema personalizzato, selezionando o deselezionando una combinazione di caselle di controllo non previste dagli schemi Realistico o Semplice." +msgstr "È possibile creare uno schema personalizzato, selezionando o deselezionando una combinazione di caselle di controllo non previste dagli schemi Realistico o Semplice." #. A6j2j #: three_d_view.xhp @@ -5315,7 +5315,7 @@ "par_id1579027\n" "help.text" msgid "Mark Shading to use the Gouraud method for rendering the surface, otherwise a flat method is used." -msgstr "Contrassegnate Ombreggiatura per utilizzare il metodo di resa della superficie Gouraud, in alternativa verrà utilizzato un metodo piano." +msgstr "Contrassegnare Ombreggiatura per utilizzare il metodo di resa della superficie Gouraud, in alternativa verrà utilizzato un metodo piano." #. WRqk7 #: three_d_view.xhp @@ -5342,7 +5342,7 @@ "par_id8469191\n" "help.text" msgid "Mark Object Borders to draw lines along the edges." -msgstr "Selezionate Bordi dell'oggetto per disegnare linee attorno ai bordi." +msgstr "Selezionare Bordi dell'oggetto per disegnare linee attorno ai bordi." #. pjkcz #: three_d_view.xhp @@ -5351,7 +5351,7 @@ "par_id4407483\n" "help.text" msgid "Mark Rounded Edges to smooth the edges of box shapes." -msgstr "Contrassegnate Bordi arrotondati per addolcire i bordi dei riquadri." +msgstr "Contrassegnare Bordi arrotondati per addolcire i bordi dei riquadri." #. 5nhwU #: three_d_view.xhp @@ -5360,7 +5360,7 @@ "par_id8531449\n" "help.text" msgid "Select a scheme from the list box, or click any of the check boxes below." -msgstr "Seleziona uno schema dalla casella di riepilogo oppure fai clic su una delle caselle di controllo sotto riportate." +msgstr "Selezionare uno schema dalla casella di riepilogo oppure fare clic su una delle caselle di controllo sotto riportate." #. anDsd #: three_d_view.xhp @@ -5405,7 +5405,7 @@ "par_id9038972\n" "help.text" msgid "Set the light sources for the 3D view." -msgstr "Definisci le sorgenti luminose per la vista in 3D." +msgstr "Definisce le sorgenti luminose per la vista in 3D." #. Bs7GH #: three_d_view.xhp @@ -5414,7 +5414,7 @@ "par_id6531266\n" "help.text" msgid "Click any of the eight buttons to switch a directed light source on or off." -msgstr "Fate clic su uno degli otto pulsanti per attivare o disattivare la luce diretta." +msgstr "Fare clic su uno degli otto pulsanti per attivare o disattivare la luce diretta." #. FbkLw #: three_d_view.xhp @@ -5432,7 +5432,7 @@ "par_id2761314\n" "help.text" msgid "For the selected light source, you can then choose a color and intensity in the list box just below the eight buttons. The brightness values of all lights are added, so use dark colors when you enable multiple lights." -msgstr "Potete impostare colore e intensità della fonte di luce selezionata nella casella di riepilogo sotto gli otto pulsanti. I valori di luminosità di tutte le luci vengono sommati gli uni agli altri, utilizzate quindi colori scuri quando attivate luci multiple." +msgstr "È possibile impostare colore e intensità della fonte di luce selezionata nella casella di riepilogo sotto gli otto pulsanti. I valori di luminosità di tutte le luci vengono sommati gli uni agli altri, utilizzare quindi colori scuri quando si attivano luci multiple." #. 2XSXK #: three_d_view.xhp @@ -5459,7 +5459,7 @@ "par_id121158\n" "help.text" msgid "Use the Ambient light list box to define the ambient light which shines with a uniform intensity from all directions." -msgstr "Utilizzate la casella di riepilogo Luce ambientale per definire un'illuminazione uniforme da tutte le direzioni." +msgstr "Utilizzare la casella di riepilogo Luce ambientale per definire un'illuminazione uniforme da tutte le direzioni." #. Eqkxr #: three_d_view.xhp @@ -5468,7 +5468,7 @@ "par_id2423780\n" "help.text" msgid "Drag the right slider to set the vertical height and direction of the selected light source." -msgstr "Trascina il cursore destro per impostare l'altezza e la direzione verticale della fonte di luce selezionata." +msgstr "Trascinare il cursore destro per impostare l'altezza e la direzione verticale della fonte di luce selezionata." #. ZWk38 #: three_d_view.xhp @@ -5477,7 +5477,7 @@ "par_id2569658\n" "help.text" msgid "Drag the bottom slider to set the horizontal position and direction of the selected light source." -msgstr "Trascina il cursore in basso per impostare la posizione e la direzione orizzontale della fonte di luce selezionata." +msgstr "Trascinare il cursore in basso per impostare la posizione e la direzione orizzontale della fonte di luce selezionata." #. VmhCQ #: three_d_view.xhp @@ -5486,7 +5486,7 @@ "par_id6394238\n" "help.text" msgid "Click to switch between an illumination model of a sphere or a cube." -msgstr "Fai clic per alternare tra un modello di illuminazione a sfera e a cubo." +msgstr "Fare clic per alternare tra un modello di illuminazione a sfera e a cubo." #. 9ut8k #: three_d_view.xhp @@ -5495,7 +5495,7 @@ "par_id533768\n" "help.text" msgid "Click to enable or disable the specular light source with highlights." -msgstr "Fai clic per attivare o disattivare una fonte di luce speculare con aree evidenziate." +msgstr "Fare clic per attivare o disattivare una fonte di luce speculare con aree evidenziate." #. muQW4 #: three_d_view.xhp @@ -5504,7 +5504,7 @@ "par_id7214270\n" "help.text" msgid "Click to enable or disable the uniform light source." -msgstr "Fai clic per attivare o disattivare una sorgente di luce uniforme." +msgstr "Fare clic per attivare o disattivare una sorgente di luce uniforme." #. acKKh #: three_d_view.xhp @@ -5576,7 +5576,7 @@ "par_id916776\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "Potete scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." +msgstr "È possibile scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." #. AXGaZ #: type_area.xhp @@ -5657,7 +5657,7 @@ "par_id40589\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "Potete scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." +msgstr "È possibile scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." #. fPDAo #: type_bubble.xhp @@ -5720,7 +5720,7 @@ "par_id3430585\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "Potete scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." +msgstr "È possibile scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." #. 2AjSb #: type_column_bar.xhp @@ -5738,7 +5738,7 @@ "par_id2244026\n" "help.text" msgid "This type shows a bar chart or bar graph with vertical bars. The height of each bar is proportional to its value. The x axis shows categories. The y axis shows the value for each category." -msgstr "Questi tipo mostra un grafico o grafico a barre con barre verticali. L'altezza di ciascuna barra è proporzionale al proprio valore. L'asse X mostra le categorie. L'asse Y mostra il valore di ciascuna categoria." +msgstr "Questo tipo mostra un grafico o grafico a barre con barre verticali. L'altezza di ciascuna barra è proporzionale al proprio valore. L'asse X mostra le categorie. L'asse Y mostra il valore di ciascuna categoria." #. nvJDG #: type_column_bar.xhp @@ -5774,7 +5774,7 @@ "par_id2224494\n" "help.text" msgid "You can enable a 3D view of the data values. The \"realistic\" scheme tries to give the best 3D look. The \"simple\" scheme tries to mimic the chart view of other Office products." -msgstr "Potete abilitare una vista 3D dei valori dei dati. Lo schema \"realistico\" cerca di dare la miglior visualizzazione 3D. Lo schema \"semplice\" cerca di imitare la visualizzazione dei grafici di altri prodotti da ufficio." +msgstr "È possibile abilitare una vista 3D dei valori dei dati. Lo schema \"realistico\" cerca di dare la miglior visualizzazione 3D. Lo schema \"semplice\" cerca di imitare la visualizzazione dei grafici di altri prodotti da ufficio." #. KLGK5 #: type_column_bar.xhp @@ -5783,7 +5783,7 @@ "par_id7359233\n" "help.text" msgid "For 3D charts, you can select the shape of each data value from Box, Cylinder, Cone, and Pyramid." -msgstr "Per i grafici 3D potete selezionare la forma di ciascun valore dei dati da Rettangolo, Cilindro, Cono e Piramide." +msgstr "Per i grafici 3D è possibile selezionare la forma di ciascun valore dei dati da Rettangolo, Cilindro, Cono e Piramide." #. EhVP5 #: type_column_bar.xhp @@ -5846,7 +5846,7 @@ "par_id4818567\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "Potete scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." +msgstr "È possibile scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." #. p8vzY #: type_column_line.xhp @@ -5873,7 +5873,7 @@ "par_id7910397\n" "help.text" msgid "Select one of the variants" -msgstr "Selezionate una delle varianti" +msgstr "Selezionare una delle varianti" #. qKv5L #: type_column_line.xhp @@ -5900,7 +5900,7 @@ "par_id1842097\n" "help.text" msgid "You can insert a second y-axis with Insert - Axes after you finish the wizard." -msgstr "Potete inserire un secondo asse Y con Inserisci - Assi dopo che avete terminato la procedura guidata." +msgstr "È possibile inserire un secondo asse Y con Inserisci - Assi dopo aver terminato la procedura guidata." #. F4KnA #: type_column_line.xhp @@ -5918,7 +5918,7 @@ "par_id8871120\n" "help.text" msgid "The leftmost columns (or the top rows) of the selected data range provide the data that are shown as Columns objects. The other columns or rows of the data range provide the data for the Lines objects. You can change this assignment in the Data Series dialog." -msgstr "La colonna a sinistra (o la riga in alto) dell'intervallo selezionato forniscono i dati che sono indicati come oggetti delle colonne. Le altre colonne o righe dell'intervallo forniscono i dati per gli oggetti Linee. Potete modificare l'assegnazione nella finestra di dialogoSerie dati." +msgstr "La colonna a sinistra (o la riga in alto) dell'intervallo selezionato forniscono i dati che sono indicati come oggetti delle colonne. Le altre colonne o righe dell'intervallo forniscono i dati per gli oggetti Linee. È possibile modificare l'assegnazione nella finestra di dialogoSerie dati." #. dMYwd #: type_column_line.xhp @@ -5927,7 +5927,7 @@ "par_id2952055\n" "help.text" msgid "Select the data range." -msgstr "Selezionate l'intervallo di dati." +msgstr "Selezionare l'intervallo di dati." #. CjHGL #: type_column_line.xhp @@ -5936,7 +5936,7 @@ "par_id594500\n" "help.text" msgid "Click one of the options for data series in rows or in columns." -msgstr "Fate clic su una delle opzioni per la serie di dati nelle righe e nelle colonne." +msgstr "Fare clic su una delle opzioni per la serie di dati nelle righe e nelle colonne." #. JB5Ue #: type_column_line.xhp @@ -5945,7 +5945,7 @@ "par_id1944944\n" "help.text" msgid "Check whether the data range has labels in the first row or in the first column or both." -msgstr "Verificate se l'area dati ha didascalie nella prima riga, nella prima colonna o in entrambe." +msgstr "Verificare se l'area dati ha didascalie nella prima riga, nella prima colonna o in entrambe." #. sPWZN #: type_column_line.xhp @@ -5954,7 +5954,7 @@ "hd_id6667683\n" "help.text" msgid "Organizing data series" -msgstr "Organizzare serie di dati" +msgstr "Organizzare le serie di dati" #. Lwtzk #: type_column_line.xhp @@ -5963,7 +5963,7 @@ "par_id7616809\n" "help.text" msgid "In the Data Series list box you see a list of all data series in the current chart." -msgstr "Nella casella di riepilogo Serie di dati potete vedere una lista di tutte le serie di dati del grafico attivo." +msgstr "Nella casella di riepilogo Serie di dati è possibile vedere una lista di tutte le serie di dati del grafico attivo." #. dqMFF #: type_column_line.xhp @@ -5981,7 +5981,7 @@ "par_id1446272\n" "help.text" msgid "To organize the data series, select an entry in the list." -msgstr "Per organizzare le serie dei dati, selezionate una voce nella lista." +msgstr "Per organizzare le serie dei dati, selezionare una voce nella lista." #. tpRFy #: type_column_line.xhp @@ -5990,7 +5990,7 @@ "par_id3779717\n" "help.text" msgid "Click Add to add another data series below the selected entry. The new data series has the same type as the selected entry." -msgstr "Fate clic su Aggiungi per aggiungere un'altra serie di dati sotto la voce selezionata. La nuova serie di dati ha lo stesso tipo della voce selezionata." +msgstr "Fare clic su Aggiungi per aggiungere un'altra serie di dati sotto la voce selezionata. La nuova serie di dati ha lo stesso tipo della voce selezionata." #. CJAQb #: type_column_line.xhp @@ -5999,7 +5999,7 @@ "par_id5056611\n" "help.text" msgid "Click Remove to remove the selected entry from the Data Series list." -msgstr "Fate clic su Elimina per eliminare la voce selezionata dalla lista della Serie di dati." +msgstr "Fare clic su Elimina per eliminare la voce selezionata dalla lista Serie di dati." #. A3Fro #: type_column_line.xhp @@ -6008,7 +6008,7 @@ "par_id7786492\n" "help.text" msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This way you can convert a Column data series to a List data series and back. This does not change the order in the data source table, but changes only the arrangement in the chart." -msgstr "Usate i pulsanti freccia su e giù per spostare la voce selezionata in alto o in basso nella lista. In questo modo potete convertire una serie di dati Colonna in una serie di dati Lista e viceversa. Questo non modifica la sequenza nella tabella sorgente dei dati, ma solo l'organizzazione nel grafico." +msgstr "Usare i pulsanti freccia su e giù per spostare la voce selezionata in alto o in basso nella lista. In questo modo è possibile convertire una serie di dati Colonna in una serie di dati Lista e viceversa. Questo non modifica la sequenza nella tabella sorgente dei dati, ma solo l'organizzazione nel grafico." #. RsSsd #: type_column_line.xhp @@ -6026,7 +6026,7 @@ "par_id6768700\n" "help.text" msgid "Click an entry in the list to view and edit the properties for that entry." -msgstr "Fate clic su una voce nella lista per visualizzare e modificare le proprietà di quella voce." +msgstr "Fare clic su una voce nella lista per visualizzare e modificare le proprietà di quella voce." #. tkdcG #: type_column_line.xhp @@ -6035,7 +6035,7 @@ "par_id1924497\n" "help.text" msgid "In the Data Ranges list box you see the role names and cell ranges of the data series components." -msgstr "Nella casella di riepilogo Intervallo dati vedete i ruoli e l'intervallo delle celle dei componenti delle serie di dati." +msgstr "Nella casella di riepilogo Intervallo dati saranno visibili i ruoli e l'intervallo delle celle dei componenti delle serie di dati." #. GWJmB #: type_column_line.xhp @@ -6044,7 +6044,7 @@ "par_id5081942\n" "help.text" msgid "Click an entry, then edit the contents in the text box below." -msgstr "Fate clic su una voce, poi modificate l'indice nella casella di testo sottostante." +msgstr "Fare clic su una voce, poi modificare l'indice nella casella di testo sottostante." #. xpiMy #: type_column_line.xhp @@ -6062,7 +6062,7 @@ "par_id883816\n" "help.text" msgid "Enter the range or click Select data range to minimize the dialog and select the range with the mouse." -msgstr "Indicate l'intervallo o fate clic su Seleziona area dati per ridurre la finestra di dialogo e selezionate l'intervallo col mouse." +msgstr "Indicare l'intervallo o fare clic su Seleziona area dati per ridurre la finestra di dialogo e selezionare l'intervallo col mouse." #. kR4dE #: type_column_line.xhp @@ -6071,7 +6071,7 @@ "par_id5091708\n" "help.text" msgid "The range for a data role, like Y-Values, must not include a label cell." -msgstr "L'intervallo per un ruolo di dati, come i valori di Y, non devo includere la didascalia di una cella." +msgstr "L'intervallo per un ruolo di dati, come i valori di Y, non deve includere la didascalia di una cella." #. dGuVd #: type_column_line.xhp @@ -6089,7 +6089,7 @@ "par_id2767113\n" "help.text" msgid "Enter or select a cell range that will be used as text for categories or data labels." -msgstr "Indicate o scegliete un intervallo di celle che sarà usato come testo per le categorie o per le didascalie dei dati." +msgstr "Indicare o scegliere un intervallo di celle che sarà usato come testo per le categorie o per le didascalie dei dati." #. PcPLC #: type_column_line.xhp @@ -6116,7 +6116,7 @@ "par_id5729544\n" "help.text" msgid "Use the Chart Elements page of the Chart Wizard to insert any of the following elements:" -msgstr "Usate la pagina Elementi del grafico della Creazione guidata grafico per inserire uno dei seguenti elementi:" +msgstr "Usare la pagina Elementi del grafico della Creazione guidata grafico per inserire uno dei seguenti elementi:" #. ZC2FB #: type_column_line.xhp @@ -6152,7 +6152,7 @@ "par_id9909665\n" "help.text" msgid "For additional elements use the Insert menu of the chart in edit mode. There you can define the following elements:" -msgstr "Per elementi aggiuntivi usate il menu Inserisci del grafico in modo modifica. Da questo menu potete definire i seguenti elementi:" +msgstr "Per elementi aggiuntivi usare il menu Inserisci del grafico in modo modifica. Da questo menu è possibile definire i seguenti elementi:" #. PMeXz #: type_column_line.xhp @@ -6197,7 +6197,7 @@ "par_id7889950\n" "help.text" msgid "To set different data labels for each data series, use the properties dialog of the data series." -msgstr "Per impostare didascalie dati diverse per ciascuna serie di dati, usate la finestra di dialogo proprietà della serie di dati." +msgstr "Per impostare didascalie dati diverse per ciascuna serie di dati, usare la finestra di dialogo proprietà della serie di dati." #. qRGBF #: type_line.xhp @@ -6233,7 +6233,7 @@ "par_id389721\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "Potete scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." +msgstr "È possibile scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." #. a3Zmw #: type_line.xhp @@ -6296,7 +6296,7 @@ "par_id2655720\n" "help.text" msgid "Mark Stack series to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select Percent, the y values are scaled as percentage of the category total." -msgstr "Contrassegnate Serie impilate per disporre i valori dei punti Y uno sopra l'altro. I valori Y non rappresentano più valori assoluti, salvo che per la prima colonna disegnata alla base dei punti sovrapposti. Se selezionatePercentuale, i valori Y vengono scalati come percentuale del totale della categoria." +msgstr "Contrassegnare Serie impilate per disporre i valori dei punti Y uno sopra l'altro. I valori Y non rappresentano più valori assoluti, salvo che per la prima colonna disegnata alla base dei punti sovrapposti. Selezionando Percentuale, i valori Y vengono scalati come percentuale del totale della categoria." #. mwECA #: type_line.xhp @@ -6341,7 +6341,7 @@ "par_id40589\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "Potete scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." +msgstr "È possibile scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." #. MWv9D #: type_net.xhp @@ -6404,7 +6404,7 @@ "par_id245979\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "Potete scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." +msgstr "È possibile scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." #. XGE3t #: type_pie.xhp @@ -6431,7 +6431,7 @@ "par_id6529740\n" "help.text" msgid "Pie - this subtype shows sectors as colored areas of the total pie, for one data column only. In the created chart, you can click and drag any sector to separate that sector from the remaining pie or to join it back." -msgstr "Torta - questo sottotipo mostra settori come aree colorate dell'intera torta, solo per una colonna di dati. Nel grafico creato, potete fare clic e trascinare ciascun settore per separarlo dagli altri o per ricongiungerlo." +msgstr "Torta - questo sottotipo mostra settori come aree colorate dell'intera torta, solo per una colonna di dati. Nel grafico creato, è possibile fare clic e trascinare ciascun settore per separarlo dagli altri o per ricongiungerlo." #. GABnz #: type_pie.xhp @@ -6440,7 +6440,7 @@ "par_id9121982\n" "help.text" msgid "Exploded pie - this subtype shows the sectors already separated from each other. In the created chart, you can click and drag any sector to move it along a radial from the pie's center." -msgstr "Torta esplosa - questo sottotipo mostra i settori già separati l'uno dall'altro. Nel grafico creato, potete fare clic e trascinare ciascun settore per spostarlo lungo un radiale dal centro della torta." +msgstr "Torta esplosa - questo sottotipo mostra i settori già separati l'uno dall'altro. Nel grafico creato, è possibile fare clic e trascinare ciascun settore per spostarlo lungo un radiale dal centro della torta." #. qpvFX #: type_pie.xhp @@ -6449,7 +6449,7 @@ "par_id3808404\n" "help.text" msgid "Donut - this subtype can show multiple data columns. Each data column is shown as one donut shape with a hole inside, where the next data column can be shown. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center." -msgstr "Ciambella - questo sottotipo può mostrare colonne dati multiple. Ciascuna colonna di dati viene mostrata con la forma di un ciambella con un foro al centro, dove può essere mostrata la successiva colonna di dati. Nel grafico creato, potete fare clic e trascinare un settore esterno per spostarlo lungo un radiale dal centro della ciambella." +msgstr "Ciambella - questo sottotipo può mostrare colonne dati multiple. Ciascuna colonna di dati viene mostrata con la forma di un ciambella con un foro al centro, dove può essere mostrata la successiva colonna di dati. Nel grafico creato, è possibile fare clic e trascinare un settore esterno per spostarlo lungo un radiale dal centro della ciambella." #. tNW7K #: type_pie.xhp @@ -6458,7 +6458,7 @@ "par_id2394482\n" "help.text" msgid "Exploded donut - this subtype shows the outer sectors already separated from the remaining donut. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center." -msgstr "Ciambella esplosa - questo sottotipo mostra i settori esterni già separati dal resto della ciambella. Nel grafico creato, potete fare clic e trascinare ciascun settore per spostarlo lungo un radiale dal centro della ciambella." +msgstr "Ciambella esplosa - questo sottotipo mostra i settori esterni già separati dal resto della ciambella. Nel grafico creato, è possibile fare clic e trascinare ciascun settore per spostarlo lungo un radiale dal centro della ciambella." #. JRtGo #: type_stock.xhp @@ -6494,7 +6494,7 @@ "par_id3516953\n" "help.text" msgid "On the first page of the Chart Wizard you can choose a chart type." -msgstr "Potete scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." +msgstr "È possibile scegliere il tipo di grafico nella prima pagina della Creazione guidata grafico." #. CZZei #: type_stock.xhp diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/schart.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/schart.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/schart.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/schart.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-09-17 17:44+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1531001135.000000\n" #. wtFDe @@ -50,7 +50,7 @@ "par_id3154685\n" "help.text" msgid "$[officename] lets you present data graphically in a chart, so that you can visually compare data series and view trends in the data. You can insert charts into spreadsheets, text documents, drawings, and presentations." -msgstr "$[officename] vi permette di rappresentare i dati in forma di grafico, in modo da poter confrontare visivamente più serie di dati e visualizzarne le tendenze. Potete inserire grafici nei fogli di calcolo, documenti di testo, disegni e presentazioni." +msgstr "$[officename] permette di rappresentare i dati in forma di grafico, in modo da poter confrontare visivamente più serie di dati e visualizzarne le tendenze. È possibile inserire grafici nei fogli di calcolo, documenti di testo, disegni e presentazioni." #. wFC6F #: main0000.xhp @@ -95,7 +95,7 @@ "par_id4727011\n" "help.text" msgid "Values that you enter in the Chart Data Table dialog (you can create these charts in Writer, Draw, or Impress, and you can copy and paste them also to Calc)" -msgstr "Valori specificati nella finestra di dialogo Tabella dati grafico (potete creare i grafici in Writer, Draw o Impress, e copiarli anche in Calc)" +msgstr "Valori specificati nella finestra di dialogo Tabella dati grafico (è possibile creare i grafici in Writer, Draw o Impress, e copiarli anche in Calc)" #. yKUMz #: main0000.xhp @@ -104,7 +104,7 @@ "par_id76601\n" "help.text" msgid "Creates a chart in the current document. To use a continuous range of cells as the data source for your chart, click inside the cell range, and then choose this command. Alternatively, select some cells and choose this command to create a chart of the selected cells." -msgstr "Crea un grafico nel documento corrente. Per usare un intervallo di celle contigue come sorgente dati per il tuo grafico, fai clic all'interno dell'intervallo di celle e scegli questo comando. In alternativa, seleziona alcune celle e scegli questo comando per creare un grafico dalle celle selezionate." +msgstr "Crea un grafico nel documento corrente. Per usare un intervallo di celle contigue come sorgente dati per il tuo grafico, fare clic all'interno dell'intervallo di celle e scegliere questo comando. In alternativa, selezionare alcune celle e scegliere questo comando per creare un grafico dalle celle selezionate." #. MZr5A #: main0000.xhp @@ -131,7 +131,7 @@ "par_id7911008\n" "help.text" msgid "Click a chart to edit the object properties:" -msgstr "Fate clic su un grafico per modificare le proprietà dell'oggetto:" +msgstr "Fare clic su un grafico per modificare le proprietà dell'oggetto:" #. MMYWv #: main0000.xhp @@ -158,7 +158,7 @@ "par_id7986693\n" "help.text" msgid "Double-click a chart to enter the chart edit mode:" -msgstr "Fate doppio clic su un grafico per entrare nel modo modifica grafico:" +msgstr "Fare doppio clic su un grafico per entrare nel modo modifica grafico:" #. cUADi #: main0000.xhp @@ -167,7 +167,7 @@ "par_id2350840\n" "help.text" msgid "Chart data values (for charts with own data)." -msgstr "Valori dati del grafico (per grafici con dati propri)." +msgstr "Valori dei dati del grafico (per grafici con dati propri)." #. BGFEv #: main0000.xhp @@ -185,7 +185,7 @@ "par_id8442335\n" "help.text" msgid "Double-click a chart element in chart edit mode:" -msgstr "Fate doppio clic su un elemento del grafico nel modo modifica grafico:" +msgstr "Fare doppio clic su un elemento del grafico nel modo modifica grafico:" #. Ft8G5 #: main0000.xhp @@ -194,7 +194,7 @@ "par_id4194769\n" "help.text" msgid "Double-click an axis to edit the scale, type, color, and more." -msgstr "Per modificare scala, tipo, colore e altre impostazioni, fate doppio clic su un asse." +msgstr "Per modificare scala, tipo, colore e altre impostazioni, fare doppio clic su un asse." #. BcUqt #: main0000.xhp @@ -203,7 +203,7 @@ "par_id8644672\n" "help.text" msgid "Double-click a data point to select and edit the data series to which the data point belongs." -msgstr "Fate doppio clic su un punto dati per selezionare e modificare le serie di dati a cui il punto dati fa riferimento." +msgstr "Fare doppio clic su un punto dati per selezionare e modificare le serie di dati a cui il punto dati fa riferimento." #. Drw6j #: main0000.xhp @@ -212,7 +212,7 @@ "par_id6574907\n" "help.text" msgid "With a data series selected, click, then double-click a single data point to edit the properties of this data point (for example, a single bar in a bar chart)." -msgstr "Quando una serie di dati è selezionata, fate clic e quindi doppio clic su un singolo punto dati per modificarne le proprietà (ad esempio, una singola barra in un grafico a barre)." +msgstr "Quando una serie di dati è selezionata, fare clic e quindi doppio clic su un singolo punto dati per modificarne le proprietà (ad esempio, una singola barra in un grafico a barre)." #. ZrY6M #: main0000.xhp @@ -221,7 +221,7 @@ "par_id1019200902360575\n" "help.text" msgid "Double-click the legend to select and edit the legend. Click, then double-click a symbol in the selected legend to edit the associated data series." -msgstr "Fate doppio clic sulla legenda per selezionarla e modificarla. Una volta selezionata la legenda, fate clic e quindi doppio clic su un simbolo per modificare la serie di dati a cui è associato." +msgstr "Fare doppio clic sulla legenda per selezionarla e modificarla. Una volta selezionata la legenda, fare clic e quindi doppio clic su un simbolo per modificare la serie di dati a cui è associato." #. 2GvmD #: main0000.xhp @@ -230,7 +230,7 @@ "par_id7528916\n" "help.text" msgid "Double-click any other chart element, or click the element and open the Format menu, to edit the properties." -msgstr "Fate doppio clic su qualsiasi altro elemento del grafico, o fate clic su un elemento e aprite il menu Formato, per modificare le proprietà." +msgstr "Fare doppio clic su qualsiasi altro elemento del grafico, o fare clic su un elemento e aprire il menu Formato, per modificare le proprietà." #. eCML4 #: main0000.xhp @@ -239,7 +239,7 @@ "par_id8420667\n" "help.text" msgid "Click outside the chart to leave the current edit mode." -msgstr "Fate clic all'esterno del grafico per abbandonare il modo modifica." +msgstr "Fare clic all'esterno del grafico per abbandonare il modo modifica." #. Jcdvi #: main0000.xhp @@ -248,7 +248,7 @@ "par_id4923856\n" "help.text" msgid "To print a chart in high quality, you can export the chart to a PDF file and print that file." -msgstr "Per ottenere una stampa di buona qualità di un grafico, esportatelo in un file PDF e stampate questo file." +msgstr "Per ottenere una stampa di buona qualità di un grafico, esportarlo in un file PDF e stamparlo." #. dk7i6 #: main0000.xhp @@ -257,7 +257,7 @@ "par_id0810200912061033\n" "help.text" msgid "In chart edit mode, you see the Formatting Bar for charts near the upper border of the document. The Drawing Bar for charts appears near the lower border of the document. The Drawing Bar shows a subset of the icons from the Drawing toolbar of Draw and Impress." -msgstr "Quando il grafico è in modo modifica, viene visualizzata la Barra di formattazione per grafici vicino al bordo superiore del documento. La barra degli oggetti per disegno viene visualizzata vicino al bordo inferiore del documento. Un sottoinsieme di icone dalla barra Disegno di Draw e Impress viene visualizzato nella barra degli oggetti per disegno." +msgstr "Quando il grafico è in modo modifica, viene visualizzata la Barra di formattazione per grafici vicino al bordo superiore del documento. La barra degli oggetti per disegno viene visualizzata vicino al bordo inferiore del documento. Un sottoinsieme di icone dalla barra Disegno di Draw e Impress è visualizzato nella barra degli oggetti per disegno." #. sNqMe #: main0000.xhp @@ -266,7 +266,7 @@ "par_id0810200902080452\n" "help.text" msgid "You can right-click an element of a chart to open the context menu. The context menu offers many commands to format the selected element." -msgstr "Potete fare clic col pulsante destro del mouse su un elemento del grafico per aprire il menu contestuale. Il menu contestuale offre molti comandi per formattare gli elementi selezionati." +msgstr "È possibile fare clic col pulsante destro del mouse su un elemento del grafico per aprire il menu contestuale. Il menu contestuale offre molti comandi per formattare gli elementi selezionati." #. dQSHt #: main0000.xhp @@ -509,7 +509,7 @@ "par_id0810200904265639\n" "help.text" msgid "Inserts the coefficient of determination R² value." -msgstr "Inserisce il valore del coefficiente di determinazione R² ." +msgstr "Inserisce il valore del coefficiente di determinazione R²." #. BsSAb #: main0000.xhp @@ -581,7 +581,7 @@ "par_id0810200904362896\n" "help.text" msgid "Deletes the R² value." -msgstr "Elimina il valore R² ." +msgstr "Elimina il valore R²." #. 3thAk #: main0000.xhp @@ -653,7 +653,7 @@ "par_id0810200911433835\n" "help.text" msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode." -msgstr "La barra Formattazione viene visualizzata quando si passa in modo modifica. Fate doppio clic sul grafico per entrare in modo modifica. Fate clic fuori dell'area del grafico per abbandonare il modo modifica." +msgstr "La barra Formattazione viene visualizzata quando si passa in modo modifica. Fare doppio clic sul grafico per entrare in modo modifica. Fare clic fuori dell'area del grafico per abbandonare il modo modifica." #. ffA95 #: main0202.xhp @@ -662,7 +662,7 @@ "par_id0810200911433878\n" "help.text" msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar." -msgstr "Potete modificare la formattazione del grafico utilizzando i pulsanti e le icone della barra Formattazione." +msgstr "È possibile modificare la formattazione del grafico utilizzando i pulsanti e le icone della barra Formattazione." #. MnXYr #: main0202.xhp @@ -734,7 +734,7 @@ "par_id0810200902300699\n" "help.text" msgid "Opens the Data Table dialog where you can edit the chart data." -msgstr "Apre la finestra Tabella dati dove potete modificare i dati del grafico." +msgstr "Apre la finestra Tabella dati in cui è possibile modificare i dati del grafico." #. aE624 #: main0202.xhp @@ -752,7 +752,7 @@ "par_id0810200902300630\n" "help.text" msgid "The Horizontal Grids icon on the Formatting bar toggles the visibility of the grid display for the Y axis." -msgstr "Con l'icona Griglie orizzontali sulla barra Formattazione si può attivare o disattivare la visualizzazione della griglia per l'asse Y." +msgstr "Con l'icona Griglie orizzontali sulla barra Formattazione è possibile attivare o disattivare la visualizzazione della griglia per l'asse Y." #. dqfgM #: main0202.xhp @@ -770,7 +770,7 @@ "par_id081020090230076\n" "help.text" msgid "To show or hide a legend, click Legend On/Off on the Formatting bar." -msgstr "Per visualizzare o nascondere una legenda, fate clic su Mostra/Nascondi legenda nella barra di Formattazione." +msgstr "Per visualizzare o nascondere una legenda, fare clic su Mostra/Nascondi legenda nella barra Formattazione." #. ACmgc #: main0202.xhp @@ -788,7 +788,7 @@ "par_id0810200902300784\n" "help.text" msgid "Rescales the text in the chart when you change the size of the chart." -msgstr "Ridimensiona il testo nel grafico quando cambiate le dimensioni del grafico." +msgstr "Ridimensiona il testo nel grafico quando si cambiano le dimensioni del grafico." #. hsSrG #: main0202.xhp @@ -833,7 +833,7 @@ "par_id3150868\n" "help.text" msgid "Charts allow you to present data so that it is easy to visualize." -msgstr "I grafici permettono di presentare i dati in modo visivo." +msgstr "I grafici permettono di presentare i dati in modo semplice da visualizzare." #. ozGGL #: main0503.xhp @@ -842,7 +842,7 @@ "par_id3146974\n" "help.text" msgid "You can create a chart from source data in a Calc spreadsheet or a Writer table. When the chart is embedded in the same document as the data, it stays linked to the data, so that the chart automatically updates when you change the source data." -msgstr "Per creare un grafico, potete usare come base di partenza i dati di un foglio elettronico di Calc o di una tabella di Writer. Se il grafico è incorporato nello stesso documento che contiene i dati, rimane automaticamente collegato a questi ultimi; cambiando i dati di sorgente viene aggiornata automaticamente anche la loro rappresentazione nel grafico." +msgstr "Per creare un grafico, è possibile usare come base di partenza i dati di un foglio elettronico di Calc o di una tabella di Writer. Se il grafico è incorporato nello stesso documento che contiene i dati, rimane automaticamente collegato a questi ultimi; cambiando i dati di sorgente viene aggiornata automaticamente anche la loro rappresentazione nel grafico." #. 5BKEB #: main0503.xhp @@ -860,7 +860,7 @@ "par_id3151112\n" "help.text" msgid "Choose from a variety of 3D charts and 2D charts, such as bar charts, line charts, stock charts. You can change chart types with a few clicks of the mouse." -msgstr "Potete scegliere tra vari tipi di grafici 3D e 2D, ad esempio a barre, a linee o a quotazioni. Per cambiare il tipo di grafico sono sufficienti pochi clic del mouse." +msgstr "È possibile scegliere tra vari tipi di grafici 3D e 2D, ad esempio a barre, a linee o a quotazioni. Per cambiare il tipo di grafico sono sufficienti pochi clic del mouse." #. xTCes #: main0503.xhp diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/sdraw/01.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/sdraw/01.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/sdraw/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/sdraw/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-10-25 12:48+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: Elisabetta Manuele \n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" +"Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563278029.000000\n" #. ybhKD @@ -329,7 +329,7 @@ "par_idN10698\n" "help.text" msgid "Select a perspective or parallel extrusion method." -msgstr "Selezionate una prospettiva o un metodo di estrusione parallela." +msgstr "Selezionare una prospettiva o un metodo di estrusione parallela." #. nbfX9 #: 3dsettings_toolbar.xhp @@ -374,7 +374,7 @@ "par_idN106C6\n" "help.text" msgid "Select a lighting direction." -msgstr "Selezionate una direzione di illuminazione." +msgstr "Selezionare una direzione di illuminazione." #. Q7KCQ #: 3dsettings_toolbar.xhp @@ -428,7 +428,7 @@ "par_idN10717\n" "help.text" msgid "Select a surface material or a wireframe display." -msgstr "Selezionate un materiale per la superficie o una visualizzazione wireframe." +msgstr "Selezionare un materiale per la superficie o una visualizzazione wireframe." #. EACGj #: 3dsettings_toolbar.xhp @@ -509,7 +509,7 @@ "par_id111623511334889\n" "help.text" msgid "Select two or more text boxes and either" -msgstr "Selezionate due o più caselle di testo e" +msgstr "Selezionare due o più caselle di testo e" #. eopFe #: consolidatetext.xhp @@ -518,7 +518,7 @@ "par_id711623512060597\n" "help.text" msgid "Choose menu Shape - Consolidate Text." -msgstr "scegliete la voce Forma - Consolida testo." +msgstr "scegliere la voce Forma - Consolida testo." #. m5F3B #: consolidatetext.xhp @@ -527,7 +527,7 @@ "par_id501623512080240\n" "help.text" msgid "Open context menu and choose Consolidate Text." -msgstr "Aprite il menu contestuale e scegliete Consolida testo." +msgstr "Aprire il menu contestuale e scegliere Consolida testo." #. rWDAq #: consolidatetext.xhp @@ -536,7 +536,7 @@ "par_id61623512950690\n" "help.text" msgid "Text box consolidation joins several text boxes into a bigger text box, enabling text reflow inside the resulting box." -msgstr "Il consolidamento delle caselle di testo unisce diverse caselle in una sola più grande, abilitando la rimpaginatura del testo all'interno della riquadro risultante." +msgstr "Il consolidamento delle caselle di testo unisce diverse caselle in una sola più grande, abilitando la rimpaginatura del testo all'interno del riquadro risultante." #. pnfVs #: consolidatetext.xhp @@ -554,7 +554,7 @@ "par_id471623513979583\n" "help.text" msgid "The function inspects the text fragments to see if they end in sentence-ending punctuation. If not, then the next text box's content is appended to it instead of starting a new paragraph. You must afterwards fix up paragraphing, and set paragraph properties." -msgstr "La funzione ispeziona i frammenti di testo per verificare se terminano con il punto di fine periodo. Se non è così, il contenuto della casella di testo successiva è aggiunto in calce, anziché iniziare un nuovo paragrafo. Come passo successivo dovrete sistemare il paragrafo impostandone le proprietà." +msgstr "La funzione ispeziona i frammenti di testo per verificare se terminano con il punto di fine periodo. Se non è così, il contenuto della casella di testo successiva è aggiunto in calce, anziché iniziare un nuovo paragrafo. Come passo successivo si dovrà sistemare il paragrafo impostandone le proprietà." #. vdwPx #: consolidatetext.xhp @@ -617,7 +617,7 @@ "par_id931623525360411\n" "help.text" msgid "For better results, combine adjacent text boxes with similar paragraph formatting. Character formatting inside the text boxes is preserved. Combining text boxes with different paragraph styles (headings, list and more) will require manual intervention to restore the original text layout." -msgstr "Per ottenere risultati migliori consolidate caselle di testo adiacenti con formattazione di paragrafo simile. La formattazione del carattere all'interno della casella di testo viene mantenuta. Il consolidamento di caselle di testo con differenti stili di paragrafo (titoli, elenchi e altro) avranno bisogno dell'intervento manuale per ripristinare l'impaginazione originale del testo." +msgstr "Per ottenere risultati migliori, consolidare le caselle di testo adiacenti con formattazione di paragrafo simile. La formattazione del carattere all'interno della casella di testo viene mantenuta. Il consolidamento di caselle di testo con differenti stili di paragrafo (titoli, elenchi e altro) avranno bisogno dell'intervento manuale per ripristinare l'impaginazione originale del testo." #. 4JVcT #: delete_page.xhp @@ -644,7 +644,7 @@ "par_id3152988\n" "help.text" msgid "Delete the current page." -msgstr "Eliminate la pagina attiva." +msgstr "Elimina la pagina attiva." #. G6pqH #: duplicate_page.xhp @@ -1076,7 +1076,7 @@ "par_id691556822054550\n" "help.text" msgid "To change the background of all of the pages in the active file, select a background, click OK and click Yes in the Page Properties dialog." -msgstr "Per cambiare lo sfondo di tutte le pagine nel file attivo, selezionate uno sfondo, fate clic su OK quindi clic su nella finestra di dialogo Proprietà della pagina." +msgstr "Per cambiare lo sfondo di tutte le pagine nel file attivo, selezionare uno sfondo, fare clic su OK quindi clic su nella finestra di dialogo Proprietà della pagina." #. DA7cH #: rename_page.xhp @@ -1121,4 +1121,4 @@ "par_id371566134462398\n" "help.text" msgid "Enter the new name of the page." -msgstr "Inserite il nuovo nome della pagina." +msgstr "Inserire il nuovo nome della pagina." diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/sdraw/04.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/sdraw/04.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/sdraw/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/sdraw/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-08-07 21:07+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1515708648.000000\n" #. XCKCk @@ -50,7 +50,7 @@ "par_id3153877\n" "help.text" msgid "The following is a list of shortcut keys specific to Drawing documents." -msgstr "In questa sezione trovate una lista di tasti di scelta rapida da utilizzare esclusivamente con i documenti di disegno." +msgstr "In questa sezione è presente un elenco di tasti di scelta rapida da utilizzare esclusivamente con i documenti di disegno." #. 5pGEJ #: 01020000.xhp @@ -230,7 +230,7 @@ "par_id3154765\n" "help.text" msgid "Opens the Thesaurus." -msgstr "Apre i Sinonimi." +msgstr "Apre il Dizionario dei sinonimi." #. 8FFCE #: 01020000.xhp @@ -581,7 +581,7 @@ "par_idN10ADC\n" "help.text" msgid "Switch to previous page" -msgstr "Cambia, pagina precedente" +msgstr "Passa alla pagina precedente" #. 3bsWt #: 01020000.xhp @@ -599,7 +599,7 @@ "par_idN10AE7\n" "help.text" msgid "Switch to next page" -msgstr "Passa alla pagina precedente" +msgstr "Passa alla pagina successiva" #. VfFr5 #: 01020000.xhp @@ -671,7 +671,7 @@ "par_id3147171\n" "help.text" msgid "Moves the page view in the direction of the arrow key." -msgstr "Muove la visualizzazione sulla pagina nella direzione desiderata." +msgstr "Sposta la vista sulla pagina nella direzione desiderata." #. fXEuJ #: 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 "Attiva il modo testo se è selezionato un oggetto di testo. Se non sono presenti oggetti di testo o avete terminato lo scorrimento degli oggetti di testo nella pagina, viene inserita una nuova pagina." +msgstr "Attiva il modo testo se è selezionato un oggetto di testo. Se non sono presenti oggetti di testo o lo scorrimento degli oggetti di testo nella pagina è terminato, viene inserita una nuova pagina." #. 5MSC7 #: 01020000.xhp @@ -797,7 +797,7 @@ "par_id3152812\n" "help.text" msgid "Press the OptionAlt key and drag with the mouse to draw or resize an object from the center of the object outward." -msgstr "Durante la creazione o in caso di una modifica delle dimensioni di oggetti, la costruzione avviene centralmente se prima premete il tasto OpzioneAlt." +msgstr "Durante la creazione o in caso di una modifica delle dimensioni di oggetti, la costruzione avviene centralmente se prima si preme il tasto OpzioneAlt." #. 96WvT #: 01020000.xhp @@ -869,7 +869,7 @@ "par_id3145620\n" "help.text" msgid "The movement of the selected object is constrained by multiples of 45 degrees." -msgstr "L'oggetto selezionato viene spostato nella direzione prescelta in orizzontale o verticale." +msgstr "L'oggetto selezionato viene spostato nella direzione prescelta con multipli di 45 gradi." #. DRuc6 #: 01020000.xhp @@ -878,7 +878,7 @@ "hd_id3154933\n" "help.text" msgid "Shift+drag while creating or resizing an object" -msgstr "Tasto Maiusc durante il ridimensionamento o la creazione" +msgstr "Maiusc+trascinare durante il ridimensionamento o la creazione di un oggetto" #. N8wCE #: 01020000.xhp @@ -905,7 +905,7 @@ "par_id3148804\n" "help.text" msgid "Cycles through the objects on the page in the order in which they were created." -msgstr "I singoli oggetti vengono selezionati nell'ordine di creazione dal primo all'ultimo." +msgstr "Gli oggetti vengono selezionati ciclicamente nell'ordine di creazione, dal primo all'ultimo." #. uD9Ei #: 01020000.xhp @@ -923,7 +923,7 @@ "par_id3149764\n" "help.text" msgid "Cycles through the objects on the page in the reverse-order in which they were created." -msgstr "I singoli oggetti vengono selezionati nell'ordine di creazione dall'ultimo al primo." +msgstr "Gli oggetti vengono selezionati ciclicamente nell'ordine di creazione, dall'ultimo al primo." #. ypTEg #: 01020000.xhp @@ -941,4 +941,4 @@ "par_id3109840\n" "help.text" msgid "Exits current mode." -msgstr "Esce dal modo corrente." +msgstr "Esce dal modo attivo." diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/sdraw/guide.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/sdraw/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/sdraw/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: Elisabetta Manuele \n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" +"Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563455517.000000\n" #. cZbDh @@ -59,7 +59,7 @@ "par_id3153727\n" "help.text" msgid "Each object that you place in your document is successively stacked on the preceding object. To re-arrange the stacking order of a selected object, proceed as follows." -msgstr "Ogni oggetto che posizionate nel vostro documento è progressivamente impilato sull'oggetto precedente. Per modificare l'ordine degli oggetti, procedete come segue." +msgstr "Ogni oggetto che si posiziona nel proprio documento è progressivamente impilato sull'oggetto precedente. Per modificare l'ordine degli oggetti, procedere come segue." #. 7er4p #: align_arrange.xhp @@ -68,7 +68,7 @@ "par_idN107D5\n" "help.text" msgid "Click the object whose position you want to change." -msgstr "Fate clic sull'oggetto del quale volete cambiare la posizione." +msgstr "Fare clic sull'oggetto del quale si vuole cambiare la posizione." #. C9vEK #: align_arrange.xhp @@ -77,7 +77,7 @@ "par_id3150327\n" "help.text" msgid "Choose Shape - Arrange to bring up the context menu and choose one of the arrange options:" -msgstr "Scegliete Forma - Disponi per aprire il menu di contesto e scegliere una delle opzioni di disposizione:" +msgstr "Scegliere Forma - Disponi per aprire il menu di contesto e scegliere una delle opzioni di disposizione:" #. CuUcp #: align_arrange.xhp @@ -140,7 +140,7 @@ "par_idN10811\n" "help.text" msgid "Click the object whose position you want to change." -msgstr "Fate clic sull'oggetto del quale volete cambiare la posizione." +msgstr "Fare clic sull'oggetto del quale si vuole cambiare la posizione." #. B8MAR #: align_arrange.xhp @@ -149,7 +149,7 @@ "par_id3154253\n" "help.text" msgid "Choose Shape - Arrange to open the context menu and choose Behind Object. The mouse pointer changes to a hand." -msgstr "Scegliete Forma - Disponi per aprire il menu di contesto e scegliete Dietro l'oggetto. Il puntatore del mouse assume la forma di una mano." +msgstr "Scegliere Forma - Disponi per aprire il menu di contesto e scegliere Dietro l'oggetto. Il puntatore del mouse assume la forma di una mano." #. nJDrE #: align_arrange.xhp @@ -158,7 +158,7 @@ "par_id3149126\n" "help.text" msgid "Click the object behind which you want to place the selected object." -msgstr "Fate clic sull'oggetto dietro cui volete posizionare l'oggetto selezionato." +msgstr "Fare clic sull'oggetto dietro cui si vuole posizionare l'oggetto selezionato." #. wWeF3 #: align_arrange.xhp @@ -176,7 +176,7 @@ "par_id3154022\n" "help.text" msgid "Shift-click both objects to select them." -msgstr "Usate il tasto Maiusc e fate clic sui due oggetti per selezionarli." +msgstr "Usare il tasto Maiusc e fare clic sui due oggetti per selezionarli." #. mfu4B #: align_arrange.xhp @@ -185,7 +185,7 @@ "par_id3155114\n" "help.text" msgid "Choose Shape - Arrange to open the context menu and choose Reverse." -msgstr "Scegliete Forma - Disponi per aprire il menu di contesto e scegliete Inverti." +msgstr "Scegliere Forma - Disponi per aprire il menu di contesto e scegliere Inverti." #. D8jUy #: align_arrange.xhp @@ -203,7 +203,7 @@ "par_id3152994\n" "help.text" msgid "The Alignment function enables you to align objects relative to each other or relative to the page." -msgstr "La funzione Allineamento vi consente di allineare gli oggetti tra loro o rispetto alla pagina." +msgstr "La funzione Allineamento consente di allineare gli oggetti tra loro o rispetto alla pagina." #. tdBWC #: align_arrange.xhp @@ -212,7 +212,7 @@ "par_idN108A3\n" "help.text" msgid "Select an object to align it to the page or select multiple objects to align them relative to each other." -msgstr "Selezionate un oggetto per allinearlo alla pagina, oppure selezionate più oggetti per allinearli tra loro." +msgstr "Selezionare un oggetto per allinearlo alla pagina, oppure selezionare più oggetti per allinearli tra loro." #. sBGnF #: align_arrange.xhp @@ -221,7 +221,7 @@ "par_idN108A7\n" "help.text" msgid "Choose Shape - Align Objects and select one of the alignment options." -msgstr "Scegliete Forma - Allinea gli oggetti e selezionate una delle opzioni di allineamento." +msgstr "Scegliere Forma - Allinea gli oggetti e selezionare una delle opzioni di allineamento." #. ygENZ #: align_arrange.xhp @@ -257,7 +257,7 @@ "par_idN108D2\n" "help.text" msgid "Choose Shape - Distribution." -msgstr "Scegliete Forma - Distribuzione." +msgstr "Scegliere Forma - Distribuzione." #. faA9D #: align_arrange.xhp @@ -266,7 +266,7 @@ "par_idN108DA\n" "help.text" msgid "Select the horizontal and vertical distribution option and click OK." -msgstr "Selezionate l'opzione di distribuzione orizzontale o verticale e fate clic su OK." +msgstr "Selezionare l'opzione di distribuzione orizzontale o verticale e fare clic su OK." #. cSeG5 #: align_arrange.xhp @@ -329,7 +329,7 @@ "par_id3150327\n" "help.text" msgid "Choose Format - Area, click the Area tab and press the Color button. A table of the predefined palette colors is displayed." -msgstr "Scegliete Formato - Area, fate clic sulla scheda Area e premete il pulsante Colore. Verrà mostrata una tabella con la tavolozza dei colori predefiniti." +msgstr "Scegliere Formato - Area, fare clic sulla scheda Area e premere il pulsante Colore. Verrà mostrata una tabella con la tavolozza dei colori predefiniti." #. 5WDjt #: color_define.xhp @@ -347,7 +347,7 @@ "par_id3166425\n" "help.text" msgid "Click a color in the table that is similar to the one you want to define. You can select the similar color from any of the available color palettes in the Colors area on the left or the Recent colors in the list below the color table. The color appears in the New preview box to the right of the dialog." -msgstr "Fate clic nella tabella su un colore simile a quello che volete definire. Potete selezionare il colore simile fra quelli disponibili nella tavolozza nell'area Colori sulla sinistra o nell'elenco presente sotto Colori recenti al di sotto della tabella. Il colore apparirà nel riquadro di anteprima Nuovo alla destra della finestra di dialogo." +msgstr "Fare clic nella tabella su un colore simile a quello da definire. È possibile selezionare il colore simile fra quelli disponibili nella tavolozza nell'area Colori sulla sinistra o nell'elenco presente sotto Colori recenti al di sotto della tabella. Il colore apparirà nel riquadro di anteprima Nuovo alla destra della finestra di dialogo." #. mr77M #: color_define.xhp @@ -374,7 +374,7 @@ "par_id691522706451849\n" "help.text" msgid "Press the Add button to add the custom color to the Custom color palette. A dialog box asking to enter a color name appears. Enter a unique name for the new color within all color names existing in the Custom color palette." -msgstr "Premete il pulsante Aggiungi per aggiungere il colore personalizzato alla tavolozza colori Personalizzata. Comparirà una finestra di dialogo chiedendo d'inserire il nome. Inserite per il nuovo colore un nome univoco fra tutti quelli definiti nella tavolozza colori Personalizzata." +msgstr "Premere il pulsante Aggiungi per aggiungere il colore personalizzato alla tavolozza colori Personalizzata. Comparirà una finestra di dialogo chiedendo d'inserire il nome. Inserire per il nuovo colore un nome univoco fra tutti quelli definiti nella tavolozza colori Personalizzata." #. E9Gho #: color_define.xhp @@ -383,7 +383,7 @@ "par_id701522707038880\n" "help.text" msgid "To remove a color from the Custom color palette, select the Custom color palette in the Colors area, select the color to be deleted and click Delete." -msgstr "Per rimuovere un colore dalla tavolozza colori personalizzata, selezionate la tavolozza colori Personalizzata nell'area Colori, selezionate il colore da cancellare e fate clic su Elimina." +msgstr "Per rimuovere un colore dalla tavolozza colori personalizzata, selezionare la tavolozza colori Personalizzata nell'area Colori, selezionare il colore da cancellare e fare clic su Elimina." #. XstjN #: color_define.xhp @@ -455,7 +455,7 @@ "par_id3166428\n" "help.text" msgid "Select two or more 2D objects." -msgstr "Selezionate due o più oggetti a due dimensioni." +msgstr "Selezionare due o più oggetti a due dimensioni." #. LZcTU #: combine_etc.xhp @@ -464,7 +464,7 @@ "par_id3145587\n" "help.text" msgid "Choose Shape - Combine." -msgstr "Scegliete Forma - Combina." +msgstr "Scegliere Forma - Combina." #. rhgSt #: combine_etc.xhp @@ -563,7 +563,7 @@ "par_id3150650\n" "help.text" msgid "Choose Shape and one of the following:" -msgstr "Scegliete Forma e procedete in uno dei modi seguenti:" +msgstr "Scegliere Forma e procedere in uno dei modi seguenti:" #. KwAnN #: combine_etc.xhp @@ -608,7 +608,7 @@ "par_id3153931\n" "help.text" msgid "In the following illustrations, the original objects are on the left and the modified shapes on the right." -msgstr "Nelle illustrazioni che seguono potete vedere gli oggetti originali sulla sinistra e le forme modificate sulla destra." +msgstr "Nelle illustrazioni che seguono è possibile vedere gli oggetti originali sulla sinistra e le forme modificate sulla destra." #. Zyb77 #: combine_etc.xhp @@ -761,7 +761,7 @@ "par_id3150370\n" "help.text" msgid "Hold down Shift and click each object." -msgstr "Premete Maiusc e fate clic su ciascun oggetto." +msgstr "Premere Maiusc e fare clic su ciascun oggetto." #. Dfyf6 #: cross_fading.xhp @@ -770,7 +770,7 @@ "par_id3166428\n" "help.text" msgid "Choose Shape - Cross-fading." -msgstr "Scegliete Forma - Dissolvenza incrociata." +msgstr "Scegliere Forma - Dissolvenza incrociata." #. dmA2i #: cross_fading.xhp @@ -779,7 +779,7 @@ "par_id3156450\n" "help.text" msgid "Enter a value to specify the number of objects between the start and end of the cross-fade in the Increments box." -msgstr "Nella casella Passaggi, inserite il numero di oggetti di transizione da creare tra l'inizio e la fine dell'operazione di morphing." +msgstr "Nella casella Passaggi inserire il numero di oggetti di transizione da creare tra l'inizio e la fine dell'operazione di morphing." #. 9pKW6 #: cross_fading.xhp @@ -788,7 +788,7 @@ "par_id3149405\n" "help.text" msgid "Click OK." -msgstr "Fate clic su OK." +msgstr "Fare clic su OK." #. FEyjM #: cross_fading.xhp @@ -815,7 +815,7 @@ "par_id3154766\n" "help.text" msgid "You can edit the individual objects of a group by selecting the group and pressing F3. Press CommandCtrl+F3 to exit the group editing mode." -msgstr "Potete modificare i singoli oggetti di un gruppo selezionando il gruppo e premendo F3. Per uscire dal modo di modifica del gruppo premete ComandoCtrl+F3." +msgstr "È possibile modificare i singoli oggetti di un gruppo selezionando il gruppo e premendo F3. Per uscire dal modo di modifica del gruppo premere CmdCtrl+F3." #. hiJK8 #: cross_fading.xhp @@ -860,7 +860,7 @@ "par_id3147396\n" "help.text" msgid "The Ellipse toolbar contains tools for drawing ellipses and circles. You can also draw segments and sectors of circles and ellipses." -msgstr "La barra degli strumenti Cerchi ed ellissi contiene gli strumenti per disegnare ellissi e cerchi. Potete inoltre disegnare segmenti e settori di cerchi ed ellissi." +msgstr "La barra degli strumenti Cerchi ed ellissi contiene gli strumenti per disegnare ellissi e cerchi. È possibile inoltre disegnare segmenti e settori di cerchi ed ellissi." #. fawyC #: draw_sector.xhp @@ -878,7 +878,7 @@ "par_id3155335\n" "help.text" msgid "Open the Ellipses toolbar and click one of the Circle Pie or Ellipse Pie icons Icon. The mouse pointer changes to a cross hair with a small icon of a sector." -msgstr "Aprite la barra degli strumenti Cerchi ed ellissi e fate clic sull'icona Settore di cerchio o Settore di ellisse Icona. Il puntatore del mouse assume la forma di un mirino con una piccola icona a forma di settore." +msgstr "Aprire la barra degli strumenti Cerchi ed ellissi e fare clic sull'icona Settore di cerchio o Settore di ellisse Icona. Il puntatore del mouse assume la forma di un mirino con una piccola icona a forma di settore." #. ukJy5 #: draw_sector.xhp @@ -887,7 +887,7 @@ "par_id3150199\n" "help.text" msgid "Position the pointer at the edge of the circle you want to draw and drag to create the circle." -msgstr "Trascinate il mouse tenendo premuto il pulsante. Un profilo di cerchio seguirà il movimento del mouse." +msgstr "Trascinare il mouse tenendo premuto il pulsante. Un profilo di cerchio seguirà il movimento del mouse." #. uGdL9 #: draw_sector.xhp @@ -896,7 +896,7 @@ "par_id3148868\n" "help.text" msgid "To create a circle by dragging from the center, press OptionAlt while dragging." -msgstr "Se volete disegnare il cerchio partendo dal centro - in questo caso il primo clic definisce il centro - tenete premuto il tasto OpzioneAlt mentre trascinate." +msgstr "Per disegnare il cerchio partendo dal centro, tenere premuto il tasto OpzioneAlt mentre si trascina." #. UUQDC #: draw_sector.xhp @@ -905,7 +905,7 @@ "par_id3145361\n" "help.text" msgid "Release the mouse button when the circle has reached the size you want. A line corresponding to the circle radius appears in the circle." -msgstr "Rilasciate il pulsante del mouse non appena il cerchio ha raggiunto le dimensioni desiderate. A questo punto noterete che il programma ha disegnato un raggio all'interno del cerchio che segue i movimenti del mouse." +msgstr "Rilasciare il pulsante del mouse non appena il cerchio ha raggiunto le dimensioni desiderate. A questo punto si noterà che il programma ha disegnato un raggio all'interno del cerchio che segue i movimenti del mouse." #. rtAjM #: draw_sector.xhp @@ -914,7 +914,7 @@ "par_id3149872\n" "help.text" msgid "Position the pointer where you want to place the first boundary of the sector and click." -msgstr "Posizionate il puntatore nel punto in cui volete collocare il primo contorno del settore e fate clic." +msgstr "Posizionare il puntatore nel punto in cui si vuole collocare il primo contorno del settore e fare clic." #. y8EFu #: draw_sector.xhp @@ -923,7 +923,7 @@ "par_id3157871\n" "help.text" msgid "As the radius line that follows the pointer is constrained to the circle boundaries, you can click anywhere in the document." -msgstr "Poiché il raggio che segue il puntatore è vincolato alla circonferenza del cerchio, potete fare clic in qualunque punto del documento." +msgstr "Poiché il raggio che segue il puntatore è vincolato alla circonferenza del cerchio, è possibile fare clic in qualunque punto del documento." #. qFPkT #: draw_sector.xhp @@ -932,7 +932,7 @@ "par_id3146874\n" "help.text" msgid "Position the pointer where you want to place the second boundary of the sector and click. The completed sector is displayed." -msgstr "Se adesso muovete il mouse il primo raggio è fisso mentre un secondo segue il movimento del mouse. Facendo di nuovo clic, il settore di cerchio sarà finito." +msgstr "Se adesso si muove il mouse il primo raggio è fisso mentre un secondo segue il movimento del mouse. Facendo di nuovo clic, il settore di cerchio sarà finito." #. QGWL2 #: draw_sector.xhp @@ -941,7 +941,7 @@ "par_id3148581\n" "help.text" msgid "To draw a segment of a circle or ellipse, follow the steps for creating a sector based on a circle." -msgstr "Per disegnare un segmento di cerchio o un'ellisse, usate la stessa procedura richiesta per creare un settore basato su un cerchio." +msgstr "Per disegnare un segmento di cerchio o un'ellisse, usare la stessa procedura richiesta per creare un settore basato su un cerchio." #. mmgkF #: draw_sector.xhp @@ -950,7 +950,7 @@ "par_id3153084\n" "help.text" msgid "To draw an arc based on an ellipse, choose one of the arc icons and follow the same steps for creating a sector based on a circle." -msgstr "Per tracciare un arco basato su un'ellisse, scegliete una delle icone ad arco e seguite la stessa procedura usata per la creazione di un settore basato su un cerchio." +msgstr "Per tracciare un arco basato su un'ellisse, scegliere una delle icone ad arco e seguire la stessa procedura usata per la creazione di un settore basato su un cerchio." #. Frzkq #: duplicate_object.xhp @@ -995,7 +995,7 @@ "par_id3153415\n" "help.text" msgid "The following example creates a stack of coins by making multiple copies of a single ellipse." -msgstr "Se, ad esempio, volete disegnare una pila di monete potete farlo eseguendo più copie di una singola ellisse:" +msgstr "Ad esempio, è possibile disegnare una pila di monete eseguendo più copie di una singola ellisse:" #. xFdfE #: duplicate_object.xhp @@ -1004,7 +1004,7 @@ "par_id3149129\n" "help.text" msgid "Use the Ellipse tool to draw a solid yellow ellipse." -msgstr "Utilizzate lo strumento Ellisse per disegnare un solido giallo di forma ellittica." +msgstr "Utilizzare lo strumento Ellisse per disegnare un solido giallo di forma ellittica." #. EDqRb #: duplicate_object.xhp @@ -1013,7 +1013,7 @@ "par_id3149209\n" "help.text" msgid "Select the ellipse and choose Edit - Duplicate." -msgstr "Selezionate l'ellisse e scegliete il comando Modifica - Duplica." +msgstr "Selezionare l'ellisse e scegliere il comando Modifica - Duplica." #. SzCeR #: duplicate_object.xhp @@ -1031,7 +1031,7 @@ "par_id3151192\n" "help.text" msgid "Enter a negative value for the Width and Height so that the coins decrease in size as you go up the stack." -msgstr "Se le monete, a seconda della prospettiva verso l'alto, rimpiccioliscono, digitate sia per la larghezza, sia per l'altezza un numero negativo come valore di ingrandimento." +msgstr "Se le monete, a seconda della prospettiva verso l'alto, rimpiccioliscono, digitare sia per la larghezza, sia per l'altezza un numero negativo come valore di ingrandimento." #. mKgZB #: duplicate_object.xhp @@ -1040,7 +1040,7 @@ "par_id3151387\n" "help.text" msgid "To define a color transition for the coins, select different colors in the Start and End boxes. The Start color is applied to the object that you are duplicating." -msgstr "Adesso non vi rimane che selezionare colori diversi nelle caselle Inizio e Fine. Il colore di Inizio viene applicato all'oggetto che state duplicando." +msgstr "Adesso non rimane che selezionare colori diversi nelle caselle Inizio e Fine. Il colore di Inizio viene applicato all'oggetto che si sta duplicando." #. f4d5R #: duplicate_object.xhp @@ -1049,7 +1049,7 @@ "par_id3149947\n" "help.text" msgid "Click OK to create the duplicates." -msgstr "Fate clic su OK per creare i duplicati." +msgstr "Fare clic su OK per creare i duplicati." #. FWBEa #: duplicate_object.xhp @@ -1076,7 +1076,7 @@ "bm_id3147436\n" "help.text" msgid "eyedropper toolcolors; replacingreplacing;colors in bitmapsmetafiles;replacing colorsbitmaps;replacing colorsGIF images;replacing colors" -msgstr "ContagocceColore;sostituireSostituire;colori in immagini bitmapMetafile;sostituire i coloriBitmap;sostituire i coloriImmagine GIF;sostituire i colori" +msgstr "ContagocceColore;sostituireSostituire;colori in immagini bitmapMetafile;sostituire i coloriBitmap;sostituire i coloriGIF, immagine;sostituire i colori" #. seBAr #: eyedropper.xhp @@ -1094,7 +1094,7 @@ "par_id3156286\n" "help.text" msgid "You can replace colors in bitmaps with the Color Replacer tool." -msgstr "Per sostituire i colori nelle bitmap potete usare lo strumento Sostituzione colore." +msgstr "Per sostituire i colori nelle bitmap è possibile usare lo strumento Sostituzione colore." #. ArA6H #: eyedropper.xhp @@ -1103,7 +1103,7 @@ "par_id3154704\n" "help.text" msgid "Up to four colors can be replaced at once." -msgstr "Potete sostituire fino a quattro colori in una volta." +msgstr "È possibile sostituire fino a quattro colori in una volta." #. DmAhB #: eyedropper.xhp @@ -1121,7 +1121,7 @@ "par_id3148488\n" "help.text" msgid "Similarly, you can use the Color Replacer to make a color on your image transparent." -msgstr "Analogamente, potete usare Sostituzione colore per rendere trasparente un colore nell'immagine." +msgstr "Analogamente, è possibile usare Sostituzione colore per rendere trasparente un colore nell'immagine." #. ecY64 #: eyedropper.xhp @@ -1139,7 +1139,7 @@ "par_id3154656\n" "help.text" msgid "Ensure that the image you are using is a bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)." -msgstr "Accertatevi che l'immagine usata sia bitmap (ad esempio BMP, GIF, JPG o PNG) oppure metafile (come WMF)." +msgstr "Accertarsi che l'immagine usata sia bitmap (ad esempio BMP, GIF, JPG o PNG) oppure metafile (come WMF)." #. TAeSM #: eyedropper.xhp @@ -1148,7 +1148,7 @@ "par_id3150202\n" "help.text" msgid "Choose Tools - Color Replacer." -msgstr "Scegliete Strumenti - Sostituzione colore." +msgstr "Scegliere Strumenti - Sostituzione colore." #. gyRmY #: eyedropper.xhp @@ -1157,7 +1157,7 @@ "par_id3155531\n" "help.text" msgid "Click the Color Replacer icon and position the mouse pointer over the color you want to replace in the image. The color appears in the box next to the icon." -msgstr "Fate clic sull'icona Sostituzione colore. L'indicatore del mouse cambierà in una forma che vi permetterà di indicare il colore da sostituire nel documento corrente. Il colore apparirà nel riquadro vicino all'icona." +msgstr "Fare clic sull'icona Sostituzione colore e posizionare il puntatore del mouse sul colore da sostituire nell'immagine. Il colore apparirà nel riquadro vicino all'icona." #. tpTWi #: eyedropper.xhp @@ -1166,7 +1166,7 @@ "par_id3152985\n" "help.text" msgid "Click the color in the image. The color appears in the first Source color box and the check box next to the color is selected." -msgstr "Una volta individuato il colore fate clic col pulsante sinistro del mouse e il colore verrà riportato automaticamente nella prima delle quattro caselle disponibili colore origine." +msgstr "Fare clic sul colore nell'immagine. Il colore verrà riportato automaticamente nella prima delle quattro caselle disponibili colore origine." #. ZKeEk #: eyedropper.xhp @@ -1175,7 +1175,7 @@ "par_id3148866\n" "help.text" msgid "In the Replace with box, select the new color." -msgstr "Nella casella di riepilogo Sostituisci con scegliete il nuovo colore." +msgstr "Nella casella di riepilogo Sostituisci con scegliere il nuovo colore." #. ZZDJu #: eyedropper.xhp @@ -1193,7 +1193,7 @@ "par_id3151191\n" "help.text" msgid "If you want to replace another color while the dialog is open, select the check box in front of Source color in the next row and repeat steps 3 to 5." -msgstr "Se volete sostituire altri colori nella stessa fase di lavoro fate clic sulla casella di controllo alla sinistra del riquadro Colore origine della riga successiva e ripetete i passaggi da tre a cinque." +msgstr "Per sostituire altri colori nella stessa fase di lavoro fare clic sulla casella di controllo alla sinistra del riquadro Colore origine della riga successiva e ripetere i passaggi da tre a cinque." #. um4MR #: eyedropper.xhp @@ -1202,7 +1202,7 @@ "par_id3149876\n" "help.text" msgid "Click Replace." -msgstr "Fate clic su Sostituisci." +msgstr "Fare clic su Sostituisci." #. FEATG #: eyedropper.xhp @@ -1211,7 +1211,7 @@ "par_id3157871\n" "help.text" msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the Color Replacer tool and repeat your selection." -msgstr "Per espandere o ridurre l'area di selezione del colore, aumentate o diminuite il livello di tolleranza dello strumento Sostituzione colore e ripetete la selezione." +msgstr "Per espandere o ridurre l'area di selezione del colore, aumentare o diminuire il livello di tolleranza dello strumento Sostituzione colore e ripetere la selezione." #. CwACD #: eyedropper.xhp @@ -1256,7 +1256,7 @@ "par_id3154012\n" "help.text" msgid "A gradient fill is an incremental blend of two different colors, or shades of the same color, that you can apply to a drawing object." -msgstr "Un riempimento sfumato è una miscela incrementale di due colori, o di due ombreggiature dello stesso colore, che potete applicare a un oggetto di disegno." +msgstr "Un riempimento sfumato è una miscela incrementale di due colori, o di due ombreggiature dello stesso colore, applicabile a un oggetto di disegno." #. dSZ6i #: gradient.xhp @@ -1274,7 +1274,7 @@ "par_id3146974\n" "help.text" msgid "Select a drawing object." -msgstr "Selezionate un oggetto di disegno." +msgstr "Selezionare un oggetto di disegno." #. ysaPv #: gradient.xhp @@ -1283,7 +1283,7 @@ "par_id3154491\n" "help.text" msgid "Choose Format - Area and select Gradient as the Fill type." -msgstr "Scegliete Formato - Area e scegliete il tipo di Riempimento Sfumatura." +msgstr "Scegliere Formato - Area e scegliere il tipo di Riempimento Sfumatura." #. sKFWJ #: gradient.xhp @@ -1292,7 +1292,7 @@ "par_id3153415\n" "help.text" msgid "Select a gradient style from the list and click OK." -msgstr "Selezionate uno stile di sfumatura, poi premete OK." +msgstr "Selezionare uno stile di sfumatura, poi premere OK." #. EHKGx #: gradient.xhp @@ -1310,7 +1310,7 @@ "par_id3145791\n" "help.text" msgid "You can define your own gradients and modify existing gradients, as well as save and load a list of gradient files." -msgstr "Potete definire delle sfumature personalizzate, modificare le sfumature esistenti e salvare o caricare un elenco di file di sfumature." +msgstr "È possibile definire delle sfumature personalizzate, modificare le sfumature esistenti e salvare o caricare un elenco di file di sfumature." #. zBYmy #: gradient.xhp @@ -1328,7 +1328,7 @@ "par_id3151242\n" "help.text" msgid "Choose Format - Area and click the Gradients tab." -msgstr "Scegliete Formato - Area e fate clic sulla scheda Sfumature." +msgstr "Scegliere Formato - Area e fare clic sulla scheda Sfumature." #. YvFEJ #: gradient.xhp @@ -1337,7 +1337,7 @@ "par_id3150046\n" "help.text" msgid "Select a gradient from the list to use as the basis for your new gradient and click Add." -msgstr "Selezionate dall'elenco una delle sfumature che volete usare come base per definire la nuova sfumatura, quindi fate clic su Aggiungi." +msgstr "Selezionare dall'elenco una delle sfumature che volete usare come base per definire la nuova sfumatura, quindi fare clic su Aggiungi." #. 7GYMG #: gradient.xhp @@ -1346,7 +1346,7 @@ "par_id3145116\n" "help.text" msgid "Type a name for the gradient in the text box and click OK." -msgstr "Digitate un nome per la sfumatura nella casella di testo e fate clic su OK." +msgstr "Digitare un nome per la sfumatura nella casella di testo e fare clic su OK." #. b2ViM #: gradient.xhp @@ -1364,7 +1364,7 @@ "par_id3150391\n" "help.text" msgid "Set the gradient properties and click Modify to save the gradient." -msgstr "Per salvare le modifiche apportate alla nuova sfumatura fate clic su Modifica. Nell'apposito campo vedrete un'anteprima della sfumatura." +msgstr "Per salvare le modifiche apportate alla nuova sfumatura fare clic su Modifica. Nell'apposito campo sarà visibile un'anteprima della sfumatura." #. yAcgt #: gradient.xhp @@ -1373,7 +1373,7 @@ "par_id3156396\n" "help.text" msgid "Click OK." -msgstr "Fate clic su OK." +msgstr "Fare clic su OK." #. y7fAD #: gradient.xhp @@ -1391,7 +1391,7 @@ "par_id3157905\n" "help.text" msgid "You can adjust the properties of a gradient as well as the transparency of a drawing object with your mouse." -msgstr "Potete usare il mouse per modificare le proprietà di una sfumatura o la trasparenza di un oggetto di disegno." +msgstr "È possibile usare il mouse per modificare le proprietà di una sfumatura o la trasparenza di un oggetto di disegno." #. V2GgK #: gradient.xhp @@ -1409,7 +1409,7 @@ "par_id3154844\n" "help.text" msgid "Select a drawing object with the gradient that you want to modify." -msgstr "Selezionate un oggetto di disegno che contenga la sfumatura da modificare." +msgstr "Selezionare un oggetto di disegno che contenga la sfumatura da modificare." #. gseyv #: gradient.xhp @@ -1418,7 +1418,7 @@ "par_id3145592\n" "help.text" msgid "Choose Format - Area and click the Gradients tab." -msgstr "Scegliete Formato - Area e fate clic sulla scheda Sfumature." +msgstr "Scegliere Formato - Area e fare clic sulla scheda Sfumature." #. BGDBn #: gradient.xhp @@ -1427,7 +1427,7 @@ "par_idN107BE\n" "help.text" msgid "Adjust the values for the gradient to suit your needs and click OK." -msgstr "Regolate i valori del gradiente secondo le vostre esigenze e fate clic su OK." +msgstr "Regolare i valori del gradiente secondo le vostre esigenze e fare clic su OK." #. VEbFT #: gradient.xhp @@ -1436,7 +1436,7 @@ "par_id3150659\n" "help.text" msgid "To adjust the transparency of an object, select the object, choose Format - Area and click the Transparency tab." -msgstr "Per modificare la trasparenza di un oggetto, selezionate l'oggetto, scegliete Formato - Area e fate clic sulla scheda Trasparenza." +msgstr "Per modificare la trasparenza di un oggetto, selezionare l'oggetto, scegliere Formato - Area e fare clic sulla scheda Trasparenza." #. KE8fj #: graphic_insert.xhp @@ -1472,7 +1472,7 @@ "par_id3155600\n" "help.text" msgid "Choose Insert - Image." -msgstr "Scegliete Inserisci - Immagine." +msgstr "Scegliere Inserisci - Immagine." #. PUNGQ #: graphic_insert.xhp @@ -1481,7 +1481,7 @@ "par_id3150749\n" "help.text" msgid "Locate the image you want to insert. Select the Link check box to insert only a link to the image. If you want to see the image before you insert it, select Preview." -msgstr "Individuate l'immagine da inserire. Selezionate la casella di controllo Collegamento per inserire solo un collegamento all'immagine. Per visualizzare l'immagine prima di inserirla, selezionate Anteprima." +msgstr "Individuare l'immagine da inserire. Selezionare la casella di controllo Collegamento per inserire solo un collegamento all'immagine. Per visualizzare l'immagine prima di inserirla, selezionare Anteprima." #. APuTg #: graphic_insert.xhp @@ -1490,7 +1490,7 @@ "par_id3155764\n" "help.text" msgid "After you insert a linked image, do not change the name of the source image or move the source image to another directory." -msgstr "Se inserite un'immagine come collegamento, non modificate il nome dell'immagine originale e non spostatela in un'altra cartella." +msgstr "Se si inserisce un'immagine come collegamento, non modificare il nome dell'immagine originale e non spostarla in un'altra cartella." #. sGcHZ #: graphic_insert.xhp @@ -1499,7 +1499,7 @@ "par_id3150044\n" "help.text" msgid "Click Open to insert the image." -msgstr "Per inserire un'immagine fate clic su Apri." +msgstr "Per inserire un'immagine fare clic su Apri." #. C9Faj #: groups.xhp @@ -1535,7 +1535,7 @@ "par_id3153728\n" "help.text" msgid "You can combine several objects into a group so that they act as a single object. You can move and transform all objects in a group as a single unit. You can also change the properties (for example, line size, fill color) of all objects in a group as a whole or for individual objects in a group. Groups can be temporary or assigned:" -msgstr "Potete combinare diversi oggetti in un gruppo in modo che agiscano come un singolo oggetto. Potete spostare e trasformare tutti gli oggetti in un gruppo come una singola unità. Potete anche cambiare le proprietà (per esempio, dimensione del bordo, colore di riempimento) di tutti gli oggetti facenti parte di un gruppo, come insieme o per singolo oggetto. I gruppi possono essere temporanei o assegnati:" +msgstr "È possibile combinare diversi oggetti in un gruppo in modo che agiscano come un singolo oggetto. È possibile spostare e trasformare tutti gli oggetti in un gruppo come una singola unità. È possibile anche cambiare le proprietà (per esempio, dimensione del bordo, colore di riempimento) di tutti gli oggetti facenti parte di un gruppo, come insieme o per singolo oggetto. I gruppi possono essere temporanei o assegnati:" #. WWeYC #: groups.xhp @@ -1589,7 +1589,7 @@ "par_id3147346\n" "help.text" msgid "Select the objects you want to group and choose Shape - Group - Group." -msgstr "Selezionate gli oggetti da raggruppare e scegliete Forma - Raggruppa - Raggruppa." +msgstr "Selezionare gli oggetti da raggruppare e scegliere Forma - Raggruppa - Raggruppa." #. AYfMA #: groups.xhp @@ -1598,7 +1598,7 @@ "par_id3148485\n" "help.text" msgid "For example, you can group all of the objects in a company logo to move and resize the logo as a single object." -msgstr "Potete, per esempio, raggruppare tutti gli oggetti di un logo aziendale per spostarlo e ridimensionarlo come un singolo oggetto." +msgstr "È possibile, per esempio, raggruppare tutti gli oggetti di un logo aziendale per spostarlo e ridimensionarlo come un singolo oggetto." #. kB7hM #: groups.xhp @@ -1634,7 +1634,7 @@ "par_id3156450\n" "help.text" msgid "You can select single objects in a group by entering the group. Double-click a group to enter it and click on the object to select it. You can also add or delete objects to and from a group in this mode. The objects that are not part of the group are grayed out." -msgstr "Potete selezionare i singoli oggetti di un gruppo entrandovi dentro. Fate doppio clic sul gruppo per accedere al suo interno, poi fate clic su un oggetto per selezionarlo. In tal modo potete anche aggiungere o eliminare dal gruppo. Gli oggetti che non fanno parte del gruppo sono mostrati in grigio." +msgstr "È possibile selezionare i singoli oggetti di un gruppo entrandovi dentro. Fare doppio clic sul gruppo per accedere al suo interno, quindi fare clic su un oggetto per selezionarlo. In tal modo sarà possibile anche aggiungere o eliminare dal gruppo. Gli oggetti che non fanno parte del gruppo sono mostrati in grigio." #. QTExY #: groups.xhp @@ -1652,7 +1652,7 @@ "par_id3150213\n" "help.text" msgid "To exit a group, double-click anywhere outside it." -msgstr "Per uscire dal gruppo fate doppio clic al di fuori degli oggetti del gruppo." +msgstr "Per uscire dal gruppo fare doppio clic al di fuori degli oggetti del gruppo." #. FTtCf #: join_objects.xhp @@ -1706,7 +1706,7 @@ "par_id3153714\n" "help.text" msgid "Select two or more lines." -msgstr "Selezionate due o più linee." +msgstr "Selezionare due o più linee." #. UAfTT #: join_objects.xhp @@ -1715,7 +1715,7 @@ "par_id3156383\n" "help.text" msgid "Right-click and choose Shape - Connect." -msgstr "Fate clic col pulsante destro del mouse e scegliete Forma - Collega." +msgstr "Fare clic col pulsante destro del mouse e scegliere Forma - Collega." #. 8E32A #: join_objects.xhp @@ -1724,7 +1724,7 @@ "par_id3149257\n" "help.text" msgid "To create a closed object, right-click a line and choose Close Object." -msgstr "Per creare un oggetto chiuso, fate clic col pulsante destro del mouse su una riga e scegliete Chiudi oggetto." +msgstr "Per creare un oggetto chiuso, fare clic col pulsante destro del mouse su una riga e scegliere Chiudi oggetto." #. ZfCk8 #: join_objects.xhp @@ -1787,7 +1787,7 @@ "par_id3154702\n" "help.text" msgid "Insert a 3D object from the 3D Objects toolbar (for example, a cube)." -msgstr "Inserite un oggetto 3D tramite la barra degli strumenti Oggetti 3D, ad esempio un cubo." +msgstr "Inserire un oggetto 3D tramite la barra degli strumenti Oggetti 3D, ad esempio un cubo." #. JcNRn #: join_objects3d.xhp @@ -1796,7 +1796,7 @@ "par_id3155335\n" "help.text" msgid "Insert a second slightly larger 3D object (for example, a sphere)." -msgstr "Inserite un secondo oggetto 3D, ad esempio una sfera, un po' più grande del cubo." +msgstr "Inserire un secondo oggetto 3D, ad esempio una sfera, un po' più grande del cubo." #. nKo5g #: join_objects3d.xhp @@ -1805,7 +1805,7 @@ "par_id3148488\n" "help.text" msgid "Select the second 3D object (sphere) and choose Edit - Cut." -msgstr "Selezionate il secondo oggetto 3D, vale a dire la sfera, e scegliete Modifica - Taglia." +msgstr "Selezionare il secondo oggetto 3D, vale a dire la sfera, e scegliere Modifica - Taglia." #. TUtH4 #: join_objects3d.xhp @@ -1814,7 +1814,7 @@ "par_id3149211\n" "help.text" msgid "Double-click the first object (cube) to enter its group." -msgstr "Modificate il gruppo del cubo facendovi sopra doppio clic." +msgstr "Modificare il gruppo del cubo facendovi sopra doppio clic." #. hEAys #: join_objects3d.xhp @@ -1823,7 +1823,7 @@ "par_id3154652\n" "help.text" msgid "Choose Edit - Paste. Both objects are now part of the same group. If you want, you can edit the individual objects or change their position within the group." -msgstr "Scegliete Modifica - Incolla. I due oggetti appartengono ora allo stesso gruppo. Se necessario, potete modificare i singoli oggetti o cambiarne la posizione all'interno del gruppo." +msgstr "Scegliere Modifica - Incolla. I due oggetti appartengono ora allo stesso gruppo. Se necessario, è possibile modificare i singoli oggetti o cambiarne la posizione all'interno del gruppo." #. AbqoS #: join_objects3d.xhp @@ -1832,7 +1832,7 @@ "par_id3155376\n" "help.text" msgid "Double-click outside the group to exit the group." -msgstr "Per uscire dal gruppo fate doppio clic al di fuori degli oggetti del gruppo." +msgstr "Per uscire dal gruppo fare doppio clic al di fuori degli oggetti del gruppo." #. taiS2 #: join_objects3d.xhp @@ -1886,7 +1886,7 @@ "par_id3148663\n" "help.text" msgid "You can create and edit drawing objects using the keyboard." -msgstr "Per creare e modificare gli oggetti di disegno potete anche usare la tastiera." +msgstr "Per creare e modificare gli oggetti di disegno è possibile usare anche la tastiera." #. YVvQs #: keyboard.xhp @@ -1904,7 +1904,7 @@ "par_id3153188\n" "help.text" msgid "Press F6 to navigate to the Drawing bar." -msgstr "Premete F6 per accedere alla barra Disegno." +msgstr "Premere F6 per accedere alla barra Disegno." #. 8Jf2p #: keyboard.xhp @@ -1913,7 +1913,7 @@ "par_id3146971\n" "help.text" msgid "Press the Right arrow key until you reach the toolbar icon of a drawing tool." -msgstr "Premete il tasto freccia destra fino a raggiungere l'icona della barra di uno strumento di disegno." +msgstr "Premere il tasto freccia destra fino a raggiungere l'icona della barra di uno strumento di disegno." #. FEfKD #: keyboard.xhp @@ -1949,7 +1949,7 @@ "par_id3155962\n" "help.text" msgid "To return to the document, press CommandCtrl+F6." -msgstr "Per tornare al documento, premete CmdCtrl+F6." +msgstr "Per tornare al documento, premere CmdCtrl+F6." #. gQRPD #: keyboard.xhp @@ -1958,7 +1958,7 @@ "par_id3155062\n" "help.text" msgid "You can use the arrow keys to position the object where you want. To choose a command from the context menu for the object, press Shift+F10." -msgstr "Usate i tasti freccia per posizionare l'oggetto nel punto desiderato. Per scegliere un comando dal menu di contesto dell'oggetto, premete Maiusc+F10." +msgstr "Usare i tasti freccia per posizionare l'oggetto nel punto desiderato. Per scegliere un comando dal menu di contesto dell'oggetto premere Maiusc+F10." #. g7CqK #: keyboard.xhp @@ -1976,7 +1976,7 @@ "par_id3152990\n" "help.text" msgid "Press CommandCtrl+F6 to enter the document." -msgstr "Premete CmdCtrl+F6 per entrare nel documento." +msgstr "Premere CmdCtrl+F6 per entrare nel documento." #. auKsz #: keyboard.xhp @@ -1985,7 +1985,7 @@ "par_id3145587\n" "help.text" msgid "Press Tab until you reach the object you want to select." -msgstr "Premete Tab fino a raggiungere l'oggetto da selezionare." +msgstr "Premere Tab fino a raggiungere l'oggetto da selezionare." #. JLNwQ #: layer_move.xhp @@ -2030,7 +2030,7 @@ "par_id3148488\n" "help.text" msgid "Click and hold the object until its edges flash." -msgstr "Fate clic sull'oggetto e tenete premuto il pulsante del mouse finché i bordi non lampeggiano." +msgstr "Fare clic sull'oggetto e tenere premuto il pulsante del mouse finché i bordi non lampeggiano." #. Fd8FL #: layer_move.xhp @@ -2039,7 +2039,7 @@ "par_id3145587\n" "help.text" msgid "Drag the object to the name tab of the layer you want to move it to." -msgstr "Trascinate l'oggetto sul nome della scheda del livello in cui volete spostarlo." +msgstr "Trascinare l'oggetto sul nome della scheda del livello in cui lo si vuole spostare." #. JKcGu #: layer_move.xhp @@ -2048,7 +2048,7 @@ "par_id3148868\n" "help.text" msgid "Release the object." -msgstr "Rilasciate l'oggetto." +msgstr "Rilasciare l'oggetto." #. ueWyB #: layer_new.xhp @@ -2093,7 +2093,7 @@ "par_idN10643\n" "help.text" msgid "Right-click the layer tab area at the bottom." -msgstr "Fate clic col pulsante destro del mouse nell'area inferiore della scheda del livello." +msgstr "Fare clic col pulsante destro del mouse nell'area inferiore della scheda del livello." #. Zgqbq #: layer_new.xhp @@ -2102,7 +2102,7 @@ "par_id3153418\n" "help.text" msgid "Choose Insert Layer." -msgstr "Scegliete Inserisci livello." +msgstr "Scegliere Inserisci livello." #. KF4eN #: layer_new.xhp @@ -2111,7 +2111,7 @@ "par_id3155068\n" "help.text" msgid "Type a name for the layer in the Name box." -msgstr "Inserite un nome per il livello nella casella Nome." +msgstr "Inserire un nome per il livello nella casella Nome." #. XpnA9 #: layer_new.xhp @@ -2138,7 +2138,7 @@ "par_id3154658\n" "help.text" msgid "To change the properties of a layer, click the name tab of the layer, and then choose Format - Layer." -msgstr "Per modificare le proprietà di un livello, fate clic sulla scheda con il nome del livello e scegliete Formato - Livello." +msgstr "Per modificare le proprietà di un livello, fare clic sulla scheda con il nome del livello e scegliere Formato - Livello." #. pcp3u #: layer_new.xhp @@ -2201,7 +2201,7 @@ "par_id3154484\n" "help.text" msgid "To select a layer, click the name tab of the layer at the bottom of the workspace." -msgstr "Per selezionare un livello, fate clic sulla scheda del nome corrispondente nella parte inferiore dell'area di lavoro." +msgstr "Per selezionare un livello fare clic sulla scheda del nome corrispondente nella parte inferiore dell'area di lavoro." #. Eu6FM #: layer_tipps.xhp @@ -2210,7 +2210,7 @@ "par_idN10767\n" "help.text" msgid "To edit the properties of a layer, double-click a layer tab." -msgstr "Per modificare le proprietà di un livello, fate doppio clic sulla sua scheda." +msgstr "Per modificare le proprietà di un livello fare doppio clic sulla sua scheda." #. gpeRK #: layer_tipps.xhp @@ -2228,7 +2228,7 @@ "par_id3154702\n" "help.text" msgid "Select a layer, and then choose Format - Layer." -msgstr "Selezionate un livello e scegliete Formato - Livello." +msgstr "Selezionare un livello e scegliere Formato - Livello." #. GExfg #: layer_tipps.xhp @@ -2237,7 +2237,7 @@ "par_id3145587\n" "help.text" msgid "In the Properties area, clear the Visible check box." -msgstr "Nell'area Proprietà, deselezionate la casella di controllo Visibile." +msgstr "Nell'area Proprietà deselezionare la casella di controllo Visibile." #. S94G3 #: layer_tipps.xhp @@ -2246,7 +2246,7 @@ "par_id3153912\n" "help.text" msgid "Click OK." -msgstr "Fate clic su OK." +msgstr "Fare clic su OK." #. SYd53 #: layer_tipps.xhp @@ -2264,7 +2264,7 @@ "par_id3156396\n" "help.text" msgid "You can make a layer visible or invisible by clicking on its tab while holding down the Shift key." -msgstr "Per rendere visibile o invisibile un livello, fate clic sulla sua scheda tenendo premuto il tasto Maiusc." +msgstr "Per rendere visibile o invisibile un livello fare clic sulla sua scheda tenendo premuto il tasto Maiusc." #. oLGAc #: layer_tipps.xhp @@ -2282,7 +2282,7 @@ "par_id3157871\n" "help.text" msgid "Select a hidden layer, and then choose Format - Layer." -msgstr "Selezionate un livello nascosto e scegliete Formato - Livello." +msgstr "Selezionare un livello nascosto e scegliere Formato - Livello." #. Hp7EC #: layer_tipps.xhp @@ -2291,7 +2291,7 @@ "par_id3149352\n" "help.text" msgid "In the Properties area, select the Visible check box." -msgstr "Nell'area Proprietà selezionate la casella di controllo Visibile." +msgstr "Nell'area Proprietà selezionare la casella di controllo Visibile." #. sRuDf #: layer_tipps.xhp @@ -2300,7 +2300,7 @@ "par_id3153036\n" "help.text" msgid "Click OK." -msgstr "Fate clic su OK." +msgstr "Fare clic su OK." #. eteBC #: layer_tipps.xhp @@ -2318,7 +2318,7 @@ "par_id3150864\n" "help.text" msgid "Select a layer, and then choose Format - Layer." -msgstr "Selezionate un livello e scegliete Formato - Livello." +msgstr "Selezionare un livello e scegliere Formato - Livello." #. kAd4B #: layer_tipps.xhp @@ -2327,7 +2327,7 @@ "par_id3150336\n" "help.text" msgid "In the Properties area, select the Locked check box." -msgstr "Nell'area Proprietà selezionate la casella di controllo Bloccato." +msgstr "Nell'area Proprietà selezionare la casella di controllo Bloccato." #. VggNV #: layer_tipps.xhp @@ -2336,7 +2336,7 @@ "par_id3153730\n" "help.text" msgid "Click OK." -msgstr "Fate clic su OK." +msgstr "Fare clic su OK." #. FzHMk #: layer_tipps.xhp @@ -2363,7 +2363,7 @@ "par_id3145354\n" "help.text" msgid "Select a locked layer, and then choose Format - Layer." -msgstr "Selezionate un livello bloccato e scegliete Formato - Livello." +msgstr "Selezionare un livello bloccato e scegliere Formato - Livello." #. xzL5o #: layer_tipps.xhp @@ -2372,7 +2372,7 @@ "par_id3148393\n" "help.text" msgid "In the Properties area, clear the Locked check box." -msgstr "Nell'area Proprietà deselezionate la casella di controllo Bloccato." +msgstr "Nell'area Proprietà deselezionare la casella di controllo Bloccato." #. JaFMq #: layer_tipps.xhp @@ -2381,7 +2381,7 @@ "par_id3150467\n" "help.text" msgid "Click OK." -msgstr "Fate clic su OK." +msgstr "Fare clic su OK." #. mWSnc #: layers.xhp @@ -2417,7 +2417,7 @@ "par_id3146313\n" "help.text" msgid "Layers allow you to assemble elements on a page that are related. Think of layers as individual workspaces that you can hide from view, hide from printing, or lock." -msgstr "I livelli vi consentono di assemblare su una pagina elementi che sono correlati. Immaginate i livelli come spazi di lavoro individuali che potete nascondere alla vista, alla stampa o bloccare." +msgstr "I livelli consentono di assemblare su una pagina elementi che sono correlati. Figurarsi i livelli come spazi di lavoro individuali che si possono nascondere alla vista, alla stampa o bloccare." #. 4kcNU #: layers.xhp @@ -2435,7 +2435,7 @@ "par_id1614734\n" "help.text" msgid "The stacking order of objects on your page is determined by the sequence in which you add the objects. You can rearrange the stacking order by Shape - Arrange." -msgstr "L'ordine di sovrapposizione degli oggetti nella pagina è determinato dalla sequenza in cui gli oggetti vengono aggiunti. Potete disporre diversamente l'ordine di sovrapposizione scegliendo Forma - Disponi." +msgstr "L'ordine di sovrapposizione degli oggetti nella pagina è determinato dalla sequenza in cui gli oggetti vengono aggiunti. È possibile disporre diversamente l'ordine di sovrapposizione scegliendo Forma - Disponi." #. iH5qN #: layers.xhp @@ -2444,7 +2444,7 @@ "par_id398876\n" "help.text" msgid "The areas on a layer that do not contain objects are transparent." -msgstr "All'interno dei livelli, le aree che non contengono oggetti sono trasparenti." +msgstr "All'interno dei livelli le aree che non contengono oggetti sono trasparenti." #. J8FdX #: layers.xhp @@ -2489,7 +2489,7 @@ "par_id3156397\n" "help.text" msgid "You cannot delete or rename the default layers. You can add your own layers by Insert - Layer." -msgstr "I livelli predefiniti non possono essere eliminati né rinominati. Potete aggiungere livelli personalizzati con Inserisci - Livello." +msgstr "I livelli predefiniti non possono essere eliminati né rinominati. È possibile aggiungere livelli personalizzati con Inserisci - Livello." #. VXoqD #: layers.xhp @@ -2507,7 +2507,7 @@ "par_id3150742\n" "help.text" msgid "The Controls layer can be used for buttons that have been assigned an action, but that should not be printed. Set the layer's properties to not printable. Objects on the Controls layer are always in front of objects on other layers." -msgstr "Il livello Campi di controllo si riferisce ai pulsanti che sono stati assegnati a un'azione ma che non devono essere stampati. Impostate le proprietà del livello in modo da renderlo non stampabile. Gli oggetti del livello Campi di controllo sono sempre posizionati davanti agli oggetti degli altri livelli." +msgstr "Il livello Campi di controllo si riferisce ai pulsanti che sono stati assegnati a un'azione ma che non devono essere stampati. Impostare le proprietà del livello in modo da renderlo non stampabile. Gli oggetti del livello Campi di controllo sono sempre posizionati davanti agli oggetti degli altri livelli." #. GigUQ #: layers.xhp @@ -2516,7 +2516,7 @@ "par_id3153085\n" "help.text" msgid "The Dimension Lines layer is where you draw, for example, the dimension lines. By switching the layer to show or hide, you can easily switch these lines on and off." -msgstr "Il livello Linee di quotatura viene utilizzato, ad esempio, per tracciare le linee di quotatura. Attivando o disattivando il livello potete mostrare o nascondere facilmente tali linee." +msgstr "Il livello Linee di quotatura viene utilizzato, ad esempio, per tracciare le linee di quotatura. Attivando o disattivando il livello è possibile mostrare o nascondere facilmente tali linee." #. zDY7B #: layers.xhp @@ -2525,7 +2525,7 @@ "par_id3154507\n" "help.text" msgid "You can lock a layer to protect its contents, or hide a layer and its contents from view or from printing. When you add a new layer to a page, the layer is added to all of the pages in your document. However, when you add an object to a layer, it is only added to the current page. If you want the object to appear on all of the pages, add the object to the master page (View - Master)." -msgstr "Potete bloccare un livello per proteggerne il contenuto, oppure nascondere o impedire la stampa di un livello. Tuttavia, quando aggiungete un nuovo livello a una pagina, esso viene aggiunto a tutte le pagine del documento. Quando invece si inserisce un oggetto in un determinato livello, l'operazione ha effetto solo sulla pagina attiva. Per far comparire l'oggetto in tutte le pagine, potete aggiungerlo alla pagina schema (Visualizza - Schema)." +msgstr "È possibile bloccare un livello per proteggerne il contenuto, o per nascondere o impedire la sua stampa. Tuttavia, quando si aggiunge un nuovo livello a una pagina, esso viene aggiunto a tutte le pagine del documento. Quando invece si inserisce un oggetto in un determinato livello, l'operazione ha effetto solo sulla pagina attiva. Per far comparire l'oggetto in tutte le pagine è possibile aggiungerlo alla pagina schema (Visualizza - Schema)." #. r9Yst #: main.xhp @@ -2633,7 +2633,7 @@ "par_id3149262\n" "help.text" msgid "You can rotate an object around its default pivot point (center point) or a pivot point that you designate." -msgstr "Se fate clic su un oggetto per la prima volta appariranno gli otto punti di ridimensionamento che, se trascinati, modificano le dimensioni dell'oggetto. Trascinando l'intero oggetto è possibile cambiare anche la sua posizione." +msgstr "Facendo clic su un oggetto per la prima volta appariranno gli otto punti di ridimensionamento che, se trascinati, modificano le dimensioni dell'oggetto. Trascinando l'intero oggetto è possibile cambiare anche la sua posizione." #. ZGoP9 #: rotate_object.xhp @@ -2651,7 +2651,7 @@ "par_id3150716\n" "help.text" msgid "Select the object you want to rotate. On the Transformations toolbar in $[officename] Draw or on the Drawing bar in $[officename] Impress, click the Rotate icon." -msgstr "Selezionate l'oggetto da ruotare. Nella barra degli strumenti Trasformazioni di $[officename] Draw o nella barra degli strumenti Disegno di $[officename] Impress, fate clic sull'icona Ruota." +msgstr "Selezionare l'oggetto da ruotare. Nella barra degli strumenti Trasformazioni di $[officename] Draw o nella barra degli strumenti Disegno di $[officename] Impress, fare clic sull'icona Ruota." #. MLBay #: rotate_object.xhp @@ -2660,7 +2660,7 @@ "par_id3149021\n" "help.text" msgid "Move the pointer to a corner handle so that the pointer changes to a rotate symbol. Drag the handle to rotate the object." -msgstr "Passando il puntatore del mouse sopra i punti di ridimensionamento questo indicherà che è possibile ruotare l'oggetto con il mouse. Trascinate la maniglia per ruotare l'oggetto." +msgstr "Passando il puntatore del mouse sopra i punti di ridimensionamento questo indicherà che è possibile ruotare l'oggetto con il mouse. Trascinare la maniglia per ruotare l'oggetto." #. TrVS9 #: rotate_object.xhp @@ -2678,7 +2678,7 @@ "par_id0930200803002463\n" "help.text" msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value." -msgstr "Fate clic col pulsante destro sull'oggetto per aprire il menu di contesto. Scegliete Posizione e dimensione - Rotazione per inserire un valore preciso di rotazione." +msgstr "Fare clic col pulsante destro sull'oggetto per aprire il menu di contesto. Scegliere Posizione e dimensione - Rotazione per inserire un valore preciso di rotazione." #. G5NAB #: rotate_object.xhp @@ -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 "Per modificare il punto di rotazione, trascinate il piccolo cerchio presente al centro dell'oggetto in una nuova posizione." +msgstr "Per modificare il punto di rotazione, trascinare il piccolo cerchio presente al centro dell'oggetto in una nuova posizione." #. 7Sjf8 #: rotate_object.xhp @@ -2705,7 +2705,7 @@ "par_id3159236\n" "help.text" msgid "To skew the object vertically or horizontally, drag one of the side handles." -msgstr "Per inclinare l'oggetto verticalmente o orizzontalmente, trascinate una delle maniglie laterali." +msgstr "Per inclinare l'oggetto verticalmente o orizzontalmente, trascinare una delle maniglie laterali." #. SFGmo #: text_enter.xhp @@ -2741,7 +2741,7 @@ "par_id3145750\n" "help.text" msgid "There are several types of text you can add to a drawing or presentation:" -msgstr "Potete aggiungere vari tipi di testo ai disegni o alle presentazioni:" +msgstr "È possibile aggiungere vari tipi di testo ai disegni o alle presentazioni:" #. pQVkX #: text_enter.xhp @@ -2750,7 +2750,7 @@ "par_idN10824\n" "help.text" msgid "Text in a text box" -msgstr "Testo in una cornice di testo" +msgstr "Testo in una casella di testo" #. rB9jp #: text_enter.xhp @@ -2804,7 +2804,7 @@ "par_id3155266\n" "help.text" msgid "Click the Text iconIcon and move the mouse pointer to where you want to enter the text box." -msgstr "Fate clic sull'icona TestoIcona e spostate il puntatore del mouse nel punto in cui volete inserire la casella di testo." +msgstr "Fare clic sull'icona TestoIcona e spostare il puntatore del mouse nel punto in cui si vuole inserire la casella di testo." #. dLN6f #: text_enter.xhp @@ -2813,7 +2813,7 @@ "par_id3149052\n" "help.text" msgid "Drag a text box to the size you want in your document." -msgstr "Trascinate e regolate la cornice di testo alla dimensione desiderata, all'interno del vostro documento." +msgstr "Trascinare e regolare la casella di testo alla dimensione desiderata, all'interno del documento." #. ACFJ7 #: text_enter.xhp @@ -2822,7 +2822,7 @@ "par_id3151194\n" "help.text" msgid "Type or paste your text into the text box." -msgstr "Digitate o incollate il testo all'interno della cornice." +msgstr "Scrivere o incollare il testo all'interno della casella di testo." #. qLSZv #: text_enter.xhp @@ -2831,7 +2831,7 @@ "par_id3145118\n" "help.text" msgid "Double-click the text to edit it or to format text properties, such as font size or font color. Click the border of the text box to edit the object properties, such as border color or arranging in front or behind other objects." -msgstr "Fate doppio clic sul testo per modificarlo o per impostare le proprietà di formato, come la dimensione o il colore del carattere. Fate clic sul bordo della casella di testo per modificare le proprietà dell'oggetto, ad esempio il colore del bordo o la posizione (in primo piano o dietro gli altri oggetti)." +msgstr "Fare doppio clic sul testo per modificarlo o per impostare le proprietà di formato, come la dimensione o il colore del carattere. Fare clic sul bordo della casella di testo per modificarne le sue proprietà, ad esempio il colore del bordo o la posizione (in primo piano o dietro gli altri oggetti)." #. CutFB #: text_enter.xhp @@ -2849,7 +2849,7 @@ "par_id3146877\n" "help.text" msgid "Create a text box as described in the steps above." -msgstr "Create una casella di testo come descritto nei passaggi precedenti." +msgstr "Creare una casella di testo come descritto nei passaggi precedenti." #. Q8BAz #: text_enter.xhp @@ -2858,7 +2858,7 @@ "par_idN108A3\n" "help.text" msgid "With the text object selected, choose Format - Text. The Text dialog opens." -msgstr "Con l'oggetto di testo selezionato, scegliete Formato - Testo. Si apre la finestra di dialogo Testo." +msgstr "Con l'oggetto di testo selezionato, scegliere Formato - Testo. Si apre la finestra di dialogo Testo." #. D7Jw2 #: text_enter.xhp @@ -2867,7 +2867,7 @@ "par_idN108AF\n" "help.text" msgid "On the Text tab page, clear the Fit height to text checkbox, then select the Fit to frame checkbox. Click OK." -msgstr "Nella scheda Testo, deselezionate la casella di controllo Adatta altezza al testo e quindi selezionate la casella Adatta a cornice. Scegliete OK." +msgstr "Nella scheda Testo, deselezionare la casella di controllo Adatta altezza al testo e quindi selezionare la casella Adatta a cornice. Fare clic su OK." #. j28Ed #: text_enter.xhp @@ -2894,7 +2894,7 @@ "par_idN10917\n" "help.text" msgid "You can add text to any graphic after double-clicking the graphic." -msgstr "Potete aggiungere un testo a qualsiasi immagine facendo doppio clic su di essa." +msgstr "È possibile aggiungere un testo a qualsiasi immagine facendo doppio clic su di essa." #. i9bRF #: text_enter.xhp @@ -2903,7 +2903,7 @@ "par_id1827448\n" "help.text" msgid "To determine the position of the text, use the settings in Format - Text." -msgstr "Per determinare la posizione del testo, usate le impostazioni in Formato - Testo." +msgstr "Per determinare la posizione del testo, usare le impostazioni in Formato - Testo." #. gifR8 #: text_enter.xhp @@ -2912,7 +2912,7 @@ "par_id3147366\n" "help.text" msgid "For example, click the arrow next to the Callouts iconIcon to open the Callouts toolbar." -msgstr "Ad esempio, fate clic sulla freccia vicina all'icona Legenda Icona per aprire la relativa barra degli strumenti." +msgstr "Ad esempio, fare clic sulla freccia vicina all'icona Legenda Icona per aprire la relativa barra degli strumenti." #. TBBEa #: text_enter.xhp @@ -2921,7 +2921,7 @@ "par_idN108FD\n" "help.text" msgid "Select a callout and move the mouse pointer to where you want the callout to start." -msgstr "Fate clic su una legenda e spostate il puntatore del mouse nel punto in cui volete inizi la legenda." +msgstr "Fare clic su una legenda e spostare il puntatore del mouse nel punto in cui si vuole che inizi la legenda." #. yWMZf #: text_enter.xhp @@ -2930,7 +2930,7 @@ "par_id3150272\n" "help.text" msgid "Drag to draw the callout." -msgstr "Trascinate il puntatore del mouse per disegnare la legenda." +msgstr "Trascinare il puntatore del mouse per disegnare la legenda." #. LACCd #: text_enter.xhp @@ -2939,7 +2939,7 @@ "par_id1978514\n" "help.text" msgid "Enter the text." -msgstr "Digitate il testo." +msgstr "Scrivere il testo." #. C9fwC #: text_enter.xhp @@ -2957,7 +2957,7 @@ "par_idN10921\n" "help.text" msgid "Select the text in your Writer document." -msgstr "Selezionate il testo nel documento di Writer." +msgstr "Selezionare il testo nel documento di Writer." #. 9TSZh #: text_enter.xhp @@ -2966,7 +2966,7 @@ "par_idN10925\n" "help.text" msgid "Copy the text to the clipboard (Edit - Copy)." -msgstr "Copiate il testo negli Appunti (Modifica - Copia)." +msgstr "Copiare il testo negli appunti (Modifica - Copia)." #. xXHnT #: text_enter.xhp @@ -2975,7 +2975,7 @@ "par_idN1092D\n" "help.text" msgid "Click the page or slide where you want to paste the text." -msgstr "Fate clic sulla pagina o sulla diapositiva in cui desiderate incollare il testo." +msgstr "Fare clic sulla pagina o sulla diapositiva in cui si vuole incollare il testo." #. GCpCF #: text_enter.xhp @@ -2984,7 +2984,7 @@ "par_idN10931\n" "help.text" msgid "Paste the text using Edit - Paste or Edit - Paste special." -msgstr "Incollate il testo con Modifica - Incolla o Modifica - Incolla speciale." +msgstr "Incollare il testo con Modifica - Incolla o Modifica - Incolla speciale." #. xHxJp #: text_enter.xhp @@ -2993,7 +2993,7 @@ "par_idN1093C\n" "help.text" msgid "Using Paste special, you can choose the text format to be pasted. Depending on formats, you can copy different text attributes." -msgstr "Usando Incolla speciale potete scegliere il formato del testo da incollare. In base al formato scelto, potete copiare diversi attributi del testo." +msgstr "Usando Incolla speciale è possibile scegliere il formato del testo da incollare. In base al formato scelto è possibile copiare diversi attributi del testo." #. CwhNW #: text_enter.xhp @@ -3011,7 +3011,7 @@ "par_idN10946\n" "help.text" msgid "Click the page or slide where you want to import the text." -msgstr "Fate clic sulla pagina o sulla diapositiva in cui desiderate importare il testo." +msgstr "Fare clic sulla pagina o sulla diapositiva in cui si vuole importare il testo." #. dRzar #: text_enter.xhp @@ -3020,7 +3020,7 @@ "par_idN1094A\n" "help.text" msgid "Choose Insert - File." -msgstr "Scegliete Inserisci - File." +msgstr "Scegliere Inserisci - File." #. oWEEr #: text_enter.xhp @@ -3029,4 +3029,4 @@ "par_idN10952\n" "help.text" msgid "Select a text file (*.txt) or an HTML file and click Insert. The Insert Text dialog opens. Click OK to insert the text." -msgstr "Selezionate un file di testo (*.txt) o un file HTML e fate clic su Inserisci. Si apre la finestra di dialogo Inserisci testo. Fate clic su OK per inserire il testo." +msgstr "Selezionare un file di testo (*.txt) o un file HTML e fare clic su Inserisci. Si apre la finestra di dialogo Inserisci testo. Fare clic su OK per inserire il testo." diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/sdraw.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/sdraw.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/sdraw.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/sdraw.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2021-12-17 23:38+0000\n" +"PO-Revision-Date: 2023-04-03 04:33+0000\n" "Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563813163.000000\n" #. dHbww @@ -77,7 +77,7 @@ "par_id3154684\n" "help.text" msgid "The following is a description of all $[officename] Draw menus, submenus and their dialogs." -msgstr "In quest'area trovate la descrizione di tutti i menu, i sottomenu e le finestre di dialogo disponibili di $[officename] Draw." +msgstr "In quest'area è presente la descrizione di tutti i menu, i sottomenu e le finestre di dialogo disponibili di $[officename] Draw." #. PvGHJ #: main0101.xhp @@ -221,7 +221,7 @@ "par_id301605560855098\n" "help.text" msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position." -msgstr "Usatelo per spostare la posizione della pagina nella finestra. Quando abilitato, la forma del puntatore del mouse cambia. Fate clic sulla pagina a trascinatela nella posizione desiderata." +msgstr "Usarlo per spostare la posizione della pagina nella finestra. Quando abilitato, la forma del puntatore del mouse cambia. Fare clic sulla pagina e trascinarla nella posizione desiderata." #. 7AgpR #: main0103.xhp @@ -374,7 +374,7 @@ "par_idN105E1\n" "help.text" msgid "Draws a filled rectangle where you drag in the current document. Click where you want to place a corner of the rectangle, and drag to the size you want. To draw a square, hold down Shift while you drag." -msgstr "Disegna un rettangolo pieno nel punto del documento in cui trascinate il puntatore. Fate clic nel punto in cui volete posizionare un angolo del rettangolo e trascinate il puntatore fino ad ottenere la dimensione desiderata. Per disegnare un quadrato, tenete premuto il tasto Maiusc durante il trascinamento." +msgstr "Disegna un rettangolo pieno nel punto del documento in cui si trascina il puntatore. Fare clic nel punto in cui si vuole posizionare un angolo del rettangolo e trascinare il puntatore fino ad ottenere la dimensione desiderata. Per disegnare un quadrato, tenere premuto il tasto Maiusc durante il trascinamento." #. zHKmr #: main0210.xhp @@ -392,7 +392,7 @@ "par_idN105FE\n" "help.text" msgid "Draws a filled oval where you drag in the current document. Click where you want to draw the oval, and drag to the size you want. To draw a circle, hold down Shift while you drag." -msgstr "Disegna un'ellisse piena nel punto del documento in cui trascinate il puntatore. Fate clic nel punto in cui volete disegnare l'ellisse e trascinate il puntatore fino ad ottenere la dimensione desiderata. Per disegnare un cerchio, tenete premuto il tasto Maiusc durante il trascinamento." +msgstr "Disegna un'ellisse piena nel punto del documento in cui si trascina il puntatore. Fare clic nel punto in cui si vuole disegnare l'ellisse e trascinare il puntatore fino ad ottenere la dimensione desiderata. Per disegnare un cerchio, tenere premuto il tasto Maiusc durante il trascinamento." #. viV2Q #: main0210.xhp @@ -410,7 +410,7 @@ "par_idN1061B\n" "help.text" msgid "Draws a text box where you click or drag in the current document. Click anywhere in the document, and then type or paste your text." -msgstr "Disegna una casella di testo nel punto del documento in cui trascinate il puntatore o fate clic. Fate clic all'interno del documento, quindi digitate o incollate il testo." +msgstr "Disegna una casella di testo nel punto del documento in cui si trascina il puntatore o si fa clic. Fare clic all'interno del documento, quindi scrivere o incollare il testo." #. Ao4VC #: main0210.xhp @@ -446,7 +446,7 @@ "par_idN106C3\n" "help.text" msgid "Enables you to edit points on your drawing." -msgstr "Permette di modificare i punti del vostro disegno." +msgstr "Permette di modificare i punti del disegno." #. NEWtS #: main0210.xhp @@ -464,7 +464,7 @@ "par_idN106D7\n" "help.text" msgid "Enables you to edit gluepoints on your drawing." -msgstr "Permette di modificare i punti d'incollaggio del vostro disegno." +msgstr "Permette di modificare i punti d'incollaggio del disegno." #. 3Cwi3 #: main0210.xhp @@ -527,7 +527,7 @@ "par_id3154685\n" "help.text" msgid "The Options bar can be displayed by choosing View - Toolbars - Options." -msgstr "Per attivare la barra delle opzioni andate al menu Visualizza - Barre degli strumenti - Opzioni." +msgstr "Per attivare la barra delle opzioni andare al menu Visualizza - Barre degli strumenti - Opzioni." #. Evbup #: main0213.xhp @@ -635,7 +635,7 @@ "par_id3146975\n" "help.text" msgid "$[officename] Draw lets you create simple and complex drawings and export them in a number of common image formats. You can also insert tables, charts, formulas and other items created in $[officename] programs into your drawings." -msgstr "$[officename] Draw vi permette di creare disegni sia semplici, sia complessi e di esportarli in vari formati grafici. Nei disegni potete inoltre inserire tabelle, grafici, formule e altri oggetti creati con i programmi di $[officename]." +msgstr "$[officename] Draw permette di creare disegni sia semplici, sia complessi e di esportarli in vari formati grafici. Nei disegni è possibile inoltre inserire tabelle, grafici, formule e altri oggetti creati con i programmi di $[officename]." #. dTRFJ #: main0503.xhp @@ -671,7 +671,7 @@ "par_id3145251\n" "help.text" msgid "You can create simple 3D objects such as cubes, spheres, and cylinders in $[officename] Draw and even modify the light source of the objects." -msgstr "In $[officename] Draw potete creare oggetti tridimensionali di forma elementare, ad esempio cubi, sfere e cilindri, e modificarne la sorgente luminosa." +msgstr "In $[officename] Draw è possibile creare oggetti tridimensionali di forma elementare, ad esempio cubi, sfere e cilindri, e modificarne la sorgente luminosa." #. ZuG9S #: main0503.xhp @@ -689,7 +689,7 @@ "par_id3149379\n" "help.text" msgid "Grids and snap lines provide a visual cue to help you align objects in your drawing. You can also choose to snap an object to a grid line, snap line or to the edge of another object." -msgstr "Le griglie e le linee di cattura offrono un ausilio visivo che facilita l'allineamento degli oggetti nei disegni. Volendo, potete scegliere di agganciare un oggetto a una linea della griglia, a una linea di cattura o al bordo di un altro oggetto." +msgstr "Le griglie e le linee di cattura offrono un ausilio visivo che facilita l'allineamento degli oggetti nei disegni. Volendo, si può scegliere di agganciare un oggetto a una linea della griglia, a una linea di cattura o al bordo di un altro oggetto." #. 3fX6X #: main0503.xhp @@ -707,7 +707,7 @@ "par_id3149124\n" "help.text" msgid "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to gluepoints on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams." -msgstr "In $[officename] Draw potete collegare gli oggetti con linee speciali dette \"connettori\" per rappresentarne le relazioni reciproche. I connettori si collegano a speciali punti di incollaggio presenti negli oggetti di disegno e rimangono collegati anche quando gli oggetti vengono spostati. Sono particolarmente utili per creare organigrammi e grafici tecnici." +msgstr "In $[officename] Draw è possibile collegare gli oggetti con linee speciali dette \"connettori\" per rappresentarne le relazioni reciproche. I connettori si collegano a speciali punti di incollaggio presenti negli oggetti di disegno e rimangono collegati anche quando gli oggetti vengono spostati. Sono particolarmente utili per creare organigrammi e grafici tecnici." #. pLaMp #: main0503.xhp @@ -725,7 +725,7 @@ "par_id3155333\n" "help.text" msgid "Technical diagrams often show the dimensions of objects in the drawing. In $[officename] Draw, you can use dimension lines to calculate and display linear dimensions." -msgstr "Nei diagrammi di natura tecnica è spesso necessario mostrare le dimensioni degli oggetti raffigurati. In $[officename] Draw, usando le linee di quotatura, potete calcolare e visualizzare le dimensioni lineari degli oggetti." +msgstr "Nei diagrammi di natura tecnica è spesso necessario mostrare le dimensioni degli oggetti raffigurati. In $[officename] Draw, usando le linee di quotatura, è possibile calcolare e visualizzare le dimensioni lineari degli oggetti." #. s5vj3 #: main0503.xhp @@ -743,7 +743,7 @@ "par_id3154022\n" "help.text" msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs." -msgstr "La Galleria contiene immagini, animazioni, suoni e altri oggetti che potete inserire e usare sia nei disegni, sia in altri programmi di $[officename]." +msgstr "La Galleria contiene immagini, animazioni, suoni e altri oggetti che è possibile inserire e usare sia nei disegni, sia in altri programmi di $[officename]." #. dKxQU #: main0503.xhp @@ -788,7 +788,7 @@ "par_id3146974\n" "help.text" msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)." -msgstr "In questo menu trovate i comandi per modificare i documenti Draw (per esempio, copiare e incollare)." +msgstr "In questo menu sono presenti i comandi per modificare i documenti Draw (per esempio, copiare e incollare)." #. dCFBH #: main_edit.xhp @@ -815,7 +815,7 @@ "par_id3147340\n" "help.text" msgid "Enables you to edit points on your drawing." -msgstr "Permette di modificare i punti del vostro disegno." +msgstr "Permette di modificare i punti del disegno." #. PwD6E #: main_edit.xhp @@ -905,7 +905,7 @@ "par_id3152578\n" "help.text" msgid "Contains commands for formatting the layout and the contents of your document." -msgstr "Contiene comandi con cui potete formattare il layout e il contenuto di un documento." +msgstr "Contiene comandi con cui è possibile formattare il layout e il contenuto di un documento." #. eMepm #: main_format.xhp @@ -1049,7 +1049,7 @@ "par_id161566077419991\n" "help.text" msgid "Insert a text box" -msgstr "Inserisci una casella di testo" +msgstr "Inserisce una casella di testo" #. y6QtH #: main_insert.xhp @@ -1112,7 +1112,7 @@ "par_id601566081921518\n" "help.text" msgid "Insert a text box with the current page number." -msgstr "Inserite una casella di testo con il numero della pagina corrente." +msgstr "Inserire una casella di testo con il numero della pagina corrente." #. nCBGD #: main_page.xhp diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared/00.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared/00.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: Elisabetta Manuele \n" +"PO-Revision-Date: 2023-04-16 21:33+0000\n" +"Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564773131.000000\n" #. 3B8ZN @@ -50,7 +50,7 @@ "par_id3155913\n" "help.text" msgid "Clicking Cancel closes a dialog without saving any changes made." -msgstr "Facendo clic su Annulla si può chiudere una finestra di dialogo senza salvare le modifiche fatte." +msgstr "Facendo clic su Annulla è possibile chiudere una finestra di dialogo senza salvare le modifiche fatte." #. 9ELme #: 00000001.xhp @@ -86,7 +86,7 @@ "par_id3149783\n" "help.text" msgid "By clicking the arrow next to some icons you open a toolbar. To move a toolbar, drag the title bar. As soon as you release the mouse button, the toolbar remains at the new position. Drag the title bar to another position, or drag to an edge of the window, where the toolbar will dock. Close a toolbar by clicking the Close Window icon. Make the toolbar visible again by choosing View - Toolbars - (toolbar name)." -msgstr "Facendo clic sulla freccia a destra di alcune icone si apre una barra degli strumenti. Per spostare una barra degli strumenti, trascinate la barra del titolo. Rilasciando il pulsante del mouse, la barra degli strumenti resterà nella nuova posizione. Trascinate la barra del titolo in un'altra posizione, oppure trascinate la barra degli strumenti sul bordo della finestra per ancorarla. Per chiudere la barra degli strumenti, fate clic sull'icona Chiudi finestra. Per rendere nuovamente visibile la barra degli strumenti, scegliete Visualizza - Barre degli strumenti - (nome della barra)." +msgstr "Facendo clic sulla freccia a destra di alcune icone si apre una barra degli strumenti. Per spostare una barra degli strumenti, trascinare la barra del titolo. Rilasciando il pulsante del mouse, la barra degli strumenti resterà nella nuova posizione. Trascinare la barra del titolo in un'altra posizione, oppure trascinare la barra degli strumenti sul bordo della finestra per ancorarla. Per chiudere la barra degli strumenti, fare clic sull'icona Chiudi finestra. Per rendere nuovamente visibile la barra degli strumenti, scegliere Visualizza - Barre degli strumenti - (nome della barra)." #. mqyv5 #: 00000001.xhp @@ -113,7 +113,7 @@ "par_id7493209\n" "help.text" msgid "In the Basic IDE, a spin button is the name used for the numerical field together with the two arrow symbols." -msgstr "In Basic IDE, pulsante selezione è il nome utilizzato per il campo numerico insieme con due simboli di freccia." +msgstr "In Basic IDE, un pulsante selezione è il nome utilizzato per il campo numerico insieme con due simboli di freccia." #. CGU7F #: 00000001.xhp @@ -122,7 +122,7 @@ "par_id3155599\n" "help.text" msgid "You can type a numerical value into the field next to the spin button, or select the value with the Up Arrow or Down Arrow symbols on the spin button. On the keyboard you can press the Up Arrow and Down Arrow keys to increase or reduce the value. You can press the Page Up and Page Down keys to set the maximum and minimum value." -msgstr "Potete digitare un valore numerico all'interno del campo vicino al pulsante selezione, o selezionare il valore tramite le frecce su e giù al suo interno. Nella tastiera potete premere i tasti freccia su e freccia giù per incrementare o ridurre il valore. Potete premere i tasti PagSu e PagGiù per impostare il valore massimo o minimo, rispettivamente." +msgstr "È possibile digitare un valore numerico all'interno del campo vicino al pulsante selezione, o selezionare il valore tramite le frecce su e giù al suo interno. Nella tastiera è possibile premere i tasti freccia su e freccia giù per incrementare o ridurre il valore. È possibile premere i tasti PagSu e PagGiù per impostare rispettivamente il valore massimo o minimo." #. 2zxgm #: 00000001.xhp @@ -158,7 +158,7 @@ "hd_id3145129\n" "help.text" msgid "Context Menu" -msgstr "Menu di contesto" +msgstr "Menu contestuale" #. TGzhw #: 00000001.xhp @@ -167,7 +167,7 @@ "par_id3156553\n" "help.text" msgid "To activate the context menu of an object, first click the object with the left mouse button to select it, and then, while holding down the Ctrl key or the Command and Option keys, click the mouse button again click the right mouse button. Some context menus can be called even if the object has not been selected. Context menus are found just about everywhere in $[officename]." -msgstr "Per attivare il menu di contesto di un oggetto, fate clic sull'oggetto col pulsante sinistro del mouse per selezionarlo; quindi, tenendo premuto il tasto Ctrl o i tasti Cmd e Opzione, fate nuovamente clic col pulsante del mousefate clic con il pulsante destro del mouse. Alcuni menu di contesto possono essere richiamati anche senza selezionare un oggetto. $[officename] dispone di menu di contesto per un grande numero di funzioni. " +msgstr "Per attivare il menu contestuale di un oggetto, fare clic sull'oggetto col pulsante sinistro del mouse per selezionarlo; quindi, tenendo premuto il tasto Ctrl o i tasti Cmd e Opzione, fare nuovamente clic col pulsante del mousefare clic con il pulsante destro del mouse. Alcuni menu contestuali possono essere richiamati anche senza selezionare un oggetto. $[officename] dispone di menu contestuali praticamente ovunque. " #. u3GMA #: 00000001.xhp @@ -311,7 +311,7 @@ "par_id3153087\n" "help.text" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Expand icon. Click it to restore the dialog to its original size." -msgstr "Fare clic sull'icona Riduci per ridurre la finestra di dialogo alla dimensione di un campo di digitazione. In questo modo sarà più semplice contrassegnare il riferimento richiesto nel foglio. Le icone vengono quindi convertite automaticamente nell'icona Espandi. Facendo clic su quest'ultima si può ripristinare la dimensione originale della finestra di dialogo." +msgstr "Fare clic sull'icona Riduci per ridurre la finestra di dialogo alla dimensione di un campo di digitazione. In questo modo sarà più semplice contrassegnare il riferimento richiesto nel foglio. Le icone vengono quindi convertite automaticamente nell'icona Espandi. Facendo clic su quest'ultima è possibile ripristinare la dimensione originale della finestra di dialogo." #. XBrSB #: 00000001.xhp @@ -320,7 +320,7 @@ "par_id3155062\n" "help.text" msgid "The dialog is automatically minimized when you click into a sheet with the mouse. As soon as you release the mouse button, the dialog is restored and the reference range defined with the mouse is highlighted in the document by a blue frame." -msgstr "La riduzione della finestra di dialogo avviene automaticamente se premete il pulsante del mouse nel foglio e delineate un'area. Quando rilasciate il pulsante del mouse, la finestra viene nuovamente visualizzata in tutta la sua grandezza e il riferimento area definito con il mouse viene evidenziato nel documento con una cornice blu." +msgstr "La riduzione della finestra di dialogo avviene automaticamente se si preme il pulsante del mouse nel foglio e si delinea un'area. Rilasciando il pulsante del mouse, la finestra viene nuovamente visualizzata in tutta la sua grandezza e il riferimento area definito con il mouse viene evidenziato nel documento con una cornice blu." #. 4pdui #: 00000001.xhp @@ -527,7 +527,7 @@ "par_id3154299\n" "help.text" msgid "A confirmation does not appear before the defaults are reloaded." -msgstr "I valori predefiniti vengono ricaricati senza nessuna richiesta di conferma." +msgstr "I valori predefiniti vengono ricaricati senza alcuna richiesta di conferma." #. DPmE5 #: 00000001.xhp @@ -545,7 +545,7 @@ "par_id651616711045219\n" "help.text" msgid "Closes dialog and discards changes on all tabs. If Apply was used, then changes after the last use of Apply are discarded." -msgstr "Chiude la finestra di dialogo e scarta tutte le modifiche in tutte le schede. Se avete utilizzato il comando Applica, sono scartate solo le modifiche eseguite dopo l'uso di tale comando." +msgstr "Chiude la finestra di dialogo e scarta tutte le modifiche in tutte le schede. Se è stato utilizzato il comando Applica, vengono scartate solo le modifiche eseguite dopo l'uso di tale comando." #. wFkFQ #: 00000001.xhp @@ -626,7 +626,7 @@ "par_id3150439\n" "help.text" msgid "View the selections in the dialog made in the previous step. The current settings remain unchanged. This button can only be activated from page two on." -msgstr "Nella finestra di dialogo è possibile visualizzare la scelta fatta nell'operazione precedente. Le impostazioni attuali rimangono immutate. Potete scegliere questo pulsante solamente a partire dal secondo passaggio." +msgstr "Nella finestra di dialogo è possibile visualizzare la scelta fatta nell'operazione precedente. Le impostazioni attuali rimangono immutate. È possibile scegliere questo pulsante solamente a partire dal secondo passaggio." #. kaeAg #: 00000001.xhp @@ -698,7 +698,7 @@ "par_id3152791\n" "help.text" msgid "By double-clicking a tool, you can use it for multiple tasks. If you call the tool with a single-click, it reverts back to the last selection after completing the task." -msgstr "Facendo doppio clic su uno strumento, potete utilizzarlo per diverse operazioni. Attivando lo strumento con un solo clic, viene ripresentata l'ultima selezione fatta dopo il completamento dell'operazione." +msgstr "Facendo doppio clic su uno strumento, è possibile utilizzarlo per diverse operazioni. Attivando lo strumento con un solo clic viene ripresentata l'ultima selezione fatta dopo il completamento dell'operazione." #. 867kP #: 00000001.xhp @@ -707,7 +707,7 @@ "par_id9345377\n" "help.text" msgid "Press Shift+F1 and point to a control to learn more about that control." -msgstr "Premete Maiusc+F1 e puntate su un campo di controllo per ottenere maggiori informazioni su di esso." +msgstr "Premere Maiusc+F1 e puntare su un campo di controllo per ottenere maggiori informazioni sul suo conto." #. 8xgjL #: 00000001.xhp @@ -779,7 +779,7 @@ "par_id261527693436801\n" "help.text" msgid "Some options cannot be reset once edited. Either edit back the changes manually or click Cancel and reopen the Options dialog." -msgstr "Alcune opzioni non possono essere ripristinate una volta modificate. Potete modificarle manualmente oppure premere il pulsante Annulla e riaprire la finestra di dialogo delle Opzioni." +msgstr "Alcune opzioni non possono essere ripristinate, una volta modificate. È possibile modificarle manualmente oppure premere il pulsante Annulla e riaprire la finestra di dialogo delle Opzioni." #. kUnd2 #: 00000002.xhp @@ -797,7 +797,7 @@ "bm_id3150702\n" "help.text" msgid "Internet glossary common terms;Internet glossary glossaries;Internet terms terminology;Internet glossary" -msgstr "Internet, glossario InternetTermine;glossario InternetGlossario;terminologia InternetTerminologia;glossario Internet" +msgstr "Internet; glossarioTermine;glossario InternetGlossario;terminologia InternetTerminologia;glossario Internet" #. fSAvG #: 00000002.xhp @@ -815,7 +815,7 @@ "par_id3155577\n" "help.text" msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, email, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news." -msgstr "Se avete poca esperienza con Internet, incontrerete molti termini poco familiari: browser, segnalibro, e-mail, homepage, motore di ricerca e molti altri. Per facilitare le prime operazioni, questo glossario spiega alcuni dei termini più importanti che si possono trovare su Internet, nelle intranet, nella posta elettronica e nelle news." +msgstr "Avendo poca esperienza con Internet, si incontreranno molti termini poco familiari: browser, segnalibro, e-mail, homepage, motore di ricerca e molti altri. Per facilitare le prime operazioni, questo glossario spiega alcuni dei termini più importanti che si possono trovare su Internet, nelle intranet, nella posta elettronica e nelle news." #. 3Sv9k #: 00000002.xhp @@ -959,7 +959,7 @@ "par_id3154346\n" "help.text" msgid "If you want to type HTML commands directly, for example when doing exercises from one of the many available HTML books, remember that HTML pages are pure text files. Save your document under the document type Text and give it the file name extension .HTML. Be sure there are no umlauts or other special characters of the extended character set. If you want to re-open this file in $[officename] and edit the HTML code, you must load it with the file type Text and not with the file type Web pages." -msgstr "Se volete digitare direttamente comandi HTML, ad esempio mentre fate esercizi da uno dei tanti libri di HTML disponibili, dovete ricordare che le pagine HTML sono meri file di testo. Salvate il vostro documento come Testo e assegnategli l'estensione .HTML. Assicuratevi che non siano presenti dieresi o altri caratteri speciali del set di caratteri esteso. Se volete riaprire questo file in $[officename] e modificare il codice HTML, dovete caricarlo come file di tipo Testo e non come Pagina web." +msgstr "Se si vogliono digitare direttamente comandi HTML, ad esempio mentre si fanno esercizi da uno dei tanti libri di HTML disponibili, bisogna ricordare che le pagine HTML sono meri file di testo. Salvare il proprio documento come Testo e assegnargli l'estensione .HTML. Assicurarsi che non siano presenti dieresi o altri caratteri speciali del set di caratteri esteso. Per riaprire questo file in $[officename] e modificare il codice HTML, è necessario caricarlo come file di tipo Testo e non come Pagina web." #. HJGu5 #: 00000002.xhp @@ -1013,7 +1013,7 @@ "par_id3145420\n" "help.text" msgid "Hyperlinks are cross-references, highlighted in text in various colors and activated by mouse-click. With the aid of hyperlinks, readers can jump to specific information within a document as well as to related information in other documents." -msgstr "I collegamenti ipertestuali sono riferimenti incrociati che appaiono evidenziati nel testo in vari colori e possono essere attivati con un clic del mouse. Con l'ausilio dei collegamenti ipertestuali, potete passare a sezioni specifiche all'interno di un documento o a informazioni correlate in altri documenti." +msgstr "I collegamenti ipertestuali sono riferimenti incrociati che appaiono evidenziati nel testo in vari colori e possono essere attivati con un clic del mouse. Con l'ausilio dei collegamenti ipertestuali, è possibile passare a sezioni specifiche all'interno di un documento o a informazioni correlate in altri documenti." #. EouXX #: 00000002.xhp @@ -1022,7 +1022,7 @@ "par_id3156281\n" "help.text" msgid "In $[officename] you can assign hyperlinks to text as well as to graphics and frames (see the Hyperlink Dialog icon on the Standard bar)." -msgstr "In $[officename] potete assegnare i collegamenti ipertestuali sia al testo sia a elementi grafici e cornici (vedere l'icona della finestra di dialogo Collegamento ipertestuale nella barra standard)." +msgstr "In $[officename] è possibile assegnare i collegamenti ipertestuali sia al testo, sia a elementi grafici e cornici (vedere l'icona della finestra di dialogo Collegamento ipertestuale nella barra standard)." #. uYSgv #: 00000002.xhp @@ -1067,7 +1067,7 @@ "par_id3150740\n" "help.text" msgid "As ImageMaps can be used in different ways, they can be stored in different formats." -msgstr "Poiché le mappe immagine possono essere usate in modi diversi, esse sono memorizzabili in formati differenti." +msgstr "Poiché le mappe immagine possono essere usate in modi diversi, esse sono memorizzabili in formati diversi." #. EAAkj #: 00000002.xhp @@ -1076,7 +1076,7 @@ "hd_id3146874\n" "help.text" msgid "ImageMap Formats" -msgstr "Formati delle Mappe immagine" +msgstr "Formati delle mappe immagine" #. zVUjE #: 00000002.xhp @@ -1085,7 +1085,7 @@ "par_id3145153\n" "help.text" msgid "ImageMaps are basically divided between those that are analyzed on the server (i. e. your Internet provider) and those analyzed on the web browser of the reader's computer." -msgstr "Ciò che differenzia le mappe immagine è il loro modo essere interpretate: nel server (ad esempio, presso il vostro provider di Internet), oppure nel browser web sul computer del lettore." +msgstr "Ciò che differenzia le mappe immagine è il loro modo di essere interpretate: nel server (ossia presso il proprio provider di Internet), oppure nel browser web del computer dell'utente." #. BiN57 #: 00000002.xhp @@ -1094,7 +1094,7 @@ "bm_id3152881\n" "help.text" msgid "Server Side ImageMap" -msgstr "ImageMap;lato server" +msgstr "Server, lato; mappa immagine" #. RQHEF #: 00000002.xhp @@ -1139,7 +1139,7 @@ "par_id3149483\n" "help.text" msgid "$[officename] creates ImageMaps for both methods. Select the format from the File type list in the Save As dialog in the ImageMap Editor. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program." -msgstr "$[officename] crea mappe immagine per entrambi i metodi. Selezionate il formato dalla lista Tipo file nella finestra di dialogo Salva con nome all'interno dell'Editor di mappe immagine. Vengono creati file map separati che dovranno essere caricati sul server. Se necessario, chiedete al provider o all'amministratore della rete quali tipi di mappe immagine siano supportati dal server e come accedere al programma di elaborazione." +msgstr "$[officename] crea mappe immagine per entrambi i metodi. Selezionare il formato dalla lista Tipo file nella finestra di dialogo Salva con nome all'interno dell'Editor di mappe immagine. Vengono creati file di mappa separati che dovranno essere caricati sul server. Se necessario, chiedere al provider o all'amministratore della rete quali tipi di mappe immagine vengono supportati dal server e come accedere al programma di elaborazione." #. TZxFS #: 00000002.xhp @@ -1148,7 +1148,7 @@ "bm_id3152418\n" "help.text" msgid "Client Side ImageMap" -msgstr "ImageMap;lato client" +msgstr "Client, lato; mappa immagine" #. ENXCD #: 00000002.xhp @@ -1220,7 +1220,7 @@ "par_id3148455\n" "help.text" msgid "A proxy is a computer in the network acting as a kind of clipboard for data transfer. Whenever you access the Internet from a company network and request a Web page that has already been read by a colleague, the proxy will be able to display the page much quicker, as long as it's still in the memory. All that has to be checked in this case is that the page stored in the proxy is the latest version. If this is the case, the page won't have to be downloaded from the much slower Internet but can be loaded directly from the proxy." -msgstr "Un proxy è un computer della rete che funge da \"stazione di passaggio\" per il trasferimento dei dati. Ogni volta che accedete a Internet da una rete aziendale e richiedete una pagina Web che è stata letta recentemente da un collega, e perciò si trova ancora nella memoria, il proxy permette di visualizzarla molto più velocemente. L'unico controllo che viene eseguito è quello per verificare che la pagina memorizzata nel proxy sia aggiornata. In caso affermativo, la pagina non dovrà essere scaricata nuovamente da Internet, allungando così i tempi di visualizzazione, ma potrà essere caricata direttamente dal proxy." +msgstr "Un proxy è un computer della rete che funge da \"stazione di passaggio\" per il trasferimento dei dati. Ogni volta che si accede a Internet da una rete aziendale e si richiede una pagina web che è stata letta recentemente da un collega, e perciò si trova ancora nella memoria, il proxy permette di visualizzarla molto più velocemente. L'unico controllo che viene eseguito è quello per verificare che la pagina memorizzata nel proxy sia aggiornata. In caso affermativo, la pagina non dovrà essere scaricata nuovamente da Internet, che allungherebbe così i tempi di visualizzazione, ma potrà essere caricata direttamente dal proxy." #. WsufY #: 00000002.xhp @@ -1247,7 +1247,7 @@ "par_id3147330\n" "help.text" msgid "SGML stands for \"Standard Generalized Markup Language\". SGML is based on the idea that documents have structural and other semantic elements that can be described without reference to how such elements should be displayed. The actual display of such a document may vary, depending on the output medium and style preferences. In structured texts, SGML not only defines structures (in the DTD = Document Type Definition) but also ensures they are consistently used." -msgstr "SGML è l'acronimo di \"Standard Generalized Markup Language\". Il concetto di base di SGML è che i documenti contengono elementi strutturali e semantici che possono essere descritti senza fare riferimento ai loro modi di visualizzazione specifici. La visualizzazione effettiva di questi documenti può variare in base al dispositivo di uscita e alle preferenze impostate. Nei testi strutturati, SGML non solo definisce le strutture (nel DTD = Document Type Definition), ma controlla anche che vengano usate in modo uniforme." +msgstr "SGML è l'acronimo di \"Standard Generalized Markup Language\". Il concetto di base di SGML è che i documenti contengono elementi strutturali e semantici che possono essere descritti senza fare riferimento ai loro modi di visualizzazione specifici. La visualizzazione effettiva di questi documenti può variare in base al dispositivo di uscita e alle preferenze impostate. Nei testi strutturati, SGML non solo definisce le strutture (nel DTD = Document Type Definition), ma controlla anche che esse vengano usate in modo uniforme." #. SD7LT #: 00000002.xhp @@ -1373,7 +1373,7 @@ "par_idN1069F\n" "help.text" msgid "In some dialogs, you can enter measurement values into input boxes. If you just enter a numerical value, the default measurement unit is used." -msgstr "In alcune finestre di dialogo potete inserire valori di misura nelle caselle di digitazione. Se inserite semplicemente un valore numerico, viene usata l'unità di misura predefinita." +msgstr "In alcune finestre di dialogo è possibile inserire valori di misura nelle caselle di digitazione. Inserendo semplicemente un valore numerico, viene usata l'unità di misura predefinita." #. BjmiX #: 00000003.xhp @@ -1391,7 +1391,7 @@ "par_idN106AD\n" "help.text" msgid "In input boxes for length units you can also add the unit abbreviation according to the following list:" -msgstr "Nelle caselle di digitazione che accettano un valore di lunghezza potete aggiungere l'abbreviazione dell'unità di misura in base al seguente elenco:" +msgstr "Nelle caselle di digitazione che accettano un valore di lunghezza è possibile aggiungere l'abbreviazione dell'unità di misura in base al seguente elenco:" #. 3M8Eu #: 00000003.xhp @@ -1544,7 +1544,7 @@ "par_idN10715\n" "help.text" msgid "For example, in a text document, open Format - Paragraph - Indents & Spacing. To indent the current paragraph by one inch, enter 1 in or 1\" into the \"Before text\" box. To indent the paragraph by 1 cm, enter 1 cm into the input box." -msgstr "Ad esempio, in un documento di testo, aprite Formato - Paragrafo - Rientro e spaziatura. Per impostare un rientro del paragrafo attivo di un pollice, digitate 1 in o 1\" nella casella \"Prima del testo\". Per impostare un rientro del paragrafo di 1 cm, digitate 1 cm nella casella di digitazione." +msgstr "Ad esempio, in un documento di testo, aprire Formato - Paragrafo - Rientro e spaziatura. Per impostare un rientro del paragrafo attivo di un pollice, scrivere 1 in o 1\" nella casella \"Prima del testo\". Per impostare un rientro del paragrafo di 1 cm, scrivere 1 cm nella casella di digitazione." #. XLJmG #: 00000003.xhp @@ -1553,7 +1553,7 @@ "par_idN1074C\n" "help.text" msgid "To input the maximum or minimum allowed value respectively, click the current value and then press the Page Up or Page Down key." -msgstr "Per inserire il valore massimo o minimo consentito, fate clic sul valore attivo e quindi premete il tasto PagSu o PagGiù rispettivamente." +msgstr "Per inserire il valore massimo o minimo consentito, fare clic sul valore attivo e quindi premere il tasto PagSu o PagGiù rispettivamente." #. EDSDr #: 00000004.xhp diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" -"Last-Translator: Elisabetta Manuele \n" +"PO-Revision-Date: 2023-04-28 06:34+0000\n" +"Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565337097.000000\n" #. 3u8hR @@ -50,7 +50,7 @@ "par_id3149182\n" "help.text" msgid "Creates a new $[officename] document. Click the arrow to select the document type." -msgstr "Crea un nuovo documento di $[officename]. Fai clic sulla freccia per selezionare il tipo di documento." +msgstr "Crea un nuovo documento di $[officename]. Fare clic sulla freccia per selezionare il tipo di documento." #. 6k8EG #: 01010000.xhp @@ -563,7 +563,7 @@ "par_id3154682\n" "help.text" msgid "Use a master document to organize complex projects, such as a book. A master document can contain the individual files for each chapter of a book, as well as a table of contents, and an index." -msgstr "L'uso di un documento master vi permette di organizzare progetti complessi, ad esempio un manuale. Un documento master può contenere i file dei diversi capitoli del manuale, un indice generale e un indice analitico." +msgstr "L'uso di un documento master permette di organizzare progetti complessi, ad esempio un manuale. Un documento master può contenere i file dei diversi capitoli del manuale, un indice generale e un indice analitico." #. 4SDS6 #: 01010001.xhp @@ -599,7 +599,7 @@ "par_id3145071\n" "help.text" msgid "Allows you to create labels. Labels are created in a text document. You can print labels using a predefined or a custom paper format." -msgstr "Consente di creare etichette. Le etichette vengono create in un documento di testo. Potete stampare le etichette utilizzando un formato di carta predefinito oppure personalizzato. " +msgstr "Consente di creare etichette. Le etichette vengono create in un documento di testo. È possibile stampare le etichette utilizzando un formato di carta predefinito oppure personalizzato. " #. zHTFz #: 01010200.xhp @@ -608,7 +608,7 @@ "par_id3145314\n" "help.text" msgid "You can also print a single label or an entire sheet of labels." -msgstr "Potete inoltre scegliere di stampare una singola etichetta o un intero foglio di etichette." +msgstr "È possibile inoltre scegliere di stampare una singola etichetta o un intero foglio di etichette." #. GREF4 #: 01010200.xhp @@ -662,7 +662,7 @@ "par_id3152952\n" "help.text" msgid "Specify the label text and choose the paper size for the label." -msgstr "In questa scheda si può specificare il testo dell'etichetta e scegliere il formato del foglio." +msgstr "In questa scheda è possibile specificare il testo dell'etichetta e scegliere il formato del foglio." #. iFEBm #: 01010201.xhp @@ -680,7 +680,7 @@ "par_id3154350\n" "help.text" msgid "Enter or insert the text that you want to appear on the label(s)." -msgstr "Digitate qui una didascalia che deve comparire su tutte le etichette." +msgstr "Digitare qui il testo che deve comparire su tutte le etichette." #. BF73a #: 01010201.xhp @@ -698,7 +698,7 @@ "par_id3150838\n" "help.text" msgid "Enter the text that you want to appear on the label. You can also insert a database field." -msgstr "Digitare il testo da visualizzare sull'etichetta. Il testo può corrispondere anche a un campo di database." +msgstr "Scrivere il testo da visualizzare sull'etichetta. Il testo può corrispondere anche a un campo di database." #. fKrBC #: 01010201.xhp @@ -788,7 +788,7 @@ "par_id3152780\n" "help.text" msgid "The name of the database field is bounded by brackets in the Label text box. If you want, you can separate database fields with spaces. Press Enter to insert a database field on a new line." -msgstr "Il nome del campo del database appare racchiuso tra virgolette nella casella Testo etichetta. Se necessario, potete separare i campi del database con uno spazio. Premete Invio per inserire un campo del database in una nuova riga." +msgstr "Il nome del campo del database appare racchiuso tra virgolette nella casella Testo etichetta. Se necessario, è possibile separare i campi del database con uno spazio. Premere Invio per inserire un campo del database in una nuova riga." #. x3AQU #: 01010201.xhp @@ -806,7 +806,7 @@ "par_id3149762\n" "help.text" msgid "You can select a predefined size format for your label or a size format that you specify on the Format tab." -msgstr "Potete selezionare un formato standard per l'etichetta oppure specificare un formato personalizzato nella scheda Formato." +msgstr "È possibile selezionare un formato standard per l'etichetta oppure specificare un formato personalizzato nella scheda Formato." #. uboZk #: 01010201.xhp @@ -860,7 +860,7 @@ "par_id3150466\n" "help.text" msgid "Select the brand of paper that you want to use. Each brand has its own size formats." -msgstr "Selezionare la marca della carta che volete usare. Ogni marca dispone di propri formati." +msgstr "Selezionare la marca della carta da usare. Ogni marca dispone di propri formati." #. BdKaj #: 01010201.xhp @@ -977,7 +977,7 @@ "par_id3147576\n" "help.text" msgid "Displays the width for the label or the business card. If you are defining a custom format, enter a value here." -msgstr "Mostra la larghezza dell'etichetta o del biglietto da visita. Se si sta definendo un formato personalizzato, specificare un valore." +msgstr "Mostra la larghezza dell'etichetta o del biglietto da visita. Se si sta definendo un formato personalizzato, specificare qui un valore." #. NWAFQ #: 01010202.xhp @@ -995,7 +995,7 @@ "par_id3149827\n" "help.text" msgid "Displays the height for the label or business card. If you are defining a custom format, enter a value here." -msgstr "Mostra l'altezza dell'etichetta o del biglietto da visita. Se si sta definendo un formato personalizzato, specificare un valore." +msgstr "Mostra l'altezza dell'etichetta o del biglietto da visita. Se si sta definendo un formato personalizzato, specificare qui un valore." #. EkLN3 #: 01010202.xhp @@ -1013,7 +1013,7 @@ "par_id3154823\n" "help.text" msgid "Displays the distance from the left edge of the page to the left edge of the first label or business card. If you are defining a custom format, enter a value here." -msgstr "Mostra la distanza tra il bordo sinistro della pagina e il bordo sinistro della prima etichetta o del primo biglietto da visita. Se si sta definendo un formato personalizzato, specificare un valore." +msgstr "Mostra la distanza tra il bordo sinistro della pagina e il bordo sinistro della prima etichetta o del primo biglietto da visita. Se si sta definendo un formato personalizzato, specificare qui un valore." #. Bdde6 #: 01010202.xhp @@ -1031,7 +1031,7 @@ "par_id3150355\n" "help.text" msgid "Displays distance from the top edge of the page to the top of the first label or business card. If you are defining a custom format, enter a value here." -msgstr "Mostra la distanza tra il bordo superiore della pagina e il bordo superiore della prima etichetta o del primo biglietto da visita. Se si sta definendo un formato personalizzato, specificare un valore." +msgstr "Mostra la distanza tra il bordo superiore della pagina e il bordo superiore della prima etichetta o del primo biglietto da visita. Se si sta definendo un formato personalizzato, specificare qui un valore." #. EfAJX #: 01010202.xhp @@ -1265,7 +1265,7 @@ "par_id3148474\n" "help.text" msgid "The Synchronize labels button only appears in your document if you have selected the Synchronize contents on the Options tab when you created the labels or business cards." -msgstr "Il pulsante Sincronizza etichette compare solo se, durante la creazione delle etichette o dei biglietti da visita, avete selezionato la casella Sincronizza contenuti nella scheda Opzioni." +msgstr "Il pulsante Sincronizza etichette compare solo se, durante la creazione delle etichette o dei biglietti da visita, è stata selezionata la casella Sincronizza contenuti nella scheda Opzioni." #. vG5Xq #: 01010203.xhp @@ -1337,7 +1337,7 @@ "par_id3149987\n" "help.text" msgid "Design and create your own business cards. You can choose from a number of pre-defined size formats or create your own." -msgstr "Permette di disegnare e creare biglietti da visita personalizzati. Potete scegliere tra svariati formati predefiniti oppure creare biglietti completamente nuovi." +msgstr "Permette di disegnare e creare biglietti da visita personalizzati. È possibile scegliere tra svariati formati predefiniti oppure creare biglietti completamente nuovi." #. GLbAF #: 01010301.xhp @@ -1382,7 +1382,7 @@ "par_id3147543\n" "help.text" msgid "Select a size format for your business card." -msgstr "Selezionate un formato per il biglietto da visita." +msgstr "Selezionare un formato per il biglietto da visita." #. aCFZR #: 01010301.xhp @@ -1418,7 +1418,7 @@ "par_id3148731\n" "help.text" msgid "Prints business cards on individual sheets." -msgstr "Stampa i biglietti da visita su singoli fogli." +msgstr "Stampa i biglietti da visita su fogli singoli." #. YtKJM #: 01010301.xhp @@ -1517,7 +1517,7 @@ "par_id3147527\n" "help.text" msgid "Select a design layout for your business card." -msgstr "Selezionate un layout per il biglietto da visita." +msgstr "Selezionare un layout per il biglietto da visita." #. bBGEh #: 01010302.xhp @@ -1589,7 +1589,7 @@ "par_id3147399\n" "help.text" msgid "Enter the contact information that you want to include on your business card. You can also modify or update these entries by choosing %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." -msgstr "Inserite le informazioni di contatto che volete includere nel vostro biglietto da visita. Potete modificare o aggiornare i vostri dati scegliendo %PRODUCTNAME - PreferenzeStrumenti - Opzioni - $[officename] - Dati utente." +msgstr "Inserire le informazioni di contatto da includere nel biglietto da visita. È possibile modificare o aggiornare i propri dati scegliendo %PRODUCTNAME - PreferenzeStrumenti - Opzioni - $[officename] - Dati utente." #. XMQk3 #: 01010303.xhp @@ -1634,7 +1634,7 @@ "hd_id3150774\n" "help.text" msgid "Initials 2" -msgstr "Iniziali2" +msgstr "Iniziali 2" #. GBg4N #: 01010303.xhp @@ -1778,7 +1778,7 @@ "par_id3156027\n" "help.text" msgid "Enter the contact information that you want to include on your business card." -msgstr "Inserite le informazioni di contatto che volete includere nel biglietto da visita." +msgstr "Inserire le informazioni di contatto da includere nel biglietto da visita." #. wDGhe #: 01010304.xhp @@ -1787,7 +1787,7 @@ "par_id3155892\n" "help.text" msgid "If you want to include your name on a business card, enter your name on the Private tab. Then choose a layout on the Business Cards tab that includes a name placeholder." -msgstr "Per includere il vostro nome nel biglietto da visita, inseritelo nella scheda Privato. Scegliete quindi un layout nella scheda Biglietti da visita che includa un segnaposto per il nome." +msgstr "Per includere il proprio nome nel biglietto da visita, inserirlo nella scheda Privato. Scegliere quindi un layout nella scheda Biglietti da visita che includa un segnaposto per il nome." #. ES68G #: 01010304.xhp @@ -1796,7 +1796,7 @@ "hd_id3150355\n" "help.text" msgid "Company 2nd line" -msgstr "Ditta 2°riga Riga" +msgstr "Ditta 2ª riga" #. AH4Au #: 01010304.xhp @@ -1985,7 +1985,7 @@ "par_id341547247820173\n" "help.text" msgid "Modern system file dialogs present many features for file handling. Most allows you to rename, delete, create files, sort list of files, display files and folders in icons, tree or list views, traverse the file system folder tree and much more. Use the mouse right button to get a list of commands on the selected files in the display area." -msgstr "Le finestre di dialogo dei sistemi moderni offrono diverse possibilità per la gestione dei file. La maggior parte consente di rinominarli, cancellarli, crearli, ordinarli in elenchi, visualizzare file e cartelle come icone, alberi o elenchi, estendere la struttura ad albero delle cartelle del file system e molto altro ancora. Usate il pulsante destro del mouse per ottenere un elenco dei comandi disponibili per i file selezionati nell'area di visualizzazione." +msgstr "Le finestre di dialogo dei sistemi moderni offrono diverse possibilità per la gestione dei file. La maggior parte consente di rinominarli, cancellarli, crearli, ordinarli in elenchi, visualizzare file e cartelle come icone, alberi o elenchi, estendere la struttura ad albero delle cartelle del file system e molto altro ancora. Usare il pulsante destro del mouse per ottenere un elenco dei comandi disponibili per i file selezionati nell'area di visualizzazione." #. fDrb4 #: 01020000.xhp @@ -2030,7 +2030,7 @@ "par_id3161656\n" "help.text" msgid "Enter a file name or a path for the file." -msgstr "Inserite un nome o un percorso del file." +msgstr "Inserire un nome o un percorso del file." #. 9FPNV #: 01020000.xhp @@ -2057,7 +2057,7 @@ "par_id3149291\n" "help.text" msgid "If there are multiple versions of the selected file, select the version that you want to open. You can save and organize multiple versions of a document by choosing File - Versions. The versions of a document are opened in read-only mode." -msgstr "Se esistono più versioni di un file, selezionare la versione da aprire. Potete salvare e organizzare più versioni di un documento scegliendo File - Versioni. Le versioni di un documento vengono aperte in modo sola lettura." +msgstr "Se esistono più versioni di un file, selezionare la versione da aprire. È possibile salvare e organizzare più versioni di un documento scegliendo File - Versioni. Le versioni di un documento vengono aperte in modo sola lettura." #. 9V9k2 #: 01020000.xhp @@ -2120,7 +2120,7 @@ "hd_id3144762\n" "help.text" msgid "Read-only" -msgstr "Solo lettura" +msgstr "Sola lettura" #. vFGCv #: 01020000.xhp @@ -2165,7 +2165,7 @@ "par_id3150105\n" "help.text" msgid "When you open a document created from a template, %PRODUCTNAME checks to see if the template has been modified since the document was last opened. If the template was changed, a dialog is shown where you can select which styles to apply to the document." -msgstr "Quando aprite un documento creato da un modello %PRODUCTNAME verifica che il modello non sia stato modificato dall'ultima volta che il documento è stato aperto. Se il modello è stato modificato, viene mostrata una finestra di dialogo dove potete scegliere quali stili applicare al documento." +msgstr "Quando si apre un documento creato da un modello %PRODUCTNAME verifica che il modello non sia stato modificato dall'ultima volta che il documento è stato aperto. Se il modello è stato modificato, viene mostrata una finestra di dialogo dove è possibile scegliere quali stili applicare al documento." #. JCkDE #: 01020000.xhp @@ -2174,7 +2174,7 @@ "par_id3153096\n" "help.text" msgid "To apply the new styles from the template to the document, click Update Styles." -msgstr "Per applicare al documento i nuovi stili di formato del modello di documento, fate clic su Aggiorna stili." +msgstr "Per applicare al documento i nuovi stili di formato del modello di documento, fare clic su Aggiorna stili." #. BDWYx #: 01020000.xhp @@ -2183,7 +2183,7 @@ "par_id3147581\n" "help.text" msgid "To retain the styles that are currently used in the document, click Keep Old Styles." -msgstr "Per mantenere gli stili di formato attualmente in uso nel documento, fate clic su Mantieni i vecchi stili." +msgstr "Per mantenere gli stili di formato attualmente in uso nel documento, fare clic su Mantieni i vecchi stili." #. SLice #: 01020000.xhp @@ -2210,7 +2210,7 @@ "par_id3151351\n" "help.text" msgid "To break the link between the document and the missing template, click No, otherwise %PRODUCTNAME will look for the template the next time you open the document." -msgstr "Per interrompere il collegamento tra il documento e il modello di documento mancante, fate clic su No, diversamente %PRODUCTNAME cercherà ancora il modello all'apertura successiva del documento." +msgstr "Per interrompere il collegamento tra il documento e il modello di documento mancante, fare clic su No, diversamente %PRODUCTNAME cercherà ancora il modello all'apertura successiva del documento." #. Sm3CJ #: 01020000.xhp @@ -2219,7 +2219,7 @@ "par_id6930143\n" "help.text" msgid "When you use File - Save As and select a template filter to save a template in a directory that is not specified in the Templates path, then the documents based on that template will not be checked." -msgstr "Quando utilizzate il comando File - Salva con nome e scegliete il filtro dei modelli per salvarne uno in una cartella che non è specificata nel percorso Modelli, allora i documenti basati su quel modello non verranno verificati." +msgstr "Quando si utilizza il comando File - Salva con nome e si sceglie il filtro dei modelli per salvarne uno in una cartella che non è specificata nel percorso Modelli, allora i documenti basati su quel modello non verranno verificati." #. 6fFQH #: 01020000.xhp @@ -2282,7 +2282,7 @@ "par_id611513629210220\n" "help.text" msgid "Choose File - Open Remote." -msgstr "Scegliete File - Apri remoto." +msgstr "Scegliere File - Apri remoto." #. GqJTN #: 01020001.xhp @@ -2291,7 +2291,7 @@ "par_id151513629855154\n" "help.text" msgid "Click the Remote Files button in the Start Center." -msgstr "Fate clic sul pulsante File remoti presente nel Centro di avvio." +msgstr "Fare clic sul pulsante File remoti presente nel Centro di avvio." #. HP9o5 #: 01020001.xhp @@ -2300,7 +2300,7 @@ "par_id431513629862558\n" "help.text" msgid "Long-click the Open icon and select Open Remote File." -msgstr "Fate clic prolungato sull'icona Apri e selezionate Apri file remoto." +msgstr "Fare clic prolungato sull'icona Apri e selezionare Apri file remoto." #. 8aZPe #: 01020001.xhp @@ -2444,7 +2444,7 @@ "par_id3152918\n" "help.text" msgid "If $[officename] does not recognize the file type of the document that your want to open, try any of the following:" -msgstr "Se $[officename] non riconosce il tipo di file del documento da aprire, provate una delle procedure seguenti:" +msgstr "Se $[officename] non riconosce il tipo di file del documento da aprire, provare una delle procedure seguenti:" #. rHGKC #: 01020103.xhp @@ -2453,7 +2453,7 @@ "par_id3152924\n" "help.text" msgid "Select the import filter from the list." -msgstr "Selezionate il filtro d'importazione dall'elenco." +msgstr "Selezionare il filtro d'importazione dall'elenco." #. iBEsr #: 01020103.xhp @@ -2462,7 +2462,7 @@ "par_id3155892\n" "help.text" msgid "Ensure that the file extension corresponds to the file type of the document. For example, a Microsoft Word document must have a *.doc or *.docx extension for $[officename] to use the appropriate filter." -msgstr "Controllate che l'estensione del file corrisponda al tipo di file del documento. Ad esempio, un documento di Microsoft Word deve avere l'estensione *.doc o *.docx affinché $[officename] utilizzi il filtro appropriato." +msgstr "Controllare che l'estensione del file corrisponda al tipo di file del documento. Ad esempio, un documento di Microsoft Word deve avere l'estensione *.doc o *.docx affinché $[officename] utilizzi il filtro appropriato." #. e5NCe #: 01020103.xhp @@ -2471,7 +2471,7 @@ "par_id3147571\n" "help.text" msgid "Install a missing import filter with the $[officename] Setup program." -msgstr "Per installare successivamente un filtro d'importazione mancante utilizzate il programma $[officename] Setup." +msgstr "Per installare successivamente un filtro d'importazione mancante utilizzare il programma $[officename] Setup." #. 8SSHu #: 01050000.xhp @@ -2516,7 +2516,7 @@ "par_id3149095\n" "help.text" msgid "The Close command closes all open windows of the current document." -msgstr "Il comando Chiudi chiude tutte le finestre aperte del il documento attivo." +msgstr "Il comando Chiudi chiude tutte le finestre aperte del documento attivo." #. jSMdE #: 01050000.xhp @@ -2588,7 +2588,7 @@ "par_id3152551\n" "help.text" msgid "When you edit an AutoText entry, this command changes to Save AutoText." -msgstr "Se state modificando un testo automatico, il nome del comando è Salva modulo di testo." +msgstr "Se si sta modificando un testo automatico, il nome del comando è Salva modulo di testo." #. 7diuV #: 01060001.xhp @@ -2633,7 +2633,7 @@ "par_id611513629210220\n" "help.text" msgid "Choose File - Save Remote... ." -msgstr "Scegliete File - Salva remoto... ." +msgstr "Scegliere File - Salva remoto... ." #. 2FysC #: 01060001.xhp @@ -2642,7 +2642,7 @@ "par_id431513629862558\n" "help.text" msgid "Long-click on the Save icon and select Save Remote File... ." -msgstr "Fate clic prolungato sull'icona Salva e selezionate Salva file remoto...." +msgstr "Fare clic prolungato sull'icona Salva e selezionare Salva file remoto...." #. jpc76 #: 01060001.xhp @@ -2705,7 +2705,7 @@ "par_id701513472080716\n" "help.text" msgid "Choose File - Save a Copy." -msgstr "Scegliete File - Salva una copia." +msgstr "Scegliere File - Salva una copia." #. Eq5QD #: 01060002.xhp @@ -2759,7 +2759,7 @@ "bm_id3151260\n" "help.text" msgid "saving as command; precautions" -msgstr "Salvataggio;come comandi" +msgstr "Salvare come comando; precauzioni" #. vT8vh #: 01070000.xhp @@ -2795,7 +2795,7 @@ "par_id3147654\n" "help.text" msgid "To save a document as a template, use the command File - Templates - Save As Template." -msgstr "Per salvare un documento come modello, usate il comando File - Modelli - Salva come modello." +msgstr "Per salvare un documento come modello, usare il comando File - Modelli - Salva come modello." #. Y565Y #: 01070000.xhp @@ -2840,7 +2840,7 @@ "par_id3145116\n" "help.text" msgid "Always save your document in a %PRODUCTNAME file type before saving it to an external file type. When you export to an external file type, some formatting features may be lost." -msgstr "Permette di salvare sempre il documento in un tipo di file di %PRODUCTNAME prima di salvarlo in un tipo di file esterno. Quando esportate un documento in un tipo di file esterno, alcune impostazioni di formattazione potrebbero andare perdute." +msgstr "Permette di salvare sempre il documento in un tipo di file di %PRODUCTNAME prima di salvarlo in un tipo di file esterno. Quando si esporta un documento in un tipo di file esterno, alcune impostazioni di formattazione potrebbero andare perdute." #. GErwB #: 01070000.xhp @@ -2903,7 +2903,7 @@ "par_id71543592343227\n" "help.text" msgid "Use OpenPGP public keys to encrypt documents." -msgstr "Utilizzate le chiavi pubbliche OpenPGP per cifrare documenti." +msgstr "Utilizzare le chiavi pubbliche OpenPGP per cifrare documenti." #. SqPSp #: 01070000.xhp @@ -2948,7 +2948,7 @@ "par_id3148577\n" "help.text" msgid "If you are exporting to any document file type, the entire document is exported." -msgstr "Se state eseguendo l'esportazione in un altro tipo di file, viene esportato l'intero documento." +msgstr "Se si sta eseguendo l'esportazione in un altro tipo di file, viene esportato l'intero documento." #. eF5Kc #: 01070000.xhp @@ -3011,7 +3011,7 @@ "par_id471561565422027\n" "help.text" msgid "The Export command opens the system file picker, where you can enter the name and format of the exported file." -msgstr "Il comando Esporta apre la scelta del file del sistema in cui potete scrivere il nome e il formato del file esportato." +msgstr "Il comando Esporta apre la scelta del file del sistema in cui è possibile scrivere il nome e il formato del file esportato." #. BM7XX #: 01070001.xhp @@ -3092,7 +3092,7 @@ "par_id971513634212601\n" "help.text" msgid "Choose File - Export As." -msgstr "Scegliete File - Esporta come." +msgstr "Scegliere File - Esporta come." #. 5EMoa #: 01070002.xhp @@ -3110,7 +3110,7 @@ "par_id961513635511473\n" "help.text" msgid "Export the entire document using your default PDF settings." -msgstr "Esporta l'intero documento utilizzando le vostre impostazioni PDF predefinite." +msgstr "Esporta l'intero documento utilizzando le impostazioni PDF predefinite." #. oxL5i #: 01070002.xhp @@ -3128,7 +3128,7 @@ "par_id811513635541682\n" "help.text" msgid "Export the entire document using your default EPUB settings." -msgstr "Esporta l'intero documento utilizzando le vostre impostazioni EPUB predefinite." +msgstr "Esporta l'intero documento utilizzando le impostazioni EPUB predefinite." #. jFEDD #: 01100000.xhp @@ -3173,7 +3173,7 @@ "par_id3148643\n" "help.text" msgid "Depending on your access rights to the file, you might not see all of the tabs in the Properties dialog." -msgstr "In base alle vostre autorizzazioni di accesso al file, potreste non vedere tutte le schede nella finestra di dialogo Proprietà." +msgstr "In base alle autorizzazioni personalizzate di accesso al file, si potrebbero non vedere tutte le schede nella finestra di dialogo Proprietà." #. tAhw5 #: 01100100.xhp @@ -3479,7 +3479,7 @@ "par_idN106D0\n" "help.text" msgid "Opens the Digital Signatures dialog where you can manage digital signatures for the current document." -msgstr "Apre la finestra di dialogo Firme digitali in cui potete gestire le firme digitali per il documento attivo." +msgstr "Apre la finestra di dialogo Firme digitali in cui è possibile gestire le firme digitali per il documento attivo." #. snQSF #: 01100200.xhp @@ -3542,7 +3542,7 @@ "par_id3149955\n" "help.text" msgid "Displays the number of times that the file has been saved." -msgstr "Indica il numero di volte in cui il file è stato salvato." +msgstr "Indica quante volte il file è stato salvato." #. oRbGJ #: 01100200.xhp @@ -3605,7 +3605,7 @@ "par_id231606265075565\n" "help.text" msgid "To disable generating thumbnails in general, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced. Click the Open Expert Configuration button, and search for GenerateThumbnail. If this property has the value true, then double-click on it to set its value to false." -msgstr "Per disabilitare la generazione delle miniature in generale, scegliete %PRODUCTNAME - PreferenzeStrumenti - Opzioni - %PRODUCTNAME - Avanzate. Fate clic sul pulsante Apri la configurazione avanzata, e cercate la proprietà GenerateThumbnail. Se quest'ultima presenta il valore true, allora fateci sopra doppio clic per impostarlo a false." +msgstr "Per disabilitare la generazione delle miniature in generale, scegliere %PRODUCTNAME - PreferenzeStrumenti - Opzioni - %PRODUCTNAME - Avanzate. Fare clic sul pulsante Apri la configurazione avanzata e cercare la proprietà GenerateThumbnail. Se quest'ultima presenta il valore true, allora farci sopra doppio clic per impostarlo a false." #. ibdbD #: 01100300.xhp @@ -3947,7 +3947,7 @@ "bm_id1472519\n" "help.text" msgid "password as document propertyfile sharing options for current documentread-only documents;opening documents assaving;with password by defaultuser data;removing when saving" -msgstr "password come proprietà documentoopzioni di condivisione del file per il documento attivosola lettura; aprire i documenti insalvare; in maniera predefinita con passworddati utente; rimuoverli al salvataggio" +msgstr "Password come proprietà documentoFile, opzioni di condivisione del; per il documento attivoSola lettura; aprire i documenti inSalvare; in maniera predefinita con passwordDati utente; rimuoverli al salvataggio" #. r6EHt #: 01100600.xhp @@ -4019,7 +4019,7 @@ "par_idN106C9\n" "help.text" msgid "To protect the recording state with a password, click Protect and enter a password. Other users of this document can apply their changes, but they cannot disable change recording without knowing the password." -msgstr "Per proteggere lo stato di registrazione con una password, fate clic su Proteggi e inserite una password. Altri utenti potranno modificare il documento ma non potranno disabilitare la registrazione delle modifiche senza conoscere la password." +msgstr "Per proteggere lo stato di registrazione con una password, fare clic su Proteggi e inserire una password. Altri utenti potranno modificare il documento ma non potranno disabilitare la registrazione delle modifiche senza conoscere la password." #. VyjYb #: 01100600.xhp @@ -4046,7 +4046,7 @@ "tit\n" "help.text" msgid "Templates" -msgstr "Modello" +msgstr "Modelli" #. rFPCc #: 01110000.xhp @@ -4073,7 +4073,7 @@ "par_01110001\n" "help.text" msgid "Select File - Templates." -msgstr "Selezionate File - Modelli." +msgstr "Selezionare File - Modelli." #. xfFYL #: 01110101.xhp @@ -4100,7 +4100,7 @@ "par_id3147576\n" "help.text" msgid "Edit the field assignments and the data source for your address book." -msgstr "Qui si possono modificare le assegnazioni dei campi e le sorgenti di dati per la rubrica." +msgstr "Qui è possibile modificare le assegnazioni dei campi e le sorgenti di dati per la rubrica." #. cWuUs #: 01110101.xhp @@ -4109,7 +4109,7 @@ "par_id3155377\n" "help.text" msgid "Choose Tools - Address Book Source." -msgstr "Scegliete Strumenti - Sorgente Rubrica." +msgstr "Scegliere Strumenti - Sorgente Rubrica." #. 46kw3 #: 01110101.xhp @@ -4127,7 +4127,7 @@ "par_id3152996\n" "help.text" msgid "Set the data source and data table for your address book." -msgstr "Impostate la sorgente dati e la tabella dati per la vostra rubrica." +msgstr "Impostare la sorgente dati e la tabella dati per la propria rubrica." #. jb4KN #: 01110101.xhp @@ -4199,7 +4199,7 @@ "par_id3153320\n" "help.text" msgid "Define the field assignments for your address book." -msgstr "In questa sezione determinate l'assegnazione campo per la rubrica." +msgstr "In questa sezione si determina l'assegnazione campo per la rubrica." #. 2ATMs #: 01110101.xhp @@ -4253,7 +4253,7 @@ "par_id01110301\n" "help.text" msgid "Choose File - Templates - Save as Template." -msgstr "Scegliete File - Modelli - Salva come modello." +msgstr "Scegliere File - Modelli - Salva come modello." #. KDRRj #: 01110300.xhp @@ -4316,7 +4316,7 @@ "par_id861608396537022\n" "help.text" msgid "Templates added with this command appear automatically in the Template Manager. You can also use the Template Manager to import templates. Both methods are recommended for adding templates." -msgstr "I modelli aggiunti con questo comando compaiono automaticamente nel gestore dei modelli. Potete utilizzare il Gestore dei modelli anche per importare modelli. Entrambi i metodi sono consigliati per aggiungerli." +msgstr "I modelli aggiunti con questo comando compaiono automaticamente nel gestore dei modelli. È possibile utilizzare il Gestore dei modelli anche per importare modelli. Per aggiungerli sono consigliati entrambi i metodi." #. 7BaN7 #: 01110400.xhp @@ -4343,7 +4343,7 @@ "par_id3144415\n" "help.text" msgid "Opens a dialog where you can select a template for editing." -msgstr "Apre una finestra di dialogo in cui si può selezionare un modello di documento per la modifica." +msgstr "Apre una finestra di dialogo in cui è possibile selezionare un modello di documento per la modifica." #. ozGAg #: 01110400.xhp @@ -4352,7 +4352,7 @@ "par_id01110401\n" "help.text" msgid "Choose File - Templates - Edit Template." -msgstr "Scegliete File - Modelli - Modifica modello." +msgstr "Scegliere File - Modelli - Modifica modello." #. VkA8N #: 01130000.xhp @@ -4406,7 +4406,7 @@ "par_id0818200901193992\n" "help.text" msgid "If you just want to know how to print your document, click any of the following links." -msgstr "Per sapere come fare per stampare il vostro documento, fate clic su uno dei seguenti collegamenti." +msgstr "Per sapere come fare per stampare il proprio documento, fare clic su uno dei seguenti collegamenti." #. mQg9e #: 01130000.xhp @@ -4451,7 +4451,7 @@ "par_id0818200912284952\n" "help.text" msgid "The settings that you define in the Print dialog are valid only for the current print job that you start by clicking the Print button. If you want to change some options permanently, open %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME (application name) - Print." -msgstr "Le impostazioni definite nella finestra di dialogo Stampa sono valide solo per il lavoro di stampa corrente, iniziato facendo clic sul pulsante Stampa. Per cambiare le opzioni in modo permanente, aprite %PRODUCTNAME - PreferenzeStrumenti - Opzioni - %PRODUCTNAME (nome dell'applicazione) - Stampa." +msgstr "Le impostazioni definite nella finestra di dialogo Stampa sono valide solo per il lavoro di stampa corrente, iniziato facendo clic sul pulsante Stampa. Per cambiare le opzioni in modo permanente, aprire %PRODUCTNAME - PreferenzeStrumenti - Opzioni - %PRODUCTNAME (nome dell'applicazione) - Stampa." #. ZFcax #: 01130000.xhp @@ -4487,7 +4487,7 @@ "par_id0818200901194137\n" "help.text" msgid "Press Shift+F1 or choose Help - What's This? and point to any control element in the Print dialog to see an extended help text." -msgstr "Per visualizzare una guida ampliata, premete Maiusc+F1 o scegliete Aiuto - Cos'è questo? e puntate su un elemento di controllo nella finestra di dialogo Stampa." +msgstr "Per visualizzare una guida ampliata, premere Maiusc+F1 o scegliere Aiuto - Cos'è questo? e puntare su un elemento di controllo nella finestra di dialogo Stampa." #. 5V5He #: 01130000.xhp @@ -4595,7 +4595,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 "Nella scheda Generale, trovate gli elementi di controllo più importanti per la stampa. Potete stabilire quali contenuti del vostro documento stampare. Potete selezionare la stampante e aprire la finestra di dialogo delle impostazioni per la stampante." +msgstr "Nella scheda Generale si trovano elementi di controllo più importanti per la stampa. È possibile stabilire quali contenuti del vostro documento stampare. È possibile selezionare la stampante e aprire la finestra di dialogo delle impostazioni per la stampante." #. 5cGHt #: 01130000.xhp @@ -4739,7 +4739,7 @@ "par_id271619217217310\n" "help.text" msgid "Select the subset of pages to print. Possible values are:" -msgstr "Selezionate il sottoinsieme di pagine da stampare. I valori possibili sono:" +msgstr "Selezionare il sottoinsieme di pagine da stampare. I valori possibili sono:" #. JKSDi #: 01130000.xhp @@ -4919,7 +4919,7 @@ "par_id0818200912285150\n" "help.text" msgid "The Page Layout section can be used to save some sheets of paper by printing several pages onto each sheet of paper. You define the arrangement and size of output pages on the physical paper." -msgstr "Nella sezione Layout di pagina, potete scegliere di risparmiare fogli di carta stampando più pagine per foglio. Potete definire la disposizione e le dimensioni delle pagine sul foglio." +msgstr "Nella sezione Layout di pagina, è possibile scegliere di risparmiare fogli di carta stampando più pagine per foglio. È possibile definire la disposizione e le dimensioni delle pagine sul foglio." #. eYRqB #: 01130000.xhp @@ -4937,7 +4937,7 @@ "par_id0818200904102987\n" "help.text" msgid "For some document types, you can choose to print a brochure." -msgstr "Per alcuni tipi di documento, potete stampare un dépliant." +msgstr "Per alcuni tipi di documento, è possibile stampare un dépliant." #. nC9sR #: 01130000.xhp @@ -5828,7 +5828,7 @@ "par_id32\n" "help.text" msgid "Enter the scale factor for scaling the formula." -msgstr "Digitare il fattore di scale per il ridimensionamento della formula." +msgstr "Digitare il fattore di scala per il ridimensionamento della formula." #. vXCZ9 #: 01130000.xhp @@ -5918,7 +5918,7 @@ "par_id3148538\n" "help.text" msgid "If the list is empty, you need to install a default printer for your operating system. Refer to the online help for your operating system for instructions on how to install and setup a default printer." -msgstr "Se l'elenco è vuoto, dovete installare una stampante predefinita per il vostro sistema operativo. Per istruzioni su come installare e configurare una stampante predefinita, consultate la guida in linea del vostro sistema operativo." +msgstr "Se l'elenco è vuoto, è necessario installare una stampante predefinita per il proprio sistema operativo. Per istruzioni su come installare e configurare una stampante predefinita, consultare la guida in linea del sistema operativo." #. fFMqD #: 01140000.xhp @@ -6026,7 +6026,7 @@ "par_id3149045\n" "help.text" msgid "Changes the printer settings of your operating system for the current document." -msgstr "Qui si possono cambiare le impostazioni della stampante del sistema operativo per il documento attivo." +msgstr "Qui è possibile cambiare le impostazioni della stampante del sistema operativo per il documento attivo." #. BFmGE #: 01140000.xhp @@ -6035,7 +6035,7 @@ "par_id3157322\n" "help.text" msgid "Ensure that the Landscape or Portrait layout option set in the Printer Properties dialog matches the page format that you set by choosing Slide - PropertiesPage - PropertiesFormat - Page." -msgstr "Verificate che le opzioni di layout Orizzontale e Verticale impostate nelle proprietà della stampante corrispondano al formato di pagina selezionato con Diapositiva - ProprietàPagina - ProprietàFormato - Pagina." +msgstr "Verificare che le opzioni di layout Orizzontale e Verticale impostate nelle proprietà della stampante corrispondano al formato di pagina selezionato con Diapositiva - ProprietàPagina - ProprietàFormato - Pagina." #. SWzCk #: 01140000.xhp @@ -6116,7 +6116,7 @@ "par_id6845301\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft file format is used." -msgstr "Apre un nuovo messaggio nel tuo programma di posta elettronica e allega ad esso il documento corrente. Il file sarà inviato in formato Microsoft Office." +msgstr "Apre un nuovo messaggio nel programma di posta elettronica e vi allega il documento corrente. Il file sarà inviato in formato Microsoft Office." #. E7FtX #: 01160000.xhp @@ -6134,7 +6134,7 @@ "par_id5917844\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used." -msgstr "Apre un nuovo messaggio nel programma di posta elettronica e allega ad esso il documento corrente. Il file sarà inviato in formato OpenDocument." +msgstr "Apre un nuovo messaggio nel programma di posta elettronica e vi allega il documento corrente. Il file sarà inviato in formato OpenDocument." #. yrGWK #: 01160000.xhp @@ -6170,7 +6170,7 @@ "par_id7829218\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used." -msgstr "Apre un nuovo messaggio nel programma di posta elettronica e allega ad esso il documento corrente. Il file sarà inviato in formato OpenDocument." +msgstr "Apre un nuovo messaggio nel programma di posta elettronica e vi allega il documento corrente. Il file sarà inviato in formato OpenDocument." #. q3LCG #: 01160000.xhp @@ -6206,7 +6206,7 @@ "par_id9085055\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used." -msgstr "Apre un nuovo messaggio nel programma di posta elettronica e allega ad esso il documento corrente. Il file sarà inviato in formato OpenDocument." +msgstr "Apre un nuovo messaggio nel programma di posta elettronica e vi allega il documento corrente. Il file sarà inviato in formato OpenDocument." #. TH4Pg #: 01160000.xhp @@ -6278,7 +6278,7 @@ "par_id3152823\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The current file format is used. If the document is new and unsaved, the format specified in %PRODUCTNAME - PreferencesTools - Options - Load/Save - General is used." -msgstr "Apre un nuovo messaggio nel programma di posta elettronica e allega ad esso il documento attivo. Viene utilizzato il formato del file corrente. Se il documento è nuovo e non è stato salvato, viene usato il formato specificato in %PRODUCTNAME - PreferenzeStrumenti - Opzioni - Carica/Salva - Generale." +msgstr "Apre un nuovo messaggio nel programma di posta elettronica e vi allega il documento attivo. Viene utilizzato il formato del file corrente. Se il documento è nuovo e non è stato salvato, viene usato il formato specificato in %PRODUCTNAME - PreferenzeStrumenti - Opzioni - Carica/Salva - Generale." #. EAoDd #: 01160200.xhp @@ -6494,7 +6494,7 @@ "par_id3153527\n" "help.text" msgid "If you save a copy of a file that contains version information (by choosing File - Save As), the version information is not saved with the file." -msgstr "Se salvate una copia di un file che contiene informazioni sulla versione (scegliendo File - Salva con nome), tali informazioni non vengono salvate con il file." +msgstr "Se si salva una copia di un file che contiene informazioni sulla versione (scegliendo File - Salva con nome), tali informazioni non vengono salvate con il file." #. ha47E #: 01190000.xhp @@ -6512,7 +6512,7 @@ "par_id3163802\n" "help.text" msgid "Set the options for saving a new version of the document." -msgstr "Potete impostare le opzioni per salvare una nuova versione del documento." +msgstr "È possibile impostare le opzioni per salvare una nuova versione del documento." #. YsBiF #: 01190000.xhp @@ -6530,7 +6530,7 @@ "par_id3149149\n" "help.text" msgid "Saves the current state of the document as a new version. If you want, you can also enter comments in the Insert Version Comment dialog before you save the new version." -msgstr "Salva lo stato attuale del documento come nuova versione. Volendo, prima di salvare la nuova versione, si possono anche inserire dei commenti nella finestra di dialogo Inserisci commento versioni." +msgstr "Salva lo stato attuale del documento come nuova versione. Volendo, prima di salvare la nuova versione, è possibile anche inserire dei commenti nella finestra di dialogo Inserisci commento versioni." #. vDJQ5 #: 01190000.xhp @@ -6728,7 +6728,7 @@ "bm_id3155069\n" "help.text" msgid "undoing;editingediting;undoing" -msgstr "Annullamento;modificareModifica;annullare" +msgstr "Annullare;modificaModifica;annullare" #. zSpQo #: 02010000.xhp @@ -6773,7 +6773,7 @@ "par_id3155338\n" "help.text" msgid "You can cancel the Undo command by choosing Edit - Redo." -msgstr "Per annullare il comando Annulla potete scegliere Modifica - Ripristina." +msgstr "Per annullare il comando Annulla è possibile scegliere Modifica - Ripristina." #. seDVc #: 02010000.xhp @@ -6791,7 +6791,7 @@ "par_id3148492\n" "help.text" msgid "When you are working with database tables, you can only undo the last command." -msgstr "Nelle tabelle di database potete annullare solo l'ultimo comando." +msgstr "Nelle tabelle di database è possibile annullare solo l'ultimo comando." #. ndFFE #: 02010000.xhp @@ -6800,7 +6800,7 @@ "par_id3155504\n" "help.text" msgid "If you change the content of a record in a database table that has not been saved, and then use the Undo command, the record is erased." -msgstr "Se modificate il contenuto di campo di un record di dati non ancora salvato, richiamando il comando Annulla viene cancellato il record di dati." +msgstr "Se si modifica il contenuto di un record di dati non ancora salvato in una tabella di database, richiamando il comando Annulla viene cancellato il record di dati." #. 6zRBH #: 02010000.xhp @@ -6809,7 +6809,7 @@ "hd_id3149415\n" "help.text" msgid "About the Undo command in presentations" -msgstr "Nota sulle presentazioni" +msgstr "Nota sul comando Annulla nelle presentazioni" #. J4BPS #: 02010000.xhp @@ -6836,7 +6836,7 @@ "bm_id3149991\n" "help.text" msgid "restoring;editingredo command" -msgstr "Ripristino;modificareRipetizione;comandi" +msgstr "Ripristinare;modificaRipetere il comando" #. KNLLP #: 02020000.xhp @@ -6872,7 +6872,7 @@ "bm_id3150279\n" "help.text" msgid "repeating; commandscommands; repeating" -msgstr "Comando;ripristinareComando;ripetere" +msgstr "Ripetere;comandiComando;ripetere" #. VonvU #: 02030000.xhp @@ -6908,7 +6908,7 @@ "bm_id3146936\n" "help.text" msgid "cuttingclipboard; cutting" -msgstr "Testo;tagliareAppunti;tagliare" +msgstr "TagliareAppunti;tagliare" #. 65iCf #: 02040000.xhp @@ -6944,7 +6944,7 @@ "bm_id3154824\n" "help.text" msgid "clipboard; Unixcopying; in Unix" -msgstr "Appunti;UnixCopia;in Unix" +msgstr "Appunti;UnixCopiare;in Unix" #. xqSeL #: 02050000.xhp @@ -6980,7 +6980,7 @@ "par_id3154824\n" "help.text" msgid "$[officename] also supports the clipboard under Unix; however, you must use the $[officename] commands, such as Ctrl+C." -msgstr "$[officename] supporta gli Appunti anche nei sistemi operativi Unix; in questo caso, tuttavia, dovete usare i comandi di $[officename], ad esempio Ctrl+C." +msgstr "$[officename] supporta gli Appunti anche nei sistemi operativi Unix; in questo caso, tuttavia, è necessario usare i comandi di $[officename], ad esempio Ctrl+C." #. 6cWvs #: 02060000.xhp @@ -7025,7 +7025,7 @@ "par_id551521061448109\n" "help.text" msgid "Press the Enter key." -msgstr "Premete il tasto Invio." +msgstr "Premere il tasto Invio." #. VXjYp #: 02060000.xhp @@ -7034,7 +7034,7 @@ "par_id3147834\n" "help.text" msgid "In a spreadsheet, when you paste a range of cells from the clipboard, the result depends on the current selection: If only one cell is selected, the cell range will be pasted started from that cell. If you mark a cell range wider than the cell range in the clipboard, the cell range will be pasted repeatedly to fill the selected cell range." -msgstr "In un foglio elettronico, quando incollate un'area di celle dagli Appunti, il risultato dipende dal tipo di selezione: se è selezionata una sola cella, l'area di celle viene incollata a partire da quella cella; se è selezionata un'area di celle più estesa di quella negli Appunti, quest'ultima viene incollata ripetutamente fino a occupare l'area selezionata." +msgstr "In un foglio elettronico, quando s'incolla un'area di celle dagli appunti, il risultato dipende dal tipo di selezione fatta: se è selezionata una sola cella, l'area di celle viene incollata a partire da quella cella; se è selezionata un'area di celle più estesa di quella negli appunti, quest'ultima viene incollata ripetutamente fino a occupare l'area selezionata." #. DfGUG #: 02060000.xhp @@ -7052,7 +7052,7 @@ "par_id271521057645962\n" "help.text" msgid "When copying a cell or a range in %PRODUCTNAME Calc the selection is marked with blinking dashes around the range (the \"marching ants\") to indicate what was being selected during the clipboard operation." -msgstr "Quando in %PRODUCTNAME Calc copiate una cella o un'area, la selezione è contrassegnata con dei trattini animati (effetto \"marching ants\", ossia formiche che marciano) per indicare cosa è stato selezionato durante l'operazione degli appunti." +msgstr "Quando in %PRODUCTNAME Calc si copia una cella o un'area, la selezione è contrassegnata con dei trattini animati (effetto \"marching ants\", ossia formiche che marciano) per indicare cosa è stato selezionato durante l'operazione degli appunti." #. xGXym #: 02060000.xhp @@ -7097,7 +7097,7 @@ "par_id531521057600924\n" "help.text" msgid "To deactivate the copied selection mark press the Esc key. The clipboard contents is not cleared." -msgstr "Per disattivare il contrassegno di selezione copiata premete il tasto Esc. Il contenuto degli appunti non viene ripulito." +msgstr "Per disattivare il contrassegno di selezione copiata premere il tasto Esc. Il contenuto degli appunti non viene ripulito." #. nDnfv #: 02070000.xhp @@ -7124,7 +7124,7 @@ "par_id3147143\n" "help.text" msgid "Inserts the contents of the clipboard into the current file in a format that you can specify." -msgstr "Inserisce il contenuto degli Appunti nel file aperto permettendo di specificarne il formato." +msgstr "Inserisce il contenuto degli appunti nel file aperto permettendo di specificarne il formato." #. uZccp #: 02070000.xhp @@ -7169,7 +7169,7 @@ "par_id3147653\n" "help.text" msgid "When you paste HTML data into a text document, you can choose \"HTML format\" or \"HTML format without comments\". The second choice is the default; it pastes all HTML data, but no comments." -msgstr "Quando incollate una selezione di dati HTML in un documento di testo, potete scegliere Formato HTML o Formato HTML senza commenti. La seconda opzione è l'impostazione predefinita e incolla i dati HTML escludendo i commenti." +msgstr "Quando s'incolla una selezione di dati HTML in un documento di testo, è possibile scegliere Formato HTML o Formato HTML senza commenti. La seconda opzione è l'impostazione predefinita e incolla i dati HTML escludendo i commenti." #. AiR33 #: 02070000.xhp @@ -7187,7 +7187,7 @@ "par_id3150976\n" "help.text" msgid "This dialog appears in Calc if the clipboard contains spreadsheet cells." -msgstr "Questa finestra di dialogo compare se gli Appunti di Calc contengono celle di un foglio elettronico." +msgstr "Questa finestra di dialogo compare se gli appunti di Calc contengono celle di un foglio elettronico." #. HA2yt #: 02070000.xhp @@ -7205,7 +7205,7 @@ "par_id951630440692605\n" "help.text" msgid "Choose one of the presets to quickly load commonly used settings for Paste Special." -msgstr "Per caricare rapidamente le impostazioni utilizzate più di frequente per Incolla speciale scegliere una delle preimpostazioni disponibili." +msgstr "Per caricare rapidamente le impostazioni utilizzate più di frequente per il comando Incolla speciale, scegliere una delle preimpostazioni disponibili." #. DBS7B #: 02070000.xhp @@ -7295,7 +7295,7 @@ "par_id331630441454811\n" "help.text" msgid "Check this option to load the preset and immediately apply it. When unchecked, choosing a preset will only load the corresponding options in the dialog without pasting anything." -msgstr "Attivate questa opzione per caricare la preimpostazione e applicarla immediatamente. Se l'opzione non è attivata, la scelta di una preimpostazione caricherà solo le opzioni corrispondenti nella finestra di dialogo, senza incollare nulla." +msgstr "Attivare questa opzione per caricare la preimpostazione e applicarla immediatamente. Se l'opzione non è attivata, la scelta di una preimpostazione caricherà solo le opzioni corrispondenti nella finestra di dialogo, senza incollare nulla." #. 3etKJ #: 02070000.xhp @@ -7304,7 +7304,7 @@ "par_id811630441564039\n" "help.text" msgid "Uncheck Run immediately to load the options from the preset and change its settings in the Paste Special dialog before applying them by clicking OK." -msgstr "Disattivate l'opzione Esegui immediatamente per caricare le opzioni dalla preimpostazione e cambiare le sue impostazioni nella finestra di dialogo Incolla speciale, prima di applicarle premendo OK." +msgstr "Disattivare l'opzione Esegui immediatamente per caricare le opzioni dalla preimpostazione e cambiare le sue impostazioni nella finestra di dialogo Incolla speciale, prima di applicarle premendo OK." #. LTyRC #: 02070000.xhp @@ -7322,7 +7322,7 @@ "par_id3152909\n" "help.text" msgid "Select a format for the clipboard contents that you want to paste." -msgstr "Selezionate il formato per il contenuto degli appunti da incollare." +msgstr "Selezionare il formato per il contenuto degli appunti da incollare." #. rPXGJ #: 02070000.xhp @@ -7484,7 +7484,7 @@ "par_id3151351\n" "help.text" msgid "Select the operation to apply when you paste cells into your sheet." -msgstr "Qui potete selezionare l'operazione da eseguire quando incollate una o più celle nel foglio elettronico." +msgstr "Qui è possibile selezionare l'operazione da eseguire quando s'incolla una o più celle nel foglio elettronico." #. Ea8L3 #: 02070000.xhp @@ -7610,7 +7610,7 @@ "par_id3148775\n" "help.text" msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the \"Multiply\" or the \"Divide\" operation, the operation is not applied to the target cell of an empty cell in the clipboard." -msgstr "Le celle vuote degli Appunti non sostituiscono le celle di destinazione. Usando questa opzione assieme all'operazione \"Moltiplica\" o \"Dividi\", l'operazione non viene eseguita sulle celle corrispondenti a celle vuote negli appunti." +msgstr "Le celle vuote degli appunti non sostituiscono le celle di destinazione. Usando questa opzione assieme all'operazione \"Moltiplica\" o \"Dividi\", l'operazione non viene eseguita sulle celle corrispondenti a celle vuote negli appunti." #. 2Duk9 #: 02070000.xhp @@ -7619,7 +7619,7 @@ "par_id3155084\n" "help.text" msgid "If you select a mathematical operation and clear the Skip empty cells box, empty cells in the clipboard are treated as zeroes. For example, if you apply the Multiply operation, the target cells are filled with zeroes." -msgstr "Se selezionate un'operazione matematica e deselezionate la casella Salta righe vuote, le celle vuote negli appunti vengono considerate di valore zero. Se ad esempio applicate l'operazione Moltiplica, nelle celle di destinazione viene inserito il valore zero." +msgstr "Se si seleziona un'operazione matematica e deselezionate la casella Salta righe vuote, le celle vuote negli appunti vengono considerate di valore zero. Se ad esempio si applica l'operazione Moltiplica, nelle celle di destinazione viene inserito il valore zero." #. TYpT5 #: 02070000.xhp @@ -7772,7 +7772,7 @@ "par_id3155261\n" "help.text" msgid "To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet." -msgstr "Per selezionare tutte le celle di un foglio, fate clic sul pulsante che si trova all'intersezione delle intestazioni delle righe e delle colonne nell'angolo superiore sinistro del foglio." +msgstr "Per selezionare tutte le celle di un foglio, fare clic sul pulsante che si trova all'intersezione delle intestazioni delle righe e delle colonne nell'angolo superiore sinistro del foglio." #. b9EJG #: 02090000.xhp @@ -7781,7 +7781,7 @@ "par_id3154046\n" "help.text" msgid "To select all of the sheets in a spreadsheet file, right-click the name tab of a sheet, and then choose Select All Sheets. Selects all of the sheets in the current spreadsheet." -msgstr "Per selezionare tutti i fogli di un foglio elettronico, fate clic col pulsante destro del mouse sul nome del foglio e scegliete Seleziona tutti i fogli. Seleziona tutti i fogli del foglio elettronico attivo." +msgstr "Per selezionare tutti i fogli di un foglio elettronico, fare clic col pulsante destro del mouse sul nome del foglio e scegliere Seleziona tutti i fogli. Seleziona tutti i fogli del foglio elettronico attivo." #. C8Qow #: 02100000.xhp @@ -7817,7 +7817,7 @@ "par_id3149893\n" "help.text" msgid " Finds or replaces text or formats in the current document. " -msgstr " Permette di trovare o sostituire un testo o un formato nel documento. " +msgstr "Permette di trovare o sostituire un testo o un formato nel documento." #. 2c3d6 #: 02100000.xhp @@ -7826,7 +7826,7 @@ "par_id00001\n" "help.text" msgid "Type the text to search in the current document. Press Enter to search the text." -msgstr "Digita il testo da cercare nel documento attivo. Premi Invio per iniziare la ricerca." +msgstr "Digitare il testo da cercare nel documento attivo. Premere Invio per iniziare la ricerca." #. 3swkZ #: 02100000.xhp @@ -7835,7 +7835,7 @@ "par_id00002\n" "help.text" msgid "Click to search the next occurrence in downward direction." -msgstr "Fai clic per cercare l'occorrenza successiva verso il basso." +msgstr "Fare clic per cercare l'occorrenza successiva verso il basso." #. umniz #: 02100000.xhp @@ -7844,7 +7844,7 @@ "par_id00003\n" "help.text" msgid "Click to search the next occurrence in upward direction." -msgstr "Fai clic per cercare l'occorrenza successiva verso l'alto." +msgstr "Fare clic per cercare l'occorrenza successiva verso l'alto." #. dF9qe #: 02100000.xhp @@ -7898,7 +7898,7 @@ "par_id3154760\n" "help.text" msgid " Matches the exact character provided in the Find box without considering any alternative case matches. " -msgstr " Individua il carattere esatto fornito nel riquadro Trova senza considerare altre alternative. " +msgstr "Individua il carattere esatto fornito nel riquadro Trova senza considerare altre alternative." #. jsLqT #: 02100000.xhp @@ -7907,7 +7907,7 @@ "par_id811629842746430\n" "help.text" msgid "Disable this option to consider all possible case matches. For example, entering \"a\" in the Find box matches both \"a\" and \"A\"." -msgstr "Disattivate questa opzione per considerare tutti i casi possibili. Per esempio, scrivendo \"a\" nel riquadro Trova verranno individuate entrambe \"a\" e \"A\"." +msgstr "Disattivare questa opzione per considerare tutti i casi possibili. Per esempio, scrivendo \"a\" nel riquadro Trova verranno individuate entrambe \"a\" e \"A\"." #. F9EPB #: 02100000.xhp @@ -7925,7 +7925,7 @@ "bm_id891558923816062\n" "help.text" msgid "searching;formatted numbers searching;formatted display finding;formatted numbers finding;formatted display" -msgstr "Cercare;numeri formattati Cercare;visualizzazione formattata Trovare;numeri formattati Trovare;visualizzazione formattata" +msgstr "Cercare;numeri formattatiCercare;visualizzazione formattataTrovare;numeri formattatiTrovare;visualizzazione formattata" #. UnzxV #: 02100000.xhp @@ -7952,7 +7952,7 @@ "hd_id3148538\n" "help.text" msgid " Entire Cells Whole words only " -msgstr " Solo celle intere Solo parole intere " +msgstr "Solo celle intereSolo parole intere" #. FBomz #: 02100000.xhp @@ -7961,7 +7961,7 @@ "par_id3149579\n" "help.text" msgid " Searches for whole words or cells that are identical to the search text. " -msgstr " Ricerca parole intere o celle identiche al valore da ricercare. " +msgstr "Ricerca parole intere o celle identiche al valore da ricercare." #. GjHVg #: 02100000.xhp @@ -7979,7 +7979,7 @@ "hd_id3152960\n" "help.text" msgid " All sheets " -msgstr " Tutti i fogli " +msgstr "Tutti i fogli" #. dQCPM #: 02100000.xhp @@ -7988,7 +7988,7 @@ "par_id3145619\n" "help.text" msgid " Searches through all of the sheets in the current spreadsheet file. " -msgstr " Cerca in tutti i fogli del foglio elettronico corrente. " +msgstr "Cerca in tutti i fogli del foglio elettronico corrente." #. D5Jko #: 02100000.xhp @@ -8015,7 +8015,7 @@ "par_id3156426\n" "help.text" msgid "Enter the replacement text, or select a recent replacement text or style from the list." -msgstr "Digitate il testo da sostituire, oppure selezionare dall'elenco un testo o uno stile usati per una sostituzione precedente." +msgstr "Digitare il testo da sostituire, oppure selezionare dall'elenco un testo o uno stile usati per una sostituzione precedente." #. hncQB #: 02100000.xhp @@ -8042,7 +8042,7 @@ "par_id3145785\n" "help.text" msgid "Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents)." -msgstr "Trova e seleziona tutte le istanze del testo o del formato che state ricercando nel documento (solo nei documenti Writer e Calc)." +msgstr "Trova e seleziona tutte le istanze del testo o del formato che si stanno ricercando nel documento (solo nei documenti Writer e Calc)." #. hfYB3 #: 02100000.xhp @@ -8051,7 +8051,7 @@ "par_id31454242785\n" "help.text" msgid "Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents)." -msgstr "Trova e seleziona tutte le istanze del testo o del formato che stai ricercando nel documento (solo nei documenti Writer e Calc)." +msgstr "Trova e seleziona tutte le istanze del testo o del formato che si stanno ricercando nel documento (solo nei documenti Writer e Calc)." #. EqqsF #: 02100000.xhp @@ -14072,7 +14072,7 @@ "hd_id8455153\n" "help.text" msgid "Single page" -msgstr "Singola pagina" +msgstr "Pagina singola" #. eDNZ4 #: 03010000.xhp @@ -51611,7 +51611,7 @@ "hd_id8454237\n" "help.text" msgid "Single page" -msgstr "Singola pagina" +msgstr "Pagina singola" #. icsgH #: ref_pdf_export_initial_view.xhp diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared/04.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared/04.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-03-21 12:31+0100\n" -"PO-Revision-Date: 2022-06-10 12:06+0000\n" +"PO-Revision-Date: 2023-04-16 21:33+0000\n" "Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563736717.000000\n" #. GEuoc @@ -59,7 +59,7 @@ "par_id3151299\n" "help.text" msgid "A great deal of your application's functionality can be called up by using shortcut keys. For example, the Command+OCtrl+O shortcut keys are shown next to the Open entry in the File menu. If you want to access this function by using the shortcut keys, press and hold down CommandCtrl and then press the O key. Release both keys after the dialog appears." -msgstr "Gran parte delle funzioni dell'applicazione può essere attivata tramite combinazioni di tasti. Accanto alla voce Apri nel menu File è disponibile, ad esempio, la combinazione di tasti Cmd+OCtrl+O. Per eseguire questa funzione mediante la combinazione di tasti, tenete premuto il tasto CmdCtrl e quindi il tasto O. Rilasciate quindi entrambi i tasti." +msgstr "Gran parte delle funzioni dell'applicazione può essere attivata tramite combinazioni di tasti. Accanto alla voce Apri nel menu File è disponibile, ad esempio, la combinazione di tasti Cmd+OCtrl+O. Per eseguire questa funzione mediante la combinazione di tasti, tenere premuto il tasto CmdCtrl e quindi il tasto O. Rilasciare quindi entrambi i tasti." #. hJP5t #: 01010000.xhp @@ -68,7 +68,7 @@ "par_id3153894\n" "help.text" msgid "When operating your application, you can choose between using the mouse or the keyboard for almost all of the operations available." -msgstr "Per utilizzare l'applicazione avete la possibilità, per quasi tutte le operazioni, di scegliere tra il mouse e la tastiera." +msgstr "Per utilizzare l'applicazione si ha la possibilità, per quasi tutte le operazioni, di scegliere tra il mouse e la tastiera." #. Q2ALG #: 01010000.xhp @@ -104,7 +104,7 @@ "par_id851591272526169\n" "help.text" msgid "You can enter arbitrary Unicode characters in the document typing the Unicode hexadecimal code point and then pressing Command+Option+XAlt+X (default). Type the Unicode hexadecimal notation and press Command+Option+XAlt+X to toggle between the Unicode character and its hexadecimal notation. Selection is not necessary but the conversion will apply to the selected characters. Toggling occurs on the characters prior to the cursor position when these characters form a valid Unicode hexadecimal point. Hexadecimal code points with value in the range U+0000 to U+0020 are not converted." -msgstr "In un documento, potette inserire caratteri Unicode arbitrari digitando la posizione del codice esadecimale Unicode quindi premendo Cmd+Opzione+XAlt+X (impostazione predefinita). Digitate la notazione esadecimale Unicode e premete Cmd+Opzione+XAlt+X per passare dal carattere Unicode alla sua notazione esadecimale. La selezione non è necessaria ma la conversione sarà applicata ai caratteri selezionati. L'alternanza si verifica sui caratteri prima della posizione del cursore quando questi caratteri formano una posizione esadecimale Unicode valida. Le posizioni di codice esadecimale con valore nell'intervallo da U+0000 a U+0020 non vengono convertiti." +msgstr "In un documento, è possibile inserire caratteri Unicode arbitrari digitando la posizione del codice esadecimale Unicode, quindi premendo Cmd+Opzione+XAlt+X (impostazione predefinita). Digitare la notazione esadecimale Unicode e premere Cmd+Opzione+XAlt+X per passare dal carattere Unicode alla sua notazione esadecimale. La selezione non è necessaria ma la conversione sarà applicata ai caratteri selezionati. L'alternanza si verifica sui caratteri prima della posizione del cursore quando questi caratteri formano una posizione esadecimale Unicode valida. Le posizioni di codice esadecimale con valore nell'intervallo da U+0000 a U+0020 non vengono convertiti." #. PwHVE #: 01010000.xhp @@ -113,7 +113,7 @@ "par_id1001591272531804\n" "help.text" msgid "The default Unicode conversion shortcut is Command+Option+XAlt+X and Command+Option+CAlt+C in some locales where the default Unicode shortcut interferes with the main menu shortcut. To reassign the shortcut, choose Tools - Customize - Keyboard and select Category:Options with Function:Toggle Unicode Notation." -msgstr "La scorciatoia di conversione Unicode predefinita è Cmd+Opzione+XAlt+X e Cmd+Opzione+CAlt+C in alcune impostazioni regionali dove la combinazione di tasti Unicode predefinita interferisce con la combinazione del menu principale. Per riassegnare la scorciatoia, andate a choose Strumenti - Personalizza - Tastiera e scegliete Categoria:Opzioni quindi Funzione:Attiva/disattiva la notazione Unicode." +msgstr "La scorciatoia di conversione Unicode predefinita è Cmd+Opzione+XAlt+X e Cmd+Opzione+CAlt+C in alcune impostazioni regionali dove la combinazione di tasti Unicode predefinita interferisce con la combinazione del menu principale. Per riassegnare la scorciatoia, scegliere Strumenti - Personalizza - Tastiera e selezionare Categoria:Opzioni quindi Funzione:Attiva/disattiva la notazione Unicode." #. cBDHp #: 01010000.xhp @@ -131,7 +131,7 @@ "par_id3154288\n" "help.text" msgid "There is always one element highlighted in any given dialog - usually shown by a broken frame. This element, which can be either a button, an option field, an entry in a list box or a check box, is said to have the focus on it. If the focal point is a button, pressing Enter runs it as if you had clicked it. A check box is toggled by pressing the Spacebar. If an option field has the focus, use the arrow keys to change the activated option field in that area. Use the Tab key to go from one element or area to the next one, use Shift+Tab to go in the reverse direction." -msgstr "Esiste sempre un elemento evidenziato in qualsiasi finestra di dialogo data: in genere esso è indicato da una cornice discontinua. Si dice che questo elemento (un pulsante, un campo di scelta, una voce in una casella o un elenco di scelta) è a fuoco. Se l'elemento a fuoco è un pulsante, premendo il tasto Invio lo avvierete come se ci aveste fatto clic sopra. La casella di scelta verrà modificata premendo la barra spaziatrice, mentre se a fuoco è un campo di scelta, utilizzate i tasti freccia per modificare quello attivato in quell'area. Col tasto Tab potrete scorrere in avanti da un elemento, o un'area, all'altro, mentre con Maiusc+Tab vi sposterete in direzione inversa." +msgstr "Esiste sempre un elemento evidenziato in qualsiasi finestra di dialogo data: in genere esso è indicato da una cornice discontinua. Si dice che questo elemento (un pulsante, un campo di scelta, una voce in una casella o un elenco di scelta) è a fuoco. Se l'elemento a fuoco è un pulsante, premendo il tasto Invio lo si avvierà come se si avesse fatto clic sopra. La casella di scelta verrà modificata premendo la barra spaziatrice, mentre se a fuoco è un campo di scelta, utilizzare i tasti freccia per modificare quello attivato in quell'area. Col tasto Tab sarà possibile scorrere in avanti da un elemento, o un'area, all'altro, mentre con Maiusc+Tab ci si sposterà in direzione inversa." #. MreaT #: 01010000.xhp @@ -140,7 +140,7 @@ "par_id3149177\n" "help.text" msgid "Pressing Esc closes the dialog without saving changes. If you place the focus on a button, not only will you see the dotted line framing the name of the button, but also a thicker shadow under the button selected. This indicates that if you exit the dialog by pressing the Enter key, it is the equivalent of pressing that button itself." -msgstr "Per chiudere la finestra di dialogo senza fare alcuna modifica, premete il tasto Esc. Se assegnate il fuoco a un pulsante, non solo viene visualizzato il rettangolo con margine tratteggiato, ma di solito il pulsante marcato presenta un'ombra più scura rispetto agli altri. Ciò significa che, uscendo dalla finestra di dialogo con il tasto Invio, ottenete lo stesso effetto di un clic sul pulsante che in questo momento ha l'ombra più scura." +msgstr "Per chiudere la finestra di dialogo senza fare alcuna modifica, premere il tasto Esc. Se si assegna il fuoco a un pulsante, non solo viene visualizzato il rettangolo con margine tratteggiato, ma di solito il pulsante marcato presenta un'ombra più scura rispetto agli altri. Ciò significa che, uscendo dalla finestra di dialogo con il tasto Invio, si ottiene lo stesso effetto di un clic sul pulsante che in questo momento ha l'ombra più scura." #. QJfCQ #: 01010000.xhp @@ -158,7 +158,7 @@ "par_id3154749\n" "help.text" msgid "If you are using drag-and-drop, selecting with the mouse or clicking objects and names, you can use the keys Shift, CommandCtrl and occasionally OptionAlt to access additional functionality. The modified functions available when holding down keys during drag-and-drop are indicated by the mouse pointer changing form. When selecting files or other objects, the modifier keys can extend the selection - the functions are explained where applicable. " -msgstr "Quando utilizzate il metodo Trascina selezione (drag-and-drop), selezionate gli oggetti con il mouse o fate clic sugli oggetti e sui nomi, potete usare i tasti Maiusc, CmdCtrl e, in alcuni casi, OpzioneAlt per accedere a funzionalità aggiuntive. Le funzioni modificate disponibili premendo questi tasti durante il trascinamento sono indicate dal cambiamento di forma del puntatore del mouse. Se state selezionando un insieme di file o di altri oggetti, i tasti modificatori possono estendere la selezione - le funzioni vengono spiegate ove applicabili. " +msgstr "Quando si utilizza il metodo Trascina selezione (drag-and-drop), selezionando gli oggetti col mouse o facendo clic sugli oggetti e sui nomi, è possibile usare i tasti Maiusc, CmdCtrl e, in alcuni casi, OpzioneAlt per accedere a funzionalità aggiuntive. Le funzioni modificate disponibili premendo questi tasti durante il trascinamento sono indicate dal cambiamento di forma del puntatore del mouse. Se si sta selezionando un insieme di file o di altri oggetti, i tasti modificatori possono estendere la selezione - le funzioni vengono spiegate ove applicabili. " #. DkC38 #: 01010000.xhp @@ -176,7 +176,7 @@ "par_id3145673\n" "help.text" msgid "You can open a context menu, which contains some of the most often-used commands." -msgstr "Potete avviare un menu di contesto che offre alcuni comandi di uso frequente." +msgstr "È possibile avviare un menu contestuale che offre alcuni comandi d'uso frequente." #. 8DJ5t #: 01010000.xhp @@ -185,7 +185,7 @@ "par_id3153088\n" "help.text" msgid "Use CommandCtrl+A to select the entire text. Use the right or left arrow key to remove the selection." -msgstr "Con CmdCtrl+A potete selezionare l'intero contenuto del testo. I tasti Freccia destra o Freccia sinistra consentono di annullare la selezione." +msgstr "Con CmdCtrl+A è possibile selezionare l'intero contenuto del testo. I tasti Freccia destra o Freccia sinistra consentono di annullare la selezione." #. 2DfDB #: 01010000.xhp @@ -203,7 +203,7 @@ "par_id3149785\n" "help.text" msgid "A triple-click in a text input field selects the entire field. A triple-click in a text document selects the current sentence." -msgstr "Facendo triplo clic in un campo di digitazione di testo potete selezionare l'intero campo. Facendo triplo clic in un documento di testo potete selezionare l'intera frase." +msgstr "Facendo triplo clic in un campo di digitazione di testo è possibile selezionare l'intero campo. Facendo triplo clic in un documento di testo è possibile selezionare l'intera frase." #. o5vEt #: 01010000.xhp @@ -212,7 +212,7 @@ "par_id3150976\n" "help.text" msgid "Use CommandCtrl+Del to delete everything from the cursor position to the end of the word." -msgstr "Con CmdCtrl+Canc cancellate tutto quanto è compreso dal punto in cui si trova il cursore fino alla fine della parola." +msgstr "Con CmdCtrl+Canc si cancella tutto quanto è compreso dal punto in cui si trova il cursore fino alla fine della parola." #. rK66J #: 01010000.xhp @@ -221,7 +221,7 @@ "par_id3147264\n" "help.text" msgid "By using CommandCtrl and right or left arrow key, the cursor will jump from word to word; if you also hold down the Shift key, one word after the other is selected." -msgstr "Con CmdCtrl più Freccia destra o Freccia sinistra il cursore avanza parola per parola, mentre se premete anche il tasto Maiusc si selezionano le singole parole." +msgstr "Con CmdCtrl più Freccia destra o Freccia sinistra il cursore avanza parola per parola, mentre se si preme anche il tasto Maiusc si selezionano le singole parole." #. FPcq5 #: 01010000.xhp @@ -230,7 +230,7 @@ "par_id3154346\n" "help.text" msgid "INSRT is used to switch between the insert mode and the overwrite mode and back again." -msgstr "Con INS passate dal modo Inserimento al modo Sovrascrittura e viceversa." +msgstr "Con INS è possibile passare dal modo Inserimento al modo Sovrascrittura e viceversa." #. wGamM #: 01010000.xhp @@ -239,7 +239,7 @@ "par_id3148757\n" "help.text" msgid "Drag-and-drop can be used within and outside of a text box." -msgstr "Potete usare il metodo Trascina selezione (drag-and-drop) sia all'interno, sia all'esterno delle caselle di testo." +msgstr "È possibile usare il metodo Trascina selezione (drag-and-drop) sia all'interno, sia all'esterno delle caselle di testo." #. 7o4zf #: 01010000.xhp @@ -248,7 +248,7 @@ "par_id3150358\n" "help.text" msgid "The CommandCtrl+Z shortcut keys are used to undo modifications one step at a time; the text will then have the status it had before the first change." -msgstr "Con CmdCtrl+Z potete annullare le modifiche passo per passo. Il testo ha di nuovo il contenuto che aveva prima della modifica." +msgstr "Con CmdCtrl+Z è possibile annullare le modifiche passo per passo. Il testo ha di nuovo il contenuto che aveva prima della modifica." #. CxR2B #: 01010000.xhp @@ -257,7 +257,7 @@ "par_id3153968\n" "help.text" msgid "$[officename] has an AutoComplete function which activates itself in some text and list boxes. For example, enter c:\\a~/a into the URL field and the AutoComplete function displays the first file or first directory found on the C: drivein your home folder that starts with the letter \"a\"." -msgstr "$[officename] ha una funzione di completamento automatico che si attiva in alcune caselle di testo e di riepilogo. Per esempio, indicate c:\\a~/a nel campo URL e la funzione di completamento automatico mostra il primo file o la prima cartella trovata nel disco C:nella vostra cartella personale che inizia con la lettera \"a\"." +msgstr "$[officename] ha una funzione di completamento automatico che si attiva in alcune caselle di testo e di riepilogo. Per esempio, indicare c:\\a~/a nel campo URL e la funzione di completamento automatico mostra il primo file o la prima cartella trovata nel disco C:nella propria cartella personale che inizia con la lettera \"a\"." #. cCWVA #: 01010000.xhp @@ -266,7 +266,7 @@ "par_id3144760\n" "help.text" msgid "Use the Down Arrow key to scroll through the other files and directories. Use the Right Arrow key to also display an existing subdirectory in the URL field. Quick AutoComplete is available if you press the End key after entering part of the URL. Once you find the document or directory you want, press Enter." -msgstr "Utilizzate il tasto Freccia giù per scorrere attraverso altri file e cartelle. Utilizzate il tasto Freccia destra per mostrare anche le sottocartelle esistenti nel campo URL. Il completamento automatico veloce è disponibile se premete il tasto Fine dopo aver digitato una parte dell'URL. Una volta trovato il documento o la cartella desiderata, premete Invio." +msgstr "Utilizzare il tasto Freccia giù per scorrere attraverso altri file e cartelle. Utilizzare il tasto Freccia destra per mostrare anche le sottocartelle esistenti nel campo URL. Il completamento automatico veloce è disponibile se si preme il tasto Fine dopo aver digitato una parte dell'URL. Una volta trovato il documento o la cartella desiderata, premere Invio." #. Bkjt8 #: 01010000.xhp @@ -284,7 +284,7 @@ "par_id3159150\n" "help.text" msgid "If you want to terminate a macro that is currently running, press CommandCtrl+Shift+Q." -msgstr "Per terminare una macro in esecuzione, premete CmdCtrl+Maiusc+Q." +msgstr "Per terminare una macro in esecuzione, premere CmdCtrl+Maiusc+Q." #. DNtr2 #: 01010000.xhp @@ -1040,7 +1040,7 @@ "par_id3147005\n" "help.text" msgid "Pastes from the clipboard." -msgstr "Incolla il contenuto degli Appunti." +msgstr "Incolla il contenuto dagli appunti." #. QkVYn #: 01010000.xhp @@ -1904,7 +1904,7 @@ "hd_id3149684\n" "help.text" msgid "Select the toolbar with F6. Use the Down Arrow and Right Arrow keys to select the desired toolbar icon and press CommandCtrl+Enter." -msgstr "Selezionate la barra degli strumenti con F6. Usate Freccia su e Freccia giù per selezionare l'icona desiderata e premete CmdCtrl+Invio." +msgstr "Selezionare la barra degli strumenti con F6. Usare Freccia su e Freccia giù per selezionare l'icona desiderata e premere CmdCtrl+Invio." #. SSc2F #: 01010000.xhp @@ -1922,7 +1922,7 @@ "hd_id3150264\n" "help.text" msgid "Select the document with CommandCtrl+F6 and press Tab." -msgstr "Selezionate il documento con CmdCtrl+F6 e premete Tab." +msgstr "Selezionare il documento con CmdCtrl+F6 e premere Tab." #. EjNHq #: 01010000.xhp @@ -2183,7 +2183,7 @@ "par_id3149753\n" "help.text" msgid "In Rotation mode, the center of rotation can also be selected." -msgstr "Nel modo rotazione, potete selezionare anche il punto di rotazione." +msgstr "Nel modo rotazione, è possibile selezionare anche il punto di rotazione." #. EqUv7 #: 01010000.xhp @@ -2291,7 +2291,7 @@ "par_id2693563\n" "help.text" msgid "OptionAlt key while creating or scaling a graphic object" -msgstr "tasto OpzioneAlt mentre create o ridimensionate un oggetto grafico" +msgstr "Tasto OpzioneAlt mentre si crea o si ridimensiona un oggetto grafico" #. cDSDC #: 01010000.xhp @@ -2309,7 +2309,7 @@ "par_id526444\n" "help.text" msgid "Shift key while creating or scaling a graphic object" -msgstr "Tasto Maiusc nella creazione o scalatura di un oggetto grafico" +msgstr "Tasto Maiusc nella creazione o nel ridimensionamento di un oggetto grafico" #. uTEXC #: 01010000.xhp @@ -2354,7 +2354,7 @@ "par_id3152462\n" "help.text" msgid "The following is a list of shortcut keys available within databases." -msgstr "Lista dei tasti di scelta rapida disponibili nei database." +msgstr "Elenco dei tasti di scelta rapida disponibili nei database." #. KdAHW #: 01020000.xhp @@ -2471,7 +2471,7 @@ "par_id3150418\n" "help.text" msgid "Opens the context menu." -msgstr "Avvia il menu di contesto." +msgstr "Avvia il menu contestuale." #. vyznX #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared/05.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared/05.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared/05.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared/05.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-11-16 12:09+0100\n" -"PO-Revision-Date: 2022-01-10 11:44+0000\n" +"PO-Revision-Date: 2023-04-26 17:33+0000\n" "Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563736618.000000\n" #. WPTtk @@ -50,7 +50,7 @@ "par_id3150667\n" "help.text" msgid "You can find support on the %PRODUCTNAME website." -msgstr "Potete trovare informazioni di supporto nel sito web di %PRODUCTNAME." +msgstr "È possibile trovare informazioni di supporto nel sito web di %PRODUCTNAME." #. tyE6M #: 00000001.xhp @@ -95,7 +95,7 @@ "par_id3166335\n" "help.text" msgid "Ask about %PRODUCTNAME, find help by volunteers, and discuss topics on the public mailing lists. You can find many general and specialized mailing lists on the %PRODUCTNAME website at www.libreoffice.org." -msgstr "Chiedete di %PRODUCTNAME, cercate aiuto tra i volontari e partecipate alle discussioni nelle mailing list pubbliche. Esistono molte mailing list, sia generali, sia specialistiche, nel sito web di %PRODUCTNAME alla pagina it.libreoffice.org/supporto/mailing-list/." +msgstr "È possibile di %PRODUCTNAME, cercare aiuto tra i volontari e partecipare alle discussioni nelle mailing list pubbliche. Esistono molte mailing list, sia generali, sia specialistiche, nel sito web di %PRODUCTNAME alla pagina it.libreoffice.org/supporto/mailing-list/." #. Xp6Xs #: 00000001.xhp @@ -113,7 +113,7 @@ "par_id0915200811081778\n" "help.text" msgid "You can access web forums to ask and answer questions about %PRODUCTNAME. Choose Help – Get Help Online to access the forum in your language." -msgstr "Potete accedere ai forum in rete per fare domande su %PRODUCTNAME o per rispondere. Scegliete il menu Aiuto – Ottieni aiuto in linea per accedere al forum nella vostra lingua." +msgstr "È possibile accedere ai forum in rete per fare domande su %PRODUCTNAME o per rispondere. Scegliere il menu Aiuto – Ottieni aiuto in linea per accedere al forum nella propria lingua." #. p6BeE #: 00000001.xhp @@ -131,7 +131,7 @@ "par_id0804200803314235\n" "help.text" msgid "In case you are concerned about any security issue with using this software, you can contact the developers on the public mailing list. If you want to discuss any issue with other users, send an email to the public mailing list users@global.libreoffice.org." -msgstr "Nel caso foste interessati ad approfondire questioni inerenti la sicurezza nell'utilizzo di questo software, potete contattare gli sviluppatori sulla mailing list pubblica. Se volete discutere con altri utenti, inviate una messaggio di posta elettronica alla mailing list pubblica users@it.libreoffice.org." +msgstr "Nel caso si fosse interessati ad approfondire questioni inerenti la sicurezza nell'utilizzo di questo software, sarà possibile contattare gli sviluppatori sulla mailing list pubblica. Per discutere con altri utenti, inviare un messaggio di posta elettronica alla mailing list pubblica users@it.libreoffice.org." #. tEPqi #: 00000001.xhp @@ -149,7 +149,7 @@ "par_id3028143\n" "help.text" msgid "You can download the latest version of %PRODUCTNAME at www.libreoffice.org/download/." -msgstr "Potete scaricare l'ultima versione di %PRODUCTNAME alla pagina >it.libreoffice.org/download/libreoffice-fresh/." +msgstr "È possibile scaricare l'ultima versione di %PRODUCTNAME alla pagina >it.libreoffice.org/download/libreoffice-fresh/." #. ia3E3 #: 00000001.xhp @@ -167,7 +167,7 @@ "par_id3497211\n" "help.text" msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at documentation.libreoffice.org. You can also access the documentation website choosing the menu Help – User Guides." -msgstr "Potete scaricare la documentazione come file PDF, manuali e guide dal sito web della documentazione di %PRODUCTNAME all'indirizzo it.libreoffice.org/supporto/documentazione/. Potete accedere al sito della documentazione anche dal menu Aiuto – Guide utente ." +msgstr "È possibile scaricare la documentazione come file PDF, manuali e guide dal sito web della documentazione di %PRODUCTNAME all'indirizzo it.libreoffice.org/supporto/documentazione/. È È possibile accedere al sito della documentazione anche dal menu Aiuto – Guide utente." #. nuEqp #: 00000001.xhp @@ -185,7 +185,7 @@ "par_id0120200910361848\n" "help.text" msgid "If you want to take an active role in the worldwide %PRODUCTNAME community, you are very welcome to give feedback, discuss features, propose enhancements, write your own article in an FAQ, how-to, manual, create a video tutorial, etc." -msgstr "Se volete avere un ruolo attivo nella comunità mondiale di %PRODUCTNAME, siete i benvenuti per contribuire con opinioni, discutere sulle funzionalità, proporre miglioramenti, scrivere articoli in guide, manuali, creare esercitazioni video, e via discorrendo." +msgstr "Se si desidera avere un ruolo attivo nella comunità mondiale di %PRODUCTNAME, si è i benvenuti per contribuire con opinioni, discutere sulle funzionalità, proporre miglioramenti, scrivere articoli in guide, manuali, creare esercitazioni video, e via discorrendo." #. tfyrA #: 00000001.xhp @@ -194,7 +194,7 @@ "par_id0120200910361874\n" "help.text" msgid "Visit the Get involved page on the website and follow the links for contributors." -msgstr "Visitate la pagina di contribuzione nel sito web e seguite i collegamenti per chi vuole contribuire." +msgstr "Visitare la pagina di contribuzione nel sito web e seguire i collegamenti per chi vuole contribuire." #. EDsrK #: 00000002.xhp @@ -473,7 +473,7 @@ "par_idN10926\n" "help.text" msgid "You can copy from the Help Viewer to the clipboard on your operating system with standard copy commands. For example:" -msgstr "Potete copiare dalla Guida negli appunti del vostro sistema operativo utilizzando i comandi di copia standard. Ad esempio:" +msgstr "È possibile copiare dalla Guida negli appunti del proprio sistema operativo utilizzando i comandi di copia standard. Ad esempio:" #. Ex84y #: 00000110.xhp @@ -482,7 +482,7 @@ "par_idN1092C\n" "help.text" msgid "On a Help page, select the text that you want to copy." -msgstr "Selezionate il testo della Guida che desiderate copiare." +msgstr "Selezionare il testo della Guida da copiare." #. GDeaH #: 00000110.xhp @@ -491,7 +491,7 @@ "par_idN10930\n" "help.text" msgid "Press CommandCtrl+C." -msgstr "Premete ComandoCtrl+C." +msgstr "Premere CmdCtrl+C." #. egTH7 #: 00000110.xhp @@ -509,7 +509,7 @@ "par_idN10939\n" "help.text" msgid "Click the Find on this Page icon." -msgstr "Fate clic sull'icona Trova in questa pagina." +msgstr "Fare clic sull'icona Trova in questa pagina." #. HB6gA #: 00000110.xhp @@ -527,7 +527,7 @@ "par_idN10A36\n" "help.text" msgid "You can also click in the Help page and press CommandCtrl+F." -msgstr "Potete anche fare clic nella pagina della guida e premere ComandoCtrl+F." +msgstr "È possibile anche fare clic nella pagina della guida e premere ComandoCtrl+F." #. F5MsA #: 00000110.xhp @@ -536,7 +536,7 @@ "par_idN10A22\n" "help.text" msgid "In the Search for box, enter the text that you want to find." -msgstr "Nella casella Cerca, inserite il testo da trovare." +msgstr "Nella casella Cerca, inserire il testo da trovare." #. XPQQQ #: 00000110.xhp @@ -545,7 +545,7 @@ "par_idN10A48\n" "help.text" msgid "Select the search options that you want to use." -msgstr "Selezionate le opzioni di ricerca da utilizzare." +msgstr "Selezionare le opzioni di ricerca da utilizzare." #. dHfJj #: 00000110.xhp @@ -554,7 +554,7 @@ "par_idN10A26\n" "help.text" msgid "Click Find." -msgstr "Fate clic su Trova." +msgstr "Fare clic su Trova." #. Ck8E6 #: 00000110.xhp @@ -563,7 +563,7 @@ "par_idN10A59\n" "help.text" msgid "To find the next occurrence of the search term on the page, click Find again." -msgstr "Per trovare l'occorrenza successiva del termine ricercato nella pagina, fate nuovamente clic su Trova." +msgstr "Per trovare l'occorrenza successiva del termine ricercato nella pagina, fare nuovamente clic su Trova." #. xYwKD #: 00000110.xhp @@ -572,7 +572,7 @@ "par_idN10906\n" "help.text" msgid "Enter the text that you want to search for or select a text entry in the list." -msgstr "Digita il testo da cercare o seleziona una voce di ricerca nell'elenco." +msgstr "Digitare il testo da cercare o selezionare una voce di ricerca nell'elenco." #. BxuRD #: 00000110.xhp @@ -644,7 +644,7 @@ "par_id3159149\n" "help.text" msgid "The list box located at the very top is where you can select other %PRODUCTNAME Help modules. The Index and Find tab pages only contain the data for the selected %PRODUCTNAME module." -msgstr "Nel margine superiore è disponibile una casella di riepilogo nella quale si può selezionare la Guida per altri moduli di %PRODUCTNAME. Indice e Trova si riferiscono solo ai dati del modulo di %PRODUCTNAME selezionato." +msgstr "Nel margine superiore è disponibile una casella di riepilogo nella quale è possibile selezionare la Guida per altri moduli di %PRODUCTNAME. Indice e Trova si riferiscono solo ai dati del modulo di %PRODUCTNAME selezionato." #. 8ExDE #: 00000110.xhp @@ -716,7 +716,7 @@ "par_id3156062\n" "help.text" msgid "Contains user-defined bookmarks. You can edit or delete bookmarks, or click them to go to the corresponding pages." -msgstr "Contiene segnalibri definiti dall'utente. Potete modificare o eliminare i segnalibri, oppure farvi clic sopra per passare alle pagine corrispondenti." +msgstr "Contiene segnalibri definiti dall'utente. È possibile modificare o eliminare i segnalibri, oppure farvi clic sopra per passare alle pagine corrispondenti." #. oZkWs #: 00000120.xhp @@ -752,7 +752,7 @@ "par_id3148520\n" "help.text" msgid "Tips and Extended Tips provide help while you work." -msgstr "I suggerimenti e la guida attiva vi forniscono un aiuto durante il lavoro." +msgstr "I suggerimenti e la guida attiva forniscono un aiuto durante il lavoro." #. U4ku2 #: 00000120.xhp @@ -770,7 +770,7 @@ "par_id3157896\n" "help.text" msgid "Tips provide you with the names of toolbar buttons. To display a tip, rest the pointer over a toolbar button until the name of the button appears." -msgstr "I suggerimenti forniscono i nomi dei pulsanti delle barre degli strumenti. Per visualizzare un suggerimento, posizionate il puntatore sopra un pulsante della barra degli strumenti e lasciatelo fermo finché non appare il nome del pulsante." +msgstr "I suggerimenti forniscono i nomi dei pulsanti delle barre degli strumenti. Per visualizzare un suggerimento, posizionare il puntatore sopra un pulsante della barra degli strumenti e lasciarlo fermo finché non appare il nome del pulsante." #. phMKm #: 00000120.xhp @@ -806,7 +806,7 @@ "par_id3149346\n" "help.text" msgid "Extended Tips provide a brief description about buttons and commands. To display an extended tip, press Shift+F1, then point to a button or command." -msgstr "La guida attiva offre una breve descrizione dei pulsanti e dei comandi. Per visualizzare la guida attiva premete Maiusc+F1, quindi spostate il puntatore su un pulsante o su un comando." +msgstr "La guida attiva offre una breve descrizione dei pulsanti e dei comandi. Per visualizzare la guida attiva premere Maiusc+F1, quindi spostare il puntatore su un pulsante o su un comando." #. KZ5SB #: 00000120.xhp @@ -815,7 +815,7 @@ "par_idN10666\n" "help.text" msgid "If you always want extended tips instead of tips, enable the extended tips on %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - General." -msgstr "Per visualizzare sempre la guida attiva al posto dei suggerimenti, abilitatela in %PRODUCTNAME - PreferenzeStrumenti - Opzioni - %PRODUCTNAME - Generale." +msgstr "Per visualizzare sempre la guida attiva al posto dei suggerimenti, abilitarla in %PRODUCTNAME - PreferenzeStrumenti - Opzioni - %PRODUCTNAME - Generale." #. RXCzT #: 00000130.xhp @@ -851,7 +851,7 @@ "par_id3150960\n" "help.text" msgid "Double-click an entry or type the word you want to find in the index." -msgstr "Fai doppio clic su una voce o digita la parola da trovare nell'indice." +msgstr "Fare doppio clic su una voce o digitare la parola da trovare nell'indice." #. vCFZF #: 00000130.xhp @@ -860,7 +860,7 @@ "par_id3148668\n" "help.text" msgid "Click to display the selected topic." -msgstr "Per visualizzare l'argomento selezionato facci clic sopra." +msgstr "Per visualizzare l'argomento selezionato farci clic sopra." #. HPgqx #: 00000130.xhp @@ -869,7 +869,7 @@ "par_id3155934\n" "help.text" msgid "You can search for a specific topic by typing a word into the Search term text box. The window contains an alphabetical list of index terms." -msgstr "Potete cercare un argomento specifico digitando una parola nella casella di testo Termine cercato. La finestra contiene l'elenco alfabetico dei termini dell'indice." +msgstr "È possibile cercare un argomento specifico digitando una parola nella casella di testo Termine cercato. La finestra contiene l'elenco alfabetico dei termini dell'indice." #. wXC7X #: 00000130.xhp @@ -878,7 +878,7 @@ "par_id3145669\n" "help.text" msgid "If the cursor is in the index list when you type the search term, the display will jump directly to the next match. When you type a word in the Search term text box, the focus will jump to the best match in the index list." -msgstr "Se il cursore si trova nell'elenco dell'indice quando digitate il termine da cercare, viene direttamente evidenziato l'argomento corrispondente successivo. Quando digitate una parola nella casella di testo Termine cercato, il fuoco passa alla voce più simile nell'indice." +msgstr "Se il cursore si trova nell'elenco dell'indice quando si digita il termine da cercare, viene direttamente evidenziato l'argomento corrispondente successivo. Quando si digita una parola nella casella di testo Termine cercato, il fuoco passa alla voce più simile nell'indice." #. AFUH2 #: 00000130.xhp @@ -887,7 +887,7 @@ "par_id3147653\n" "help.text" msgid "The index and full-text searches always apply to the currently selected %PRODUCTNAME application. Select the appropriate application using the list box on the help viewer's toolbar." -msgstr "Le ricerche nell'indice e sull'intero contenuto vengono eseguite per l'applicazione di %PRODUCTNAME attualmente selezionata. Selezionate l'applicazione appropriata usando la casella di riepilogo nella barra degli strumenti del programma di visualizzazione della Guida." +msgstr "Le ricerche nell'indice e sull'intero contenuto vengono eseguite per l'applicazione di %PRODUCTNAME attualmente selezionata. Selezionare l'applicazione appropriata usando la casella di riepilogo nella barra degli strumenti del programma di visualizzazione della Guida." #. MsRLT #: 00000140.xhp @@ -905,7 +905,7 @@ "bm_id3148532\n" "help.text" msgid "Find tab in HelpHelp; full-text searchfull-text search in Help" -msgstr "Ricerca;nella GuidaGuida;ricercare nell'intero testoIntero testo;ricercare" +msgstr "Ricerca;nella GuidaGuida;ricerca a tutto testoTutto testo nella Guida, ricerca a" #. QaAvG #: 00000140.xhp @@ -923,7 +923,7 @@ "par_id3155599\n" "help.text" msgid "Enter the search term here. The search is not case-sensitive." -msgstr "Digita il termine cercato. La ricerca avviene senza tener conto delle maiuscole e minuscole." +msgstr "Scrivere il termine cercato. La ricerca avviene senza considerare le maiuscole e le minuscole." #. ZY75Y #: 00000140.xhp @@ -932,7 +932,7 @@ "par_id3153323\n" "help.text" msgid "Click to start a full-text search for the term you entered." -msgstr "Fai clic per avviare una ricerca a tutto testo del termine specificato." +msgstr "Fare clic per avviare una ricerca a tutto testo del termine specificato." #. BS7dG #: 00000140.xhp @@ -941,7 +941,7 @@ "par_id3150499\n" "help.text" msgid "Lists the headings of the pages found in your full-text search. To display a page, double-click its entry." -msgstr "Elenca i titoli delle pagine su cui è stata eseguita una ricerca nel testo. Per visualizzare una pagina, fai doppio clic sulla voce corrispondente." +msgstr "Elenca i titoli delle pagine su cui è stata eseguita una ricerca nel testo. Per visualizzare una pagina, fare doppio clic sulla voce corrispondente." #. eJLq7 #: 00000140.xhp @@ -959,7 +959,7 @@ "par_id3155552\n" "help.text" msgid "Specifies whether to only search in document headings for the search term." -msgstr "Per eseguire una ricerca della voce digitata solo nelle intestazioni seleziona questa casella di controllo." +msgstr "Per eseguire una ricerca della voce digitata solo nelle intestazioni, selezionare questa casella di controllo." #. cAGcs #: 00000140.xhp @@ -977,7 +977,7 @@ "par_id3152552\n" "help.text" msgid "The full text search function in $[officename] Help allows you to find Help documents that contain any combination of search terms. To do this, type one or more words into the Search term text field." -msgstr "La funzione di ricerca a tutto testo nella Guida di $[officename] permette di trovare i documenti della Guida che contengono qualsiasi combinazione dei termini ricercati. Per procedere, digitate una o più parole nel campo di testo Termine cercato." +msgstr "La funzione di ricerca a tutto testo nella Guida di $[officename] permette di trovare i documenti della Guida che contengono qualsiasi combinazione dei termini ricercati. Per procedere, digitare una o più parole nel campo di testo Termine cercato." #. tZvTM #: 00000140.xhp @@ -986,7 +986,7 @@ "par_id3153345\n" "help.text" msgid "The Search term text field stores the words you entered last. To repeat a previous search, click the arrow icon and select the term from the list." -msgstr "Il campo di testo Termine cercato memorizza le ultime parole cercate. Per ripetere una ricerca eseguita in precedenza, fate clic sull'icona freccia e selezionate il termine dall'elenco." +msgstr "Il campo di testo Termine cercato memorizza le ultime parole cercate. Per ripetere una ricerca eseguita in precedenza, fare clic sull'icona freccia e selezionare il termine dall'elenco." #. HUQ6C #: 00000140.xhp @@ -995,7 +995,7 @@ "par_id3155941\n" "help.text" msgid "After the search has been carried out, the document headings of the results appear in a list. Either double-click an entry, or select it and click Display to load the corresponding Help document." -msgstr "Dopo avere eseguito la ricerca, appare una lista dei titoli dei documenti trovati. Fate doppio clic su una voce oppure selezionatela e fate clic su Visualizza per aprire il documento della Guida corrispondente." +msgstr "Dopo avere eseguito la ricerca, appare una lista dei titoli dei documenti trovati. Fare doppio clic su una voce oppure selezionarla e fare clic su Visualizza per aprire il documento della Guida corrispondente." #. YYczi #: 00000140.xhp @@ -1004,7 +1004,7 @@ "par_id3157958\n" "help.text" msgid "Use the check box Find in headings only to limit the search to document headings." -msgstr "Se selezionate la casella di controllo Trova solo nelle intestazioni, potete limitare la ricerca ai soli titoli dei documenti." +msgstr "È possibile limitare la ricerca ai soli titoli dei documenti selezionando la casella di controllo Trova solo nelle intestazioni." #. TWWt7 #: 00000140.xhp @@ -1013,7 +1013,7 @@ "par_id3147210\n" "help.text" msgid "The Complete words only check box allows you to perform an exact search. If this box is marked, incomplete words will not be found. Do not mark this check box if the search term you enter should also be found as part of a longer word." -msgstr "La casella di controllo Solo parole intere consente di eseguire una ricerca esatta. Se questa casella di controllo è selezionata, non vengono trovati i frammenti di parola. Non selezionate questa casella di controllo se il termine cercato deve essere trovato anche come frammento di una parola più grande." +msgstr "La casella di controllo Solo parole intere consente di eseguire una ricerca esatta. Se questa casella di controllo è selezionata, non verranno trovati i frammenti di parola. Non selezionare questa casella di controllo se il termine cercato deve essere trovato anche come frammento di una parola più grande." #. bY5wT #: 00000140.xhp @@ -1022,7 +1022,7 @@ "par_id3146798\n" "help.text" msgid "You can enter any combination of search terms, separated by spaces. Searching is not case-sensitive." -msgstr "È possibile digitare qualsiasi combinazione di termini, separati dagli spazi. La ricerca avviene senza tener conto delle maiuscole e minuscole." +msgstr "È possibile digitare qualsiasi combinazione di termini, separati dagli spazi. La ricerca avviene senza considerare le maiuscole e le minuscole." #. AfnGS #: 00000140.xhp @@ -1031,7 +1031,7 @@ "par_id3149732\n" "help.text" msgid "The index and full-text searches always apply to the currently selected %PRODUCTNAME application. Select the appropriate application using the list box on the help viewer's toolbar." -msgstr "Le ricerche nell'indice e sull'intero contenuto vengono eseguite per l'applicazione di %PRODUCTNAME attualmente selezionata. Selezionate l'applicazione appropriata usando la casella di riepilogo nella barra degli strumenti del programma di visualizzazione della Guida." +msgstr "Le ricerche nell'indice e sull'intero contenuto sono eseguite per l'applicazione di %PRODUCTNAME attualmente selezionata. Selezionare l'applicazione appropriata usando la casella di riepilogo nella barra degli strumenti del programma di visualizzazione della Guida." #. B6BtZ #: 00000150.xhp @@ -1067,7 +1067,7 @@ "par_id3154840\n" "help.text" msgid "Displays the name of the bookmarked page. You can also type a new name for the bookmark." -msgstr "Mostra il nome della pagina contrassegnata con il segnalibro. Puoi inoltre digitare un nuovo nome per il segnalibro." +msgstr "Mostra il nome della pagina contrassegnata con il segnalibro. È possibile inoltre digitare un nuovo nome per il segnalibro." #. DCXuy #: 00000150.xhp @@ -1139,7 +1139,7 @@ "par_id3150771\n" "help.text" msgid "Rename - opens a dialog for entering another name for the bookmark." -msgstr "Rinomina - apre un dialogo in cui si può digitare un nome diverso per il segnalibro." +msgstr "Rinomina - apre una finestra di dialogo in cui è possibile digitare un nome diverso per il segnalibro." #. DGdEF #: 00000150.xhp @@ -1202,7 +1202,7 @@ "par_id3150774\n" "help.text" msgid "Double-click a closed folder to open it and display the subfolders and Help pages." -msgstr "Fate doppio clic sull'icona di una cartella chiusa per aprirla e visualizzare le sottocartelle e le pagine della Guida in essa contenute." +msgstr "Fare doppio clic sull'icona di una cartella chiusa per aprirla e visualizzare le sottocartelle e le pagine della Guida in essa contenute." #. DCbpB #: 00000160.xhp @@ -1220,7 +1220,7 @@ "par_id3154749\n" "help.text" msgid "Double-click an open folder to close it and hide the subfolders and Help pages." -msgstr "Fate doppio clic sull'icona di una cartella aperta per chiuderla e nascondere le sottocartelle e le pagine della Guida in essa contenute." +msgstr "Fare doppio clic sull'icona di una cartella aperta per chiuderla e nascondere le sottocartelle e le pagine della Guida in essa contenute." #. gapPN #: 00000160.xhp @@ -1238,7 +1238,7 @@ "par_id3152909\n" "help.text" msgid "Double-click a document icon to display the corresponding Help page." -msgstr "Fate doppio clic sull'icona di un documento per aprire le relative pagine della Guida." +msgstr "Fare doppio clic sull'icona di un documento per aprire le relative pagine della Guida." #. yFLEy #: 00000160.xhp @@ -1247,7 +1247,7 @@ "par_id3158432\n" "help.text" msgid "Use the arrow keys in combination with the Return key to drop down and roll up entries and to open documents." -msgstr "Con i tasti cursore e il tasto inserimento potete mostrare, nascondere e aprire un documento." +msgstr "Con i tasti cursore e il tasto inserimento è possibile mostrare, nascondere e aprire un documento." #. PkTE9 #: err_html.xhp @@ -1301,7 +1301,7 @@ "par_id761592239118086\n" "help.text" msgid "Use the Module, Contents, Index and Search selectors to find the right page." -msgstr "Per trovare la pagina giusta utilizzate i selettori Modulo, Contenuto, Indice e Ricerca." +msgstr "Per trovare la pagina giusta utilizzare i selettori Modulo, Contenuto, Indice e Ricerca." #. aKd5h #: err_html.xhp @@ -1355,7 +1355,7 @@ "par_id171534888116942\n" "help.text" msgid "%PRODUCTNAME Help pages are displayed in your system default web browser." -msgstr "Le pagine della Guida di %PRODUCTNAME vengono visualizzate all'interno del vostro browser web predefinito del sistema." +msgstr "Le pagine della Guida di %PRODUCTNAME vengono visualizzate all'interno del proprio browser web predefinito del sistema." #. pCtBo #: new_help.xhp @@ -1409,7 +1409,7 @@ "par_id851534964274673\n" "help.text" msgid "Located on the top of the page, click to open the drop-down list and select the %PRODUCTNAME module to display the module Help main entry page." -msgstr "Si trova in cima alla pagina: fate clic per aprire l'elenco a tendina e selezionare il modulo %PRODUCTNAME per visualizzare il modulo della pagina principale della Guida." +msgstr "Si trova in cima alla pagina: fare clic per aprire l'elenco a tendina e selezionare il modulo %PRODUCTNAME per visualizzare il modulo della pagina principale della Guida." #. 8ABkE #: new_help.xhp @@ -1427,7 +1427,7 @@ "par_id801534964285706\n" "help.text" msgid "Available only in the online version, select the language to display the current help page." -msgstr "Disponibile solo nella versione in linea, selezionate la lingua in cui visualizzare la pagina di aiuto attiva." +msgstr "Disponibile solo nella versione in linea, selezionare la lingua in cui visualizzare la pagina di aiuto attiva." #. MA9xD #: new_help.xhp @@ -1445,7 +1445,7 @@ "par_id3151351\n" "help.text" msgid "The Help Index displays a list of keywords for all %PRODUCTNAME modules. Click on any keyword in the list to open the linked Help page." -msgstr "L'indice della Guida mostra un elenco di parole chiave per tutti i moduli di %PRODUCTNAME. Fate clic su una qualsiasi parola nell'elenco per aprire la relativa pagina collegata." +msgstr "L'indice della Guida mostra un elenco di parole chiave per tutti i moduli di %PRODUCTNAME. Fare clic su una qualsiasi parola nell'elenco per aprire la relativa pagina collegata." #. vqYih #: new_help.xhp @@ -1463,7 +1463,7 @@ "par_id311534901893169\n" "help.text" msgid "Type the keyword in the Search text box. The search is performed immediately, while you type the keyword." -msgstr "Digitate la parola chiave nella casella Termine cercato. La ricerca è immediata, ed è fatta mentre digitate." +msgstr "Digitare la parola chiave nella casella Termine cercato. La ricerca è immediata, ed è fatta durante la digitazione." #. cohBP #: new_help.xhp @@ -1490,7 +1490,7 @@ "par_id261534891513315\n" "help.text" msgid "Use the arrow icons on the bottom of the Index to scroll forward or backward the Index entries or filtered result list." -msgstr "Per scorrere avanti o indietro le voci dell'indice o l'elenco dei risultati, utilizzate le icone a forma di freccia presenti nella parte inferiore dell'indice." +msgstr "Per scorrere avanti o indietro le voci dell'indice o l'elenco dei risultati, utilizzare le icone a forma di freccia presenti nella parte inferiore dell'indice." #. SzL87 #: new_help.xhp @@ -1517,7 +1517,7 @@ "par_id3150774\n" "help.text" msgid "Click a closed folder () to open it and display the subfolders and Help pages." -msgstr "Fate clic sull'icona di una cartella chiusa () per aprirla e visualizzare le sottocartelle e le pagine della Guida in essa contenute." +msgstr "Fare clic sull'icona di una cartella chiusa () per aprirla e visualizzare le sottocartelle e le pagine della Guida in essa contenute." #. WNwHX #: new_help.xhp @@ -1526,7 +1526,7 @@ "par_id3154749\n" "help.text" msgid "Click an open folder () to close it and hide the subfolders and Help pages." -msgstr "Fate clic sull'icona di una cartella aperta () per chiuderla e nascondere le sottocartelle e le pagine della Guida in essa contenute." +msgstr "Fare clic sull'icona di una cartella aperta () per chiuderla e nascondere le sottocartelle e le pagine della Guida in essa contenute." #. AvoCg #: new_help.xhp @@ -1535,7 +1535,7 @@ "par_id3152909\n" "help.text" msgid "Click a link to display the corresponding Help page." -msgstr "Fate clic su un collegamento per aprire le relative pagine della Guida." +msgstr "Fare clic su un collegamento per aprire le relative pagine della Guida." #. pffBT #: new_help.xhp @@ -1562,7 +1562,7 @@ "par_id871534889171418\n" "help.text" msgid "Use the Back and Forward buttons of the browser to navigate between pages. In most browsers, a long click on the Back button displays a dropdown list of previously visited pages and a long click on the Forward button display a list of visited pages after the current one." -msgstr "Per navigare tra le pagine, utilizzate i pulsanti Avanti e Indietro del browser. Nella maggior parte dei browser, un clic prolungato del pulsante Indietro mostra un elenco a discesa delle pagine visitate in precedenza, mentre un clic prolungato del pulsante Avanti mostra un elenco delle pagine visitate dopo quella al momento attiva." +msgstr "Per navigare tra le pagine, utilizzare i pulsanti Avanti e Indietro del browser. Nella maggior parte dei browser, un clic prolungato del pulsante Indietro mostra un elenco a discesa delle pagine visitate in precedenza, mentre un clic prolungato del pulsante Avanti mostra un elenco delle pagine visitate dopo quella al momento attiva." #. X4Vow #: new_help.xhp @@ -1589,7 +1589,7 @@ "par_id71534889492593\n" "help.text" msgid "Open the Bookmark menu of the browser," -msgstr "Aprite il menu Segnalibri del browser," +msgstr "Aprire il menu Segnalibri del browser," #. kZCGj #: new_help.xhp @@ -1598,7 +1598,7 @@ "par_id71534889724361\n" "help.text" msgid "select Add bookmark, or" -msgstr "selezionate Aggiungi segnalibro, oppure" +msgstr "selezionare Aggiungi segnalibro, oppure" #. ZxDFu #: new_help.xhp @@ -1607,7 +1607,7 @@ "par_id961534889672410\n" "help.text" msgid "Press CommandCtrl+D on most browsers." -msgstr "Premete CmdCtrl+D, valido nella maggior parte dei browser." +msgstr "Premere CmdCtrl+D, valido nella maggior parte dei browser." #. a2wcp #: new_help.xhp @@ -1616,7 +1616,7 @@ "par_id191534889878558\n" "help.text" msgid "Enter the name, folder and meaningful tags for the bookmark." -msgstr "Digitate il nome, la cartella e i tag rappresentativi per il segnalibro." +msgstr "Digitare il nome, la cartella e i tag rappresentativi per il segnalibro." #. 34WGE #: new_help.xhp @@ -1625,7 +1625,7 @@ "par_id771534889897625\n" "help.text" msgid "Close the bookmark dialog of the web browser." -msgstr "Chiudete la finestra di dialogo del segnalibro del browser." +msgstr "Chiudere la finestra di dialogo del segnalibro del browser." #. s8CEr #: new_help.xhp @@ -1652,7 +1652,7 @@ "par_id401534890287783\n" "help.text" msgid "Choose the History menu of the web browser," -msgstr "Scegliete il menu Cronologia del browser web," +msgstr "Scegliere il menu Cronologia del browser web," #. DTRJ3 #: new_help.xhp @@ -1661,7 +1661,7 @@ "par_id991534890295828\n" "help.text" msgid "Select Show History." -msgstr "Selezionate Visualizza la cronologia (NdT: dal menu di Firefox)." +msgstr "Selezionare Visualizza la cronologia (NdT: dal menu di Firefox)." #. xmV5p #: new_help.xhp @@ -1670,7 +1670,7 @@ "par_id591534890299255\n" "help.text" msgid "Click on any entry of the history main window to open the corresponding help page." -msgstr "Nella finestra principale della cronologia, fate clic sulla voce che corrisponde alla pagina della guida desiderata." +msgstr "Nella finestra principale della cronologia, fare clic sulla voce che corrisponde alla pagina della guida desiderata." #. yPvvo #: new_help.xhp @@ -1688,7 +1688,7 @@ "par_idN10926\n" "help.text" msgid "You can copy contents from the Help page to the clipboard on your operating system with standard copy commands. For example:" -msgstr "Potete copiare il contenuto dalla pagina della Guida negli appunti del vostro sistema operativo utilizzando i comandi di copia standard. Ad esempio:" +msgstr "È possibile il contenuto dalla pagina della Guida negli appunti del proprio sistema operativo utilizzando i comandi di copia standard. Ad esempio:" #. JLdeb #: new_help.xhp @@ -1697,7 +1697,7 @@ "par_idN1092C\n" "help.text" msgid "On a Help page, select the text that you want to copy." -msgstr "Selezionate il testo della Guida che volete copiare." +msgstr "Selezionare il testo della Guida da copiare." #. sdDb6 #: new_help.xhp @@ -1706,7 +1706,7 @@ "par_idN10930\n" "help.text" msgid "Press CommandCtrl+C." -msgstr "Premete CmdCtrl+C." +msgstr "Premere CmdCtrl+C." #. 7atTn #: new_help.xhp @@ -1769,7 +1769,7 @@ "par_idN10A22\n" "help.text" msgid "In the Search for box, enter the text that you want to find." -msgstr "Nella casella Cerca, inserite il testo da trovare." +msgstr "Nella casella Cerca, inserire il testo da trovare." #. 9G9Bu #: new_help.xhp @@ -1778,7 +1778,7 @@ "par_idN10A48\n" "help.text" msgid "Select the search options that you want to use." -msgstr "Selezionate le opzioni di ricerca da utilizzare." +msgstr "Selezionare le opzioni di ricerca da utilizzare." #. GixFD #: new_help.xhp @@ -1787,7 +1787,7 @@ "par_idN10A26\n" "help.text" msgid "Press Enter." -msgstr "Premete Invio." +msgstr "Premere Invio." #. fFDvi #: new_help.xhp @@ -1796,7 +1796,7 @@ "par_idN10A59\n" "help.text" msgid "To find the previous occurrence of the search term on the page, click on the Up arrow. To find the next occurrence, click on the Down arrow." -msgstr "Per trovare l'occorrenza precedente del termine ricercato nella pagina fate clic su Freccia Su. Per trovare quella successiva, fate clic su Freccia Giù." +msgstr "Per trovare l'occorrenza precedente del termine ricercato nella pagina, fare clic su Freccia Su. Per trovare quella successiva, fare clic su Freccia Giù." #. mtikB #: new_help.xhp diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared/06.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared/06.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared/06.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared/06.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2021-07-24 16:18+0000\n" +"PO-Revision-Date: 2023-04-26 17:33+0000\n" "Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1546458306.000000\n" #. EUcrc @@ -32,7 +32,7 @@ "par_id431534783734366\n" "help.text" msgid "PDF Export General Options Dialog Image" -msgstr "Immagine finestra di dialogo delle opzioni generali dell'esportazione PDF" +msgstr "Immagine della finestra di dialogo delle opzioni generali di esportazione PDF" #. NiURr #: filter_screenshots.xhp @@ -41,7 +41,7 @@ "par_id434534783734366\n" "help.text" msgid "PDF Export Links Options Dialog Image" -msgstr "Immagine finestra di dialogo delle opzioni dei collegamenti dell'esportazione PDF" +msgstr "Immagine della finestra di dialogo delle opzioni dei collegamenti di esportazione PDF" #. 6V29R #: filter_screenshots.xhp @@ -50,7 +50,7 @@ "par_id434534703734366\n" "help.text" msgid "PDF Export View Options Dialog Image" -msgstr "Immagine finestra di dialogo delle opzioni di visualizzazione dell'esportazione PDF" +msgstr "Immagine della finestra di dialogo delle opzioni di visualizzazione di esportazione PDF" #. csH2C #: filter_screenshots.xhp @@ -59,7 +59,7 @@ "par_id434534703734306\n" "help.text" msgid "PDF Export User Interface Options Dialog Image" -msgstr "Immagine finestra di dialogo delle opzioni di interfaccia utente dell'esportazione PDF" +msgstr "Immagine della finestra di dialogo delle opzioni di interfaccia utente di esportazione PDF" #. Ea8o3 #: filter_screenshots.xhp @@ -68,7 +68,7 @@ "par_id434534703704306\n" "help.text" msgid "PDF Export Digital Signature Options Dialog Image" -msgstr "Immagine finestra di dialogo delle opzioni di firma digitale dell'esportazione PDF" +msgstr "Immagine della finestra di dialogo delle opzioni di firma digitale di esportazione PDF" #. mBPGC #: filter_screenshots.xhp @@ -77,7 +77,7 @@ "par_id434034703704306\n" "help.text" msgid "PDF Export Security Options Dialog Image" -msgstr "Immagine finestra di dialogo delle opzioni di sicurezza dell'esportazione PDF" +msgstr "Immagine della finestra di dialogo delle opzioni di sicurezza di esportazione PDF" #. UgJfc #: filter_screenshots.xhp @@ -104,7 +104,7 @@ "par_id431534783734366\n" "help.text" msgid "Options View Dialog Image" -msgstr "Immagine finestra di dialogo Vista delle opzioni" +msgstr "Immagine della finestra di dialogo Vista delle Opzioni" #. ncxnF #: optionen_screenshots.xhp @@ -113,7 +113,7 @@ "par_id431534383734366\n" "help.text" msgid "Options Load/Save Dialog Image" -msgstr "Immagine finestra di dialogo Carica/salva delle opzioni" +msgstr "Immagine della finestra di dialogo Carica/salva delle Opzioni" #. 4ESEt #: optionen_screenshots.xhp @@ -122,7 +122,7 @@ "par_id431534385734366\n" "help.text" msgid "Options HTML Dialog Image" -msgstr "Immagine finestra di dialogo HTML delle opzioni" +msgstr "Immagine della finestra di dialogo HTML delle Opzioni" #. FjGtw #: optionen_screenshots.xhp @@ -131,7 +131,7 @@ "par_id431564385734366\n" "help.text" msgid "Options Accessibility Dialog Image" -msgstr "Immagine finestra di dialogo Accessibilità delle opzioni" +msgstr "Immagine della finestra di dialogo Accessibilità delle Opzioni" #. XPDyx #: optionen_screenshots.xhp @@ -140,7 +140,7 @@ "par_id431564381734366\n" "help.text" msgid "Options Save Dialog Image" -msgstr "Immagine finestra di dialogo Salva delle opzioni" +msgstr "Immagine della finestra di dialogo Salva delle Opzioni" #. FAeBR #: optionen_screenshots.xhp @@ -149,7 +149,7 @@ "par_id481564381734366\n" "help.text" msgid "Options Advanced Dialog Image" -msgstr "Immagine finestra di dialogo Avanzate delle opzioni" +msgstr "Immagine della finestra di dialogo Avanzate delle Opzioni" #. NJzQs #: optionen_screenshots.xhp @@ -158,7 +158,7 @@ "par_id481364381734366\n" "help.text" msgid "Options Asian Dialog Image" -msgstr "Immagine finestra di dialogo Layout asiatico delle opzioni" +msgstr "Immagine della finestra di dialogo Layout asiatico delle Opzioni" #. zLdmq #: optionen_screenshots.xhp @@ -167,7 +167,7 @@ "par_id481394381734366\n" "help.text" msgid "Options CTL Dialog Image" -msgstr "Immagine finestra di dialogo CTL delle opzioni" +msgstr "Immagine della finestra di dialogo CTL delle Opzioni" #. kEHFK #: optionen_screenshots.xhp @@ -176,7 +176,7 @@ "par_id481394381724366\n" "help.text" msgid "Options Security Dialog Image" -msgstr "Immagine finestra di dialogo Sicurezza delle opzioni" +msgstr "Immagine della finestra di dialogo Sicurezza delle Opzioni" #. 4HEUe #: optionen_screenshots.xhp @@ -185,7 +185,7 @@ "par_id361572483243630\n" "help.text" msgid "Options Language Dialog Image" -msgstr "Immagine finestra di dialogo Lingue delle opzioni" +msgstr "Immagine della finestra di dialogo Lingue delle Opzioni" #. 9hcKT #: optionen_screenshots.xhp @@ -194,7 +194,7 @@ "par_id511572514566037\n" "help.text" msgid "Options General Dialog Image" -msgstr "Immagine finestra di dialogo Generale delle opzioni" +msgstr "Immagine della finestra di dialogo Generale delle Opzioni" #. 3B3a3 #: sc_screenshots.xhp @@ -230,7 +230,7 @@ "par_id341572255825997\n" "help.text" msgid "Font Effects Page Dialog Image" -msgstr "Immagine finestra di dialogo pagina degli Effetti carattere" +msgstr "Immagine della finestra di dialogo pagina degli Effetti carattere" #. 5Fp2F #: shared_cui_screenshots.xhp @@ -239,7 +239,7 @@ "par_id91572261220492\n" "help.text" msgid "Hyperlink Doc Page Dialog Image" -msgstr "Immagine finestra di dialogo pagina del Collegamento ipertestuale a documento" +msgstr "Immagine della finestra di dialogo pagina del Collegamento ipertestuale a documento" #. q52zT #: shared_cui_screenshots.xhp @@ -248,7 +248,7 @@ "par_id321572273256466\n" "help.text" msgid "Hyperlink Internet Dialog Image" -msgstr "Immagine finestra di dialogo pagina del Collegamento ipertestuale a Internet" +msgstr "Immagine della finestra di dialogo pagina del Collegamento ipertestuale a Internet" #. 7gbR6 #: shared_cui_screenshots.xhp @@ -257,7 +257,7 @@ "par_id681572278003926\n" "help.text" msgid "Hyperlink Mail Dialog Image" -msgstr "Immagine finestra di dialogo pagina del Collegamento ipertestuale a E-mail" +msgstr "Immagine della finestra di dialogo pagina del Collegamento ipertestuale a E-mail" #. UZndE #: shared_cui_screenshots.xhp @@ -266,7 +266,7 @@ "par_id911572279106813\n" "help.text" msgid "Hyperlink New Document Dialog Image" -msgstr "Immagine finestra di dialogo pagina del Collegamento ipertestuale a Nuovo documento" +msgstr "Immagine della finestra di dialogo pagina del Collegamento ipertestuale a Nuovo documento" #. j7M36 #: shared_cui_screenshots.xhp diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared/07.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared/07.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared/07.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared/07.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2019-01-02 19:48+0000\n" +"PO-Revision-Date: 2023-04-26 17:33+0000\n" "Last-Translator: Valter Mura \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1546458485.000000\n" #. 6qu9B @@ -41,7 +41,7 @@ "par_id3146946\n" "help.text" msgid "To create a new web page for the Internet, open a new HTML Document by choosing File - New." -msgstr "Per creare una nuova pagina web per Internet, aprite un nuovo Documento HTML scegliendo File - Nuovo." +msgstr "Per creare una nuova pagina web per Internet, aprire un nuovo Documento HTML scegliendo File - Nuovo." #. GqZYp #: 09000000.xhp @@ -50,7 +50,7 @@ "par_id3143284\n" "help.text" msgid "A tool for creating new web pages is the Web Layout mode, which you enable with View - Web." -msgstr "Uno strumento per la creazione di nuove pagine web è il modo Layout web, che potete abilitare scegliendo Visualizza - Web." +msgstr "Uno strumento per la creazione di nuove pagine web è il modo Layout web, che è possibile abilitare scegliendo Visualizza - Web." #. TPf7Q #: 09000000.xhp @@ -68,7 +68,7 @@ "par_id3150808\n" "help.text" msgid "Switch to the web layout mode by choosing View - Web or by opening a new HTML document." -msgstr "Passate al modo Layout web scegliendo Visualizza - Web o aprendo un nuovo documento HTML." +msgstr "Passare al modo Layout web scegliendo Visualizza - Web o aprendo un nuovo documento HTML." #. veBKZ #: 09000000.xhp @@ -77,4 +77,4 @@ "par_id3145136\n" "help.text" msgid "To create an HTML page from your $[officename] document, save the page using one of the \"HTML Document\" file types." -msgstr "Per creare una pagina HTML dal documento $[officename], salvate la pagina utilizzando uno dei tipi di file \"Documento HTML\"." +msgstr "Per creare una pagina HTML dal documento $[officename], salvare la pagina utilizzando uno dei tipi di file \"Documento HTML\"." diff -Nru libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared.po libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared.po --- libreoffice-7.4.6/translations/source/it/helpcontent2/source/text/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/helpcontent2/source/text/shared.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-04 18:04+0200\n" -"PO-Revision-Date: 2022-07-08 10:48+0000\n" +"PO-Revision-Date: 2023-04-05 12:34+0000\n" "Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1561913682.000000\n" #. fcmzq @@ -698,7 +698,7 @@ "par_id2783898\n" "help.text" msgid "Enable an Internet connection for %PRODUCTNAME. If you need a Proxy, check the %PRODUCTNAME Proxy settings in %PRODUCTNAME - PreferencesTools - Options - Internet. Then choose Check for Updates to check for the availability of a newer version of your office suite." -msgstr "Abilitare un collegamento internet per %PRODUCTNAME. Se è necessario un proxy, verificare le impostazioni proxy di %PRODUCTNAME in %PRODUCTNAME - PreferenzeStrumenti - Opzioni - Internet. Scegliere quindi Controlla aggiornamenti per verificare la disponibilità di una versione più recente della vostra suite per ufficio." +msgstr "Abilitare un collegamento internet per %PRODUCTNAME. Se è necessario un proxy, verificare le impostazioni proxy di %PRODUCTNAME in %PRODUCTNAME - PreferenzeStrumenti - Opzioni - Internet. Scegliere quindi Controlla aggiornamenti per verificare la disponibilità di una versione più recente della proprio suite per ufficio." #. JCKb7 #: main0108.xhp @@ -986,7 +986,7 @@ "par_id16200812240344\n" "help.text" msgid "Opens the Table Design. Double-click a preview to format the table." -msgstr "Apre la Struttura tabella. Fate doppio clic su un'anteprima per formattare la tabella." +msgstr "Apre la Struttura tabella. Fare doppio clic su un'anteprima per formattare la tabella." #. P72mU #: main0204.xhp @@ -2516,7 +2516,7 @@ "par_id398855439580083\n" "help.text" msgid "Opens a submenu where you can choose text formatting commands." -msgstr "Apre un sottomenu in cui si possono scegliere comandi di formattazione del testo." +msgstr "Apre un sottomenu in cui è possibile scegliere i comandi di formattazione del testo." #. JCTNH #: submenu_text.xhp @@ -2651,7 +2651,7 @@ "hd_id935919548287354\n" "help.text" msgid "lowercase" -msgstr "tutto minuscole" +msgstr "minuscole" #. ijGEm #: submenu_text.xhp diff -Nru libreoffice-7.4.6/translations/source/it/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.4.7/translations/source/it/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.4.6/translations/source/it/officecfg/registry/data/org/openoffice/Office.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/officecfg/registry/data/org/openoffice/Office.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-04 18:05+0200\n" -"PO-Revision-Date: 2022-07-15 17:09+0000\n" -"Last-Translator: Marco Marega \n" -"Language-Team: Italian \n" +"PO-Revision-Date: 2023-04-03 15:34+0000\n" +"Last-Translator: Valter Mura \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563043614.000000\n" #. HhMVS @@ -894,7 +894,7 @@ "DisplayName\n" "value.text" msgid "Text Box Bound Content" -msgstr "Contenuti associati del campo di testo" +msgstr "Contenuti associati alla casella di testo" #. TRX6V #: FormWizard.xcu diff -Nru libreoffice-7.4.6/translations/source/it/sw/messages.po libreoffice-7.4.7/translations/source/it/sw/messages.po --- libreoffice-7.4.6/translations/source/it/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/it/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-03-13 11:34+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564337991.000000\n" #. v3oJv @@ -8125,7 +8125,7 @@ #: sw/inc/strings.hrc:1088 msgctxt "STR_VIEWLAYOUT_ONE" msgid "Single-page view" -msgstr "Vista a singola pagina" +msgstr "Vista a pagina singola" #. 57ju6 #: sw/inc/strings.hrc:1089 diff -Nru libreoffice-7.4.6/translations/source/ja/cui/messages.po libreoffice-7.4.7/translations/source/ja/cui/messages.po --- libreoffice-7.4.6/translations/source/ja/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ja/cui/messages.po 2023-05-03 15:22:13.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-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: Jun NOGATA \n" +"PO-Revision-Date: 2023-03-15 14:33+0000\n" +"Last-Translator: Shinji Enoki \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563975021.000000\n" #. GyY9M @@ -10840,7 +10840,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:312 msgctxt "hyperlinkinternetpage|name_label" msgid "N_ame:" -msgstr "" +msgstr "名前(_A):" #. ZdkMh #: cui/uiconfig/ui/hyperlinkinternetpage.ui:330 diff -Nru libreoffice-7.4.6/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.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-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: Jun NOGATA \n" +"PO-Revision-Date: 2023-04-26 12:33+0000\n" +"Last-Translator: jun meguro \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565185748.000000\n" #. W5ukN @@ -33056,7 +33056,7 @@ "Label\n" "value.text" msgid "Move Item Up" -msgstr "" +msgstr "項目を上に移動" #. F6Rc7 #: WriterCommands.xcu @@ -33076,7 +33076,7 @@ "Label\n" "value.text" msgid "Move Item Down" -msgstr "" +msgstr "項目を下に移動" #. 2GyQ4 #: WriterCommands.xcu @@ -33146,7 +33146,7 @@ "Label\n" "value.text" msgid "Demote Outline Level with Subpoints" -msgstr "" +msgstr "サブレベルと共にアウトラインレベルを下げる" #. 8u4SF #: WriterCommands.xcu @@ -33166,7 +33166,7 @@ "Label\n" "value.text" msgid "Promote Outline Level with Subpoints" -msgstr "" +msgstr "サブレベルと共にアウトラインレベルを上げる" #. LiMgw #: WriterCommands.xcu @@ -33176,7 +33176,7 @@ "Label\n" "value.text" msgid "Move Item Up with Subpoints" -msgstr "" +msgstr "項目をサブレベルと共に上へ移動" #. GCegb #: WriterCommands.xcu @@ -33196,7 +33196,7 @@ "Label\n" "value.text" msgid "Move Item Down with Subpoints" -msgstr "" +msgstr "項目をサブレベルと共に下へ移動" #. JF2Ui #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/ja/sfx2/messages.po libreoffice-7.4.7/translations/source/ja/sfx2/messages.po --- libreoffice-7.4.6/translations/source/ja/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ja/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2022-05-22 13:26+0000\n" -"Last-Translator: JO3EMC \n" -"Language-Team: Japanese \n" +"PO-Revision-Date: 2023-03-15 14:33+0000\n" +"Last-Translator: Shinji Enoki \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562983822.000000\n" #. bHbFE @@ -1967,13 +1967,13 @@ #: include/sfx2/strings.hrc:354 msgctxt "STR_ACTION_IMPORT" msgid "~Import" -msgstr "" +msgstr "インポート(~I)" #. 8Cwfk #: include/sfx2/strings.hrc:355 msgctxt "STR_ACTION_EXTENSIONS" msgid "E~xtensions" -msgstr "" +msgstr "拡張機能(~X)" #. idGvM #: include/sfx2/strings.hrc:356 diff -Nru libreoffice-7.4.6/translations/source/ja/svx/messages.po libreoffice-7.4.7/translations/source/ja/svx/messages.po --- libreoffice-7.4.6/translations/source/ja/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ja/svx/messages.po 2023-05-03 15:22:13.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: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: Jun NOGATA \n" +"PO-Revision-Date: 2023-04-26 12:33+0000\n" +"Last-Translator: jun meguro \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1550994318.000000\n" #. 3GkZj @@ -11804,7 +11804,7 @@ #: svx/inc/swframeposstrings.hrc:36 svx/inc/swframeposstrings.hrc:53 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Entire paragraph area" -msgstr "" +msgstr "段落範囲全体" #. CrRe5 #: svx/inc/swframeposstrings.hrc:37 svx/inc/swframeposstrings.hrc:54 @@ -11816,25 +11816,25 @@ #: svx/inc/swframeposstrings.hrc:38 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Left of page text area" -msgstr "" +msgstr "ページのテキスト範囲の左" #. uio8s #: svx/inc/swframeposstrings.hrc:39 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Right of page text area" -msgstr "" +msgstr "ページのテキスト範囲の右" #. MjjYE #: svx/inc/swframeposstrings.hrc:40 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Left of paragraph text area" -msgstr "" +msgstr "段落のテキスト範囲の左" #. DAEs9 #: svx/inc/swframeposstrings.hrc:41 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Right of paragraph text area" -msgstr "" +msgstr "段落のテキスト範囲の右" #. qvFns #: svx/inc/swframeposstrings.hrc:42 diff -Nru libreoffice-7.4.6/translations/source/ja/sw/messages.po libreoffice-7.4.7/translations/source/ja/sw/messages.po --- libreoffice-7.4.6/translations/source/ja/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ja/sw/messages.po 2023-05-03 15:22:13.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-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" -"Last-Translator: Jun NOGATA \n" +"PO-Revision-Date: 2023-04-26 12:33+0000\n" +"Last-Translator: Shinji Enoki \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563165692.000000\n" #. v3oJv @@ -9961,7 +9961,7 @@ #: sw/inc/strings.hrc:1432 msgctxt "STR_CONTENT_CONTROL_PLACEHOLDER" msgid "Click here to enter text" -msgstr "" +msgstr "ここをクリックしてテキストを入力" #. N3ocz #: sw/inc/strings.hrc:1433 @@ -15764,7 +15764,7 @@ #: sw/uiconfig/swriter/ui/framedialog.ui:111 msgctxt "framedialog|type" msgid "Position and Size" -msgstr "" +msgstr "位置とサイズ" #. PGiYy #: sw/uiconfig/swriter/ui/framedialog.ui:134 @@ -22500,7 +22500,7 @@ #: sw/uiconfig/swriter/ui/objectdialog.ui:110 msgctxt "objectdialog|type" msgid "Position and Size" -msgstr "" +msgstr "位置とサイズ" #. ADJiB #: sw/uiconfig/swriter/ui/objectdialog.ui:133 @@ -24808,7 +24808,7 @@ #: sw/uiconfig/swriter/ui/picturedialog.ui:136 msgctxt "picturedialog|type" msgid "Position and Size" -msgstr "" +msgstr "位置とサイズ" #. AJHDA #: sw/uiconfig/swriter/ui/picturedialog.ui:183 @@ -24832,7 +24832,7 @@ #: sw/uiconfig/swriter/ui/picturedialog.ui:327 msgctxt "picturedialog|picture" msgid "Rotation" -msgstr "" +msgstr "回転" #. ggt23 #: sw/uiconfig/swriter/ui/picturedialog.ui:375 diff -Nru libreoffice-7.4.6/translations/source/kk/sc/messages.po libreoffice-7.4.7/translations/source/kk/sc/messages.po --- libreoffice-7.4.6/translations/source/kk/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kk/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-02 12:41+0000\n" +"PO-Revision-Date: 2023-03-22 09:33+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: Kazakh \n" "Language: kk\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563104974.000000\n" #. kBovX @@ -21010,7 +21010,7 @@ #: sc/uiconfig/scalc/ui/databaroptions.ui:418 msgctxt "databaroptions|axis_pos" msgid "Automatic" -msgstr "Авто" +msgstr "Автоматты түрде" #. Exmsc #: sc/uiconfig/scalc/ui/databaroptions.ui:419 diff -Nru libreoffice-7.4.6/translations/source/kok/connectivity/registry/ado/org/openoffice/Office/DataAccess.po libreoffice-7.4.7/translations/source/kok/connectivity/registry/ado/org/openoffice/Office/DataAccess.po --- libreoffice-7.4.6/translations/source/kok/connectivity/registry/ado/org/openoffice/Office/DataAccess.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kok/connectivity/registry/ado/org/openoffice/Office/DataAccess.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2013-05-23 23:52+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" +"Last-Translator: Yashodhan Sawardekar \n" +"Language-Team: Konkani \n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1369353165.000000\n" #. 9EAjq @@ -23,7 +24,7 @@ "DriverTypeDisplayName\n" "value.text" msgid "ADO" -msgstr "" +msgstr "एडीओ" #. nw3hx #: Drivers.xcu @@ -33,7 +34,7 @@ "DriverTypeDisplayName\n" "value.text" msgid "Microsoft Access" -msgstr "" +msgstr "मायक्रोसॉफ्ट ऍक्सेस" #. uAES5 #: Drivers.xcu @@ -43,4 +44,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "Microsoft Access 2007" -msgstr "" +msgstr "मायक्रोसॉफ्ट ऍक्सेस 2007" diff -Nru libreoffice-7.4.6/translations/source/kok/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po libreoffice-7.4.7/translations/source/kok/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po --- libreoffice-7.4.6/translations/source/kok/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kok/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,24 +4,24 @@ "Project-Id-Version: PACKAGE 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: 2017-12-14 13:00+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" +"Last-Translator: Yashodhan Sawardekar \n" +"Language-Team: Konkani \n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1513256454.000000\n" #. bBcuA #: Drivers.xcu -#, fuzzy msgctxt "" "Drivers.xcu\n" ".Drivers.Installed.sdbc:dbase:*\n" "DriverTypeDisplayName\n" "value.text" msgid "dBASE" -msgstr "पायोTholl" +msgstr "डीबेस" diff -Nru libreoffice-7.4.6/translations/source/kok/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po libreoffice-7.4.7/translations/source/kok/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po --- libreoffice-7.4.6/translations/source/kok/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kok/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2014-09-26 07:45+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" +"Last-Translator: Yashodhan Sawardekar \n" +"Language-Team: Konkani \n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1411717556.000000\n" #. vCwUq @@ -23,7 +24,7 @@ "DriverTypeDisplayName\n" "value.text" msgid "Evolution Local" -msgstr "" +msgstr "स्थानिक विकास" #. xjZD3 #: Drivers.xcu diff -Nru libreoffice-7.4.6/translations/source/kok/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po libreoffice-7.4.7/translations/source/kok/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po --- libreoffice-7.4.6/translations/source/kok/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kok/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-10-20 13:07+0200\n" -"PO-Revision-Date: 2014-01-04 01:30+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" +"Last-Translator: Yashodhan Sawardekar \n" +"Language-Team: Konkani \n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1388799014.000000\n" #. DfEKx @@ -23,7 +24,7 @@ "DriverTypeDisplayName\n" "value.text" msgid "Firebird Embedded" -msgstr "" +msgstr "फायरबर्ड एंबेडेड" #. ZVyum #: Drivers.xcu diff -Nru libreoffice-7.4.6/translations/source/kok/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po libreoffice-7.4.7/translations/source/kok/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po --- libreoffice-7.4.6/translations/source/kok/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kok/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2013-11-20 16:15+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" +"Last-Translator: Yashodhan Sawardekar \n" +"Language-Team: Konkani \n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1384964112.000000\n" #. yescE @@ -23,4 +24,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "HSQLDB Embedded" -msgstr "" +msgstr "एचएसक्यूएलडीबी एंबेडेड" diff -Nru libreoffice-7.4.6/translations/source/kok/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po libreoffice-7.4.7/translations/source/kok/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po --- libreoffice-7.4.6/translations/source/kok/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kok/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2013-05-23 23:52+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-28 06:34+0000\n" +"Last-Translator: Yashodhan Sawardekar \n" +"Language-Team: Konkani \n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1369353166.000000\n" #. LMk2Z @@ -23,7 +24,7 @@ "DriverTypeDisplayName\n" "value.text" msgid "JDBC" -msgstr "" +msgstr "जेडबीसी" #. DizFd #: Drivers.xcu @@ -33,4 +34,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "Oracle JDBC" -msgstr "" +msgstr "ऑरेकले जेडबीसी" diff -Nru libreoffice-7.4.6/translations/source/kok/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po libreoffice-7.4.7/translations/source/kok/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po --- libreoffice-7.4.6/translations/source/kok/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kok/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2013-05-23 23:52+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" +"Last-Translator: Yashodhan Sawardekar \n" +"Language-Team: Konkani \n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1369353169.000000\n" #. GJEo8 @@ -23,4 +24,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "ODBC" -msgstr "" +msgstr "ओडीबीसी" diff -Nru libreoffice-7.4.6/translations/source/kok/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po libreoffice-7.4.7/translations/source/kok/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po --- libreoffice-7.4.6/translations/source/kok/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kok/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2013-05-23 23:52+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" +"Last-Translator: Yashodhan Sawardekar \n" +"Language-Team: Konkani \n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1369353169.000000\n" #. b2XSs @@ -23,4 +24,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "PostgreSQL" -msgstr "" +msgstr "पोस्टग्रेसक्यूएल" diff -Nru libreoffice-7.4.6/translations/source/kok/dictionaries/ckb.po libreoffice-7.4.7/translations/source/kok/dictionaries/ckb.po --- libreoffice-7.4.6/translations/source/kok/dictionaries/ckb.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kok/dictionaries/ckb.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,14 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-02-18 12:38+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" +"Last-Translator: Yashodhan Sawardekar \n" +"Language-Team: Konkani \n" +"Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" #. UGHNx #: description.xml @@ -20,4 +22,4 @@ "dispname\n" "description.text" msgid "Central Kurdish (Sorani) spelling dictionary" -msgstr "" +msgstr "मध्य कुर्दिश (सोरानी) अक्षरशः शब्दकोश" diff -Nru libreoffice-7.4.6/translations/source/kok/dictionaries/eo.po libreoffice-7.4.7/translations/source/kok/dictionaries/eo.po --- libreoffice-7.4.6/translations/source/kok/dictionaries/eo.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kok/dictionaries/eo.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,14 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-04-12 12:05+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" +"Last-Translator: Yashodhan Sawardekar \n" +"Language-Team: Konkani \n" +"Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" #. 8TKYb #: description.xml @@ -20,4 +22,4 @@ "dispname\n" "description.text" msgid "Spelling dictionary, thesaurus, and hyphenator for Esperanto" -msgstr "" +msgstr "एस्पेरान्तोसाठी वर्तणूक शब्दकोश, समानार्थक शब्दसंचय आणि हायफेनेटर" diff -Nru libreoffice-7.4.6/translations/source/kok/dictionaries/si_LK.po libreoffice-7.4.7/translations/source/kok/dictionaries/si_LK.po --- libreoffice-7.4.6/translations/source/kok/dictionaries/si_LK.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kok/dictionaries/si_LK.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,23 +4,23 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2017-12-14 13:00+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" +"Last-Translator: Yashodhan Sawardekar \n" +"Language-Team: Konkani \n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1513256459.000000\n" #. iDzxR #: description.xml -#, fuzzy msgctxt "" "description.xml\n" "dispname\n" "description.text" msgid "Sinhala spelling dictionary" -msgstr "बेंगोली वर्णरचना शब्दकोशBengali OkxorRochona Xobdkox" +msgstr "सिंहल वर्णनशः शब्दकोश" diff -Nru libreoffice-7.4.6/translations/source/kok/extensions/source/update/check/org/openoffice/Office.po libreoffice-7.4.7/translations/source/kok/extensions/source/update/check/org/openoffice/Office.po --- libreoffice-7.4.6/translations/source/kok/extensions/source/update/check/org/openoffice/Office.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/kok/extensions/source/update/check/org/openoffice/Office.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,20 +4,20 @@ "Project-Id-Version: PACKAGE 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: 2017-12-11 22:34+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-28 06:34+0000\n" +"Last-Translator: Yashodhan Sawardekar \n" +"Language-Team: Konkani \n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1513031656.000000\n" #. uuumn #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeHelp.UpdateCheckJob\n" diff -Nru libreoffice-7.4.6/translations/source/nb/extensions/messages.po libreoffice-7.4.7/translations/source/nb/extensions/messages.po --- libreoffice-7.4.6/translations/source/nb/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nb/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-04-25 17:34+0000\n" +"PO-Revision-Date: 2023-03-22 09:33+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1554919830.000000\n" #. cBx8W @@ -469,7 +469,7 @@ #: extensions/inc/stringarrays.hrc:136 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" -msgstr "foreldre" +msgstr "overordnet" #. pQZAG #: extensions/inc/stringarrays.hrc:137 diff -Nru libreoffice-7.4.6/translations/source/nb/helpcontent2/source/text/shared/05.po libreoffice-7.4.7/translations/source/nb/helpcontent2/source/text/shared/05.po --- libreoffice-7.4.6/translations/source/nb/helpcontent2/source/text/shared/05.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nb/helpcontent2/source/text/shared/05.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-11-16 12:09+0100\n" -"PO-Revision-Date: 2021-11-23 10:48+0000\n" +"PO-Revision-Date: 2023-03-25 16:33+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1548254391.000000\n" #. WPTtk @@ -761,7 +761,7 @@ "hd_id3149140\n" "help.text" msgid "Tips" -msgstr "Tips" +msgstr "Tipps" #. JvD9y #: 00000120.xhp diff -Nru libreoffice-7.4.6/translations/source/nb/helpcontent2/source/text/shared/guide.po libreoffice-7.4.7/translations/source/nb/helpcontent2/source/text/shared/guide.po --- libreoffice-7.4.6/translations/source/nb/helpcontent2/source/text/shared/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nb/helpcontent2/source/text/shared/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-09-09 14:36+0000\n" +"PO-Revision-Date: 2023-03-25 16:34+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565211984.000000\n" #. iharT @@ -28211,7 +28211,7 @@ "par_idN10B39\n" "help.text" msgid "World Wide Web Consortium Pages on Extensible Stylesheet Language (XSL)" -msgstr "World Wide Web Consortium Pages on Extensible Stylesheet Language (XSL)" +msgstr "World Wide Web Consortium Pages on Extensible Stilark Språk (XSL)" #. akz8u #: xsltfilter.xhp diff -Nru libreoffice-7.4.6/translations/source/nb/helpcontent2/source/text/swriter/guide.po libreoffice-7.4.7/translations/source/nb/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.4.6/translations/source/nb/helpcontent2/source/text/swriter/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nb/helpcontent2/source/text/swriter/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-07-15 17:18+0000\n" +"PO-Revision-Date: 2023-03-08 09:34+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565212247.000000\n" #. XAt2Y @@ -4955,7 +4955,7 @@ "par_id3156384\n" "help.text" msgid "user_tel_home" -msgstr "user_tel_home" +msgstr "bruker_telf_hjem" #. 4psE9 #: fields_userdata.xhp diff -Nru libreoffice-7.4.6/translations/source/nb/svx/messages.po libreoffice-7.4.7/translations/source/nb/svx/messages.po --- libreoffice-7.4.6/translations/source/nb/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nb/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-02-28 18:04+0000\n" +"PO-Revision-Date: 2023-03-22 09:33+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \n" "Language: nb\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1561033255.000000\n" #. 3GkZj @@ -17068,13 +17068,13 @@ #: svx/uiconfig/ui/fontworkcharacterspacingcontrol.ui:65 msgctxt "fontworkcharacterspacingcontrol|RID_SVXSTR_CHARS_SPACING_LOOSE" msgid "_Loose" -msgstr "Løst" +msgstr "Løse" #. rtgGT #: svx/uiconfig/ui/fontworkcharacterspacingcontrol.ui:80 msgctxt "fontworkcharacterspacingcontrol|RID_SVXSTR_CHARS_SPACING_VERY_LOOSE" msgid "Very _Loose" -msgstr "Veldig løst" +msgstr "Veldig løse" #. 8FhWG #: svx/uiconfig/ui/fontworkcharacterspacingcontrol.ui:95 diff -Nru libreoffice-7.4.6/translations/source/nl/cui/messages.po libreoffice-7.4.7/translations/source/nl/cui/messages.po --- libreoffice-7.4.6/translations/source/nl/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -3055,7 +3055,7 @@ #: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." -msgstr "Automatisch alfabetische indexvermeldingen markeren met behulp van een concordantiebestand." +msgstr "Automatisch alfabetische indexitems markeren met behulp van een concordantiebestand." #. DBfad #. local help missing @@ -3290,7 +3290,7 @@ #: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar." -msgstr "Wilt u terugkeren naar de standaardinstelling nadat u een lijststijl hebt toegepast? Klik op Lijst met opsommingstekens of Genummerde lijst wisselen op de werkbalk Opmaak." +msgstr "Wilt u terugkeren naar de standaardinstelling nadat u een lijstopmaakprofiel hebt toegepast? Klik op Ongeordende lijst of Geordende lijst op de werkbalk Opmaak." #. wAFRP #: cui/inc/tipoftheday.hrc:235 @@ -3732,7 +3732,7 @@ #: cui/inc/treeopt.hrc:46 msgctxt "SID_GENERAL_OPTIONS_RES" msgid "Basic IDE" -msgstr "Basic IDE" +msgstr "Basic-IDE" #. ZS4Sx #: cui/inc/treeopt.hrc:47 diff -Nru libreoffice-7.4.6/translations/source/nl/dictionaries/nl_NL.po libreoffice-7.4.7/translations/source/nl/dictionaries/nl_NL.po --- libreoffice-7.4.6/translations/source/nl/dictionaries/nl_NL.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/dictionaries/nl_NL.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2013-05-24 00:21+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-04-29 09:35+0000\n" +"Last-Translator: kees538 \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1369354872.000000\n" #. EGax2 @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Dutch spelling dictionary, and hyphenation rules" -msgstr "Nederlands spelling woordenboek en woordafbrekingsregels" +msgstr "Nederlands spellingswoordenboek en woordafbrekingsregels" diff -Nru libreoffice-7.4.6/translations/source/nl/extensions/messages.po libreoffice-7.4.7/translations/source/nl/extensions/messages.po --- libreoffice-7.4.6/translations/source/nl/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -1837,7 +1837,7 @@ #: extensions/inc/strings.hrc:197 msgctxt "RID_STR_TOGGLE" msgid "Toggle" -msgstr "Omschakelen" +msgstr "Aan/uit" #. 2RSKH #: extensions/inc/strings.hrc:198 diff -Nru libreoffice-7.4.6/translations/source/nl/extras/source/autocorr/emoji.po libreoffice-7.4.7/translations/source/nl/extras/source/autocorr/emoji.po --- libreoffice-7.4.6/translations/source/nl/extras/source/autocorr/emoji.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/extras/source/autocorr/emoji.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516391994.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -7674,7 +7674,7 @@ "CURRENCY_EXCHANGE\n" "LngText.text" msgid "exchange" -msgstr "valuta wisselen" +msgstr "Wisselkantoor" #. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji #. gEQqV diff -Nru libreoffice-7.4.6/translations/source/nl/formula/messages.po libreoffice-7.4.7/translations/source/nl/formula/messages.po --- libreoffice-7.4.6/translations/source/nl/formula/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/formula/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,9 +4,9 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-09-21 12:33+0200\n" +"PO-Revision-Date: 2023-04-19 17:26+0200\n" "Last-Translator: kees538 \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2073,13 +2073,19 @@ #: formula/inc/core_resource.hrc:2627 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "GAMMAINV" +msgstr "GAMMAINV" + +#. UsH9F +#: formula/inc/core_resource.hrc:2628 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "GAMMA.INV" msgstr "GAMMA.INV" #. uVsmG #: formula/inc/core_resource.hrc:2629 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "TINV" -msgstr "T.INV" +msgstr "TINV" #. BARyo #: formula/inc/core_resource.hrc:2630 @@ -2087,6 +2093,12 @@ msgid "T.INV.2T" msgstr "T.INV.2T" +#. QEgDG +#: formula/inc/core_resource.hrc:2631 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "T.INV" +msgstr "T.INV" + #. GyiqD #: formula/inc/core_resource.hrc:2632 msgctxt "RID_STRLIST_FUNCTION_NAMES" diff -Nru libreoffice-7.4.6/translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.4.7/translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.4.6/translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/helpcontent2/source/text/sbasic/shared/03.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-03-18 18:32+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1548055268.000000\n" #. ViEWM @@ -22433,7 +22433,7 @@ "par_id301600788076785\n" "help.text" msgid "Accessing locale and region-dependent settings such as number formatting, currency and timezones." -msgstr "Toegang tot land- en regioafhankelijke instellingen zoals getalnotatie, valuta en tijdzones." +msgstr "Toegang tot land- en regioafhankelijke instellingen zoals getalopmaak, valuta en tijdzones." #. 2f7KC #: sf_region.xhp diff -Nru libreoffice-7.4.6/translations/source/nl/helpcontent2/source/text/scalc/guide.po libreoffice-7.4.7/translations/source/nl/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.4.6/translations/source/nl/helpcontent2/source/text/scalc/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/helpcontent2/source/text/scalc/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-07-06 16:22+0000\n" +"PO-Revision-Date: 2023-03-18 18:32+0000\n" "Last-Translator: kees538 \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564161225.000000\n" #. NXy6S @@ -5126,7 +5126,7 @@ "par_id971656104293716\n" "help.text" msgid "The number format of these cell styles cannot be changed in the cell style itself; you must format it in the data source." -msgstr "De getalnotatie van deze celopmaakprofielen kan niet worden gewijzigd in het celopmaakprofiel zelf; u moet het opmaken in de gegevensbron." +msgstr "De getalopmaak van deze celopmaakprofielen kan niet worden gewijzigd in het celopmaakprofiel zelf; u moet het opmaken in de gegevensbron." #. CeKoE #: datapilot_grouping.xhp diff -Nru libreoffice-7.4.6/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -1734,7 +1734,7 @@ "Label\n" "value.text" msgid "Cycle Cell Reference Types" -msgstr "Type celverwijzing wisselen" +msgstr "Type celverwijzing" #. 8Zduf #: CalcCommands.xcu @@ -3844,7 +3844,7 @@ "Label\n" "value.text" msgid "Change Anchor" -msgstr "Verankering wisselen" +msgstr "Verankering" #. NAJXq #: CalcCommands.xcu @@ -9464,7 +9464,7 @@ "Label\n" "value.text" msgid "Change Slide Master..." -msgstr "Diamodel wisselen..." +msgstr "Diamodel..." #. 7AUwW #: DrawImpressCommands.xcu @@ -12654,7 +12654,7 @@ "Label\n" "value.text" msgid "Thread" -msgstr "Draad" +msgstr "Conversatie" #. HfDus #: Effects.xcu @@ -13634,7 +13634,7 @@ "Label\n" "value.text" msgid "Thread" -msgstr "Draad" +msgstr "Conversatie" #. deSRu #: Effects.xcu @@ -14384,7 +14384,7 @@ "Label\n" "value.text" msgid "Toggle pause" -msgstr "Pauze schakelen" +msgstr "Pauze" #. rfNfc #: Effects.xcu @@ -18884,7 +18884,7 @@ "Label\n" "value.text" msgid "Entire Page" -msgstr "Hele dia" +msgstr "Hele pagina" #. Es6QK #: GenericCommands.xcu @@ -20026,7 +20026,7 @@ "Label\n" "value.text" msgid "~tOGGLE cASE" -msgstr "Hoofd-/kleine ~letters wisselen" +msgstr "Hoofd-/kleine ~letters" #. akUWc #: GenericCommands.xcu @@ -20386,7 +20386,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Read Only Mode" -msgstr "Modus Alleen lezen wisselen" +msgstr "Modus Alleen lezen" #. BuuAR #: GenericCommands.xcu @@ -20806,7 +20806,7 @@ "Label\n" "value.text" msgid "Page Width" -msgstr "Diabreedte" +msgstr "~Paginabreedte" #. aPYJv #: GenericCommands.xcu @@ -25256,7 +25256,7 @@ "Label\n" "value.text" msgid "Toggle Extrusion" -msgstr "Omzetten naar 3D-weergave" +msgstr "Naar 3D-weergave" #. iYGim #: GenericCommands.xcu @@ -25636,7 +25636,7 @@ "Label\n" "value.text" msgid "Delete Comment Thread" -msgstr "Notitiedraad verwijderen" +msgstr "Conversatie verwijderen" #. s3CwY #: GenericCommands.xcu @@ -25656,7 +25656,7 @@ "Label\n" "value.text" msgid "Resolved Thread" -msgstr "Opgeloste draad" +msgstr "Opgeloste conversatie" #. JZHpu #: GenericCommands.xcu @@ -26096,7 +26096,7 @@ "Label\n" "value.text" msgid "R~eference" -msgstr "R~eferentie" +msgstr "V~erwijzing" #. CGExU #: GenericCommands.xcu @@ -30146,7 +30146,7 @@ "Label\n" "value.text" msgid "Toggle Direct Cursor Mode" -msgstr "Wissel naar DirectCursor modus" +msgstr "DirectCursor modus" #. ADz36 #: WriterCommands.xcu @@ -30756,7 +30756,7 @@ "Label\n" "value.text" msgid "Content Control Properties" -msgstr "Eigenschappen voor inhoudsbesturingselementen" +msgstr "Eigenschappen voor besturingselementen" #. npNpZ #: WriterCommands.xcu @@ -30926,7 +30926,7 @@ "Label\n" "value.text" msgid "Content Controls" -msgstr "Inhoudsbesturingselement" +msgstr "Besturingselement" #. isyh9 #: WriterCommands.xcu @@ -30936,7 +30936,7 @@ "Label\n" "value.text" msgid "Insert Rich Text Content Control" -msgstr "Rich Text Content-besturingselement invoegen" +msgstr "Rich-Text" #. GH8DZ #: WriterCommands.xcu @@ -30946,7 +30946,7 @@ "Label\n" "value.text" msgid "Insert Check Box Content Control" -msgstr "Inhoudsbesturingselement keuzevakje invoegen" +msgstr "Keuzevakje" #. h2RBS #: WriterCommands.xcu @@ -30956,7 +30956,7 @@ "Label\n" "value.text" msgid "Insert Drop-Down List Content Control" -msgstr "Inhoudsbeheer in keuzelijst invoegen" +msgstr "Keuzelijst" #. Avn9E #: WriterCommands.xcu @@ -30966,7 +30966,7 @@ "Label\n" "value.text" msgid "Insert Picture Content Control" -msgstr "Besturingselement beeldinhoud invoegen" +msgstr "Afbeelding" #. oxa64 #: WriterCommands.xcu @@ -30976,7 +30976,7 @@ "Label\n" "value.text" msgid "Insert Date Content Control" -msgstr "Beturingselement Datum invoegen" +msgstr "Datum" #. HxFAE #: WriterCommands.xcu @@ -31116,7 +31116,7 @@ "Label\n" "value.text" msgid "Change Anchor" -msgstr "Verankering wisselen" +msgstr "Verankering" #. 9YUDU #: WriterCommands.xcu @@ -33966,7 +33966,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Restart Numbering" -msgstr "Nieuwe nummering wisselen" +msgstr "Nieuwe nummering" #. ofjeC #: WriterCommands.xcu @@ -36006,7 +36006,7 @@ "Label\n" "value.text" msgid "Toggle Outline Folding" -msgstr "Overzicht uitvouwen wisselen" +msgstr "Overzicht uitvouwen" #. mByUW #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/nl/sc/messages.po libreoffice-7.4.7/translations/source/nl/sc/messages.po --- libreoffice-7.4.6/translations/source/nl/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-03-20 09:33+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -14412,7 +14412,7 @@ #: sc/inc/scfuncs.hrc:3468 msgctxt "SC_OPCODE_STYLE" msgid "Style 2" -msgstr "Stijl 2" +msgstr "Opmaakprofiel 2" #. HBrCD #: sc/inc/scfuncs.hrc:3469 diff -Nru libreoffice-7.4.6/translations/source/nl/sd/messages.po libreoffice-7.4.7/translations/source/nl/sd/messages.po --- libreoffice-7.4.6/translations/source/nl/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-10 11:03+0000\n" +"PO-Revision-Date: 2023-04-29 09:35+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562579951.000000\n" #. WDjkB @@ -5209,7 +5209,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:633 msgctxt "customanimationspanel|box1_label" msgid "Animation Deck" -msgstr "Animatiebereik" +msgstr "Animatiepaneel" #. bUvjt #: sd/uiconfig/simpress/ui/customanimationspanel.ui:645 diff -Nru libreoffice-7.4.6/translations/source/nl/svx/messages.po libreoffice-7.4.7/translations/source/nl/svx/messages.po --- libreoffice-7.4.6/translations/source/nl/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564903866.000000\n" #. 3GkZj @@ -7336,13 +7336,13 @@ #: include/svx/strings.hrc:1316 msgctxt "RID_SVXSTR_INSERT_HELPTEXT" msgid "Insert mode. Click to change to overwrite mode." -msgstr "Invoegmodus. Klik om naar de Overschrijfmodus te wisselen." +msgstr "Invoegmodus. Klik om naar de Overschrijfmodus te gaan." #. ZCWNC #: include/svx/strings.hrc:1317 msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT" msgid "Overwrite mode. Click to change to insert mode." -msgstr "Overschrijfmodus. Klik om naar de Invoegmodus te wisselen." +msgstr "Overschrijfmodus. Klik om naar de Invoegmodus te gaan." #. 5GD8g #. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'. diff -Nru libreoffice-7.4.6/translations/source/nl/sw/messages.po libreoffice-7.4.7/translations/source/nl/sw/messages.po --- libreoffice-7.4.6/translations/source/nl/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -6014,7 +6014,7 @@ #: sw/inc/strings.hrc:677 msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE" msgid "Toggle" -msgstr "Wisselen" +msgstr "Aan/uit" #. YBDFD #: sw/inc/strings.hrc:678 @@ -10360,13 +10360,13 @@ #: sw/uiconfig/swriter/ui/annotation.ui:48 msgctxt "annotationmenu|resolvethread" msgid "Resolve Thread" -msgstr "Onderwerp opgelost" +msgstr "Conversatie opgelost" #. gE5Sy #: sw/uiconfig/swriter/ui/annotation.ui:56 msgctxt "annotationmenu|unresolvethread" msgid "Unresolve Thread" -msgstr "Niet opgeloste draad" +msgstr "Oplossing conversatie annuleren" #. qAYam #: sw/uiconfig/swriter/ui/annotation.ui:64 @@ -10378,7 +10378,7 @@ #: sw/uiconfig/swriter/ui/annotation.ui:72 msgctxt "annotationmenu|deletethread" msgid "Delete _Comment Thread" -msgstr "Ver_wijder notitiedraad" +msgstr "Conversatie ver_wijderen" #. z2NAS #: sw/uiconfig/swriter/ui/annotation.ui:80 @@ -10864,7 +10864,7 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:298 msgctxt "autoformattable|extended_tip|numformatcb" msgid "Includes number formats in the selected table style." -msgstr "Bevat getalnotaties in het geselecteerde tabel-opmaakprofiel." +msgstr "Bevat getalopmaak in het geselecteerde tabel-opmaakprofiel." #. 6jMct #: sw/uiconfig/swriter/ui/autoformattable.ui:309 @@ -12574,7 +12574,7 @@ #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:26 msgctxt "contentcontroldlg|ContentControlDialog" msgid "Content Control Properties" -msgstr "Eigenschappen voor inhoudsbesturingselementen" +msgstr "Eigenschappen voor besturingselementen" #. bHXzy #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:102 @@ -12670,7 +12670,7 @@ #: sw/uiconfig/swriter/ui/contentcontrollistitemdlg.ui:8 msgctxt "contentcontrollistitemdlg|ContentControlListItemDialog" msgid "Content Control List Item Properties" -msgstr "Eigenschappen lijstitem inhoudsbesturingselement" +msgstr "Eigenschappen lijstitem besturingselement" #. 4AXKq #: sw/uiconfig/swriter/ui/contentcontrollistitemdlg.ui:90 @@ -16736,7 +16736,7 @@ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:135 msgctxt "inputfielddialog|inputfieldname" msgid "Reference:" -msgstr "Referentie:" +msgstr "Verwijzing:" #. c3zXj #: sw/uiconfig/swriter/ui/inputfielddialog.ui:176 @@ -29263,7 +29263,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:687 msgctxt "tocindexpage|display" msgid "Caption Text" -msgstr "Bijschrift" +msgstr "Bijschrifttekst" #. qgQtQ #: sw/uiconfig/swriter/ui/tocindexpage.ui:691 diff -Nru libreoffice-7.4.6/translations/source/nl/vcl/messages.po libreoffice-7.4.7/translations/source/nl/vcl/messages.po --- libreoffice-7.4.6/translations/source/nl/vcl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/vcl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-08-24 12:29+0200\n" -"PO-Revision-Date: 2022-05-03 12:41+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: kees538 \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562579992.000000\n" #. k5jTM @@ -1444,7 +1444,7 @@ #: vcl/inc/font/OpenTypeFeatureStrings.hrc:53 msgctxt "STR_FONT_FEATURE_ID_JALT" msgid "Justification Alternates" -msgstr "Uitvullen wisselen" +msgstr "Uitvullen" #. ALP2e #: vcl/inc/font/OpenTypeFeatureStrings.hrc:54 diff -Nru libreoffice-7.4.6/translations/source/nl/xmlsecurity/messages.po libreoffice-7.4.7/translations/source/nl/xmlsecurity/messages.po --- libreoffice-7.4.6/translations/source/nl/xmlsecurity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nl/xmlsecurity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:21+0100\n" -"PO-Revision-Date: 2022-12-10 11:03+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1555832153.000000\n" #. EyJrF @@ -130,7 +130,7 @@ #: xmlsecurity/inc/strings.hrc:47 msgctxt "STR_XMLSECDLG_SIGNING_FAILED" msgid "An error occurred while adding the signature." -msgstr "Er trad een fout op bij het handtekenen." +msgstr "Er trad een fout op bij het ondertekenen." #. 6Qkuk #: xmlsecurity/inc/strings.hrc:48 @@ -178,7 +178,7 @@ #: xmlsecurity/inc/strings.hrc:57 msgctxt "selectcertificatedialog|STR_KEY_AGREEMENT" msgid "Key Agreement" -msgstr "Sleutels uitwisselen" +msgstr "Sleuteloverdracht" #. dREUL #: xmlsecurity/inc/strings.hrc:58 diff -Nru libreoffice-7.4.6/translations/source/nn/cui/messages.po libreoffice-7.4.7/translations/source/nn/cui/messages.po --- libreoffice-7.4.6/translations/source/nn/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-02 12:41+0000\n" +"PO-Revision-Date: 2023-03-05 08:32+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1566134353.000000\n" #. GyY9M @@ -12952,7 +12952,7 @@ #: cui/uiconfig/ui/newtabledialog.ui:102 msgctxt "newtabledialog|columns_label" msgid "_Number of columns:" -msgstr "Tal på _kolonnar:" +msgstr "Tal på _spalter:" #. DGNLv #: cui/uiconfig/ui/newtabledialog.ui:117 @@ -21092,7 +21092,7 @@ #: cui/uiconfig/ui/textcolumnstabpage.ui:37 msgctxt "textcolumnstabpage|labelColNumber" msgid "_Number of columns:" -msgstr "Tal på _kolonnar:" +msgstr "Tal på _spalter:" #. PpfsL #: cui/uiconfig/ui/textcolumnstabpage.ui:51 diff -Nru libreoffice-7.4.6/translations/source/nn/dbaccess/messages.po libreoffice-7.4.7/translations/source/nn/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/nn/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/dbaccess/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2022-09-21 09:48+0000\n" +"PO-Revision-Date: 2023-04-16 04:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563635504.000000\n" #. BiN6g @@ -1613,7 +1613,7 @@ #: dbaccess/inc/strings.hrc:280 msgctxt "STR_ERR_USE_CONNECT_TO" msgid "Please choose 'Connect to an existing database' to connect to an existing database instead." -msgstr "Vel «Kopla til ein _database» for i staden å kopla til ein database som finst." +msgstr "Vel «Kopla til ein eksisterande database» for å kopla til ein database som finst." #. PfAC6 #: dbaccess/inc/strings.hrc:281 @@ -3417,7 +3417,7 @@ #: dbaccess/uiconfig/ui/generalpagewizard.ui:40 msgctxt "generalpagewizard|helpText" msgid "Use the Database Wizard to create a new database, open an existing database file, or connect to a database stored on a server." -msgstr "Bruk databasevegvisaren til å laga nye databasar, opna databasefiler eller kopla til databasar på andre tenarar." +msgstr "Bruk databasevegvisarenfor å laga ein ny database, opna databasefiler som finst frå før eller kopla til ein database på ein tenarar." #. KxZny #: dbaccess/uiconfig/ui/generalpagewizard.ui:55 @@ -3447,7 +3447,7 @@ #: dbaccess/uiconfig/ui/generalpagewizard.ui:126 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" -msgstr "Opna ei eksisterande database_fil" +msgstr "Opna ei database_fil som finst frå før" #. qBi4U #: dbaccess/uiconfig/ui/generalpagewizard.ui:136 @@ -3483,7 +3483,7 @@ #: dbaccess/uiconfig/ui/generalpagewizard.ui:213 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" -msgstr "Kopla til ein _database" +msgstr "Kopla til ein _database som finst frå før" #. 8uBqf #: dbaccess/uiconfig/ui/generalpagewizard.ui:223 @@ -4409,7 +4409,7 @@ #: dbaccess/uiconfig/ui/relationdialog.ui:263 msgctxt "relationdialog|label3" msgid "Update Options" -msgstr "Oppdater innstillingane" +msgstr "Innstillingar for oppdatering" #. wnvZa #: dbaccess/uiconfig/ui/relationdialog.ui:293 diff -Nru libreoffice-7.4.6/translations/source/nn/formula/messages.po libreoffice-7.4.7/translations/source/nn/formula/messages.po --- libreoffice-7.4.6/translations/source/nn/formula/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/formula/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2021-08-08 17:14+0000\n" +"PO-Revision-Date: 2023-05-03 05:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564508002.000000\n" #. YfKFn @@ -2475,7 +2475,7 @@ #: formula/inc/core_resource.hrc:2706 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "RAWSUBTRACT" -msgstr "RÅSUBTRAKSJON" +msgstr "RÅSUBTRAKSJON (RAWSUBTRACT på engelsk)" #. DgyUW #: formula/inc/core_resource.hrc:2707 diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/auxiliary.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/auxiliary.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/auxiliary.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/auxiliary.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2022-05-04 10:54+0000\n" +"PO-Revision-Date: 2023-04-19 15:29+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563873453.000000\n" #. fEEXD @@ -761,7 +761,7 @@ "0403\n" "node.text" msgid "Loading, Saving, Importing, Exporting and Redacting" -msgstr "Lastar inn, lagrar, importerer, eksporterer og omarbeider" +msgstr "Lasta inn, lagra, importera, eksportera og redigera" #. jMBsp #: simpress.tree diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/sbasic/shared/01.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/sbasic/shared/01.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/sbasic/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/sbasic/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-11-08 18:35+0000\n" +"PO-Revision-Date: 2023-04-13 15:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542374786.000000\n" #. arCRB @@ -167,7 +167,7 @@ "par_id3149124\n" "help.text" msgid "To create a new macro, select the \"Standard\" module in the Macro from list, and then click New." -msgstr "For å lage ein ny makro, vel modulen «Standard» i lista Makro frå og vel så Ny." +msgstr "For å laga ein ny makro, vel modulen «Standard» i lista Makro frå og vel så Ny." #. Bpdkd #: 06130000.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/sbasic/shared/03.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/sbasic/shared/03.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-04-13 15:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565450081.000000\n" #. ViEWM @@ -1607,7 +1607,7 @@ "bas_id841610041372527\n" "help.text" msgid "'Creates three arrays for this example" -msgstr "' Lager tre matriser til dette eksempelet" +msgstr "' Lagar tre matriser for dette eksempelet" #. WvdEp #: sf_array.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/sbasic/shared.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/sbasic/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/sbasic/shared.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1566317546.000000\n" #. yzYVt @@ -6629,7 +6629,7 @@ "par_id3146816\n" "help.text" msgid "You can create multi-line labels by inserting manual line breaks in the label using Shift+Enter." -msgstr "Du kan lage etikettar med fleire linjer ved å setja inn manuelle linjeskift ved hjelp av tastekombinasjonen Shift + Enter." +msgstr "Du kan laga etikettar med fleire linjer ved å setja inn manuelle linjeskift ved hjelp av tastekombinasjonen Shift + Enter." #. r4WBz #: 01170101.xhp @@ -6890,7 +6890,7 @@ "par_id3146144\n" "help.text" msgid "To switch between dialog pages at run time, you need to create a macro that changes the value of Page (Step)." -msgstr "For å kunna skifte mellom dialogsider under køyringa, må du lage ein makro som endrar verdien for Side (steg)." +msgstr "For å kunna skifta mellom dialogsider under køyringa, må du laga ein makro som endrar verdien for Side (steg)." #. yfdsF #: 01170101.xhp @@ -11417,7 +11417,7 @@ "par_id3154012\n" "help.text" msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.ods\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments." -msgstr "For å lage ei liste over alle filene i ein bestemt katalog, må du den første gongen du kallar opp Dir-funksjonen skrive inn den fullstendige søkjestien for filene, for eksempel «D:\\Filer\\*.sxw». Dersom søkjestien er korrekt og det vert funne i det minste éi fil, vil Dir-funksjonen returnera namnet på den første fila som passar med søket. For å finna fleire filnamn som passar søket, kall opp Dir-funksjonen igjen, men utan argument." +msgstr "For å laga ei liste over alle filene i ein bestemt katalog, må du den første gongen du kallar opp Dir-funksjonen skriva inn den fullstendige søkjestien for filene, for eksempel «D:\\Filer\\*.sxw». Dersom søkjestien er korrekt og det vert funne i det minste éi fil, vil Dir-funksjonen returnera namnet på den første fila som passar med søket. For å finna fleire filnamn som passar søket, kall opp Dir-funksjonen igjen, men utan argument." #. LXpKQ #: 03020404.xhp @@ -38705,7 +38705,7 @@ "par_id681592355725045\n" "help.text" msgid "IMSINH" -msgstr "IMSINH" +msgstr "IMSINH (IMSINH på engelsk)" #. HoKey #: calc_functions.xhp @@ -38741,7 +38741,7 @@ "par_id761592355737109\n" "help.text" msgid "IMTAN" -msgstr "IMTAN" +msgstr "IMTAN (IMTAN på engelsk)" #. AWW2a #: calc_functions.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/scalc/01.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/scalc/01.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/scalc/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/scalc/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565441848.000000\n" #. sZfWF @@ -2606,7 +2606,7 @@ "par_id3148645\n" "help.text" msgid "Indicates where the current sheet is to be moved or copied to. Select - new document - if you want to create a new location for the sheet to be moved or copied." -msgstr "Bestemmer kvar det gjeldande arket skal flyttast eller kopierast til. Vel - nytt dokument - dersom du ønskjer å lage ein ny plass til arket som skal flyttast eller kopierast." +msgstr "Bestemmer kvar det gjeldande arket skal flyttast eller kopierast til. Vel - nytt dokument - dersom du ønskjer å laga ein ny plass til arket som skal flyttast eller kopierast." #. zPGQF #: 02180000.xhp @@ -2642,7 +2642,7 @@ "par_id3144764\n" "help.text" msgid "Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved. Moving sheets is the default." -msgstr "Angjev at arket skal kopierast. Dersom denne innstillinga ikkje er merkt, vert arket flytt. Å flytta ark er standard." +msgstr "Spesifiserer at arket skal kopierast. Dersom denne innstillinga ikkje er merkt, vert arket flytt. Å flytta ark er standard." #. jKiJy #: 02190000.xhp @@ -3587,7 +3587,7 @@ "bm_id4522232\n" "help.text" msgid "sheets;creating" -msgstr "ark; lage" +msgstr "ark; laga" #. FtKbJ #: 04050000.xhp @@ -3677,7 +3677,7 @@ "par_id3154012\n" "help.text" msgid "Specifies whether a new sheet or an existing sheet is inserted into the document." -msgstr "Angjev om eit nytt ark eller eit eksisterande ark vert sett inn i dokumentet." +msgstr "Spesifiserer om eit nytt ark eller eit ark som finst frå før vert sett inn i dokumentet." #. g3EG8 #: 04050000.xhp @@ -11264,7 +11264,7 @@ "par_id3154948\n" "help.text" msgid "This function returns the inverse trigonometric cotangent of Number, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI." -msgstr "Denne funksjonen returnerer den inverse trigonometriske cotangens av Tal, det vil seia den vinkelen (i radianer) som har cotangens Tal. Den returnerte vinkelen er mellom 0 og pi." +msgstr "Denne funksjonen returnerer den inverse trigonometriske cotangens av Tal, det vil seia den vinkelen (i radianar) som har cotangens Tal. Den returnerte vinkelen er mellom 0 og pi." #. WEA3S #: 04060106.xhp @@ -11282,7 +11282,7 @@ "par_id3155375\n" "help.text" msgid "=ACOT(1) returns 0.785398163397448 (PI/4 radians)." -msgstr "=ARCCOT(1) returnerer 0,785398163397448 (pi/4 radianer)." +msgstr "=ARCCOT(1) returnerer 0,785398163397448 (pi/4 radianar)." #. JUyRV #: 04060106.xhp @@ -11426,7 +11426,7 @@ "par_id6853846\n" "help.text" msgid "=ASIN(1) returns 1.5707963267949 (PI/2 radians)." -msgstr "ASIN(1) returnerer 1,5707963267949 (pi/2 radianer)." +msgstr "ASIN(1) returnerer 1,5707963267949 (pi/2 radianar)." #. 8einR #: 04060106.xhp @@ -11570,7 +11570,7 @@ "par_id8746299\n" "help.text" msgid "=DEGREES(ATAN(1)) returns 45. The tangent of 45 degrees is 1." -msgstr "=GRADER(ARCTAN(1)) returnerer 45. Tangens av 45 grader er 1." +msgstr "=GRADER(ATAN(1)) returnerer 45. Tangens av 45 grader er 1." #. SZJmd #: 04060106.xhp @@ -11579,7 +11579,7 @@ "bm_id3153983\n" "help.text" msgid "ATAN2 function" -msgstr "INVERS.TAN2-funksjonen" +msgstr "ARCTAN2-funksjonen" #. PDmTP #: 04060106.xhp @@ -11588,7 +11588,7 @@ "hd_id3153983\n" "help.text" msgid "ATAN2" -msgstr "ATAN2 (ATAN2 på engelsk)" +msgstr "ARCTAN2 (ATAN2 på engelsk)" #. yBHPx #: 04060106.xhp @@ -11606,7 +11606,7 @@ "par_id3156013\n" "help.text" msgid "ATAN2(NumberX; NumberY)" -msgstr "ATAN2(TalX; TalY)" +msgstr "ARCTAN2(TalX; TalY)" #. NBEVV #: 04060106.xhp @@ -11633,7 +11633,7 @@ "par_id5036168\n" "help.text" msgid "Programming languages have usually the opposite order of arguments for their atan2() function." -msgstr "Programmeringsspråk har normalt argumenta i motsett rekkjefølgje i atan2()-funksjonen." +msgstr "Programmeringsspråk har normalt argumenta i motsett rekkjefølgje i arctan2()-funksjonen." #. pSdob #: 04060106.xhp @@ -11642,7 +11642,7 @@ "par_id5036165\n" "help.text" msgid "ATAN2 returns the angle (in radians) between the x-axis and a line from the origin to the point (NumberX|NumberY)" -msgstr "Returnerer vinkelen (i radianar) mellom x-aksen og ei linje frå utgangspunktet til dette punktet (TalX|TalY)." +msgstr "ARCTAN2 returnerer vinkelen (i radianar) mellom x-aksen og ei linje frå utgangspunktet til dette punktet (TalX|TalY)." #. AhEQK #: 04060106.xhp @@ -11651,7 +11651,7 @@ "par_id3154692\n" "help.text" msgid "=ATAN2(-5;9) returns 2.07789 radians." -msgstr "ATAN2(-5;9) returnerer 2,07789 radianar." +msgstr "ARCTAN2(-5;9) returnerer 2,07789 radianar." #. tPPGL #: 04060106.xhp @@ -11669,7 +11669,7 @@ "par_id1477095\n" "help.text" msgid "=DEGREES(ATAN2(12.3;12.3)) returns 45. The tangent of 45 degrees is 1." -msgstr "=GRADER(ATAN2(12.3;12.3)) returnerer 45. Tangenten til 45 grader er 1." +msgstr "=GRADER(ARCTAN2(12.3;12.3)) returnerer 45. Tangenten til 45 grader er 1." #. FhesC #: 04060106.xhp @@ -11678,7 +11678,7 @@ "par_id5036167\n" "help.text" msgid "%PRODUCTNAME results 0 for ATAN2(0;0)." -msgstr "%PRODUCTNAME gjev tilbake 0 for ATAN2(0;0)." +msgstr "%PRODUCTNAME gjev tilbake 0 for ARCTAN2(0;0)." #. BCKQE #: 04060106.xhp @@ -11696,7 +11696,7 @@ "par_id5036170\n" "help.text" msgid "=DEGREES(ATAN2(-8;5)) returns φ = 147.9 degrees" -msgstr "=GRADER(ATAN2(-8;5)) returnerer φ = 147,9 grader" +msgstr "=GRADER(ARCTAN2(-8;5)) returnerer φ = 147,9 grader" #. hN94X #: 04060106.xhp @@ -11723,7 +11723,7 @@ "hd_id3155398\n" "help.text" msgid "ATANH" -msgstr "ATANH (ATANH på engelsk)" +msgstr "ARCTANH (ATANH på engelsk)" #. TVqPD #: 04060106.xhp @@ -11741,7 +11741,7 @@ "par_id3149912\n" "help.text" msgid "ATANH(Number)" -msgstr "ATANH(Tal)" +msgstr "ARCTANH(Tal)" #. 6weQk #: 04060106.xhp @@ -11768,7 +11768,7 @@ "par_id3145419\n" "help.text" msgid "=ATANH(0) returns 0." -msgstr "=ATAN(0) returnerer 0." +msgstr "=ARCTANH(0) returnerer 0." #. BDoVi #: 04060106.xhp @@ -12587,7 +12587,7 @@ "hd_id3151221\n" "help.text" msgid "GCD_EXCEL2003" -msgstr "SFF_EXCEL2003" +msgstr "SFF_EXCEL2003 (GCD_EXCEL2003 på engelsk)" #. DHitQ #: 04060106.xhp @@ -12677,7 +12677,7 @@ "hd_id3154230\n" "help.text" msgid "LCM_EXCEL2003" -msgstr "MFM_EXCEL2003" +msgstr "MFM_EXCEL2003 (LCM_EXCEL2003 på engelsk)" #. pqCN4 #: 04060106.xhp @@ -12749,7 +12749,7 @@ "par_id3150313\n" "help.text" msgid "Count1 is the number of items in the set." -msgstr "Tal1 er talet på element som skal veljast frå mengda." +msgstr "Talpå1 er talet på element som skal veljast frå mengda." #. tMK8t #: 04060106.xhp @@ -12758,7 +12758,7 @@ "par_id3153830\n" "help.text" msgid "Count2 is the number of items to choose from the set." -msgstr "Tal2 er talet på element som skal veljast frå mengda." +msgstr "Talpå2 er talet på element som skal veljast frå mengda." #. UaEB6 #: 04060106.xhp @@ -12776,7 +12776,7 @@ "par_id7414471\n" "help.text" msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)" -msgstr "KOMBINASJON implementerer formelen: Tal1!/(Tal2!*(Tal1-Tal2)!)" +msgstr "KOMBINASJON implementerer formelen: Talpå1!/(Talpå2!*(Talpå1-Talpå2)!)" #. AEKgR #: 04060106.xhp @@ -12821,7 +12821,7 @@ "par_id3145765\n" "help.text" msgid "COMBINA(Count1; Count2)" -msgstr "KOMBINASJONA(Tal1; Tal2)" +msgstr "KOMBINASJONA(Talpå1; Talpå2)" #. kGFDH #: 04060106.xhp @@ -12830,7 +12830,7 @@ "par_id3153372\n" "help.text" msgid "Count1 is the number of items in the set." -msgstr "Tal1 er talet på element som skal veljast frå mengda." +msgstr "Talpå1 er talet på element som skal veljast frå mengda." #. GfeiC #: 04060106.xhp @@ -12839,7 +12839,7 @@ "par_id3155544\n" "help.text" msgid "Count2 is the number of items to choose from the set." -msgstr "Tal2 er talet på element som skal veljast frå mengda." +msgstr "Talpå2 er talet på element som skal veljast frå mengda." #. ZkcAF #: 04060106.xhp @@ -12857,7 +12857,7 @@ "par_id2052064\n" "help.text" msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)" -msgstr "KOMBINASJONA implementerer formelen: (Tal1+Tal2-1)! / (Tal2! (Tal1-1)!)" +msgstr "KOMBINASJONA implementerer formelen: (Talpå1+Talpå2-1)! / (Talpå2! (Talpå1-1)!)" #. AGZXg #: 04060106.xhp @@ -13028,7 +13028,7 @@ "hd_id3154187\n" "help.text" msgid "LOG10" -msgstr "LOG10" +msgstr "LOG10 (LOG10 på engelsk)" #. JkBKm #: 04060106.xhp @@ -14045,7 +14045,7 @@ "hd_id3163397\n" "help.text" msgid "SINH" -msgstr "SIN" +msgstr "SINH (SINH på engelsk)" #. QVnp3 #: 04060106.xhp @@ -14099,7 +14099,7 @@ "hd_id3151957\n" "help.text" msgid "SUMIF" -msgstr "SUMMER.VISS" +msgstr "SUMMER.VISS (SUMIF på engelsk)" #. p2fHt #: 04060106.xhp @@ -14189,7 +14189,7 @@ "hd_id3152195\n" "help.text" msgid "TAN" -msgstr "TAN" +msgstr "TAN (TAN på engelsk)" #. tD5Nc #: 04060106.xhp @@ -14234,7 +14234,7 @@ "par_id3152301\n" "help.text" msgid "=TAN(PI()/4) returns 1, the tangent of PI/4 radians." -msgstr "=TAN(PI()/4) returnerer 1, tangens av pi/4 radianer." +msgstr "=TAN(PI()/4) returnerer 1, tangens av pi/4 radianar." #. D2Ad2 #: 04060106.xhp @@ -14261,7 +14261,7 @@ "hd_id3165434\n" "help.text" msgid "TANH" -msgstr "TAN" +msgstr "TANH (TANH på engelsk)" #. Kwc9W #: 04060106.xhp @@ -14657,7 +14657,7 @@ "par_id0119200904301810\n" "help.text" msgid "Full_precision is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded." -msgstr "Full_presisjon er valfri. Viss denne vert sløyfa eller er USANN, vil resultatet verta avrunda med like mange desimalar som i Til valuta. Viss Full_presisjon er SANN vil resultatet ikkje verta avrunda." +msgstr "Full_presisjon er valfri. Viss denne vert sløyfa eller er USANN, vert resultatet avrunda med like mange desimalar som i «Til valuta«. Viss Full_presisjon er SANN vert resultatet ikkje avrunda." #. Pzmf5 #: 04060106.xhp @@ -14909,7 +14909,7 @@ "hd_id3164086\n" "help.text" msgid "SIGN" -msgstr "SIN" +msgstr "FORTEIKN (SIGN på engelsk)" #. QdGjV #: 04060106.xhp @@ -15224,7 +15224,7 @@ "par_id2091433\n" "help.text" msgid "To generate random numbers which never recalculate, copy cells containing this function, and use Edit - Paste Special (with Paste All and Formulas not marked and Numbers marked)." -msgstr "For å lage tilfeldige tal som aldri vert rekna ut på nytt, kopier cellene som inneheld denne funksjonen, og bruk Rediger → Set inn Spesiell (med Set inn alt og ikkje Formlar merkte og Tal merkte)." +msgstr "For å laga tilfeldige tal som aldri vert rekna ut på nytt, kopier cellene som inneheld denne funksjonen og bruk Rediger → Set inn Spesiell (med Set inn alt og ikkje Formlar merkte og Tal merkte)." #. bfcug #: 04060106.xhp @@ -15611,7 +15611,7 @@ "hd_id3151271\n" "help.text" msgid "Creating Array Formulas" -msgstr "Lage matriseformlar" +msgstr "Laga matriseformlar" #. keWKE #: 04060107.xhp @@ -26303,7 +26303,7 @@ "hd_id3155623\n" "help.text" msgid "IMLOG2" -msgstr "IMLOG2" +msgstr "IMLOG2 (IMLOG2 på engelsk)" #. 4CquR #: 04060116.xhp @@ -40802,7 +40802,7 @@ "par_id3148466\n" "help.text" msgid "PERMUT(Count1; Count2)" -msgstr "PERMUTER(Tal1; Tal2)" +msgstr "PERMUTER(Talpå1; Talpå2)" #. or3Fr #: 04060185.xhp @@ -40820,7 +40820,7 @@ "par_id3150826\n" "help.text" msgid "Count2 is the number of objects in each permutation." -msgstr "Tal2 er talet på objekt i kvar permutasjon." +msgstr "Talpå2 er talet på objekt i kvar permutasjon." #. ZaaEV #: 04060185.xhp @@ -40865,7 +40865,7 @@ "par_id3149298\n" "help.text" msgid "PERMUTATIONA(Count1; Count2)" -msgstr "PERMUTERA(Tal1; Tal2)" +msgstr "PERMUTERA(Talpå1; Talpå2)" #. B7uB3 #: 04060185.xhp @@ -40883,7 +40883,7 @@ "par_id3149519\n" "help.text" msgid "Count2 is the number of objects in each permutation." -msgstr "Tal2 er talet på objekt i kvar permutasjon." +msgstr "Talpå2 er talet på objekt i kvar permutasjon." #. AD2BB #: 04060185.xhp @@ -42233,7 +42233,7 @@ "tit\n" "help.text" msgid "Creating Names" -msgstr "Lage namn" +msgstr "Laga namn" #. c2WJj #: 04070300.xhp @@ -42251,7 +42251,7 @@ "hd_id3147264\n" "help.text" msgid "Creating Names" -msgstr "Lage namn" +msgstr "Laga namn" #. dby9X #: 04070300.xhp @@ -42287,7 +42287,7 @@ "par_id3152597\n" "help.text" msgid "Defines which part of the spreadsheet is to be used for creating the name." -msgstr "Definerer kva del av reknearket som skal brukast for å lage namnet." +msgstr "Definerer kva del av reknearket som skal brukast for å laga namnet." #. NHPQX #: 04070300.xhp @@ -44195,7 +44195,7 @@ "par_id3146119\n" "help.text" msgid "If you do not define any print range manually, Calc assigns an automatic print range to include all the cells that are not empty." -msgstr "Dersom du ikkje definerer eit utskriftsområde, vil Calc automatisk lage eit utskriftsområde som inkluderer alle cellene som ikkje er tomme." +msgstr "Dersom du ikkje definerer eit utskriftsområde, vil Calc automatisk laga eit utskriftsområde som inkluderer alle cellene som ikkje er tomme." #. KjDFF #: 05080000.xhp @@ -48632,7 +48632,7 @@ "par_id3153896\n" "help.text" msgid "For example, you can generate a sales summary for a certain postal code based on data from a client database." -msgstr "For eksempel kan du lage ei oppsummering av salet for eit bestemt postnummer basert på data frå ein kundedatabase." +msgstr "For eksempel kan du laga ei oppsummering av salet for eit bestemt postnummer basert på data frå ein kundedatabase." #. DGGKP #: 12050000.xhp @@ -49838,7 +49838,7 @@ "par_id3145119\n" "help.text" msgid "Opens a dialog where you can select the source for your pivot table, and then create your table." -msgstr "Opnar ein dialog der du kan velja kjelda for pivottabellen og deretter lage tabellen." +msgstr "Opnar ein dialog der du kan velja kjelda for pivottabellen og deretter laga tabellen." #. bkFbJ #: 12090100.xhp @@ -51179,7 +51179,7 @@ "par_idN1078D\n" "help.text" msgid "Each result is divided by the total result for its row in the pivot table. If there are several data fields, the total for the result's data field is used. If there are subtotals with manually selected summary functions, the total with the data field's summary function is still used." -msgstr "Kvart resultat er dividert med det totale resultatet for den tilsvarande rada i pivottabellen. Dersom det finst fleire felt, vert summen for resultatdatafelta brukt. Dersom det finst delsummar med manuelt valde summeringsfunksjonar, vil likevel totalen av summeringsfunksjonen for datafeltet verta brukt." +msgstr "Kvart resultat er dividert med det totale resultatet for den tilsvarande rada i pivottabellen. Dersom det finst fleire felt, vert summen for resultatdatafelta brukt. Dersom det finst delsummar med manuelt valde summeringsfunksjonar, vert likevel totalen av summeringsfunksjonen for datafeltet brukt." #. uu4sy #: 12090105.xhp @@ -54212,7 +54212,7 @@ "par_id0403201618594639\n" "help.text" msgid "SUM" -msgstr "SUMMER" +msgstr "SUMMER (SUM på engelsk)" #. L94T5 #: exponsmooth_embd.xhp @@ -54833,7 +54833,7 @@ "par_id30181907128680\n" "help.text" msgid "AGGREGATE(Function; Option; Array[; k])" -msgstr "SAMANDRAGFunksjon; val; tabell[; k])" +msgstr "SAMANDRAG(Funksjon; val; tabell[; k])" #. WPGsi #: func_aggregate.xhp @@ -63914,7 +63914,7 @@ "tit\n" "help.text" msgid "RAWSUBTRACT function" -msgstr "Funksjonen RÅSUBTRAKSJON" +msgstr "RÅSUBTRAKSJON-funksjonen" #. JTmpK #: func_rawsubtract.xhp @@ -64976,7 +64976,7 @@ "hd_id658866588665886\n" "help.text" msgid "SUMIFS" -msgstr "SUMMER.VISS.SETT" +msgstr "SUMMER.VISS.SETT (SUMIFS på engelsk)" #. ZEdvF #: func_sumifs.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/scalc/guide.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/scalc/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/scalc/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-12-10 08:24+0000\n" +"PO-Revision-Date: 2023-04-13 15:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547757460.000000\n" #. NXy6S @@ -1184,7 +1184,7 @@ "par_id5759453\n" "help.text" msgid "Choose a thicker line style and click the lower edge. This sets a thicker line as a lower border." -msgstr "Vel ein tykkare linjestil og trykk på den nedre kanten. Dette lager ei tykkare, nedre kantlinje." +msgstr "Vel ein tjukkare linjestil og trykk på den nedre kanten. Dette lagar ei tjukkare, nedre kantlinje." #. xixgT #: borders.xhp @@ -1436,7 +1436,7 @@ "par_idN106D7\n" "help.text" msgid "AutoFill automatically generates a data series based on a defined pattern." -msgstr "Autotekst lager dataseriar automatisk etter eit definert mønster." +msgstr "Autotekst lagar dataseriar automatisk etter eit definert mønster." #. YXajB #: calc_series.xhp @@ -1481,7 +1481,7 @@ "par_idN106EE\n" "help.text" msgid "To quickly create a list of consecutive days, enter Monday in a cell, and drag the fill handle." -msgstr "Dersom du raskt vil lage ei liste av samanhengande dagar, skriv inn Måndag i ei celle og dra i fyllhandtaket." +msgstr "Dersom du raskt vil laga ei liste av samanhengande dagar, skriv inn Måndag i ei celle og dra i fyllhandtaket." #. a2oGa #: calc_series.xhp @@ -2318,7 +2318,7 @@ "par_id3156444\n" "help.text" msgid "With the help of the Navigator you can reference cells from one sheet to another sheet in the same document or in a different document. The cells can be inserted as a copy, link, or hyperlink. The range to be inserted must be defined with a name in the original file so that it can be inserted in the target file." -msgstr "Ved hjelp av dokumentstruktur kan du lage referansar frå celler i eitt ark til eit anna ark i det same reknearket eller i eit anna rekneark. Cellene kan setjast inn som ein kopi, ei lenke eller ei hyperlenke. Området som skal setjast inn må vere definert med namn i den opphavlege fila slik at det kan setjast inn i målfila." +msgstr "Ved hjelp av dokumentstruktur kan du laga referansar frå celler i eitt ark til eit anna ark i det same reknearket eller i eit anna rekneark. Cellene kan setjast inn som ein kopi, ei lenkje eller ei hyperlenkje. Området som skal setjast inn må vere definert med namn i den opphavlege fila slik at det kan setjast inn i målfila." #. eV8oB #: cellreference_dragdrop.xhp @@ -2885,7 +2885,7 @@ "hd_id4480727\n" "help.text" msgid "To Define the Conditions" -msgstr "Å lage vilkåra" +msgstr "Slik lagar du vilkåra" #. GbyDp #: cellstyle_conditional.xhp @@ -2966,7 +2966,7 @@ "par_id3149258\n" "help.text" msgid "Copy the formula to create a row of random numbers. Click the bottom right corner of the selected cell, and drag to the right until the desired cell range is selected." -msgstr "Kopier formelen for å lage ei rad med tilfeldige tal. Dra handtaket nederst til høgre i cella mot høgre til du har merkt det ønskte celleområdet." +msgstr "Kopier formelen for å laga ei rad med tilfeldige tal. Dra handtaket nederst til høgre i cella mot høgre til du har merkt det ønskte celleområdet." #. Tm6MA #: cellstyle_conditional.xhp @@ -3029,7 +3029,7 @@ "par_id3152889\n" "help.text" msgid "To define a second style, click again in a blank cell and proceed as described above. Assign a different background color for the cell and assign a name (for this example, \"Below\")." -msgstr "For å lage den andre stilen, trykkjer du på ei tom celle og gjer resten på same måten som ovanfor. Vel ein annan bakgrunnsfarge og gje stilen eit namn (for eksempel «Under»)." +msgstr "For å laga den andre stilen, trykkjer du på ei tom celle og gjer resten på same måten som ovanfor. Vel ein annan bakgrunnsfarge og gje stilen eit namn (for eksempel «Under»)." #. x3rxG #: cellstyle_conditional.xhp @@ -4172,7 +4172,7 @@ "bm_id3154758\n" "help.text" msgid "tables; database ranges database ranges; defining ranges; defining database ranges defining;database ranges" -msgstr "tabellar; databaseområdedatabaseområde; lageområde; lage databaseområdelage; databaseområde" +msgstr "tabellar; databaseområdedatabaseområde; lagaområde; laga databaseområdelaga; databaseområde" #. bCxRx #: database_define.xhp @@ -4208,7 +4208,7 @@ "par_idN10648\n" "help.text" msgid "To define a database range" -msgstr "Å lage eit databaseområde" +msgstr "Slik lagar du eit databaseområde" #. ViixK #: database_define.xhp @@ -4604,7 +4604,7 @@ "tit\n" "help.text" msgid "Creating Pivot Tables" -msgstr "Å lage pivottabellar" +msgstr "Laga pivottabellar" #. kEK57 #: datapilot_createtable.xhp @@ -6323,7 +6323,7 @@ "par_id3150400\n" "help.text" msgid "You can define your own number formats to display numbers in %PRODUCTNAME Calc." -msgstr "Du kan lage dine eigne talformat for visinga av tal i %PRODUCTNAME Calc." +msgstr "Du kan laga dine eigne talformat for visinga av tal i %PRODUCTNAME Calc." #. NFeoQ #: format_value_userdef.xhp @@ -8690,7 +8690,7 @@ "par_id3153189\n" "help.text" msgid "You produce toys which you sell for $10 each. Each toy costs $2 to make, in addition to which you have fixed costs of $10,000 per year. How much profit will you make in a year if you sell a particular number of toys?" -msgstr "Du produserer leiketøy som du vil selja for 100 kr stykket. Kvart leiketøy kostar 20 kr å lage. I tillegg har du faste utgifter på 100 000 kr i året. Kor stort vert overskotet dersom du sel ei bestemt mengde leiketøy?" +msgstr "Du produserer leiketøy som du vil selja for 100 kr stykket. Kvart leiketøy kostar 20 kr å laga. I tillegg har du faste utgifter på 100 000 kr i året. Kor stort vert overskotet dersom du sel ei bestemt mengde leiketøy?" #. vdeBS #: multioperation.xhp @@ -9626,7 +9626,7 @@ "par_id1001525165156188\n" "help.text" msgid "Click OK to close the wizard and create the pivot chart." -msgstr "Trykk OK for å lukke vegvisaren og å lage pivotdiagrammet." +msgstr "Trykk OK for å lukka vegvisaren og å laga pivotdiagrammet." #. gQpGG #: pivotchart_delete.xhp @@ -10139,7 +10139,7 @@ "par_id3153963\n" "help.text" msgid "To print in landscape format, proceed as follows:" -msgstr "Du kan lage ei liggjande utskrift slik:" +msgstr "Du kan laga ei liggjande utskrift slik:" #. GGu4V #: print_landscape.xhp @@ -11507,7 +11507,7 @@ "hd_id3149255\n" "help.text" msgid "Creating Your Own Scenarios" -msgstr "Lage eigne scenario" +msgstr "Laga eigne scenario" #. gZSq5 #: scenario.xhp @@ -11516,7 +11516,7 @@ "par_id3154704\n" "help.text" msgid "To create a scenario, select all the cells that provide the data for the scenario." -msgstr "Du kan lage eit scenario ved å markera alle cellene som leverer data til scenarioet." +msgstr "Du kan laga eit scenario ved å markera alle cellene som leverer data til scenarioet." #. tyTVg #: scenario.xhp @@ -12803,7 +12803,7 @@ "par_id3145366\n" "help.text" msgid "You can define your own functions using the Basic-IDE. This method requires a basic knowledge of programming." -msgstr "Du kan lage dine eigne funksjonar i Basic. Dette krev grunnleggjande kunnskap om programmering." +msgstr "Du kan laga dine eigne funksjonar i Basic. Dette krev grunnleggjande kunnskap om programmering." #. F6npk #: userdefined_function.xhp @@ -12821,7 +12821,7 @@ "hd_id3149260\n" "help.text" msgid "Defining A Function Using %PRODUCTNAME Basic" -msgstr "Lage ein funksjon med %PRODUCTNAME Basic" +msgstr "Laga ein funksjon med %PRODUCTNAME Basic" #. PfDpb #: userdefined_function.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/sdatabase.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/sdatabase.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/sdatabase.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/sdatabase.po 2023-05-03 15:22:13.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-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: serval2412 \n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" +"Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. ugSgG #: 02000000.xhp @@ -3676,7 +3676,7 @@ "par_id3156282\n" "help.text" msgid "Specifies whether the current index allows only unique values. Checking the Unique option prevents duplicate data from being entered in the field and ensures data integrity." -msgstr "Angjev om den gjeldande indeksen berre skal tillata eintydige verdiar. Kryss av for Eintydig viss du vil hindra dobbeltoppføringar og sikra dataintegritet." +msgstr "Spesifiserer om den gjeldande indeksen berre skal tillata eintydige verdiar. Kryss av for Eintydig viss du vil hindra dobbeltoppføringar og sikra dataintegritet." #. SFD2p #: 05010100.xhp @@ -4108,7 +4108,7 @@ "par_id3151041\n" "help.text" msgid " If the corresponding primary key has been modified, use this option to set a default value to all external key fields. During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties." -msgstr " Viss den tilhøyrande primærnøkkelen er endra, kan du bruka dette valet for å setja ein standardverdi for alle eksterne nøkkelfelt. Under opprettinga av den tilhøyrande tabellen, vert standardverdien for eit eksternt nøkkelfelt angjeve når du tildeler felteigenskapane." +msgstr " Viss den tilhøyrande primærnøkkelen er endra, kan du bruka dette valet for å setja ein standardverdi for alle eksterne nøkkelfelt. Under opprettinga av den tilhøyrande tabellen, vert standardverdien for eit eksternt nøkkelfelt definert når du tildeler felteigenskapane." #. AvWBL #: 05020100.xhp @@ -5422,7 +5422,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 "Skriv inn SQL-kommandoen som fortel datakjelda at eit gjeve heiltals-datafelt skal auto-aukast. Ein typisk SQL-setning for å lage eit datafelt er for eksempel:" +msgstr "Skriv inn SQL-kommandoen som fortel datakjelda at eit gjeve heiltals-datafelt skal auto-aukast. Ein typisk SQL-setning for å laga eit datafelt er for eksempel:" #. C5Mvn #: 11020000.xhp @@ -6520,7 +6520,7 @@ "par_idN10563\n" "help.text" msgid "Specifies the options for automatically generated values for new data records." -msgstr "Angjev innstillingane for automatisk genererte verdiar for nye datapostar." +msgstr "Spesifiserer innstillingane for automatisk genererte verdiar for nye datapostar." #. Dpncz #: dabaadvpropgen.xhp @@ -7528,7 +7528,7 @@ "par_id9856563\n" "help.text" msgid "The Database Wizard creates a database file that contains information about a database." -msgstr "Databasevegvisaren lagar e idatabasefil som inneheld informasjon om ein database." +msgstr "Databasevegvisaren lagar ei databasefil som inneheld informasjon om ein database." #. MP58w #: dabawiz00.xhp @@ -12372,7 +12372,7 @@ "par_id1278420\n" "help.text" msgid "In addition, you can click the Label Field or Text Box icon in the toolbar, then drag a rectangle in the Page Header or Page Footer area, to define a text that is the same on all pages. You enter the text in the Label box of the corresponding Properties window. You can also add graphics by using the Graphics icon." -msgstr "I tillegg kan du klikka etikettfeltet eller tekstboksikonet i verktøylinja og så dra eit rektangel i området for topp- eller botnteksten for å lage ein tekst som er den same på alle sidene. Skriv inn teksten i «Etikettboksen» til det tilhøyrande eigenskapsvindauget. Du kan også leggja til grafikk ved å bruka ikonet «Grafikk»." +msgstr "I tillegg kan du klikka på etikettfeltet eller tekstboksikonet i verktøylinja og så dra eit rektangel i området for topp- eller botnteksten for å laga ein tekst som er den same på alle sidene. Skriv inn teksten i «Etikettboksen» til det tilhøyrande eigenskapsvindauget. Du kan også leggja til grafikk ved å bruka ikonet «Grafikk»." #. 25GDr #: rep_main.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/sdraw/guide.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/sdraw/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/sdraw/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-03-10 16:39+0000\n" +"PO-Revision-Date: 2023-04-18 19:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547488484.000000\n" #. cZbDh @@ -1607,7 +1607,7 @@ "par_id3147002\n" "help.text" msgid "After you have grouped objects, selecting any part of the group selects the entire group." -msgstr "Etter at du har gruppert objekt, vil du velja heile gruppa dersom du vel éin del av ho." +msgstr "Etter at du har gruppert objekta, vil du merkja heile gruppa dersom du merkjer ein del av ho." #. CTTCD #: groups.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-04-13 15:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565284139.000000\n" #. 3u8hR @@ -626,7 +626,7 @@ "par_id3154810\n" "help.text" msgid "Creates a new document for editing." -msgstr "Lager eit nytt dokument som du kan redigera." +msgstr "Lagar eit nytt dokument som du kan redigera." #. GDViU #: 01010200.xhp @@ -15602,7 +15602,7 @@ "par_id3149191\n" "help.text" msgid "Creates an OLE object from an existing file." -msgstr "Lager eit OLE-objekt frå ei eksisterande fil." +msgstr "Lagar eit OLE-objekt frå ei eksisterande fil." #. LbGrA #: 04150100.xhp @@ -28139,7 +28139,7 @@ "par_id971584574359838\n" "help.text" msgid "Lists the available gradients. You can also modify or create your own gradients." -msgstr "Lister dei tilgjengelege fargeovergangane. Du kan også endra og lage dine eigne fargeovergangar." +msgstr "Lister dei tilgjengelege fargeovergangane. Du kan også endra og laga dine eigne fargeovergangar." #. jEbtG #: 05210300.xhp @@ -28400,7 +28400,7 @@ "par_id3149955\n" "help.text" msgid "Lists the available hatching patterns. You can also modify or create your own hatching pattern." -msgstr "Lister dei tilgjengelege skraveringsmønstra. Du kan også endra og lage dine eigne mønster." +msgstr "Lister dei tilgjengelege skraveringsmønstra. Du kan også endra og laga dine eigne mønster." #. ScXki #: 05210400.xhp @@ -41056,7 +41056,7 @@ "par_id3154514\n" "help.text" msgid "To create a new macro in your document, select the \"Standard\" module in the Macro from list, and then click New." -msgstr "For å lage ein ny makro, vel modulen «Standard» i lista Makro frå og vel så Ny." +msgstr "For å laga ein ny makro, vel modulen «Standard» i lista Makro frå og vel så Ny." #. XCUte #: 06130000.xhp @@ -45151,7 +45151,7 @@ "par_idN105F5\n" "help.text" msgid "Specifies additional options for all dictionaries." -msgstr "Angjev fleire innstillingar for alle ordbøkene." +msgstr "Spesifiserer fleire innstillingar for alle ordbøkene." #. DCWGB #: 06201000.xhp @@ -50029,7 +50029,7 @@ "par_id281120160949347055\n" "help.text" msgid "If you want to report a problem with your user profile, by clicking on Create Zip Archive from User Profile you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers." -msgstr "Vis du ønskjer å rapportere eit problem med brukarprofilen, trykk på Lag zip-arkiv av brukarprofilen for å lage ei zip-fil som kan lastast opp til feil-systemet og såleis verta granska av utviklarane." +msgstr "Viss du ønskjer å rapportere eit problem med brukarprofilen, trykk på Lag zip-arkiv av brukarprofilen for å laga ei zip-fil som kan lastast opp til feil-systemet og såleis verta granska av utviklarane." #. 5pLNz #: profile_safe_mode.xhp @@ -53170,7 +53170,7 @@ "par_idN1056C\n" "help.text" msgid "Specifies the data structure of the current XForms document." -msgstr "Angjev datastrukturen i det gjeldande X-skjema-dokumentet." +msgstr "Spesifiserer datastrukturen i det gjeldande X-skjema-dokumentet." #. 8CnGD #: xformsdata.xhp @@ -53674,7 +53674,7 @@ "par_idN105AE\n" "help.text" msgid "Declares the item as relevant." -msgstr "Angjev at elementet skal vera relevant." +msgstr "Bestemmer at elementet skal vera relevant." #. uodhx #: xformsdataadd.xhp @@ -53692,7 +53692,7 @@ "par_idN105CF\n" "help.text" msgid "Declares the item as a constraint." -msgstr "Angjev at elementet skal vera ein skranke." +msgstr "Bestemmer at elementet skal vera ein skranke." #. DpBHD #: xformsdataadd.xhp @@ -53737,7 +53737,7 @@ "par_idN10609\n" "help.text" msgid "Declares that the item is calculated." -msgstr "Angjev at elementet er utrekna." +msgstr "Bestemmer at elementet er utrekna." #. 49jrt #: xformsdataadd.xhp @@ -54214,7 +54214,7 @@ "par_id1911679\n" "help.text" msgid "Declares that the item is calculated." -msgstr "Angjev at elementet er utrekna." +msgstr "Bestemmer at elementet er utrekna." #. HzhX9 #: xformsdatatab.xhp @@ -54331,7 +54331,7 @@ "par_id5298318\n" "help.text" msgid "Specifies the maximum total number of digits that values of the decimal data type can have." -msgstr "Angjev det høgste talet på siffer som verdiar av datatypen desimal kan ha." +msgstr "Spesifiserer det høgste talet på siffer som verdiar av datatypen desimal kan ha." #. YxNjr #: xformsdatatab.xhp @@ -54349,7 +54349,7 @@ "par_id95828\n" "help.text" msgid "Specifies the maximum total number of fractional digits that values of the decimal data type can have." -msgstr "Angjev det høgste talet på desimalar som verdiar av datatypen desimal kan ha." +msgstr "SSpesifiserer det høgste talet på desimalar som verdiar av datatypen desimal kan ha." #. LkwFf #: xformsdatatab.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/shared/02.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/shared/02.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-04-13 15:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565284211.000000\n" #. Edm6o @@ -662,7 +662,7 @@ "bm_id3154142\n" "help.text" msgid "form controls;toolbarsinserting; form fieldsform fieldscommand button creationbuttons; form functionscontrols; insertingpush buttons;creatingradio button creationcheck box creationlabels; form functionsfixed text; form functionstext boxes;form functionslist box creationpicklist creationdrop-down lists in form functionscombo box creationselecting;controlscontrols; select mode" -msgstr "kontrollelement for skjema;verktøylinjersetja inn; skjemafeltskjemafeltlaga kommandoknappknappar; skjemafunksjonarkontrollelement; setja inntrykknappar; lagalaga valknapplaga avkryssingsboksetikettar; skjemafunksjonarfast tekst; skjemafunksjonartekstfelt;skjemafunksjonarlage listebokslaga vallistenedtrekkslister i skjemafunksjonarlaga kombinasjonsboksvelja;kontrollelementkontrollelement; velja modus" +msgstr "kontrollelement for skjema;verktøylinjersetja inn; skjemafeltskjemafeltlaga kommandoknappknappar; skjemafunksjonarkontrollelement; setja inntrykknappar; lagalaga valknapplaga avkryssingsboksetikettar; skjemafunksjonarfast tekst; skjemafunksjonartekstfelt;skjemafunksjonarlaga listebokslaga vallistenedtrekkslister i skjemafunksjonarlaga kombinasjonsboksvelja;kontrollelementkontrollelement; velja modus" #. CiCXW #: 01170000.xhp @@ -1139,7 +1139,7 @@ "par_id3148601\n" "help.text" msgid "Creates a button displayed as an image. Aside from the graphic representation, an image button has the same properties as a \"normal\" button." -msgstr "Lager ein knapp som vert vist som eit bilete. Bortsett frå sjølve biletet, har ein biletknapp dei same eigenskapane som ein vanleg knapp." +msgstr "Lagar ein knapp som vert vist som eit bilete. Bortsett frå sjølve biletet, har ein biletknapp dei same eigenskapane som ein vanleg knapp." #. cEtdx #: 01170000.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/shared/05.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/shared/05.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/shared/05.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/shared/05.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-04-19 15:29+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1544801877.000000\n" #. WPTtk @@ -1409,7 +1409,7 @@ "par_id851534964274673\n" "help.text" msgid "Located on the top of the page, click to open the drop-down list and select the %PRODUCTNAME module to display the module Help main entry page." -msgstr "Frå øvst på sida, trykk for å opna nedtrekkslista og vel %PRODUCTNAME-modulen for å visa opningssida for hjelp for modulen." +msgstr "Trykk på nedoverpila like etter ordet «Modul» oppe til venstre på sida for å opna nedtrekkslista og trykk på %PRODUCTNAME-modulen for å visa opningssida for hjelp for modulen." #. 8ABkE #: new_help.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/shared/autopi.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/shared/autopi.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/shared/autopi.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-11-02 09:01+0000\n" +"PO-Revision-Date: 2023-04-07 05:33+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1529490310.000000\n" #. hCAzG @@ -5684,7 +5684,7 @@ "par_id3109850\n" "help.text" msgid "Specifies the information to be displayed on the title page of the publication." -msgstr "Angjev informasjon som skal visast på tittelsida til publikasjonen." +msgstr "Spesifiserer informasjon som skal visast på tittelsida i publikasjonen." #. k7EMA #: 01110400.xhp @@ -5720,7 +5720,7 @@ "par_id3154288\n" "help.text" msgid "Specifies the name of the publication's author." -msgstr "Angjev namnet til forfattaren av publikasjonen." +msgstr "Spesifiserer namnet til forfattaren av publikasjonen." #. DcYxq #: 01110400.xhp @@ -5738,7 +5738,7 @@ "par_id3166460\n" "help.text" msgid "Specifies the email address." -msgstr "Angjev e-postadressa." +msgstr "Spesifiserer e-postadressa." #. VhjgN #: 01110400.xhp @@ -5846,7 +5846,7 @@ "par_id3155805\n" "help.text" msgid "Specifies whether you want to insert navigation buttons in your presentation. You can also select the style of the buttons." -msgstr "Angjev om du vil setja inn knappar som kan brukast til å navigera i presentasjonen. Du kan også velja ein stil for knappane." +msgstr "Spesifiserer om du vil setja inn knappar som kan brukast til å navigera i presentasjonen. Du kan også velja ein stil for knappane." #. 2Cey8 #: 01110500.xhp @@ -6800,7 +6800,7 @@ "par_id3147143\n" "help.text" msgid "Specifies, for each template type and document type, the directory to be read from and the directory to be written to." -msgstr "Angjev kva for mappe det skal lastast frå og lagrast til for kvar maltype og kvar dokumenttype." +msgstr "Spesifiserer kva for mappe det skal lastast frå og lagrast til for kvar maltype og kvar dokumenttype." #. cDEcm #: 01130200.xhp @@ -6845,7 +6845,7 @@ "par_id3149182\n" "help.text" msgid "Specifies that templates are to be converted." -msgstr "Angjev at malane skal konverterast." +msgstr "Bestemmer at malane skal konverterast." #. fnBXC #: 01130200.xhp @@ -6881,7 +6881,7 @@ "par_id3153821\n" "help.text" msgid "Specifies the directory containing the source files. " -msgstr "Angjev mappa som inneheld kjeldefilene." +msgstr "Spesifiserer mappa som inneheld kjeldefilene." #. Dgbm5 #: 01130200.xhp @@ -6899,7 +6899,7 @@ "par_id3155449\n" "help.text" msgid "Specifies the directory to which the destination files are written." -msgstr "Angjev mappa som målfilene skal lagrast i." +msgstr "Spesifiserer mappa som målfilene skal lagrast i." #. EesvY #: 01130200.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/shared/guide.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/shared/guide.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/shared/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/shared/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-12-10 08:24+0000\n" +"PO-Revision-Date: 2023-04-30 15:33+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565441449.000000\n" #. iharT @@ -1994,7 +1994,7 @@ "par_id866115\n" "help.text" msgid "These charts can be created in Writer, Impress and Draw." -msgstr "Du kan lage desse diagramma i både Writer, Impress og Draw." +msgstr "Du kan laga desse diagramma i både Writer, Impress og Draw." #. yf4SJ #: chart_insert.xhp @@ -10546,7 +10546,7 @@ "par_id3147287\n" "help.text" msgid "Click the New icon on the Standard bar or choose File - New. This opens a document of the document type specified." -msgstr "Trykk på knappen Ny på standardverktøylinja eller vel Fil → Ny(tt). Dette opnar eit dokument av den angjevne dokumenttypen." +msgstr "Trykk på knappen Ny på standardverktøylinja eller vel Fil → Ny(tt). Dette opnar eit dokument av den gjevne dokumenttypen." #. Rcfnt #: doc_open.xhp @@ -28411,7 +28411,7 @@ "par_idN10A15\n" "help.text" msgid "In the File extension box, enter the extension for the exported file." -msgstr "Skriv inn filetternamnet for den eksporterte fila i feltet Filetternamn." +msgstr "Skriv inn filutvidinga for den eksporterte fila i feltet Filetternamn." #. CMY6f #: xsltfilter_create.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/shared/optionen.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/shared/optionen.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/shared/optionen.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-07 05:33+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565209106.000000\n" #. PzSYs @@ -1895,7 +1895,7 @@ "par_id3149561\n" "help.text" msgid "Specifies whether you wish to avoid certain words in your documents. In this way, you can create a custom dictionary of all the words to be avoided. If this exception dictionary is activated, during spellchecking you receive a corresponding note about any words which should be avoided." -msgstr "Angjev om vil unngå bestemte ord i dokumenta dine. På denne måten kan du laga ei brukarordliste med alle orda som skal unngåast. Viss denne unntaksordlista er slått på ved stavekontrollen, vil du få ei melding viss du skriv eit ord som skal unngåast." +msgstr "Spesifiserer om vil unngå bestemte ord i dokumenta dine. På denne måten kan du laga ei brukarordliste med alle orda som skal unngåast. Viss denne unntaksordlista er slått på ved stavekontrollen, vil du få ei melding viss du skriv eit ord som skal unngåast." #. fwK2g #: 01010400.xhp @@ -4091,7 +4091,7 @@ "par_id3150488\n" "help.text" msgid "Specifies that the transparency is only printed if the transparent area covers less than a quarter of the entire page." -msgstr "Angjev at gjennomsikta berre vert skrive ut viss det gjennomsiktige området fyller mindre enn ein firedel av heile sida." +msgstr "Spesifiserer at gjennomsikta berre vert skrive ut viss det gjennomsiktige området fyller mindre enn ein firedel av heile sida." #. ZyafF #: 01010900.xhp @@ -6172,7 +6172,7 @@ "par_id3159149\n" "help.text" msgid "Specifies the font to be used for headings." -msgstr "Angjev skrifta som skal brukast i overskrifter." +msgstr "Spesifiserer skrifttypen som skal brukast i overskrifter." #. yXAjG #: 01040300.xhp @@ -12175,7 +12175,7 @@ "par_id3154145\n" "help.text" msgid "Defines the snap distance between the mouse pointer and the object contour. $[officename] Impress snaps to a snap point if the mouse pointer is nearer than the distance selected in the Snap range control." -msgstr " Angjev festeområdet mellom musepeikaren og omrisset av objektet. I $[officename] Impress vert objekta fest til eit festepunkt viss musepeikaren er nærare enn avstanden som er vald i talboksen Festeområde." +msgstr "Definerer festeområdet mellom musepeikaren og omrisset av objektet. I $[officename] Impress vert objekta fest til eit festepunkt viss musepeikaren er nærare enn avstanden som er vald i talboksen Festeområde." #. Buxm8 #: 01070300.xhp @@ -14461,7 +14461,7 @@ "par_id3154346\n" "help.text" msgid "Specifies that punctuation and Japanese Kana are compressed." -msgstr "Angjev at teiknsetjing og japansk Kana er komprimert." +msgstr "Spesifiserer at teiknsetjing og japansk Kana er komprimert." #. TGyFX #: 01150100.xhp @@ -14497,7 +14497,7 @@ "par_id3151210\n" "help.text" msgid "Specifies the language for which you want to define first and last characters." -msgstr "Angjev språket som dei første og siste teikna skal definerast for." +msgstr "Spesifiserer språket som dei første og siste teikna skal definerast for." #. XhxPu #: 01150100.xhp @@ -14596,7 +14596,7 @@ "par_id3154514\n" "help.text" msgid "Specifies the options to be treated as equal in a search." -msgstr "Angjev dei vala som skal handterast som like i eit søk." +msgstr "Spesifiserer dei vala som skal handterast som like i eit søk." #. V5uxp #: 01150200.xhp @@ -14614,7 +14614,7 @@ "par_id3147264\n" "help.text" msgid "Specifies the characters to be ignored." -msgstr "Angjev kva teikn som skal ignorerast." +msgstr "Spesifiserer kva teikn som skal ignorerast." #. 9fZsF #: 01150300.xhp @@ -14650,7 +14650,7 @@ "par_id3150247\n" "help.text" msgid "Defines the options for documents with complex text layouts." -msgstr "Angjev innstillingane for dokument med kompleks tekstvising." +msgstr "Spesifiserer innstillingane for dokument med kompleks tekstvising." #. D8aeE #: 01150300.xhp @@ -14785,7 +14785,7 @@ "par_id3153254\n" "help.text" msgid "Selects the type of numerals used within text, text in objects, fields, and controls, in all %PRODUCTNAME modules. Only cell contents of %PRODUCTNAME Calc are not affected." -msgstr "Angjev taltypen som skal brukast i tekst, tekst i objekt, felt og kontrollelement i alle %PRODUCTNAME-modular. Berre celleinnhaldet i %PRODUCTNAME Clac er upåverka av dette." +msgstr "Markerer taltypen som skal brukast i tekst, tekst i objekt, felt og kontrollelement i alle %PRODUCTNAME-modular. Berre celleinnhaldet i %PRODUCTNAME Calc er upåverka av dette." #. qsoaM #: 01150300.xhp @@ -16126,7 +16126,7 @@ "par_idN10635\n" "help.text" msgid "Add a path to the root folder of a JRE on your computer. The path is set in the following dialog." -msgstr "Legg til ein sti til rotmappa til Java-køyremiljøet (JRE) på datamaskinen. Angjev stien i det neste dialogvindauget som vert vist." +msgstr "Legg til ein sti til rotmappa til Java-køyremiljøet (JRE) på datamaskinen. Stien vert sett i det neste dialogvindauget." #. zHjX8 #: java.xhp @@ -16711,7 +16711,7 @@ "par_idN10567\n" "help.text" msgid "Specifies the macro security settings for trusted certificates and trusted file locations." -msgstr "Angjev innstillingane for makrotryggleik for sertifikat du stolar på og tiltrudde filplasseringar." +msgstr "Spesifiserer innstillingane for makrotryggleik for sertifikat du stolar på og tiltrudde filplasseringar." #. 3fVoF #: macrosecurity_ts.xhp @@ -17800,7 +17800,7 @@ "par_idN10658\n" "help.text" msgid "Specifies that the incoming mail server uses POP 3." -msgstr "Angjev at tenaren for innkomande e-post brukar POP 3." +msgstr "Spesifiserer at tenaren for innkomande e-post brukar POP 3." #. q8EMC #: serverauthentication.xhp @@ -17818,7 +17818,7 @@ "par_idN1066A\n" "help.text" msgid "Specifies that the incoming mail server uses IMAP." -msgstr "Angjev at tenaren for innkomande e-post brukar IMAP." +msgstr "Spesifiserer at tenaren for innkomande e-post brukar IMAP." #. TCYtt #: serverauthentication.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/simpress/guide.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/simpress/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/simpress/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-10-10 09:37+0000\n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547658069.000000\n" #. S83CC @@ -149,7 +149,7 @@ "par_id3145828\n" "help.text" msgid "To modify the shape of the object, click the Points iconIcon on the Drawing toolbar, and drag the handles of the object. You can also drag the control points of a handle to modify the shape of the curve." -msgstr "For å endra forma på objektet klikkar du på knappen PunktIkon på verktøylinja for Teikning og dreg i handtaka til objektet. Du kan også dra kontrollpunkta til eit handtak for å endra forma på kurven." +msgstr "For å endra forma på objektet klikkar du på knappen Punkt Ikon på verktøylinja for Teikning og dreg i handtaka til objektet. Du kan også dra kontrollpunkta til eit handtak for å endra forma på kurven." #. 4BTiv #: 3d_create.xhp @@ -185,7 +185,7 @@ "par_id3155368\n" "help.text" msgid "To modify the shape of the object, click the Points iconIcon on the Drawing toolbar, and drag the handles of the object." -msgstr "Du kan endra utsjånaden til objektet ved å klikka på knappen PunktIkon på verktøylinja for Teikning og dra i handtaka til objektet." +msgstr "Du kan endra utsjånaden til objektet ved å klikka på knappen Punkt Ikon på verktøylinja for Teikning og dra i handtaka til objektet." #. upFTG #: 3d_create.xhp @@ -3173,7 +3173,7 @@ "par_id3154766\n" "help.text" msgid "A symmetrical anchor point has the same line curvature on either side, and two control lines that move together as a straight line." -msgstr "Eit symmetrisk ankerpunkt har den same linjekrumminga på kvar side, og to kontrollinjer som flytter saman som ei rett linje." +msgstr "Eit symmetrisk ankerpunkt har den same linjekrumminga på kvar side, og to kontrollinjer som vert flytte saman som ei rett linje." #. 4C6jQ #: line_draw.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/smath/01.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/smath/01.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/smath/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/smath/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-04-11 15:28+0200\n" -"PO-Revision-Date: 2022-09-09 14:35+0000\n" +"PO-Revision-Date: 2023-04-07 05:33+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547660934.000000\n" #. QmNGE @@ -1877,7 +1877,7 @@ "par_id3153749\n" "help.text" msgid "The is defined as relation with two placeholders is inserted by typing def." -msgstr "Du kan setja inn relasjonen er angjeve som med to plasshaldarar ved å skriva inn def." +msgstr "Du kan setja inn relasjonen er definerte som med to plasshaldarar ved å skriva inn def." #. 8LVqx #: 03090200.xhp @@ -7747,7 +7747,7 @@ "par_id3148502\n" "help.text" msgid "is defined as/by definition equal to" -msgstr "Er angjeve som / er lik etter definisjon" +msgstr "Er definert som/er definert som lik med" #. EpywP #: 03091502.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/smath/guide.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/smath/guide.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/smath/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/smath/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-09-09 14:35+0000\n" +"PO-Revision-Date: 2023-05-02 12:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1494396808.000000\n" #. P9FEQ @@ -1292,4 +1292,4 @@ "par_id9961851\n" "help.text" msgid "Some formulas start with an = sign. Use \"=\" to enter that character as direct text." -msgstr "Nokre formlar byrjar med eit er lik-teikn. Bruk \"=\" for å skriva inn dette teiknet som direkte tekst." +msgstr "Nokre formlar byrjar med eit =-teikn. Bruk \"=\" for å skriva inn dette teiknet som direkte tekst." diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/swriter/01.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/swriter/01.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/swriter/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/swriter/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-03 21:34+0000\n" +"PO-Revision-Date: 2023-04-13 15:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -1832,7 +1832,7 @@ "par_id3155589\n" "help.text" msgid "Inserts a copy of the selected item where you drag and drop in the current document. You cannot drag and drop copies of graphics, OLE objects, references and indexes." -msgstr "Set inn ein kopi av valde element der du slepp det i dokumentet. Det er ikkje mogleg å lage kopiar av grafikk, OLE-objekt, referansar eller register på denne måten." +msgstr "Set inn ein kopi av valde element der du slepp det i dokumentet. Det er ikkje mogleg å laga kopiar av grafikk, OLE-objekt, referansar eller register på denne måten." #. NC4jc #: 02110000.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/swriter/guide.po libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.4.6/translations/source/nn/helpcontent2/source/text/swriter/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/helpcontent2/source/text/swriter/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-04-13 15:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565257384.000000\n" #. XAt2Y @@ -8168,7 +8168,7 @@ "bm_id3149689\n" "help.text" msgid "indexes; defining entries in tables of contents; defining entries in entries; defining in indexes/tables of contents" -msgstr "register; lage oppføringar iinnhaldslister; lage oppføringar ioppføringar; lage i register og innhaldslister" +msgstr "register; laga oppføringar iinnhaldslister; laga oppføringar ioppføringar; laga i register og innhaldslister" #. oEmDA #: indices_enter.xhp @@ -8978,7 +8978,7 @@ "par_id1001574720273772\n" "help.text" msgid "%PRODUCTNAME creates the table of contents entries based on the outline level of the paragraph style and the paragraph contents. If the paragraph is empty, it will not be included in the table of contents. To force the empty paragraph to be listed in the table of contents, manually add a space or a non breaking space to the paragraph. Spaces added in the After text box of the Numbering tab in the Chapter Numbering dialog will not work for this purpose, since they are part of the paragraph numbering, not the paragraph contents." -msgstr "%PRODUCTNAME lagar innhaldsliste basert på kapittelnivå i avsnittstil og avsnittinnhald. Viss avsnittet er tomt, vert det ikkje teke med i innhaldslista. Viss du vil tvinga det tomme avsnittet til å bli oppført i innhaldslista, legg du til eit mellomrom eller eit hardt mellomrom til avsnittet. Mellomrom lagt til i tekstfeltet Etter i dialogvindauget «Kapittelnummerering» verkar ikkje for dette føremålet, sidan de er ein del av avsnittnummereringa og ikkje innhaldet i avsnittet." +msgstr "%PRODUCTNAME lagar innhaldsliste basert på kapittelnivå i avsnittstil og avsnittinnhald. Viss avsnittet er tomt, vert det ikkje teke med i innhaldslista. Viss du vil tvinga det tomme avsnittet til å bli oppført i innhaldslista, legg du til eit mellomrom eller eit hardt mellomrom til avsnittet. Mellomrom lagt til i tekstfeltet Etter i dialogvindauget «Kapittelnummerering» verkar ikkje for dette føremålet, sidan det er ein del av avsnittnummereringa og ikkje innhaldet i avsnittet." #. Fdoe5 #: indices_toc.xhp diff -Nru libreoffice-7.4.6/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-12-10 11:04+0000\n" +"PO-Revision-Date: 2023-03-18 04:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1566133413.000000\n" #. W5ukN @@ -16694,7 +16694,7 @@ "Label\n" "value.text" msgid "Block Arc" -msgstr "Boge" +msgstr "Blokkboge" #. 4t7wU #: GenericCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/nn/sc/messages.po libreoffice-7.4.7/translations/source/nn/sc/messages.po --- libreoffice-7.4.6/translations/source/nn/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-05 17:33+0000\n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13206,7 +13206,7 @@ #: sc/inc/scfuncs.hrc:3137 msgctxt "SC_OPCODE_FORECAST_ETS_ADD" msgid "The date (array) for which you want to predict a value." -msgstr "Datoen (matrisa) som du vil lage prognose frå." +msgstr "Datoen (matrisa) som du vil laga prognose frå." #. WTRGs #: sc/inc/scfuncs.hrc:3138 @@ -13218,7 +13218,7 @@ #: sc/inc/scfuncs.hrc:3139 msgctxt "SC_OPCODE_FORECAST_ETS_ADD" msgid "The data array from which you want to forecast." -msgstr "Datamatrisa som du vil lage prognose frå" +msgstr "Datamatrisa som du vil laga prognose frå" #. ALBwX #: sc/inc/scfuncs.hrc:3140 @@ -13296,7 +13296,7 @@ #: sc/inc/scfuncs.hrc:3157 msgctxt "SC_OPCODE_FORECAST_ETS_MUL" msgid "The data array from which you want to forecast." -msgstr "Datamatrisa som du vil lage prognose frå" +msgstr "Datamatrisa som du vil laga prognose frå" #. HVuEv #: sc/inc/scfuncs.hrc:3158 @@ -13374,7 +13374,7 @@ #: sc/inc/scfuncs.hrc:3175 msgctxt "SC_OPCODE_FORECAST_ETS_PIA" msgid "The data array from which you want to forecast." -msgstr "Datamatrisa som du vil lage prognose frå" +msgstr "Datamatrisa som du vil laga prognose frå" #. sX9wy #: sc/inc/scfuncs.hrc:3176 @@ -13464,7 +13464,7 @@ #: sc/inc/scfuncs.hrc:3195 msgctxt "SC_OPCODE_FORECAST_ETS_PIM" msgid "The data array from which you want to forecast." -msgstr "Datamatrisa som du vil lage prognose frå" +msgstr "Datamatrisa som du vil laga prognose frå" #. qZ7k6 #: sc/inc/scfuncs.hrc:3196 @@ -13542,7 +13542,7 @@ #: sc/inc/scfuncs.hrc:3213 msgctxt "SC_OPCODE_FORECAST_ETS_SEA" msgid "The data array from which you want to forecast." -msgstr "Datamatrisa som du vil lage prognose frå" +msgstr "Datamatrisa som du vil laga prognose frå" #. gXDNU #: sc/inc/scfuncs.hrc:3214 @@ -13596,7 +13596,7 @@ #: sc/inc/scfuncs.hrc:3227 msgctxt "SC_OPCODE_FORECAST_ETS_STA" msgid "The data array from which you want to forecast." -msgstr "Datamatrisa som du vil lage prognose frå" +msgstr "Datamatrisa som du vil laga prognose frå" #. XAEUE #: sc/inc/scfuncs.hrc:3228 @@ -13674,7 +13674,7 @@ #: sc/inc/scfuncs.hrc:3245 msgctxt "SC_OPCODE_FORECAST_ETS_STM" msgid "The data array from which you want to forecast." -msgstr "Datamatrisa som du vil lage prognose frå" +msgstr "Datamatrisa som du vil laga prognose frå" #. dC4fq #: sc/inc/scfuncs.hrc:3246 @@ -29517,7 +29517,7 @@ #: sc/uiconfig/scalc/ui/selectsource.ui:230 msgctxt "selectsource|extended_tip|SelectSourceDialog" msgid "Opens a dialog where you can select the source for your pivot table, and then create your table." -msgstr "Opnar ein dialog der du kan velja kjelda for pivottabellen og deretter lage tabellen." +msgstr "Opnar ein dialog der du kan velja kjelda for pivottabellen og deretter laga tabellen." #. ukBzT #: sc/uiconfig/scalc/ui/sharedfirstfooterdialog.ui:8 diff -Nru libreoffice-7.4.6/translations/source/nn/scp2/source/ooo.po libreoffice-7.4.7/translations/source/nn/scp2/source/ooo.po --- libreoffice-7.4.6/translations/source/nn/scp2/source/ooo.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/scp2/source/ooo.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-02-21 15:23+0100\n" -"PO-Revision-Date: 2022-09-21 09:48+0000\n" +"PO-Revision-Date: 2023-03-08 23:34+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1561145207.000000\n" #. CYBGJ @@ -266,7 +266,7 @@ "STR_DESC_MODULE_HELPPACK_ZH_CN\n" "LngText.text" msgid "Installs Chinese (simplified) help in %PRODUCTNAME %PRODUCTVERSION" -msgstr "Installerer hjelp på kinesisk (forenklet) i %PRODUCTNAME %PRODUCTVERSION" +msgstr "Installerer hjelp på kinesisk (forenkla) i %PRODUCTNAME %PRODUCTVERSION" #. UsZM3 #: module_helppack.ulf @@ -2318,7 +2318,7 @@ "STR_DESC_MODULE_LANGPACK_ZH_CN\n" "LngText.text" msgid "Installs the Chinese (simplified) user interface" -msgstr "Installerer det kinesiske (forenklet) brukargrensesnittet" +msgstr "Installerer det kinesiske (forenkla) brukargrensesnittet" #. 5hYB3 #: module_langpack.ulf diff -Nru libreoffice-7.4.6/translations/source/nn/sd/messages.po libreoffice-7.4.7/translations/source/nn/sd/messages.po --- libreoffice-7.4.6/translations/source/nn/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-28 18:04+0000\n" +"PO-Revision-Date: 2023-04-14 20:33+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -1916,7 +1916,7 @@ #: sd/inc/strings.hrc:279 msgctxt "STR_LAYER_CONTROLS" msgid "Controls" -msgstr "Kontrollar" +msgstr "Kontrollelement" #. zQSpC #: sd/inc/strings.hrc:280 @@ -3112,7 +3112,7 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:26 msgctxt "copydlg|DuplicateDialog" msgid "Duplicate" -msgstr "Dupliserr" +msgstr "Dupliser" #. FuEEG #: sd/uiconfig/sdraw/ui/copydlg.ui:42 @@ -8168,7 +8168,7 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:326 msgctxt "photoalbum|cap_check" msgid "Add caption to each slide" -msgstr "Legg tekst til kvart bilete" +msgstr "Legg tekst til kvart lysbilete" #. qD3jg #: sd/uiconfig/simpress/ui/photoalbum.ui:341 diff -Nru libreoffice-7.4.6/translations/source/nn/svx/messages.po libreoffice-7.4.7/translations/source/nn/svx/messages.po --- libreoffice-7.4.6/translations/source/nn/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-02-28 18:04+0000\n" +"PO-Revision-Date: 2023-04-14 20:33+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1566134037.000000\n" #. 3GkZj @@ -620,7 +620,7 @@ #: include/svx/strings.hrc:125 msgctxt "STR_ObjNamePluralUno" msgid "Controls" -msgstr "Kontrollar" +msgstr "Kontrollelement" #. wfVg2 #: include/svx/strings.hrc:126 @@ -6916,7 +6916,7 @@ #: include/svx/strings.hrc:1246 msgctxt "RID_STR_NODATACONTROLS" msgid "No data-related controls in the current form!" -msgstr "Det er ingen informasjonskontrollar i dette skjemaet." +msgstr "Det er ingen datarelaterte kontrollelement i dette skjemaet." #. ZyBEz #: include/svx/strings.hrc:1247 @@ -19951,7 +19951,7 @@ #: svx/uiconfig/ui/sidebartextcolumnspanel.ui:35 msgctxt "sidebartextcolumns|labelColNumber" msgid "_Number of columns:" -msgstr "Tal på _kolonnar:" +msgstr "Tal på _spalter:" #. b7QHr #: svx/uiconfig/ui/sidebartextcolumnspanel.ui:49 diff -Nru libreoffice-7.4.6/translations/source/nn/sw/messages.po libreoffice-7.4.7/translations/source/nn/sw/messages.po --- libreoffice-7.4.6/translations/source/nn/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/nn/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-14 20:33+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13078,7 +13078,7 @@ #: sw/uiconfig/swriter/ui/datasourcesunavailabledialog.ui:14 msgctxt "datasourcesunavailabledialog|DataSourcesUnavailableDialog" msgid "No data sources are available. Create a new one?" -msgstr "Ingen datakjelder er tilgjengelege. Lage ei ny?" +msgstr "Ingen datakjelder er tilgjengelege. Laga ei ny?" #. FBnGD #: sw/uiconfig/swriter/ui/datasourcesunavailabledialog.ui:15 @@ -18104,7 +18104,7 @@ #: sw/uiconfig/swriter/ui/labeldialog.ui:34 msgctxt "labeldialog|extended_tip|ok" msgid "Creates a new document for editing." -msgstr "Lager eit nytt dokument som du kan redigera." +msgstr "Lagar eit nytt dokument som du kan redigera." #. hJSCq #: sw/uiconfig/swriter/ui/labeldialog.ui:144 @@ -25197,7 +25197,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:53 msgctxt "printoptionspage|formcontrols" msgid "Form control_s" -msgstr "_Kontrollar" +msgstr "_Kontrollelement" #. awozF #: sw/uiconfig/swriter/ui/printoptionspage.ui:61 diff -Nru libreoffice-7.4.6/translations/source/pa-IN/extensions/source/update/check/org/openoffice/Office.po libreoffice-7.4.7/translations/source/pa-IN/extensions/source/update/check/org/openoffice/Office.po --- libreoffice-7.4.6/translations/source/pa-IN/extensions/source/update/check/org/openoffice/Office.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pa-IN/extensions/source/update/check/org/openoffice/Office.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-05-24 07:37+0000\n" +"PO-Revision-Date: 2023-03-10 12:32+0000\n" "Last-Translator: A S Alam \n" -"Language-Team: Punjabi \n" +"Language-Team: Punjabi \n" "Language: pa-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1513032907.000000\n" #. uuumn @@ -24,4 +24,4 @@ "Title\n" "value.text" msgid "~Check for Updates..." -msgstr "ਅੱਪਡੇਟ ਲਈ ਜਾਂਚ ਕਰੋ(~C)..." +msgstr "ਅੱਪਡੇਟ ਲਈ ਜਾਂਚ ਕਰੋ(~C)..." diff -Nru libreoffice-7.4.6/translations/source/pa-IN/scp2/source/draw.po libreoffice-7.4.7/translations/source/pa-IN/scp2/source/draw.po --- libreoffice-7.4.6/translations/source/pa-IN/scp2/source/draw.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pa-IN/scp2/source/draw.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2019-01-28 02:25+0000\n" -"Last-Translator: a7talam \n" -"Language-Team: Punjabi/Panjabi \n" -"Language: pa_IN\n" +"PO-Revision-Date: 2023-03-08 23:34+0000\n" +"Last-Translator: A S Alam \n" +"Language-Team: Punjabi \n" +"Language: pa-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1548642342.000000\n" #. txsAG @@ -158,7 +158,7 @@ "STR_REG_VAL_MS_PUBLISHER_DOCUMENT\n" "LngText.text" msgid "Microsoft Publisher Document" -msgstr "" +msgstr "ਮਾਈਕਰੋਸਾਫ਼ਟ ਪਬਲਿਸ਼ਰ ਡੌਕੂਮੈਂਟ" #. KUoBv #: registryitem_draw.ulf @@ -167,7 +167,7 @@ "STR_REG_VAL_WORDPERFECT_GRAPHIC_FILE\n" "LngText.text" msgid "WordPerfect Graphic File" -msgstr "" +msgstr "ਵਰਡ-ਪ੍ਰਫ਼ੈਕਟ ਗਰਾਫ਼ਿਕ ਫ਼ਾਇਲ" #. dUyEH #: registryitem_draw.ulf diff -Nru libreoffice-7.4.6/translations/source/pa-IN/scp2/source/gnome.po libreoffice-7.4.7/translations/source/pa-IN/scp2/source/gnome.po --- libreoffice-7.4.6/translations/source/pa-IN/scp2/source/gnome.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pa-IN/scp2/source/gnome.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2018-10-02 16:37+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" -"Language: pa_IN\n" +"PO-Revision-Date: 2023-03-08 23:34+0000\n" +"Last-Translator: A S Alam \n" +"Language-Team: Punjabi \n" +"Language: pa-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1538498261.000000\n" #. VCiDR @@ -31,4 +32,4 @@ "STR_DESC_MODULE_OPTIONAL_GNOME\n" "LngText.text" msgid "System integration of %PRODUCTNAME %PRODUCTVERSION into GNOME Desktop Environment." -msgstr "" +msgstr "%PRODUCTNAME %PRODUCTVERSION ਨੂੰ ਗਨੋਮ ਡੈਸਕਟਾਪ ਇਨਵਾਇਰਨਮੈਂਟ ਲਈ ਸਿਸਟਮ ਜੋੜ" diff -Nru libreoffice-7.4.6/translations/source/pa-IN/sd/messages.po libreoffice-7.4.7/translations/source/pa-IN/sd/messages.po --- libreoffice-7.4.6/translations/source/pa-IN/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pa-IN/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-03-08 23:34+0000\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" "Language: pa-IN\n" @@ -1174,7 +1174,7 @@ #: sd/inc/strings.hrc:151 msgctxt "STR_FULLSCREEN_SLIDESHOW" msgid "Presenting: %s" -msgstr "" +msgstr "ਪੇਸ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: %s" #. uo4o3 #. To translators: this is the spinbutton in the slidesorter toolbar to set the number of slides to show per row @@ -2111,37 +2111,37 @@ #: sd/inc/strings.hrc:312 msgctxt "STR_PRESOBJ_NOTESTEXT_MOBILE" msgid "Double-tap to add Notes" -msgstr "" +msgstr "ਨੋਟਿਸ ਜੋੜਨ ਲਈ ਦੋ ਵਾਰ ਛੂਹੋ" #. ZqPtT #: sd/inc/strings.hrc:313 msgctxt "STR_PRESOBJ_GRAPHIC" msgid "Double-click to add an Image" -msgstr "" +msgstr "ਚਿੱਤਰ ਜੋੜਨ ਲਈ ਦੋ ਵਾਰ ਕਲਿੱਕ ਕਰੋ" #. HGVA3 #: sd/inc/strings.hrc:314 msgctxt "STR_PRESOBJ_OBJECT" msgid "Double-click to add an Object" -msgstr "" +msgstr "ਆਬਜੈਕਟ ਜੋੜਨ ਲਈ ਦੋ ਵਾਰ ਕਲਿੱਕ ਕਰੋ" #. XjW6w #: sd/inc/strings.hrc:315 msgctxt "STR_PRESOBJ_CHART" msgid "Double-click to add a Chart" -msgstr "" +msgstr "ਚਾਰਟ ਜੋੜਨ ਲਈ ਦੋ ਵਾਰ ਕਲਿੱਕ ਕਰੋ" #. eKgCA #: sd/inc/strings.hrc:316 msgctxt "STR_PRESOBJ_ORGCHART" msgid "Double-click to add an Organization Chart" -msgstr "" +msgstr "ਸੰਗਠਨ ਚਾਰਟ ਜੋੜਨ ਲਈ ਦੋ ਵਾਰ ਕਲਿੱਕ ਕਰੋ" #. wW4E4 #: sd/inc/strings.hrc:317 msgctxt "STR_PRESOBJ_TABLE" msgid "Double-click to add a Spreadsheet" -msgstr "" +msgstr "ਸਪਰੈਡਸ਼ੀਟ ਜੋੜਨ ਲਈ ਦੋ ਵਾਰ ਕਲਿੱਕ ਕਰੋ" #. nBtJo #: sd/inc/strings.hrc:318 @@ -2159,7 +2159,7 @@ #: sd/inc/strings.hrc:320 msgctxt "STR_STANDARD_STYLESHEET_NAME" msgid "Default Drawing Style" -msgstr "" +msgstr "ਮੂਲ ਡਰਾਇੰਗ ਸਟਾਈਲ" #. pxfDw #: sd/inc/strings.hrc:321 @@ -2195,7 +2195,7 @@ #: sd/inc/strings.hrc:327 msgctxt "STR_POOLSHEET_OBJNOLINENOFILL" msgid "Object with no fill and no line" -msgstr "" +msgstr "ਬਿਨਾਂ ਭਰਨ ਦੇ ਆਬਜੈਕਟ ਅਤੇ ਕੋਈ ਰੇਖਾ ਨਹੀਂ" #. YCmiq #: sd/inc/strings.hrc:328 @@ -2207,7 +2207,7 @@ #: sd/inc/strings.hrc:329 msgctxt "STR_POOLSHEET_A4" msgid "A4" -msgstr "" +msgstr "A4" #. EEK5c #: sd/inc/strings.hrc:330 @@ -2495,21 +2495,18 @@ #. 8KV99 #: sd/inc/strings.hrc:384 -#, fuzzy msgctxt "SID_SD_A11Y_P_PAGE_N" msgid "PresentationPage" -msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ" +msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ-ਸਫ਼ਾ" #. R6kyg #: sd/inc/strings.hrc:385 -#, fuzzy msgctxt "SID_SD_A11Y_P_NOTES_N" msgid "PresentationNotes" -msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ" +msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ-ਨੋਟਿਸ" #. X8c9Z #: sd/inc/strings.hrc:386 -#, fuzzy msgctxt "SID_SD_A11Y_P_HANDOUT_N" msgid "Handout" msgstr "ਹੈਂਡਆਉਟ" @@ -2522,17 +2519,15 @@ #. sA8of #: sd/inc/strings.hrc:388 -#, fuzzy msgctxt "SID_SD_A11Y_P_FOOTER_N" msgid "PresentationFooter" -msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ ਮੋਡ" +msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ-ਫ਼ੁੱਟਰ" #. KAC6Z #: sd/inc/strings.hrc:389 -#, fuzzy msgctxt "SID_SD_A11Y_P_HEADER_N" msgid "PresentationHeader" -msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ" +msgstr "ਪਰਿਜੈੱਟੇਸ਼ਨ-ਹੈੱਡਰ" #. EfHeH #: sd/inc/strings.hrc:390 @@ -2585,7 +2580,6 @@ #. buhox #: sd/inc/strings.hrc:398 -#, fuzzy msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE" msgid "Handout" msgstr "ਹੈਂਡਆਉਟ" @@ -3075,7 +3069,7 @@ #: sd/uiconfig/sdraw/ui/breakdialog.ui:56 msgctxt "breakdialog|label1" msgid "Processing metafile:" -msgstr "" +msgstr "ਮੇਟਾਫ਼ਾਇਲ ਉੱਤੇ ਕਾਰਵਾਈ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ:" #. 4SJMQ #: sd/uiconfig/sdraw/ui/breakdialog.ui:68 @@ -3255,7 +3249,7 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:494 msgctxt "copydlg|extended_tip|start" msgid "Choose a color for the selected object." -msgstr "" +msgstr "ਚੁਣੇ ਆਬਜੈਕਟ ਲਈ ਰੰਗ ਚੁਣੋ।" #. AAoBa #: sd/uiconfig/sdraw/ui/copydlg.ui:517 @@ -3283,10 +3277,9 @@ #. FXGbk #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:102 -#, fuzzy msgctxt "crossfadedialog|orientation" msgid "Same orientation" -msgstr "ਸਫ਼ਾ ਸਥਿਤੀ(_E)" +msgstr "ਉਹੀ ਸਥਿਤੀ" #. PAGv2 #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:110 @@ -3310,7 +3303,7 @@ #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:144 msgctxt "crossfadedialog|label2" msgid "Increments:" -msgstr "" +msgstr "ਵਾਧਾ:" #. d2wBc #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:163 @@ -3448,13 +3441,13 @@ #: sd/uiconfig/sdraw/ui/drawchardialog.ui:279 msgctxt "drawchardialog|RID_SVXPAGE_BKG" msgid "Highlighting" -msgstr "" +msgstr "ਉਘਾੜਨਾ" #. 7FuBt #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:8 msgctxt "drawpagedialog|DrawPageDialog" msgid "Page Properties" -msgstr "" +msgstr "ਸਫ਼ੇ ਦੀਆਂ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ" #. Py4db #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:136 @@ -3490,7 +3483,7 @@ #: sd/uiconfig/sdraw/ui/drawparadialog.ui:136 msgctxt "drawparadialog|labelTP_PARA_STD" msgid "Indents & Spacing" -msgstr "" +msgstr "ਹਾਸ਼ੀਏ ਤੋਂ ਦੂਰ ਤੇ ਫ਼ਾਸਲਾ" #. xDCfw #: sd/uiconfig/sdraw/ui/drawparadialog.ui:183 @@ -3646,7 +3639,7 @@ #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:8 msgctxt "drawprtldialog|DrawPRTLDialog" msgid "Presentation Layout" -msgstr "" +msgstr "ਪੇਸ਼ਕਾਰੀ ਖਾਕਾ" #. qhGQW #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:138 @@ -3688,7 +3681,7 @@ #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:425 msgctxt "drawprtldialog|RID_SVXPAGE_STD_PARAGRAPH" msgid "Indents & Spacing" -msgstr "" +msgstr "ਹਾਸ਼ੀਏ ਤੋਂ ਦੂਰ ਤੇ ਫ਼ਾਸਲਾ" #. hQgNU #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:473 @@ -3742,7 +3735,7 @@ #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:857 msgctxt "drawprtldialog|RID_SVXPAGE_BKG" msgid "Highlighting" -msgstr "" +msgstr "ਉਘਾੜਨਾ" #. w9EdD #: sd/uiconfig/sdraw/ui/insertlayer.ui:8 @@ -6018,10 +6011,9 @@ #. dgg5q #: sd/uiconfig/simpress/ui/fontstylemenu.ui:12 -#, fuzzy msgctxt "fontstylemenu|bold" msgid "Bold" -msgstr "ਗੂੜੇ" +msgstr "ਗੂੜਾ" #. HgpdJ #: sd/uiconfig/simpress/ui/fontstylemenu.ui:20 @@ -6031,23 +6023,21 @@ #. A5UUL #: sd/uiconfig/simpress/ui/fontstylemenu.ui:28 -#, fuzzy msgctxt "fontstylemenu|underline" msgid "Underlined" -msgstr "ਹੇਠਾਂ ਲਾਈਨ" +msgstr "ਹੇਠਾਂ ਰੇਖਾ" #. BnypD #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:8 -#, fuzzy msgctxt "headerfooterdialog|HeaderFooterDialog" msgid "Header and Footer" -msgstr "ਹੈੱਡਰ ਅਤੇ ਫੁੱਟਨੋਟ(~H)..." +msgstr "ਹੈੱਡਰ ਅਤੇ ਫੁੱਟਨੋਟ" #. HmAnf #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:24 msgctxt "headerfooterdialog|apply_all" msgid "Appl_y to All" -msgstr "" +msgstr "ਸਭ ਤੇ ਲਾਗੂ ਕਰੋ(_y)" #. X6wby #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:33 @@ -6081,10 +6071,9 @@ #. BgFsS #: sd/uiconfig/simpress/ui/headerfootertab.ui:35 -#, fuzzy msgctxt "headerfootertab|header_cb" msgid "Heade_r" -msgstr "ਹੈੱਡਰ" +msgstr "ਹੈੱਡਰ(_r)" #. 7qH6R #: sd/uiconfig/simpress/ui/headerfootertab.ui:44 @@ -6096,7 +6085,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:64 msgctxt "headerfootertab|header_label" msgid "Header _text:" -msgstr "" +msgstr "ਹੈੱਡਰ ਲਿਖਤ(_t):" #. uNdGZ #: sd/uiconfig/simpress/ui/headerfootertab.ui:83 @@ -6106,23 +6095,21 @@ #. ruQCk #: sd/uiconfig/simpress/ui/headerfootertab.ui:105 -#, fuzzy msgctxt "headerfootertab|datetime_cb" msgid "_Date and time" -msgstr "ਮਿਤੀ ਅਤੇ ਸਮਾਂ" +msgstr "ਤਾਰੀਖ ਅਤੇ ਸਮਾਂ(_D)" #. tUcmE #: sd/uiconfig/simpress/ui/headerfootertab.ui:113 msgctxt "headerfootertab|extended_tip|datetime_cb" msgid "Adds the date and time to the slide." -msgstr "" +msgstr "ਸਲਾਈਡ ਲਈ ਤਾਰੀਖ ਤੇ ਸਮਾਂ ਜੋੜਦਾ ਹੈ।" #. LDq83 #: sd/uiconfig/simpress/ui/headerfootertab.ui:137 -#, fuzzy msgctxt "headerfootertab|rb_fixed" msgid "Fi_xed" -msgstr "ਸਥਿਰ" +msgstr "ਸਥਿਰ(_x)" #. RrPiS #: sd/uiconfig/simpress/ui/headerfootertab.ui:149 @@ -6138,10 +6125,9 @@ #. Zch2Q #: sd/uiconfig/simpress/ui/headerfootertab.ui:195 -#, fuzzy msgctxt "headerfootertab|rb_auto" msgid "_Variable" -msgstr "ਮੁੱਲ" +msgstr "ਮੁੱਲ(_V)" #. CA8yX #: sd/uiconfig/simpress/ui/headerfootertab.ui:207 @@ -6157,10 +6143,9 @@ #. iDwM5 #: sd/uiconfig/simpress/ui/headerfootertab.ui:242 -#, fuzzy msgctxt "headerfootertab|language_label" msgid "_Language:" -msgstr "ਭਾਸ਼ਾ(_L)" +msgstr "ਭਾਸ਼ਾ(_L):" #. BCGcC #: sd/uiconfig/simpress/ui/headerfootertab.ui:258 @@ -6170,10 +6155,9 @@ #. mDMwW #: sd/uiconfig/simpress/ui/headerfootertab.ui:271 -#, fuzzy msgctxt "headerfootertab|language_label1" msgid "_Format:" -msgstr "ਫਾਰਮੈਟ(_F)" +msgstr "ਫਾਰਮੈਟ(_F):" #. htD4f #: sd/uiconfig/simpress/ui/headerfootertab.ui:315 @@ -6466,10 +6450,9 @@ #. ECoVa #: sd/uiconfig/simpress/ui/interactionpage.ui:91 -#, fuzzy msgctxt "interactionpage|fttree" msgid "Target:" -msgstr "ਟਾਰਗੇਟ" +msgstr "ਟਾਰਗੇਟ:" #. tFofb #: sd/uiconfig/simpress/ui/interactionpage.ui:150 @@ -6503,10 +6486,9 @@ #. xDPqu #: sd/uiconfig/simpress/ui/interactionpage.ui:323 -#, fuzzy msgctxt "interactionpage|find" msgid "_Find" -msgstr "ਖੋਜ" +msgstr "ਖੋਜੋ(_F)" #. AMQ6d #: sd/uiconfig/simpress/ui/interactionpage.ui:330 @@ -6558,43 +6540,39 @@ #. Ed2VQ #: sd/uiconfig/simpress/ui/layoutmenu.ui:12 -#, fuzzy msgctxt "layoutmenu|apply" msgid "Apply to _Selected Slides" -msgstr "ਚੁਣੀਆਂ ਸਲਾਈਡਾਂ 'ਤੇ ਲਾਗੂ(~S)" +msgstr "ਚੁਣੀਆਂ ਸਲਾਈਡਾਂ 'ਤੇ ਲਾਗੂ(_S)" #. r6oAh #: sd/uiconfig/simpress/ui/layoutmenu.ui:26 -#, fuzzy msgctxt "layoutmenu|insert" msgid "_Insert Slide" -msgstr "ਸਲਾਈਡ ਸ਼ਾਮਿਲ" +msgstr "ਸਲਾਈਡ ਸ਼ਾਮਲ(_I)" #. e84v4 #: sd/uiconfig/simpress/ui/layoutwindow.ui:55 msgctxt "layoutwindow|label5" msgid "Horizontal" -msgstr "" +msgstr "ਲੇਟਵਾਂ" #. usUqJ #: sd/uiconfig/simpress/ui/layoutwindow.ui:107 msgctxt "layoutwindow|label6" msgid "Vertical" -msgstr "" +msgstr "ਖੜ੍ਹਵਾਂ" #. uydrR #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:8 -#, fuzzy msgctxt "masterlayoutdlg|MasterLayoutDialog" msgid "Master Elements" -msgstr "ਮਾਸਟਰ ਐਲੀਮੈਂਟ(~E)..." +msgstr "ਮਾਸਟਰ ਐਲੀਮੈਂਟ" #. 2kiHn #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:92 -#, fuzzy msgctxt "masterlayoutdlg|header" msgid "_Header" -msgstr "ਹੈੱਡਰ" +msgstr "ਹੈੱਡਰ(_H)" #. r7Aa8 #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:100 @@ -6604,10 +6582,9 @@ #. iccus #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:112 -#, fuzzy msgctxt "masterlayoutdlg|datetime" msgid "_Date/time" -msgstr "ਮਿਤੀ ਅਤੇ ਸਮਾਂ(_d)" +msgstr "ਤਾਰੀਖ/ਸਮਾਂ(_D)" #. LcYxF #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:120 @@ -6629,10 +6606,9 @@ #. AyWZh #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:152 -#, fuzzy msgctxt "masterlayoutdlg|pagenumber" msgid "_Page number" -msgstr "ਸਫ਼ਾ ਨਾਂ(~a)" +msgstr "ਸਫ਼ਾ ਨੰਬਰ(_P)" #. y3BDS #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:160 @@ -6644,14 +6620,13 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:172 msgctxt "masterlayoutdlg|slidenumber" msgid "_Slide number" -msgstr "" +msgstr "ਸਲਾਈਡ ਨੰਬਰ(_S)" #. StLxB #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:191 -#, fuzzy msgctxt "masterlayoutdlg|Placeholders" msgid "Placeholders" -msgstr "ਟਿਕਾਣਾ" +msgstr "ਟਿਕਾਣੇ" #. 2iPYT #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:216 @@ -6661,49 +6636,45 @@ #. 69Akr #: sd/uiconfig/simpress/ui/mastermenu.ui:12 -#, fuzzy msgctxt "mastermenu|applyall" msgid "_Apply to All Slides" -msgstr "ਸਭ ਸਲਾਈਡਾਂ 'ਤੇ ਲਾਗੂ(~A)" +msgstr "ਸਭ ਸਲਾਈਡਾਂ 'ਤੇ ਲਾਗੂ ਕਰੋ(_A)" #. VRgjP #: sd/uiconfig/simpress/ui/mastermenu.ui:20 -#, fuzzy msgctxt "mastermenu|applyselect" msgid "Apply to _Selected Slides" -msgstr "ਚੁਣੀਆਂ ਸਲਾਈਡਾਂ 'ਤੇ ਲਾਗੂ(~S)" +msgstr "ਚੁਣੀਆਂ ਸਲਾਈਡਾਂ 'ਤੇ ਲਾਗੂ ਕਰੋ(_S)" #. JqkU5 #: sd/uiconfig/simpress/ui/mastermenu.ui:34 -#, fuzzy msgctxt "mastermenu|large" msgid "Show _Large Preview" -msgstr "ਵੱਡੀ ਝਲਕ ਵੇਖਾਓ(~L)" +msgstr "ਵੱਡੀ ਝਲਕ ਵੇਖਾਓ(_L)" #. hTJCE #: sd/uiconfig/simpress/ui/mastermenu.ui:42 -#, fuzzy msgctxt "mastermenu|small" msgid "Show S_mall Preview" -msgstr "ਛੋਟੀ ਝਲਕ ਵੇਖਾਓ(~M)" +msgstr "ਛੋਟੀ ਝਲਕ ਵੇਖਾਓ(_m)" #. qF7zf #: sd/uiconfig/simpress/ui/navigatorpanel.ui:12 msgctxt "navigatorpanelSTR_DRAGTYPE_URL" msgid "Insert as Hyperlink" -msgstr "" +msgstr "ਹਾਈਪਰ-ਲਿੰਕ ਵਜੋਂ ਸ਼ਾਮਲ ਕਰੋ" #. ptpuN #: sd/uiconfig/simpress/ui/navigatorpanel.ui:20 msgctxt "navigatorpanel|STR_DRAGTYPE_LINK" msgid "Insert as Link" -msgstr "" +msgstr "ਲਿੰਕ ਵਜੋਂ ਸ਼ਾਮਲ ਕਰੋ" #. z7JSR #: sd/uiconfig/simpress/ui/navigatorpanel.ui:29 msgctxt "navigatorpanel|STR_DRAGTYPE_EMBEDDED" msgid "Insert as Copy" -msgstr "" +msgstr "ਕਾਪੀ ਵਜੋਂ ਸ਼ਾਮਲ ਕਰੋ" #. 3rY8r #: sd/uiconfig/simpress/ui/navigatorpanel.ui:65 @@ -6713,22 +6684,21 @@ #. wavgT #: sd/uiconfig/simpress/ui/navigatorpanel.ui:68 -#, fuzzy msgctxt "navigatorpanel|documents-atkobject" msgid "Active Window" -msgstr "ਸਰਗਰਮ ਝਰੋਖਾ" +msgstr "ਸਰਗਰਮ ਵਿੰਡੋ" #. gcSNb #: sd/uiconfig/simpress/ui/navigatorpanel.ui:69 msgctxt "navigatorpanel|extended_tip|documents" msgid "Lists currently open documents." -msgstr "" +msgstr "ਇਸ ਵੇਲੇ ਖੁੱਲ੍ਹੇ ਦਸਤਾਵੇਜ਼ਾਂ ਦੀ ਸੂਚੀ ਹੈ" #. D6ag8 #: sd/uiconfig/simpress/ui/navigatorpanel.ui:120 msgctxt "navigatorpanel|STR_OBJECTS_TREE" msgid "Page Tree" -msgstr "" +msgstr "ਸਫ਼ਾ ਲੜੀ" #. e6gMq #: sd/uiconfig/simpress/ui/navigatorpanel.ui:121 @@ -6740,7 +6710,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:142 msgctxt "navigatorpanel|first|tooltip_text" msgid "First Slide" -msgstr "" +msgstr "ਪਹਿਲੀ ਸਲਾਈਡ" #. Lqedn #: sd/uiconfig/simpress/ui/navigatorpanel.ui:146 @@ -6752,7 +6722,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:158 msgctxt "navigatorpanel|previous|tooltip_text" msgid "Previous Slide" -msgstr "" +msgstr "ਪਿਛਲੀ ਸਲਾਈਡ" #. PJUma #: sd/uiconfig/simpress/ui/navigatorpanel.ui:162 @@ -6776,7 +6746,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:190 msgctxt "navigatorpanel|last|tooltip_text" msgid "Last Slide" -msgstr "" +msgstr "ਆਖਰੀ ਸਲਾਈਡ" #. aPU7Y #: sd/uiconfig/simpress/ui/navigatorpanel.ui:194 @@ -6786,7 +6756,6 @@ #. mHVom #: sd/uiconfig/simpress/ui/navigatorpanel.ui:218 -#, fuzzy msgctxt "navigatorpanel|dragmode|tooltip_text" msgid "Drag Mode" msgstr "ਚੁੱਕਣ ਢੰਗ" @@ -6801,7 +6770,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:234 msgctxt "navigatorpanel|shapes|tooltip_text" msgid "Show Shapes" -msgstr "" +msgstr "ਸ਼ਕਲਾਂ ਵੇਖੋ" #. EUeae #: sd/uiconfig/simpress/ui/navigatorpanel.ui:238 @@ -6825,13 +6794,13 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:281 msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_ALL_SHAPES" msgid "All shapes" -msgstr "" +msgstr "ਸਭ ਸ਼ਕਲਾਂ" #. qGFEo #: sd/uiconfig/simpress/ui/notebookbar.ui:3196 msgctxt "impressnotebookbar|FileLabel" msgid "_File" -msgstr "" +msgstr "ਫ਼ਾਇਲ(_F)" #. PyC4c #: sd/uiconfig/simpress/ui/notebookbar.ui:3215 @@ -6843,97 +6812,97 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:3271 msgctxt "impressnotebookbar|FileLabel" msgid "~File" -msgstr "" +msgstr "ਫ਼ਾਇਲ(~F)" #. XRcKU #: sd/uiconfig/simpress/ui/notebookbar.ui:4791 msgctxt "impressnotebookbar|HomeMenuButton" msgid "_Home" -msgstr "" +msgstr "ਮੁੱਖ(_H)" #. XqFQv #: sd/uiconfig/simpress/ui/notebookbar.ui:4891 msgctxt "impressnotebookbar|HomeLabel" msgid "~Home" -msgstr "" +msgstr "ਮੁੱਖ(~H)" #. DEQhQ #: sd/uiconfig/simpress/ui/notebookbar.ui:5493 msgctxt "impressnotebookbar|FieldMenuButton" msgid "Fiel_d" -msgstr "" +msgstr "ਖੇਤਰ(_d)" #. 9GEAC #: sd/uiconfig/simpress/ui/notebookbar.ui:6031 msgctxt "impressnotebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "ਸ਼ਾਮਲ(_I)" #. t3YwN #: sd/uiconfig/simpress/ui/notebookbar.ui:6134 msgctxt "impressnotebookbar|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "ਸ਼ਾਮਲ(~I)" #. 58fjG #: sd/uiconfig/simpress/ui/notebookbar.ui:6909 msgctxt "impressnotebookbar|SlideMenuButton" msgid "_Layout" -msgstr "" +msgstr "ਖਾਕਾ(_L)" #. ArPLp #: sd/uiconfig/simpress/ui/notebookbar.ui:6994 msgctxt "impressnotebookbar|LayoutLabel" msgid "~Layout" -msgstr "" +msgstr "ਖਾਕਾ(~L)" #. vRtjP #: sd/uiconfig/simpress/ui/notebookbar.ui:7458 msgctxt "impressnotebookbar|SlideShowMenuButton" msgid "_Slide Show" -msgstr "" +msgstr "ਸਲਾਈਡ ਸ਼ੋ(_S)" #. nV5FC #: sd/uiconfig/simpress/ui/notebookbar.ui:7542 msgctxt "impressnotebookbar|ReferencesLabel" msgid "~Slide Show" -msgstr "" +msgstr "ਸਲਾਈਡ ਸ਼ੋ(~S)" #. sDdGm #: sd/uiconfig/simpress/ui/notebookbar.ui:8078 msgctxt "impressnotebookbar|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "ਪੜਤਾਲ(~R)" #. drk6E #: sd/uiconfig/simpress/ui/notebookbar.ui:8161 msgctxt "impressnotebookbar|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "ਪੜਤਾਲ(~R)" #. vjE5w #: sd/uiconfig/simpress/ui/notebookbar.ui:9380 msgctxt "impressnotebookbar|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "ਵੇਖੋ(_V)" #. KJK9J #: sd/uiconfig/simpress/ui/notebookbar.ui:9465 msgctxt "impressnotebookbar|ViewLabel" msgid "~View" -msgstr "" +msgstr "ਵੇਖੋ(~V)" #. bWC2b #: sd/uiconfig/simpress/ui/notebookbar.ui:10359 msgctxt "impressnotebookbar|TableMenuButton" msgid "_Table" -msgstr "" +msgstr "ਸਾਰਣੀ(_T)" #. dmEJG #: sd/uiconfig/simpress/ui/notebookbar.ui:10443 msgctxt "impressnotebookbar|TableLabel" msgid "~Table" -msgstr "" +msgstr "ਸਾਰਣੀ(~T)" #. Cn8TS #: sd/uiconfig/simpress/ui/notebookbar.ui:10968 @@ -6941,43 +6910,43 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:14034 msgctxt "impressnotebookbar|ConvertMenuButton" msgid "Convert" -msgstr "" +msgstr "ਬਦਲੋ" #. do5DT #: sd/uiconfig/simpress/ui/notebookbar.ui:11638 msgctxt "impressnotebookbar|GraphicMenuButton" msgid "Ima_ge" -msgstr "" +msgstr "ਚਿੱਤਰ(_g)" #. XCSMA #: sd/uiconfig/simpress/ui/notebookbar.ui:11747 msgctxt "impressnotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "ਚਿੱਤਰ(~g)" #. nTy3C #: sd/uiconfig/simpress/ui/notebookbar.ui:13449 msgctxt "impressnotebookbar|DrawMenuButton" msgid "_Draw" -msgstr "" +msgstr "ਡਰਾਅ(_D)" #. BfNQD #: sd/uiconfig/simpress/ui/notebookbar.ui:13556 msgctxt "impressnotebookbar|DrawLabel" msgid "~Draw" -msgstr "" +msgstr "ਡਰਾਅ(~D)" #. p3Faf #: sd/uiconfig/simpress/ui/notebookbar.ui:14390 msgctxt "impressnotebookbar|ObjectMenuButton" msgid "_Object" -msgstr "" +msgstr "ਆਬਜੈਕਟ(_O)" #. wL8mu #: sd/uiconfig/simpress/ui/notebookbar.ui:14497 msgctxt "impressnotebookbar|ObjectLabel" msgid "~Object" -msgstr "" +msgstr "ਆਬਜੈਕਟ(~O)" #. AAosj #: sd/uiconfig/simpress/ui/notebookbar.ui:14998 @@ -7454,13 +7423,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10665 msgctxt "notebookbar_groupedbar_compact|graphicB" msgid "_Media" -msgstr "" +msgstr "ਮੀਡੀਆ(_M)" #. w6MPS #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12294 msgctxt "notebookbar_groupedbar_compact|oleB" msgid "_Master" -msgstr "" +msgstr "ਮਾਸਟਰ(_M)" #. MGQxe #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13347 @@ -7470,24 +7439,21 @@ #. xBYsC #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:14082 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|menub" msgid "_Menu" -msgstr "ਮੇਨੂ" +msgstr "ਮੇਨੂ(_M)" #. EsADr #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2976 -#, fuzzy msgctxt "notebookbar_groupedbar_full|menub" msgid "_Menu" -msgstr "ਮੇਨੂ" +msgstr "ਮੇਨੂ(_M)" #. Ch63h #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3028 -#, fuzzy msgctxt "notebookbar_groupedbar_full|toolsb" msgid "_Tools" -msgstr "ਟੂਲ" +msgstr "ਟੂਲ(_T)" #. kdH4L #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3081 @@ -7497,31 +7463,27 @@ #. bkg23 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3187 -#, fuzzy msgctxt "notebookbar_groupedbar_full|fileb" msgid "_File" -msgstr "ਫਾਇਲ" +msgstr "ਫਾਇਲ(_F)" #. aqbEs #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3420 -#, fuzzy msgctxt "notebookbar_groupedbar_full|editb" msgid "_Edit" -msgstr "ਸੋਧ(~E)" +msgstr "ਸੋਧ(_E)" #. S4ZPU #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3577 -#, fuzzy msgctxt "notebookbar_groupedbar_full|slideshowb" msgid "_Slide Show" -msgstr "ਸਲਾਈਡ ਸ਼ੋ" +msgstr "ਸਲਾਈਡ ਸ਼ੋ(_S)" #. ZShaH #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3770 -#, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphstylet" msgid "S_lide" -msgstr "ਸਲਾਈਡ" +msgstr "ਸਲਾਈਡ(_l)" #. dS4bE #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3919 @@ -7533,21 +7495,19 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4255 msgctxt "notebookbar_groupedbar_full|draw" msgid "D_raw" -msgstr "" +msgstr "ਡਰਾਅ(_r)" #. gQQfL #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4439 -#, fuzzy msgctxt "notebookbar_groupedbar_full|reviewb" msgid "_Review" -msgstr "Review" +msgstr "ਪੜਤਾਲ(_R)" #. BHDdD #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4585 -#, fuzzy msgctxt "notebookbar_groupedbar_full|viewb" msgid "_View" -msgstr "ਵੇਖੋ" +msgstr "ਵੇਖੋ(_V)" #. MECyG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4867 @@ -7555,33 +7515,29 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9631 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11022 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12254 -#, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" -msgstr "ਇਕਸਾਰ" +msgstr "ਇਕਸਾਰ(_A)" #. ZZz6G #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5024 -#, fuzzy msgctxt "notebookbar_groupedbar_full|slideshowt" msgid "_Slide Show" -msgstr "ਸਲਾਈਡ ਸ਼ੋ" +msgstr "ਸਲਾਈਡ ਸ਼ੋ(_S)" #. etFeN #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5267 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6510 -#, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ormat" -msgstr "ਫਾਰਮੈਟ" +msgstr "ਫਾਰਮੈਟ(_o)" #. sdehG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5578 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6821 -#, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Paragraph" -msgstr "ਪ੍ਹੈਰਾ" +msgstr "ਪ੍ਹੈਰਾਗਰਾਫ਼(_P)" #. ncg2G #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5818 @@ -7591,23 +7547,21 @@ #. 6isa9 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5980 -#, fuzzy msgctxt "notebookbar_groupedbar_full|viewt" msgid "_View" -msgstr "ਵੇਖੋ" +msgstr "ਵੇਖੋ(_V)" #. sorSJ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6128 msgctxt "notebookbar_groupedbar_full|reviewp" msgid "_Review" -msgstr "" +msgstr "ਪੜਤਾਲ(_R)" #. jHLaW #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6267 -#, fuzzy msgctxt "notebookbar_groupedbar_full|slideshowtt" msgid "_Slide Show" -msgstr "ਸਲਾਈਡ ਸ਼ੋ" +msgstr "ਸਲਾਈਡ ਸ਼ੋ(_S)" #. Ew7Ho #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6996 @@ -7617,29 +7571,27 @@ #. i8XUZ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7256 -#, fuzzy msgctxt "notebookbar_groupedbar_full|rowscolumnst" msgid "R_ows" -msgstr "ਕਤਾਰਾਂ" +msgstr "ਕਤਾਰਾਂ(_o)" #. 4nboE #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7378 msgctxt "notebookbar_groupedbar_full|calculatet" msgid "_Calc" -msgstr "" +msgstr "ਕੈਲਸ(_C)" #. WfzeY #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7704 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" -msgstr "" +msgstr "ਡਰਾਅ(_r)" #. QNg9L #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7989 -#, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" -msgstr "ਸੋਧ(~E)" +msgstr "ਸੋਧ(_E)" #. BfnGg #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8541 @@ -7651,65 +7603,57 @@ #. 3i55T #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8683 -#, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" -msgstr "ਗਰੁੱਪ" +msgstr "ਗਰੁੱਪ(_p)" #. fNGFB #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8822 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" -msgstr "" +msgstr "3_D" #. SbHmx #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9078 -#, fuzzy msgctxt "notebookbar_groupedbar_full|graphicB" msgid "_Graphic" -msgstr "ਗਰਾਫਿਕਸ" +msgstr "ਗਰਾਫਿਕ(_G)" #. DDTxx #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9243 -#, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" -msgstr "ਰੰਗ" +msgstr "ਰੰਗ(_o)" #. eLnnF #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10172 -#, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" -msgstr "ਮੀਡਿਆ" +msgstr "ਮੀਡਿਆ(_M)" #. duFFM #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10347 -#, fuzzy msgctxt "notebookbar_groupedbar_full|slideshowOLE" msgid "_Slide Show" -msgstr "ਸਲਾਈਡ ਸ਼ੋ" +msgstr "ਸਲਾਈਡ ਸ਼ੋ(_S)" #. wrKzp #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10622 -#, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "F_rame" -msgstr "ਫਰੇਮ" +msgstr "ਫਰੇਮ(_r)" #. EMvnF #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11320 -#, fuzzy msgctxt "notebookbar_groupedbar_full|viewtOLE" msgid "_View" -msgstr "ਵੇਖੋ" +msgstr "ਵੇਖੋ(_V)" #. DQLzy #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11480 -#, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "_Master Page" -msgstr "ਮਾਸਟਰ ਪੇਜ਼" +msgstr "ਮਾਸਟਰ ਪੇਜ਼(_M)" #. QLjsG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11711 @@ -7721,21 +7665,19 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11936 msgctxt "notebookbar_groupedbar_full|drawm" msgid "D_raw" -msgstr "" +msgstr "ਡਰਾਅ(_r)" #. tcCdm #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12416 -#, fuzzy msgctxt "notebookbar_groupedbar_full|masterviewm" msgid "_View" -msgstr "ਵੇਖੋ" +msgstr "ਵੇਖੋ(_V)" #. TRHHB #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:49 -#, fuzzy msgctxt "notebookbar_groups|layout01" msgid "Blank" -msgstr "ਸਾਫ਼" +msgstr "ਖਾਲੀ" #. 8fsnY #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:57 @@ -7745,10 +7687,9 @@ #. VAnE3 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:65 -#, fuzzy msgctxt "notebookbar_groups|layout03" msgid "Title, Text" -msgstr "ਟਾਇਟਲ ਪਾਠ" +msgstr "ਟਾਈਟਲ, ਲਿਖਤ" #. V64P7 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:73 @@ -7770,14 +7711,12 @@ #. LbUtj #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:118 -#, fuzzy msgctxt "notebookbar_groups|footnote" msgid "Footnote" msgstr "ਫੁੱਟਨੋਟ" #. BkhhA #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:127 -#, fuzzy msgctxt "notebookbar_groups|endnote" msgid "Endnote" msgstr "ਐਂਡ-ਨੋਟ" @@ -7790,7 +7729,6 @@ #. JE3bf #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:151 -#, fuzzy msgctxt "notebookbar_groups|crossreference" msgid "Cross-Reference" msgstr "ਕਰਾਂਸ-ਰੈਫਰੈਂਸ" @@ -7799,13 +7737,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:168 msgctxt "notebookbar_groups|master01" msgid "Master 1" -msgstr "" +msgstr "ਮਾਸਟਰ 1" #. 4j2fv #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:177 msgctxt "notebookbar_groups|master02" msgid "Master 2" -msgstr "" +msgstr "ਮਾਸਟਰ 2" #. Dz9y9 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:257 @@ -7815,7 +7753,6 @@ #. 7YLfF #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:265 -#, fuzzy msgctxt "notebookbar_groups|shapestylenofill" msgid "No Fill" msgstr "ਭਰਨਾ ਨਹੀਂ" @@ -7828,17 +7765,15 @@ #. F32mr #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:287 -#, fuzzy msgctxt "notebookbar_groups|shapestyletitle1" msgid "Title 1" -msgstr "ਟਾਈਟਲ1" +msgstr "ਟਾਈਟਲ 1" #. BH8CJ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:295 -#, fuzzy msgctxt "notebookbar_groups|shapestyletitle2" msgid "Title 2" -msgstr "ਟਾਈਟਲ2" +msgstr "ਟਾਈਟਲ 2" #. CsPMA #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:495 @@ -7848,14 +7783,12 @@ #. FHC5q #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:651 -#, fuzzy msgctxt "notebookbar_groups|clipboardgrouplabel" msgid "Clipboard" msgstr "ਕਲਿੱਪਬੋਰਡ" #. ffHa2 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:697 -#, fuzzy msgctxt "notebookbar_groups|shapestyleb" msgid "Style" msgstr "ਸ਼ੈਲੀ" @@ -7870,7 +7803,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:852 msgctxt "notebookbar_groups|shrinkb" msgid " " -msgstr "" +msgstr " " #. nyg3m #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1190 @@ -7880,17 +7813,15 @@ #. cCSaA #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1240 -#, fuzzy msgctxt "notebookbar_groups|startshowb" msgid "Start" -msgstr "ਸ਼ੁਰੂ(_S)" +msgstr "ਸ਼ੁਰੂ" #. vgG6B #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1266 -#, fuzzy msgctxt "notebookbar_groups|masterb" msgid "Master" -msgstr "ਮਾਸਟਰ(~M)" +msgstr "ਮਾਸਟਰ" #. k69y9 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1286 @@ -7900,10 +7831,9 @@ #. mfi7o #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1318 -#, fuzzy msgctxt "notebookbar_groups|animationb" msgid "Animation" -msgstr "ਸਜੀਵ" +msgstr "ਐਨੀਮੇਸ਼ਨ" #. Dxvi5 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1336 @@ -7926,21 +7856,18 @@ #. geGED #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1471 -#, fuzzy msgctxt "notebookbar_groups|linksb" msgid "Links" -msgstr "ਲਿੰਕ(~L)" +msgstr "ਲਿੰਕ" #. txpNZ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1585 -#, fuzzy msgctxt "notebookbar_groups|insertgrouplabel" msgid "Insert" msgstr "ਸ਼ਾਮਲ" #. Du8Qw #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1621 -#, fuzzy msgctxt "notebookbar_groups|imagestyleb" msgid "Style" msgstr "ਸ਼ੈਲੀ" @@ -7953,17 +7880,15 @@ #. w6XXT #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1709 -#, fuzzy msgctxt "notebookbar_groups|wrapb" msgid "Wrap" msgstr "ਸਮੇਟੋ" #. QdS8h #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1725 -#, fuzzy msgctxt "notebookbar_groups|lockb" msgid "Lock" -msgstr "ਡੌਕ" +msgstr "ਲਾਕ" #. VUCKC #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1770 @@ -7985,7 +7910,6 @@ #. EpwrB #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1844 -#, fuzzy msgctxt "notebookbar_groups|wrapon" msgid "Parallel" msgstr "ਸਮਾਂਤਰ" @@ -8006,21 +7930,19 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1871 msgctxt "notebookbar_groups|wrapthrough" msgid "Through" -msgstr "" +msgstr "ਆਰ-ਪਾਰ" #. WEBWT #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1886 -#, fuzzy msgctxt "notebookbar_groups|wrapcontour" msgid "Contour" -msgstr "ਢਾਂਚਾ" +msgstr "" #. d7AtT #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1895 -#, fuzzy msgctxt "notebookbar_groups|contourdialog" msgid "Edit Contour" -msgstr "ਪਾਠ ਢਾਂਚਾ" +msgstr "" #. 7k6fG #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:57 @@ -8036,10 +7958,9 @@ #. 5DjoQ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:80 -#, fuzzy msgctxt "optimpressgeneralpage|newdoclbl" msgid "New Document" -msgstr "ਨਵਾ ਦਸਤਾਵੇਜ" +msgstr "ਨਵਾਂ ਦਸਤਾਵੇਜ਼" #. EE26t #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:110 @@ -9923,7 +9844,7 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324 msgctxt "slidetransitionspanel|label2" msgid "Advance Slide" -msgstr "" +msgstr "ਅਗਲੀ ਸਲਾਈਡ" #. czZBc #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350 @@ -9993,17 +9914,15 @@ #. 3KfJE #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:66 -#, fuzzy msgctxt "tabledesignpanel|UseFirstColumnStyle" msgid "Fi_rst column" -msgstr "ਪਹਿਲਾਂ ਕਾਲਮ" +msgstr "ਪਹਿਲਾਂ ਕਾਲਮ(_r)" #. HLRSH #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:80 -#, fuzzy msgctxt "tabledesignpanel|UseLastColumnStyle" msgid "_Last column" -msgstr "ਆਖਰੀ ਕਾਲਮ" +msgstr "ਆਖਰੀ ਕਾਲਮ(_L)" #. z5zRG #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:94 @@ -10013,10 +9932,9 @@ #. FvyKu #: sd/uiconfig/simpress/ui/templatedialog.ui:8 -#, fuzzy msgctxt "templatedialog|TemplateDialog" msgid "Graphic Styles" -msgstr "ਗਰਾਫਿਕਸ ਫਾਇਲਾਂ" +msgstr "ਗਰਾਫਿਕ ਸਟਾਈਲ" #. 38ZeG #: sd/uiconfig/simpress/ui/templatedialog.ui:41 @@ -10032,7 +9950,6 @@ #. 5d7Zo #: sd/uiconfig/simpress/ui/templatedialog.ui:199 -#, fuzzy msgctxt "templatedialog|line" msgid "Line" msgstr "ਰੇਖਾ" @@ -10064,7 +9981,6 @@ #. tuaZJ #: sd/uiconfig/simpress/ui/templatedialog.ui:439 -#, fuzzy msgctxt "templatedialog|fonteffect" msgid "Font Effects" msgstr "ਫੋਂਟ ਪ੍ਰਭਾਵ" @@ -10073,7 +9989,7 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:487 msgctxt "templatedialog|indents" msgid "Indents & Spacing" -msgstr "" +msgstr "ਹਾਸ਼ੀਏ ਤੋਂ ਦੂਰੀ ਤੇ ਫ਼ਾਸਲਾ" #. siGDD #: sd/uiconfig/simpress/ui/templatedialog.ui:535 @@ -10102,7 +10018,6 @@ #. nBYNb #: sd/uiconfig/simpress/ui/templatedialog.ui:727 -#, fuzzy msgctxt "templatedialog|alignment" msgid "Alignment" msgstr "ਇਕਸਾਰ" diff -Nru libreoffice-7.4.6/translations/source/pa-IN/svl/messages.po libreoffice-7.4.7/translations/source/pa-IN/svl/messages.po --- libreoffice-7.4.6/translations/source/pa-IN/svl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pa-IN/svl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:20+0100\n" -"PO-Revision-Date: 2021-05-24 07:37+0000\n" +"PO-Revision-Date: 2023-03-08 23:34+0000\n" "Last-Translator: A S Alam \n" -"Language-Team: Punjabi \n" +"Language-Team: Punjabi \n" "Language: pa-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1519743782.000000\n" #. PDMJD @@ -34,7 +34,7 @@ #: include/svl/svl.hrc:30 msgctxt "GRTSTR_PASSED" msgid "PASSED" -msgstr "" +msgstr "ਪਾਸ ਹੈ" #. CreDg #: include/svl/svl.hrc:31 @@ -46,13 +46,13 @@ #: include/svl/svl.hrc:32 msgctxt "GRTSTR_FAILED" msgid "FAILED" -msgstr "" +msgstr "ਅਸਫ਼ਲ ਹੈ" #. kR2Uu #: include/svl/svl.hrc:33 msgctxt "GRTSTR_SKIPPED" msgid "SKIPPED" -msgstr "" +msgstr "ਛੱਡਿਆ" #. wH3TZ msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/pa-IN/svtools/messages.po libreoffice-7.4.7/translations/source/pa-IN/svtools/messages.po --- libreoffice-7.4.6/translations/source/pa-IN/svtools/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pa-IN/svtools/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2021-05-24 07:37+0000\n" +"PO-Revision-Date: 2023-03-10 12:32+0000\n" "Last-Translator: A S Alam \n" -"Language-Team: Punjabi \n" +"Language-Team: Punjabi \n" "Language: pa-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1548643418.000000\n" #. fLdeV @@ -3083,7 +3083,7 @@ #: svtools/inc/langtab.hrc:114 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Greek" -msgstr "ਗਰੀਕ" +msgstr "ਯੂਨਾਨੀ" #. QzGHA #: svtools/inc/langtab.hrc:115 @@ -5127,7 +5127,7 @@ #: svtools/uiconfig/ui/calendar.ui:43 msgctxt "calendar|STR_SVT_CALENDAR_TODAY" msgid "Today" -msgstr "" +msgstr "ਅੱਜ" #. Cr9A2 #: svtools/uiconfig/ui/calendar.ui:58 @@ -5179,10 +5179,9 @@ #. ZWxGB #: svtools/uiconfig/ui/graphicexport.ui:202 -#, fuzzy msgctxt "graphicexport|resolutionft" msgid "Resolution:" -msgstr "ਰੈਜ਼ੋਲੂਸ਼ਨ" +msgstr "ਰੈਜ਼ੋਲੂਸ਼ਨ:" #. 2rwEJ #: svtools/uiconfig/ui/graphicexport.ui:222 @@ -5618,7 +5617,7 @@ #: svtools/uiconfig/ui/placeedit.ui:236 msgctxt "placeedit|webdavs" msgid "Secure connection" -msgstr "" +msgstr "ਸੁਰੱਖਿਅਤ ਕਨਕੈਸ਼ਨ" #. B8mT8 #: svtools/uiconfig/ui/placeedit.ui:252 @@ -5628,17 +5627,15 @@ #. jRt98 #: svtools/uiconfig/ui/placeedit.ui:279 -#, fuzzy msgctxt "placeedit|nameLabel" msgid "Label:" -msgstr "ਲੇਬਲ" +msgstr "ਲੇਬਲ:" #. 6QfCF #: svtools/uiconfig/ui/placeedit.ui:325 -#, fuzzy msgctxt "placeedit|portLabel" msgid "Port:" -msgstr "ਪੋਰਟ" +msgstr "ਪੋਰਟ:" #. 8boor #: svtools/uiconfig/ui/placeedit.ui:399 @@ -5648,10 +5645,9 @@ #. DFwBC #: svtools/uiconfig/ui/placeedit.ui:423 -#, fuzzy msgctxt "placeedit|rememberPassword" msgid "Remember password" -msgstr "ਪਾਸਵਰਡ ਯਾਦ ਰੱਖੋ(~R)" +msgstr "ਪਾਸਵਰਡ ਯਾਦ ਰੱਖੋ" #. AnwWt #: svtools/uiconfig/ui/printersetupdialog.ui:8 @@ -5667,38 +5663,33 @@ #. NCVY4 #: svtools/uiconfig/ui/printersetupdialog.ui:109 -#, fuzzy msgctxt "printersetupdialog|label2" msgid "Name:" -msgstr "ਨਾਂ" +msgstr "ਨਾਂ:" #. utGE2 #: svtools/uiconfig/ui/printersetupdialog.ui:123 -#, fuzzy msgctxt "printersetupdialog|label3" msgid "Status:" -msgstr "ਹਾਲਤ" +msgstr "ਹਾਲਤ:" #. GxvkC #: svtools/uiconfig/ui/printersetupdialog.ui:135 -#, fuzzy msgctxt "printersetupdialog|label4" msgid "Type:" -msgstr "ਕਿਸਮ" +msgstr "ਕਿਸਮ:" #. amoGB #: svtools/uiconfig/ui/printersetupdialog.ui:147 -#, fuzzy msgctxt "printersetupdialog|label5" msgid "Location:" -msgstr "ਟਿਕਾਣਾ" +msgstr "ਟਿਕਾਣਾ:" #. B66Zc #: svtools/uiconfig/ui/printersetupdialog.ui:159 -#, fuzzy msgctxt "printersetupdialog|label6" msgid "Comment:" -msgstr "ਟਿੱਪਣੀ" +msgstr "ਟਿੱਪਣੀ:" #. 3uJUu #: svtools/uiconfig/ui/printersetupdialog.ui:217 @@ -5710,7 +5701,7 @@ #: svtools/uiconfig/ui/printersetupdialog.ui:223 msgctxt "printersetupdialog|extended_tip|properties" msgid "Changes the printer settings of your operating system for the current document." -msgstr "" +msgstr "ਮੌਜੂਦ ਦਸਤਾਵੇਜ਼ ਲਈ ਤੁਹਾਡੇ ਓਪਰੇਟਿੰਗ ਸਿਸਟਮ ਦੀਆਂ ਪਰਿੰਟਰ ਸੈਟਿੰਗਾਂ ਬਦਲਦਾ ਹੈ|" #. TrFGR #: svtools/uiconfig/ui/printersetupdialog.ui:239 @@ -5732,17 +5723,15 @@ #. psFPB #: svtools/uiconfig/ui/querydeletedialog.ui:7 -#, fuzzy msgctxt "querydeletedialog|QueryDeleteDialog" msgid "Confirm Delete" msgstr "ਹਟਾਉਣ ਦੀ ਪੁਸ਼ਟੀ" #. NH24h #: svtools/uiconfig/ui/querydeletedialog.ui:13 -#, fuzzy msgctxt "querydeletedialog|QueryDeleteDialog" msgid "Are you sure you want to delete the selected data?" -msgstr "ਕੀ ਤੁਸੀਂ ਚੁਣੀ(ਆਂ) ਸ਼ੀਟ(ਸੀਟਾਂ) ਨੂੰ ਹਮੇਸ਼ਾ ਲਈ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" +msgstr "ਕੀ ਤੁਸੀੰ ਚੁਣੇ ਡਾਟੇ ਨੂੰ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" #. dJB35 #: svtools/uiconfig/ui/querydeletedialog.ui:14 @@ -5767,25 +5756,25 @@ #: svtools/uiconfig/ui/querydeletedialog.ui:56 msgctxt "querydeletedialog|no" msgid "Do _Not Delete" -msgstr "" +msgstr "ਨਾ ਹਟਾਓ(_N)" #. KtcWg #: svtools/uiconfig/ui/restartdialog.ui:8 msgctxt "restartdialog|RestartDialog" msgid "Restart %PRODUCTNAME" -msgstr "" +msgstr "%PRODUCTNAME ਮੁੜ ਚਾਲੂ ਕਰੋ" #. yiVVe #: svtools/uiconfig/ui/restartdialog.ui:26 msgctxt "restartdialog|yes" msgid "Restart Now" -msgstr "" +msgstr "ਹੁਣੇ ਮੁੜ-ਚਾਲੂ ਕਰੋ" #. Dt64N #: svtools/uiconfig/ui/restartdialog.ui:41 msgctxt "restartdialog|no" msgid "Restart Later" -msgstr "" +msgstr "ਬਾਦ ਵਿੱਚ ਮੁੜ-ਚਾਲੂ ਕਰੋ" #. LBUvc #: svtools/uiconfig/ui/restartdialog.ui:70 @@ -5881,7 +5870,7 @@ #: svtools/uiconfig/ui/restartdialog.ui:295 msgctxt "restartdialog|label" msgid "Do you want to restart %PRODUCTNAME now?" -msgstr "" +msgstr "ਕੀ %PRODUCTNAME ਨੂੰ ਹੁਣੇ ਮੁੜ-ਚਾਲੂ ਕਰਨਾ ਹੈ?" #. fpc8k #: svtools/uiconfig/ui/restartdialog.ui:309 @@ -5893,4 +5882,4 @@ #: svtools/uiconfig/ui/thineditcontrol.ui:72 msgctxt "thineditcontrol|button" msgid "Pick Date" -msgstr "" +msgstr "ਤਾਰੀਖ ਚੁਣੋ" diff -Nru libreoffice-7.4.6/translations/source/pl/cui/messages.po libreoffice-7.4.7/translations/source/pl/cui/messages.po --- libreoffice-7.4.6/translations/source/pl/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-03-01 06:59+0000\n" +"PO-Revision-Date: 2023-05-03 11:51+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -1696,7 +1696,7 @@ #: cui/inc/strings.hrc:314 msgctxt "RID_SVXSTR_DESC_NEW_PATTERN" msgid "Please enter a name for the pattern:" -msgstr "Podaj nazwę deseniu:" +msgstr "Podaj nazwę desenia:" #. yD7AW #: cui/inc/strings.hrc:315 @@ -2349,7 +2349,7 @@ #: cui/inc/tipoftheday.hrc:79 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices." -msgstr "%PRODUCTNAME umożliwia korzystanie z narzędzi technologii asystującej, takich jak zewnętrzne czytniki ekranu, urządzenia brajlowskie lub urządzenia wejściowe do rozpoznawania mowy." +msgstr "%PRODUCTNAME umożliwia korzystanie z narzędzi technologii asystujących, takich jak zewnętrzne czytniki ekranu, urządzenia brajlowskie lub urządzenia wejściowe do rozpoznawania mowy." #. SiwUL #: cui/inc/tipoftheday.hrc:80 @@ -3720,7 +3720,7 @@ #: cui/inc/treeopt.hrc:44 msgctxt "SID_GENERAL_OPTIONS_RES" msgid "Accessibility" -msgstr "Ułatwienia dostępu" +msgstr "Dostępność" #. oUTLV #: cui/inc/treeopt.hrc:45 @@ -5255,7 +5255,7 @@ #: cui/uiconfig/ui/areatabpage.ui:130 msgctxt "areatabpage|extended_tip|btnpattern" msgid "Fills the object with a dot pattern selected on this page." -msgstr "Wypełnia obiekt wzorem kropkowym wybranym na tej stronie." +msgstr "Wypełnia obiekt deseniem kropkowym wybranym na tej stronie." #. 5y6vj #: cui/uiconfig/ui/areatabpage.ui:142 @@ -5267,7 +5267,7 @@ #: cui/uiconfig/ui/areatabpage.ui:148 msgctxt "areatabpage|extended_tip|btnhatch" msgid "Fills the object with a hatching pattern selected on this page." -msgstr "Wypełnia obiekt wzorem kreskowania wybranym na tej stronie." +msgstr "Wypełnia obiekt deseniem kreskowania wybranym na tej stronie." #. Tap6L #: cui/uiconfig/ui/areatabpage.ui:160 @@ -10390,7 +10390,7 @@ #: cui/uiconfig/ui/hatchpage.ui:85 msgctxt "hatchpage|extended_tip|add" msgid "Adds a custom hatching pattern to the current list. Specify the properties of your hatching pattern, and then click this button." -msgstr "Dodaje niestandardowy wzór kreskowania do bieżącej listy. Określ właściwości wzoru kreskowania, a następnie kliknij ten przycisk" +msgstr "Dodaje niestandardowy deseń kreskowania do bieżącej listy. Określ właściwości desenia kreskowania, a następnie kliknij ten przycisk." #. TGiD7 #: cui/uiconfig/ui/hatchpage.ui:97 @@ -10402,7 +10402,7 @@ #: cui/uiconfig/ui/hatchpage.ui:104 msgctxt "hatchpage|extended_tip|modify" msgid "Applies the current hatching properties to the selected hatching pattern. If you want, you can save the pattern under a different name." -msgstr "Stosuje bieżące właściwości kreskowania do wybranego wzoru kreskowania. W razie potrzeby można zapisać wzór pod inną nazwą." +msgstr "Stosuje bieżące właściwości kreskowania do wybranego desenia kreskowania. W razie potrzeby można zapisać deseń pod inną nazwą." #. U8bWc #: cui/uiconfig/ui/hatchpage.ui:127 @@ -10504,7 +10504,7 @@ #: cui/uiconfig/ui/hatchpage.ui:454 msgctxt "hatchpage|extended_tip|HatchPage" msgid "Set the properties of a hatching pattern, or save a new hatching pattern." -msgstr "Ustaw właściwości wzoru kreskowania lub zapisz nowy wzór kreskowania." +msgstr "Ustaw właściwości desenia kreskowania lub zapisz nowy deseń kreskowania." #. QqjhD #: cui/uiconfig/ui/hyperlinkdialog.ui:10 @@ -11492,7 +11492,7 @@ #: cui/uiconfig/ui/imagetabpage.ui:592 msgctxt "imagetabpage|extended_tip|ImageTabPage" msgid "Select a image that you want to use as a fill image, or add your own image/pattern." -msgstr "Wybierz obraz, który chcesz użyć jako obraz wypełnienia, lub dodaj własny obraz/wzór." +msgstr "Wybierz obraz, który chcesz użyć jako obraz wypełnienia, lub dodaj własny obraz/deseń." #. zCiFk #: cui/uiconfig/ui/insertfloatingframe.ui:18 @@ -13730,25 +13730,25 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:151 msgctxt "objecttitledescdialog|extended_tip|desc_entry" msgid "Enter a description text. The long description text can be entered to describe a complex object or group of objects to users with screen reader software. The description is visible as an alternative tag for accessibility tools." -msgstr "Wprowadź tekst opisu. Tekst długiego opisu może być wprowadzony w celu opisania złożonego obiektu lub grupy obiektów i jest wykorzystywany użytkowników z oprogramowaniem do odczytywania zawartości ekranu. Opis jest widoczny jako alternatywny znacznik w funkcjach ułatwień dostępu." +msgstr "Wprowadź tekst opisu. Tekst długiego opisu może być wprowadzony w celu opisania złożonego obiektu lub grupy obiektów i jest wykorzystywany użytkowników z oprogramowaniem do odczytywania zawartości ekranu. Opis jest widoczny jako alternatywny znacznik w narzędziach dostępności." #. 8BCe3 #: cui/uiconfig/ui/objecttitledescdialog.ui:182 msgctxt "objecttitledescdialog|extended_tip|ObjectTitleDescDialog" msgid "Assigns a title and a description to the selected object. These are accessible for accessibility tools and as alternative tags when you export the document." -msgstr "Przypisuje tytuł i opis do zaznaczonego obiektu. Są one używane przez funkcje ułatwień dostępu oraz jako alternatywne znaczniki podczas eksportu dokumentu." +msgstr "Przypisuje tytuł i opis do zaznaczonego obiektu. Są one używane przez narzędzia dostępności oraz jako alternatywne znaczniki podczas eksportu dokumentu." #. s8E7z #: cui/uiconfig/ui/optaccessibilitypage.ui:27 msgctxt "optaccessibilitypage|acctool" msgid "Support _assistive technology tools (program restart required)" -msgstr "Obsługuj urządzenia dla osób niepełnospr_awnych (wymagane ponowne uruchomienie)" +msgstr "Obsługuj narzędzia technologii asystujących (wymagane ponowne uruchomienie)" #. DYfLF #: cui/uiconfig/ui/optaccessibilitypage.ui:35 msgctxt "extended_tip|acctool" msgid "Allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices. The Java Runtime Environment must be installed on your computer before you can enable assistive support." -msgstr "Umożliwia korzystanie z narzędzi ułatwień dostępu, takich jak zewnętrzne czytniki ekranowe, urządzenia do obsługi alfabetu Braille'a lub urządzenia do rozpoznawania mowy. Aby możliwe było włączenie obsługi narzędzi ułatwień dostępu, w komputerze musi być zainstalowane środowisko uruchomieniowe Java Runtime Environment." +msgstr "Umożliwia korzystanie z narzędzi asystujących, takich jak zewnętrzne czytniki ekranowe, urządzenia do obsługi alfabetu Braille'a lub urządzenia do rozpoznawania mowy. Aby możliwe było włączenie obsługi narzędzi asystujących, w komputerze musi być zainstalowane środowisko uruchomieniowe Java Runtime Environment." #. EZqPM #: cui/uiconfig/ui/optaccessibilitypage.ui:47 @@ -14372,19 +14372,19 @@ #: cui/uiconfig/ui/optctlpage.ui:217 msgctxt "optctlpage|label5" msgid "_Numerals:" -msgstr "Liczeb_niki:" +msgstr "_Cyfry:" #. BdfCk #: cui/uiconfig/ui/optctlpage.ui:232 msgctxt "optctlpage|numerals" msgid "Arabic (1, 2, 3…)" -msgstr "Arabski (1, 2, 3…)" +msgstr "Arabskie (1, 2, 3…)" #. 2n6dr #: cui/uiconfig/ui/optctlpage.ui:233 msgctxt "optctlpage|numerals" msgid "Eastern Arabic (٣ ,٢ ,١…)" -msgstr "Arabski wschodni (٣ ,٢ ,١…)" +msgstr "Wschodnioarabske (٣ ,٢ ,١…)" #. uFBEA #: cui/uiconfig/ui/optctlpage.ui:234 @@ -14402,7 +14402,7 @@ #: cui/uiconfig/ui/optctlpage.ui:239 msgctxt "extended_tip|numerals" msgid "Selects the type of numerals used within text, text in objects, fields, and controls, in all office suite modules. Only cell contents of Calc are not affected." -msgstr "Określa typy liczb stosowane w tekście, obiektach, polach i formantach dla wszystkich modułów pakietu pakietu biurowego. To ustawienie nie dotyczy tylko programu Calc." +msgstr "Określa typy cyfr stosowane w tekście, obiektach, polach i formantach dla wszystkich modułów pakietu pakietu biurowego. To ustawienie nie dotyczy tylko programu Calc." #. kWczF #: cui/uiconfig/ui/optctlpage.ui:254 @@ -14934,7 +14934,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:364 msgctxt "optgeneralpage|label8" msgid "%PRODUCTNAME Quickstarter" -msgstr "Moduł szybkiego uruchamiania %PRODUCTNAME" +msgstr "Szybkie uruchamianie %PRODUCTNAME" #. FvigS #: cui/uiconfig/ui/optgeneralpage.ui:391 @@ -17545,7 +17545,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:547 msgctxt "pageformatpage|checkRegisterTrue" msgid "Use page li_ne-spacing" -msgstr "Użyj odstępów między _wierszami na stronie" +msgstr "Użyj interli_nii strony" #. DtZQG #. xdds @@ -18178,7 +18178,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:71 msgctxt "patterntabpage|extended_tip|BTN_ADD" msgid "Adds a custom pattern to the current list. Specify the properties of your pattern, and then click this button." -msgstr "Dodaje wzór niestandardowy do bieżącej listy. Określ właściwości wzoru, a następnie kliknij ten przycisk." +msgstr "Dodaje niestandardowy deseń do bieżącej listy. Określ właściwości desenia, a następnie kliknij ten przycisk." #. 68KjX #: cui/uiconfig/ui/patterntabpage.ui:83 @@ -18190,7 +18190,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:90 msgctxt "patterntabpage|extended_tip|BTN_MODIFY" msgid "Applies the current pattern properties to the selected pattern. If you want, you can save the pattern under a different name." -msgstr "Stosuje bieżące właściwości wzoru do wybranego wzoru. Jeśli chcesz, możesz zapisać wzór pod inną nazwą." +msgstr "Stosuje bieżące właściwości desenia do wybranego desenia. Jeśli chcesz, możesz zapisać deseń pod inną nazwą." #. SnESZ #: cui/uiconfig/ui/patterntabpage.ui:113 @@ -18214,7 +18214,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:187 msgctxt "patterntabpage|extended_tip|CTL_PIXEL" msgid "Draw the pattern in the 8 x 8 pixel board. Click on a pattern pixel to activate it, click again to deactivate it." -msgstr "Narysuj wzór na planszy 8 x 8 pikseli. Kliknij piksel wzoru, aby go aktywować, kliknij ponownie, aby go dezaktywować." +msgstr "Narysuj deseń na planszy 8 x 8 pikseli. Kliknij piksel desenia, aby go aktywować, kliknij ponownie, aby go dezaktywować." #. BvHTn #: cui/uiconfig/ui/patterntabpage.ui:218 @@ -18226,7 +18226,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:242 msgctxt "patterntabpage|extended_tip|LB_COLOR" msgid "Set the color of the activated pattern pixels." -msgstr "Ustaw kolor uaktywnionych pikseli wzoru." +msgstr "Ustaw kolor uaktywnionych pikseli desenia." #. S8mpk #: cui/uiconfig/ui/patterntabpage.ui:269 @@ -18238,7 +18238,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:293 msgctxt "patterntabpage|extended_tip|LB_BACKGROUND_COLOR" msgid "Set the color of the deactivated pattern pixels." -msgstr "Ustaw kolor dezaktywowanych pikseli wzoru." +msgstr "Ustaw kolor dezaktywowanych pikseli desenia." #. hg7RL #: cui/uiconfig/ui/patterntabpage.ui:316 @@ -18262,7 +18262,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:397 msgctxt "patterntabpage|extended_tip|PatternTabPage" msgid "Fills the object with a simple two color pattern selected on this page." -msgstr "Wypełnia obiekt prostym dwukolorowym wzorem wybranym na tej stronie." +msgstr "Wypełnia obiekt prostym dwukolorowym deseniem wybranym na tej stronie." #. WCjNN #: cui/uiconfig/ui/percentdialog.ui:14 diff -Nru libreoffice-7.4.6/translations/source/pl/dbaccess/messages.po libreoffice-7.4.7/translations/source/pl/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/pl/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/dbaccess/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2022-12-10 11:04+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547392099.000000\n" #. BiN6g @@ -2327,7 +2327,7 @@ #: dbaccess/inc/strings.hrc:403 msgctxt "STR_TAB_INDEX_SORTORDER" msgid "Sort order" -msgstr "Porządek sortowania" +msgstr "Kolejność sortowania" #. 67TCR #: dbaccess/inc/strings.hrc:404 @@ -4560,7 +4560,7 @@ #: dbaccess/uiconfig/ui/sortdialog.ui:8 msgctxt "sortdialog|SortDialog" msgid "Sort Order" -msgstr "Porządek sortowania" +msgstr "Kolejność sortowania" #. szD83 #: dbaccess/uiconfig/ui/sortdialog.ui:96 @@ -4590,7 +4590,7 @@ #: dbaccess/uiconfig/ui/sortdialog.ui:146 msgctxt "sortdialog|label6" msgid "Order" -msgstr "Porządek" +msgstr "Kolejność" #. EGDpm #: dbaccess/uiconfig/ui/sortdialog.ui:171 @@ -4632,7 +4632,7 @@ #: dbaccess/uiconfig/ui/sortdialog.ui:241 msgctxt "sortdialog|label1" msgid "Sort Order" -msgstr "Porządek sortowania" +msgstr "Kolejność sortowania" #. VCWPc #: dbaccess/uiconfig/ui/sortdialog.ui:266 diff -Nru libreoffice-7.4.6/translations/source/pl/extensions/messages.po libreoffice-7.4.7/translations/source/pl/extensions/messages.po --- libreoffice-7.4.6/translations/source/pl/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-19 15:28+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -709,7 +709,7 @@ #: extensions/inc/stringarrays.hrc:216 msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING" msgid "Replace" -msgstr "Zmień" +msgstr "Zamień" #. MQHED #: extensions/inc/stringarrays.hrc:217 diff -Nru libreoffice-7.4.6/translations/source/pl/filter/messages.po libreoffice-7.4.7/translations/source/pl/filter/messages.po --- libreoffice-7.4.6/translations/source/pl/filter/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/filter/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-15 22:28+0200\n" -"PO-Revision-Date: 2022-07-04 16:15+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1555929652.000000\n" #. 5AQgJ @@ -694,7 +694,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:758 msgctxt "pdfgeneralpage|extended_tip|pdfua" msgid "Creates a universal accessibility-complying PDF file that follows the requirements of PDF/UA (ISO 14289) specifications." -msgstr "Tworzy uniwersalny plik PDF zgodny z ułatwieniami dostępu, który spełnia wymagania specyfikacji PDF/UA (ISO 14289)." +msgstr "Tworzy uniwersalny plik PDF zgodny z dostępnością, który spełnia wymagania specyfikacji PDF/UA (ISO 14289)." #. Drqkd #: filter/uiconfig/ui/pdfgeneralpage.ui:773 @@ -1162,7 +1162,7 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:549 msgctxt "pdfsecuritypage|extended_tip|enablea11y" msgid "Select to enable text access for accessibility tools." -msgstr "Zaznacz, aby włączyć dostęp tekstowy dla narzędzi ułatwień dostępu." +msgstr "Zaznacz, aby włączyć dostęp tekstowy dla narzędzi dostępności." #. 2hi53 #: filter/uiconfig/ui/pdfsecuritypage.ui:564 diff -Nru libreoffice-7.4.6/translations/source/pl/filter/source/config/fragments/filters.po libreoffice-7.4.7/translations/source/pl/filter/source/config/fragments/filters.po --- libreoffice-7.4.6/translations/source/pl/filter/source/config/fragments/filters.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/filter/source/config/fragments/filters.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-12-10 11:04+0000\n" +"PO-Revision-Date: 2023-03-23 11:32+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547392171.000000\n" #. FR4Ff @@ -34,7 +34,7 @@ "UIName\n" "value.text" msgid "AbiWord Document" -msgstr "Dokument programu AbiWord" +msgstr "Dokument AbiWord" #. RBEgr #: AppleKeynote.xcu @@ -84,7 +84,7 @@ "UIName\n" "value.text" msgid "BroadBand eBook" -msgstr "BroadBand eBook" +msgstr "E-book BroadBand" #. NYMWx #: CGM___Computer_Graphics_Metafile.xcu @@ -704,7 +704,7 @@ "UIName\n" "value.text" msgid "Microsoft Works for Mac Text Document (v1 - v4)" -msgstr "Dokument tekstowy Microsoft Works for Mac (v1 - v4)" +msgstr "Dokument tekstowy Microsoft Works dla Mac (v1 - v4)" #. YvCSo #: Mac_Works_Calc.xcu @@ -714,7 +714,7 @@ "UIName\n" "value.text" msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" -msgstr "Arkusz kalkulacyjny Microsoft Works for Mac (v1 - v4)" +msgstr "Arkusz kalkulacyjny Microsoft Works dla Mac (v1 - v4)" #. LqFFg #: Mariner_Write.xcu @@ -894,7 +894,7 @@ "UIName\n" "value.text" msgid "PalmDoc eBook" -msgstr "PalmDoc eBook" +msgstr "E-book PalmDoc" #. SkskA #: Palm_Text_Document.xcu @@ -914,7 +914,7 @@ "UIName\n" "value.text" msgid "Plucker eBook" -msgstr "Plucker eBook" +msgstr "E-book Plucker" #. YffjT #: PowerPoint3.xcu @@ -1054,7 +1054,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Drawing" -msgstr "Starszy StarOffice Rysunek" +msgstr "Starszy rysunek StarOffice" #. AA8DU #: StarOffice_Presentation.xcu @@ -1064,7 +1064,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Presentation" -msgstr "Starszy StarOffice Prezentacja" +msgstr "Starsza prezentacja StarOffice" #. wU9ui #: StarOffice_Spreadsheet.xcu @@ -1074,7 +1074,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Spreadsheet" -msgstr "Starszy StarOffice Arkusz kalkulacyjny" +msgstr "Starszy arkusz kalkulacyjny StarOffice" #. eLzL6 #: StarOffice_Writer.xcu @@ -1084,7 +1084,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Text Document" -msgstr "Starszy StarOffice Dokument tekstowy" +msgstr "Starszy dokument tekstowy StarOffice" #. GitUg #: StarOffice_XML__Base_.xcu @@ -1254,7 +1254,7 @@ "UIName\n" "value.text" msgid "Unified Office Format presentation" -msgstr "Prezentacja w formacie Unified Office" +msgstr "Prezentacja Unified Office Format" #. bHwEV #: UOF_spreadsheet.xcu @@ -1264,7 +1264,7 @@ "UIName\n" "value.text" msgid "Unified Office Format spreadsheet" -msgstr "Arkusz kalkulacyjny w formacie Unified Office" +msgstr "Arkusz kalkulacyjny Unified Office Format" #. 4Dx6G #: UOF_text.xcu diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/sbasic/shared/01.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/sbasic/shared/01.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/sbasic/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/sbasic/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-07-09 16:35+0000\n" +"PO-Revision-Date: 2023-04-08 00:34+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542197250.000000\n" #. arCRB @@ -284,7 +284,7 @@ "hd_id3154587\n" "help.text" msgid "Libraries tab page" -msgstr "Zakładka Biblioteki" +msgstr "Karta Biblioteki" #. moZ4B #: 06130000.xhp @@ -302,7 +302,7 @@ "hd_id3145259\n" "help.text" msgid "Location" -msgstr "Aplikacja / Dokument" +msgstr "Lokalizacja" #. 7LWSS #: 06130000.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/sbasic/shared/03.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/sbasic/shared/03.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-03-22 12:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564159673.000000\n" #. ViEWM @@ -167,7 +167,7 @@ "bm_id491529070339774\n" "help.text" msgid "BASIC ScriptForge library Python scriptforge module" -msgstr "" +msgstr "Biblioteka ScriptForge języka BASIC Moduł scriptforge języka Python" #. BtMUU #: lib_ScriptForge.xhp @@ -176,7 +176,7 @@ "par_id681619700336879\n" "help.text" msgid "ScriptForge libraries build up an extensible collection of macro scripting resources for %PRODUCTNAME to be invoked from Basic macros or Python scripts." -msgstr "" +msgstr "Biblioteki ScriptForge tworzą rozszerzalną kolekcję zasobów skryptów makr dla %PRODUCTNAME, które mogą być wywoływane z podstawowych makr lub skryptów Pythona." #. fL8KK #: lib_ScriptForge.xhp @@ -185,7 +185,7 @@ "par_id901528999850603\n" "help.text" msgid "• Basic macros require to load ScriptForge library using the following statement:
GlobalScope.BasicLibraries.loadLibrary(\"ScriptForge\")

• Python scripts require an import from scriptforge module:
from scriptforge import CreateScriptService" -msgstr "" +msgstr "• Podstawowe makra wymagają załadowania biblioteki ScriptForge przy użyciu następującej instrukcji:
GlobalScope.BasicLibraries.loadLibrary(\"ScriptForge\")

• Skrypty Pythona wymagają importu z modułu scriptforge:
from scriptforge import CreateScriptService" #. eotwE #: lib_ScriptForge.xhp @@ -203,7 +203,7 @@ "hd_id781637256119733\n" "help.text" msgid "Invoking ScriptForge services" -msgstr "" +msgstr "Wywoływanie usług ScriptForge" #. SaBEy #: lib_ScriptForge.xhp @@ -212,7 +212,7 @@ "par_id781606153472028\n" "help.text" msgid "The described modules and classes are invoked from user scripts as \"Services\". A generic constructor of those services has been designed for that purpose for each language." -msgstr "" +msgstr "Opisane moduły i klasy są wywoływane ze skryptów użytkownika jako „Usługi”. W tym celu dla każdego języka został zaprojektowany ogólny konstruktor tych usług." #. xhj84 #: lib_ScriptForge.xhp @@ -221,7 +221,7 @@ "par_id871637256506167\n" "help.text" msgid "The Dispose method is available in all services and should be called to free up resources after usage:" -msgstr "" +msgstr "Metoda Dispose jest dostępna we wszystkich usługach i należy ją wywołać w celu zwolnienia zasobów po użyciu:" #. Depaw #: lib_ScriptForge.xhp @@ -230,7 +230,7 @@ "hd_id851613836643580\n" "help.text" msgid "Services provided by the ScriptForge library" -msgstr "" +msgstr "Usługi świadczone przez bibliotekę ScriptForge" #. dw2Fe #: lib_ScriptForge.xhp @@ -284,7 +284,7 @@ "par_id131613866258931\n" "help.text" msgid "Utilities" -msgstr "" +msgstr "Narzędzia" #. 6gvZc #: lib_ScriptForge.xhp @@ -293,7 +293,7 @@ "par_id331608220104798\n" "help.text" msgid "Note: Other ScriptForge undescribed modules are reserved for internal use. Their content is subject to change without notice." -msgstr "" +msgstr "Uwaga: inne nieopisane moduły ScriptForge są zarezerwowane do użytku wewnętrznego. Ich treść może ulec zmianie bez powiadomienia." #. uzETY #: lib_ScriptForge.xhp @@ -302,7 +302,7 @@ "par_id851506659675843\n" "help.text" msgid "All ScriptForge Basic routines or identifiers that are prefixed with an underscore character \"_\" are reserved for internal use. They are not meant be used in Basic macros or Python scripts." -msgstr "" +msgstr "Wszystkie podstawowe procedury lub identyfikatory ScriptForge poprzedzone znakiem podkreślenia „_” są zarezerwowane do użytku wewnętrznego. Nie należy ich używać w makrach Basic ani skryptach Pythona." #. p9BFG #: lib_depot.xhp @@ -356,7 +356,7 @@ "hd_id841593518085848\n" "help.text" msgid "Description" -msgstr "" +msgstr "Opis" #. DkBkc #: lib_euro.xhp @@ -365,7 +365,7 @@ "par_id921593518140986\n" "help.text" msgid "The Euro library is used by the Euro converter… wizard." -msgstr "" +msgstr "Biblioteka Euro jest używana przez kreatora Konwerter Euro…." #. uAg7T #: lib_euro.xhp @@ -374,7 +374,7 @@ "par_id481593518247400\n" "help.text" msgid "Its entry points are:" -msgstr "" +msgstr "Jego punktami wejścia są:" #. puNwN #: lib_euro.xhp @@ -383,7 +383,7 @@ "par_id381593519742529\n" "help.text" msgid "Selecting the Euro Converter wizard loads the following libraries in memory:" -msgstr "" +msgstr "Wybranie kreatora Konwerter Euro ładuje do pamięci następujące biblioteki:" #. TGAHA #: lib_euro.xhp @@ -392,7 +392,7 @@ "par_id691593519646426\n" "help.text" msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory." -msgstr "" +msgstr "Konflikty nazw procedur Basic mogą występować, gdy do pamięci ładowanych jest wiele bibliotek Basic." #. 5NFbA #: lib_euro.xhp @@ -464,7 +464,7 @@ "hd_id841593518085848\n" "help.text" msgid "Description" -msgstr "" +msgstr "Opis" #. ewcAB #: lib_gimmicks.xhp @@ -473,7 +473,7 @@ "par_id921593518140986\n" "help.text" msgid "The Gimmicks library is used by the AutoText wizard." -msgstr "" +msgstr "Biblioteka Gimmicks jest używana przez kreatora Autotekst." #. kHzUe #: lib_gimmicks.xhp @@ -482,7 +482,7 @@ "par_id481593518247400\n" "help.text" msgid "Its entry points are:" -msgstr "" +msgstr "Jego punktami wejścia są:" #. AmCFb #: lib_gimmicks.xhp @@ -491,7 +491,7 @@ "par_id381593519742529\n" "help.text" msgid "Selecting Tools - AutoText loads the following library in memory:" -msgstr "" +msgstr "Wybranie Narzędzia - Autotekst ładuje do pamięci następującą bibliotekę:" #. hn8Dw #: lib_gimmicks.xhp @@ -500,7 +500,7 @@ "par_id691593519646426\n" "help.text" msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory." -msgstr "" +msgstr "Konflikty nazw procedur Basic mogą występować, gdy do pamięci ładowanych jest wiele bibliotek Basic." #. FGEdL #: lib_gimmicks.xhp @@ -527,7 +527,7 @@ "tit\n" "help.text" msgid "ImportWizard Library" -msgstr "" +msgstr "Biblioteka ImportWizard" #. stDZt #: lib_importwiz.xhp @@ -545,7 +545,7 @@ "bm_id231529070133574\n" "help.text" msgid "BASIC ImportWizard library" -msgstr "" +msgstr "Biblioteka BASIC ImportWizard" #. GFoap #: lib_importwiz.xhp @@ -554,7 +554,7 @@ "hd_id841593518085848\n" "help.text" msgid "Description" -msgstr "" +msgstr "Opis" #. Anhsb #: lib_importwiz.xhp @@ -563,7 +563,7 @@ "par_id921593518140986\n" "help.text" msgid "The ImportWizard library is used by the Document Converter wizard." -msgstr "" +msgstr "Biblioteka ImportWizard jest używana przez kreatora Konwerter dokumentów." #. FaGZt #: lib_importwiz.xhp @@ -572,7 +572,7 @@ "par_id481593518247400\n" "help.text" msgid "Its entry point is:" -msgstr "" +msgstr "Jego punktem wejścia jest:" #. foGsC #: lib_importwiz.xhp @@ -581,7 +581,7 @@ "par_id381593519742529\n" "help.text" msgid "Selecting the Document Converter wizard loads the following libraries in memory:" -msgstr "" +msgstr "Wybranie kreatora Konwerter dokumentów ładuje do pamięci następujące biblioteki:" #. vV4TD #: lib_importwiz.xhp @@ -590,7 +590,7 @@ "par_id691593519646426\n" "help.text" msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory." -msgstr "" +msgstr "Konflikty nazw procedur Basic mogą występować, gdy do pamięci ładowanych jest wiele bibliotek Basic." #. ZCH7G #: lib_importwiz.xhp @@ -671,7 +671,7 @@ "hd_id841593518085848\n" "help.text" msgid "Description" -msgstr "" +msgstr "Opis" #. nnxNN #: lib_script.xhp @@ -680,7 +680,7 @@ "par_id921593518140986\n" "help.text" msgid "The ScriptBindingLibrary library only contains dialogs, it is used by Highlight %PRODUCTNAME example scripts. Its dialogs are shared by Beanshell, Java and JavaScript example scripts." -msgstr "" +msgstr "Biblioteka ScriptBindingLibrary zawiera tylko okna dialogowe i jest używana przez przykładowe skrypty %PRODUCTNAME Highlight. Jej okna dialogowe są udostępniane przez przykładowe skrypty Beanshell, Java i JavaScript." #. JdxBj #: lib_script.xhp @@ -689,7 +689,7 @@ "par_id381593519742529\n" "help.text" msgid "Running any Highlight example script loads the ScriptBindingLibrary library in memory." -msgstr "" +msgstr "Uruchomienie dowolnego przykładowego skryptu Highlight ładuje bibliotekę ScriptBindingLibrary do pamięci." #. 9CZwi #: lib_script.xhp @@ -698,7 +698,7 @@ "par_id131593538122154\n" "help.text" msgid "This library is not used by %PRODUCTNAME Basic." -msgstr "" +msgstr "Ta biblioteka nie jest używana przez %PRODUCTNAME Basic." #. Qh7KM #: lib_script.xhp @@ -995,7 +995,7 @@ "tit\n" "help.text" msgid "WikiEditor Library" -msgstr "" +msgstr "Biblioteka WikiEditor" #. QDwwy #: lib_wikieditor.xhp @@ -1013,7 +1013,7 @@ "bm_id231529070133574\n" "help.text" msgid "BASIC WikiEditor library" -msgstr "" +msgstr "Biblioteka BASIC WikiEditor" #. qGFuz #: lib_wikieditor.xhp @@ -1022,7 +1022,7 @@ "hd_id841593518085848\n" "help.text" msgid "Description" -msgstr "" +msgstr "Opis" #. MdATA #: lib_wikieditor.xhp @@ -1031,7 +1031,7 @@ "par_id921593518140986\n" "help.text" msgid "The WikiEditor library only contains dialogs, it is used by Wiki Publisher bundled Java extension." -msgstr "" +msgstr "Biblioteka WikiEditor jest używana przez dołączone rozszerzenie Java Wiki Publisher." #. k2E85 #: lib_wikieditor.xhp @@ -1040,7 +1040,7 @@ "par_id131593538122154\n" "help.text" msgid "This library is not used by %PRODUCTNAME Basic." -msgstr "" +msgstr "Ta biblioteka nie jest używana przez %PRODUCTNAME Basic." #. Ns4rA #: sf_array.xhp @@ -1049,7 +1049,7 @@ "tit\n" "help.text" msgid "ScriptForge.Array service (SF_Array)" -msgstr "" +msgstr "Usługa ScriptForge.Array (SF_Array)" #. 5rg28 #: sf_array.xhp @@ -1058,7 +1058,7 @@ "bm_id281613039222756\n" "help.text" msgid "Array service" -msgstr "" +msgstr "Usługa Array" #. DryH9 #: sf_array.xhp @@ -1076,7 +1076,7 @@ "par_id991582454416549\n" "help.text" msgid "Provides a collection of methods for manipulating and transforming arrays of one dimension (vectors) and arrays of two dimensions (matrices). This includes set operations, sorting, importing from and exporting to text files." -msgstr "" +msgstr "Udostępnia zbiór metod służących do manipulowania i przekształcania tablic jednego wymiaru (wektorów) i tablic dwuwymiarowych (macierzy). Obejmuje to operacje na zestawach, sortowanie, importowanie i eksportowanie do plików tekstowych." #. WjgHr #: sf_array.xhp @@ -1085,7 +1085,7 @@ "par_id681609955015503\n" "help.text" msgid "Arrays with more than two dimensions cannot be used with the methods in this service, the only exception being the CountDims method that accepts Arrays with any number of dimensions." -msgstr "" +msgstr "Tablice o więcej niż dwóch wymiarach nie mogą być używane z metodami w tej usłudze, jedynym wyjątkiem jest metoda CountDims, która akceptuje tablice o dowolnej liczbie wymiarów." #. CL5tT #: sf_array.xhp @@ -1094,7 +1094,7 @@ "par_id651582454426538\n" "help.text" msgid "Array items may contain any type of value, including (sub)arrays." -msgstr "" +msgstr "Elementy tablicy mogą zawierać dowolny typ wartości, w tym (pod)tablice." #. hdC3J #: sf_array.xhp @@ -19112,7 +19112,7 @@ "tit\n" "help.text" msgid "Creating Python Scripts with ScriptForge" -msgstr "" +msgstr "Tworzenie skryptów w języku Python za pomocą ScriptForge" #. 8BEWT #: sf_intro.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/sbasic/shared.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/sbasic/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/sbasic/shared.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-10 22:32+0000\n" +"PO-Revision-Date: 2023-04-10 03:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -2102,7 +2102,7 @@ "par_idm1341272896\n" "help.text" msgid "MyNumber=5 'Correct'" -msgstr "" +msgstr "MyNumber=5 'Prawidłowe'" #. BQYCs #: 01020100.xhp @@ -2111,7 +2111,7 @@ "par_idm1341267456\n" "help.text" msgid "MyNumber5=15 'Correct'" -msgstr "" +msgstr "MyNumber5=15 'Prawidłowe'" #. Pvdzr #: 01020100.xhp @@ -2120,7 +2120,7 @@ "par_idm1341262016\n" "help.text" msgid "MyNumber_5=20 'Correct'" -msgstr "" +msgstr "MyNumber_5=20 'Prawidłowe'" #. JfvAk #: 01020100.xhp @@ -2129,7 +2129,7 @@ "par_idm1341256576\n" "help.text" msgid "My Number=20 'Not valid, variable with space must be enclosed in square brackets'" -msgstr "" +msgstr "My Number=20 'Nieprawidłowe, zmienna ze spacją musi być ujęta w nawiasy kwadratowe'" #. 5FT2u #: 01020100.xhp @@ -2138,7 +2138,7 @@ "par_idm1341251088\n" "help.text" msgid "[My Number]=12 'Correct'" -msgstr "" +msgstr "[My Number]=12 'Prawidłowe'" #. efEQG #: 01020100.xhp @@ -2147,7 +2147,7 @@ "par_idm1341245648\n" "help.text" msgid "DéjàVu=25 'Not valid, special characters are not allowed'" -msgstr "" +msgstr "DéjàVu=25 'Nieprawidłowe, znaki specjalne są niedozwolone'" #. 4AnyZ #: 01020100.xhp @@ -2156,7 +2156,7 @@ "par_idm1341240176\n" "help.text" msgid "5MyNumber=12 'Not valid, variable may not begin with a number'" -msgstr "" +msgstr "5MyNumber=12 'Nieprawidłowe, zmienna nie może zaczynać się od liczby'" #. BxPtT #: 01020100.xhp @@ -2165,7 +2165,7 @@ "par_idm1341234704\n" "help.text" msgid "Number,Mine=12 'Not valid, punctuation marks are not allowed'" -msgstr "" +msgstr "Number,Mine=12 'Nieprawidłowe, znaki interpunkcyjne są niedozwolone'" #. yqbu6 #: 01020100.xhp @@ -2201,7 +2201,7 @@ "par_idm1341222320\n" "help.text" msgid "Dim a$ 'Declares the variable \"a\" as a String'" -msgstr "" +msgstr "Dim a$ 'Deklaruje zmienną \"a\" jako String'" #. ZGwfA #: 01020100.xhp @@ -2210,7 +2210,7 @@ "par_idm1341216864\n" "help.text" msgid "Dim a As String 'Declares the variable \"a\" as a String'" -msgstr "" +msgstr "Dim a As String 'Deklaruje zmienną \"a\" jako String'" #. TBkJG #: 01020100.xhp @@ -2219,7 +2219,7 @@ "par_idm1341211408\n" "help.text" msgid "Dim a$, b As Integer 'Declares one variable as a String and one as an Integer'" -msgstr "" +msgstr "Dim a$, b As Integer 'Deklaruje jedną zmienną jako String, a drugą jako Integer'" #. EVtEN #: 01020100.xhp @@ -2228,7 +2228,7 @@ "par_idm1341205936\n" "help.text" msgid "Dim c As Boolean 'Declares c as a Boolean variable that can be TRUE or FALSE'" -msgstr "" +msgstr "Dim c As Boolean 'Deklaruje c jako zmienną Boolean, która może mieć wartość TRUE lub FALSE'" #. PWdLi #: 01020100.xhp @@ -2246,7 +2246,7 @@ "par_id421619551219763\n" "help.text" msgid "When you declare multiple variables in a single line of code you need to specify the type of each variable. If the type of a variable is not explicitly specified, then Basic will assume that the variable is of the Variant type." -msgstr "" +msgstr "Kiedy deklarujesz wiele zmiennych w jednym wierszu kodu, musisz określić typ każdej zmiennej. Jeśli typ zmiennej nie jest jawnie określony, Basic przyjmie, że zmienna jest typu Variant." #. FzKND #: 01020100.xhp @@ -2255,7 +2255,7 @@ "bas_id321619555442706\n" "help.text" msgid "' Both variables \"a\" and \"b\" are of the Integer type" -msgstr "" +msgstr "' Obie zmienne \"a\" i \"b\" są typu Integer" #. NCE7F #: 01020100.xhp @@ -2264,7 +2264,7 @@ "bas_id451619555463988\n" "help.text" msgid "' Variable \"c\" is a Variant and \"d\" is an Integer" -msgstr "" +msgstr "' Zmienna \"c\" to Variant, a \"d\" to Integer" #. fsaNa #: 01020100.xhp @@ -2273,7 +2273,7 @@ "bas_id161619555482237\n" "help.text" msgid "' A variable can also be explicitly declared as a Variant" -msgstr "" +msgstr "' Zmienną można również jawnie zadeklarować jako Variant" #. uQD9L #: 01020100.xhp @@ -2453,7 +2453,7 @@ "par_id3153070\n" "help.text" msgid "Single variables can take positive or negative values ranging from 3.402823 x 10E38 to 1.401298 x 10E-45. Single variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Single variables are suitable for mathematical calculations of average precision. Calculations require more time than for Integer variables, but are faster than calculations with Double variables. A Single variable requires 4 bytes of memory. The type-declaration character is \"!\"." -msgstr "" +msgstr "Pojedyncze zmienne mogą przyjmować wartości dodatnie lub ujemne z zakresu od 3,402823 x 10E38 do 1,401298 x 10E-45. Pojedyncze zmienne to zmienne zmiennoprzecinkowe, w których dokładność dziesiętna maleje wraz ze wzrostem niedziesiętnej części liczby. Pojedyncze zmienne nadają się do obliczeń matematycznych o średniej precyzji. Obliczenia wymagają więcej czasu niż dla zmiennych Integer, ale są szybsze niż obliczenia ze zmiennymi typu Double. Pojedyncza zmienna wymaga 4 bajtów pamięci. Znak deklaracji typu to \"!\"." #. X2BBe #: 01020100.xhp @@ -2471,7 +2471,7 @@ "par_id3150953\n" "help.text" msgid "Double variables can take positive or negative values ranging from 1.79769313486232 x 10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Double variables are suitable for precise calculations. Calculations require more time than for Single variables. A Double variable requires 8 bytes of memory. The type-declaration character is \"#\"." -msgstr "" +msgstr "Zmienne podwójne mogą przyjmować wartości dodatnie lub ujemne z zakresu od 1,79769313486232 x 10E308 do 4,94065645841247 x 10E-324. Zmienne typu Double to zmienne zmiennoprzecinkowe, w których dokładność dziesiętna maleje wraz ze wzrostem niedziesiętnej części liczby. Zmienne Double nadają się do precyzyjnych obliczeń. Obliczenia wymagają więcej czasu niż dla zmiennych Single. Zmienna Double wymaga 8 bajtów pamięci. Znak deklaracji typu to \"#\"." #. KYBFy #: 01020100.xhp @@ -2480,7 +2480,7 @@ "par_idm1341130144\n" "help.text" msgid "Dim Variable#" -msgstr "" +msgstr "Dim Variable#" #. vFZcZ #: 01020100.xhp @@ -2507,7 +2507,7 @@ "hd_id301576839713868\n" "help.text" msgid "Literals for integers" -msgstr "" +msgstr "Literały dla liczb całkowitych" #. PTiRZ #: 01020100.xhp @@ -2516,7 +2516,7 @@ "par_id1001576839723156\n" "help.text" msgid "Numbers can be encoded using octal and hexadecimal forms." -msgstr "" +msgstr "Liczby mogą być kodowane przy użyciu form ósemkowych i szesnastkowych." #. nGGUD #: 01020100.xhp @@ -2534,7 +2534,7 @@ "par_id3151393\n" "help.text" msgid "String variables can hold character strings with up to 2,147,483,648 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 2 Gbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"." -msgstr "" +msgstr "Zmienne łańcuchowe mogą przechowywać ciągi znaków o maksymalnej długości 2147483648 znaków. Każdy znak jest przechowywany jako odpowiadająca mu wartość Unicode. Zmienne łańcuchowe są odpowiednie do przetwarzania tekstów w programach i do tymczasowego przechowywania dowolnych znaków niedrukowalnych o maksymalnej długości 2 GB. Pamięć wymagana do przechowywania zmiennych łańcuchowych zależy od liczby znaków w zmiennej. Znak deklaracji typu to \"$\"." #. RBcLt #: 01020100.xhp @@ -2543,7 +2543,7 @@ "par_id381599081637549\n" "help.text" msgid "In BASIC String functions, the first character of the string has index 1." -msgstr "" +msgstr "W funkcjach String BASIC pierwszy znak ciągu ma indeks 1." #. wDbuF #: 01020100.xhp @@ -2588,7 +2588,7 @@ "bm_id3150669\n" "help.text" msgid "ampersand symbol; in literal notation literals;hexadecimal literals;octal literals;&h notation literals;&o notation" -msgstr "" +msgstr "symbol ampersand; w notacji literalnej literały;szesnastkowe literały;ósemkowe literały;notacja &h notacja literałów;notacja &o" #. x883R #: 01020100.xhp @@ -2597,7 +2597,7 @@ "hd_DateLiterals\n" "help.text" msgid "Literals for Dates" -msgstr "" +msgstr "Literały dla dat" #. 5FGDA #: 01020100.xhp @@ -2606,7 +2606,7 @@ "par_id151616083357363\n" "help.text" msgid "Date literals allow to specify unambiguous date variables that are independent from the current language. Literals are enclosed between hash signs #. Possible formats are:" -msgstr "" +msgstr "Literały daty pozwalają określić jednoznaczne zmienne daty, które są niezależne od bieżącego języka. Literały są ujęte między znakami krzyżyka #. Możliwe formaty to:" #. pCPWV #: 01020100.xhp @@ -2615,7 +2615,7 @@ "bm_id601619552599885\n" "help.text" msgid "The Variant type The Any type" -msgstr "" +msgstr "Typ Variant Typ Any" #. mPKPe #: 01020100.xhp @@ -2624,7 +2624,7 @@ "VariantTypeH2\n" "help.text" msgid "The Variant type" -msgstr "" +msgstr "Typ Variant" #. gnP2t #: 01020100.xhp @@ -2633,7 +2633,7 @@ "par_id1001619552129323\n" "help.text" msgid "Variables declared as Variant can handle any data type. This means that the actual data type is defined during runtime as a value is assigned to the variable." -msgstr "" +msgstr "Zmienne zadeklarowane jako Variant mogą obsługiwać dane dowolnego typu. Oznacza to, że rzeczywisty typ danych jest definiowany w czasie wykonywania, gdy wartość jest przypisywana do zmiennej." #. kKQzr #: 01020100.xhp @@ -2642,7 +2642,7 @@ "par_id631619552417188\n" "help.text" msgid "There are three main ways to create a Variant variable, as shown below:" -msgstr "" +msgstr "Istnieją trzy główne sposoby tworzenia zmiennej Variant, jak pokazano poniżej:" #. ZTswL #: 01020100.xhp @@ -2651,7 +2651,7 @@ "bas_id751619554900163\n" "help.text" msgid "Dim varA ' The type is not specified, hence the variable is a Variant" -msgstr "" +msgstr "Dim varA ' Typ nie jest określony, stąd zmienna jest typu Variant" #. 3mWEB #: 01020100.xhp @@ -2660,7 +2660,7 @@ "bas_id181619554965451\n" "help.text" msgid "Dim varB as Variant ' The variable is explicitly declared as a Variant" -msgstr "" +msgstr "Dim varB as Variant ' Zmienna jest jawnie zadeklarowana jako Variant" #. vEpTz #: 01020100.xhp @@ -2669,7 +2669,7 @@ "bas_id371619554853094\n" "help.text" msgid "varC = \"abc\" ' Previously undeclared variables are treated as Variants" -msgstr "" +msgstr "varC = \"abc\" ' Wcześniej niezadeklarowane zmienne są traktowane jako Variant" #. PDFED #: 01020100.xhp @@ -6818,7 +6818,7 @@ "hd_id3148739\n" "help.text" msgid "Order" -msgstr "Porządek" +msgstr "Kolejność" #. i7fot #: 01170101.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/scalc/00.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/scalc/00.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/scalc/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/scalc/00.po 2023-05-03 15:22:13.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-21 12:31+0100\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" -"Last-Translator: serval2412 \n" +"PO-Revision-Date: 2023-04-21 07:34+0000\n" +"Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542197251.000000\n" #. E9tti @@ -77,7 +77,7 @@ "hd_id3147303\n" "help.text" msgid "Edit Menu" -msgstr "Menu edycja" +msgstr "Menu Edycja" #. Q5BbF #: 00000402.xhp @@ -1508,7 +1508,7 @@ "par_id3149207\n" "help.text" msgid "Reset Filter/Sort" -msgstr "Wyczyść filtr/sortowanie" +msgstr "Resetuj filtr/sortowanie" #. eqxFL #: 00000412.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/scalc/guide.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/scalc/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/scalc/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:10+0000\n" +"PO-Revision-Date: 2023-04-20 06:54+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -4028,7 +4028,7 @@ "par_id3152869\n" "help.text" msgid "From the Export of text files dialog that appears, select the character set and the field and text delimiters for the data to be exported, and confirm with OK." -msgstr "W wyświetlonym oknie Eksport plików tekstowych zaznacz zestaw znaków i wybierz separatory eksportowanych pól i tekstu, a następnie potwierdź, klikając przycisk OK." +msgstr "W wyświetlonym oknie Eksport plików tekstowych zaznacz zestaw znaków i wybierz ograniczniki eksportowanych pól i tekstu, a następnie potwierdź, klikając przycisk OK." #. yPP3a #: csv_formula.xhp @@ -7565,7 +7565,7 @@ "tit\n" "help.text" msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)" -msgstr "Skróty klawiaturowe (ułatwienia dostępu w %PRODUCTNAME Calc)" +msgstr "Skróty klawiaturowe (dostępność w %PRODUCTNAME Calc)" #. 8nhV7 #: keyboard.xhp @@ -7574,7 +7574,7 @@ "bm_id3145120\n" "help.text" msgid "accessibility; %PRODUCTNAME Calc shortcutsshortcut keys;%PRODUCTNAME Calc accessibility" -msgstr "ułatwienia dostępu; skróty %PRODUCTNAME Calcskróty klawiaturowe;ułatwienia dostępu %PRODUCTNAME Calc" +msgstr "dostępność; skróty %PRODUCTNAME Calcskróty klawiaturowe; dostępność w %PRODUCTNAME Calc" #. 5D3u4 #: keyboard.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/sdraw/01.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/sdraw/01.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/sdraw/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/sdraw/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-14 16:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -617,7 +617,7 @@ "par_id931623525360411\n" "help.text" msgid "For better results, combine adjacent text boxes with similar paragraph formatting. Character formatting inside the text boxes is preserved. Combining text boxes with different paragraph styles (headings, list and more) will require manual intervention to restore the original text layout." -msgstr "Aby uzyskać lepsze wyniki, kombinuj sąsiednie pola tekstowe z podobnym formatowaniem akapitu. Formatowanie znaków wewnątrz pól tekstowych zostaje zachowane. Łączenie pól tekstowych z różnymi stylami akapitu (nagłówki, listy i inne) będzie wymagało ręcznej interwencji w celu przywrócenia oryginalnego układu tekstu." +msgstr "Aby uzyskać lepsze wyniki, łącz sąsiednie pola tekstowe z podobnym formatowaniem akapitu. Formatowanie znaków wewnątrz pól tekstowych zostaje zachowane. Łączenie pól tekstowych z różnymi stylami akapitu (nagłówki, listy i inne) będzie wymagało ręcznej interwencji w celu przywrócenia oryginalnego układu tekstu." #. 4JVcT #: delete_page.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/sdraw/04.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/sdraw/04.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/sdraw/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/sdraw/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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: 2023-02-06 06:33+0000\n" +"PO-Revision-Date: 2023-04-14 16:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -446,7 +446,7 @@ "par_id3153110\n" "help.text" msgid "Combines selected objects." -msgstr "Zespalaj zaznaczone obiekty." +msgstr "Łączy zaznaczone obiekty." #. 84EDw #: 01020000.xhp @@ -464,7 +464,7 @@ "par_id3147366\n" "help.text" msgid "Uncombines selected objects." -msgstr "Podziel zaznaczony obiekt." +msgstr "Dzieli zaznaczone obiekty." #. TQoYQ #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/sdraw/guide.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/sdraw/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/sdraw/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-04-14 16:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1545245678.000000\n" #. cZbDh @@ -401,7 +401,7 @@ "tit\n" "help.text" msgid "Combining Objects and Constructing Shapes" -msgstr "Zespalanie obiektów i tworzenie figur" +msgstr "Łączenie obiektów i tworzenie figur" #. 5vtFm #: combine_etc.xhp @@ -428,7 +428,7 @@ "par_id3149020\n" "help.text" msgid "Combined drawing objects act as grouped objects, except that you cannot enter the group to edit the individual objects." -msgstr "Zespolone obiekty zachowują się podobnie do zgrupowanych obiektów. Nie można jedynie wejść do zespolonych obiektów i edytować ich indywidualnych właściwości." +msgstr "Łączone obiekty zachowują się podobnie do zgrupowanych obiektów. Nie można jedynie wejść do połączonych obiektów i edytować ich indywidualnych właściwości." #. UpuY6 #: combine_etc.xhp @@ -437,7 +437,7 @@ "par_id3154659\n" "help.text" msgid "You can only combine 2D objects." -msgstr "Można zespalać tylko obiekty 2D." +msgstr "Można łączyć tylko obiekty 2D." #. BSs4D #: combine_etc.xhp @@ -446,7 +446,7 @@ "hd_id3150344\n" "help.text" msgid "To combine 2D objects:" -msgstr "Zespalanie obiektów 2D:" +msgstr "Łączenie obiektów 2D:" #. R5BDg #: combine_etc.xhp @@ -473,7 +473,7 @@ "par_id3146978\n" "help.text" msgid "Unlike groups, a combined object takes on the properties of the lowermost object in the stacking order. You can split apart combined objects, but the original object properties are lost." -msgstr "W odróżnieniu od grupy zespolony obiekt posiada właściwości obiektu znajdującego się najniżej w kolejności rozmieszczenia. Możesz podzielić zespolone obiekty na obiekty składowe ale właściwości oryginalnych obiektów będą utracone." +msgstr "W odróżnieniu od grupy łączony obiekt posiada właściwości obiektu znajdującego się najniżej w kolejności rozmieszczenia. Możesz podzielić łączone obiekty na obiekty składowe ale właściwości oryginalnych obiektów będą utracone." #. hApF9 #: combine_etc.xhp @@ -491,7 +491,7 @@ "par_id3156019\n" "help.text" msgid "Illustration for combining objects" -msgstr "Ilustracja przedstawiająca zespalanie obiektów" +msgstr "Ilustracja przedstawiająca łączenie obiektów" #. nKm5v #: combine_etc.xhp @@ -500,7 +500,7 @@ "par_id3153249\n" "help.text" msgid "In the illustration, the uncombined objects are on the left and the combined objects on the right." -msgstr "Na rysunku, po lewej stronie, widoczne są nie zespolone obiekty. Po prawej stronie rysunku znajdują się obiekty zespolone." +msgstr "Na rysunku, po lewej stronie, widoczne są obiekty niełączone. Po prawej stronie rysunku znajdują się obiekty łączone." #. FFRim #: combine_etc.xhp @@ -1778,7 +1778,7 @@ "hd_id3150042\n" "help.text" msgid "To combine 3D objects:" -msgstr "Aby zespolić obiekty 3D:" +msgstr "Aby połączyć obiekty 3D:" #. aicit #: join_objects3d.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared/00.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared/00.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-02 16:11+0000\n" +"PO-Revision-Date: 2023-04-20 06:54+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -5207,7 +5207,7 @@ "hd_id3145138\n" "help.text" msgid "Field delimiter" -msgstr "Separator pola" +msgstr "Ogranicznik pola" #. MSSDg #: 00000207.xhp @@ -5225,7 +5225,7 @@ "hd_id3154682\n" "help.text" msgid "Text delimiter" -msgstr "Separator tekstu" +msgstr "Ogranicznik tekstu" #. AC8vt #: 00000207.xhp @@ -5252,7 +5252,7 @@ "par_id3152778363\n" "help.text" msgid "Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character." -msgstr "Eksportuje wszystkie komórki tekstowe ze znakiem początku i końca cytatu, zgodnie z ustawieniem w oknie separatora tekstu. Jeśli nie zaznaczono inaczej, cytowane będą tylko te komórki tekstowe które zawierają znak separatpra pola." +msgstr "Eksportuje wszystkie komórki tekstowe ze znakiem początku i końca cytatu, zgodnie z ustawieniem w oknie ogranicznika tekstu. Jeśli nie zaznaczono inaczej, cytowane będą tylko te komórki tekstowe które zawierają znak ogranicznika pola." #. pF6fj #: 00000207.xhp @@ -5603,7 +5603,7 @@ "hd_id3150978\n" "help.text" msgid "Merge delimiters" -msgstr "Scal separatory" +msgstr "Scal ograniczniki" #. G6Vj9 #: 00000208.xhp @@ -6899,7 +6899,7 @@ "par_id3149109\n" "help.text" msgid "Save" -msgstr "Zapisz dokument" +msgstr "Zapisz" #. 2vdrS #: 00000401.xhp @@ -8213,7 +8213,7 @@ "par_idN10DD1\n" "help.text" msgid "Fontwork Gallery" -msgstr "Fontwork - Galeria" +msgstr "Fontwork – Galeria" #. uMQfA #: 00000404.xhp @@ -8996,7 +8996,7 @@ "par_id3146989\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Accessibility." -msgstr "Wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - $[officename] - Ułatwienia dostępu." +msgstr "Wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - $[officename] - Dostępność." #. CLqN3 #: 00000406.xhp @@ -12713,7 +12713,7 @@ "par_id161592159449638\n" "help.text" msgid "Choose Format - Styles - Manage Styles (Command+TF11), choose Drawing style - open context menu - choose Modify/New - Area tab." -msgstr "Wybierz Format - Style - Zarządzaj stylami (Command+TF11), wybierz styl rysowania, otwórz menu kontekstowe i wybierz kartę Modyfikuj/Nowy - Obszar." +msgstr "Wybierz Format - Style - Zarządzaj stylami (Command+TF11), wybierz styl rysunku, otwórz menu kontekstowe i wybierz kartę Modyfikuj/Nowy - Obszar." #. 8Ac8B #: 00040502.xhp @@ -12776,7 +12776,7 @@ "par_id3150685\n" "help.text" msgid "Choose Format - Chart Area - Area." -msgstr "" +msgstr "Wybierz Format - Obszar wykresu - Obszar." #. 9F87x #: 00040502.xhp @@ -12785,7 +12785,7 @@ "par_id901592160809757\n" "help.text" msgid "When editing a form:" -msgstr "" +msgstr "Podczas edycji formularza:" #. oABmb #: 00040502.xhp @@ -12794,7 +12794,7 @@ "par_id201592161190323\n" "help.text" msgid "When editing a report:" -msgstr "" +msgstr "Podczas edycji raportu:" #. VBYSN #: 00040502.xhp @@ -12803,7 +12803,7 @@ "par_id591592161180508\n" "help.text" msgid "Choose Format - Page - Background tab." -msgstr "" +msgstr "Wybierz kartę Format - Strona - Tło." #. Y8S4k #: 00040502.xhp @@ -12812,7 +12812,7 @@ "par_id3154985\n" "help.text" msgid "Choose Format - Area - Transparency tab (drawing documents)." -msgstr "" +msgstr "Wybierz kartę Format - Obszar - Przezroczystość (dokumenty rysunku)." #. 3GEwT #: 00040502.xhp @@ -12821,7 +12821,7 @@ "par_id3145365\n" "help.text" msgid "Choose Format - Object and Shape - Area - Transparency tab (presentation documents)." -msgstr "" +msgstr "Wybierz kartę Format - Obiekt i kształt - Obszar - Przezroczystość (dokumenty prezentacji)." #. KXq32 #: 00040502.xhp @@ -12830,7 +12830,7 @@ "par_id3151117\n" "help.text" msgid "Choose Format - Chart Wall - Transparency tab (chart documents)." -msgstr "" +msgstr "Wybierz zakładkę Format - Ściana wykresu - Przezroczystość (dokumenty z wykresami)." #. T7mFT #: 00040502.xhp @@ -12839,7 +12839,7 @@ "par_id3147326\n" "help.text" msgid "Choose Format - Chart Area - Transparency tab (chart documents)." -msgstr "" +msgstr "Wybierz zakładkę Format - Obszar wykresu - Przezroczystość (dokumenty z wykresami)." #. NADFJ #: 00040502.xhp @@ -12848,7 +12848,7 @@ "par_id3154920\n" "help.text" msgid "Choose Format - Chart Floor - Transparency tab (chart documents)." -msgstr "" +msgstr "Wybierz kartę Format - Podstawa wykresu - Przezroczystość (dokumenty z wykresami)." #. G8nHA #: 00040502.xhp @@ -12857,7 +12857,7 @@ "par_id3145591\n" "help.text" msgid "Choose Format - Title - All Titles - Transparency tab (chart documents)." -msgstr "" +msgstr "Wybierz kartę Format - Tytuł - Wszystkie tytuły - Przezroczystość (dokumenty z wykresami)." #. a8e56 #: 00040502.xhp @@ -12866,7 +12866,7 @@ "par_id3145750\n" "help.text" msgid "Choose Format - Title - Main Title - Transparency tab (chart documents)." -msgstr "" +msgstr "Wybierz kartę Format - Tytuł - Tytuł główny - Przezroczystość (dokumenty z wykresami)." #. emJAB #: 00040502.xhp @@ -12875,7 +12875,7 @@ "par_id3148556\n" "help.text" msgid "Choose Format - Title - Subtitle - Transparency tab (chart documents)." -msgstr "" +msgstr "Wybierz kartę Format - Tytuł - Podtytuł - Przezroczystość (dokumenty z wykresami)." #. HJA39 #: 00040502.xhp @@ -12884,7 +12884,7 @@ "par_id3163710\n" "help.text" msgid "Choose Format - Title - Title (X Axis) - Transparency tab (chart documents)." -msgstr "" +msgstr "Wybierz kartę Format - Tytuł - Tytuł (oś X) - Przezroczystość (dokumenty z wykresami)." #. tcLoj #: 00040502.xhp @@ -12893,7 +12893,7 @@ "par_id3150487\n" "help.text" msgid "Choose Format - Title - Title (Y Axis) - Transparency tab (chart documents)." -msgstr "" +msgstr "Wybierz kartę Format - Tytuł - Tytuł (oś Y) - Przezroczystość (dokumenty z wykresami)." #. Eurkn #: 00040502.xhp @@ -12902,7 +12902,7 @@ "par_id3154320\n" "help.text" msgid "Choose Format - Title - Title (Z Axis) - Transparency tab (chart documents)" -msgstr "" +msgstr "Wybierz kartę Format - Tytuł - Tytuł (oś Z) - Przezroczystość (dokumenty z wykresami)" #. Z3NRm #: 00040502.xhp @@ -12911,7 +12911,7 @@ "par_id3151113\n" "help.text" msgid "Choose Format - Object Properties - Data Point - Transparency - tab (chart documents)." -msgstr "" +msgstr "Wybierz kartę Format - Właściwości obiektu - Punkt danych - Przezroczystość (dokumenty z wykresami)." #. ageEB #: 00040502.xhp @@ -12920,7 +12920,7 @@ "par_id3149266\n" "help.text" msgid "Choose Format - Object Properties - Data Series - Transparency tab (chart documents)." -msgstr "" +msgstr "Wybierz zakładkę Format - Właściwości obiektu - Seria danych - Przezroczystość (dokumenty z wykresami)." #. KrDZ5 #: 00040502.xhp @@ -12929,7 +12929,7 @@ "par_id3147189\n" "help.text" msgid "Choose Format - Paragraph - Transparency tab." -msgstr "" +msgstr "Wybierz kartę Format - Akapit - Przezroczystość." #. YAhWh #: 00040502.xhp @@ -12938,7 +12938,7 @@ "par_id3144352\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Transparency tab." -msgstr "" +msgstr "Wybierz Widok - Style, a następnie otwórz menu kontekstowe wpisu i wybierz kartę Modyfikuj/Nowy - Przezroczystość." #. poxAS #: 00040502.xhp @@ -12947,7 +12947,7 @@ "par_id3150011\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Area - Shadow tab." -msgstr "" +msgstr "Wybierz kartę Format - Pole tekstowe i kształt - Obiekt - Obszar - Cień." #. GKhM7 #: 00040502.xhp @@ -12956,7 +12956,7 @@ "par_id3147441\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Area - Gradients tab." -msgstr "" +msgstr "Wybierz kartę Format - Pole tekstowe i kształt - Obiekt - Obszar - Gradienty." #. Vez5y #: 00040502.xhp @@ -12965,7 +12965,7 @@ "par_id3155308\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Object and Shape - Area - Hatch tab. " -msgstr "" +msgstr "Wybierz kartę Format - Pole tekstowe i kształt - Obiekt - Obiekt i kształt - Obszar - Kreskowanie." #. phott #: 00040502.xhp @@ -12974,7 +12974,7 @@ "par_id3155314\n" "help.text" msgid " Choose Format - Page Style - Area Choose Page - Properties - Background Choose Slide - Properties - Background - Hatch tab. " -msgstr "" +msgstr "Wybierz kartę Format - Styl strony - Obszar Wybierz kartę Strona - Właściwości - TłoWybierz kartę Slajd - Właściwości - Tło - Kreskowanie." #. 8D2G2 #: 00040502.xhp @@ -12983,7 +12983,7 @@ "par_id3145800\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Area - Image tab." -msgstr "" +msgstr "Wybierz kartę Format - Pole tekstowe i kształt - Obiekt - Obszar - Obraz." #. VRoLs #: 00040502.xhp @@ -12992,7 +12992,7 @@ "par_id3145251\n" "help.text" msgid "Choose Format - Text Box and Shape - Text Attributes Object - Text - Text." -msgstr "" +msgstr "Wybierz Format - Pole tekstowe i kształt - Atrybuty tekstuObiekt - Tekst - Tekst." #. gXjCD #: 00040502.xhp @@ -13001,7 +13001,7 @@ "par_id3152810\n" "help.text" msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextObject and ShapeText - Text tab." -msgstr "" +msgstr "Wybierz kartę Format - Pole tekstowe i kształt - Atrybuty tekstuObiekt - TekstObiekt i kształtTekstTekst." #. oZMeq #: 00040502.xhp @@ -13010,7 +13010,7 @@ "par_id3151060\n" "help.text" msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextText - Text Animation tab." -msgstr "" +msgstr "Wybierz kartę Format - Pole tekstowe i kształt - Atrybuty tekstu Obiekt - TekstTekst - Animacja tekstu." #. FNvDY #: 00040502.xhp @@ -13019,7 +13019,7 @@ "par_id3149911\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Position and Size." -msgstr "" +msgstr "Wybierz Format - Pole tekstowe i kształt - Obiekt - Pozycja i rozmiar." #. tEB7C #: 00040502.xhp @@ -13028,7 +13028,7 @@ "par_id3156286\n" "help.text" msgid "F4 keyF4 key" -msgstr "" +msgstr "Klawisz F4Klawisz F4" #. fevBK #: 00040502.xhp @@ -13037,7 +13037,7 @@ "par_id3153052\n" "help.text" msgid "Icon Position and Size" -msgstr "" +msgstr "Ikona pozycji i rozmiaru" #. yL3FJ #: 00040502.xhp @@ -13055,7 +13055,7 @@ "par_id3148833\n" "help.text" msgid "Open the context menu for the object - choose Name." -msgstr "" +msgstr "Otwórz menu kontekstowe obiektu i wybierz Nazwa." #. N7dZ7 #: 00040502.xhp @@ -13064,7 +13064,7 @@ "par_id411999\n" "help.text" msgid "Right-click on a selected image, frame, or OLE object - choose Properties - Options tab." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy zaznaczony obraz, ramkę lub obiekt OLE i wybierz zakładkę Właściwości - Opcje." #. AMjWD #: 00040502.xhp @@ -13073,7 +13073,7 @@ "par_id301652608714795\n" "help.text" msgid "For a selected object, choose Format - Description" -msgstr "" +msgstr "Dla zaznaczonego obiektu wybierz Format - Opis" #. Bhmkm #: 00040502.xhp @@ -13082,7 +13082,7 @@ "par_id921602059453828\n" "help.text" msgid "Click on textbox or shape to select, then..." -msgstr "" +msgstr "Kliknij pole tekstowe lub kształt, aby zaznaczyć, a następnie..." #. 8aZmk #: 00040502.xhp @@ -13091,7 +13091,7 @@ "par_id3153099\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Object and Shape - Position and Size - Position and Size tab." -msgstr "" +msgstr "Wybierz kartę Format - Pole tekstowe i kształt - Obiekt - Obiekt i kształt - Pozycja i rozmiar - Pozycja i rozmiar." #. etEap #: 00040502.xhp @@ -13100,7 +13100,7 @@ "par_id361602065556003\n" "help.text" msgid "Open context menu for selected object - choose Position and Size - Position and Size tab." -msgstr "" +msgstr "Otwórz menu kontekstowe zaznaczonego obiektu i wybierz kartę Pozycja i rozmiar - Pozycja i rozmiar." #. FTEHw #: 00040502.xhp @@ -13109,7 +13109,7 @@ "par_id371602337542349\n" "help.text" msgid "Icon Position and Size" -msgstr "" +msgstr "Ikona pozycji i rozmiaru" #. 38DDB #: 00040502.xhp @@ -13118,7 +13118,7 @@ "par_id841602337832667\n" "help.text" msgid "Position and Size menu icon" -msgstr "" +msgstr "Ikona menu Pozycja i rozmiar" #. rjLHN #: 00040502.xhp @@ -13127,7 +13127,7 @@ "par_id971602065138382\n" "help.text" msgid "Press F4 after selection to open the tab directly." -msgstr "" +msgstr "Naciśnij F4 po dokonaniu zaznaczenia, aby bezpośrednio otworzyć kartę." #. qaXaJ #: 00040502.xhp @@ -13136,7 +13136,7 @@ "par_id3152973\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Position and Size - Rotation tab." -msgstr "" +msgstr "Wybierz kartę Format - Pole tekstowe i kształt - Obiekt - Pozycja i rozmiar - Obrót." #. BESGV #: 00040502.xhp @@ -13145,7 +13145,7 @@ "par_id3148495\n" "help.text" msgid "Icon Rotate" -msgstr "" +msgstr "Ikona obrotu" #. raRWH #: 00040502.xhp @@ -13163,7 +13163,7 @@ "par_id3145666\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Position and Size - Slant & Corner Radius tab." -msgstr "" +msgstr "Wybierz Format - Pole tekstowe i kształt - Obiekt - Pozycja i rozmiar - Nachylenie i promień krzywizny narożnika." #. he3t3 #: 00040502.xhp @@ -13172,7 +13172,7 @@ "par_id3146081\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Position and Size - Callout tab. This is only available for textbox callouts, not for custom shapes callouts." -msgstr "" +msgstr "Wybierz kartę Format - Pole tekstowe i kształt - Obiekt - Pozycja i rozmiar - Objaśnienie. Jest to dostępne tylko dla objaśnień pól tekstowych, a nie dla objaśnień kształtów niestandardowych." #. CgG8j #: 00040502.xhp @@ -13181,7 +13181,7 @@ "par_id3083283\n" "help.text" msgid "Choose Edit - Points." -msgstr "" +msgstr "Wybierz Edycja - Punkty." #. pzsDV #: 00040502.xhp @@ -13190,7 +13190,7 @@ "par_id3145642\n" "help.text" msgid "Open context menu - choose Edit Points. Open context menu - choose Edit Points." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Edycja punktów. Otwórz menu kontekstowe i wybierz Edycja punktów." #. SAxEg #: 00040502.xhp @@ -13199,7 +13199,7 @@ "par_id3149019\n" "help.text" msgid "F8 keyF8 key" -msgstr "" +msgstr "Klawisz F8Klawisz F8" #. m9Ntk #: 00040502.xhp @@ -13208,7 +13208,7 @@ "par_id3150044\n" "help.text" msgid "Icon Edit Points" -msgstr "" +msgstr "Ikona edycji punktów" #. AMJ2m #: 00040502.xhp @@ -13226,7 +13226,7 @@ "par_id3151248\n" "help.text" msgid "Choose Format - Character (drawing functions)." -msgstr "" +msgstr "Wybierz Format - Znak (funkcje rysunkowe)." #. fitoG #: 00040502.xhp @@ -13235,7 +13235,7 @@ "par_id3145229\n" "help.text" msgid "Open context menu - choose Character." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Znak." #. wSA5e #: 00040502.xhp @@ -13244,7 +13244,7 @@ "par_id3151342\n" "help.text" msgid "Open context menu - choose Size." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Rozmiar." #. FNawj #: 00040502.xhp @@ -13253,7 +13253,7 @@ "par_id3149255\n" "help.text" msgid "Open context menu - choose Style." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Styl." #. C4ZrM #: 00040502.xhp @@ -13262,7 +13262,7 @@ "par_id3155177\n" "help.text" msgid "Open context menu - choose Style - Bold." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Styl - Pogrubiony." #. Ue6Ng #: 00040502.xhp @@ -13271,7 +13271,7 @@ "par_id3145766\n" "help.text" msgid "Icon Bold" -msgstr "" +msgstr "Ikona pogrubienia" #. pQRTJ #: 00040502.xhp @@ -13289,7 +13289,7 @@ "par_id3151276\n" "help.text" msgid "Open context menu - choose Style - Italic." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Styl - Kursywa." #. D9EAq #: 00040502.xhp @@ -13298,7 +13298,7 @@ "par_id3159091\n" "help.text" msgid "Icon Italic" -msgstr "" +msgstr "Ikona kursywy" #. cggpG #: 00040502.xhp @@ -13316,7 +13316,7 @@ "par_id3154589\n" "help.text" msgid "Open the menu Format - Text and choose Single Underline or Double Underline." -msgstr "" +msgstr "Otwórz menu Format - Tekst i wybierz Pojedyncze podkreślenie lub Podwójne podkreślenie." #. x8omF #: 00040502.xhp @@ -13325,7 +13325,7 @@ "par_id3145223\n" "help.text" msgid "Icon Underline" -msgstr "" +msgstr "Ikona podkreślenia" #. Bfqx8 #: 00040502.xhp @@ -13343,7 +13343,7 @@ "par_id3145131\n" "help.text" msgid "Open context menu - choose Style - Strikethrough." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Styl - Przekreślenie." #. GUjSt #: 00040502.xhp @@ -13352,7 +13352,7 @@ "par_id3158214\n" "help.text" msgid "Open context menu - choose Style - Shadow." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Styl - Cień." #. 6q5PX #: 00040502.xhp @@ -13361,7 +13361,7 @@ "par_id3150207\n" "help.text" msgid "Open context menu - choose Style - Contour." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Styl - Kontur." #. CaimB #: 00040502.xhp @@ -13370,7 +13370,7 @@ "par_id3154383\n" "help.text" msgid "Open context menu - choose Style - Superscript." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Styl - Indeks górny." #. FrAHo #: 00040502.xhp @@ -13379,7 +13379,7 @@ "par_id3152767\n" "help.text" msgid "Open context menu - choose Style - Subscript." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Styl - Indeks dolny." #. GCxvv #: 00040502.xhp @@ -13388,7 +13388,7 @@ "par_id3155377\n" "help.text" msgid "Choose Format - Spacing." -msgstr "" +msgstr "Wybierz Format - Odstępy." #. AJWAM #: 00040502.xhp @@ -13397,7 +13397,7 @@ "par_id3154475\n" "help.text" msgid "Choose Format - Spacing - Line Spacing: 1." -msgstr "" +msgstr "Wybierz Format - Odstępy - Interlinia: 1." #. TKPgq #: 00040502.xhp @@ -13406,7 +13406,7 @@ "par_id3150478\n" "help.text" msgid "Choose Format - Spacing - Line Spacing: 1.5." -msgstr "" +msgstr "Wybierz Format - Odstępy - Interlinia: 1,5." #. nxrCX #: 00040502.xhp @@ -13415,7 +13415,7 @@ "par_id3147167\n" "help.text" msgid "Choose Format - Spacing - Line Spacing: 2." -msgstr "" +msgstr "Wybierz Format - Odstępy - Interlinia: 2." #. eLguF #: 00040502.xhp @@ -13424,7 +13424,7 @@ "par_id3146978\n" "help.text" msgid "Choose Format - Align Text - Left." -msgstr "" +msgstr "Wybierz Format - Wyrównaj tekst - Do lewej." #. reirq #: 00040502.xhp @@ -13433,7 +13433,7 @@ "par_id3153009\n" "help.text" msgid "Open context menu - choose Align - Left." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Wyrównaj - Do lewej." #. hUH97 #: 00040502.xhp @@ -13442,7 +13442,7 @@ "par_id3147310\n" "help.text" msgid "Icon Align Left" -msgstr "" +msgstr "Ikona wyrównania do lewej" #. okQkj #: 00040502.xhp @@ -13460,7 +13460,7 @@ "par_id3155823\n" "help.text" msgid "Choose Format - Align Text - Right." -msgstr "" +msgstr "Wybierz Format - Wyrównaj tekst - Do prawej." #. 2MorN #: 00040502.xhp @@ -13469,7 +13469,7 @@ "par_id3155762\n" "help.text" msgid "Open context menu - choose Align - Right." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Wyrównaj - Do prawej." #. jddUQ #: 00040502.xhp @@ -13478,7 +13478,7 @@ "par_id3149408\n" "help.text" msgid "Icon Align Right" -msgstr "" +msgstr "Ikona wyrównania do prawej" #. XnJxD #: 00040502.xhp @@ -13496,7 +13496,7 @@ "par_id3149189\n" "help.text" msgid "Choose Format - Align Text - Centered." -msgstr "" +msgstr "Wybierz Format - Wyrównaj tekst - Do środka." #. YutM3 #: 00040502.xhp @@ -13505,7 +13505,7 @@ "par_id3154624\n" "help.text" msgid "Open context menu - choose Align - Center." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Wyrównaj - Do środka." #. kZk7u #: 00040502.xhp @@ -13514,7 +13514,7 @@ "par_id3153815\n" "help.text" msgid "Icon Centered" -msgstr "" +msgstr "Ikona wyśrodkowania" #. CQD3j #: 00040502.xhp @@ -13523,7 +13523,7 @@ "par_id3153076\n" "help.text" msgid "Align Center HorizontallyCentered" -msgstr "" +msgstr "Wyrównaj do środka w poziomieDo środka" #. BAFc3 #: 00040502.xhp @@ -13532,7 +13532,7 @@ "par_id3146151\n" "help.text" msgid "Choose Format - Align Text - Justified." -msgstr "" +msgstr "Wybierz Format - Wyrównaj tekst - Do lewej i prawej." #. Mj8VD #: 00040502.xhp @@ -13541,7 +13541,7 @@ "par_id3168612\n" "help.text" msgid "Open context menu - choose Align - Justified." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Wyrównaj - Do lewej i prawej." #. jfsgi #: 00040502.xhp @@ -13550,7 +13550,7 @@ "par_id3156189\n" "help.text" msgid "Icon Justified" -msgstr "" +msgstr "Ikona od lewej do prawej" #. YBkwj #: 00040502.xhp @@ -13568,7 +13568,7 @@ "par_id3150527\n" "help.text" msgid "Click Fontwork icon on Drawing bar." -msgstr "" +msgstr "Kliknij ikonę Fontwork na pasku Rysunek." #. EMj96 #: 00040502.xhp @@ -13577,7 +13577,7 @@ "par_id3144503\n" "help.text" msgid "Choose Format - Group." -msgstr "" +msgstr "Wybierz Format - Grupuj." #. YJ3t9 #: 00040502.xhp @@ -13586,7 +13586,7 @@ "par_id3154854\n" "help.text" msgid "Open context menu - choose Group." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Grupuj." #. 93FXg #: 00040502.xhp @@ -13595,7 +13595,7 @@ "par_id3157980\n" "help.text" msgid "Choose Shape - Group - Group" -msgstr "" +msgstr "Wybierz Kształt - Grupuj - Grupuj" #. dXNCq #: 00040502.xhp @@ -13604,7 +13604,7 @@ "par_id3157985\n" "help.text" msgid "Choose Format - Group - Group" -msgstr "" +msgstr "Wybierz Format - Grupuj - Grupuj" #. w3EVK #: 00040502.xhp @@ -13613,7 +13613,7 @@ "par_id3149508\n" "help.text" msgid "Open context menu - choose Group (for text box and shapes)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Grupuj (dla pola tekstowego i kształtów)." #. ibZAV #: 00040502.xhp @@ -13622,7 +13622,7 @@ "par_id3146858\n" "help.text" msgid "Icon Group" -msgstr "" +msgstr "Ikona grupowania" #. DVEkd #: 00040502.xhp @@ -13640,7 +13640,7 @@ "par_id3163378\n" "help.text" msgid "Choose Shape - Group - Ungroup." -msgstr "" +msgstr "Wybierz Kształt - Grupuj - Rozgrupuj." #. K7UZY #: 00040502.xhp @@ -13649,7 +13649,7 @@ "par_id3153023\n" "help.text" msgid "Choose Format - Group - Ungroup." -msgstr "" +msgstr "Wybierz Format - Grupuj - Rozgrupuj." #. 9k3ef #: 00040502.xhp @@ -13658,7 +13658,7 @@ "par_id3156038\n" "help.text" msgid "Open context menu - choose Ungroup." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Rozgrupuj." #. zcmBV #: 00040502.xhp @@ -13667,7 +13667,7 @@ "par_id3151300\n" "help.text" msgid "Icon Ungroup" -msgstr "" +msgstr "Ikona rozgrupowania" #. DGWSV #: 00040502.xhp @@ -13685,7 +13685,7 @@ "par_id3145678\n" "help.text" msgid "Choose Shape - Group - Exit Group." -msgstr "" +msgstr "Wybierz Kształt - Grupuj - Wyjdź z grupy." #. fZQDA #: 00040502.xhp @@ -13694,7 +13694,7 @@ "par_id3153109\n" "help.text" msgid "Choose Format - Group - Exit Group." -msgstr "" +msgstr "Wybierz Format - Grupuj - Wyjdź z grupy." #. Bszjv #: 00040502.xhp @@ -13703,7 +13703,7 @@ "par_id3152367\n" "help.text" msgid "Open context menu - choose Exit Group." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Wyjdź z grupy." #. BBvnq #: 00040502.xhp @@ -13712,7 +13712,7 @@ "par_id3158402\n" "help.text" msgid "Icon Exit Group" -msgstr "" +msgstr "Ikona wychodzenia z grupy" #. ndpeo #: 00040502.xhp @@ -13730,7 +13730,7 @@ "par_id3145354\n" "help.text" msgid "Choose Shape - Group - Enter Group." -msgstr "" +msgstr "Wybierz Kształt - Grupuj - Wejdź do grupy." #. vuF7P #: 00040502.xhp @@ -13739,7 +13739,7 @@ "par_id3149129\n" "help.text" msgid "Choose Format - Group - Enter Group." -msgstr "" +msgstr "Wybierz Format - Grupuj - Wejdź do grupy." #. 4rTmw #: 00040502.xhp @@ -13748,7 +13748,7 @@ "par_id3149946\n" "help.text" msgid "Open context menu - choose Enter Group." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Wejdź do grupy." #. oDBK3 #: 00040502.xhp @@ -13757,7 +13757,7 @@ "par_id3152388\n" "help.text" msgid "Icon Enter Group" -msgstr "" +msgstr "Ikona wchodzenia do grupy" #. yXmKi #: 00040502.xhp @@ -13793,7 +13793,7 @@ "par_id3147294\n" "help.text" msgid "Choose Format - Rows - Height." -msgstr "" +msgstr "Wybierz Format - Wiersze - Wysokość." #. ZE93F #: 00040503.xhp @@ -13802,7 +13802,7 @@ "par_id3149551\n" "help.text" msgid "Open context menu of a row header in an open database table - choose Row Height." -msgstr "" +msgstr "Otwórz menu kontekstowe główki wiersza w otwartej tabeli bazy danych i wybierz Wysokość wiersza." #. pZBTt #: 00040503.xhp @@ -13811,7 +13811,7 @@ "par_id3153136\n" "help.text" msgid "Choose Format - Columns - Width." -msgstr "" +msgstr "Wybierz Format - Kolumny - Szerokość." #. zP8Aw #: 00040503.xhp @@ -13820,7 +13820,7 @@ "par_id3150756\n" "help.text" msgid "Open context menu of a column header in a database table - choose Column Width." -msgstr "" +msgstr "Otwórz menu kontekstowe główki kolumny w tabeli bazy danych i wybierz Szerokość kolumny." #. Bwd8k #: 00040503.xhp @@ -13829,7 +13829,7 @@ "par_id3148668\n" "help.text" msgid "Choose Format - Cells - Numbers tab." -msgstr "" +msgstr "Wybierz kartę Format - Komórki - Liczby." #. Dkn29 #: 00040503.xhp @@ -13838,7 +13838,7 @@ "par_id3152349\n" "help.text" msgid "Choose View - Styles (Command+T)(F11) - open context menu and choose Modify/New - Numbers tab." -msgstr "" +msgstr "Wybierz Widok - Style (Command+T)(F11), otwórz menu kontekstowe i wybierz kartę Modyfikuj/Nowy - Liczby." #. hadQp #: 00040503.xhp @@ -13847,7 +13847,7 @@ "par_id3161459\n" "help.text" msgid "Open context menu for a column header in an open database table - choose Column Format - Format tab." -msgstr "" +msgstr "Otwórz menu kontekstowe główki kolumny w otwartej tabeli bazy danych i wybierz kartę Format kolumny - Format." #. uckxj #: 00040503.xhp @@ -13856,7 +13856,7 @@ "par_id3150823\n" "help.text" msgid "Choose Table - Number Format (for tables)." -msgstr "" +msgstr "Wybierz Tabela - Format liczb (dla tabel)." #. zEP8P #: 00040503.xhp @@ -13865,7 +13865,7 @@ "par_id231578229435232\n" "help.text" msgid "Choose Insert - Field - More Fields - Variables tab and select Additional formats in the Format list (for variables)." -msgstr "" +msgstr "Wybierz kartę Wstaw - Pole - Więcej pól - Zmienne i wybierz Dodatkowe formaty z listy Format (dla zmiennych)." #. xXuAA #: 00040503.xhp @@ -13874,7 +13874,7 @@ "par_id3147531\n" "help.text" msgid "Choose Format - Axis - Y Axis - Numbers tab (chart documents)." -msgstr "" +msgstr "Wybierz kartę Format - Oś - Oś Y - Liczby (dokumenty z wykresami)." #. yMFSR #: 00040503.xhp @@ -13883,7 +13883,7 @@ "par_id3154923\n" "help.text" msgid "Choose Format - Title - Main Title - Alignment tab.Choose Format - Cells - Alignment tab." -msgstr "" +msgstr "Wybierz Format - Tytuł - Tytuł główny - Wyrównanie.Wybierz Format - Komórki - Wyrównanie ." #. LwvEm #: 00040503.xhp @@ -13892,7 +13892,7 @@ "par_id3149457\n" "help.text" msgid "Open context menu of a column header in a database table - choose Column Format - Alignment tab." -msgstr "" +msgstr "Otwórz menu kontekstowe główki kolumny w tabeli bazy danych i wybierz kartę Format kolumny - Wyrównanie. " #. 5HAwp #: 00040503.xhp @@ -13901,7 +13901,7 @@ "par_id3150400\n" "help.text" msgid "Open context menu of a row header in a database table - choose Table Format." -msgstr "" +msgstr "Otwórz menu kontekstowe główki wiersza w tabeli bazy danych i wybierz Format tabeli." #. 3Gp93 #: 00040503.xhp @@ -13910,7 +13910,7 @@ "par_id3149650\n" "help.text" msgid "Open context menu of a column header in a database table - choose Column Format." -msgstr "" +msgstr "Otwórz menu kontekstowe główki kolumny w tabeli bazy danych i wybierz Format kolumny." #. V6PjH #: 00040503.xhp @@ -13919,7 +13919,7 @@ "par_id3153799\n" "help.text" msgid "Context menu for a row header in an open database table - Delete Rows." -msgstr "" +msgstr "Menu kontekstowe główki wiersza w otwartej tabeli bazy danych – Usuń wiersze." #. jTmZD #: 00040503.xhp @@ -13928,7 +13928,7 @@ "par_id3150495\n" "help.text" msgid "Choose Shape - Flip ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Odbij ($[officename] Draw)." #. 78fz2 #: 00040503.xhp @@ -13937,7 +13937,7 @@ "par_id3155742\n" "help.text" msgid "Choose Format - Image - Properties - Image tab." -msgstr "" +msgstr "Wybierz kartę Format - Obraz - Właściwości - Obraz." #. LZuYQ #: 00040503.xhp @@ -13946,7 +13946,7 @@ "par_id3158407\n" "help.text" msgid "Open context menu - choose Flip (presentation documents)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Odbij (dokumenty prezentacji)." #. GBjD2 #: 00040503.xhp @@ -13955,7 +13955,7 @@ "par_id3150290\n" "help.text" msgid "Choose Shape - Flip - Vertically ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Obij - Pionowo ($[officename] Draw)." #. XuoY2 #: 00040503.xhp @@ -13964,7 +13964,7 @@ "par_id3153179\n" "help.text" msgid "Choose Format - Image - Properties - Image tab." -msgstr "" +msgstr "Wybierz kartę Format - Obraz - Właściwości - Obraz." #. Nzu6Y #: 00040503.xhp @@ -13973,7 +13973,7 @@ "par_id3157960\n" "help.text" msgid "Open context menu - choose Flip - Vertically (presentation documents)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Odbij - Pionowo (dokumenty prezentacji)." #. LcoHC #: 00040503.xhp @@ -13982,7 +13982,7 @@ "par_id3153369\n" "help.text" msgid "Choose Shape - Flip - Horizontally ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Obij - Poziomo ($[officename] Draw)." #. qfb9D #: 00040503.xhp @@ -13991,7 +13991,7 @@ "par_id3147348\n" "help.text" msgid "Choose Format - Image - Properties, and then click the Image tab." -msgstr "" +msgstr "Wybierz Format - Obraz - Właściwości, a następnie kliknij kartę Obraz." #. qfEx4 #: 00040503.xhp @@ -14000,7 +14000,7 @@ "par_id3156106\n" "help.text" msgid "Choose Format - Flip - Horizontally." -msgstr "" +msgstr "Wybierz Format - Odbij - Poziomo." #. dSXom #: 00040503.xhp @@ -14009,7 +14009,7 @@ "par_id3152578\n" "help.text" msgid "Right-click a selected object - choose Flip - Horizontally ($[officename] Impress)." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy zaznaczony obiekt i wybierz Odbij - Poziomo ($[officename] Impress)." #. yZ2Pt #: 00040503.xhp @@ -14018,7 +14018,7 @@ "par_id271601643965354\n" "help.text" msgid "Select three or more objects and" -msgstr "" +msgstr "Zaznacz trzy lub więcej obiektów i" #. Dvy8S #: 00040503.xhp @@ -14027,7 +14027,7 @@ "par_id3147318\n" "help.text" msgid "Choose Shape - Distribute Selection ($[officename] Draw)." -msgstr "" +msgstr "Wybierz Kształt - Rozłóż zaznaczenie ($[officename] Draw)." #. GfMJu #: 00040503.xhp @@ -14036,7 +14036,7 @@ "par_id3149064\n" "help.text" msgid "Open context menu - choose Distribute Selection ($[officename] Impress)." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Rozłóż zaznaczenie ($[officename] Impress)." #. q4uTc #: 01000000.xhp @@ -14360,7 +14360,7 @@ "tit\n" "help.text" msgid "Edit Menu" -msgstr "" +msgstr "Menu Edycja" #. RNm9w #: edit_menu.xhp @@ -14369,7 +14369,7 @@ "hd_id3147273\n" "help.text" msgid "Edit Menu" -msgstr "" +msgstr "Menu Edycja" #. 9zEzn #: edit_menu.xhp @@ -14378,7 +14378,7 @@ "par_id3085157\n" "help.text" msgid "Choose Edit - Undo." -msgstr "" +msgstr "Wybierz Edycja - Cofnij." #. AA56D #: edit_menu.xhp @@ -14387,7 +14387,7 @@ "par_id3145160\n" "help.text" msgid "CommandCtrl+Z" -msgstr "" +msgstr "CommandCtrl+Z" #. LW82F #: edit_menu.xhp @@ -14396,7 +14396,7 @@ "par_id3154094\n" "help.text" msgid "On the Standard bar or Table Data bar, click" -msgstr "" +msgstr "Na pasku Standardowy lub Dane tabeli kliknij" #. EZEUn #: edit_menu.xhp @@ -14405,7 +14405,7 @@ "par_id3155449\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. QzA62 #: edit_menu.xhp @@ -14414,7 +14414,7 @@ "par_id3148563\n" "help.text" msgid "Undo" -msgstr "" +msgstr "Cofnij" #. CRhMd #: edit_menu.xhp @@ -14423,7 +14423,7 @@ "par_id3145068\n" "help.text" msgid "Choose Edit - Redo." -msgstr "" +msgstr "Wybierz Edycja - Ponów." #. VgWZG #: edit_menu.xhp @@ -14432,7 +14432,7 @@ "par_id3153897\n" "help.text" msgid "On the Standard bar, click" -msgstr "" +msgstr "Na pasku Standardowy kliknij" #. GpeZx #: edit_menu.xhp @@ -14441,7 +14441,7 @@ "par_id3154938\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. F99gF #: edit_menu.xhp @@ -14450,7 +14450,7 @@ "par_id3151211\n" "help.text" msgid "Redo" -msgstr "" +msgstr "Ponów" #. VqzCC #: edit_menu.xhp @@ -14459,7 +14459,7 @@ "par_id3154365\n" "help.text" msgid "Choose Edit - Repeat." -msgstr "" +msgstr "Wybierz Edycja - Powtórz." #. DyHWB #: edit_menu.xhp @@ -14468,7 +14468,7 @@ "par_id3149765\n" "help.text" msgid "Choose Edit - Cut." -msgstr "" +msgstr "Wybierz Edycja - Wytnij." #. siZcT #: edit_menu.xhp @@ -14477,7 +14477,7 @@ "par_id3144762\n" "help.text" msgid "CommandCtrl+X" -msgstr "" +msgstr "CommandCtrl+X" #. YEYM4 #: edit_menu.xhp @@ -14486,7 +14486,7 @@ "par_id3148744\n" "help.text" msgid "On the Standard bar, click" -msgstr "" +msgstr "Na pasku Standardowy kliknij" #. zH2jz #: edit_menu.xhp @@ -14495,7 +14495,7 @@ "par_id3145173\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. b2BCg #: edit_menu.xhp @@ -14504,7 +14504,7 @@ "par_id3154153\n" "help.text" msgid "Cut" -msgstr "" +msgstr "Wytnij" #. 75bkj #: edit_menu.xhp @@ -14513,7 +14513,7 @@ "par_id3150742\n" "help.text" msgid "Choose Edit - Copy." -msgstr "" +msgstr "Wybierz Edycja - Kopiuj." #. dqu5U #: edit_menu.xhp @@ -14522,7 +14522,7 @@ "par_id3148923\n" "help.text" msgid "CommandCtrl+C" -msgstr "" +msgstr "CommandCtrl+C" #. ENXCh #: edit_menu.xhp @@ -14531,7 +14531,7 @@ "par_id3159254\n" "help.text" msgid "On the Standard bar, click" -msgstr "" +msgstr "Na pasku Standardowy kliknij" #. GNpF7 #: edit_menu.xhp @@ -14540,7 +14540,7 @@ "par_id3154985\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. Ezjwz #: edit_menu.xhp @@ -14549,7 +14549,7 @@ "par_id3150685\n" "help.text" msgid "Copy" -msgstr "" +msgstr "Kopiuj" #. zsvyg #: edit_menu.xhp @@ -14558,7 +14558,7 @@ "par_id3159153\n" "help.text" msgid "Choose Edit - Paste." -msgstr "" +msgstr "Wybierz Edycja - Wklej." #. 2JEAF #: edit_menu.xhp @@ -14567,7 +14567,7 @@ "par_id3155860\n" "help.text" msgid "CommandCtrl+V" -msgstr "" +msgstr "CommandCtrl+V" #. wDTHt #: edit_menu.xhp @@ -14576,7 +14576,7 @@ "par_id3159083\n" "help.text" msgid "On the Standard bar, click" -msgstr "" +msgstr "Na pasku Standardowy kliknij" #. 4ZWcQ #: edit_menu.xhp @@ -14585,7 +14585,7 @@ "par_id3156106\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. ZtHb2 #: edit_menu.xhp @@ -14594,7 +14594,7 @@ "par_id3154471\n" "help.text" msgid "Paste" -msgstr "" +msgstr "Wklej" #. 8U2sv #: edit_menu.xhp @@ -14603,7 +14603,7 @@ "par_id3152791\n" "help.text" msgid "Choose Edit - Paste Special - Paste Special." -msgstr "" +msgstr "Wybierz Edycja - Wklej specjalnie - Wklej specjalnie." #. CFGeE #: edit_menu.xhp @@ -14612,7 +14612,7 @@ "par_id431584795675377\n" "help.text" msgid "CommandCtrl + Shift + V." -msgstr "" +msgstr "CommandCtrl + Shift + V." #. iDRPM #: edit_menu.xhp @@ -14621,7 +14621,7 @@ "par_id731584805182269\n" "help.text" msgid "Choose Edit - Paste Special - Paste Unformatted Text." -msgstr "" +msgstr "Wybierz Edycja - Wklej specjalnie - Wklej niesformatowany tekst." #. BUPSo #: edit_menu.xhp @@ -14630,7 +14630,7 @@ "par_id431584825207430\n" "help.text" msgid "Right-click to open the context menu and choose Paste Special - Unformatted Text." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy, aby otworzyć menu kontekstowe, i wybierz Wklej specjalnie - Niesformatowany tekst." #. hUjhY #: edit_menu.xhp @@ -14639,7 +14639,7 @@ "par_id941584805189349\n" "help.text" msgid "CommandCtrl + Alt + Shift + V." -msgstr "" +msgstr "CommandCtrl + Alt + Shift + V." #. jEkdB #: edit_menu.xhp @@ -14648,7 +14648,7 @@ "par_id531584805456716\n" "help.text" msgid "Choose Edit - Paste Special - Paste Nested Table." -msgstr "" +msgstr "Wybierz Edycja - Wklej specjalnie - Wklej tabelę zagnieżdżoną." #. AWiCd #: edit_menu.xhp @@ -14657,7 +14657,7 @@ "par_id701584824350359\n" "help.text" msgid "Right-click on the target table cell to open the context menu and choose Paste Special - Nested Table." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy docelową komórkę tabeli, aby otworzyć menu kontekstowe, i wybierz Wklej specjalnie - Tabela zagnieżdżona." #. fLFXd #: edit_menu.xhp @@ -14666,7 +14666,7 @@ "par_id961584805473396\n" "help.text" msgid "Choose Edit - Paste Special - Paste as Rows above." -msgstr "" +msgstr "Wybierz Edycja - Wklej specjalnie - Wklej jako wiersze powyżej." #. 7CnTy #: edit_menu.xhp @@ -14675,7 +14675,7 @@ "par_id961584822968492\n" "help.text" msgid "Right-click on the target table cell to open the context menu and choose Paste Special - Rows Above." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy docelową komórkę tabeli, aby otworzyć menu kontekstowe i wybierz Wklej specjalnie - Wiersze powyżej." #. 2xgA5 #: edit_menu.xhp @@ -14684,7 +14684,7 @@ "par_id711584805479741\n" "help.text" msgid "Choose Edit - Paste Special - Paste as Columns Before." -msgstr "" +msgstr "Wybierz Edycja - Wklej specjalnie - Wklej jako kolumny przed." #. CJBCG #: edit_menu.xhp @@ -14693,7 +14693,7 @@ "par_id61584824301756\n" "help.text" msgid "Right-click on the target table cell to open the context menu and choose Paste Special - Columns Before." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy docelową komórkę tabeli, aby otworzyć menu kontekstowe i wybierz Wklej specjalnie - Kolumny przed." #. eCfyi #: edit_menu.xhp @@ -14702,7 +14702,7 @@ "par_id3148555\n" "help.text" msgid "Choose Edit - Select All." -msgstr "" +msgstr "Wybierz Edycja - Zaznacz wszystko." #. mia2c #: edit_menu.xhp @@ -14711,7 +14711,7 @@ "par_id3152417\n" "help.text" msgid "CommandCtrl+A" -msgstr "" +msgstr "CommandCtrl+A" #. Fmcad #: edit_menu.xhp @@ -14720,7 +14720,7 @@ "par_id3145748\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. 8xMiC #: edit_menu.xhp @@ -14729,7 +14729,7 @@ "par_id3153139\n" "help.text" msgid "Select All" -msgstr "" +msgstr "Zaznacz wszystko" #. Tb8Mu #: edit_menu.xhp @@ -14738,7 +14738,7 @@ "par_id3145251\n" "help.text" msgid "Choose Edit - Track Changes." -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany." #. FtngJ #: edit_menu.xhp @@ -14747,7 +14747,7 @@ "par_id3153336\n" "help.text" msgid "Choose Edit - Track Changes - Record." -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany - Rejestruj." #. eaiZ6 #: edit_menu.xhp @@ -14756,7 +14756,7 @@ "par_id3150594\n" "help.text" msgid "Choose Edit - Track Changes - Show." -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany - Pokaż." #. CXjc8 #: edit_menu.xhp @@ -14765,7 +14765,7 @@ "par_id3153845\n" "help.text" msgid "Choose Edit - Track Changes - Manage." -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany - Zarządzaj." #. RLwDH #: edit_menu.xhp @@ -14774,7 +14774,7 @@ "par_id3148587\n" "help.text" msgid "Choose Edit - Track Changes - Manage - List tab." -msgstr "" +msgstr "Wybierz kartę Edycja - Śledź zmiany - Zarządzaj - Lista." #. KKGxQ #: edit_menu.xhp @@ -14783,7 +14783,7 @@ "par_id3150396\n" "help.text" msgid "Choose Tools - AutoCorrect - Apply and Edit Changes. The AutoCorrect dialog appears.
Click the Edit Changes button and navigate to the List tab." -msgstr "" +msgstr "Wybierz Narzędzia - Autokorekta - Zastosuj i edytuj zmiany. Pojawi się okno dialogowe Autokorekta.
Kliknij przycisk Edytuj zmiany i przejdź do karty Lista." #. DRyHd #: edit_menu.xhp @@ -14792,7 +14792,7 @@ "par_id3153878\n" "help.text" msgid "Choose Edit - Track Changes - Manage - Filter tab." -msgstr "" +msgstr "Wybierz kartę Edycja - Śledź zmiany - Zarządzaj - Filtr." #. XycHj #: edit_menu.xhp @@ -14801,7 +14801,7 @@ "par_id3151281\n" "help.text" msgid "Choose Edit - Track Changes - Merge Document." -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany - Scal dokumenty." #. DLA3A #: edit_menu.xhp @@ -14810,7 +14810,7 @@ "par_id3153224\n" "help.text" msgid "Choose Edit - Track Changes - Compare Document." -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany - Porównaj dokumenty." #. 6BEEG #: edit_menu.xhp @@ -14819,7 +14819,7 @@ "par_id561647263926698\n" "help.text" msgid "Choose Edit - Track Changes - Protect" -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany - Chroń" #. DrLSp #: edit_menu.xhp @@ -14828,7 +14828,7 @@ "par_id3148773\n" "help.text" msgid "Choose Edit - Track Changes - Comment." -msgstr "" +msgstr "Wybierz Edycja - Śledź zmiany - Komentarz." #. BuLKS #: edit_menu.xhp @@ -14837,7 +14837,7 @@ "par_id3149488\n" "help.text" msgid "Choose Edit - Track Changes - Manage - List tab.
Click an entry in the list and open the context menu.
Choose Edit Comment." -msgstr "" +msgstr "Wybierz kartę Edycja - Śledź zmiany - Zarządzaj - Lista.
Kliknij wpis na liście i otwórz menu kontekstowe.
Wybierz Edycja komentarza." #. oGZeX #: edit_menu.xhp @@ -14846,7 +14846,7 @@ "par_id31562971\n" "help.text" msgid "Choose Edit - Find." -msgstr "" +msgstr "Wybierz Edycja - Znajdź." #. cPD4u #: edit_menu.xhp @@ -14855,7 +14855,7 @@ "par_id31545031\n" "help.text" msgid "CommandCtrl+F" -msgstr "" +msgstr "CommandCtrl+F" #. f4EM6 #: edit_menu.xhp @@ -14864,7 +14864,7 @@ "par_id3156297\n" "help.text" msgid "Choose Edit - Find & Replace." -msgstr "" +msgstr "Wybierz Edycja - Znajdź i zamień." #. 4pWKe #: edit_menu.xhp @@ -14873,7 +14873,7 @@ "par_id3154503\n" "help.text" msgid "CommandCtrl+H" -msgstr "" +msgstr "CommandCtrl+H" #. UPprs #: edit_menu.xhp @@ -14882,7 +14882,7 @@ "par_id3155083\n" "help.text" msgid "On the Standard bar, click" -msgstr "" +msgstr "Na pasku Standardowy kliknij" #. BdmCn #: edit_menu.xhp @@ -14891,7 +14891,7 @@ "par_id3150020\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. jRcHP #: edit_menu.xhp @@ -14900,7 +14900,7 @@ "par_id3144748\n" "help.text" msgid "Find & Replace" -msgstr "" +msgstr "Znajdź i zamień" #. EtPCq #: edit_menu.xhp @@ -14909,7 +14909,7 @@ "par_id3156357\n" "help.text" msgid "Choose Edit - Find & Replace - Attributes." -msgstr "" +msgstr "Wybierz Edycja - Znajdź i zamień - Atrybuty." #. DCnDy #: edit_menu.xhp @@ -14918,7 +14918,7 @@ "par_id3153840\n" "help.text" msgid "Choose Edit - Find & Replace - Format button." -msgstr "" +msgstr "Wybierz przycisk Edycja - Znajdź i zamień - Format." #. 6929F #: edit_menu.xhp @@ -14927,7 +14927,7 @@ "par_id781602175775847\n" "help.text" msgid "Search Icon or CommandCtrl+F" -msgstr "" +msgstr "Ikona wyszukiwania lub CommandCtrl+F" #. CNnsD #: edit_menu.xhp @@ -14936,7 +14936,7 @@ "par_id3153709\n" "help.text" msgid "On the Table Data bar, click Find icon, then Similarity search check box, then click the Similarities button (database table view)." -msgstr "" +msgstr "Na pasku Tabela danych kliknij ikonę Znajdź, następnie pole wyboru Szukaj podobnych, a następnie kliknij przycisk Podobieństwa (widok tabeli bazy danych)." #. PGzfH #: edit_menu.xhp @@ -14945,7 +14945,7 @@ "par_id551602176159965\n" "help.text" msgid "Search Icon" -msgstr "" +msgstr "Ikona wyszukiwania" #. 8FD2j #: edit_menu.xhp @@ -14954,7 +14954,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 "" +msgstr "Na pasku Nawigacja formularza kliknij ikonę Wyszukiwanie rekordów, następnie pole wyboru Szukaj podobnych, a następnie kliknij przycisk Podobieństwa (widok formularza bazy danych)." #. 4NRpt #: edit_menu.xhp @@ -14963,7 +14963,7 @@ "par_id3146971\n" "help.text" msgid "Choose Edit - Find & Replace - Similarity search check box, then click the Similarities button." -msgstr "" +msgstr "Wybierz pole wyboru Edycja - Znajdź i zamień - Szukaj podobnych, a następnie kliknij przycisk Podobieństwa." #. mMAVy #: edit_menu.xhp @@ -14972,7 +14972,7 @@ "par_id3152960\n" "help.text" msgid "Choose View - Navigator." -msgstr "" +msgstr "Wybierz Widok - Nawigator." #. mXj7f #: edit_menu.xhp @@ -14981,7 +14981,7 @@ "par_id3163824\n" "help.text" msgid "On the Standard bar, click" -msgstr "" +msgstr "Na pasku Standardowy kliknij" #. QfrGQ #: edit_menu.xhp @@ -14990,7 +14990,7 @@ "par_id3159183\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. DFjLG #: edit_menu.xhp @@ -14999,7 +14999,7 @@ "par_id3147359\n" "help.text" msgid "Navigator On/Off" -msgstr "" +msgstr "Włącz/wyłącz Nawigator" #. XgQEb #: edit_menu.xhp @@ -15008,7 +15008,7 @@ "par_id3147338\n" "help.text" msgid "Choose Tools - Bibliography Database." -msgstr "" +msgstr "Wybierz Narzędzia - Bibliograficzna baza danych." #. moWAi #: edit_menu.xhp @@ -15035,7 +15035,7 @@ "par_id3148927\n" "help.text" msgid "Select a frame, then choose Edit - OLE Object - Properties." -msgstr "" +msgstr "Zaznacz ramkę, a następnie wybierz Edycja - Obiekt OLE - Właściwości." #. cDcix #: edit_menu.xhp @@ -15044,7 +15044,7 @@ "par_id3156315\n" "help.text" msgid "Open context menu of selected frame, choose Properties." -msgstr "" +msgstr "Otwórz menu kontekstowe zaznaczonej ramki, wybierz Właściwości." #. 5TkgL #: edit_menu.xhp @@ -15053,7 +15053,7 @@ "par_id3149259\n" "help.text" msgid "Choose Edit - OLE Object." -msgstr "" +msgstr "Wybierz Edycja - Obiekt OLE." #. ApejL #: edit_menu.xhp @@ -15062,7 +15062,7 @@ "par_id3154966\n" "help.text" msgid "Choose Edit - OLE Object - Edit, also in the context menu of selected object." -msgstr "" +msgstr "Wybierz Edycja - Obiekt OLE - Edycja, również z menu kontekstowego zaznaczonego obiektu." #. 9Gp6Z #: edit_menu.xhp @@ -15071,7 +15071,7 @@ "par_id3149565\n" "help.text" msgid "Choose Edit - OLE Object - Open." -msgstr "" +msgstr "Wybierz Edycja - Obiekt OLE - Otwórz." #. kQifg #: edit_menu.xhp @@ -15080,7 +15080,7 @@ "par_id951603556032047\n" "help.text" msgid "Choose Edit - Reference." -msgstr "" +msgstr "Wybierz Edycja - Odwołanie." #. PNGYK #: icon_alt.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:10+0000\n" +"PO-Revision-Date: 2023-05-03 11:52+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -2174,7 +2174,7 @@ "par_id3153096\n" "help.text" msgid "To apply the new styles from the template to the document, click Update Styles." -msgstr "" +msgstr "Aby zastosować nowe style z szablonu do dokumentu, kliknij Aktualizuj style." #. BDWYx #: 01020000.xhp @@ -2183,7 +2183,7 @@ "par_id3147581\n" "help.text" msgid "To retain the styles that are currently used in the document, click Keep Old Styles." -msgstr "" +msgstr "Aby zachować style aktualnie używane w dokumencie, kliknij Zachowaj poprzednie style." #. SLice #: 01020000.xhp @@ -2201,7 +2201,7 @@ "par_id3154988\n" "help.text" msgid "If a document was created using a template that cannot be found, a dialog is shown that asks you how to proceed next time the document is opened." -msgstr "" +msgstr "Jeśli dokument został utworzony przy użyciu szablonu, którego nie można znaleźć, zostanie wyświetlone okno dialogowe z pytaniem, jak postępować przy następnym otwarciu dokumentu." #. HzeB3 #: 01020000.xhp @@ -2210,7 +2210,7 @@ "par_id3151351\n" "help.text" msgid "To break the link between the document and the missing template, click No, otherwise %PRODUCTNAME will look for the template the next time you open the document." -msgstr "" +msgstr "Aby przerwać powiązanie między dokumentem a brakującym szablonem, kliknij Nie, w przeciwnym razie %PRODUCTNAME wyszuka szablon przy następnym otwarciu dokumentu." #. Sm3CJ #: 01020000.xhp @@ -2219,7 +2219,7 @@ "par_id6930143\n" "help.text" msgid "When you use File - Save As and select a template filter to save a template in a directory that is not specified in the Templates path, then the documents based on that template will not be checked." -msgstr "" +msgstr "Jeśli użyjesz Plik - Zapisz jako i wybierzesz filtr szablonu, aby zapisać szablon w katalogu nie wymienionym na liście ścieżek dla Szablonów, wtedy dokumenty oparte na tym szablonie nie będą sprawdzone." #. 6fFQH #: 01020000.xhp @@ -2246,7 +2246,7 @@ "tit\n" "help.text" msgid "Open Remote..." -msgstr "" +msgstr "Otwórz zdalny..." #. 5CFDT #: 01020001.xhp @@ -2255,7 +2255,7 @@ "bm_id1001513636856122\n" "help.text" msgid "remote file; openopen; remote file" -msgstr "" +msgstr "plik zdalny; otwórzotwórz; plik zdalny" #. APLpD #: 01020001.xhp @@ -2273,7 +2273,7 @@ "par_id771513629025613\n" "help.text" msgid "Opens a document located in a remote file service." -msgstr "" +msgstr "Otwiera dokument znajdujący się w zdalnej usłudze plików." #. HDqBq #: 01020001.xhp @@ -2282,7 +2282,7 @@ "par_id611513629210220\n" "help.text" msgid "Choose File - Open Remote." -msgstr "" +msgstr "Wybierz Plik - Otwórz zdalny." #. GqJTN #: 01020001.xhp @@ -2291,7 +2291,7 @@ "par_id151513629855154\n" "help.text" msgid "Click the Remote Files button in the Start Center." -msgstr "" +msgstr "Kliknij przycisk Pliki zdalne w Centrum startowym." #. HP9o5 #: 01020001.xhp @@ -2300,7 +2300,7 @@ "par_id431513629862558\n" "help.text" msgid "Long-click the Open icon and select Open Remote File." -msgstr "" +msgstr "Kliknij i przytrzymaj ikonę Otwórz i wybierz Otwórz plik zdalny." #. 8aZPe #: 01020001.xhp @@ -2309,7 +2309,7 @@ "par_id531513630220632\n" "help.text" msgid "A remote file server is a web service that stores documents with or without checkin, checkout, version controls and backups." -msgstr "" +msgstr "Zdalny serwer plików to usługa sieciowa, która przechowuje dokumenty z lub bez sprawdzania, pobierania, kontroli wersji i kopii zapasowych." #. HCeYb #: 01020001.xhp @@ -2462,7 +2462,7 @@ "par_id3155892\n" "help.text" msgid "Ensure that the file extension corresponds to the file type of the document. For example, a Microsoft Word document must have a *.doc or *.docx extension for $[officename] to use the appropriate filter." -msgstr "" +msgstr "Upewnij się, że rozszerzenie pliku odpowiada typowi pliku dokumentu. Na przykład dokument programu Microsoft Word musi mieć rozszerzenie *.doc lub *.docx, aby $[officename] mógł użyć odpowiedniego filtra." #. e5NCe #: 01020103.xhp @@ -2516,7 +2516,7 @@ "par_id3149095\n" "help.text" msgid "The Close command closes all open windows of the current document." -msgstr "" +msgstr "Polecenie Zamknij zamyka wszystkie otwarte okna bieżącego dokumentu." #. jSMdE #: 01050000.xhp @@ -2534,7 +2534,7 @@ "par_id3159201\n" "help.text" msgid "When you close the last open document window, you see the Start Center." -msgstr "" +msgstr "Gdy zamkniesz ostatnio otwarte okno dokumentu, zobaczysz Centrum startowe." #. 638RE #: 01050000.xhp @@ -2588,7 +2588,7 @@ "par_id3152551\n" "help.text" msgid "When you edit an AutoText entry, this command changes to Save AutoText." -msgstr "" +msgstr "Kiedy edytujesz wpis Autotekst, to polecenie zmienia się na Zapisz autotekst." #. 7diuV #: 01060001.xhp @@ -2597,7 +2597,7 @@ "tit\n" "help.text" msgid "Save Remote..." -msgstr "" +msgstr "Zapisz zdalny..." #. uZ8c4 #: 01060001.xhp @@ -2606,7 +2606,7 @@ "bm_id381513636896997\n" "help.text" msgid "remote file; savesave; remote file" -msgstr "" +msgstr "plik zdalny; zapiszzapisz; plik zdalny" #. qfF6G #: 01060001.xhp @@ -2624,7 +2624,7 @@ "par_id771513629025613\n" "help.text" msgid "Saves a document located in a remote file service." -msgstr "" +msgstr "Zapisuje dokument znajdujący się w zdalnym serwisie plików." #. 8GEre #: 01060001.xhp @@ -2633,7 +2633,7 @@ "par_id611513629210220\n" "help.text" msgid "Choose File - Save Remote... ." -msgstr "" +msgstr "Wybierz Plik - Zapisz zdalny...." #. 2FysC #: 01060001.xhp @@ -2642,7 +2642,7 @@ "par_id431513629862558\n" "help.text" msgid "Long-click on the Save icon and select Save Remote File... ." -msgstr "" +msgstr "Kliknij i przytrzymaj ikonę Zapisz i wybierz Zapisz plik zdalny... ." #. jpc76 #: 01060001.xhp @@ -2651,7 +2651,7 @@ "par_id531513630220632\n" "help.text" msgid "A remote file server is a web service that stores documents with or without checkin, checkout, version controls and backups." -msgstr "" +msgstr "Zdalny serwer plików to usługa internetowa, która przechowuje dokumenty z ewidencjonowaniem, pobieraniem, kontrolą wersji i kopiami zapasowymi lub bez." #. xuXaK #: 01060001.xhp @@ -2669,7 +2669,7 @@ "tit\n" "help.text" msgid "Save a Copy" -msgstr "" +msgstr "Zapisz kopie" #. akvrn #: 01060002.xhp @@ -2678,7 +2678,7 @@ "bm_id241513636774794\n" "help.text" msgid "save; save a copysave a copy" -msgstr "" +msgstr "zapisz; zapisz kopięzapisz kopię" #. AVSHN #: 01060002.xhp @@ -2696,7 +2696,7 @@ "par_id1001513471674465\n" "help.text" msgid "Saves a copy of the actual document with another name or location." -msgstr "" +msgstr "Zapisuje kopię rzeczywistego dokumentu pod inną nazwą lub lokalizacją." #. QnPgR #: 01060002.xhp @@ -2705,7 +2705,7 @@ "par_id701513472080716\n" "help.text" msgid "Choose File - Save a Copy." -msgstr "" +msgstr "Wybierz Plik - Zapisz kopię." #. Eq5QD #: 01060002.xhp @@ -2714,7 +2714,7 @@ "par_id881513473450156\n" "help.text" msgid "Creates another file with same contents of the current file. The current file is kept open for editing." -msgstr "" +msgstr "Tworzy inny plik z tą samą zawartością bieżącego pliku. Bieżący plik pozostaje otwarty do edycji." #. WiBP9 #: 01060002.xhp @@ -2777,7 +2777,7 @@ "par_id3146856\n" "help.text" msgid "Saves the current document in a different location, or with a different file name or file type." -msgstr "" +msgstr "Zapisuje bieżący dokument w innym miejscu lub z inną nazwą lub typem pliku." #. JxRcN #: 01070000.xhp @@ -2858,7 +2858,7 @@ "par_id3154068\n" "help.text" msgid "Saves the file." -msgstr "" +msgstr "Zapisuje plik." #. AGyEC #: 01070000.xhp @@ -2894,7 +2894,7 @@ "hd_id41543592332834\n" "help.text" msgid "Encrypt with GPG key" -msgstr "" +msgstr "Szyfruj kluczem GPG" #. 7yVow #: 01070000.xhp @@ -2903,7 +2903,7 @@ "par_id71543592343227\n" "help.text" msgid "Use OpenPGP public keys to encrypt documents." -msgstr "" +msgstr "Użyj kluczy publicznych OpenPGP do szyfrowania dokumentów." #. SqPSp #: 01070000.xhp @@ -3011,7 +3011,7 @@ "par_id471561565422027\n" "help.text" msgid "The Export command opens the system file picker, where you can enter the name and format of the exported file." -msgstr "" +msgstr "Polecenie Eksportuj otwiera selektor plików systemowych, w którym można wprowadzić nazwę i format eksportowanego pliku." #. BM7XX #: 01070001.xhp @@ -3056,7 +3056,7 @@ "tit\n" "help.text" msgid "Export As" -msgstr "" +msgstr "Eksportuj jako" #. nqF2H #: 01070002.xhp @@ -3065,7 +3065,7 @@ "bm_id781513636674523\n" "help.text" msgid "Export as; PDFExport as; EPUB" -msgstr "" +msgstr "Eksportuj jako; PDFEksportuj jako; EPUB" #. C5uBC #: 01070002.xhp @@ -3083,7 +3083,7 @@ "par_id791513634008095\n" "help.text" msgid "Export the document in PDF or EPUB formats." -msgstr "" +msgstr "Eksportuj dokument w formacie PDF lub EPUB." #. MhcED #: 01070002.xhp @@ -3092,7 +3092,7 @@ "par_id971513634212601\n" "help.text" msgid "Choose File - Export As." -msgstr "" +msgstr "Wybierz Plik - Eksportuj jako." #. 5EMoa #: 01070002.xhp @@ -3101,7 +3101,7 @@ "hd_id71513635341099\n" "help.text" msgid "Export Directly as PDF" -msgstr "" +msgstr "Eksportuj bezpośrednio jako PDF" #. AWMaF #: 01070002.xhp @@ -3110,7 +3110,7 @@ "par_id961513635511473\n" "help.text" msgid "Export the entire document using your default PDF settings." -msgstr "" +msgstr "Wyeksportuj cały dokument przy użyciu domyślnych ustawień PDF." #. oxL5i #: 01070002.xhp @@ -3119,7 +3119,7 @@ "hd_id851513635358546\n" "help.text" msgid "Export Directly as EPUB" -msgstr "" +msgstr "Eksportuj bezpośrednio jako EPUB" #. 8TMtY #: 01070002.xhp @@ -3128,7 +3128,7 @@ "par_id811513635541682\n" "help.text" msgid "Export the entire document using your default EPUB settings." -msgstr "" +msgstr "Wyeksportuj cały dokument przy użyciu domyślnych ustawień EPUB." #. jFEDD #: 01100000.xhp @@ -3137,7 +3137,7 @@ "tit\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Właściwości" #. CNQGc #: 01100000.xhp @@ -3182,7 +3182,7 @@ "tit\n" "help.text" msgid "Description (File Properties)" -msgstr "" +msgstr "Opis (właściwości pliku)" #. LaoBx #: 01100100.xhp @@ -3281,7 +3281,7 @@ "par_id581602083308804\n" "help.text" msgid "Title, Subject, and Keywords are exported to PDF files as PDF Document Properties. Entered values are exported and will appear in the corresponding fields in the PDF Document Properties Description." -msgstr "" +msgstr "Tytuł, Temat i Słowa kluczowe są eksportowane do plików PDF jako Właściwości dokumentu PDF. Wprowadzone wartości zostaną wyeksportowane i pojawią się w odpowiednich polach w opisie właściwości dokumentu PDF." #. 63szi #: 01100200.xhp @@ -3290,7 +3290,7 @@ "tit\n" "help.text" msgid "General (File properties)" -msgstr "" +msgstr "Ogólne (właściwości pliku)" #. 2UBSe #: 01100200.xhp @@ -3344,7 +3344,7 @@ "hd_id3156136\n" "help.text" msgid "Type" -msgstr "" +msgstr "Typ" #. dfTZu #: 01100200.xhp @@ -3362,7 +3362,7 @@ "hd_id3145314\n" "help.text" msgid "Location" -msgstr "" +msgstr "Lokalizacja" #. sqRnK #: 01100200.xhp @@ -3398,7 +3398,7 @@ "hd_id3149178\n" "help.text" msgid "Created" -msgstr "" +msgstr "Utworzono" #. AYhBx #: 01100200.xhp @@ -3416,7 +3416,7 @@ "hd_id3149182\n" "help.text" msgid "Modified" -msgstr "" +msgstr "Zmodyfikowano" #. g5sGH #: 01100200.xhp @@ -3434,7 +3434,7 @@ "hd_id3149576\n" "help.text" msgid "Template" -msgstr "" +msgstr "Szablon" #. dKF56 #: 01100200.xhp @@ -3452,7 +3452,7 @@ "par_idN106C5\n" "help.text" msgid "Digitally signed" -msgstr "" +msgstr "Podpisano cyfrowo" #. kLqNh #: 01100200.xhp @@ -3470,7 +3470,7 @@ "par_idN106CC\n" "help.text" msgid "Digital Signatures" -msgstr "" +msgstr "Podpisy cyfrowe" #. EdEtn #: 01100200.xhp @@ -3479,7 +3479,7 @@ "par_idN106D0\n" "help.text" msgid "Opens the Digital Signatures dialog where you can manage digital signatures for the current document." -msgstr "" +msgstr "Otwiera okno Podpisy cyfrowe, w którym możesz zarządzać podpisami cyfrowymi bieżącego dokumentu." #. snQSF #: 01100200.xhp @@ -3488,7 +3488,7 @@ "hd_id3156346\n" "help.text" msgid "Last printed" -msgstr "" +msgstr "Ostatnio wydrukowano" #. BunTF #: 01100200.xhp @@ -3506,7 +3506,7 @@ "par_id211604484407570\n" "help.text" msgid "After printing, a document must be saved to preserve its Last printed data. No warning message is given about this, if an unsaved document is closed." -msgstr "" +msgstr "Po wydrukowaniu dokument musi zostać zapisany, aby zachować jego dane Ostatnio wydrukowano. W przypadku zamknięcia niezapisanego dokumentu nie jest wyświetlany żaden komunikat ostrzegawczy." #. mD6yU #: 01100200.xhp @@ -3533,7 +3533,7 @@ "hd_id3153252\n" "help.text" msgid "Revision number" -msgstr "" +msgstr "Numer wersji" #. FPbiF #: 01100200.xhp @@ -3587,7 +3587,7 @@ "hd_id101602069139228\n" "help.text" msgid "Save preview image with this document" -msgstr "" +msgstr "Zapisz podgląd obrazu z dokumentem" #. YDHAD #: 01100200.xhp @@ -3605,7 +3605,7 @@ "par_id231606265075565\n" "help.text" msgid "To disable generating thumbnails in general, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced. Click the Open Expert Configuration button, and search for GenerateThumbnail. If this property has the value true, then double-click on it to set its value to false." -msgstr "" +msgstr "Aby ogólnie wyłączyć generowanie miniatur, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME - Zaawansowane. Kliknij przycisk Otwórz konfigurację eksperta i wyszukaj GenerateThumbnail. Jeśli ta właściwość ma wartość true, kliknij ją dwukrotnie, aby ustawić jej wartość na false." #. ibdbD #: 01100300.xhp @@ -3704,7 +3704,7 @@ "par_id3156045\n" "help.text" msgid "Displays statistics for the current file." -msgstr "" +msgstr "Wyświetla statystyki bieżącego pliku." #. 3TuM9 #: 01100400.xhp @@ -3758,7 +3758,7 @@ "hd_id3153311\n" "help.text" msgid "Cells:" -msgstr "" +msgstr "Komórki:" #. sLNFC #: 01100400.xhp @@ -3767,7 +3767,7 @@ "par_id3156114\n" "help.text" msgid "Number of cells with content in the file." -msgstr "" +msgstr "Liczba komórek z zawartością w pliku." #. sxqAk #: 01100400.xhp @@ -3776,7 +3776,7 @@ "hd_id641526904710590\n" "help.text" msgid "Formula groups:" -msgstr "" +msgstr "Grupy formuł:" #. QDcds #: 01100400.xhp @@ -3785,7 +3785,7 @@ "par_id541526903668055\n" "help.text" msgid "Number of contiguous ranges in a column with same formula." -msgstr "" +msgstr "Liczba ciągłych zakresów w kolumnie z tą samą formułą." #. LU85G #: 01100400.xhp @@ -3794,7 +3794,7 @@ "hd_id3147210\n" "help.text" msgid "Images:" -msgstr "" +msgstr "Obrazy:" #. a4k3j #: 01100400.xhp @@ -3812,7 +3812,7 @@ "hd_id3147618\n" "help.text" msgid "OLE Objects:" -msgstr "" +msgstr "Obiekty OLE:" #. BuF3C #: 01100400.xhp @@ -3830,7 +3830,7 @@ "hd_id3153665\n" "help.text" msgid "Paragraphs:" -msgstr "" +msgstr "Akapity:" #. sDTWH #: 01100400.xhp @@ -3839,7 +3839,7 @@ "par_id3156156\n" "help.text" msgid "Number of paragraphs, including blank paragraphs, in the file." -msgstr "" +msgstr "Liczba akapitów, w tym pustych akapitów, w pliku." #. cJoGM #: 01100400.xhp @@ -3848,7 +3848,7 @@ "hd_id3155261\n" "help.text" msgid "Words:" -msgstr "" +msgstr "Słowa:" #. NWZHb #: 01100400.xhp @@ -3857,7 +3857,7 @@ "par_id3147402\n" "help.text" msgid "Number of words, including words consisting of a single character, in the file." -msgstr "" +msgstr "Liczba słów, w tym słów składających się z jednego znaku, w pliku." #. F9a22 #: 01100400.xhp @@ -3866,7 +3866,7 @@ "hd_id3150466\n" "help.text" msgid "Characters:" -msgstr "" +msgstr "Znaki:" #. J57aD #: 01100400.xhp @@ -3875,7 +3875,7 @@ "par_id3149294\n" "help.text" msgid "Number of characters, including spaces, in the file. Non-printable characters are not included." -msgstr "" +msgstr "Liczba znaków, w tym spacji, w pliku. Znaki niedrukowalne nie są uwzględniane." #. EvT7H #: 01100400.xhp @@ -3884,7 +3884,7 @@ "hd_id541589188608624\n" "help.text" msgid "Characters excluding spaces:" -msgstr "" +msgstr "Znaki bez spacji:" #. C6y8S #: 01100400.xhp @@ -3893,7 +3893,7 @@ "par_id341589188750182\n" "help.text" msgid "Number of characters, excluding spaces, in the file. Non-printable characters are not included." -msgstr "" +msgstr "Liczba znaków, bez spacji, w pliku. Znaki niedrukowalne nie są uwzględniane." #. FeKAd #: 01100400.xhp @@ -3902,7 +3902,7 @@ "hd_id3148947\n" "help.text" msgid "Lines:" -msgstr "" +msgstr "Wiersze:" #. cronY #: 01100400.xhp @@ -3911,7 +3911,7 @@ "par_id3149650\n" "help.text" msgid "Number of lines in the file." -msgstr "" +msgstr "Liczba wierszy w pliku." #. dbQ2X #: 01100400.xhp @@ -3929,7 +3929,7 @@ "par_id3148981\n" "help.text" msgid "Updates the statistics." -msgstr "" +msgstr "Aktualizuje statystyki." #. HpTwh #: 01100600.xhp @@ -4010,7 +4010,7 @@ "par_idN106B8\n" "help.text" msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record." -msgstr "" +msgstr "Wybierz, aby włączyć rejestrowanie zmian. Działa to tak samo, jak Edycja - Śledź zmiany - Rejestruj." #. RQsFf #: 01100600.xhp @@ -4073,7 +4073,7 @@ "par_01110001\n" "help.text" msgid "Select File - Templates." -msgstr "" +msgstr "Wybierz Plik - Szablony." #. xfFYL #: 01110101.xhp @@ -4109,7 +4109,7 @@ "par_id3155377\n" "help.text" msgid "Choose Tools - Address Book Source." -msgstr "" +msgstr "Wybierz Narzędzia - Źródło książki adresowej." #. 46kw3 #: 01110101.xhp @@ -4172,7 +4172,7 @@ "hd_id3145119\n" "help.text" msgid "Assign" -msgstr "" +msgstr "Przypisz" #. 7XELF #: 01110101.xhp @@ -4181,7 +4181,7 @@ "par_id3150771\n" "help.text" msgid "Add a new data source to the Address Book Source list." -msgstr "" +msgstr "Dodaj nowe źródło danych do listy Źródło książki adresowej." #. HLCKK #: 01110101.xhp @@ -4226,7 +4226,7 @@ "tit\n" "help.text" msgid "Save as Template" -msgstr "" +msgstr "Zapisz jako szablon" #. ZJiXN #: 01110300.xhp @@ -4244,7 +4244,7 @@ "par_id3157898\n" "help.text" msgid "Saves the current document as a template." -msgstr "" +msgstr "Zapisuje bieżący dokument jako szablon." #. h5Wxt #: 01110300.xhp @@ -4253,7 +4253,7 @@ "par_id01110301\n" "help.text" msgid "Choose File - Templates - Save as Template." -msgstr "" +msgstr "Wybierz Plik - Szablony - Zapisz jako szablon." #. KDRRj #: 01110300.xhp @@ -4262,7 +4262,7 @@ "hd_id3147226\n" "help.text" msgid "Enter Template Name" -msgstr "" +msgstr "Wpisz nazwę szablonu" #. 39pSZ #: 01110300.xhp @@ -4271,7 +4271,7 @@ "par_id3147043\n" "help.text" msgid "Enter a name for the template." -msgstr "" +msgstr "Wpisz nazwę szablonu." #. kS78Z #: 01110300.xhp @@ -4280,7 +4280,7 @@ "hd_id3147571\n" "help.text" msgid "Select Template Category" -msgstr "" +msgstr "Wybierz kategorię szablonu" #. pZzDq #: 01110300.xhp @@ -4289,7 +4289,7 @@ "par_id3150774\n" "help.text" msgid "Select a category in which to save the new template." -msgstr "" +msgstr "Wybierz kategorię, w której chcesz zapisać nowy szablon." #. 8GFXK #: 01110300.xhp @@ -4298,7 +4298,7 @@ "hd_id3143268\n" "help.text" msgid "Set as default template" -msgstr "" +msgstr "Ustaw jako szablon domyślny" #. LiABE #: 01110300.xhp @@ -4307,7 +4307,7 @@ "par_id3149398\n" "help.text" msgid "The new template will be used as the default template." -msgstr "" +msgstr "Nowy szablon zostanie użyty jako szablon domyślny." #. GEtxD #: 01110300.xhp @@ -4316,7 +4316,7 @@ "par_id861608396537022\n" "help.text" msgid "Templates added with this command appear automatically in the Template Manager. You can also use the Template Manager to import templates. Both methods are recommended for adding templates." -msgstr "" +msgstr "Szablony dodane za pomocą tego polecenia pojawiają się automatycznie w Menedżerze szablonów. Do importowania szablonów możesz także użyć Menedżera szablonów. Obie metody są zalecane do dodawania szablonów." #. 7BaN7 #: 01110400.xhp @@ -4325,7 +4325,7 @@ "tit\n" "help.text" msgid "Edit Template" -msgstr "" +msgstr "Edytuj szablon" #. VqGEF #: 01110400.xhp @@ -4352,7 +4352,7 @@ "par_id01110401\n" "help.text" msgid "Choose File - Templates - Edit Template." -msgstr "" +msgstr "Wybierz Plik - Szablony - Edytuj szablon." #. VkA8N #: 01130000.xhp @@ -4388,7 +4388,7 @@ "par_id3146946\n" "help.text" msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document. The printing options can vary according to the printer and the operating system that you use." -msgstr "" +msgstr "Drukuje bieżący dokument, zaznaczenie lub określone strony. Możesz także ustawić opcje drukowania dla bieżącego dokumentu. Opcje drukowania mogą się różnić w zależności od drukarki i używanego systemu operacyjnego." #. Y8AZi #: 01130000.xhp @@ -4397,7 +4397,7 @@ "par_id0818200912284853\n" "help.text" msgid "The Print dialog consists of three main parts: A preview with navigation buttons, tab pages with control elements specific to the current document type, and the Print, Cancel and Help buttons." -msgstr "" +msgstr "Okno dialogowe Drukuj składa się z trzech głównych części: podglądu z przyciskami nawigacyjnymi, kart z elementami sterującymi charakterystycznymi dla bieżącego typu dokumentu oraz Drukuj, Anuluj i Pomoc." #. KGLDV #: 01130000.xhp @@ -4415,7 +4415,7 @@ "par_id0818200912531416\n" "help.text" msgid "Printing text documents:" -msgstr "" +msgstr "Drukowanie dokumentów tekstowych:" #. x2xfg #: 01130000.xhp @@ -4424,7 +4424,7 @@ "par_id0818200912531487\n" "help.text" msgid "Printing spreadsheets:" -msgstr "" +msgstr "Drukowanie arkuszy kalkulacyjnych:" #. 4ATQW #: 01130000.xhp @@ -4433,7 +4433,7 @@ "par_id0818200912531410\n" "help.text" msgid "Printing presentations:" -msgstr "" +msgstr "Drukowanie prezentacji:" #. bpAMH #: 01130000.xhp @@ -4442,7 +4442,7 @@ "par_id0818200912531449\n" "help.text" msgid "General printing:" -msgstr "" +msgstr "Drukowanie ogólne:" #. bau4s #: 01130000.xhp @@ -4451,7 +4451,7 @@ "par_id0818200912284952\n" "help.text" msgid "The settings that you define in the Print dialog are valid only for the current print job that you start by clicking the Print button. If you want to change some options permanently, open %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME (application name) - Print." -msgstr "" +msgstr "Ustawienia określone w oknie dialogowym Drukuj obowiązują tylko dla bieżącego zadania drukowania, które rozpoczynasz, klikając przycisk Drukuj. Jeśli chcesz trwale zmienić niektóre opcje, otwórz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME (nazwa aplikacji) - Drukuj." #. ZFcax #: 01130000.xhp @@ -4487,7 +4487,7 @@ "par_id0818200901194137\n" "help.text" msgid "Press Shift+F1 or choose Help - What's This? and point to any control element in the Print dialog to see an extended help text." -msgstr "" +msgstr "Naciśnij Shift+F1 lub wybierz Pomoc - Co to jest? i wskaż dowolny element sterujący w oknie dialogowym Drukuj, aby zobaczyć rozszerzony tekst pomocy." #. 5V5He #: 01130000.xhp @@ -4505,7 +4505,7 @@ "par_id081820091228505\n" "help.text" msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview." -msgstr "" +msgstr "Podgląd pokazuje, jak będzie wyglądać każdy arkusz papieru. Możesz przeglądać wszystkie arkusze papieru za pomocą przycisków pod podglądem." #. bkEuD #: 01130000.xhp @@ -4514,7 +4514,7 @@ "hd_id691619139072776\n" "help.text" msgid "Preview checkbox" -msgstr "" +msgstr "Pole wyboru podglądu" #. FbBW7 #: 01130000.xhp @@ -4523,7 +4523,7 @@ "par_id3150776\n" "help.text" msgid "Turn on or off display of the print preview." -msgstr "" +msgstr "Włącz lub wyłącz wyświetlanie podglądu wydruku." #. VupTf #: 01130000.xhp @@ -4532,7 +4532,7 @@ "hd_id931619139079209\n" "help.text" msgid "Preview navigation box" -msgstr "" +msgstr "Okno nawigacji podglądu" #. uGPRE #: 01130000.xhp @@ -4541,7 +4541,7 @@ "par_id3150773\n" "help.text" msgid "Enter the number of page to be shown in the preview in the box or use the arrow buttons to display pages in the preview." -msgstr "" +msgstr "Wprowadź numer strony, aby wyświetlić podgląd lub użyj przycisków strzałek, aby wyświetlić podgląd stron." #. Zg7aE #: 01130000.xhp @@ -4550,7 +4550,7 @@ "par_id3150774\n" "help.text" msgid "🡆 Shows preview of the next page." -msgstr "" +msgstr "🡆 Pokazuje podgląd następnej strony." #. fAR3e #: 01130000.xhp @@ -4559,7 +4559,7 @@ "par_id131619140182489\n" "help.text" msgid " Shows preview of the last page." -msgstr "" +msgstr " Pokazuje podgląd ostatniej strony." #. Ge5HC #: 01130000.xhp @@ -4568,7 +4568,7 @@ "par_id3150775\n" "help.text" msgid "🡄 Shows preview of the previous page." -msgstr "" +msgstr "🡄 Pokazuje podgląd poprzedniej strony." #. mBis5 #: 01130000.xhp @@ -4577,7 +4577,7 @@ "par_id711619140188690\n" "help.text" msgid " Shows preview of the first page." -msgstr "" +msgstr " Pokazuje podgląd pierwszej strony." #. y5JqS #: 01130000.xhp @@ -4595,7 +4595,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 "" +msgstr "Na karcie Ogólne znajdują się najważniejsze elementy sterujące drukowania. Możesz określić, jaka zawartość dokumentu ma zostać wydrukowana. Możesz wybrać drukarkę i otworzyć okno dialogowe Ustawienia drukarki." #. 5cGHt #: 01130000.xhp @@ -4604,7 +4604,7 @@ "hd_id861619196034872\n" "help.text" msgid "Printer" -msgstr "" +msgstr "Drukarka" #. 5hiFP #: 01130000.xhp @@ -4613,7 +4613,7 @@ "par_id3149511\n" "help.text" msgid "The list box shows the installed printers. Click the printer to use for the current print job." -msgstr "" +msgstr "Pole listy pokazuje zainstalowane drukarki. Kliknij drukarkę, aby wybrać ją do bieżącego zadania drukowania." #. 9CQRU #: 01130000.xhp @@ -4622,7 +4622,7 @@ "hd_id111619248846947\n" "help.text" msgid "Status" -msgstr "" +msgstr "Stan" #. Kfwra #: 01130000.xhp @@ -4631,7 +4631,7 @@ "par_id42\n" "help.text" msgid "Shows the availability of the selected printer." -msgstr "" +msgstr "Pokazuje dostępność wybranej drukarki." #. vEyiG #: 01130000.xhp @@ -4640,7 +4640,7 @@ "hd_id851619198158428\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Właściwości" #. ZMfYb #: 01130000.xhp @@ -4649,7 +4649,7 @@ "par_id3156113\n" "help.text" msgid "Opens the Printer Properties dialog. The printer properties vary according to the printer that you select." -msgstr "" +msgstr "Otwiera okno dialogowe Właściwości drukarki. Właściwości drukarki różnią się w zależności od wybranej drukarki." #. TXTqq #: 01130000.xhp @@ -4658,7 +4658,7 @@ "hd_id301619196931584\n" "help.text" msgid "Range and copies" -msgstr "" +msgstr "Zakres i liczba kopii" #. CjmAo #: 01130000.xhp @@ -4667,7 +4667,7 @@ "hd_id411619223685491\n" "help.text" msgid "All pages" -msgstr "" +msgstr "Wszystkie strony" #. REG4m #: 01130000.xhp @@ -4676,7 +4676,7 @@ "par_id3149164\n" "help.text" msgid "Prints the entire document." -msgstr "" +msgstr "Drukuje cały dokument." #. miCEv #: 01130000.xhp @@ -4685,7 +4685,7 @@ "hd_id471619223699982\n" "help.text" msgid "Pages" -msgstr "" +msgstr "Strony" #. TzCg9 #: 01130000.xhp @@ -4694,7 +4694,7 @@ "par_id3152944\n" "help.text" msgid "Prints only the pages or slides that you specify in the Pages box." -msgstr "" +msgstr "Drukuje tylko strony lub slajdy określone w polu Strony." #. qBArg #: 01130000.xhp @@ -4703,7 +4703,7 @@ "hd_id991619223714871\n" "help.text" msgid "Selection" -msgstr "" +msgstr "Zaznaczenie" #. Abtm6 #: 01130000.xhp @@ -4712,7 +4712,7 @@ "par_id3150244\n" "help.text" msgid "Prints only the selected area(s) or object(s) in the current document." -msgstr "" +msgstr "Drukuje tylko zaznaczone obszary lub obiekty w bieżącym dokumencie." #. T9g4h #: 01130000.xhp @@ -4721,7 +4721,7 @@ "par_id3146848\n" "help.text" msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12." -msgstr "" +msgstr "Aby wydrukować zakres stron, użyj formatu takiego jak 3-6. Aby wydrukować pojedyncze strony, użyj formatu takiego jak 7;9;11. Możesz wydrukować kombinację zakresów stron i pojedynczych stron, używając formatu takiego jak 3-6;8;10;12." #. cWoxT #: 01130000.xhp @@ -4730,7 +4730,7 @@ "hd_id461619223744867\n" "help.text" msgid "Include" -msgstr "" +msgstr "Dołącz" #. gaieA #: 01130000.xhp @@ -4739,7 +4739,7 @@ "par_id271619217217310\n" "help.text" msgid "Select the subset of pages to print. Possible values are:" -msgstr "" +msgstr "Wybierz podzbiór stron do wydrukowania. Możliwe wartości to:" #. JKSDi #: 01130000.xhp @@ -4748,7 +4748,7 @@ "par_id911619217484736\n" "help.text" msgid "Even pages:" -msgstr "" +msgstr "Strony parzyste:" #. sXLHa #: 01130000.xhp @@ -4757,7 +4757,7 @@ "par_id3152945\n" "help.text" msgid "Prints only even numbered pages or slides." -msgstr "" +msgstr "Drukuje tylko parzyste strony lub slajdy." #. RJUdz #: 01130000.xhp @@ -4766,7 +4766,7 @@ "par_id41619217998664\n" "help.text" msgid "Odd pages:" -msgstr "" +msgstr "Strony nieparzyste:" #. xkay5 #: 01130000.xhp @@ -4775,7 +4775,7 @@ "par_id3152946\n" "help.text" msgid "Prints only odd numbered pages or slides." -msgstr "" +msgstr "Drukuje tylko nieparzyste strony lub slajdy." #. oYaBB #: 01130000.xhp @@ -4784,7 +4784,7 @@ "par_id171619218364989\n" "help.text" msgid "Odd and even pages:" -msgstr "" +msgstr "Strony parzyste i nieparzyste:" #. fevn9 #: 01130000.xhp @@ -4793,7 +4793,7 @@ "par_id421619222542753\n" "help.text" msgid "Prints the entire document." -msgstr "" +msgstr "Drukuje cały dokument." #. 4EEe3 #: 01130000.xhp @@ -4802,7 +4802,7 @@ "hd_id881619225348934\n" "help.text" msgid "From which" -msgstr "" +msgstr "Z czego" #. tHVZf #: 01130000.xhp @@ -4811,7 +4811,7 @@ "par_id35\n" "help.text" msgid "Select the source of sheet content to be printed. Possible values are Print all sheets and Print selected sheets." -msgstr "" +msgstr "Wybierz źródło zawartości arkusza do wydrukowania. Możliwe wartości to Drukuj wszystkie arkusze i Drukuj zaznaczone arkusze." #. fGCJk #: 01130000.xhp @@ -4820,7 +4820,7 @@ "hd_id681619223767221\n" "help.text" msgid "Paper sides" -msgstr "" +msgstr "Strony papieru:" #. KPPih #: 01130000.xhp @@ -4829,7 +4829,7 @@ "par_id3150772\n" "help.text" msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both." -msgstr "" +msgstr "Jeśli drukarka może drukować dwustronnie, można wybrać między używaniem tylko jednej strony papieru lub obu." #. cnnat #: 01130000.xhp @@ -4838,7 +4838,7 @@ "hd_id851619223781119\n" "help.text" msgid "Number of copies" -msgstr "" +msgstr "Liczba kopii" #. qCXzM #: 01130000.xhp @@ -4847,7 +4847,7 @@ "par_id3145069\n" "help.text" msgid "Enter the number of copies that you want to print." -msgstr "" +msgstr "Wprowadź liczbę kopii do wydrukowania." #. rLgis #: 01130000.xhp @@ -4856,7 +4856,7 @@ "hd_id931619223793984\n" "help.text" msgid "Collate" -msgstr "" +msgstr "Zestaw" #. 8NLFW #: 01130000.xhp @@ -4865,7 +4865,7 @@ "par_id3150865\n" "help.text" msgid "Preserves the page order of the original document." -msgstr "" +msgstr "Zachowuje kolejność stron oryginalnego dokumentu." #. Um8wH #: 01130000.xhp @@ -4874,7 +4874,7 @@ "hd_id681619223806762\n" "help.text" msgid "Create separated prints jobs for collated output" -msgstr "" +msgstr "Twórz oddzielne zadania drukowania dla posortowanych wydruków" #. AzCAN #: 01130000.xhp @@ -4883,7 +4883,7 @@ "par_id38\n" "help.text" msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead." -msgstr "" +msgstr "Zaznacz, aby nie polegać na drukarce do tworzenia posortowanych kopii, ale zamiast tego tworzyć zadanie drukowania dla każdej kopii." #. GLMNy #: 01130000.xhp @@ -4892,7 +4892,7 @@ "hd_id741619223818619\n" "help.text" msgid "Print in reverse order" -msgstr "" +msgstr "Drukuj w odwrotnej kolejności" #. PqdCW #: 01130000.xhp @@ -4901,7 +4901,7 @@ "par_id40\n" "help.text" msgid "Check to print pages in reverse order." -msgstr "" +msgstr "Zaznacz, aby wydrukować strony w odwrotnej kolejności." #. RbXJE #: 01130000.xhp @@ -4919,7 +4919,7 @@ "par_id0818200912285150\n" "help.text" msgid "The Page Layout section can be used to save some sheets of paper by printing several pages onto each sheet of paper. You define the arrangement and size of output pages on the physical paper." -msgstr "" +msgstr "Sekcja Układ strony może być wykorzystana do zaoszczędzenia kilku arkuszy papieru poprzez wydrukowanie kilku stron na każdym arkuszu papieru. Użytkownik określa rozmieszczenie i rozmiar stron wyjściowych na papierze fizycznym." #. eYRqB #: 01130000.xhp @@ -4928,7 +4928,7 @@ "par_id0818200904164735\n" "help.text" msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look." -msgstr "" +msgstr "Zmień układ stron do wydrukowania na każdym arkuszu papieru. Podgląd pokazuje, jak będzie wyglądać każdy końcowy arkusz papieru." #. nVr7X #: 01130000.xhp @@ -4946,7 +4946,7 @@ "hd_id671619223836561\n" "help.text" msgid "Paper size" -msgstr "" +msgstr "Rozmiar papieru" #. BhLDa #: 01130000.xhp @@ -4955,7 +4955,7 @@ "par_id67\n" "help.text" msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size." -msgstr "" +msgstr "Ustaw rozmiar papieru do użycia. Podgląd pokaże, jak dokument wyglądałby na papierze o podanym rozmiarze." #. t4E2n #: 01130000.xhp @@ -4964,7 +4964,7 @@ "hd_id761619223624028\n" "help.text" msgid "Orientation" -msgstr "" +msgstr "Orientacja" #. kYfn6 #: 01130000.xhp @@ -4973,7 +4973,7 @@ "par_id54\n" "help.text" msgid "Select the orientation of the paper. Possible values are Portrait and Landscape." -msgstr "" +msgstr "Wybierz orientację papieru. Możliwe wartości to Pionowo i Poziomo." #. f9QFr #: 01130000.xhp @@ -4982,7 +4982,7 @@ "hd_id361619224024788\n" "help.text" msgid "Pages per sheet" -msgstr "" +msgstr "Stron na arkusz" #. j5XaE #: 01130000.xhp @@ -4991,7 +4991,7 @@ "par_id66\n" "help.text" msgid "Print multiple pages per sheet of paper." -msgstr "" +msgstr "Drukuj wiele stron na jednym arkuszu papieru." #. 9GdoC #: 01130000.xhp @@ -5000,7 +5000,7 @@ "par_id64\n" "help.text" msgid "Select how many pages to print per sheet of paper. When the number of pages is set to Custom, then the following settings shows:" -msgstr "" +msgstr "Wybierz, ile stron ma być wydrukowanych na jednym arkuszu papieru. Gdy liczba stron jest ustawiona na Niestandardowa, wyświetlane są następujące ustawienia:" #. FjtoQ #: 01130000.xhp @@ -5009,7 +5009,7 @@ "hd_id601619252410880\n" "help.text" msgid "Pages" -msgstr "" +msgstr "Strony" #. GFW9D #: 01130000.xhp @@ -5018,7 +5018,7 @@ "par_id60\n" "help.text" msgid "Select number of rows." -msgstr "" +msgstr "Wybierz liczbę wierszy." #. LLnTE #: 01130000.xhp @@ -5027,7 +5027,7 @@ "hd_id171619252415823\n" "help.text" msgid "By" -msgstr "" +msgstr "Na" #. SwKoG #: 01130000.xhp @@ -5036,7 +5036,7 @@ "par_id62\n" "help.text" msgid "Select number of columns." -msgstr "" +msgstr "Wybierz liczbę kolumn." #. UWUeY #: 01130000.xhp @@ -5045,7 +5045,7 @@ "hd_id821619252526953\n" "help.text" msgid "Margin" -msgstr "" +msgstr "Margines" #. CNbo4 #: 01130000.xhp @@ -5054,7 +5054,7 @@ "par_id56\n" "help.text" msgid "Select margin between the printed pages and paper edge." -msgstr "" +msgstr "Wybierz margines między drukowanymi stronami a krawędzią papieru." #. 3DJq7 #: 01130000.xhp @@ -5063,7 +5063,7 @@ "hd_id571619252531670\n" "help.text" msgid "Distance" -msgstr "" +msgstr "Odległość" #. KLGHJ #: 01130000.xhp @@ -5072,7 +5072,7 @@ "par_id58\n" "help.text" msgid "Select margin between individual pages on each sheet of paper." -msgstr "" +msgstr "Wybierz margines między poszczególnymi stronami na każdym arkuszu papieru." #. uA962 #: 01130000.xhp @@ -5081,7 +5081,7 @@ "hd_id361619224237112\n" "help.text" msgid "Order" -msgstr "" +msgstr "Kolejność" #. wbSAY #: 01130000.xhp @@ -5090,7 +5090,7 @@ "par_id52\n" "help.text" msgid "Select order in which pages are to be printed." -msgstr "" +msgstr "Wybierz kolejność drukowania stron." #. YZyuh #: 01130000.xhp @@ -5099,7 +5099,7 @@ "hd_id441619224400473\n" "help.text" msgid "Draw a border on each page" -msgstr "" +msgstr "Rysuj krawędź wokół każdej strony" #. u2CAQ #: 01130000.xhp @@ -5108,7 +5108,7 @@ "par_id50\n" "help.text" msgid "Check to draw a border around each page." -msgstr "" +msgstr "Zaznacz, aby narysować obramowanie wokół każdej strony." #. 4pXmQ #: 01130000.xhp @@ -5117,7 +5117,7 @@ "hd_id721619225074805\n" "help.text" msgid "Brochure" -msgstr "" +msgstr "Broszura" #. AAxay #: 01130000.xhp @@ -5126,7 +5126,7 @@ "par_id46\n" "help.text" msgid "Select the Brochure option to print the document in brochure format." -msgstr "" +msgstr "Wybierz opcję Broszura, aby wydrukować dokument w formacie broszury." #. pXDQy #: 01130000.xhp @@ -5135,7 +5135,7 @@ "hd_id301619226508197\n" "help.text" msgid "%PRODUCTNAME Writer" -msgstr "" +msgstr "%PRODUCTNAME Writer" #. kL5L3 #: 01130000.xhp @@ -5144,7 +5144,7 @@ "hd_id151619228134803\n" "help.text" msgid "Contents" -msgstr "" +msgstr "Zawartość" #. dmGqR #: 01130000.xhp @@ -5153,7 +5153,7 @@ "hd_id281619228113353\n" "help.text" msgid "Page Background" -msgstr "" +msgstr "Tło strony" #. zHjsd #: 01130000.xhp @@ -5171,7 +5171,7 @@ "hd_id901619228194194\n" "help.text" msgid "Images and other graphic objects" -msgstr "" +msgstr "Obrazy i inne obiekty graficzne" #. EdPqS #: 01130000.xhp @@ -5180,7 +5180,7 @@ "par_id4\n" "help.text" msgid "Specifies whether the graphics and drawings or OLE objects of your text document are printed." -msgstr "" +msgstr "Określa, czy grafika, rysunki i obiekty OLE zawarte w dokumencie tekstowym mają być drukowane." #. EnnB3 #: 01130000.xhp @@ -5189,7 +5189,7 @@ "hd_id611619228309367\n" "help.text" msgid "Hidden text" -msgstr "" +msgstr "Ukryty tekst" #. u6pRd #: 01130000.xhp @@ -5198,7 +5198,7 @@ "par_id6\n" "help.text" msgid "Enable this option to print text that is marked as hidden." -msgstr "" +msgstr "Włącz tę opcję, aby wydrukować tekst oznaczony jako ukryty." #. zzL7D #: 01130000.xhp @@ -5207,7 +5207,7 @@ "hd_id191619228341147\n" "help.text" msgid "Text placeholders" -msgstr "" +msgstr "Symbole zastępcze tekstu" #. nzAik #: 01130000.xhp @@ -5216,7 +5216,7 @@ "par_id8\n" "help.text" msgid "Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout." -msgstr "" +msgstr "Włącz tę opcję, aby drukować symbole zastępcze. Wyłącz tę opcję, aby pozostawić symbole zastępcze puste na wydruku końcowym." #. Z4n9R #: 01130000.xhp @@ -5225,7 +5225,7 @@ "hd_id331619228370432\n" "help.text" msgid "Form controls" -msgstr "" +msgstr "Formanty formularza" #. PNxji #: 01130000.xhp @@ -5234,7 +5234,7 @@ "par_id10\n" "help.text" msgid "Specifies whether the form control fields of the text document are printed." -msgstr "" +msgstr "Określa, czy mają być drukowane pola formantów formularza dokumentu tekstowego." #. CRYB6 #: 01130000.xhp @@ -5252,7 +5252,7 @@ "par_id16\n" "help.text" msgid "Specify where to print comments (if any)." -msgstr "" +msgstr "Określa, gdzie mają być drukowane komentarze (jeśli są jakieś)." #. APiC3 #: 01130000.xhp @@ -5270,7 +5270,7 @@ "hd_id541619228499071\n" "help.text" msgid "Print text in black" -msgstr "" +msgstr "Drukuj tekst w czerni" #. axxMA #: 01130000.xhp @@ -5279,7 +5279,7 @@ "par_id12\n" "help.text" msgid "Specifies whether to always print text in black." -msgstr "" +msgstr "Określa, czy tekst drukować zawsze jako czarny." #. LibL9 #: 01130000.xhp @@ -5288,7 +5288,7 @@ "hd_id161619228522978\n" "help.text" msgid "Pages" -msgstr "" +msgstr "Strony" #. XFLzA #: 01130000.xhp @@ -5297,7 +5297,7 @@ "hd_id281619228561327\n" "help.text" msgid "Print automatically inserted blank pages" -msgstr "" +msgstr "Drukuj automatycznie wstawione puste strony" #. CJP6W #: 01130000.xhp @@ -5306,7 +5306,7 @@ "par_id14\n" "help.text" msgid "If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page." -msgstr "" +msgstr "Jeśli ta opcja jest włączona, drukowane są automatycznie wstawiane puste strony. Jest to najlepsze rozwiązanie w przypadku drukowania dwustronnego. Na przykład w książce styl akapitu „rozdział” został ustawiony tak, aby zawsze zaczynał się od strony o numerze nieparzystym. Jeśli poprzedni rozdział kończy się na stronie nieparzystej, program %PRODUCTNAME wstawia pustą stronę o numerze parzystym. Ta opcja kontroluje, czy wydrukować stronę parzystą." #. ZuEDx #: 01130000.xhp @@ -5315,7 +5315,7 @@ "hd_id871619229199189\n" "help.text" msgid "%PRODUCTNAME Calc" -msgstr "" +msgstr "%PRODUCTNAME Calc" #. BfvLp #: 01130000.xhp @@ -5324,7 +5324,7 @@ "hd_id621619229204878\n" "help.text" msgid "Pages" -msgstr "" +msgstr "Strony" #. BJyDF #: 01130000.xhp @@ -5333,7 +5333,7 @@ "hd_id631619229209903\n" "help.text" msgid "Suppress output of empty pages" -msgstr "" +msgstr "Nie drukuj pustych stron" #. bgYTe #: 01130000.xhp @@ -5342,7 +5342,7 @@ "par_id34\n" "help.text" msgid "If checked empty pages that have no cell contents or draw objects are not printed." -msgstr "" +msgstr "Jeśli zaznaczone, puste strony zawierające puste komórki lub obiekty rysunkowe nie są drukowane." #. pEqzQ #: 01130000.xhp @@ -5351,7 +5351,7 @@ "hd_id121619249312306\n" "help.text" msgid "%PRODUCTNAME Impress" -msgstr "" +msgstr "%PRODUCTNAME Impress" #. NNAg6 #: 01130000.xhp @@ -5360,7 +5360,7 @@ "hd_id191619249318059\n" "help.text" msgid "Document" -msgstr "" +msgstr "Dokument" #. HCE3W #: 01130000.xhp @@ -5369,7 +5369,7 @@ "hd_id151619249336236\n" "help.text" msgid "Type" -msgstr "" +msgstr "Typ" #. siLoT #: 01130000.xhp @@ -5378,7 +5378,7 @@ "par_id68\n" "help.text" msgid "Select which parts of the document should be printed." -msgstr "" +msgstr "Zaznacz, które części dokumentu mają zostać wydrukowane." #. ENzUv #: 01130000.xhp @@ -5387,7 +5387,7 @@ "hd_id481619249411436\n" "help.text" msgid "Slides per page" -msgstr "" +msgstr "Slajdów na stronę" #. jCCGW #: 01130000.xhp @@ -5396,7 +5396,7 @@ "par_id70\n" "help.text" msgid "Select how many slides to print per page." -msgstr "" +msgstr "Wybierz liczbę slajdów do wydrukowania na stronie." #. UMABP #: 01130000.xhp @@ -5405,7 +5405,7 @@ "hd_id551619249466371\n" "help.text" msgid "Order" -msgstr "" +msgstr "Kolejność" #. EFRwZ #: 01130000.xhp @@ -5414,7 +5414,7 @@ "par_id72\n" "help.text" msgid "Specify how to arrange slides on the printed page." -msgstr "" +msgstr "Określ, jak rozmieścić slajdy na drukowanej stronie." #. EaCD6 #: 01130000.xhp @@ -5423,7 +5423,7 @@ "hd_id381619249533203\n" "help.text" msgid "Contents" -msgstr "" +msgstr "Zawartość" #. pPE9M #: 01130000.xhp @@ -5432,7 +5432,7 @@ "hd_id51619249550596\n" "help.text" msgid "Slide name" -msgstr "" +msgstr "Nazwa slajdu" #. HXyPD #: 01130000.xhp @@ -5441,7 +5441,7 @@ "par_id74\n" "help.text" msgid "Specifies whether to print the page name of a document." -msgstr "" +msgstr "Określa, czy drukować nazwę strony dokumentu." #. yo7rN #: 01130000.xhp @@ -5450,7 +5450,7 @@ "hd_id301619249622789\n" "help.text" msgid "Date and time" -msgstr "" +msgstr "Data i godzina" #. EAB8Q #: 01130000.xhp @@ -5459,7 +5459,7 @@ "par_id76\n" "help.text" msgid "Specifies whether to print the current date and time." -msgstr "" +msgstr "Określa, czy drukować aktualną datę i godzinę." #. eNaEf #: 01130000.xhp @@ -5468,7 +5468,7 @@ "hd_id161619249643209\n" "help.text" msgid "Hidden pages" -msgstr "" +msgstr "Ukryte strony" #. n8vJH #: 01130000.xhp @@ -5477,7 +5477,7 @@ "par_id78\n" "help.text" msgid "Specifies whether to print the pages that are currently hidden." -msgstr "" +msgstr "Określa, czy drukować strony, które są aktualnie ukryte." #. bvwT2 #: 01130000.xhp @@ -5495,7 +5495,7 @@ "hd_id781619249791597\n" "help.text" msgid "Original colors" -msgstr "" +msgstr "Kolory oryginalne" #. pXcAY #: 01130000.xhp @@ -5504,7 +5504,7 @@ "par_id80\n" "help.text" msgid "Specifies to print in original colors." -msgstr "" +msgstr "Określa drukowanie w kolorach oryginalnych." #. ofUbA #: 01130000.xhp @@ -5513,7 +5513,7 @@ "hd_id281619249798140\n" "help.text" msgid "Grayscale" -msgstr "" +msgstr "Skala szarości" #. A4gn3 #: 01130000.xhp @@ -5522,7 +5522,7 @@ "par_id82\n" "help.text" msgid "Specifies to print colors as grayscale." -msgstr "" +msgstr "Określa drukowanie kolorów w skali szarości." #. XSFDN #: 01130000.xhp @@ -5531,7 +5531,7 @@ "hd_id191619249805910\n" "help.text" msgid "Black and white" -msgstr "" +msgstr "Czerń i biel" #. TToES #: 01130000.xhp @@ -5540,7 +5540,7 @@ "par_id84\n" "help.text" msgid "Specifies to print colors as black and white." -msgstr "" +msgstr "Określa drukowanie kolorów jako czarno-białe." #. wEhtB #: 01130000.xhp @@ -5558,7 +5558,7 @@ "par_id86\n" "help.text" msgid "Specify how to scale slides in the printout." -msgstr "" +msgstr "Określ sposób skalowania slajdów na wydruku." #. jDBFB #: 01130000.xhp @@ -5567,7 +5567,7 @@ "hd_id961619249977935\n" "help.text" msgid "Original size" -msgstr "" +msgstr "Rozmiar oryginalny" #. VqWUF #: 01130000.xhp @@ -5576,7 +5576,7 @@ "par_id88\n" "help.text" msgid "Specifies that you do not want to further scale pages when printing." -msgstr "" +msgstr "Określa, że nie chcesz dalej skalować stron podczas drukowania." #. YwpHU #: 01130000.xhp @@ -5585,7 +5585,7 @@ "hd_id881619250251781\n" "help.text" msgid "Fit to printable page" -msgstr "" +msgstr "Dopasuj do strony wydruku" #. 29T6Y #: 01130000.xhp @@ -5594,7 +5594,7 @@ "par_id90\n" "help.text" msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer." -msgstr "" +msgstr "Określa, czy zmniejszać obiekty, które znajdują się poza marginesami bieżącej drukarki, aby zmieściły się na papierze w drukarce." #. 2JXtq #: 01130000.xhp @@ -5603,7 +5603,7 @@ "hd_id251619250401542\n" "help.text" msgid "Distribute on multiple sheets of paper" -msgstr "" +msgstr "Rozłóż na wiele arkuszy papieru" #. L9mDm #: 01130000.xhp @@ -5612,7 +5612,7 @@ "par_id651619261328941\n" "help.text" msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets." -msgstr "" +msgstr "Drukuje dokument wielkoformatowy, taki jak plakat lub transparent, poprzez rozmieszczenie strony dokumentu na wielu arkuszach papieru. Opcja dystrybucji oblicza liczbę potrzebnych arkuszy papieru. Następnie możesz złożyć arkusze razem." #. b4DKX #: 01130000.xhp @@ -5621,7 +5621,7 @@ "hd_id361619250241828\n" "help.text" msgid "Tile sheet of paper with repeated slides" -msgstr "" +msgstr "Rozmieść powtórzone slajdy sąsiadująco na arkuszu papieru" #. xeGdL #: 01130000.xhp @@ -5630,7 +5630,7 @@ "par_id92\n" "help.text" msgid "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, repeat the pages or slides on one sheet of paper." -msgstr "" +msgstr "Określa, że strony mają być drukowane w formacie sąsiadująco. Jeśli strony lub slajdy są mniejsze niż papier, powtórz strony lub slajdy na jednym arkuszu papieru." #. bqBAq #: 01130000.xhp @@ -5639,7 +5639,7 @@ "hd_id331619250751054\n" "help.text" msgid "%PRODUCTNAME Draw" -msgstr "" +msgstr "%PRODUCTNAME Draw" #. AFDk9 #: 01130000.xhp @@ -5648,7 +5648,7 @@ "hd_id571619250850474\n" "help.text" msgid "Contents" -msgstr "" +msgstr "Zawartość" #. DXT5F #: 01130000.xhp @@ -5657,7 +5657,7 @@ "hd_id551619250976409\n" "help.text" msgid "Page name" -msgstr "" +msgstr "Nazwa strony" #. nEBGA #: 01130000.xhp @@ -5666,7 +5666,7 @@ "par_id74d\n" "help.text" msgid "Specifies whether to print the page name of a document." -msgstr "" +msgstr "Określa, czy drukować nazwę strony dokumentu." #. s3pqB #: 01130000.xhp @@ -5675,7 +5675,7 @@ "hd_id301619249624789\n" "help.text" msgid "Date and time" -msgstr "" +msgstr "Data i godzina" #. Pv7FE #: 01130000.xhp @@ -5684,7 +5684,7 @@ "par_id76d\n" "help.text" msgid "Specifies whether to print the current date and time." -msgstr "" +msgstr "Określa, czy drukować aktualną datę i godzinę." #. HWosa #: 01130000.xhp @@ -5693,7 +5693,7 @@ "hd_id701619228767584\n" "help.text" msgid "%PRODUCTNAME Math" -msgstr "" +msgstr "%PRODUCTNAME Math" #. pEHHB #: 01130000.xhp @@ -5702,7 +5702,7 @@ "hd_id211619228847233\n" "help.text" msgid "Contents" -msgstr "" +msgstr "Zawartość" #. fFkuh #: 01130000.xhp @@ -5711,7 +5711,7 @@ "hd_id231619228825239\n" "help.text" msgid "Title" -msgstr "" +msgstr "Tytuł" #. qi7gG #: 01130000.xhp @@ -5720,7 +5720,7 @@ "par_id20\n" "help.text" msgid "Specifies whether you want the name of the document to be included in the printout." -msgstr "" +msgstr "Określa, czy na wydruku ma się znaleźć nazwa dokumentu." #. jHaEZ #: 01130000.xhp @@ -5729,7 +5729,7 @@ "hd_id881619228869444\n" "help.text" msgid "Formula text" -msgstr "" +msgstr "Tekst formuły" #. Dsf8x #: 01130000.xhp @@ -5738,7 +5738,7 @@ "par_id22\n" "help.text" msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout." -msgstr "" +msgstr "Określa, czy na dole wydruku ma być umieszczana zawartość okna Polecenia." #. 3KzTB #: 01130000.xhp @@ -5747,7 +5747,7 @@ "hd_id881619228899408\n" "help.text" msgid "Borders" -msgstr "" +msgstr "Krawędzie" #. oWquw #: 01130000.xhp @@ -5756,7 +5756,7 @@ "par_id24\n" "help.text" msgid "Applies a thin border to the formula area in the printout." -msgstr "" +msgstr "Dodaje cienką krawędź do obszaru formuły na wydruku." #. gCfBu #: 01130000.xhp @@ -5774,7 +5774,7 @@ "hd_id121619228944470\n" "help.text" msgid "Original size" -msgstr "" +msgstr "Rozmiar oryginalny" #. i9ApX #: 01130000.xhp @@ -5783,7 +5783,7 @@ "par_id26\n" "help.text" msgid "Prints the formula without adjusting the current font size." -msgstr "" +msgstr "Drukuje formułę bez dostosowywania rozmiaru czcionki." #. QCwXG #: 01130000.xhp @@ -5792,7 +5792,7 @@ "hd_id651619228968578\n" "help.text" msgid "Fit to page" -msgstr "" +msgstr "Dopasuj do strony" #. R9DFL #: 01130000.xhp @@ -5801,7 +5801,7 @@ "par_id28\n" "help.text" msgid "Adjusts the formula to the page format used in the printout." -msgstr "" +msgstr "Dostosowuje formułę do użytego formatu strony." #. kGS5A #: 01130000.xhp @@ -5810,7 +5810,7 @@ "hd_id741619228989979\n" "help.text" msgid "Scaling" -msgstr "" +msgstr "Skalowanie" #. FCDXz #: 01130000.xhp @@ -5819,7 +5819,7 @@ "par_id30\n" "help.text" msgid "Reduces or enlarges the size of the printed formula by a specified factor." -msgstr "" +msgstr "Zmniejsza lub zwiększa rozmiar drukowanej formuły o określony współczynnik." #. 4EBb8 #: 01130000.xhp @@ -5828,7 +5828,7 @@ "par_id32\n" "help.text" msgid "Enter the scale factor for scaling the formula." -msgstr "" +msgstr "Wprowadź współczynnik skali do skalowania formuły." #. vXCZ9 #: 01130000.xhp @@ -5945,7 +5945,7 @@ "hd_id3156153\n" "help.text" msgid "Status" -msgstr "Status" +msgstr "Stan" #. fjCar #: 01140000.xhp @@ -6035,7 +6035,7 @@ "par_id3157322\n" "help.text" msgid "Ensure that the Landscape or Portrait layout option set in the Printer Properties dialog matches the page format that you set by choosing Slide - PropertiesPage - PropertiesFormat - Page." -msgstr "" +msgstr "Upewnij się, że opcja układu Poziomo lub Pionowo ustawiona w oknie dialogowym Właściwości drukarki jest zgodna z formatem strony ustawionym przez wybranie opcji Slajd - WłaściwościStrona - WłaściwościFormat - Strona." #. SWzCk #: 01140000.xhp @@ -6107,7 +6107,7 @@ "par_id4546342\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used." -msgstr "" +msgstr "Otwiera nowe okno w domyślnym programie pocztowym z bieżącym dokumentem jako załącznikiem. Używany jest format pliku OpenDocument." #. EiZei #: 01160000.xhp @@ -6116,7 +6116,7 @@ "par_id6845301\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft file format is used." -msgstr "" +msgstr "Otwiera nowe okno w domyślnym programie pocztowym z bieżącym dokumentem jako załącznikiem. Używany jest format pliku Microsoft." #. E7FtX #: 01160000.xhp @@ -6125,7 +6125,7 @@ "hd_id8111514\n" "help.text" msgid "Email as OpenDocument Spreadsheet" -msgstr "" +msgstr "E-mail jako arkusz kalkulacyjny OpenDocument" #. ewW2i #: 01160000.xhp @@ -6134,7 +6134,7 @@ "par_id5917844\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used." -msgstr "" +msgstr "Otwiera nowe okno w domyślnym programie pocztowym z bieżącym dokumentem jako załącznikiem. Używany jest format pliku OpenDocument." #. yrGWK #: 01160000.xhp @@ -6143,7 +6143,7 @@ "hd_id5112460\n" "help.text" msgid "Email as Microsoft Excel" -msgstr "" +msgstr "E-mail jako Microsoft Excel" #. pLjdc #: 01160000.xhp @@ -6152,7 +6152,7 @@ "par_id5759453\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft Excel file format is used." -msgstr "" +msgstr "Otwiera nowe okno w domyślnym programie pocztowym z bieżącym dokumentem jako załącznikiem. Używany jest format pliku Microsoft Excel." #. DBfk7 #: 01160000.xhp @@ -6161,7 +6161,7 @@ "hd_id6694540\n" "help.text" msgid "Email as OpenDocument Presentation" -msgstr "" +msgstr "E-mail jako prezentacja OpenDocument" #. Ai2i2 #: 01160000.xhp @@ -6170,7 +6170,7 @@ "par_id7829218\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used." -msgstr "" +msgstr "Otwiera nowe okno w domyślnym programie pocztowym z bieżącym dokumentem jako załącznikiem. Używany jest format pliku OpenDocument." #. q3LCG #: 01160000.xhp @@ -6179,7 +6179,7 @@ "hd_id2099063\n" "help.text" msgid "Email as Microsoft PowerPoint Presentation" -msgstr "" +msgstr "E-mail jako prezentacja Microsoft PowerPoint" #. uDGxn #: 01160000.xhp @@ -6188,7 +6188,7 @@ "par_id8319650\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft PowerPoint file format is used." -msgstr "" +msgstr "Otwiera nowe okno w domyślnym programie pocztowym z bieżącym dokumentem jako załącznikiem. Używany jest format pliku Microsoft PowerPoint." #. Vjqvr #: 01160000.xhp @@ -6197,7 +6197,7 @@ "hd_id9657277\n" "help.text" msgid "Email as OpenDocument Text" -msgstr "" +msgstr "E-mail jako dokument tekstowy OpenDocument" #. Aewp6 #: 01160000.xhp @@ -6206,7 +6206,7 @@ "par_id9085055\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used." -msgstr "" +msgstr "Otwiera nowe okno w domyślnym programie pocztowym z bieżącym dokumentem jako załącznikiem. Używany jest format pliku OpenDocument." #. TH4Pg #: 01160000.xhp @@ -6215,7 +6215,7 @@ "hd_id7941831\n" "help.text" msgid "Email as Microsoft Word" -msgstr "" +msgstr "E-mail jako Microsoft Word" #. dcXm5 #: 01160000.xhp @@ -6224,7 +6224,7 @@ "par_id5421918\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft Word file format is used." -msgstr "" +msgstr "Otwiera nowe okno w domyślnym programie pocztowym z bieżącym dokumentem jako załącznikiem. Używany jest format pliku Microsoft Word." #. 9Vye6 #: 01160000.xhp @@ -6260,7 +6260,7 @@ "tit\n" "help.text" msgid "Email Document" -msgstr "" +msgstr "Dokument e-mail" #. cpCsu #: 01160200.xhp @@ -6269,7 +6269,7 @@ "hd_id3150702\n" "help.text" msgid "Email Document" -msgstr "" +msgstr "Dokument e-mail" #. 8prjP #: 01160200.xhp @@ -6278,7 +6278,7 @@ "par_id3152823\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The current file format is used. If the document is new and unsaved, the format specified in %PRODUCTNAME - PreferencesTools - Options - Load/Save - General is used." -msgstr "" +msgstr "Otwiera nowe okno w domyślnym programie pocztowym z bieżącym dokumentem jako załącznikiem. Używany jest bieżący format pliku. Jeśli dokument jest nowy i niezapisany, używany jest format określony w %PRODUCTNAME - Preferencje Narzędzia - Opcje - Ładuj/zapisz - Ogólne." #. EAoDd #: 01160200.xhp @@ -6287,7 +6287,7 @@ "par_id0807200809553672\n" "help.text" msgid "If the document is in HTML format, any embedded or linked images will not be sent with the email." -msgstr "" +msgstr "Jeśli dokument jest w formacie HTML, wszelkie osadzone lub połączone obrazy nie zostaną wysłane wraz z wiadomością e-mail." #. E5hZ4 #: 01160300.xhp @@ -6314,7 +6314,7 @@ "par_id3148668\n" "help.text" msgid "Creates a master document from the current Writer document. A new sub-document is created at each occurrence of a chosen paragraph style or outline level in the source document." -msgstr "" +msgstr "Tworzy dokument główny z bieżącego dokumentu programu Writer. Nowy dokument podrzędny jest tworzony przy każdym wystąpieniu wybranego stylu akapitu lub poziomu konspektu w dokumencie źródłowym." #. chJvA #: 01160300.xhp @@ -6350,7 +6350,7 @@ "par_id3156426\n" "help.text" msgid "Select the paragraph style or outline level that you want to use to separate the source document into sub-documents. By default a new document is created for every outline level 1." -msgstr "" +msgstr "Wybierz styl akapitu lub poziom konspektu, który chcesz użyć do rozdzielenia dokumentu źródłowego na dokumenty podrzędne. Domyślnie tworzony jest nowy dokument dla każdego poziomu konspektu 1." #. 949cB #: 01160300.xhp @@ -6404,7 +6404,7 @@ "par_id3151299\n" "help.text" msgid "Closes all %PRODUCTNAME programs and prompts you to save your changes. This command does not exist on macOS systems." -msgstr "" +msgstr "Zamyka wszystkie programy %PRODUCTNAME i monituje o zapisanie zmian. To polecenie nie istnieje w systemach macOS." #. XYGgt #: 01170000.xhp @@ -6485,7 +6485,7 @@ "par_id3157898\n" "help.text" msgid "Saves and organizes multiple versions of the current document in the same file. You can also open, delete and compare previous versions." -msgstr "" +msgstr "Zapisuje i organizuje wiele wersji bieżącego dokumentu w tym samym pliku. Możesz także otwierać, usuwać i porównywać poprzednie wersje." #. bJKDg #: 01190000.xhp @@ -6494,7 +6494,7 @@ "par_id3153527\n" "help.text" msgid "If you save a copy of a file that contains version information (by choosing File - Save As), the version information is not saved with the file." -msgstr "" +msgstr "Jeśli zapiszesz kopię pliku zawierającego informacje o wersji (wybierając Plik - Zapisz jako), informacje o wersji nie zostaną zapisane wraz z plikiem." #. ha47E #: 01190000.xhp @@ -6530,7 +6530,7 @@ "par_id3149149\n" "help.text" msgid "Saves the current state of the document as a new version. If you want, you can also enter comments in the Insert Version Comment dialog before you save the new version." -msgstr "" +msgstr "Zapisuje bieżący stan dokumentu jako nową wersję. Jeśli chcesz, możesz również wprowadzić komentarze w oknie dialogowym Wstaw komentarz dotyczący wersji przed zapisaniem nowej wersji." #. vDJQ5 #: 01190000.xhp @@ -6548,7 +6548,7 @@ "par_id3150466\n" "help.text" msgid "Enter a comment here when you are saving a new version. If you clicked Show to open this dialog, you cannot edit the comment." -msgstr "" +msgstr "Wpisz tutaj komentarz podczas zapisywania nowej wersji. Jeśli kliknięto Pokaż, aby otworzyć to okno dialogowe, nie możesz edytować komentarza." #. cnDPi #: 01190000.xhp @@ -6611,7 +6611,7 @@ "par_id3153827\n" "help.text" msgid "Opens the selected version in a read-only window." -msgstr "" +msgstr "Otwiera wybraną wersję w oknie tylko do odczytu." #. RjnJa #: 01190000.xhp @@ -6746,7 +6746,7 @@ "par_id3149205\n" "help.text" msgid "Reverses the last command or the last entry you typed. To select the command that you want to reverse, click the arrow next to the Undo icon on the Standard bar." -msgstr "" +msgstr "Odwraca ostatnie polecenie lub ostatnio wpisany wpis. Aby wybrać polecenie, które chcesz cofnąć, kliknij strzałkę obok ikony Cofnij na pasku Standardowy." #. DSBrt #: 02010000.xhp @@ -6755,7 +6755,7 @@ "par_idN10630\n" "help.text" msgid "To change the number of commands that you can undo, go to the Expert configuration and set a new value of the property \"/org.openoffice.Office.Common/Undo Steps\"." -msgstr "" +msgstr "Aby zmienić liczbę poleceń, które możesz cofnąć, przejdź do Konfiguracja eksperta i ustaw nową wartość właściwość \"/org.openoffice.Office.Common/Undo Steps\"." #. NcK37 #: 02010000.xhp @@ -6773,7 +6773,7 @@ "par_id3155338\n" "help.text" msgid "You can cancel the Undo command by choosing Edit - Redo." -msgstr "" +msgstr "Możesz anulować polecenie Cofnij, wybierając Edycja - Ponów." #. seDVc #: 02010000.xhp @@ -6800,7 +6800,7 @@ "par_id3155504\n" "help.text" msgid "If you change the content of a record in a database table that has not been saved, and then use the Undo command, the record is erased." -msgstr "" +msgstr "Jeśli zmienisz zawartość rekordu w tabeli bazy danych, który nie został zapisany, a następnie użyjesz polecenia Cofnij, rekord zostanie usunięty." #. 6zRBH #: 02010000.xhp @@ -6854,7 +6854,7 @@ "par_id3157898\n" "help.text" msgid "Reverses the action of the last Undo command. To select the Undo step that you want to reverse, click the arrow next to the Redo icon on the Standard bar." -msgstr "" +msgstr "Odwraca działanie ostatniego polecenia Cofnij. Aby wybrać krok Cofnij, który chcesz cofnąć, kliknij strzałkę obok ikony Ponów na pasku Standardowy." #. MERfp #: 02030000.xhp @@ -6980,7 +6980,7 @@ "par_id3154824\n" "help.text" msgid "$[officename] also supports the clipboard under Unix; however, you must use the $[officename] commands, such as Ctrl+C." -msgstr "" +msgstr "$[officename] obsługuje również schowek w systemach Unix; jednak musisz użyć poleceń $[officename], takich jak Ctrl+C." #. 6cWvs #: 02060000.xhp @@ -6998,7 +6998,7 @@ "bm_id3149031\n" "help.text" msgid "pasting; cell rangesclipboard; pastingcells; pastingpasting; Enter keypasting; Ctrl+V shortcut" -msgstr "" +msgstr "wklejanie; zakresy komórekschowek; wklejaniekomórki; wklejaniewklejanie; klawisz Enterwklejanie; skrót Ctrl+V" #. 5ZbXk #: 02060000.xhp @@ -7025,7 +7025,7 @@ "par_id551521061448109\n" "help.text" msgid "Press the Enter key." -msgstr "" +msgstr "Naciśnij klawisz Enter." #. VXjYp #: 02060000.xhp @@ -7034,7 +7034,7 @@ "par_id3147834\n" "help.text" msgid "In a spreadsheet, when you paste a range of cells from the clipboard, the result depends on the current selection: If only one cell is selected, the cell range will be pasted started from that cell. If you mark a cell range wider than the cell range in the clipboard, the cell range will be pasted repeatedly to fill the selected cell range." -msgstr "" +msgstr "W arkuszu kalkulacyjnym, gdy wklejasz zakres komórek ze schowka, wynik zależy od bieżącego zaznaczenia: jeśli zaznaczona jest tylko jedna komórka, zakres komórek zostanie wklejony począwszy od tej komórki. Jeśli zaznaczysz zakres komórek szerszy niż zakres komórek w schowku, zakres komórek będzie wielokrotnie wklejany, aby wypełnić wybrany zakres komórek." #. DfGUG #: 02060000.xhp @@ -7043,7 +7043,7 @@ "hd_id221521057740108\n" "help.text" msgid "Pasting contents in %PRODUCTNAME Calc" -msgstr "" +msgstr "Wklejanie zawartości w %PRODUCTNAME Calc" #. rUVnH #: 02060000.xhp @@ -7052,7 +7052,7 @@ "par_id271521057645962\n" "help.text" msgid "When copying a cell or a range in %PRODUCTNAME Calc the selection is marked with blinking dashes around the range (the \"marching ants\") to indicate what was being selected during the clipboard operation." -msgstr "" +msgstr "Podczas kopiowania komórki lub zakresu w programie %PRODUCTNAME Calc zaznaczenie jest oznaczane migającymi kreskami wokół zakresu („maszerujące mrówki”), aby wskazać, co zostało zaznaczone podczas operacji w schowku." #. xGXym #: 02060000.xhp @@ -7061,7 +7061,7 @@ "par_id481521058175847\n" "help.text" msgid "Marching ants mark for Calc clipboard" -msgstr "" +msgstr "Znak maszerujących mrówek dla schowka Calc" #. x7oBY #: 02060000.xhp @@ -7070,7 +7070,7 @@ "par_id861521058166011\n" "help.text" msgid "There are two ways to paste the clipboard contents in a spreadsheet document:" -msgstr "" +msgstr "Istnieją dwa sposoby wklejania zawartości schowka do dokumentu arkusza kalkulacyjnego:" #. TAfBs #: 02060000.xhp @@ -7079,7 +7079,7 @@ "par_id561521057687471\n" "help.text" msgid "Using CommandCtrl+V shortcut, the Paste icon in the toolbar or choose Edit - Paste: The contents of the clipboard is pasted in the target location and the clipboard keeps the contents for more paste operations. The copied selection mark stays active." -msgstr "" +msgstr "Użycie skrótu CommandCtrl+V, ikony Wklej na pasku narzędzi lub wybranie Edycja - Wklej: Zawartość schowka jest wklejana w miejscu docelowym, a schowek pozostaje zawartość, aby uzyskać więcej operacji wklejania. Skopiowany znacznik wyboru pozostaje aktywny." #. 33eAD #: 02060000.xhp @@ -7088,7 +7088,7 @@ "par_id811521057699468\n" "help.text" msgid "Using Enter key: the clipboard contents is pasted once and cleared. No further paste is possible with the clipboard contents. The copied selection mark is disabled." -msgstr "" +msgstr "Użycie klawisza Enter: zawartość schowka jest jednokrotnie wklejana i czyszczona. Dalsze wklejanie zawartości schowka nie jest możliwe. Skopiowany znacznik wyboru jest wyłączony." #. BVBac #: 02060000.xhp @@ -7097,7 +7097,7 @@ "par_id531521057600924\n" "help.text" msgid "To deactivate the copied selection mark press the Esc key. The clipboard contents is not cleared." -msgstr "" +msgstr "Aby dezaktywować skopiowany znacznik wyboru, naciśnij klawisz Esc. Zawartość schowka nie jest usuwana." #. nDnfv #: 02070000.xhp @@ -7160,7 +7160,7 @@ "par_id3149812\n" "help.text" msgid "Select a format for the clipboard contents that you want to paste. The available format depends on the copied or cut source format." -msgstr "" +msgstr "Wybierz format zawartości schowka, którą chcesz wkleić. Dostępny format zależy od skopiowanego lub wyciętego formatu źródłowego." #. HzshB #: 02070000.xhp @@ -7169,7 +7169,7 @@ "par_id3147653\n" "help.text" msgid "When you paste HTML data into a text document, you can choose \"HTML format\" or \"HTML format without comments\". The second choice is the default; it pastes all HTML data, but no comments." -msgstr "" +msgstr "Podczas wklejania danych HTML do dokumentu tekstowego możesz wybrać „format HTML” lub „format HTML bez komentarzy”. Drugi wybór jest domyślny; wkleja wszystkie dane HTML, ale bez komentarzy." #. AiR33 #: 02070000.xhp @@ -7178,7 +7178,7 @@ "hd_id3155420\n" "help.text" msgid "Paste Special" -msgstr "" +msgstr "Wklej specjalnie" #. yj2Fr #: 02070000.xhp @@ -7187,7 +7187,7 @@ "par_id3150976\n" "help.text" msgid "This dialog appears in Calc if the clipboard contains spreadsheet cells." -msgstr "" +msgstr "To okno dialogowe pojawia się w programie Calc, jeśli schowek zawiera komórki arkusza kalkulacyjnego." #. HA2yt #: 02070000.xhp @@ -7196,7 +7196,7 @@ "hd_id191630440520574\n" "help.text" msgid "Presets" -msgstr "" +msgstr "Ustawienia wstępne" #. H4Mqr #: 02070000.xhp @@ -7205,7 +7205,7 @@ "par_id951630440692605\n" "help.text" msgid "Choose one of the presets to quickly load commonly used settings for Paste Special." -msgstr "" +msgstr "Wybierz jedno z ustawień wstępnych, aby szybko załadować często używane ustawienia funkcji Wklej specjalnie." #. DBS7B #: 02070000.xhp @@ -7214,7 +7214,7 @@ "hd_id41630440570501\n" "help.text" msgid "Values Only" -msgstr "" +msgstr "Tylko wartości" #. pk4yA #: 02070000.xhp @@ -7223,7 +7223,7 @@ "par_id111630440722545\n" "help.text" msgid "Pastes only cell contents including text, numbers and dates." -msgstr "" +msgstr "Wkleja tylko zawartość komórki, w tym tekst, liczby i daty." #. khvcS #: 02070000.xhp @@ -7232,7 +7232,7 @@ "hd_id891630440587478\n" "help.text" msgid "Values & Formats" -msgstr "" +msgstr "Wartości i formaty" #. h6phw #: 02070000.xhp @@ -7241,7 +7241,7 @@ "par_id511630441051343\n" "help.text" msgid "Pastes cell contents and formats applied to cells." -msgstr "" +msgstr "Wkleja zawartość komórki i formaty zastosowane do komórek." #. VUzzv #: 02070000.xhp @@ -7250,7 +7250,7 @@ "hd_id301630440615367\n" "help.text" msgid "Formats Only" -msgstr "" +msgstr "Tylko formaty" #. uStsB #: 02070000.xhp @@ -7259,7 +7259,7 @@ "par_id851630441123702\n" "help.text" msgid "Pastes only formats applied to cells." -msgstr "" +msgstr "Wkleja tylko formaty zastosowane do komórek." #. 2kAAp #: 02070000.xhp @@ -7268,7 +7268,7 @@ "hd_id81630440632865\n" "help.text" msgid "Transpose All" -msgstr "" +msgstr "Transponuj wszystko" #. dszzk #: 02070000.xhp @@ -7277,7 +7277,7 @@ "par_id41630441349354\n" "help.text" msgid "Pastes all cell contents with their positions transposed." -msgstr "" +msgstr "Wkleja całą zawartość komórek z transponowanymi pozycjami." #. uNrP7 #: 02070000.xhp @@ -7286,7 +7286,7 @@ "hd_id991630441460829\n" "help.text" msgid "Run immediately" -msgstr "" +msgstr "Uruchom natychmiast" #. FP5bX #: 02070000.xhp @@ -7295,7 +7295,7 @@ "par_id331630441454811\n" "help.text" msgid "Check this option to load the preset and immediately apply it. When unchecked, choosing a preset will only load the corresponding options in the dialog without pasting anything." -msgstr "" +msgstr "Zaznacz tę opcję, aby załadować ustawienie wstępne i natychmiast je zastosować. Jeśli opcja ta nie jest zaznaczona, wybranie ustawienia wstępnego spowoduje załadowanie tylko odpowiednich opcji w oknie dialogowym bez wklejania czegokolwiek." #. 3etKJ #: 02070000.xhp @@ -7304,7 +7304,7 @@ "par_id811630441564039\n" "help.text" msgid "Uncheck Run immediately to load the options from the preset and change its settings in the Paste Special dialog before applying them by clicking OK." -msgstr "" +msgstr "Odznacz Uruchom natychmiast, aby załadować opcje z ustawienia wstępnego i zmienić jego ustawienia w oknie dialogowym Wklej specjalnie przed ich zastosowaniem, klikając OK." #. LTyRC #: 02070000.xhp @@ -7322,7 +7322,7 @@ "par_id3152909\n" "help.text" msgid "Select a format for the clipboard contents that you want to paste." -msgstr "" +msgstr "Wybierz format zawartości schowka, którą chcesz wkleić." #. rPXGJ #: 02070000.xhp @@ -7331,7 +7331,7 @@ "hd_id3145120\n" "help.text" msgid "Paste all" -msgstr "" +msgstr "Wklej wszystko" #. aBXw3 #: 02070000.xhp @@ -7340,7 +7340,7 @@ "par_id3146848\n" "help.text" msgid "Pastes all cell contents, comments, formats, and objects into the current document." -msgstr "" +msgstr "Wkleja całą zawartość komórki, komentarze, formaty i obiekty do bieżącego dokumentu." #. 2zvDG #: 02070000.xhp @@ -7358,7 +7358,7 @@ "par_id3149244\n" "help.text" msgid "Inserts cells containing text." -msgstr "" +msgstr "Wstawia komórki zawierające tekst." #. EBWrT #: 02070000.xhp @@ -7376,7 +7376,7 @@ "par_id3152360\n" "help.text" msgid "Inserts cells containing numbers." -msgstr "" +msgstr "Wstawia komórki zawierające liczby." #. EuRG9 #: 02070000.xhp @@ -7385,7 +7385,7 @@ "hd_id3151054\n" "help.text" msgid "Date & Time" -msgstr "" +msgstr "Data i godzina" #. kMiEY #: 02070000.xhp @@ -7394,7 +7394,7 @@ "par_id3154226\n" "help.text" msgid "Inserts cells containing date and time values." -msgstr "" +msgstr "Wstawia komórki zawierające wartości daty i godziny." #. jBXgB #: 02070000.xhp @@ -7403,7 +7403,7 @@ "hd_id3150791\n" "help.text" msgid "Formulas" -msgstr "" +msgstr "Formuły" #. siXaL #: 02070000.xhp @@ -7412,7 +7412,7 @@ "par_id3145744\n" "help.text" msgid "Inserts cells containing formulae." -msgstr "" +msgstr "Wstawia komórki zawierające formuły." #. 8hAk2 #: 02070000.xhp @@ -7430,7 +7430,7 @@ "par_id3156422\n" "help.text" msgid "Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation." -msgstr "" +msgstr "Wstawia komentarze dołączone do komórek. Jeśli chcesz dodać komentarze do istniejącej zawartości komórki, wybierz operację „Dodaj”." #. BVEu4 #: 02070000.xhp @@ -7439,7 +7439,7 @@ "hd_id3152935\n" "help.text" msgid "Formats" -msgstr "" +msgstr "Formaty" #. sSEUh #: 02070000.xhp @@ -7448,7 +7448,7 @@ "par_id3125863\n" "help.text" msgid "Inserts cell format attributes." -msgstr "" +msgstr "Wstawia atrybuty formatu komórki." #. vt4Hc #: 02070000.xhp @@ -7457,7 +7457,7 @@ "hd_id3156282\n" "help.text" msgid "Objects" -msgstr "" +msgstr "Obiekty" #. L7ZAm #: 02070000.xhp @@ -7466,7 +7466,7 @@ "par_id3149810\n" "help.text" msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects." -msgstr "" +msgstr "Wstawia obiekty zawarte w zaznaczonym zakresie komórek. Mogą to być obiekty OLE, obiekty wykresów lub obiekty rysunkowe." #. PEQod #: 02070000.xhp @@ -7475,7 +7475,7 @@ "hd_id3150440\n" "help.text" msgid "Operations" -msgstr "" +msgstr "Operacje" #. MjkRH #: 02070000.xhp @@ -7484,7 +7484,7 @@ "par_id3151351\n" "help.text" msgid "Select the operation to apply when you paste cells into your sheet." -msgstr "" +msgstr "Wybierz operację, która ma zostać zastosowana podczas wklejania komórek do arkusza." #. Ea8L3 #: 02070000.xhp @@ -7493,7 +7493,7 @@ "hd_id3153952\n" "help.text" msgid "None" -msgstr "" +msgstr "Brak" #. Ff6dF #: 02070000.xhp @@ -7502,7 +7502,7 @@ "par_id3147348\n" "help.text" msgid "Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents." -msgstr "" +msgstr "Nie wykonuje operacji podczas wstawiania zakresu komórek ze schowka. Zawartość schowka zastąpi istniejącą zawartość komórki." #. nub6H #: 02070000.xhp @@ -7511,7 +7511,7 @@ "hd_id3154988\n" "help.text" msgid "Add" -msgstr "" +msgstr "Dodaj" #. htC6o #: 02070000.xhp @@ -7520,7 +7520,7 @@ "par_id3159196\n" "help.text" msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells." -msgstr "" +msgstr "Dodaje wartości w komórkach schowka do wartości w komórkach docelowych. Ponadto, jeśli schowek zawiera tylko komentarze, dodaje komentarze do komórek docelowych." #. xCBTk #: 02070000.xhp @@ -7529,7 +7529,7 @@ "hd_id3145263\n" "help.text" msgid "Subtract" -msgstr "" +msgstr "Odejmij" #. LmxHG #: 02070000.xhp @@ -7538,7 +7538,7 @@ "par_id3154149\n" "help.text" msgid "Subtracts the values in the clipboard cells from the values in the target cells." -msgstr "" +msgstr "Odejmuje wartości w komórkach schowka od wartości w komórkach docelowych." #. CkGuW #: 02070000.xhp @@ -7547,7 +7547,7 @@ "hd_id3155312\n" "help.text" msgid "Multiply" -msgstr "" +msgstr "Pomnóż" #. JQTu7 #: 02070000.xhp @@ -7556,7 +7556,7 @@ "par_id3155307\n" "help.text" msgid "Multiplies the values in the clipboard cells with the values in the target cells." -msgstr "" +msgstr "Mnoży wartości w komórkach schowka przez wartości w komórkach docelowych." #. wwJFy #: 02070000.xhp @@ -7565,7 +7565,7 @@ "hd_id3154320\n" "help.text" msgid "Divide" -msgstr "" +msgstr "Podziel" #. eUmBX #: 02070000.xhp @@ -7574,7 +7574,7 @@ "par_id3155417\n" "help.text" msgid "Divides the values in the target cells by the values in the clipboard cells." -msgstr "" +msgstr "Dzieli wartości w komórkach docelowych przez wartości w komórkach schowka." #. YQPSF #: 02070000.xhp @@ -7583,7 +7583,7 @@ "hd_id3147048\n" "help.text" msgid "Options" -msgstr "" +msgstr "Opcje" #. yJWfD #: 02070000.xhp @@ -7592,7 +7592,7 @@ "par_id3156283\n" "help.text" msgid "Sets the paste options for the clipboard contents." -msgstr "" +msgstr "Ustawia opcje wklejania zawartości schowka." #. rgU5u #: 02070000.xhp @@ -7601,7 +7601,7 @@ "hd_id3151052\n" "help.text" msgid "Skip empty cells" -msgstr "" +msgstr "Pomiń puste komórki" #. ZEuoV #: 02070000.xhp @@ -7610,7 +7610,7 @@ "par_id3148775\n" "help.text" msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the \"Multiply\" or the \"Divide\" operation, the operation is not applied to the target cell of an empty cell in the clipboard." -msgstr "" +msgstr "Puste komórki ze schowka nie zastępują komórek docelowych. Jeśli użyjesz tej opcji w połączeniu z operacją „Pomnóż” lub „Podziel”, operacja nie zostanie zastosowana do komórki docelowej pustej komórki w schowku." #. 2Duk9 #: 02070000.xhp @@ -7619,7 +7619,7 @@ "par_id3155084\n" "help.text" msgid "If you select a mathematical operation and clear the Skip empty cells box, empty cells in the clipboard are treated as zeroes. For example, if you apply the Multiply operation, the target cells are filled with zeroes." -msgstr "" +msgstr "Jeśli wybierzesz operację matematyczną i wyczyścisz pole Pomiń puste komórki, puste komórki w schowku będą traktowane jako zera. Na przykład, jeśli zastosujesz operację Pomnóż, komórki docelowe zostaną wypełnione zerami." #. TYpT5 #: 02070000.xhp @@ -7628,7 +7628,7 @@ "hd_id3147173\n" "help.text" msgid "Transpose" -msgstr "" +msgstr "Transponuj" #. yGdbE #: 02070000.xhp @@ -7637,7 +7637,7 @@ "par_id3147223\n" "help.text" msgid "The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows." -msgstr "" +msgstr "Rzędy zakresu w schowku są wklejane, aby stały się kolumnami zakresu wyjściowego. Kolumny zakresu w schowku są wklejane i stają się wierszami." #. WFn3f #: 02070000.xhp @@ -7646,7 +7646,7 @@ "hd_id3152971\n" "help.text" msgid "Link" -msgstr "" +msgstr "Połącz" #. HCLBh #: 02070000.xhp @@ -7655,7 +7655,7 @@ "par_id3146969\n" "help.text" msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected." -msgstr "" +msgstr "Wstawia zakres komórek jako łącze, dzięki czemu zmiany dokonane w komórkach w pliku źródłowym są aktualizowane w pliku docelowym. Aby upewnić się, że zmiany dokonane w pustych komórkach w pliku źródłowym zostaną zaktualizowane w pliku docelowym, upewnij się, że opcja „Wklej wszystko” jest również zaznaczona." #. 5BxP6 #: 02070000.xhp @@ -7673,7 +7673,7 @@ "hd_id3146914\n" "help.text" msgid "Shift Cells" -msgstr "" +msgstr "Przesuń komórki" #. fjeGH #: 02070000.xhp @@ -7682,7 +7682,7 @@ "par_id3145169\n" "help.text" msgid "Set the shift options for the target cells when the clipboard content is inserted." -msgstr "" +msgstr "Ustaw opcje przesunięcia dla komórek docelowych po wstawieniu zawartości schowka." #. 2tqEi #: 02070000.xhp @@ -7691,7 +7691,7 @@ "hd_id3155518\n" "help.text" msgid "Don't shift" -msgstr "" +msgstr "Nie przesuwaj" #. JLew4 #: 02070000.xhp @@ -7700,7 +7700,7 @@ "par_id3154158\n" "help.text" msgid "Inserted cells replace the target cells." -msgstr "" +msgstr "Wstawione komórki zastępują komórki docelowe." #. 7pWWW #: 02070000.xhp @@ -7709,7 +7709,7 @@ "hd_id3148483\n" "help.text" msgid "Down" -msgstr "" +msgstr "W dół" #. jVBVg #: 02070000.xhp @@ -7718,7 +7718,7 @@ "par_id3152962\n" "help.text" msgid "Target cells are shifted downward when you insert cells from the clipboard." -msgstr "" +msgstr "Komórki docelowe są przesuwane w dół po wstawieniu komórek ze schowka." #. JJojt #: 02070000.xhp @@ -7727,7 +7727,7 @@ "hd_id3145621\n" "help.text" msgid "Right" -msgstr "" +msgstr "W prawo" #. ncgjJ #: 02070000.xhp @@ -7736,7 +7736,7 @@ "par_id3159264\n" "help.text" msgid "Target cells are shifted to the right when you insert cells from the clipboard." -msgstr "" +msgstr "Komórki docelowe są przesuwane w prawo po wstawieniu komórek ze schowka." #. 2fEf3 #: 02090000.xhp @@ -7763,7 +7763,7 @@ "par_id3149999\n" "help.text" msgid "Selects the entire content of the current file, frame, or text object." -msgstr "" +msgstr "Zaznacza całą zawartość bieżącego pliku, ramki lub obiektu tekstowego." #. YDU8D #: 02090000.xhp @@ -7772,7 +7772,7 @@ "par_id3155261\n" "help.text" msgid "To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet." -msgstr "" +msgstr "Aby zaznaczyć wszystkie komórki w arkuszu, kliknij przycisk na przecięciu główki kolumny i wiersza w lewym górnym rogu arkusza." #. b9EJG #: 02090000.xhp @@ -7781,7 +7781,7 @@ "par_id3154046\n" "help.text" msgid "To select all of the sheets in a spreadsheet file, right-click the name tab of a sheet, and then choose Select All Sheets. Selects all of the sheets in the current spreadsheet." -msgstr "" +msgstr "Aby zaznaczyć wszystkie arkusze w pliku arkusza kalkulacyjnego, kliknij prawym przyciskiem myszy kartę nazwy arkusza, a następnie wybierz Zaznacz wszystkie arkusze. Zaznacza wszystkie arkusze w bieżącym arkuszu kalkulacyjnym." #. C8Qow #: 02100000.xhp @@ -7799,7 +7799,7 @@ "bm_id501629842533945\n" "help.text" msgid "Find & Replace dialog" -msgstr "" +msgstr "Okno dialogowe Znajdź i zamień" #. FGyuJ #: 02100000.xhp @@ -7817,7 +7817,7 @@ "par_id3149893\n" "help.text" msgid " Finds or replaces text or formats in the current document. " -msgstr "" +msgstr " Znajduje lub zastępuje tekst lub formaty w bieżącym dokumencie. " #. 2c3d6 #: 02100000.xhp @@ -7826,7 +7826,7 @@ "par_id00001\n" "help.text" msgid "Type the text to search in the current document. Press Enter to search the text." -msgstr "" +msgstr "Wpisz tekst do wyszukania w bieżącym dokumencie. Naciśnij Enter, aby wyszukać tekst." #. 3swkZ #: 02100000.xhp @@ -7898,7 +7898,7 @@ "par_id3154760\n" "help.text" msgid " Matches the exact character provided in the Find box without considering any alternative case matches. " -msgstr "" +msgstr "Dokładnie dopasowuje znak podany w polu Znajdź bez uwzględnienia alternatywnych dopasowań wielkości liter." #. jsLqT #: 02100000.xhp @@ -7907,7 +7907,7 @@ "par_id811629842746430\n" "help.text" msgid "Disable this option to consider all possible case matches. For example, entering \"a\" in the Find box matches both \"a\" and \"A\"." -msgstr "" +msgstr "Wyłącz tę opcję, aby uwzględnić wszystkie możliwe dopasowania wielkości liter. Na przykład wpisanie „a” w polu Znajdź odpowiada zarówno „a”, jak i „A”." #. F9EPB #: 02100000.xhp @@ -7925,7 +7925,7 @@ "bm_id891558923816062\n" "help.text" msgid "searching;formatted numbers searching;formatted display finding;formatted numbers finding;formatted display" -msgstr "" +msgstr "wyszukiwanie;sformatowane liczbywyszukiwanie;sformatowane wyświetlanieznajdowanie;sformatowane liczby znajdowanie;uwzględniaj formatowanie komórki" #. UnzxV #: 02100000.xhp @@ -7934,7 +7934,7 @@ "hd_id261558922782067\n" "help.text" msgid "Formatted display" -msgstr "" +msgstr "Uwzględniaj formatowanie komórki" #. sG3fC #: 02100000.xhp @@ -7943,7 +7943,7 @@ "par_id971558923550517\n" "help.text" msgid "Includes number formatting characters in the search." -msgstr "" +msgstr "Uwzględnia w wyszukiwaniu znaki formatujące liczby." #. QN28h #: 02100000.xhp @@ -7952,7 +7952,7 @@ "hd_id3148538\n" "help.text" msgid " Entire Cells Whole words only " -msgstr "" +msgstr " Całe komórki Tylko całe słowa " #. FBomz #: 02100000.xhp @@ -7961,7 +7961,7 @@ "par_id3149579\n" "help.text" msgid " Searches for whole words or cells that are identical to the search text. " -msgstr "" +msgstr "Wyszukuje całe słowa lub komórki, które są identyczne z wyszukiwanym tekstem." #. GjHVg #: 02100000.xhp @@ -7970,7 +7970,7 @@ "bm_id3152960\n" "help.text" msgid "searching; all sheets finding; in all sheets sheets; searching all" -msgstr "" +msgstr "wyszukiwanie; wszystkie arkuszewyszukiwanie; we wszystkich arkuszacharkuszach; przeszukiwanie wszystkich" #. 4ARiJ #: 02100000.xhp @@ -7979,7 +7979,7 @@ "hd_id3152960\n" "help.text" msgid " All sheets " -msgstr "" +msgstr " Wszystkie arkusze " #. dQCPM #: 02100000.xhp @@ -7988,7 +7988,7 @@ "par_id3145619\n" "help.text" msgid " Searches through all of the sheets in the current spreadsheet file. " -msgstr "" +msgstr "Przeszukuje wszystkie arkusze w bieżącym pliku arkusza kalkulacyjnego." #. D5Jko #: 02100000.xhp @@ -8024,7 +8024,7 @@ "par_id3150506\n" "help.text" msgid "Replacement options are listed under the Find box and in the Other options area of the dialog." -msgstr "" +msgstr "Opcje zamiany są wymienione w polu Znajdź oraz w obszarze Inne opcje okna dialogowego." #. hA2sP #: 02100000.xhp @@ -8069,7 +8069,7 @@ "par_id301020161412471558\n" "help.text" msgid "Finds and selects the previous occurrence of the text or format that you are searching for in the document." -msgstr "" +msgstr "Wyszukuje i zaznacza poprzednie wystąpienie szukanego tekstu lub formatu w dokumencie." #. NDcxk #: 02100000.xhp @@ -8087,7 +8087,7 @@ "par_id3147436\n" "help.text" msgid "Finds and selects the next occurrence of the text or format that you are searching for in the document." -msgstr "" +msgstr "Wyszukuje i zaznacza poprzednie wystąpienie szukanego tekstu lub formatu w dokumencie." #. kR3DG #: 02100000.xhp @@ -8123,7 +8123,7 @@ "par_id3145660\n" "help.text" msgid "Replaces all of the occurrences of the text or format that you want to replace. Repeat this command until all replacements on your slide have been made. " -msgstr "" +msgstr "Zastępuje wszystkie wystąpienia tekstu lub formatu, który chcesz zastąpić. Powtarzaj to polecenie, aż wszystkie zastąpienia na Twoim slajdzie zostaną wykonane." #. vUDHU #: 02100000.xhp @@ -8213,7 +8213,7 @@ "hd_id3144439\n" "help.text" msgid " Regular expressions " -msgstr "" +msgstr " Wyrażenie regularne " #. YTjDH #: 02100000.xhp @@ -8222,7 +8222,7 @@ "par_id3155342\n" "help.text" msgid " Allows you to use regular expressions in your search. " -msgstr "" +msgstr "Umożliwia używanie wyrażeń regularnych w wyszukiwaniu." #. JTXQw #: 02100000.xhp @@ -8231,7 +8231,7 @@ "par_id3727225\n" "help.text" msgid "Allows you to use regular expressions in your search." -msgstr "" +msgstr "Pozwala używać wyrażeń regularnych w wyszukiwaniu." #. gDuQb #: 02100000.xhp @@ -8240,7 +8240,7 @@ "par_id8876918\n" "help.text" msgid "Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Find list. To specify a replacement style, select a style from the Replace list." -msgstr "" +msgstr "Wyszukuje tekst sformatowany przy użyciu określonego stylu. Zaznacz to pole wyboru, a następnie wybierz styl z listy Znajdź. Aby określić styl zastępczy, wybierz styl z listy Zamień." #. LYkeX #: 02100000.xhp @@ -8249,7 +8249,7 @@ "hd_id3153524\n" "help.text" msgid " Paragraph Styles / Including Styles Cell Styles " -msgstr "" +msgstr " Style akapitu / Łącznie ze stylami Style komórki " #. sg7R3 #: 02100000.xhp @@ -8294,7 +8294,7 @@ "par_id3145421\n" "help.text" msgid " Lets you specify the search options for similar notation used in Japanese text. Select this checkbox, and then click the Sounds button to specify the search options. " -msgstr "" +msgstr " Umożliwia określenie opcji wyszukiwania dla podobnej notacji używanej w tekście japońskim. Zaznacz to pole wyboru, a następnie kliknij przycisk Dźwięki, aby określić opcje wyszukiwania. " #. pCFVE #: 02100000.xhp @@ -8303,7 +8303,7 @@ "par_id3149765\n" "help.text" msgid " Sets the search options for similar notation used in Japanese text. " -msgstr "" +msgstr " Ustawia opcje wyszukiwania dla podobnej notacji używanej w tekście japońskim. " #. buRmS #: 02100000.xhp @@ -8321,7 +8321,7 @@ "par_id931610137016377\n" "help.text" msgid "Diacritic-sensitive" -msgstr "" +msgstr "Uwzględniaj znaki diakrytyczne" #. EPgE9 #: 02100000.xhp @@ -8330,7 +8330,7 @@ "par_id411610137146460\n" "help.text" msgid "Searches exact match, does not include Unicode combining marks in search. For example, searching for كتب will not match كَتَبَ or كُتُب or كتِب and so on." -msgstr "" +msgstr "Wyszukuje dokładne dopasowanie, nie obejmuje znaków łączenia Unicode w wyszukiwaniu. Na przykład wyszukiwanie كتب nie będzie pasować do كَتَبَ, كُتُب, كتِب i tak dalej." #. 9VnEk #: 02100000.xhp @@ -8339,7 +8339,7 @@ "par_id881610137232495\n" "help.text" msgid "Kashida-sensitive" -msgstr "" +msgstr "Uwzględniaj kashidę" #. EPcDw #: 02100000.xhp @@ -8348,7 +8348,7 @@ "par_id871610137311451\n" "help.text" msgid "Searches exact match, does not include Arabic Tatweel mark U+0640 (also known as Kashida) in search. For example, searching for كتاب will not match كـتاب or كتــــاب and so on." -msgstr "" +msgstr "Wyszukuje dokładne dopasowanie, nie obejmuje arabskiego znaku tatwil U+0640 (znanego również jako kashida) w wyszukiwaniu. Na przykład wyszukiwanie كتاب nie będzie pasować do كـتاب lub كتــــاب i tak dalej." #. WAxVa #: 02100000.xhp @@ -8384,7 +8384,7 @@ "par_idN109CC\n" "help.text" msgid "After you select format and attributes that you want to search for, the Paragraph Styles checkbox in the Other options area changes to Including Styles. Select this checkbox if you want to include search for formatting and attributes set by styles." -msgstr "" +msgstr "Po wybraniu formatu i atrybutów, które chcesz wyszukać, pole wyboru Style akapitu w obszarze Inne opcje zmieni się na Łącznie ze stylami. Zaznacz to pole wyboru, jeśli chcesz uwzględnić wyszukiwanie formatowania i atrybutów ustawionych według stylów." #. 9Kfn4 #: 02100000.xhp @@ -8393,7 +8393,7 @@ "hd_id3154188\n" "help.text" msgid " No Format " -msgstr "" +msgstr " Bez formatu " #. U8isj #: 02100000.xhp @@ -8402,7 +8402,7 @@ "par_id3159155\n" "help.text" msgid " Click in the Find or the Replace box, and then click this button to remove the search criteria based on formats. " -msgstr "" +msgstr " Kliknij pole Znajdź lub Zamień, a następnie kliknij ten przycisk, aby usunąć kryteria wyszukiwania oparte na formatach. " #. RD9Dh #: 02100000.xhp @@ -8411,7 +8411,7 @@ "par_id1334269\n" "help.text" msgid "Click in the Find or the Replace box, and then click this button to remove the search criteria based on formats." -msgstr "" +msgstr "Kliknij pole Znajdź lub Zamień, a następnie kliknij ten przycisk, aby usunąć kryteria wyszukiwania oparte na formatach." #. G7HWJ #: 02100000.xhp @@ -8420,7 +8420,7 @@ "par_id3150337\n" "help.text" msgid "The search and replace criteria selected for Format and Attributes are displayed under the Find and Replace boxes." -msgstr "" +msgstr "Kryteria wyszukiwania i zamiany wybrane dla opcji Format i Atrybuty są wyświetlane w polach Znajdź i Zamień." #. 9Z6qm #: 02100000.xhp @@ -8429,7 +8429,7 @@ "hd_id3153004\n" "help.text" msgid " Direction " -msgstr "" +msgstr " Kierunek " #. DM8Er #: 02100000.xhp @@ -8438,7 +8438,7 @@ "par_id3156332\n" "help.text" msgid " Determines the order for searching the cells. " -msgstr "" +msgstr " Określa kolejność wyszukiwania komórek. " #. zFwLm #: 02100000.xhp @@ -8447,7 +8447,7 @@ "hd_id3155064\n" "help.text" msgid " Rows " -msgstr "" +msgstr " Wiersze " #. TAnrV #: 02100000.xhp @@ -8456,7 +8456,7 @@ "par_id301020161457217894\n" "help.text" msgid " Searches from left to right across the rows. " -msgstr "" +msgstr " Przeszukuje wiersze od lewej do prawej. " #. XN5B4 #: 02100000.xhp @@ -8474,7 +8474,7 @@ "hd_id3156277\n" "help.text" msgid " Columns " -msgstr "" +msgstr " Kolumny " #. drjqY #: 02100000.xhp @@ -8483,7 +8483,7 @@ "par_id3145207\n" "help.text" msgid " Searches from top to bottom through the columns. " -msgstr "" +msgstr " Przeszukuje kolumny od góry do dołu. " #. DKdyD #: 02100000.xhp @@ -8501,7 +8501,7 @@ "hd_id3154944\n" "help.text" msgid " Search in " -msgstr "" +msgstr " Szukaj w " #. GpAnn #: 02100000.xhp @@ -8510,7 +8510,7 @@ "hd_id3146925\n" "help.text" msgid " Formulas " -msgstr "" +msgstr " Formuły " #. BsCkZ #: 02100000.xhp @@ -8519,7 +8519,7 @@ "par_id301020161448509633\n" "help.text" msgid " Searches for the characters that you specify in formulas and in fixed (not calculated) values. For example, you could look for formulas that contain 'SUM'. " -msgstr "" +msgstr " Wyszukuje określone znaki w formułach i wartościach stałych (nieobliczonych). Możesz na przykład wyszukać formuły zawierające funkcję 'SUMA'. " #. 5Jw5w #: 02100000.xhp @@ -8537,7 +8537,7 @@ "hd_id3149400\n" "help.text" msgid " Values " -msgstr "" +msgstr " Wartości " #. g2dn5 #: 02100000.xhp @@ -8546,7 +8546,7 @@ "par_id3146969\n" "help.text" msgid " Searches for the characters that you specify in values and in the results of formulas. " -msgstr "" +msgstr " Wyszukuje znaki określone przez użytkownika w wartościach i w wynikach formuł. " #. aj5NM #: 02100000.xhp @@ -8564,7 +8564,7 @@ "hd_id3145650\n" "help.text" msgid " Comments " -msgstr "" +msgstr " Komentarze " #. BRdDC #: 02100000.xhp @@ -8573,7 +8573,7 @@ "par_id3153947\n" "help.text" msgid " Searches for the characters that you specify in the comments that are attached to the cells. " -msgstr "" +msgstr " Wyszukuje znaki określone w komentarzach dołączonych do komórek. " #. psHFB #: 02100000.xhp @@ -8591,7 +8591,7 @@ "par_id3151101\n" "help.text" msgid "After you close the Find & Replace dialog, you can still search using the last search criteria that you entered, by pressing Shift+CommandCtrl+F." -msgstr "" +msgstr "Po zamknięciu okna dialogowego Znajdź i zamień nadal możesz wyszukiwać według ostatnio wprowadzonych kryteriów, naciskając Shift+CommandCtrl+F." #. GspKW #: 02100001.xhp @@ -8609,7 +8609,7 @@ "bm_id3146765\n" "help.text" msgid "regular expressions; list ofregular expressions; new lineregular expressions; empty paragraphregular expressions; begin of wordregular expressions; begin of paragraphregular expressions; end of paragraphlists; regular expressionsreplacing; tab stops (regular expressions)tab stops; regular expressionsconcatenation, see ampersand symbolampersand symbol, see also operators" -msgstr "" +msgstr "wyrażenia regularne; listawyrażenia regularne; nowy wierszwyrażenia regularne; pusty akapitwyrażenia regularne; początek słowawyrażenia regularne; początek akapituwyrażenia regularne; koniec akapitulisty; wyrażenia regularnezastępowanie; tabulatory (wyrażenia regularne)tabulatory; wyrażenia regularnekonkatenacja, zobacz symbol ampersandsymbol ampersand, zobacz też operatory" #. hKBwP #: 02100001.xhp @@ -8627,7 +8627,7 @@ "par_id3149741\n" "help.text" msgid "Term" -msgstr "" +msgstr "Wyrażenie" #. vESi8 #: 02100001.xhp @@ -8636,7 +8636,7 @@ "par_id3155577\n" "help.text" msgid "Representation/Use" -msgstr "" +msgstr "Znaczenie i użycie" #. UjXoc #: 02100001.xhp @@ -8654,7 +8654,7 @@ "par_id9824518.00000001\n" "help.text" msgid "The given character, unless it is a regular expression meta character. The list of meta characters follows in this table." -msgstr "" +msgstr "Podany znak, chyba że jest to metaznak wyrażenia regularnego. Lista metaznaków znajduje się w tej tabeli." #. NoqA6 #: 02100001.xhp @@ -8663,7 +8663,7 @@ "par_id3149031\n" "help.text" msgid "Any single character except a line break or a paragraph break. For example, the search term \"sh.rt\" matches both \"shirt\" and \"short\"." -msgstr "" +msgstr "Dowolny pojedynczy znak z wyjątkiem końca wiersza lub końca akapitu. Na przykład wyszukiwane hasło „b.s” pasuje zarówno do „bus”, jak i „bas”." #. qMXRu #: 02100001.xhp @@ -8672,7 +8672,7 @@ "par_id3155351\n" "help.text" msgid "The beginning of a paragraph or cell. Special objects such as empty fields or character-anchored frames, at the beginning of a paragraph are ignored. Example: \"^Peter\" matches the word \"Peter\" only when it is the first word of a paragraph." -msgstr "" +msgstr "Początek akapitu lub komórki. Obiekty specjalne, takie jak puste pola lub ramki zakotwiczone w znakach, na początku akapitu są ignorowane. Przykład: „^Piotr” pasuje do słowa „Piotr” tylko wtedy, gdy jest to pierwsze słowo akapitu." #. NxhF9 #: 02100001.xhp @@ -8681,7 +8681,7 @@ "par_id3152542\n" "help.text" msgid "The end of a paragraph or cell. Special objects such as empty fields or character-anchored frames at the end of a paragraph are ignored. Example: \"Peter$\" matches only when the word \"Peter\" is the last word of a paragraph, note \"Peter\" cannot be followed by a period." -msgstr "" +msgstr "Koniec akapitu lub komórki. Obiekty specjalne, takie jak puste pola lub ramki zakotwiczone w znakach na końcu akapitu, są ignorowane. Przykład: „Piotr$” pasuje tylko wtedy, gdy słowo „Piotr” jest ostatnim słowem akapitu, należy pamiętać, że słowa „Piotr” nie może poprzedzać kropka." #. oMTnF #: 02100001.xhp @@ -8699,7 +8699,7 @@ "par_id3155555\n" "help.text" msgid "Zero or more of the regular expression term immediately preceding it. For example, \"Ab*c\" matches \"Ac\", \"Abc\", \"Abbc\", \"Abbbc\", and so on." -msgstr "" +msgstr "Zero lub więcej terminu wyrażenia regularnego bezpośrednio go poprzedzającego. Na przykład „Ab*c” pasuje do „Ac”, „Abc”, „Abbc”, „Abbbc” itd." #. YUSaM #: 02100001.xhp @@ -8708,7 +8708,7 @@ "par_id3157958\n" "help.text" msgid "One or more of the regular expression term immediately preceding it. For example, \"AX.+4\" finds \"AXx4\", but not \"AX4\"." -msgstr "" +msgstr "Co najmniej jeden termin wyrażenia regularnego bezpośrednio go poprzedzający. Na przykład „AX.+4” spowoduje znalezienie „AXx4”, ale nie „AX4”." #. LMvcH #: 02100001.xhp @@ -8717,7 +8717,7 @@ "par_id3145313\n" "help.text" msgid "The longest possible string that matches this regular expression in a paragraph is always matched. If the paragraph contains the string \"AX 4 AX4\", the entire passage is highlighted." -msgstr "" +msgstr "Zawsze dopasowywany jest najdłuższy możliwy ciąg pasujący do tego wyrażenia regularnego w akapicie. Jeśli akapit zawiera ciąg „AX 4 AX4”, cały fragment jest wyróżniony." #. mdVaj #: 02100001.xhp @@ -8726,7 +8726,7 @@ "par_id3153684\n" "help.text" msgid "Zero or one of the regular expression term immediately preceding it. For example, \"Texts?\" matches \"Text\" and \"Texts\" and \"x(ab|c)?y\" finds \"xy\", \"xaby\", or \"xcy\"." -msgstr "" +msgstr "Zero lub jeden z terminów wyrażenia regularnego bezpośrednio go poprzedzający. Na przykład „Teksty?” pasuje do „Tekst” i „Teksty”, a „x(ab|c)?y” powoduje znalezienie „xy”, „xaby” lub „xcy”." #. zyaC5 #: 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 "" +msgstr "Następujący po nim znak specjalny jest interpretowany jako zwykły znak, a nie jako metaznak wyrażenia regularnego (z wyjątkiem kombinacji „\\n”, „\\t”, „\\b”, „\\>” i „\\<”) . Na przykład „drzewo\\”. dopasowuje „drzewo”, a nie „drzewu” lub „drzewa”." #. sDmtU #: 02100001.xhp @@ -8771,7 +8771,7 @@ "par_id3157809\n" "help.text" msgid "A tab character. Can also be used in the Replace box." -msgstr "" +msgstr "Znak tabulacji. Można również użyć w polu Zamień." #. wimpC #: 02100001.xhp @@ -8780,7 +8780,7 @@ "par_id3153666\n" "help.text" msgid "A word boundary. For example, \"\\bbook\" matches \"bookmark\" and \"book\" but not \"checkbook\" whereas \"book\\b\" matches \"checkbook\" and \"book\" but not \"bookmark\"." -msgstr "" +msgstr "Granica słowa. Na przykład „\\bwaga” pasuje do „wagant” i „waga”, ale nie do „równowaga”, podczas gdy „waga\\b” pasuje do „równowaga” i „waga”, ale nie do „wagant”." #. rGGpb #: 02100001.xhp @@ -8789,7 +8789,7 @@ "par_id851559575484466\n" "help.text" msgid "Note, this form replaces the obsolete (although they still work for now) forms \"\\>\" (match end of word) and \"\\<\" (match start of word)." -msgstr "" +msgstr "Zauważ, że ten formularz zastępuje przestarzałe (chociaż nadal działające) formularze „\\>” (dopasowuje koniec słowa) i „\\<” (dopasowuje początek słowa)." #. CLz2y #: 02100001.xhp @@ -8825,7 +8825,7 @@ "par_id3153961\n" "help.text" msgid "Adds the string that was found by the search criteria in the Find box to the term in the Replace box when you make a replacement." -msgstr "" +msgstr "Dodaje ciąg znaleziony przez kryteria wyszukiwania w polu Znajdź do terminu w polu Zamień, gdy dokonujesz zamiany." #. GeEfv #: 02100001.xhp @@ -8834,7 +8834,7 @@ "par_id3149650\n" "help.text" msgid "For example, if you enter \"window\" in the Find box and \"&frame\" in the Replace box, the word \"window\" is replaced with \"windowframe\"." -msgstr "" +msgstr "Na przykład, jeśli wpiszesz \"rama\" w polu Znajdź i \"&anty\" w polu Zamień, słowo \"rama\" zostanie zastąpione słowem \"antyrama\"." #. i8gW8 #: 02100001.xhp @@ -8843,7 +8843,7 @@ "par_id3150543\n" "help.text" msgid "You can also enter an \"&\" in the Replace box to modify the Attributes or the Format of the string found by the search criteria." -msgstr "" +msgstr "Możesz także wpisać znak „&” w polu Zamień, aby zmodyfikować Atrybuty lub Format ciągu znalezionego według kryteriów wyszukiwania." #. vQ3mE #: 02100001.xhp @@ -8852,7 +8852,7 @@ "par_id3154630\n" "help.text" msgid "Any single occurrence of any one of the characters that are between the brackets. For example: \"[abc123]\" matches the characters ‘a’, ‘b’, ’c’, ‘1’, ‘2’ and ‘3’. \"[a-e]\" matches single occurrences of the characters a through e, inclusive (the range must be specified with the character having the smallest Unicode code number first). \"[a-eh-x]\" matches any single occurrence of the characters that are in the ranges ‘a’ through ‘e’ and ‘h’ through ‘x’." -msgstr "" +msgstr "Dowolne pojedyncze wystąpienie dowolnego znaku znajdującego się w nawiasach. Na przykład: „[abc123]” odpowiada znakom „a”, „b”, „c”, „1”, „2” i „3”. „[a-e]” dopasowuje pojedyncze wystąpienia znaków od a do e włącznie (zakres musi być określony, zaczynając od znaku o najmniejszym numerze kodu Unicode). „[a-eh-x]” pasuje do każdego pojedynczego wystąpienia znaków z zakresu od „a” do „e” i od „h” do „x”." #. VGtpx #: 02100001.xhp @@ -8861,7 +8861,7 @@ "par_id3149167\n" "help.text" msgid "Any single occurrence of a character, including Tab, Space and Line Break characters, that is not in the list of characters specified inclusive ranges are permitted. For example \"[^a-syz]\" matches all characters not in the inclusive range ‘a’ through ‘s’ or the characters ‘y’ and ‘z’." -msgstr "" +msgstr "Dozwolone jest każde pojedyncze wystąpienie znaku, w tym tabulatora, spacji i końca wiersza, którego nie ma na liście znaków z określonym zakresem. Na przykład „[^a-syz]” dopasowuje wszystkie znaki spoza zakresu od „a” do „s” lub znaki „y” i „z”." #. tNwDD #: 02100001.xhp @@ -8870,7 +8870,7 @@ "par_id3153768\n" "help.text" msgid "The character represented by the four-digit hexadecimal Unicode code (XXXX)." -msgstr "" +msgstr "Znak reprezentowany przez czterocyfrowy szesnastkowy kod Unicode (XXXX)." #. Xp9AR #: 02100001.xhp @@ -8879,7 +8879,7 @@ "par_id3153769\n" "help.text" msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)." -msgstr "" +msgstr "Znak reprezentowany przez ośmiocyfrowy szesnastkowy kod Unicode (XXXXXXXX)." #. kC97E #: 02100001.xhp @@ -8888,7 +8888,7 @@ "par_id3159252\n" "help.text" msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than what is actually used for it in the font. The Unicode codes can be viewed by choosing Insert - Special Character, or by using Unicode conversion shortcut." -msgstr "" +msgstr "W przypadku niektórych czcionek symboli symbol (glif) widoczny na ekranie może wyglądać na powiązany z innym kodem Unicode niż ten, który jest faktycznie użyty w czcionce. Kody Unicode można wyświetlić, wybierając Wstaw - Znak specjalny lub używając skrótu konwersji Unicode." #. 6Swuu #: 02100001.xhp @@ -8897,7 +8897,7 @@ "par_id3154985\n" "help.text" msgid "The infix operator delimiting alternatives. Matches the term preceding the \"|\" or the term following the \"|\". For example, \"this|that\" matches occurrences of both \"this\" and \"that\"." -msgstr "" +msgstr "Operator wrostka ograniczający alternatywy. Dopasowuje termin poprzedzający znak „|” lub termin następujący po „|”. Na przykład „to|tamto” pasuje do wystąpień zarówno „to”, jak i „tamto”." #. 8RnED #: 02100001.xhp @@ -8906,7 +8906,7 @@ "par_id3150103\n" "help.text" msgid "The post-fix repetition operator that specifies an exact number of occurrences (\"N\") of the regular expression term immediately preceding it must be present for a match to occur. For example, \"tre{2}\" matches \"tree\"." -msgstr "" +msgstr "Operator powtarzania po fiksie, który określa dokładną liczbę wystąpień („N”) terminu wyrażenia regularnego bezpośrednio go poprzedzającego, musi być obecny, aby wystąpiło dopasowanie. Na przykład „tre{2}” pasuje do „tree”." #. EVGGD #: 02100001.xhp @@ -8915,7 +8915,7 @@ "par_id3147317\n" "help.text" msgid "The post-fix repetition operator that specifies a range (minimum of \"N\" to a maximum of \"M\") of occurrences of the regular expression term immediately preceding it that can be present for a match to occur. For example, \"tre{1,2}\" matches \"tre\" and \"tree\"." -msgstr "" +msgstr "Operator powtarzania po fiksie, który określa zakres (minimum „N” do maksimum „M”) wystąpień terminu wyrażenia regularnego bezpośrednio go poprzedzającego, który może być obecny, aby wystąpiło dopasowanie. Na przykład „tre{1,2}” pasuje do „tre” i „tree”." #. Awzam #: 02100001.xhp @@ -8924,7 +8924,7 @@ "par_id843836\n" "help.text" msgid "The post-fix repetition operator that specifies a range (minimum \"N\" to an unspecified maximum) of occurrences of the regular expression term immediately preceding it that can be present for a match to occur. (The maximum number of occurrences is limited only by the size of the document). For example, \"tre{2,}\" matches \"tree\", \"treee\", and \"treeeee\"." -msgstr "" +msgstr "Operator powtarzania po fiksie, który określa zakres (od minimum „N” do nieokreślonego maksimum) wystąpień terminu wyrażenia regularnego bezpośrednio go poprzedzającego, który może być obecny, aby nastąpiło dopasowanie. (Maksymalna liczba wystąpień jest ograniczona jedynie wielkością dokumentu). Na przykład „tre{2,}” pasuje do „tree”, „treee” i „treeeee”." #. yWFFT #: 02100001.xhp @@ -8933,7 +8933,7 @@ "par_id91559576682961\n" "help.text" msgid "The grouping construct that serves three purposes." -msgstr "" +msgstr "Konstrukcja grupująca służąca trzem celom." #. A9ZHn #: 02100001.xhp @@ -8942,7 +8942,7 @@ "par_id871559576709007\n" "help.text" msgid "To enclose a set of ‘|’ alternatives. For example, the regular expression \"b(oo|ac)k\" matches both \"book\" and \"back\"." -msgstr "" +msgstr "Aby dołączyć zestaw alternatyw „|”. Na przykład wyrażenie regularne „b(oo|ac)k” pasuje zarówno do „book”, jak i „back”." #. zeknH #: 02100001.xhp @@ -8951,7 +8951,7 @@ "par_id891559576747109\n" "help.text" msgid "To group terms in a complex expression to be operated on by the post-fix operators: \"*\", \"+\" and \"?\" along with the post-fix repetition operators. For example, the regular expression \"a(bc)?d\" matches both \"ad\" and \"abcd\" in a search.; the regular expression \"M(iss){2}ippi\" matches \"Mississippi\"." -msgstr "" +msgstr "Aby pogrupować terminy w wyrażeniu złożonym, na którym mają działać operatory przyrostkowe: „*”, „+” i „?” wraz z operatorami powtórzeń przyrostkowych. Na przykład wyrażenie regularne „a(bc)?d” pasuje do wyszukiwania „ad” i „abcd”; wyrażenie regularne „M(iss){2}ippi” odpowiada „Mississippi”." #. CAKwA #: 02100001.xhp @@ -8960,7 +8960,7 @@ "par_id801559576780692\n" "help.text" msgid "To record the matched sub string inside the parentheses as a reference for later use in the Find box using the \"\\n\" construct or in the Replace box using the \"$n\" construct. The reference to the first match is represented by \"\\1\" in the Find box and by \"$1\" in the Replace box. The reference to the second matched sub string by \"\\2\" and \"$2\" respectively, and so on." -msgstr "" +msgstr "Aby zapisać pasujący ciąg podrzędny w nawiasach jako odniesienie do późniejszego wykorzystania w polu Znajdź przy użyciu konstrukcji \"\\n\" lub w polu Zamień przy użyciu zapisu „$n”. Odniesienie do pierwszego dopasowania jest reprezentowane przez „\\1” w polu Znajdź i przez „$1” w polu Zamień. Odwołanie do drugiego dopasowanego ciągu podrzędnego odpowiednio przez „\\2” i „$2” i tak dalej." #. ekwoG #: 02100001.xhp @@ -8969,7 +8969,7 @@ "par_id951559576846997\n" "help.text" msgid "For example, the regular expression \"(890)7\\1\\1\" matches \"8907890890\"." -msgstr "" +msgstr "Na przykład wyrażenie regularne „(890)7\\1\\1” pasuje do „8907890890”." #. FXv6A #: 02100001.xhp @@ -8978,7 +8978,7 @@ "par_id561559576865734\n" "help.text" msgid "With the regular expression \"\\b(fruit|truth)\\b\" in the Find box and the regular expression \"$1ful\" in the Replace box occurrences of the words \"fruit\" and \"truth\" can be replaced with the words \"fruitful\" and \"truthful\" respectively without affecting the words \"fruitfully\" and \"truthfully\"" -msgstr "" +msgstr "Za pomocą wyrażenia regularnego „\\b(owoc|moc)\\b” w polu Znajdź i wyrażenia regularnego „1$ny” w polu Zamień wystąpienia słów „owoc” i „moc” można odpowiednio zastąpić słowami „owocny ” i „mocny”, bez wpływu na słowa „owocna” i „mocna”" #. kKDeg #: 02100001.xhp @@ -9050,7 +9050,7 @@ "par_id3150092\n" "help.text" msgid "Represents an uppercase character if Match case is selected in Options." -msgstr "" +msgstr "Reprezentuje wielką literę, jeśli Uwzględniaj wielkość liter jest zaznaczone w Opcjach." #. Ezagm #: 02100001.xhp @@ -9068,7 +9068,7 @@ "par_id261559577375317\n" "help.text" msgid "Regular expression terms can be combined to form complex and sophisticated regular expressions for searches as show in the following examples." -msgstr "" +msgstr "Terminy wyrażeń regularnych można łączyć, tworząc złożone i wyrafinowane wyrażenia regularne do wyszukiwania, jak pokazano w poniższych przykładach." #. piA3n #: 02100001.xhp @@ -9086,7 +9086,7 @@ "par_id901559577400292\n" "help.text" msgid "Expression" -msgstr "" +msgstr "Wyrażenie" #. bxE4P #: 02100001.xhp @@ -9095,7 +9095,7 @@ "par_id381559577400292\n" "help.text" msgid "Meaning" -msgstr "" +msgstr "Znaczenie" #. ySBpJ #: 02100001.xhp @@ -9104,7 +9104,7 @@ "par_id621559577542068\n" "help.text" msgid "An empty paragraph." -msgstr "" +msgstr "Pusty akapit." #. LhRmN #: 02100001.xhp @@ -9113,7 +9113,7 @@ "par_id311559577563701\n" "help.text" msgid "^ specifies that the match must be at the start of a paragraph," -msgstr "" +msgstr "^ określa, że dopasowanie musi znajdować się na początku akapitu," #. Dtryp #: 02100001.xhp @@ -9122,7 +9122,7 @@ "par_id391559577592658\n" "help.text" msgid "$ specifies that a paragraph mark or the end of a cell must follow the matched string." -msgstr "" +msgstr "$ określa, że znak akapitu lub koniec komórki musi następować po dopasowanym ciągu znaków." #. xuz38 #: 02100001.xhp @@ -9131,7 +9131,7 @@ "par_id771559577837101\n" "help.text" msgid "The first character of a paragraph." -msgstr "" +msgstr "Pierwszy znak akapitu." #. DwGtk #: 02100001.xhp @@ -9140,7 +9140,7 @@ "par_id171559577924884\n" "help.text" msgid ". specifies any single character." -msgstr "" +msgstr ". określa dowolny pojedynczy znak." #. cJukB #: 02100001.xhp @@ -9149,7 +9149,7 @@ "par_id471559577961403\n" "help.text" msgid "Matches \"e\" by itself or an \"e\" followed by one digit." -msgstr "" +msgstr "Dopasowuje sam znak „e” lub „e”, po którym następuje jedna cyfra." #. kFwGK #: 02100001.xhp @@ -9158,7 +9158,7 @@ "par_id421559578050163\n" "help.text" msgid "e specifies the character \"e\"," -msgstr "" +msgstr "e określa znak „e”," #. D5zng #: 02100001.xhp @@ -9167,7 +9167,7 @@ "par_id591559578054502\n" "help.text" msgid "[:digit:] specifies any decimal digit," -msgstr "" +msgstr "[:digit:] określa dowolną cyfrę dziesiętną," #. 7TE4A #: 02100001.xhp @@ -9176,7 +9176,7 @@ "par_id341559578058972\n" "help.text" msgid "? specifies zero or one occurrences of [:digit:]." -msgstr "" +msgstr "? określa zero lub jedno wystąpienie [:digit:]." #. My3BF #: 02100001.xhp @@ -9185,7 +9185,7 @@ "par_id551559578087559\n" "help.text" msgid "Matches a paragraph or cells containing exactly one digit." -msgstr "" +msgstr "Dopasowuje akapit lub komórki zawierające dokładnie jedną cyfrę." #. iF9o3 #: 02100001.xhp @@ -9194,7 +9194,7 @@ "par_id771559578184372\n" "help.text" msgid "Matches a paragraph or cell containing only three digit numbers" -msgstr "" +msgstr "Dopasowuje akapit lub komórkę zawierającą tylko trzycyfrowe liczby" #. Pu2qz #: 02100001.xhp @@ -9203,7 +9203,7 @@ "par_id401559578501329\n" "help.text" msgid "{3} specifies that [:digit:] must occur three times," -msgstr "" +msgstr "{3} określa, że [:digit:] musi wystąpić trzy razy," #. y6MUw #: 02100001.xhp @@ -9212,7 +9212,7 @@ "par_id131559578728924\n" "help.text" msgid "\\bconst(itu|ruc)tion\\b" -msgstr "" +msgstr "\\bkonst(ytut|ruk)cja\\b" #. 22cNV #: 02100001.xhp @@ -9221,7 +9221,7 @@ "par_id891559578728925\n" "help.text" msgid "Matches the words \"constitution\" and \"construction\" but not the word \"constitutional.\"" -msgstr "" +msgstr "Dopasowuje słowa „konstytucja” i „konstrukcja”, ale nie pasuje do słowa „konstytucyjny”." #. 9CxUF #: 02100001.xhp @@ -9230,7 +9230,7 @@ "par_id381559578787403\n" "help.text" msgid "\\b specifies that the match must begin at a word boundary," -msgstr "" +msgstr "\\b określa, że dopasowanie musi rozpocząć się na granicy słowa," #. WavE9 #: 02100001.xhp @@ -9239,7 +9239,7 @@ "par_id721559578792194\n" "help.text" msgid "const specifies the characters \"const\"," -msgstr "" +msgstr "konst określa znaki „konst”," #. 5YEKT #: 02100001.xhp @@ -9248,7 +9248,7 @@ "par_id941559578797721\n" "help.text" msgid "( starts the group," -msgstr "" +msgstr "( rozpoczyna grupę," #. 3ZGiA #: 02100001.xhp @@ -9257,7 +9257,7 @@ "par_id641559578802269\n" "help.text" msgid "itu specifies the characters \"itu\"," -msgstr "" +msgstr "ytut określa znaki „ytut”," #. 4AJBD #: 02100001.xhp @@ -9266,7 +9266,7 @@ "par_id271559578807054\n" "help.text" msgid "| specifies the alternative," -msgstr "" +msgstr "| określa alternatywę," #. HogR2 #: 02100001.xhp @@ -9275,7 +9275,7 @@ "par_id801559578813944\n" "help.text" msgid "ruc specifies the characters \"ruc\"," -msgstr "" +msgstr "ruk określa znaki „ruk”," #. gUAB3 #: 02100001.xhp @@ -9284,7 +9284,7 @@ "par_id421559578820595\n" "help.text" msgid ") ends the group," -msgstr "" +msgstr ") kończy grupę," #. AWN9H #: 02100001.xhp @@ -9293,7 +9293,7 @@ "par_id621559578825464\n" "help.text" msgid "tion specifies the characters \"tion\"," -msgstr "" +msgstr "cja określa znaki „cja”," #. TkAoJ #: 02100001.xhp @@ -9302,7 +9302,7 @@ "par_id91559578832058\n" "help.text" msgid "\\b specifies that the match must end at a word boundary." -msgstr "" +msgstr "\\b określa, że dopasowanie musi kończyć się na granicy słowa." #. K8QcW #: 02100001.xhp @@ -9374,7 +9374,7 @@ "par_id3145629\n" "help.text" msgid "Set the options for the similarity search." -msgstr "" +msgstr "Ustaw opcje wyszukiwania podobieństw." #. FLKW6 #: 02100100.xhp @@ -9455,7 +9455,7 @@ "hd_id3153700\n" "help.text" msgid "Combine" -msgstr "Zespalaj" +msgstr "Połącz" #. FfPQC #: 02100100.xhp @@ -9473,7 +9473,7 @@ "par_id491602292458634\n" "help.text" msgid "Using Combine better meets a user's expectations from looking at the settings, but may return false positives. Not using Combine may match less than expected, but does not return false positives." -msgstr "" +msgstr "Korzystanie z funkcji Połącz lepiej spełnia oczekiwania użytkownika, patrząc na ustawienia, ale może zwracać fałszywe alarmy. Nieużywanie Połącz może dopasować mniej niż oczekiwano, ale nie zwraca fałszywych trafień." #. 9xE34 #: 02100100.xhp @@ -9482,7 +9482,7 @@ "par_id401602236795437\n" "help.text" msgid "A Weighted Levenshtein Distance (WLD) algorithm is used. If Combine is not checked, then settings are treated as an exclusive-OR (strict WLD).If Combine is checked, then settings are treated as an inclusive-OR (relaxed WLD)." -msgstr "" +msgstr "Stosowany jest algorytm ważonej odległości Levenshteina (WLD). Jeśli opcja Połącz nie jest zaznaczona, ustawienia są traktowane jako wyłączne OR (ścisłe WLD). Jeśli opcja Połącz jest zaznaczona, ustawienia są traktowane jako obejmujące OR (luźne WLD)." #. eZ2dA #: 02100100.xhp @@ -9491,7 +9491,7 @@ "par_id371602294412458\n" "help.text" msgid "Be careful when using Replace All with Similarity Search. Best to be certain first about what will be found." -msgstr "" +msgstr "Zachowaj ostrożność podczas korzystania z opcji Zamień wszystkie z wyszukiwaniem podobieństw. Najlepiej najpierw upewnić się, co zostanie znalezione." #. Fvuvx #: 02100200.xhp @@ -9518,7 +9518,7 @@ "par_id3153331\n" "help.text" msgid "Choose the text attributes that you want to search for. For example, if you select the Outline attribute, then all characters formatted manually with an Outline effect are found. If you also want to find characters with an Outline effect as part of a style, then select Including styles in the Other Options section, before searching." -msgstr "" +msgstr "Wybierz atrybuty tekstu, które chcesz wyszukać. Na przykład, jeśli wybierzesz atrybut Kontur, zostaną znalezione wszystkie znaki sformatowane ręcznie z efektem Kontur. Jeśli chcesz również znaleźć postacie z efektem Kontur jako częścią stylu, przed rozpoczęciem wyszukiwania wybierz Łącznie ze stylami w sekcji Inne opcje." #. txC5Y #: 02100200.xhp @@ -9536,7 +9536,7 @@ "par_id3151384\n" "help.text" msgid "Select the attributes that you want to search for." -msgstr "" +msgstr "Wybierz atrybuty, które chcesz wyszukać." #. 3uGkF #: 02100200.xhp @@ -9563,7 +9563,7 @@ "hd_id3145068\n" "help.text" msgid "Do not split paragraph" -msgstr "" +msgstr "Nie dziel akapitu" #. vQHSb #: 02100200.xhp @@ -9572,7 +9572,7 @@ "par_id3147560\n" "help.text" msgid "Finds paragraphs with the Do not split paragraph attribute enabled." -msgstr "" +msgstr "Znajduje akapity z włączonym atrybutem Nie dziel akapitu." #. ZRhne #: 02100200.xhp @@ -9626,7 +9626,7 @@ "par_id3149203\n" "help.text" msgid "Finds characters that use a Case effect (Uppercase, Lowercase, Capitalize every word, or Small capitals)." -msgstr "" +msgstr "Wyszukuje znaki używające efektu wielkości (wielkie litery, małe litery, jak nazwy własne lub małe kapitaliki)." #. Ld5EJ #: 02100200.xhp @@ -9662,7 +9662,7 @@ "par_id3145746\n" "help.text" msgid "Finds characters formatted with the Strikethrough attribute." -msgstr "" +msgstr "Znajduje znaki sformatowane za pomocą atrybutu Przekreślenie." #. L2MCb #: 02100200.xhp @@ -9716,7 +9716,7 @@ "par_id3155132\n" "help.text" msgid "Finds Spacing (standard, expanded, condensed) attributes and pair kerning." -msgstr "" +msgstr "Znajduje atrybuty Odstępy (standardowe, rozszerzone, skondensowane) i kerning." #. nXevu #: 02100200.xhp @@ -9734,7 +9734,7 @@ "par_id3153143\n" "help.text" msgid "Finds characters formatted with the Outline attribute." -msgstr "" +msgstr "Znajduje znaki sformatowane za pomocą atrybutu Kontur." #. 8EoAV #: 02100200.xhp @@ -9752,7 +9752,7 @@ "par_id3146922\n" "help.text" msgid "Finds characters using the Normal, Superscript or Subscript attributes." -msgstr "" +msgstr "Znajduje znaki przy użyciu atrybutów Normalny, Indeks górny lub Indeks dolny." #. GHiWq #: 02100200.xhp @@ -9761,7 +9761,7 @@ "hd_id3156062\n" "help.text" msgid "Page line-spacing" -msgstr "" +msgstr "Interlinia strony" #. mLAzA #: 02100200.xhp @@ -9770,7 +9770,7 @@ "par_id3152886\n" "help.text" msgid "Finds paragraphs with the Activate page line-spacing attribute enabled." -msgstr "" +msgstr "Znajduje akapity z włączonym atrybutem Aktywuj interlinię strony." #. kbwRT #: 02100200.xhp @@ -9788,7 +9788,7 @@ "par_id3146120\n" "help.text" msgid "Finds characters formatted with the Relief attribute." -msgstr "" +msgstr "Znajduje znaki sformatowane za pomocą atrybutu Uwypuklenie." #. AfTBL #: 02100200.xhp @@ -9824,7 +9824,7 @@ "par_id3150104\n" "help.text" msgid "Finds characters formatted with the Shadowed attribute." -msgstr "" +msgstr "Znajduje znaki sformatowane za pomocą atrybutu Wycieniowany." #. GrhLD #: 02100200.xhp @@ -9932,7 +9932,7 @@ "par_id3156737\n" "help.text" msgid "Finds the Orphan Control attribute." -msgstr "" +msgstr "Znajduje atrybut Kontrola szewców." #. 2r5Ai #: 02100200.xhp @@ -9977,7 +9977,7 @@ "hd_id3148773\n" "help.text" msgid "Character scaling" -msgstr "" +msgstr "Skalowanie znaku" #. ymKNX #: 02100200.xhp @@ -9986,7 +9986,7 @@ "par_id3147396\n" "help.text" msgid "Finds characters formatted with Scale width." -msgstr "" +msgstr "Znajduje znaki sformatowane za pomocą atrybutu Skalowanie szerokości." #. 3XPab #: 02100200.xhp @@ -10040,7 +10040,7 @@ "par_id3148566\n" "help.text" msgid "Finds characters formatted with Underlining." -msgstr "" +msgstr "Znajduje znaki sformatowane za pomocą atrybutu Podkreślenie." #. WyaJQ #: 02100200.xhp @@ -10058,7 +10058,7 @@ "par_id3145650\n" "help.text" msgid "Finds the Vertical text alignment attribute." -msgstr "" +msgstr "Znajduje atrybut Wyrównanie tekstu w pionie." #. cSnst #: 02100200.xhp @@ -10121,7 +10121,7 @@ "hd_id901610234753125\n" "help.text" msgid "Overline" -msgstr "" +msgstr "Nadkreślenie" #. fFZaB #: 02100200.xhp @@ -10130,7 +10130,7 @@ "par_id921610234834028\n" "help.text" msgid "Finds characters formatted with Overlining." -msgstr "" +msgstr "Znajduje znaki sformatowane za pomocą atrybutu Nadkreślenie." #. 6YUoJ #: 02100300.xhp @@ -10157,7 +10157,7 @@ "par_id3150355\n" "help.text" msgid "Finds specific text formatting features, such as font types, font effects, and text flow characteristics." -msgstr "" +msgstr "Znajduje określone funkcje formatowania tekstu, takie jak typy czcionek, efekty czcionek i charakterystykę przepływu tekstu." #. uuHCu #: 02100300.xhp @@ -10229,7 +10229,7 @@ "par_id3150603\n" "help.text" msgid "In a Master document, you can switch the Navigator between normal view and master view." -msgstr "" +msgstr "W dokumencie głównym możesz przełączać Nawigatora między widokiem normalnym a widokiem głównym." #. hXrHA #: 02110000.xhp @@ -10238,7 +10238,7 @@ "par_id3148585\n" "help.text" msgid "The Navigator lists the main components of the master document. If you rest the mouse pointer over a name of a sub-document in the list, the full path of the sub-document is displayed." -msgstr "" +msgstr "Nawigator zawiera listę głównych składników dokumentu głównego. Jeśli zatrzymasz wskaźnik myszy nad nazwą dokumentu podrzędnego na liście, zostanie wyświetlona pełna ścieżka do dokumentu podrzędnego." #. EBGoo #: 02110000.xhp @@ -10274,7 +10274,7 @@ "par_id3145313\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. 3Lq2G #: 02110000.xhp @@ -10301,7 +10301,7 @@ "par_id3147242\n" "help.text" msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened." -msgstr "" +msgstr "Edytuj zawartość komponentu wybranego na liście Nawigator. Jeśli zaznaczenie jest plikiem, plik jest otwierany do edycji. Jeśli zaznaczenie jest indeksem, otwiera się okno dialogowe Indeks." #. sWH9B #: 02110000.xhp @@ -10310,7 +10310,7 @@ "par_id3153716\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. nRB3E #: 02110000.xhp @@ -10346,7 +10346,7 @@ "par_id3159166\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. F4J5u #: 02110000.xhp @@ -10445,7 +10445,7 @@ "par_id3153105\n" "help.text" msgid "This command is found by right-clicking an inserted file in the Navigator. Changes the link properties for the selected file." -msgstr "" +msgstr "To polecenie można znaleźć, klikając prawym przyciskiem myszy wstawiony plik w Nawigatorze. Zmienia właściwości łącza dla wybranego pliku." #. kjtFF #: 02110000.xhp @@ -10481,7 +10481,7 @@ "par_id3153951\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. ijR7M #: 02110000.xhp @@ -10589,7 +10589,7 @@ "par_id3151351\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. ADEyJ #: 02110000.xhp @@ -10616,7 +10616,7 @@ "par_id3146927\n" "help.text" msgid "Moves the selection up one position in the Navigator list. You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged." -msgstr "" +msgstr "Przesuwa zaznaczenie o jedną pozycję w górę na liście Nawigatora. Możesz także przenosić wpisy, przeciągając je i upuszczając na liście. Jeśli przeniesiesz sekcję tekstu do innej sekcji tekstu, sekcje te zostaną scalone." #. sDBYf #: 02110000.xhp @@ -10625,7 +10625,7 @@ "par_id3156178\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. GqEUL #: 02110000.xhp @@ -10652,7 +10652,7 @@ "par_id3155852\n" "help.text" msgid "Moves the selection down one position in the Navigator list. You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged." -msgstr "" +msgstr "Przesuwa zaznaczenie o jedną pozycję w dół na liście Nawigatora. Możesz także przenosić wpisy, przeciągając je i upuszczając na liście. Jeśli przeniesiesz sekcję tekstu do innej sekcji tekstu, sekcje te zostaną scalone." #. diCwJ #: 02110000.xhp @@ -10661,7 +10661,7 @@ "par_id3154790\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikona" #. DLEGF #: 02110000.xhp @@ -10688,7 +10688,7 @@ "par_id3153099\n" "help.text" msgid "This command is found by right-clicking an item in the Navigator. Deletes the selection from the Navigator list and the master document, but does not delete the subdocument file." -msgstr "" +msgstr "To polecenie można znaleźć, klikając prawym przyciskiem myszy element w Nawigatorze. Usuwa zaznaczenie z listy Nawigatora i dokumentu głównego, ale nie usuwa pliku dokumentu podrzędnego." #. xZDVR #: 02180000.xhp @@ -10733,7 +10733,7 @@ "par_id271603459179173\n" "help.text" msgid "This command can be used with external file links to sections (place cursor outside of the section), master documents,sheets linked with Sheet - Insert Sheet from File or Sheet - External Links, Function WEBSERVICE, images and OLE objects (when inserted with a link to an external file)." -msgstr "" +msgstr "To polecenie może być używane z łączami zewnętrznymi plików do sekcji (umieść kursor poza sekcją), dokumentów głównych,arkuszy połączonych za pomocą Arkusz - Wstaw arkusz z pliku lub Arkusz - Łącza zewnętrzne, funkcji WEBSERVICE, obrazów i obiektów OLE (po wstawieniu z łącza do pliku zewnętrznego)." #. g3wLZ #: 02180000.xhp @@ -10751,7 +10751,7 @@ "par_id3156152\n" "help.text" msgid "Lists the path to the source file. If the path defines a DDE link, relative paths must be preceded with \"file:\"." -msgstr "" +msgstr "Wyświetla ścieżkę do pliku źródłowego. Jeśli ścieżka definiuje łącze DDE, ścieżki względne muszą być poprzedzone ciągiem „file:”." #. grGV5 #: 02180000.xhp @@ -10859,7 +10859,7 @@ "par_id3151210\n" "help.text" msgid "Only updates the link when you click the Update button." -msgstr "" +msgstr "Aktualizuje łącza tylko po kliknięciu przycisku Aktualizuj." #. F9APc #: 02180000.xhp @@ -10940,7 +10940,7 @@ "par_id3157321\n" "help.text" msgid "Links to remote locations can be constructed that transmit local data to the remote server. Decline the prompt to update if you do not trust the document." -msgstr "" +msgstr "Można tworzyć łącza do zdalnych lokalizacji, które przesyłają lokalne dane do zdalnego serwera. Odrzuć monit o aktualizację, jeśli nie ufasz dokumentowi." #. ZGABV #: 02180100.xhp @@ -10949,7 +10949,7 @@ "tit\n" "help.text" msgid "Modify DDE Links" -msgstr "" +msgstr "Modyfikuj łącza DDE" #. qEtEY #: 02180100.xhp @@ -10958,7 +10958,7 @@ "bm_id3149877\n" "help.text" msgid "DDE links; modifyingchanging; DDE links" -msgstr "" +msgstr "łącza DDE; modyfikowaniezmiana; łącza DDE" #. o8hNJ #: 02180100.xhp @@ -10985,7 +10985,7 @@ "hd_id3149549\n" "help.text" msgid "Modify Link" -msgstr "" +msgstr "Modyfikuj łącze" #. i7FTn #: 02180100.xhp @@ -11003,7 +11003,7 @@ "hd_id3148548\n" "help.text" msgid "Application" -msgstr "" +msgstr "Aplikacja" #. 3NQkD #: 02180100.xhp @@ -11012,7 +11012,7 @@ "par_id3154751\n" "help.text" msgid "Lists the application that last saved the source file. %PRODUCTNAME applications have the server name soffice." -msgstr "" +msgstr "Wyświetla listę aplikacji, które ostatnio zapisały plik źródłowy. Aplikacje %PRODUCTNAME mają nazwę serwera soffice." #. KNH5c #: 02180100.xhp @@ -11021,7 +11021,7 @@ "hd_id3155338\n" "help.text" msgid "File" -msgstr "" +msgstr "Plik" #. JooHu #: 02180100.xhp @@ -11048,7 +11048,7 @@ "par_id3146958\n" "help.text" msgid "Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here." -msgstr "" +msgstr "Wyświetla listę sekcji lub obiektów, do których odnosi się łącze w pliku źródłowym. Jeśli chcesz, możesz wprowadzić tutaj nową sekcję lub obiekt." #. 4FLU6 #: 02200000.xhp @@ -11057,7 +11057,7 @@ "tit\n" "help.text" msgid "OLE Object (Edit)" -msgstr "" +msgstr "Obiekt OLE (edytuj)" #. VrRPX #: 02200000.xhp @@ -11075,7 +11075,7 @@ "par_id3154840\n" "help.text" msgid "Lets you edit a selected OLE object that you inserted from the Insert - OLE Object submenu." -msgstr "" +msgstr "Pozwala edytować wybrany obiekt OLE wstawiony z podmenu Wstaw - Obiekt OLE." #. HB6iE #: 02200000.xhp @@ -11120,7 +11120,7 @@ "par_id3150008\n" "help.text" msgid "Lets you edit a selected OLE object that you inserted with the Insert – OLE Object command." -msgstr "" +msgstr "Pozwala edytować wybrany obiekt OLE, który został wstawiony za pomocą polecenia Wstaw - Obiekt OLE." #. PXv8N #: 02200200.xhp @@ -11165,7 +11165,7 @@ "par_id3154230\n" "help.text" msgid "This menu command is inserted into Edit – Objects submenu by the application that created the linked object. Depending on the application, the Open command for the OLE object might have a different name." -msgstr "" +msgstr "To polecenie menu jest wstawiane do podmenu Edycja - Obiekty przez aplikację, która utworzyła połączony obiekt. W zależności od aplikacji polecenie Otwórz dla obiektu OLE może mieć inną nazwę." #. 2hNUE #: 02200200.xhp @@ -11201,7 +11201,7 @@ "par_id3149031\n" "help.text" msgid "Changes the properties of the selected floating frame. Floating frames work best when they contain an html document, and when they are inserted in another html document." -msgstr "" +msgstr "Zmienia właściwości wybranej ramki przestawnej. Ramki przestawne działają najlepiej, gdy zawierają dokument HTML i gdy są wstawione do innego dokumentu HTML." #. huLin #: 02210101.xhp @@ -11219,7 +11219,7 @@ "par_id3149511\n" "help.text" msgid "Enter a name for the floating frame. The name cannot contain spaces, special characters, or begin with an underscore (_)." -msgstr "" +msgstr "Wprowadź nazwę ramki przestawnej. Nazwa nie może zawierać spacji, znaków specjalnych ani zaczynać się od podkreślenia (_)." #. dGvnc #: 02210101.xhp @@ -11237,7 +11237,7 @@ "par_id3156414\n" "help.text" msgid "Enter the path and the name of the file that you want to display in the floating frame. You can also click the Browse button and locate the file that you want to display. For example, you can enter:" -msgstr "" +msgstr "Wprowadź ścieżkę i nazwę pliku, który chcesz wyświetlić w ramce przestawnej. Możesz także kliknąć przycisk Przeglądaj i zlokalizować plik, który chcesz wyświetlić. Na przykład możesz wpisać:" #. CAAFu #: 02210101.xhp @@ -11246,7 +11246,7 @@ "par_id3147399\n" "help.text" msgid "https://www.example.com" -msgstr "" +msgstr "https://www.example.com" #. UQdgU #: 02210101.xhp @@ -11255,7 +11255,7 @@ "par_id3153683\n" "help.text" msgid "file:///C:/Documents/Readme.txt" -msgstr "" +msgstr "file:///C:/Documents/Readme.txt" #. XshCu #: 02210101.xhp @@ -11273,7 +11273,7 @@ "par_id3155355\n" "help.text" msgid "Locate the file that you want to display in the selected floating frame, and then click Open." -msgstr "" +msgstr "Zlokalizuj plik, który chcesz wyświetlić w wybranej ramce przestawnej, a następnie kliknij Otwórz." #. fbCR3 #: 02210101.xhp @@ -11282,7 +11282,7 @@ "hd_id3146957\n" "help.text" msgid "Scroll Bar" -msgstr "" +msgstr "Pasek przewijania" #. xEuRh #: 02210101.xhp @@ -11309,7 +11309,7 @@ "par_id3150355\n" "help.text" msgid "Displays the scrollbar for the floating frame." -msgstr "" +msgstr "Wyświetla pasek przewijania dla ramki przestawnej." #. oWDWT #: 02210101.xhp @@ -11327,7 +11327,7 @@ "par_id3150669\n" "help.text" msgid "Hides the scrollbar for the floating frame." -msgstr "" +msgstr "Ukrywa pasek przewijania ramki przestawnej." #. vHLML #: 02210101.xhp @@ -11345,7 +11345,7 @@ "par_id3152909\n" "help.text" msgid "Mark this option if the currently active floating frame can have a scrollbar when needed." -msgstr "" +msgstr "Zaznacz tę opcję, jeśli aktualnie aktywna ramka przestawna może mieć pasek przewijania w razie potrzeby." #. xMvho #: 02210101.xhp @@ -11381,7 +11381,7 @@ "par_id3159147\n" "help.text" msgid "Displays the border of the floating frame." -msgstr "" +msgstr "Wyświetla krawędź ramki przestawnej." #. qFqtE #: 02210101.xhp @@ -11399,7 +11399,7 @@ "par_id3156329\n" "help.text" msgid "Hides the border of the floating frame." -msgstr "" +msgstr "Ukrywa krawędź ramki przestawnej." #. p6AG4 #: 02210101.xhp @@ -11408,7 +11408,7 @@ "hd_id3148563\n" "help.text" msgid "Padding" -msgstr "" +msgstr "Wypełnianie" #. rATqb #: 02210101.xhp @@ -11435,7 +11435,7 @@ "par_id3149656\n" "help.text" msgid "Enter the amount of horizontal space that you want to leave between the right and the left edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents." -msgstr "" +msgstr "Wprowadź wielkość poziomego odstępu, jaki chcesz pozostawić między prawą i lewą krawędzią ramki przestawnej a zawartością ramki. Zarówno dokumenty wewnątrz, jak i na zewnątrz ramki przestawnej muszą być dokumentami HTML." #. cW4ov #: 02210101.xhp @@ -11444,7 +11444,7 @@ "hd_id3150865\n" "help.text" msgid "Default" -msgstr "Domyślnie" +msgstr "Domyślny" #. iopsw #: 02210101.xhp @@ -11453,7 +11453,7 @@ "par_id3150400\n" "help.text" msgid "Applies the default horizontal spacing." -msgstr "" +msgstr "Stosuje domyślne odstępy w poziomie." #. TijpB #: 02210101.xhp @@ -11471,7 +11471,7 @@ "par_id3149670\n" "help.text" msgid "Enter the amount of vertical space that you want to leave between the top and bottom edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents." -msgstr "" +msgstr "Wprowadź ilość pionowego odstępu, jaki chcesz pozostawić między górną i dolną krawędzią ramki przestawnej a zawartością ramki. Zarówno dokumenty wewnątrz, jak i na zewnątrz ramki przestawnej muszą być dokumentami HTML." #. thgCd #: 02210101.xhp @@ -11480,7 +11480,7 @@ "hd_id3150866\n" "help.text" msgid "Default" -msgstr "" +msgstr "Domyślny" #. wb5xx #: 02210101.xhp @@ -11489,7 +11489,7 @@ "par_id3150401\n" "help.text" msgid "Applies the default vertical spacing." -msgstr "" +msgstr "Stosuje domyślne odstępy w pionie." #. xjTEq #: 02220000.xhp @@ -11516,7 +11516,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 "" +msgstr "Umożliwia dołączanie adresów URL do określonych obszarów, zwanych punktami aktywnymi, na grafice lub grupie grafik. Mapa obrazkowa to grupa jednego lub więcej punktów aktywnych." #. qyFGR #: 02220000.xhp @@ -11525,7 +11525,7 @@ "par_id3149751\n" "help.text" msgid "You can draw three types of hotspots: rectangles, ellipses, and polygons. When you click a hotspot, the URL is opened in the browser window or frame that you specify. You can also specify the text that appears when your mouse rests on the hotspot." -msgstr "" +msgstr "Możesz narysować trzy typy punktów aktywnych: prostokąty, elipsy i wieloboki. Po kliknięciu punktu aktywnego adres URL jest otwierany w oknie przeglądarki lub w określonej ramce. Możesz także określić tekst, który pojawi się, gdy kursor myszy znajdzie się na punkcie aktywnym." #. vzWkG #: 02220000.xhp @@ -11552,7 +11552,7 @@ "par_id3149811\n" "help.text" msgid "Icon Apply" -msgstr "" +msgstr "Ikona stosowania" #. PtM8F #: 02220000.xhp @@ -11579,7 +11579,7 @@ "par_id3155829\n" "help.text" msgid "Loads an existing image map in the MAP-CERN, MAP-NCSA or SIP StarView ImageMap file format." -msgstr "" +msgstr "Ładuje istniejącą mapę obrazkową w formacie pliku ImageMap MAP-CERN, MAP-NCSA lub SIP StarView." #. YBA3c #: 02220000.xhp @@ -11588,7 +11588,7 @@ "par_id3149795\n" "help.text" msgid "Icon Open" -msgstr "" +msgstr "Ikona otwierania" #. nGQif #: 02220000.xhp @@ -11615,7 +11615,7 @@ "par_id3153626\n" "help.text" msgid "Saves the image map in the MAP-CERN, MAP-NCSA or SIP StarView ImageMap file format." -msgstr "" +msgstr "Zapisuje istniejącą mapę obrazkową w formacie pliku ImageMap MAP-CERN, MAP-NCSA lub SIP StarView." #. DtBot #: 02220000.xhp @@ -11624,7 +11624,7 @@ "par_id3154280\n" "help.text" msgid "Icon Save" -msgstr "" +msgstr "Ikona zapisywania" #. zzpcn #: 02220000.xhp @@ -11660,7 +11660,7 @@ "par_id3156214\n" "help.text" msgid "Icon Select" -msgstr "" +msgstr "Ikona zaznaczania" #. TJAcj #: 02220000.xhp @@ -11687,7 +11687,7 @@ "par_id3150870\n" "help.text" msgid "Draws a rectangular hotspot where you drag in the graphic. After, you can enter the Address and the Text Alternative for the hotspot, and then select the Frame where you want the URL to open." -msgstr "" +msgstr "Rysuje prostokątny punkt aktywny w miejscu przeciągnięcia w grafice. Po tym możesz wprowadzić Adres i Tekst alternatywny dla punktu aktywnego, a następnie wybrać Ramkę, w której chcesz otworzyć adres URL." #. pm6nN #: 02220000.xhp @@ -11696,7 +11696,7 @@ "par_id3150769\n" "help.text" msgid "Icon Rectangle" -msgstr "" +msgstr "Ikona prostokąta" #. 27ptx #: 02220000.xhp @@ -11723,7 +11723,7 @@ "par_id3145591\n" "help.text" msgid "Draws an elliptical hotspot where you drag in the graphic. " -msgstr "" +msgstr "Rysuje eliptyczny punkt aktywny w miejscu przeciągnięcia grafiki. " #. z8UMY #: 02220000.xhp @@ -11732,7 +11732,7 @@ "par_id3155308\n" "help.text" msgid "Icon Ellipse" -msgstr "" +msgstr "Ikona elipsy" #. ShcoZ #: 02220000.xhp @@ -11759,7 +11759,7 @@ "par_id3153190\n" "help.text" msgid "Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. " -msgstr "" +msgstr "Rysuje w grafice wieloboczny punkt aktywny. Kliknij tę ikonę, przeciągnij w grafice, a następnie kliknij, aby zdefiniować jeden bok wielokąta. Przejdź do miejsca, w którym chcesz umieścić koniec następnej strony, a następnie kliknij. Powtarzaj, aż narysujesz wszystkie boki wielokąta. Po zakończeniu kliknij dwukrotnie, aby zamknąć wielokąt. " #. wAz5P #: 02220000.xhp @@ -11768,7 +11768,7 @@ "par_id3148577\n" "help.text" msgid "Icon Polygon" -msgstr "" +msgstr "Ikona wielokąta" #. pK5eV #: 02220000.xhp @@ -11795,7 +11795,7 @@ "par_id3147046\n" "help.text" msgid "Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. " -msgstr "" +msgstr "Rysuje punkt aktywny na podstawie dowolnego wielokąta. Kliknij tę ikonę i przejdź do miejsca, w którym chcesz narysować punkt aktywny. Przeciągnij linię o dowolnym kształcie i zwolnij, aby zamknąć kształt. " #. k2wFH #: 02220000.xhp @@ -11804,7 +11804,7 @@ "par_id3153877\n" "help.text" msgid "Icon Freeform Polygon" -msgstr "" +msgstr "Ikona wielokąta odręcznego" #. CrbLf #: 02220000.xhp @@ -11840,7 +11840,7 @@ "par_id3145801\n" "help.text" msgid "Icon Edit points" -msgstr "" +msgstr "Ikona edycji punktów" #. 5ZNA5 #: 02220000.xhp @@ -11876,7 +11876,7 @@ "par_id3146971\n" "help.text" msgid "Icon Move Points" -msgstr "" +msgstr "Ikona przesunięcia punktów" #. UkQ35 #: 02220000.xhp @@ -11912,7 +11912,7 @@ "par_id3150749\n" "help.text" msgid "Icon Insert Points" -msgstr "" +msgstr "Ikona wstawiania punktów" #. Bps2C #: 02220000.xhp @@ -11948,7 +11948,7 @@ "par_id3149021\n" "help.text" msgid "Icon Delete Points" -msgstr "" +msgstr "Ikona usuwania punktów" #. WB6Zf #: 02220000.xhp @@ -11984,7 +11984,7 @@ "par_id3155901\n" "help.text" msgid "Icon Active" -msgstr "" +msgstr "Ikona aktywacji" #. 5dKoE #: 02220000.xhp @@ -12011,7 +12011,7 @@ "par_id3145769\n" "help.text" msgid "Icon Macro" -msgstr "" +msgstr "Ikona makra" #. cVL5D #: 02220000.xhp @@ -12047,7 +12047,7 @@ "par_id3159104\n" "help.text" msgid "Icon Properties" -msgstr "" +msgstr "Ikona właściwości" #. imNDz #: 02220000.xhp @@ -12074,7 +12074,7 @@ "par_id3157969\n" "help.text" msgid "Enter the URL for the file that you want to open when you click the selected hotspot. If you want to jump to an anchor within the document, the address should be of the form \"file:///C:/Documents/document_name#anchor_name\"." -msgstr "" +msgstr "Wprowadź adres URL pliku, który chcesz otworzyć po kliknięciu wybranego punktu aktywnego. Jeśli chcesz przejść do zakotwiczenia w dokumencie, adres powinien mieć postać „file:///C:/Dokumenty/nazwa_dokumentu#nazwa_zakotwiczenia”." #. DDAqK #: 02220000.xhp @@ -12083,7 +12083,7 @@ "hd_id3146132\n" "help.text" msgid "Text Alternative" -msgstr "" +msgstr "Tekst alternatywny" #. ccR9n #: 02220000.xhp @@ -12092,7 +12092,7 @@ "par_id3159090\n" "help.text" msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser. If you do not enter any text, the Address is displayed." -msgstr "" +msgstr "Wprowadź tekst, który ma być wyświetlany, gdy mysz znajdzie się na punkcie aktywnym w przeglądarce. Jeśli nie wpiszesz żadnego tekstu, wyświetlany jest Adres." #. DAgwb #: 02220000.xhp @@ -12164,7 +12164,7 @@ "bm_id1202200909085990\n" "help.text" msgid "hotspots; propertiesproperties; hotspotsImageMap; hotspot properties" -msgstr "" +msgstr "punkty aktywne; właściwościwłaściwości; punkty aktywnemapa obrazkowa; właściwości punktu aktywnego" #. nkTuA #: 02220100.xhp @@ -12227,7 +12227,7 @@ "hd_id3153827\n" "help.text" msgid "Text Alternative" -msgstr "" +msgstr "Tekst alternatywny" #. dgZr8 #: 02220100.xhp @@ -12236,7 +12236,7 @@ "par_id3153665\n" "help.text" msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser. If you do not enter any text, the Address is displayed." -msgstr "" +msgstr "Wprowadź tekst, który ma być wyświetlany, gdy mysz zatrzyma się na punkcie aktywnym w przeglądarce. Jeśli nie wpiszesz żadnego tekstu, wyświetlany jest Adres." #. MbEv7 #: 02220100.xhp @@ -12362,7 +12362,7 @@ "par_id3155599\n" "help.text" msgid "Tracks each change that is made in the current document by author and date." -msgstr "" +msgstr "Śledzi każdą zmianę dokonaną w bieżącym dokumencie według autora i daty." #. FCvXm #: 02230100.xhp @@ -12371,7 +12371,7 @@ "par_id251647262886504\n" "help.text" msgid "On the Track Changes toolbar, click" -msgstr "" +msgstr "Na pasku narzędzi Śledź zmiany kliknij" #. FJDpx #: 02230100.xhp @@ -12407,7 +12407,7 @@ "par_id3149388\n" "help.text" msgid "Paste and delete text." -msgstr "" +msgstr "Wklejanie i usuwanie tekstu." #. 8EsEn #: 02230100.xhp @@ -12416,7 +12416,7 @@ "par_id3150693\n" "help.text" msgid "Move paragraphs." -msgstr "" +msgstr "Przenoszenie akapitów." #. wGE6h #: 02230100.xhp @@ -12425,7 +12425,7 @@ "par_id3147088\n" "help.text" msgid "Sort text." -msgstr "" +msgstr "Sortowanie tekstu." #. jWgzP #: 02230100.xhp @@ -12434,7 +12434,7 @@ "par_id3148620\n" "help.text" msgid "Find and replace text." -msgstr "" +msgstr "Znajdowanie i zamienianie tekstu." #. CxBbA #: 02230100.xhp @@ -12452,7 +12452,7 @@ "par_id3146797\n" "help.text" msgid "Insert sheets, ranges." -msgstr "" +msgstr "Wstawianie arkuszy, zakresów." #. B5rDZ #: 02230100.xhp @@ -12461,7 +12461,7 @@ "par_id3154749\n" "help.text" msgid "Insert document." -msgstr "" +msgstr "Wstawianie dokumentów." #. mMqvo #: 02230100.xhp @@ -12470,7 +12470,7 @@ "par_id3153252\n" "help.text" msgid "Insert AutoText." -msgstr "" +msgstr "Wstawianie autotekstu." #. HEEeM #: 02230100.xhp @@ -12479,7 +12479,7 @@ "par_id3155449\n" "help.text" msgid "Insert from clipboard." -msgstr "" +msgstr "Wstawianie ze schowka." #. yQ2vD #: 02230100.xhp @@ -12488,7 +12488,7 @@ "par_id3153821\n" "help.text" msgid "Change cell contents by insertions and deletions." -msgstr "" +msgstr "Zmienianie zawartości komórki poprzez wstawianie i usuwanie." #. 2p7Mb #: 02230100.xhp @@ -12497,7 +12497,7 @@ "par_id3150771\n" "help.text" msgid "Insert or delete columns and rows." -msgstr "" +msgstr "Wstawianie lub usuwanie kolumn i wierszy." #. fQv5Y #: 02230100.xhp @@ -12506,7 +12506,7 @@ "par_id3150085\n" "help.text" msgid "Insert sheets." -msgstr "" +msgstr "Wstawianie arkuszy." #. Bqyxh #: 02230100.xhp @@ -12515,7 +12515,7 @@ "par_id3154381\n" "help.text" msgid "Cut, copy and paste through the clipboard." -msgstr "" +msgstr "Wycinanie, kopiowanie i wklejanie do schowka." #. ZqPJk #: 02230100.xhp @@ -12524,7 +12524,7 @@ "par_id3145119\n" "help.text" msgid "Move by dragging and dropping." -msgstr "" +msgstr "Przesuwanie, przeciąganie i upuszczanie." #. eqYfv #: 02230100.xhp @@ -12560,7 +12560,7 @@ "par_id3150794\n" "help.text" msgid "Prevents a user from deactivating the record changes feature, or from accepting or rejecting changes unless the user enters a password." -msgstr "" +msgstr "Uniemożliwia użytkownikowi dezaktywację funkcji zapisu zmian lub akceptację lub odrzucenie zmian, chyba że użytkownik wprowadzi hasło." #. T47Qe #: 02230150.xhp @@ -12569,7 +12569,7 @@ "par_id251647262886504\n" "help.text" msgid "On the Track Changes toolbar, click" -msgstr "" +msgstr "Na pasku narzędzi Śledź zmiany kliknij" #. SuBoG #: 02230200.xhp @@ -12605,7 +12605,7 @@ "par_id3153323\n" "help.text" msgid "Shows or hides recorded changes." -msgstr "" +msgstr "Pokazuje lub ukrywa zarejestrowane zmiany." #. BkpRH #: 02230200.xhp @@ -12614,7 +12614,7 @@ "par_id251647262886504\n" "help.text" msgid "On the Track Changes toolbar, click" -msgstr "" +msgstr "Na pasku narzędzi Śledź zmiany kliknij" #. yi8Qe #: 02230200.xhp @@ -12641,7 +12641,7 @@ "hd_id3153681\n" "help.text" msgid "Show changes in spreadsheet" -msgstr "" +msgstr "Pokaż zmiany w arkuszu kalkulacyjnym" #. sDA8D #: 02230200.xhp @@ -12650,7 +12650,7 @@ "par_id3149150\n" "help.text" msgid "Shows or hides recorded changes." -msgstr "" +msgstr "Pokazuje lub ukrywa zarejestrowane zmiany." #. ECraQ #: 02230200.xhp @@ -12659,7 +12659,7 @@ "hd_id3147336\n" "help.text" msgid "Show accepted changes" -msgstr "" +msgstr "Pokaż zaakceptowane zmiany" #. sDByA #: 02230200.xhp @@ -12668,7 +12668,7 @@ "par_id3153541\n" "help.text" msgid "Shows or hides the changes that were accepted." -msgstr "" +msgstr "Pokazuje lub ukrywa zaakceptowane zmiany." #. 9T5jC #: 02230200.xhp @@ -12677,7 +12677,7 @@ "hd_id3149956\n" "help.text" msgid "Show rejected changes" -msgstr "" +msgstr "Pokaż odrzucone zmiany" #. QpZzt #: 02230200.xhp @@ -12686,7 +12686,7 @@ "par_id3159166\n" "help.text" msgid "Shows or hides the changes that were rejected." -msgstr "" +msgstr "Pokazuje lub ukrywa zmiany, które zostały odrzucone." #. nXYPN #: 02230300.xhp @@ -12704,7 +12704,7 @@ "hd_id3083278\n" "help.text" msgid "Insert Track Change Comment" -msgstr "" +msgstr "Wstaw komentarz do śledzonej zmiany" #. 56iv7 #: 02230300.xhp @@ -12713,7 +12713,7 @@ "par_id3148983\n" "help.text" msgid "Enter a comment for the recorded change. " -msgstr "" +msgstr "Wprowadź komentarz do zarejestrowanej zmiany. " #. C9xGD #: 02230300.xhp @@ -12722,7 +12722,7 @@ "par_id3155391\n" "help.text" msgid "You can attach a comment when the cursor is in a changed text passagethe changed cell is selected, or in the Manage Changes dialog." -msgstr "" +msgstr "Komentarz można dołączyć, gdy kursor znajduje się w zmienionej części tekstuzaznaczono zmienioną komórkę lub w oknie Zarządzaj zmianami." #. ny8JD #: 02230300.xhp @@ -12740,7 +12740,7 @@ "tit\n" "help.text" msgid "Manage changes" -msgstr "Zarządzanie zmianami" +msgstr "Zarządzaj zmianami" #. PLMdJ #: 02230400.xhp @@ -12758,7 +12758,7 @@ "par_id3147240\n" "help.text" msgid "Accept or reject recorded changes." -msgstr "" +msgstr "Zaakceptuj lub odrzuć zarejestrowane zmiany." #. Em4CR #: 02230400.xhp @@ -12767,7 +12767,7 @@ "par_id251647262886504\n" "help.text" msgid "On the Track Changes toolbar, click" -msgstr "" +msgstr "Na pasku narzędzi Śledź zmiany kliknij" #. y9E7m #: 02230401.xhp @@ -12812,7 +12812,7 @@ "par_id3153114\n" "help.text" msgid "Nested changes occur where changes made by different authors overlap." -msgstr "" +msgstr "Zagnieżdżone zmiany występują tam, gdzie zmiany wprowadzone przez różnych autorów nakładają się." #. get8q #: 02230401.xhp @@ -12821,7 +12821,7 @@ "par_id3155552\n" "help.text" msgid "Click the plus sign beside an entry in the list to view all of the changes that were recorded for a cell." -msgstr "" +msgstr "Kliknij znak plus obok wpisu na liście, aby wyświetlić wszystkie zmiany zarejestrowane dla komórki." #. rXo8V #: 02230401.xhp @@ -12830,7 +12830,7 @@ "par_id3154824\n" "help.text" msgid "If one of the nested changes for a cell matches a filter criterion, all of the changes for the cell are displayed. When you filter the change list, the entries in the list appear in different colors according to the following table:" -msgstr "" +msgstr "Jeśli jedna z zagnieżdżonych zmian w komórce pasuje do kryterium filtra, zostaną wyświetlone wszystkie zmiany w komórce. Podczas filtrowania listy zmian pozycje na liście są wyświetlane w różnych kolorach zgodnie z poniższą tabelą:" #. hCB3b #: 02230401.xhp @@ -12938,7 +12938,7 @@ "par_id3161459\n" "help.text" msgid "Lists the changes that were recorded in the document. When you select an entry in the list, the change is highlighted in the document. To sort the list, click a column heading. Hold down CommandCtrl while you click to select multiple entries in the list." -msgstr "" +msgstr "Wyświetla listę zmian, które zostały zarejestrowane w dokumencie. Po wybraniu wpisu na liście zmiana jest podświetlana w dokumencie. Aby posortować listę, kliknij nagłówek kolumny. Przytrzymaj Command Naciśnij klawisz Ctrl podczas klikania, aby zaznaczyć wiele pozycji na liście." #. VNzLT #: 02230401.xhp @@ -12947,7 +12947,7 @@ "par_id3152812\n" "help.text" msgid "To edit the comment for an entry in the list, right-click the entry, and then choose Edit - Comment." -msgstr "" +msgstr "Aby edytować komentarz do wpisu na liście, kliknij wpis prawym przyciskiem myszy, a następnie wybierz Edycja - Komentarz." #. PLDj4 #: 02230401.xhp @@ -12974,7 +12974,7 @@ "par_id3153361\n" "help.text" msgid "Lists the changes that were made in the document." -msgstr "" +msgstr "Lista zmian wprowadzonych w dokumencie." #. nkBcA #: 02230401.xhp @@ -12983,7 +12983,7 @@ "hd_id3152920\n" "help.text" msgid "Position." -msgstr "" +msgstr "Pozycja." #. DCkaV #: 02230401.xhp @@ -12992,7 +12992,7 @@ "par_id3149202\n" "help.text" msgid "Lists the cells with contents that were changed." -msgstr "" +msgstr "Wyświetla komórki z zawartością, która została zmieniona." #. GZFFs #: 02230401.xhp @@ -13010,7 +13010,7 @@ "par_id3153178\n" "help.text" msgid "Lists the user who made the change." -msgstr "" +msgstr "Wyświetla użytkownika, który dokonał zmiany." #. P9CDe #: 02230401.xhp @@ -13028,7 +13028,7 @@ "par_id3156422\n" "help.text" msgid "Lists the date and time that the change was made." -msgstr "" +msgstr "Wyświetla datę i godzinę wprowadzenia zmiany." #. 8KSDe #: 02230401.xhp @@ -13046,7 +13046,7 @@ "par_id3150868\n" "help.text" msgid "Lists the comments that are attached to the change." -msgstr "" +msgstr "Wyświetla listę komentarzy dołączonych do zmiany." #. idb76 #: 02230401.xhp @@ -13064,7 +13064,7 @@ "par_id3152935\n" "help.text" msgid "Accepts the selected change and removes the highlighting from the change in the document." -msgstr "" +msgstr "Akceptuje wybraną zmianę i usuwa zaznaczenie ze zmiany w dokumencie." #. NG3rE #: 02230401.xhp @@ -13082,7 +13082,7 @@ "par_id3150441\n" "help.text" msgid "Rejects the selected change and removes the highlighting from the change in the document." -msgstr "" +msgstr "Odrzuca wybraną zmianę i usuwa zaznaczenie ze zmiany w dokumencie." #. jA9SB #: 02230401.xhp @@ -13127,7 +13127,7 @@ "par_id3147442\n" "help.text" msgid "To reverse the acceptance or rejection of a change, choose Undo on the Edit menu." -msgstr "" +msgstr "Aby cofnąć akceptację lub odrzucenie zmiany, wybierz Cofnij w menu Edycja." #. JQUBb #: 02230401.xhp @@ -13136,7 +13136,7 @@ "hd_id3159196\n" "help.text" msgid "Undo" -msgstr "" +msgstr "Cofnij" #. PAJA5 #: 02230401.xhp @@ -13172,7 +13172,7 @@ "par_id3153210\n" "help.text" msgid "Edit the comment for the selected change." -msgstr "" +msgstr "Edytuj komentarz dla wybranej zmiany." #. uwQta #: 02230401.xhp @@ -13208,7 +13208,7 @@ "par_id3151280\n" "help.text" msgid "Sorts the list according to the type of change." -msgstr "" +msgstr "Sortuje listę według typu zmiany." #. RypTP #: 02230401.xhp @@ -13226,7 +13226,7 @@ "par_id3149960\n" "help.text" msgid "Sorts the list according to the author." -msgstr "" +msgstr "Sortuje listę według autora." #. CXysU #: 02230401.xhp @@ -13244,7 +13244,7 @@ "par_id3153223\n" "help.text" msgid "Sorts the list according to the date and time." -msgstr "" +msgstr "Sortuje listę według daty i godziny." #. X3Qwo #: 02230401.xhp @@ -13262,7 +13262,7 @@ "par_id3145595\n" "help.text" msgid "Sorts the list according to the comments that are attached to the changes." -msgstr "" +msgstr "Sortuje listę według komentarzy dołączonych do zmian." #. Lpnxk #: 02230401.xhp @@ -13280,7 +13280,7 @@ "par_id3157976\n" "help.text" msgid "Sorts the list in a descending order according to the position of the changes in the document. This is the default sorting method." -msgstr "" +msgstr "Sortuje listę w kolejności malejącej według pozycji zmian w dokumencie. To jest domyślna metoda sortowania." #. oCEUZ #: 02230402.xhp @@ -13325,7 +13325,7 @@ "par_id3147573\n" "help.text" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtruje listę zmian według określonej daty i godziny." #. ZWMwj #: 02230402.xhp @@ -13343,7 +13343,7 @@ "par_id3159147\n" "help.text" msgid "Icon Set Date/Time" -msgstr "" +msgstr "Ikona ustawiania daty/godziny" #. x6MJB #: 02230402.xhp @@ -13352,7 +13352,7 @@ "par_id3143270\n" "help.text" msgid "Enters the current date and time into the corresponding boxes." -msgstr "" +msgstr "Wpisuje bieżącą datę i godzinę w odpowiednich polach." #. mkMGc #: 02230402.xhp @@ -13370,7 +13370,7 @@ "par_id3150084\n" "help.text" msgid "Filters the list of changes according to the name of the author that you select from the list." -msgstr "" +msgstr "Filtruje listę zmian według nazwiska autora wybranego z listy." #. 8gkXn #: 02230402.xhp @@ -13379,7 +13379,7 @@ "hd_id3147531\n" "help.text" msgid "Range" -msgstr "" +msgstr "Zakres" #. yhETG #: 02230402.xhp @@ -13388,7 +13388,7 @@ "par_id3156344\n" "help.text" msgid "Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the Set Reference button (...)." -msgstr "" +msgstr "Filtruje listę zmian według określonego zakresu komórek. Aby zaznaczyć zakres komórek w arkuszu, kliknij przycisk Określ odwołanie (...)." #. DDGej #: 02230402.xhp @@ -13397,7 +13397,7 @@ "hd_id3159149\n" "help.text" msgid "Shrink/Max" -msgstr "" +msgstr "Zmniejsz/Maks." #. Eri8P #: 02230402.xhp @@ -13406,7 +13406,7 @@ "par_id3149809\n" "help.text" msgid "Icon Shrink/Max" -msgstr "" +msgstr "Ikona zmniejszania/maks." #. oKWMr #: 02230402.xhp @@ -13424,7 +13424,7 @@ "hd_id3156543\n" "help.text" msgid "Action" -msgstr "" +msgstr "Akcja" #. VwoCP #: 02230402.xhp @@ -13433,7 +13433,7 @@ "par_id3155413\n" "help.text" msgid "Filters the list of changes according to the type of change that you select in the Action box." -msgstr "" +msgstr "Filtruje listę zmian według typu zmiany wybranego w polu Akcja." #. 7DPCk #: 02230402.xhp @@ -13451,7 +13451,7 @@ "par_id3151114\n" "help.text" msgid "Filters the comments of the changes according to the keyword(s) that you enter." -msgstr "" +msgstr "Filtruje komentarze zmian według wprowadzonych słów kluczowych." #. CoXqW #: 02230402.xhp @@ -13496,7 +13496,7 @@ "par_id251647262886504\n" "help.text" msgid "On the Track Changes toolbar, click" -msgstr "" +msgstr "Na pasku narzędzi Śledź zmiany kliknij" #. fogGd #: 02240000.xhp @@ -13532,7 +13532,7 @@ "par_id251647262886504\n" "help.text" msgid "On the Track Changes toolbar, click" -msgstr "" +msgstr "Na pasku narzędzi Śledź zmiany kliknij" #. RncNB #: 02240000.xhp @@ -13649,7 +13649,7 @@ "par_id3157960\n" "help.text" msgid "Type the number of the record that you want to display, and then press Enter." -msgstr "" +msgstr "Wpisz numer rekordu, który chcesz wyświetlić, a następnie naciśnij Enter." #. AKRDd #: 02250000.xhp @@ -13667,7 +13667,7 @@ "par_id3149168\n" "help.text" msgid "Inserts a new record into the current table. To create a record, click the asterisk (*) button at the bottom of the table view. An empty row is added at the end of the table." -msgstr "" +msgstr "Wstawia nowy rekord do bieżącej tabeli. Aby utworzyć rekord, kliknij przycisk gwiazdki (*) na dole widok tabeli. Na końcu tabeli dodawany jest pusty wiersz." #. fQWEB #: 02250000.xhp @@ -13730,7 +13730,7 @@ "par_id3159125\n" "help.text" msgid "Type the information that you want to search for, and then press Enter. To change the filter options for the search, long-click the AutoFilter icon, and then select a different data field. You can use wildcards such as % or * for any number of characters, and _ or ? for one character in your search. To display all of the records in the table, clear this box, and then press Enter. " -msgstr "" +msgstr "Wpisz informacje, które chcesz wyszukać, a następnie naciśnij Enter. Aby zmienić opcje filtrowania wyszukiwania, kliknij przytrzymaj ikonę Autofiltr, a następnie wybierz inne pole danych. Możesz użyć symboli wieloznacznych, takich jak % lub * dla dowolnej liczby znaków oraz _ lub ? dla jednego znaku w wyszukiwaniu. Aby wyświetlić wszystkie rekordy w tabeli, wyczyść to pole, a następnie naciśnij Enter." #. sHnff #: 02250000.xhp @@ -13766,7 +13766,7 @@ "par_id3145590\n" "help.text" msgid "Use the Standard Filter to refine and to combine AutoFilter search options." -msgstr "" +msgstr "Użyj Filtra standardowego, aby zawęzić i połączyć opcje wyszukiwania Autofiltr." #. J6rp7 #: 02250000.xhp @@ -13838,7 +13838,7 @@ "par_id3151282\n" "help.text" msgid "Lets you map the column headings to data fields from a different data source. To define a different data source for your bibliography, click the Data Source button on the record's Object bar." -msgstr "" +msgstr "Umożliwia mapowanie nagłówków kolumn na pola danych z innego źródła danych. Aby zdefiniować inne źródło danych dla swojej bibliografii, kliknij przycisk Źródło danych na pasku Obiekt rekordu." #. vEPVr #: 02250000.xhp @@ -13955,7 +13955,7 @@ "par_id3144760\n" "help.text" msgid "Resizes the display to fit the width of the selected cell area at the moment the command is started.Resizes the display to fit the width of the text in the document at the moment the command is started." -msgstr "" +msgstr "Zmienia rozmiar wyświetlacza, aby dopasować go do szerokości zaznaczonego obszaru komórki w momencie uruchomienia polecenia.Zmienia rozmiar wyświetlacza, aby dopasować go do szerokości tekstu w dokumencie w momencie uruchomienia polecenia." #. FwjSq #: 03010000.xhp @@ -13973,7 +13973,7 @@ "par_id3150543\n" "help.text" msgid "Resizes the display to fit the width and height of the selected cell area at the moment the command is started.Displays the entire page on your screen." -msgstr "" +msgstr "Zmienia rozmiar wyświetlacza, aby dopasować go do szerokości i wysokości zaznaczonego obszaru komórki w momencie uruchomienia polecenia. Wyświetla całą stronę na ekranie." #. oS9ZX #: 03010000.xhp @@ -13991,7 +13991,7 @@ "par_id3143231\n" "help.text" msgid "Displays the complete width of the document page. The top and bottom edges of the page may not be visible." -msgstr "" +msgstr "Wyświetla całą szerokość strony dokumentu. Górna i dolna krawędź strony mogą być niewidoczne." #. jqMfE #: 03010000.xhp @@ -14027,7 +14027,7 @@ "par_id3159125\n" "help.text" msgid "Enter the zoom factor at which you want to display the document. Enter a percentage in the box." -msgstr "" +msgstr "Wprowadź współczynnik powiększenia, przy którym chcesz wyświetlić dokument. Wprowadź wartość procentową w polu." #. bfPEU #: 03010000.xhp @@ -14153,7 +14153,7 @@ "par_id3149495\n" "help.text" msgid "Shows or hides the Standard bar." -msgstr "" +msgstr "Pokazuje lub ukrywa pasek Standardowy." #. HRjcA #: 03050000.xhp @@ -14189,7 +14189,7 @@ "par_id3150603\n" "help.text" msgid "Shows or hides the Tools bar." -msgstr "" +msgstr "Pokazuje lub ukrywa pasek Narzędzia." #. QkRf6 #: 03060000.xhp @@ -14225,7 +14225,7 @@ "par_id3147000\n" "help.text" msgid "Shows or hides the Status bar at the bottom edge of the window." -msgstr "" +msgstr "Pokazuje lub ukrywa pasek stanu na dolnej krawędzi okna." #. vC7eu #: 03060000.xhp @@ -14297,7 +14297,7 @@ "par_id3148983\n" "help.text" msgid "Shows or hides the menus and toolbars in Writer or Calc. To exit the full screen mode, click the Full Screen button or press the Esc key." -msgstr "" +msgstr "Pokazuje lub ukrywa menu i paski narzędzi w programie Writer lub Calc. Aby wyjść z trybu pełnego ekranu, kliknij przycisk Pełny ekran lub naciśnij klawisz Esc." #. zo2nc #: 03110000.xhp @@ -14306,7 +14306,7 @@ "par_id3152594\n" "help.text" msgid "In Writer and Calc, you can also use the shortcut keys CommandCtrl+Shift+J to switch between the normal and full screen mode." -msgstr "" +msgstr "W programach Writer i Calc można również używać klawiszy skrótów CommandCtrl+Shift+J, aby przełączać między trybem normalnym a pełnym ekranem." #. FfJtD #: 03110000.xhp @@ -14315,7 +14315,7 @@ "par_id3154318\n" "help.text" msgid "You can still use shortcut keys in Full Screen mode, even though the menus are unavailable. To open the View menu, press Alt+V." -msgstr "" +msgstr "Nadal możesz używać klawiszy skrótów w trybie Pełny ekran, nawet jeśli menu są niedostępne. Aby otworzyć menu Widok, naciśnij Alt+V." #. 75RuN #: 03170000.xhp @@ -14351,7 +14351,7 @@ "par_id3153255\n" "help.text" msgid "Show or hide the Color bar. To modify or change the color table that is displayed, choose Format - Area, and then click on the Colors tab." -msgstr "" +msgstr "Pokaż lub ukryj pasek Kolor. Aby zmodyfikować lub zmienić wyświetlaną tabelę kolorów, wybierz Format - Obszar, a następnie kliknij kartę Kolory." #. EFZwD #: 03170000.xhp @@ -14360,7 +14360,7 @@ "par_id3154186\n" "help.text" msgid "To change the fill color of an object in the current file, select the object and then click a color. To change the line color of the selected object, right-click a color. To change the color of text in a text object, double-click the text-object, select the text, and then click a color." -msgstr "" +msgstr "Aby zmienić kolor wypełnienia obiektu w bieżącym pliku, wybierz obiekt, a następnie kliknij kolor. Aby zmienić kolor linii zaznaczonego obiektu, kliknij kolor prawym przyciskiem myszy. Aby zmienić kolor tekstu w obiekcie tekstowym, kliknij dwukrotnie obiekt tekstowy, zaznacz tekst, a następnie kliknij kolor." #. bo2uz #: 03170000.xhp @@ -14369,7 +14369,7 @@ "par_id3147399\n" "help.text" msgid "You can also drag a color from the Color bar and drop it on a draw object on your slide to change the fill color." -msgstr "" +msgstr "Możesz także przeciągnąć kolor z paska Kolor i upuścić go na rysowany obiekt na slajdzie, aby zmienić kolor wypełnienia." #. RxUos #: 03170000.xhp @@ -14378,7 +14378,7 @@ "par_id3147009\n" "help.text" msgid "To detach the Color bar, click on a gray area of the toolbar and then drag. To reattach the Color bar, double click on an gray area of the color bar while pressing the CommandCtrl key." -msgstr "" +msgstr "Aby odłączyć pasek Kolor, kliknij szary obszar paska narzędzi, a następnie przeciągnij. Aby ponownie dołączyć pasek Kolor, kliknij dwukrotnie szary obszar paska kolorów, jednocześnie naciskając klawisz Command Ctrl." #. pnFMd #: 03990000.xhp @@ -14459,7 +14459,7 @@ "bm_id3154100\n" "help.text" msgid "comments;inserting/editing/deleting/printing/resolving comments;hide resolved comments;resolve in text documents inserting; comments editing; comments deleting;comments Navigator;comments printing;comments resolving;comments records; inserting comments remarks, see also comments" -msgstr "" +msgstr "komentarze;wstawianie/edycja/usuwanie/drukowanie/rozwiązywanie komentarze;ukryj rozwiązane komentarze;rozwiąż w dokumentach tekstowych wstawianie; komentarze edycja; komentarze usuwanie;komentarze Nawigator;komentarze drukowanie;komentarze rozwiązywanie;komentarze rekordy; wstawianie komentarzy uwagi, zobacz też komentarze" #. zNaVC #: 04050000.xhp @@ -14477,7 +14477,7 @@ "par_id3151100\n" "help.text" msgid "Inserts a comment around the selected text, presentation slide, drawing page or at the current spreadsheet cursor position." -msgstr "" +msgstr "Wstawia komentarz wokół zaznaczonego tekstu, slajdu prezentacji, strony rysunku lub w bieżącej pozycji kursora arkusza kalkulacyjnego." #. TCEw8 #: 04050000.xhp @@ -14486,7 +14486,7 @@ "par_id6718649\n" "help.text" msgid "The comments by different authors get different colors. Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - User Data to enter your name so that it can show up as the comment author." -msgstr "" +msgstr "Komentarze różnych autorów otrzymują różne kolory. Wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME - Dane użytkownika, aby wprowadzić swoje imię i nazwisko, aby mogło być wyświetlane jako autor komentarza." #. BerbA #: 04050000.xhp @@ -14513,7 +14513,7 @@ "par_id101565954872022\n" "help.text" msgid "Cell with comment displayed" -msgstr "" +msgstr "Komórka z wyświetlonym komentarzem" #. HgUDA #: 04050000.xhp @@ -14522,7 +14522,7 @@ "par_id8336741\n" "help.text" msgid "To change the object properties of a comment, for example the background color, choose Show Comment as above, then right-click the comment. Do not double-click the text!" -msgstr "" +msgstr "Aby zmienić właściwości obiektu komentarza, na przykład kolor tła, wybierz Pokaż komentarz jak powyżej, a następnie kliknij komentarz prawym przyciskiem myszy. Nie klikaj dwukrotnie tekstu!" #. ABcp4 #: 04050000.xhp @@ -14540,7 +14540,7 @@ "par_idN107A1\n" "help.text" msgid "To change the position or size of a comment, drag a border or corner of the comment box." -msgstr "" +msgstr "Aby zmienić położenie lub rozmiar komentarza, przeciągnij krawędź lub róg pola komentarza." #. J2Lbi #: 04050000.xhp @@ -14558,7 +14558,7 @@ "par_id2036805\n" "help.text" msgid "You can also right-click a comment name in the Navigator window to choose some editing commands." -msgstr "" +msgstr "Możesz także kliknąć prawym przyciskiem myszy nazwę komentarza w oknie Nawigator, aby wybrać niektóre polecenia edycji." #. jQXmN #: 04050000.xhp @@ -14576,7 +14576,7 @@ "hd_id1001565974085289\n" "help.text" msgid "Inserting Comments in Presentations" -msgstr "" +msgstr "Wstawianie komentarzy w prezentacjach" #. 6sk3F #: 04050000.xhp @@ -14585,7 +14585,7 @@ "par_id901565974475262\n" "help.text" msgid "Use the command Insert - Comment or the key combination above to insert a comment anchor to the current slidepage. A colored comment box is shown at the top left corner, to enter the text of the comment. A small colored box - the anchor - in the top left of the slidepage contains the initials of the author name, followed by a sequential number. Click on the anchor to open or close the corresponding comment." -msgstr "" +msgstr "Użyj polecenia Wstaw - Komentarz lub kombinacji klawiszy powyżej, aby wstawić zakotwiczenie komentarza do bieżącego slajdustrony. Kolorowe pole komentarza jest wyświetlane w lewym górnym rogu, aby wprowadzić tekst komentarza. Małe kolorowe pole – kotwica – w lewym górnym rogu slajdustrony zawiera inicjały autora, po których następuje kolejny numer. Kliknij kotwicę, aby otworzyć lub zamknąć odpowiedni komentarz." #. GRqag #: 04050000.xhp @@ -14594,7 +14594,7 @@ "par_id521565974498192\n" "help.text" msgid "The author name and the comment creation date and time is shown at the bottom of the comment box." -msgstr "" +msgstr "Imię i nazwisko autora oraz data i godzina utworzenia komentarza są wyświetlane na dole pola komentarza." #. BCd4y #: 04050000.xhp @@ -14603,7 +14603,7 @@ "par_id2571794\n" "help.text" msgid "The comment box contains a button with a down arrow. Click the icon to open a menu with commands for comment management." -msgstr "" +msgstr "Pole komentarza zawiera przycisk ze strzałką w dół. Kliknij ikonę, aby otworzyć menu z poleceniami do zarządzania komentarzami." #. oB8vA #: 04050000.xhp @@ -14612,7 +14612,7 @@ "par_id561345967371982\n" "help.text" msgid "Comments in Presentations" -msgstr "" +msgstr "Komentarze w prezentacjach" #. PFLfE #: 04050000.xhp @@ -14621,7 +14621,7 @@ "hd_id491566054901283\n" "help.text" msgid "Inserting Comments in Drawings" -msgstr "" +msgstr "Wstawianie komentarzy w rysunkach" #. HXJiy #: 04050000.xhp @@ -14630,7 +14630,7 @@ "par_id561345998371982\n" "help.text" msgid "Comments in Drawings" -msgstr "" +msgstr "Komentarze w rysunkach" #. b3J3Q #: 04050000.xhp @@ -14639,7 +14639,7 @@ "hd_id9851680\n" "help.text" msgid "Inserting Comments in Text Documents" -msgstr "" +msgstr "Wstawianie komentarzy w dokumentach tekstowych" #. CigQE #: 04050000.xhp @@ -14648,7 +14648,7 @@ "par_id1830500\n" "help.text" msgid "Use the command Insert - Comment or the Command+OptionCtrl+Alt+C key combination to insert a comment anchor at the current cursor position. A colored comment box is shown at the page margin, to enter the text of the comment. A line connects the anchor to the comment box. If a text range is selected, the comment is attached to the text range. The commented text range is shadowed." -msgstr "" +msgstr "Użyj polecenia Wstaw - Komentarz lub kombinacji klawiszy Command+OptionCtrl+Alt+C, aby wstawić zakotwiczenie komentarza w bieżącej pozycji kursora. Kolorowe pole komentarza jest wyświetlane na marginesie strony, aby wprowadzić tekst komentarza. Linia łączy kotwicę z polem komentarza. W przypadku zaznaczenia zakresu tekstu komentarz jest dołączany do zakresu tekstu. Komentowany zakres tekstu jest zacieniony." #. ro9G3 #: 04050000.xhp @@ -14657,7 +14657,7 @@ "par_id561565967371982\n" "help.text" msgid "Comments in text documents" -msgstr "" +msgstr "Komentarze w dokumentach tekstowych" #. EufpM #: 04050000.xhp @@ -14675,7 +14675,7 @@ "par_id5201879\n" "help.text" msgid "Every user with write permission to the document can edit and delete comments of all authors. You can use the Command+OptionCtrl+Alt+C key combination to edit a comment at the current cursor position." -msgstr "" +msgstr "Każdy użytkownik z uprawnieniami do zapisu w dokumencie może edytować i usuwać komentarze wszystkich autorów. Możesz użyć kombinacji klawiszy Command+OptionCtrl+Alt+C, aby edytować komentarz w bieżącej pozycji kursora." #. qJE7L #: 04050000.xhp @@ -14684,7 +14684,7 @@ "par_id0302200901430918\n" "help.text" msgid "In the Find & Replace dialog of text documents, you can select to include the comments texts in your searches." -msgstr "" +msgstr "W oknie dialogowym dokumentów tekstowych Znajdź i zamień możesz włączyć do wyszukiwania tekst komentarzy." #. DX5fQ #: 04050000.xhp @@ -14693,7 +14693,7 @@ "hd_id601573488847729\n" "help.text" msgid "Replying to comments" -msgstr "" +msgstr "Odpowiadanie na komentarze" #. XjKE5 #: 04050000.xhp @@ -14702,7 +14702,7 @@ "par_id0305200911090684\n" "help.text" msgid "If the comment in a text document was written by another author, there is a Reply command in the context menu. This command inserts a new comment adjacent to the comment to which you want to reply. The comment anchor is the same for both comments. Type your reply text in the new comment. Save and send your document to other authors, then those authors can add replies, too." -msgstr "" +msgstr "Jeśli komentarz w dokumencie tekstowym został napisany przez innego autora, w menu kontekstowym znajduje się polecenie Odpowiedz. To polecenie wstawia nowy komentarz obok komentarza, na który chcesz odpowiedzieć. Kotwica komentarza jest taka sama dla obu komentarzy. Wpisz tekst odpowiedzi w nowym komentarzu. Zapisz i wyślij swój dokument do innych autorów, a następnie ci autorzy również będą mogli dodawać odpowiedzi." #. FD6oN #: 04050000.xhp @@ -14711,7 +14711,7 @@ "hd_id201573491050815\n" "help.text" msgid "Marking comments as resolved" -msgstr "" +msgstr "Oznaczanie komentarzy jako rozwiązanych" #. F4jJK #: 04050000.xhp @@ -14720,7 +14720,7 @@ "par_id961573491046250\n" "help.text" msgid "When the document has been reviewed and commented and requires your action in its contents, you can mark the comment Resolved or Unresolved. Open the comment context menu or click on the comment dropdown list to mark the Resolved checkbox. When you mark the comment resolved, the word Resolved is inserted under the date in the comment box. When marking unresolved, the word Resolved is removed." -msgstr "" +msgstr "Gdy dokument został przejrzany i skomentowany, a jego zawartość wymaga akcji, możesz oznaczyć komentarz jako Rozwiązany lub Nierozwiązany. Otwórz menu kontekstowe komentarza lub kliknij listę rozwijaną komentarzy, aby zaznaczyć pole wyboru Rozwiązany. Gdy oznaczysz komentarz jako rozwiązany, pod datą w polu komentarza pojawi się słowo Rozwiązany. Przy oznaczaniu nierozwiązanych słowo Rozwiązany jest usuwane." #. UBwT2 #: 04050000.xhp @@ -14729,7 +14729,7 @@ "par_id521573491035753\n" "help.text" msgid "You can toggle the display of all resolved comments in the document. Hidden resolved comments are not displayed in the page margin but are not deleted. You can display back all hidden comments. Choose and mark View - Resolved comments to display the resolved comments. Unmark to hide resolved comments. The default is to display all resolved comments." -msgstr "" +msgstr "Możesz przełączać wyświetlanie wszystkich rozwiązanych komentarzy w dokumencie. Ukryte rozwiązane komentarze nie są wyświetlane na marginesie strony, ale nie są usuwane. Możesz wyświetlić wszystkie ukryte komentarze. Wybierz i zaznacz Widok - Rozwiązane komentarze, aby wyświetlić rozwiązane komentarze. Usuń zaznaczenie, aby ukryć rozwiązane komentarze. Domyślnie wyświetlane są wszystkie rozwiązane komentarze." #. SJFLT #: 04050000.xhp @@ -14747,7 +14747,7 @@ "par_id4271370\n" "help.text" msgid "When the cursor is inside a comment, you can press Command+OptionCtrl+Alt+Page Down to jump to the next comment, or press Command+OptionCtrl+Alt+Page Up to jump to the previous comment." -msgstr "" +msgstr "Gdy kursor znajduje się wewnątrz komentarza, możesz nacisnąć Command+OptionCtrl+Alt+Page Down, aby przejść do następnego komentarza, lub naciśnij Command+OptionCtrl+Alt+Page Up, aby przejść do poprzedniego komentarza." #. asYhr #: 04050000.xhp @@ -14756,7 +14756,7 @@ "par_id2116153\n" "help.text" msgid "When the cursor is inside the normal text, press the above mentioned keys to jump to the next or previous comment anchor." -msgstr "" +msgstr "Gdy kursor znajduje się wewnątrz normalnego tekstu, naciśnij klawisze wymienione powyżej, aby przejść do następnego lub poprzedniego zakotwiczenia komentarza." #. yCdcN #: 04050000.xhp @@ -14765,7 +14765,7 @@ "par_id5381328\n" "help.text" msgid "You can also open the Navigator to see a list of all comments. Right-click a comment name in the Navigator to edit or delete the comment." -msgstr "" +msgstr "Możesz także otworzyć Nawigator, aby zobaczyć listę wszystkich komentarzy. Kliknij prawym przyciskiem myszy nazwę komentarza w Nawigatorze, aby edytować lub usunąć komentarz." #. AmLks #: 04050000.xhp @@ -14801,7 +14801,7 @@ "hd_id51565980483588\n" "help.text" msgid "Viewing Comments" -msgstr "" +msgstr "Przeglądanie komentarzy" #. UAKqv #: 04050000.xhp @@ -14810,7 +14810,7 @@ "par_id61565980600884\n" "help.text" msgid "Use View - Comments to show or hide all comments in spreadsheets." -msgstr "" +msgstr "Użyj Widok - Komentarze, aby wyświetlić lub ukryć wszystkie komentarze w arkuszach kalkulacyjnych." #. PsCjS #: 04050000.xhp @@ -14819,7 +14819,7 @@ "par_id171565980454842\n" "help.text" msgid "Use View - Comments to show or hide all anchor comments on the top of the page." -msgstr "" +msgstr "Użyj Widok - Komentarze, aby wyświetlić lub ukryć wszystkie komentarze zakotwiczone u góry strony." #. zBnvM #: 04050000.xhp @@ -14828,7 +14828,7 @@ "par_id821565980437922\n" "help.text" msgid "Use View - Comments to show or hide all anchor comments on the top of the slide." -msgstr "" +msgstr "Użyj Widok - Komentarze, aby wyświetlić lub ukryć wszystkie komentarze zakotwiczone na górze slajdu." #. pCzYa #: 04050000.xhp @@ -14837,7 +14837,7 @@ "par_id0804200803435883\n" "help.text" msgid "Use View - Comments or click on the Comment button on the right of the horizontal ruler to show or hide all comments." -msgstr "" +msgstr "Użyj Widok - Komentarze lub kliknij przycisk Komentarz po prawej stronie poziomej linijki, aby pokazać lub ukryć wszystkie komentarze." #. UYcmU #: 04050000.xhp @@ -14855,7 +14855,7 @@ "par_id231565982070288\n" "help.text" msgid "You cannot print the comments of the slides." -msgstr "" +msgstr "Nie można drukować komentarzy do slajdów." #. XGcLv #: 04050000.xhp @@ -14864,7 +14864,7 @@ "par_id2419507\n" "help.text" msgid "You can choose to use the Notes view to write a page of notes for every slide." -msgstr "" +msgstr "Możesz użyć widoku Notatki, aby napisać stronę notatek do każdego slajdu." #. wiFGN #: 04050000.xhp @@ -14873,7 +14873,7 @@ "par_id671565982126756\n" "help.text" msgid "You cannot print the comments of the drawing pages." -msgstr "" +msgstr "Nie można wydrukować komentarzy do stron rysunku." #. YeKDs #: 04050000.xhp @@ -14882,7 +14882,7 @@ "par_id461565984972664\n" "help.text" msgid "Comments are printed when they are made visible." -msgstr "" +msgstr "Komentarze są drukowane, gdy są widoczne." #. hsCKo #: 04050000.xhp @@ -14891,7 +14891,7 @@ "par_id2254402\n" "help.text" msgid "To change the printing option for comments for all your text documents, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Print." -msgstr "" +msgstr "Aby zmienić opcję drukowania komentarzy dla wszystkich dokumentów tekstowych, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Writer - Drukuj." #. vm68C #: 04060000.xhp @@ -14981,7 +14981,7 @@ "par_id661633376449596\n" "help.text" msgid "The dialog displays settings for the selected scanner and the scan job." -msgstr "" +msgstr "Okno dialogowe wyświetla ustawienia dla wybranego skanera i zadania skanowania." #. t6BMj #: 04060100.xhp @@ -14990,7 +14990,7 @@ "hd_id721633369239013\n" "help.text" msgid "Sources" -msgstr "" +msgstr "Źródło" #. GvcAB #: 04060100.xhp @@ -14999,7 +14999,7 @@ "par_id361633369288384\n" "help.text" msgid "Displays a list of available scanners detected in your system. Click on a scanner in the list and press Select to open the scanner configuration dialog. The configuration dialog depends on the scanner driver installed." -msgstr "" +msgstr "Wyświetla listę dostępnych skanerów wykrytych w systemie. Kliknij skaner na liście i naciśnij Wybierz, aby otworzyć okno dialogowe konfiguracji skanera. Okno dialogowe konfiguracji zależy od zainstalowanego sterownika skanera." #. Caooc #: 04060100.xhp @@ -15008,7 +15008,7 @@ "hd_id511633368095174\n" "help.text" msgid "Scan Area" -msgstr "" +msgstr "Obszar skanowania" #. vYcZn #: 04060100.xhp @@ -15017,7 +15017,7 @@ "hd_id991633368100151\n" "help.text" msgid "Left, right, top, bottom" -msgstr "" +msgstr "Lewo, prawo, góra, dół" #. mncAH #: 04060100.xhp @@ -15026,7 +15026,7 @@ "par_id561633368111347\n" "help.text" msgid "Set the margins of the scan area." -msgstr "" +msgstr "Ustaw marginesy obszaru skanowania." #. wmUp5 #: 04060100.xhp @@ -15035,7 +15035,7 @@ "hd_id81633368116162\n" "help.text" msgid "Preview" -msgstr "" +msgstr "Podgląd" #. GFTiz #: 04060100.xhp @@ -15044,7 +15044,7 @@ "par_id811633368127119\n" "help.text" msgid "Displays a preview of the scanned image. The preview area contains eight handles. Drag the handles to adjust the scan area or enter a value in the corresponding margin spin box." -msgstr "" +msgstr "Wyświetla podgląd zeskanowanego obrazu. Obszar podglądu zawiera osiem uchwytów. Przeciągnij uchwyty, aby dostosować obszar skanowania, lub wprowadź wartość w odpowiednim polu obracania marginesów." #. SQG8n #: 04060100.xhp @@ -15053,7 +15053,7 @@ "hd_id181633369359784\n" "help.text" msgid "Device used" -msgstr "" +msgstr "Używane urządzenie" #. vtMfF #: 04060100.xhp @@ -15062,7 +15062,7 @@ "par_id311633371297646\n" "help.text" msgid "Select the scanner device in the list of devices detected by your system." -msgstr "" +msgstr "Wybierz urządzenie skanera z listy urządzeń wykrytych przez system." #. PAHaK #: 04060100.xhp @@ -15071,7 +15071,7 @@ "hd_id161633369549370\n" "help.text" msgid "Resolution [DPI]" -msgstr "" +msgstr "Rozdzielczość [dpi]" #. jTyuD #: 04060100.xhp @@ -15080,7 +15080,7 @@ "par_id401633369701424\n" "help.text" msgid "Select the resolution in dots per inch for the scan job. The available resolutions depends on the scanner driver." -msgstr "" +msgstr "Wybierz rozdzielczość w punktach na cal dla zadania skanowania. Dostępne rozdzielczości zależą od sterownika skanera." #. F5SoB #: 04060100.xhp @@ -15089,7 +15089,7 @@ "hd_id351633369697474\n" "help.text" msgid "Show advanced options" -msgstr "" +msgstr "Pokaż zaawansowane opcje" #. Hj5EW #: 04060100.xhp @@ -15098,7 +15098,7 @@ "par_id771633369733491\n" "help.text" msgid "Mark this checkbox to display more configuration options for the scanner device. The set of options is displayed in the Options box and depends on the scanner driver." -msgstr "" +msgstr "Zaznacz to pole wyboru, aby wyświetlić więcej opcji konfiguracji urządzenia skanera. Zestaw opcji jest wyświetlany w polu Opcje i zależy od sterownika skanera." #. 6qqQP #: 04060100.xhp @@ -15107,7 +15107,7 @@ "hd_id461633370147200\n" "help.text" msgid "Options" -msgstr "" +msgstr "Opcje" #. JtCux #: 04060100.xhp @@ -15116,7 +15116,7 @@ "par_id761633371067498\n" "help.text" msgid "Displays the list of available scanner driver advanced options. Double click an option to display its contents just below. The option and its values depends on the scanner driver." -msgstr "" +msgstr "Wyświetla listę dostępnych opcji zaawansowanych sterownika skanera. Kliknij dwukrotnie opcję, aby wyświetlić jej zawartość tuż poniżej. Opcja i jej wartości zależą od sterownika skanera." #. DFbzA #: 04060100.xhp @@ -15125,7 +15125,7 @@ "hd_id461633371554790\n" "help.text" msgid "About Device" -msgstr "" +msgstr "O urządzeniu" #. 2DSpo #: 04060100.xhp @@ -15134,7 +15134,7 @@ "par_id821633371816925\n" "help.text" msgid "Displays a popup window with information obtained from the scanner driver: device address, vendor, scanner model and type of scanner." -msgstr "" +msgstr "Wyświetla wyskakujące okienko z informacjami uzyskanymi ze sterownika skanera: adres urządzenia, producent, model skanera i typ skanera." #. HCSD9 #: 04060100.xhp @@ -15143,7 +15143,7 @@ "hd_id971633371559920\n" "help.text" msgid "Create preview" -msgstr "" +msgstr "Utwórz podgląd" #. T4Tgs #: 04060100.xhp @@ -15152,7 +15152,7 @@ "par_id431633375721518\n" "help.text" msgid "Scans and displays the document in the preview area. Use the Create Preview command to view a sample of the scanned document and set the scan job properties." -msgstr "" +msgstr "Skanuje i wyświetla dokument w obszarze podglądu. Użyj polecenia Utwórz podgląd, aby wyświetlić próbkę zeskanowanego dokumentu i ustawić właściwości zadania skanowania." #. YL3KE #: 04060100.xhp @@ -15161,7 +15161,7 @@ "hd_id151633371565195\n" "help.text" msgid "Scan" -msgstr "" +msgstr "Skanuj" #. zWLcX #: 04060100.xhp @@ -15170,7 +15170,7 @@ "par_id851633375846639\n" "help.text" msgid "Scans an image, and then inserts the result into the document and closes the dialog." -msgstr "" +msgstr "Skanuje obraz, a następnie wstawia wynik do dokumentu i zamyka okno dialogowe." #. qDEzX #: 04060200.xhp @@ -15224,7 +15224,7 @@ "par_id3150838\n" "help.text" msgid "Allows a user to insert characters from the range of symbols found in the installed fonts." -msgstr "" +msgstr "Pozwala użytkownikowi wstawiać znaki z zakresu symboli znajdujących się w zainstalowanych czcionkach." #. gzkiW #: 04100000.xhp @@ -15233,7 +15233,7 @@ "par_id3152372\n" "help.text" msgid "When you click a character in the Special Characters dialog, a preview and the corresponding numerical code for the character is displayed." -msgstr "" +msgstr "Po kliknięciu znaku w oknie dialogowym Znaki specjalne wyświetlany jest podgląd i odpowiedni kod numeryczny znaku." #. AQsdj #: 04100000.xhp @@ -15242,7 +15242,7 @@ "hd_id451614794558893\n" "help.text" msgid "Search" -msgstr "" +msgstr "Znajdź" #. JGCeA #: 04100000.xhp @@ -15251,7 +15251,7 @@ "par_id741614794572948\n" "help.text" msgid "Enter the UTF-8 name or part of the name of the character to display the UTF-8 character in the top left square of the grid. The name of the character cannot be translated. For example, enter tilde to display ~ and enter latin capital letter O with circumflex to display Ô." -msgstr "" +msgstr "Wprowadź nazwę UTF-8 lub część nazwy znaku, aby wyświetlić znak UTF-8 w lewej górnej komórce siatki. Nie można przetłumaczyć nazwy znaku. Na przykład wpisz tilde, aby wyświetlić ~ i wprowadź dużą literę łacińską O z daszkiem, aby wyświetlić Ô." #. d8FbY #: 04100000.xhp @@ -15278,7 +15278,7 @@ "hd_id3155555\n" "help.text" msgid "Character block" -msgstr "" +msgstr "Blok znaków" #. swAqc #: 04100000.xhp @@ -15287,7 +15287,7 @@ "par_id3145090\n" "help.text" msgid "Select a Unicode block for the current font. The special characters for the selected Unicode block are displayed in the character table." -msgstr "" +msgstr "Wybierz blok Unicode dla bieżącej czcionki. Znaki specjalne dla wybranego bloku Unicode są wyświetlane w tabeli znaków." #. 8EHHz #: 04100000.xhp @@ -15305,7 +15305,7 @@ "par_id3154288\n" "help.text" msgid "Click the special character(s) that you want to insert, and then click Insert." -msgstr "" +msgstr "Kliknij znaki specjalne, które chcesz wstawić, a następnie kliknij Wstaw." #. VSFia #: 04100000.xhp @@ -15314,7 +15314,7 @@ "hd_id3154317\n" "help.text" msgid "Recent Characters" -msgstr "" +msgstr "Ostatnie znaki" #. 4FZk9 #: 04100000.xhp @@ -15323,7 +15323,7 @@ "par_id3152551\n" "help.text" msgid "Displays the special characters that were inserted recently." -msgstr "" +msgstr "Wyświetla ostatnio wstawione znaki specjalne." #. FhhBr #: 04100000.xhp @@ -15332,7 +15332,7 @@ "hd_id9854317\n" "help.text" msgid "Favorite Characters" -msgstr "" +msgstr "Ulubione znaki" #. Qp8gh #: 04100000.xhp @@ -15341,7 +15341,7 @@ "par_id3159351\n" "help.text" msgid "Displays the special characters that were chosen with the Add to Favorites button. Up to 16 special characters can be saved as a favorite." -msgstr "" +msgstr "Wyświetla znaki specjalne wybrane przyciskiem Dodaj do ulubionych. Jako ulubione można zapisać do 16 znaków specjalnych." #. yjLEK #: 04100000.xhp @@ -15350,7 +15350,7 @@ "par_id31525545\n" "help.text" msgid "Double-click on a special character will insert it into the document." -msgstr "" +msgstr "Dwukrotne kliknięcie znaku specjalnego spowoduje wstawienie go do dokumentu." #. U8Mm2 #: 04140000.xhp @@ -15377,7 +15377,7 @@ "par_id3159411\n" "help.text" msgid "Opens a file selection dialog to insert an image into the current document." -msgstr "" +msgstr "Otwiera okno dialogowe wyboru pliku, aby wstawić obraz do bieżącego dokumentu." #. rkLGz #: 04140000.xhp @@ -15386,7 +15386,7 @@ "hd_id3149760\n" "help.text" msgid "Style" -msgstr "" +msgstr "Styl" #. bzFsD #: 04140000.xhp @@ -15404,7 +15404,7 @@ "hd_id721654336786322\n" "help.text" msgid "Anchor" -msgstr "" +msgstr "Zakotwiczenie" #. DCFVT #: 04140000.xhp @@ -15413,7 +15413,7 @@ "par_id501654336810460\n" "help.text" msgid "Select the anchor type for the image at the current cell position." -msgstr "" +msgstr "Wybierz typ zakotwiczenia dla obrazu w bieżącej pozycji komórki." #. cnRdY #: 04140000.xhp @@ -15458,7 +15458,7 @@ "tit\n" "help.text" msgid "OLE Object (Insert Menu)" -msgstr "" +msgstr "Obiekt OLE (menu wstawiania)" #. 9hJLy #: 04150000.xhp @@ -15476,7 +15476,7 @@ "par_id3159079\n" "help.text" msgid "Inserts an embedded or linked object into your document, including formulas, QR codes, and OLE objects." -msgstr "" +msgstr "Wstawia do dokumentu osadzony lub połączony obiekt, w tym formuły, kody QR i obiekty OLE." #. PuimY #: 04150000.xhp @@ -15539,7 +15539,7 @@ "par_id3145314\n" "help.text" msgid "You cannot use the clipboard or drag and drop to move OLE objects to other files." -msgstr "" +msgstr "Nie możesz używać schowka ani przeciągać i upuszczać obiektów OLE do innych plików." #. YTWCi #: 04150100.xhp @@ -15638,7 +15638,7 @@ "par_id3155434\n" "help.text" msgid "Enter the name of the file that you want to link or embed, or click Search to locate the file." -msgstr "" +msgstr "Wprowadź nazwę pliku, który chcesz połączyć lub osadzić, albo kliknij Szukaj, aby zlokalizować plik." #. CHtvz #: 04150100.xhp @@ -15710,7 +15710,7 @@ "par_id3149495\n" "help.text" msgid "Inserts a formula into the current document. For more information open the $[officename] Math Help." -msgstr "" +msgstr "Wstawia formułę do bieżącego dokumentu. Aby uzyskać więcej informacji, otwórz Pomoc $[officename] Math." #. 4aSw9 #: 04160300.xhp @@ -15881,7 +15881,7 @@ "bm_id3157959\n" "help.text" msgid "formatting; undoing when writingparagraph;clear direct formattingformat;clear direct formattingdirect formatting;clearhyperlinks; deletingdeleting; hyperlinkscells;resetting formats" -msgstr "" +msgstr "formatowanie; cofanie podczas pisaniaakapit;wyczyść formatowanie bezpośrednieformat;wyczyść formatowanie bezpośrednieformatowanie bezpośrednie;wyczyśćhiperłącza; usuwanieusuwanie; hiperłączakomórki;resetowanie formatów" #. y96Dt #: 05010000.xhp @@ -15899,7 +15899,7 @@ "par_id3145829\n" "help.text" msgid "Removes direct formatting from the selection." -msgstr "" +msgstr "Usuwa bezpośrednie formatowanie z zaznaczenia." #. LYtxB #: 05010000.xhp @@ -15917,7 +15917,7 @@ "par_id671594846326658\n" "help.text" msgid "Applied styles (paragraph, character, and other types) are not affected by Clear Direct Formatting, only direct formatting applied on top of the styles. To remove formatting applied by a character or paragraph style, reapply the corresponding Default style." -msgstr "" +msgstr "Stosowane style (akapitu, znaku i inne typy) nie podlegają opcji Wyczyść formatowanie bezpośrednie, a jedynie formatowaniu bezpośredniemu stosowanemu na stylach. Aby usunąć formatowanie zastosowane przez styl znaku lub akapitu, ponownie zastosuj odpowiedni styl Domyślny." #. RcqAz #: 05010000.xhp @@ -15926,7 +15926,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 "" +msgstr "Aby zatrzymać stosowanie bezpośredniego formatowania, takiego jak podkreślenie, podczas wpisywania nowego tekstu na końcu wiersza, naciśnij Shift+Ctrl+X." #. uGgku #: 05010000.xhp @@ -15935,7 +15935,7 @@ "par_id91619108534060\n" "help.text" msgid "Bullets and numbering are properties of lists. Clear Direct Formatting does not clear directly formatted bullets and numbering found in a paragraph. To remove the bullet and numbering applied directly to a paragraph, use the Toggle Unordered List, the Toggle Ordered List or the No List icons on the Formatting toolbar." -msgstr "" +msgstr "Punktory i numeracja to właściwości list. Wyczyść formatowanie bezpośrednie nie usuwa bezpośrednio sformatowanych punktorów i numeracji znajdujących się w akapicie. Aby usunąć punktor i numerację zastosowaną bezpośrednio do akapitu, użyj ikon Przełącz listę nieuporządkowaną, Przełącz listę uporządkowaną lub Brak listy na pasku narzędzi formatowania." #. rQFC8 #: 05020000.xhp @@ -15998,7 +15998,7 @@ "bm_id3154812\n" "help.text" msgid "formats; fontscharacters;fonts and formatsfonts; formatstext; fonts and formatstypefaces; formatsfont sizes; relative changeslanguages; spellchecking and formattinglanguages; spellingcharacters; enabling CTL and Asian characters" -msgstr "" +msgstr "formaty; czcionkiznaki;czcionki i formatyczcionki; formatytekst; czcionki i formatykroje pisma; formatyrozmiary czcionek; względne zmianyjęzyki; sprawdzanie pisowni i formatowaniejęzyki; pisowniaznaki; włączenie CTL i znaków azjatyckich" #. tYER7 #: 05020100.xhp @@ -16070,7 +16070,7 @@ "par_id3153663\n" "help.text" msgid "To enable support for complex text layout and Asian character sets, choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages, and then select the Enabled box in the corresponding area." -msgstr "" +msgstr "Aby włączyć obsługę złożonego układu tekstu i zestawów znaków azjatyckich, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - Ustawienia językowe - Języki, a następnie zaznacz pole Włączone w odpowiednim obszarze." #. ig9HL #: 05020100.xhp @@ -16142,7 +16142,7 @@ "par_id3148797\n" "help.text" msgid "If you are creating a style that is based on another style, you can enter a percentage value or a point value (for example, -2pt or +5pt)." -msgstr "" +msgstr "Jeśli tworzysz styl oparty na innym stylu, możesz wprowadzić wartość procentową lub punktową (na przykład -2pt lub +5pt)." #. hJCp6 #: 05020100.xhp @@ -16187,7 +16187,7 @@ "par_id3153770\n" "help.text" msgid "You can also change the locale setting for cells (choose Format - Cells - Numbers)." -msgstr "" +msgstr "Możesz także zmienić ustawienia regionalne dla komórek (wybierz Format - Komórki - Liczby)." #. FASWt #: 05020100.xhp @@ -16196,7 +16196,7 @@ "par_id341616754767611\n" "help.text" msgid "The following buttons appear only for Paragraph Style and Character Style." -msgstr "" +msgstr "Następujące przyciski pojawiają się tylko dla stylu akapitu i stylu znaku." #. ZqG5G #: 05020100.xhp @@ -16268,7 +16268,7 @@ "par_id3146924\n" "help.text" msgid "Sets the color for the selected text. If you select Automatic, the text color is set to black for light backgrounds and to white for dark backgrounds." -msgstr "" +msgstr "Ustawia kolor zaznaczonego tekstu. Jeśli wybierzesz Automatyczny, kolor tekstu zostanie ustawiony na czarny dla jasnego tła i na biały dla ciemnego tła." #. ScU6M #: 05020200.xhp @@ -16304,7 +16304,7 @@ "par_idN10CDA\n" "help.text" msgid "To exit the paint can mode, click once, or press the Esc key." -msgstr "" +msgstr "Aby wyjść z trybu rysowania, kliknij raz lub naciśnij klawisz Esc." #. MFvGw #: 05020200.xhp @@ -16322,7 +16322,7 @@ "par_id7613757\n" "help.text" msgid "The text color is ignored on screen, if the Use automatic font color for screen display check box is selected in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Accessibility." -msgstr "Zaznaczenie pola wyboru Użyj automatycznego koloru czcionki ekranowej w opcjach %PRODUCTNAME – PreferencjeNarzędzia – Opcje%PRODUCTNAME – Ułatwienia dostępu powoduje zignorowanie koloru tekstu na ekranie." +msgstr "Zaznaczenie pola wyboru Użyj automatycznego koloru czcionki ekranowej w opcjach %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME - Dostępność powoduje zignorowanie koloru tekstu na ekranie." #. zbPP3 #: 05020200.xhp @@ -16331,7 +16331,7 @@ "par_id3144766\n" "help.text" msgid "Click to apply the current font color to the selected characters. You can also click here, and then drag a selection to change the text color. Click the arrow next to the icon to open the Font color toolbar." -msgstr "" +msgstr "Kliknij, aby zastosować bieżący kolor czcionki do zaznaczonych znaków. Możesz także kliknąć tutaj, a następnie przeciągnąć zaznaczenie, aby zmienić kolor tekstu. Kliknij strzałkę obok ikony, aby otworzyć pasek narzędzi Kolor czcionki." #. Yvw3j #: 05020200.xhp @@ -16340,7 +16340,7 @@ "hd_id0123200902243377\n" "help.text" msgid "Transparency" -msgstr "" +msgstr "Przezroczystość" #. xbjmo #: 05020200.xhp @@ -16349,7 +16349,7 @@ "par_id3146925\n" "help.text" msgid "Sets the transparency of the character text. The value 100% means entirely transparent, while 0% means not transparent at all." -msgstr "" +msgstr "Ustawia przezroczystość tekstu znaku. Wartość 100% oznacza całkowitą przezroczystość, natomiast 0% oznacza całkowity brak przejrzystości." #. NUXSY #: 05020200.xhp @@ -16358,7 +16358,7 @@ "par_id941582477457694\n" "help.text" msgid "Transparency cannot be set for Paragraph Style and Character Style." -msgstr "" +msgstr "Przezroczystości nie można ustawić dla stylu akapitu i stylu znaku." #. DopC6 #: 05020200.xhp @@ -16367,7 +16367,7 @@ "hd_id91580568371950\n" "help.text" msgid "Text Decoration" -msgstr "" +msgstr "Dekoracja tekstu" #. WMggf #: 05020200.xhp @@ -16376,7 +16376,7 @@ "par_id0123200902291084\n" "help.text" msgid "Overlines or removes overlining from the selected text. If the cursor is not in a word, the new text that you enter is overlined." -msgstr "" +msgstr "Nadkreśla lub usuwa nadkreślenia z zaznaczonego tekstu. Jeśli kursor nie znajduje się w słowie, nowo wprowadzony tekst jest nadkreślony." #. yLgGs #: 05020200.xhp @@ -16439,7 +16439,7 @@ "par_id3150496\n" "help.text" msgid "If you save your document in Microsoft Word format, all of the strikethrough styles are converted to the single line style." -msgstr "" +msgstr "Jeśli zapiszesz dokument w formacie programu Microsoft Word, wszystkie style przekreślenia zostaną przekonwertowane na styl pojedynczej linii." #. ojwCR #: 05020200.xhp @@ -16547,7 +16547,7 @@ "par_id3155922\n" "help.text" msgid "Without - No effect is applied." -msgstr "" +msgstr "Bez ‐ żaden efekt nie jest stosowany." #. 3FEXm #: 05020200.xhp @@ -16556,7 +16556,7 @@ "par_id3154280\n" "help.text" msgid "UPPERCASE - Changes the selected lowercase characters to uppercase characters." -msgstr "" +msgstr "WIELKIE LITERY - Zmienia wybrane małe litery na wielkie." #. iRaV4 #: 05020200.xhp @@ -16565,7 +16565,7 @@ "par_id3148947\n" "help.text" msgid "lowercase - Changes the selected uppercase characters to lower characters." -msgstr "" +msgstr "małe litery - Zmienia wybrane wielkie litery na małe." #. FEVh9 #: 05020200.xhp @@ -16574,7 +16574,7 @@ "par_id3149456\n" "help.text" msgid "Capitalize Every Word - Changes the first character of each selected word to an uppercase character." -msgstr "" +msgstr "Jak Nazwy Własne - Zmienia pierwszy znak każdego zaznaczonego słowa na wielką literę." #. GBuCC #: 05020200.xhp @@ -16583,7 +16583,7 @@ "par_id3154937\n" "help.text" msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." -msgstr "" +msgstr "Kapitaliki - Zmienia wybrane małe litery na wielkie, a następnie zmniejsza ich rozmiar." #. B3MEb #: 05020200.xhp @@ -16601,7 +16601,7 @@ "par_idN10B85\n" "help.text" msgid "Hides the selected characters. To display the hidden text, ensure that Formatting Marks is selected in the View menu. You can also choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids and select Hidden characters." -msgstr "" +msgstr "Ukrywa zaznaczone znaki. Aby wyświetlić ukryty tekst, upewnij się, że opcja Znaczniki formatowania jest zaznaczone w menu Widok. Możesz także wybrać %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Writer - Pomoc w formatowaniu, a następnie Ukryte znaki." #. iAwbr #: 05020200.xhp @@ -16619,7 +16619,7 @@ "par_id3146974\n" "help.text" msgid "Select a relief effect to apply to the selected text. The embossed relief makes the characters appear as if they are raised above the page. The engraved relief makes the characters appear as if they are pressed into the page." -msgstr "" +msgstr "Wybierz efekt Uwypuklenie, który chcesz zastosować do zaznaczonego tekstu. Wypukłe uwypuklenie sprawia, że znaki wyglądają tak, jakby były uniesione ponad stronę. Grawerowane uwypuklenie sprawia, że znaki wyglądają tak, jakby były wciśnięte w stronę." #. BhRXq #: 05020200.xhp @@ -16727,7 +16727,7 @@ "par_id3145071\n" "help.text" msgid "Specify the formatting options for the selected cell(s)." -msgstr "" +msgstr "Określ opcje formatowania dla wybranych komórek." #. E2nXs #: 05020300.xhp @@ -16745,7 +16745,7 @@ "par_id3145086\n" "help.text" msgid "Specify the formatting option for the selected variable." -msgstr "" +msgstr "Określ opcję formatowania dla wybranej zmiennej." #. KqXXP #: 05020300.xhp @@ -16763,7 +16763,7 @@ "par_id3150774\n" "help.text" msgid "Select a category from the list, and then select a formatting style in the Format box." -msgstr "" +msgstr "Wybierz kategorię z listy, a następnie wybierz styl formatowania w polu Format." #. NwGUJ #: 05020300.xhp @@ -16790,7 +16790,7 @@ "par_id3148491\n" "help.text" msgid "Select how you want the contents of the selected cell(s) field to be displayed. The code for the selected option is displayed in the Format code box." -msgstr "" +msgstr "Wybierz, jak chcesz wyświetlać zawartość zaznaczonych komórekpól do wyświetlenia. Kod wybranej opcji jest wyświetlany w polu Kod formatu." #. zFHm5 #: 05020300.xhp @@ -16835,7 +16835,7 @@ "par_id3154138\n" "help.text" msgid " Specifies the language setting for the selected fields. With the language set to Default, $[officename] automatically applies the number formats associated with the system default language. Specifies the language setting for the selected cells. Specifies the language setting for the selected field. " -msgstr "" +msgstr "Określa ustawienie języka dla zaznaczonych pól. Gdy język jest ustawiony na Domyślny, $[officename] automatycznie stosuje formaty liczb powiązane z domyślnym językiem systemu. Określa ustawienie języka dla zaznaczonych komórek.Określa ustawienie języka dla zaznaczonego pola." #. K29ZG #: 05020300.xhp @@ -16943,7 +16943,7 @@ "hd_id3155131\n" "help.text" msgid "Negative numbers red" -msgstr "" +msgstr "Liczby ujemne na czerwono" #. W2Gsi #: 05020300.xhp @@ -16952,7 +16952,7 @@ "par_id3159252\n" "help.text" msgid "Changes the font color of negative numbers to red." -msgstr "" +msgstr "Zmienia kolor czcionki liczb ujemnych na czerwony." #. FGxEc #: 05020300.xhp @@ -16961,7 +16961,7 @@ "hd_id3147434\n" "help.text" msgid "Thousands separator" -msgstr "" +msgstr "Separator tysięcy" #. ZZLrB #: 05020300.xhp @@ -16988,7 +16988,7 @@ "par_id3146149\n" "help.text" msgid "With scientific format, Engineering notation ensures that exponent is a multiple of 3." -msgstr "" +msgstr "W formacie naukowym notacja inżynierska gwarantuje, że wykładnik jest wielokrotnością liczby 3." #. YFp5k #: 05020300.xhp @@ -17105,7 +17105,7 @@ "bm_id3153514\n" "help.text" msgid "format codes; numbers conditions; in number formats number formats; codes currency formats formats;of currencies/date/time numbers; date, time and currency formats Euro; currency formats date formats times, formats percentages, formats scientific notation, formats engineering notation, formats fraction, formats native numeral LCID, extended" -msgstr "" +msgstr "kody formatu; liczbywarunki; w formatach liczbowychformaty liczbowe; kodyformaty walutformaty; waluty/data/godzinaliczby; formaty daty, godziny i walutyEuro; formaty walutformaty datczasy, formatyprocenty, formatynotacja naukowa, formatynotacja inżynierska, formatyułamek, formatycyfra rodzimaLCID, rozszerzony" #. fqAEA #: 05020301.xhp @@ -17123,7 +17123,7 @@ "par_id3150467\n" "help.text" msgid "Number format codes can consist of up to four sections separated by a semicolon (;)." -msgstr "" +msgstr "Kody formatu liczb mogą składać się z maksymalnie czterech sekcji oddzielonych średnikiem (;)." #. u5mJD #: 05020301.xhp @@ -17159,7 +17159,7 @@ "par_id3155070\n" "help.text" msgid "Fourth section applies if the content is not a value, but some text. Content is represented by an at sign (@)." -msgstr "" +msgstr "Czwarta sekcja ma zastosowanie, jeśli treść nie jest wartością, ale jakimś tekstem. Treść jest reprezentowana przez znak małpa (@)." #. pQGkC #: 05020301.xhp @@ -17177,7 +17177,7 @@ "par_id3153624\n" "help.text" msgid "Use zero (0), the number sign (#) or the question mark (?) as placeholders in your number format code to represent numbers. The # only displays significant digits, while the 0 displays zeroes if there are fewer digits in the number than in the number format. The ? works as the # but adds a space character to keep decimal alignment if there is a hidden non-significant zero." -msgstr "" +msgstr "Użyj zera (0), znaku kratki (#) lub znaku zapytania (?) jako symboli zastępczych w kodzie formatu liczb, aby reprezentować liczby. # wyświetla tylko cyfry znaczące, podczas gdy 0 wyświetla zera, jeśli w liczbie jest mniej cyfr niż w formacie liczbowym. ? działa jak #, ale dodaje znak spacji, aby zachować wyrównanie dziesiętne, jeśli istnieje ukryte nieistotne zero." #. A29X3 #: 05020301.xhp @@ -17186,7 +17186,7 @@ "par_id3153323\n" "help.text" msgid "Use question marks (?), zeroes (0) or number signs (#) to represent the number of digits to include in the numerator and the denominator of a fraction. Fractions that do not fit the pattern that you define are displayed as floating point numbers." -msgstr "" +msgstr "Użyj znaków zapytania (?), znaków kratki (0) lub znaków liczbowych (#), aby przedstawić liczbę cyfr, które mają być zawarte w liczniku i mianownik ułamka. Ułamki, które nie pasują do zdefiniowanego wzorca, są wyświetlane jako liczby zmiennoprzecinkowe." #. 7CTWF #: 05020301.xhp @@ -17213,7 +17213,7 @@ "par_id3157896\n" "help.text" msgid "Explanation" -msgstr "Wyjaśnienie" +msgstr "Znaczenie" #. 7GtC4 #: 05020301.xhp @@ -17348,7 +17348,7 @@ "par_id3154380\n" "help.text" msgid "Depending on your language setting, you can use a comma, a period or a blank as a thousands separator. You can also use the separator to reduce the size of the number that is displayed by a multiple of 1000 for each separator. The examples below use comma as thousands separator:" -msgstr "" +msgstr "W zależności od ustawień języka możesz użyć przecinka, kropki lub spacji jako separatora tysięcy. Możesz także użyć separatora, aby zmniejszyć rozmiar wyświetlanej liczby o wielokrotność 1000 dla każdego separatora. Poniższe przykłady używają przecinka jako separatora tysięcy:" #. CMxqA #: 05020301.xhp @@ -17411,7 +17411,7 @@ "par_id3154224\n" "help.text" msgid "To include text in a number format that is applied to a cell containing numbers, place a double quotation mark (\") in front of and behind the text, or a backslash (\\) before a single character. For example, enter #.# \"meters\" to display \"3.5 meters\" or #.# \\m to display \"3.5 m\". If you use space as thousands separator, you need to insert spaces between quotes in the previous examples: #.#\" meters\" or #.#\\ \\m to get the correct result." -msgstr "" +msgstr "Aby dołączyć tekst w formacie liczbowym zastosowanym do komórki zawierającej liczby, umieść podwójny cudzysłów (\") przed i za tekstem lub ukośnik odwrotny (\\) przed pojedynczym znakiem. Na przykład wprowadź #,# \"metra\", aby wyświetlić \"3,5 metra\" lub #,# \\m, aby wyświetlić \"3,5 m\". Jeśli używasz spacji jako separatora tysięcy, musisz wstawić spacje między cudzysłowami w poprzednich przykładach: #,#\" metra\" lub #,#\\ \\m, aby uzyskać poprawny wynik." #. nHFUw #: 05020301.xhp @@ -17447,7 +17447,7 @@ "par_id3156294\n" "help.text" msgid "To use a character to define the width of a space in a number format, type an underscore (_) followed by the character. The width of the space varies according to the width of the character that you choose. For example, _M creates a wider space than _i." -msgstr "" +msgstr "Aby użyć znaku do zdefiniowania szerokości spacji w formacie liczbowym, wpisz podkreślenie (_), po którym następuje znak. Szerokość odstępu zmienia się w zależności od szerokości wybranego znaku. Na przykład _M tworzy szerszą przestrzeń niż _i." #. 7AkYm #: 05020301.xhp @@ -17456,7 +17456,7 @@ "par_id3156295\n" "help.text" msgid "To fill free space with a given character, use an asterisk (*) followed by this character. For instance:" -msgstr "" +msgstr "Aby wypełnić wolne miejsce danym znakiem, użyj gwiazdki (*), po której następuje ten znak. Na przykład:" #. 7fTxt #: 05020301.xhp @@ -17465,7 +17465,7 @@ "par_id3156297\n" "help.text" msgid "will display integer value (0) preceded by as many as needed backslash characters (\\) to fill column width. For accounting representation, you may left align currency symbol with a format similar to:" -msgstr "" +msgstr "wyświetla liczbę całkowitą (0) poprzedzoną taką liczbą ukośników odwrotnych (\\), jaka jest potrzebna do wypełnienia szerokości kolumny. Podczas tworzenia księgowania możesz wyrównać symbol waluty do lewej, używając formatu podobnego do tego:" #. GHJRC #: 05020301.xhp @@ -17591,7 +17591,7 @@ "par_id3151168\n" "help.text" msgid "To display numbers as percentages, add the percent sign (%) to the number format." -msgstr "" +msgstr "Aby wyświetlać liczby w procentach, dodaj znak procentu (%) do formatu liczb." #. B4yFw #: 05020301.xhp @@ -17609,7 +17609,7 @@ "par_id3146923\n" "help.text" msgid "Scientific notation lets you write very large numbers or very small fractions in a compact form. For example, in scientific notation, 650000 is written as 6.5 x 105, and 0.000065 as 6.5 x 10-5. In %PRODUCTNAME, these numbers are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that displays numbers using scientific notation, enter a # or 0, and then one of the following codes E-, E+, e- or e+. If sign is omitted after E or e, it won't appear for positive value of exponent. To get engineering notation, enter 3 digits (0 or #) in the integer part: ###.##E+00 for instance." -msgstr "" +msgstr "Notacja wykładnicza umożliwia zapisywanie bardzo dużych liczb lub bardzo małych ułamków w zwartej formie. Na przykład w notacji naukowej 650000 jest zapisywane jako 6,5 x 105, a 0,000065 jako 6,5 x 10-5. W %PRODUCTNAME liczby te są zapisywane odpowiednio jako 6,5E+5 i 6,5E-5. Aby utworzyć format liczb, który wyświetla liczby w notacji naukowej, wprowadź # lub 0, a następnie jeden z następujących kodów E-, E+, e- lub e+. Jeśli znak zostanie pominięty po E lub e, nie pojawi się on dla dodatniej wartości wykładnika. Aby uzyskać notację inżynierską, wpisz 3 cyfry (0 lub #) w części całkowitej: na przykład ###,##E+00." #. D5eEE #: 05020301.xhp @@ -17636,7 +17636,7 @@ "par_id3146925\n" "help.text" msgid "Denominator is calculated to get the nearest value of the fraction with respect to the number of placeholders. For example, PI value is represented as 3 16/113 with format:" -msgstr "" +msgstr "Mianownik jest obliczany w celu uzyskania najbliższej wartości ułamka w odniesieniu do liczby symboli zastępczych. Na przykład wartość PI jest reprezentowana jako 3 16/113 w formacie:" #. Ao7TR #: 05020301.xhp @@ -17672,7 +17672,7 @@ "par_id3150032\n" "help.text" msgid "You can also specify the locale setting for the currency by entering the locale code for the country after the symbol. For example, [$€-407] represents Euros in Germany. To view the locale code for a country, select the country in the Language list on the Numbers tab of the Format Cells dialog." -msgstr "" +msgstr "Możesz także określić ustawienia regionalne dla waluty, wprowadzając kod lokalizacji dla kraju po symbolu. Na przykład [$€-407] reprezentuje euro w Niemczech. Aby wyświetlić kod ustawień regionalnych dla kraju, wybierz kraj z listy Język na karcie Liczby w oknie dialogowym Formatuj komórki." #. D8Cj4 #: 05020301.xhp @@ -17870,7 +17870,7 @@ "par_id3147534\n" "help.text" msgid "Era, abbreviation. On the Japanese Gengou calendar, single character (possible values are: M, T, S, H)" -msgstr "" +msgstr "Era, skrót. W japońskim kalendarzu gengo, pojedynczy znak (możliwe wartości: M, T, S, H)" #. T8HQs #: 05020301.xhp @@ -17897,7 +17897,7 @@ "par_id3147344\n" "help.text" msgid "Number of the year within an era, short format" -msgstr "" +msgstr "Numer roku w erze, krótki format" #. TGuaC #: 05020301.xhp @@ -17906,7 +17906,7 @@ "par_id3148487\n" "help.text" msgid "Number of the year within an era, long format" -msgstr "" +msgstr "Numer roku w erze, długi format" #. Akj7F #: 05020301.xhp @@ -17942,7 +17942,7 @@ "par_id1002200811423518\n" "help.text" msgid "The above listed formatting codes work with your language version of %PRODUCTNAME. However, when you need to switch the locale of %PRODUCTNAME to another locale, you need to know the formatting codes used in that other locale." -msgstr "" +msgstr "Wymienione powyżej kody formatowania działają z Twoją wersją językową programu %PRODUCTNAME. Jeśli jednak chcesz zmienić ustawienia regionalne programu %PRODUCTNAME na inne, musisz znać kody formatowania używane w tych innych ustawieniach regionalnych." #. zz3PF #: 05020301.xhp @@ -18158,7 +18158,7 @@ "par_id231020161240096930\n" "help.text" msgid "The specified calendar is exported to Microsoft Excel using extended LCID. Extended LCID can also be used in the format string. It will be converted to a calendar modifier if it is supported. See Extended LCID section below." -msgstr "" +msgstr "Określony kalendarz jest eksportowany do programu Microsoft Excel przy użyciu rozszerzonego identyfikatora LCID. W ciągu formatu można również użyć rozszerzonego identyfikatora LCID. Zostanie przekonwertowany na modyfikator kalendarza, jeśli jest obsługiwany. Zobacz sekcję Rozszerzony identyfikator LCID poniżej." #. z6s3R #: 05020301.xhp @@ -18464,7 +18464,7 @@ "par_id3149174\n" "help.text" msgid "The Date & Time format displays the date and time that an entry was made to a cell with this format." -msgstr "" +msgstr "Format Data i godzina wyświetla datę i godzinę dokonania wpisu w komórce w tym formacie." #. DrFqi #: 05020301.xhp @@ -18491,7 +18491,7 @@ "par_id3150108\n" "help.text" msgid "To display hours, minutes and seconds use the following number format codes:" -msgstr "" +msgstr "Aby wyświetlić godziny, minuty i sekundy, użyj następujących kodów formatu liczb:" #. UC6iV #: 05020301.xhp @@ -18635,7 +18635,7 @@ "hd_id231020161309289931\n" "help.text" msgid "NatNum modifiers" -msgstr "" +msgstr "Modyfikatory NatNum" #. Dg3Aq #: 05020301.xhp @@ -18644,7 +18644,7 @@ "par_id3149998\n" "help.text" msgid "To display numbers using native number characters, use a [NatNum1], [NatNum2], ..., [NatNum11] modifier at the beginning of a number format codes." -msgstr "" +msgstr "Aby wyświetlić liczby przy użyciu rodzimych znaków liczbowych, użyj modyfikatora [NatNum1], [NatNum2], ..., [NatNum11] na początku kodów formatu liczb." #. yeeyG #: 05020301.xhp @@ -18653,7 +18653,7 @@ "par_id3158313\n" "help.text" msgid "To spell out numbers in various number, currency and date formats, use a [NatNum12] modifier with the chosen arguments at the beginning of a number format code. See NatNum12 section below." -msgstr "" +msgstr "Aby przeliterować liczby w różnych formatach liczb, walut i dat, użyj modyfikatora [NatNum12] z wybranymi argumentami na początku kodu formatu liczb. Zobacz sekcję NatNum12 poniżej." #. qJYCC #: 05020301.xhp @@ -19895,7 +19895,7 @@ "hd_id231020161309281519\n" "help.text" msgid "Extended LCID" -msgstr "" +msgstr "Rozszerzony LCID" #. EjbjU #: 05020301.xhp @@ -19904,7 +19904,7 @@ "par_id23102016124541451\n" "help.text" msgid "If compatible, native numbering and calendar are exported to Microsoft Excel using extended LCID. Extended LCID can also be used in string format instead of NatNum modifier." -msgstr "" +msgstr "Jeśli jest to zgodne, natywna numeracja i kalendarz są eksportowane do programu Microsoft Excel przy użyciu rozszerzonego identyfikatora LCID. Rozszerzonego identyfikatora LCID można również używać w formacie łańcuchowym zamiast modyfikatora NatNum." #. aNoM6 #: 05020301.xhp @@ -19913,7 +19913,7 @@ "par_id23102016130928602\n" "help.text" msgid "Extended LCID consists of 8 hexadecimal digits: [$-NNCCLLLL], with 2 first digits NN for native numerals, CC for calendar and LLLL for LCID code. For instance, [$-0D0741E] will be converted to [NatNum1][$-41E][~buddhist]: Thai numerals (0D) with Buddhist calendar (07) in Thai locale (041E)." -msgstr "" +msgstr "Rozszerzony LCID składa się z 8 cyfr szesnastkowych: [$-NNCCLLLL], z 2 pierwszymi cyframi NN dla cyfr rodzimych, CC dla kalendarza i LLLL dla kodu LCID. Na przykład [$-0D0741E] zostanie przekonwertowane na [NatNum1][$-41E][~buddhist]: cyfry tajskie (0D) z kalendarzem buddyjskim (07) w języku tajskim (041E)." #. p7udq #: 05020301.xhp @@ -19922,7 +19922,7 @@ "par_id231020161309295474\n" "help.text" msgid "Native Numerals" -msgstr "" +msgstr "Cyfry rodzime" #. 4AWR6 #: 05020301.xhp @@ -19931,7 +19931,7 @@ "par_id231020161309291913\n" "help.text" msgid "Two first digits NN represents native numerals:" -msgstr "" +msgstr "Dwie pierwsze cyfry NN reprezentują cyfry rodzime:" #. Xg4PP #: 05020301.xhp @@ -19940,7 +19940,7 @@ "par_id231020161309383870\n" "help.text" msgid "Numeral" -msgstr "" +msgstr "Cyfra" #. 25uYC #: 05020301.xhp @@ -19949,7 +19949,7 @@ "par_id231020161309384878\n" "help.text" msgid "Representation" -msgstr "" +msgstr "Reprezentacja" #. 4QivF #: 05020301.xhp @@ -19958,7 +19958,7 @@ "par_id231020161309389959\n" "help.text" msgid "Compatible LCID" -msgstr "" +msgstr "Kompatybilny z LCID" #. GN9La #: 05020301.xhp @@ -19967,7 +19967,7 @@ "par_id231020161309391619\n" "help.text" msgid "Arabic" -msgstr "" +msgstr "Arabska" #. rSBmQ #: 05020301.xhp @@ -19976,7 +19976,7 @@ "par_id231020161309393242\n" "help.text" msgid "all" -msgstr "" +msgstr "wszystkie" #. gXWcN #: 05020301.xhp @@ -19985,7 +19985,7 @@ "par_id231020161509387949\n" "help.text" msgid "Eastern Arabic" -msgstr "" +msgstr "Wschodnioarabska" #. YXAzv #: 05020301.xhp @@ -19994,7 +19994,7 @@ "par_id231020161509394713\n" "help.text" msgid "Persian" -msgstr "" +msgstr "Perska" #. eErRK #: 05020301.xhp @@ -20003,7 +20003,7 @@ "par_id231020161509397579\n" "help.text" msgid "Devanagari" -msgstr "" +msgstr "Dewanagari" #. DgYBL #: 05020301.xhp @@ -20012,7 +20012,7 @@ "par_id231020161509408164\n" "help.text" msgid "Bengali" -msgstr "" +msgstr "Bengalska" #. Vk2ZC #: 05020301.xhp @@ -20021,7 +20021,7 @@ "par_id231020161509405793\n" "help.text" msgid "Punjabi" -msgstr "" +msgstr "Pendżabska" #. CB7Db #: 05020301.xhp @@ -20030,7 +20030,7 @@ "par_id231020161509417889\n" "help.text" msgid "Gujarati" -msgstr "" +msgstr "Gudżarati" #. Eexyx #: 05020301.xhp @@ -20039,7 +20039,7 @@ "par_id231020161509417961\n" "help.text" msgid "Oriya" -msgstr "" +msgstr "Orija" #. 9DaUV #: 05020301.xhp @@ -20048,7 +20048,7 @@ "par_id231020161509428961\n" "help.text" msgid "Tamil" -msgstr "" +msgstr "Tamilska" #. x4z4A #: 05020301.xhp @@ -20057,7 +20057,7 @@ "par_id231020161509425901\n" "help.text" msgid "Telugu" -msgstr "" +msgstr "Telugu" #. xgDxQ #: 05020301.xhp @@ -20066,7 +20066,7 @@ "par_id231020161509439802\n" "help.text" msgid "Kannada" -msgstr "" +msgstr "Kannada" #. 6AD4X #: 05020301.xhp @@ -20075,7 +20075,7 @@ "par_id231020161509439635\n" "help.text" msgid "Malayalam" -msgstr "" +msgstr "Malajalam" #. ayLgA #: 05020301.xhp @@ -20084,7 +20084,7 @@ "par_id231020161509447377\n" "help.text" msgid "Thai" -msgstr "" +msgstr "Tajska" #. skrmK #: 05020301.xhp @@ -20093,7 +20093,7 @@ "par_id231020161509441865\n" "help.text" msgid "Lao" -msgstr "" +msgstr "Laotańska" #. Aqrmf #: 05020301.xhp @@ -20102,7 +20102,7 @@ "par_id231020161509453645\n" "help.text" msgid "Tibetan" -msgstr "" +msgstr "Tybetańska" #. AhenQ #: 05020301.xhp @@ -20111,7 +20111,7 @@ "par_id231020161509455556\n" "help.text" msgid "Burmese" -msgstr "" +msgstr "Birmańska" #. 3iXqP #: 05020301.xhp @@ -20120,7 +20120,7 @@ "par_id231020161509468188\n" "help.text" msgid "Tigrina" -msgstr "" +msgstr "Tigrina" #. HcBZc #: 05020301.xhp @@ -20129,7 +20129,7 @@ "par_id231020161509467357\n" "help.text" msgid "Khmer" -msgstr "" +msgstr "Khmerska" #. TjKYV #: 05020301.xhp @@ -20138,7 +20138,7 @@ "par_id231020161509473329\n" "help.text" msgid "Mongolian" -msgstr "" +msgstr "Mongolska" #. 6Mu84 #: 05020301.xhp @@ -20147,7 +20147,7 @@ "par_id231020161509481466\n" "help.text" msgid "Japanese" -msgstr "" +msgstr "Japońska" #. QzVEU #: 05020301.xhp @@ -20156,7 +20156,7 @@ "par_id231020161656391202\n" "help.text" msgid "(financial)" -msgstr "" +msgstr "(finansowa)" #. Y2aTe #: 05020301.xhp @@ -20165,7 +20165,7 @@ "par_id231020161656429927\n" "help.text" msgid "(fullwidth Arabic)" -msgstr "" +msgstr "(arabska o pełnej szerokości)" #. 9FDev #: 05020301.xhp @@ -20174,7 +20174,7 @@ "par_id231020161509594133\n" "help.text" msgid "Chinese - simplified" -msgstr "" +msgstr "Chińska – uproszczona" #. ZEikM #: 05020301.xhp @@ -20183,7 +20183,7 @@ "par_id231020161656421782\n" "help.text" msgid "(financial)" -msgstr "" +msgstr "(finansowa)" #. XHfHM #: 05020301.xhp @@ -20192,7 +20192,7 @@ "par_id231020161656426120\n" "help.text" msgid "(fullwidth Arabic)" -msgstr "" +msgstr "(arabska o pełnej szerokości)" #. c6qfT #: 05020301.xhp @@ -20201,7 +20201,7 @@ "par_id231020161510005692\n" "help.text" msgid "Chinese - traditional" -msgstr "" +msgstr "Chińska – tradycyjna" #. k4L5D #: 05020301.xhp @@ -20210,7 +20210,7 @@ "par_id231020161656435830\n" "help.text" msgid "(financial)" -msgstr "" +msgstr "(finansowa)" #. NxSgB #: 05020301.xhp @@ -20219,7 +20219,7 @@ "par_id231020161656439568\n" "help.text" msgid "(fullwidth Arabic)" -msgstr "" +msgstr "(arabska o pełnej szerokości)" #. yK33c #: 05020301.xhp @@ -20228,7 +20228,7 @@ "par_id231020161510017298\n" "help.text" msgid "Korean" -msgstr "" +msgstr "Koreańska" #. 5AqJ4 #: 05020301.xhp @@ -20237,7 +20237,7 @@ "par_id231020161656436379\n" "help.text" msgid "(financial)" -msgstr "" +msgstr "(finansowa)" #. BTAgB #: 05020301.xhp @@ -20246,7 +20246,7 @@ "par_id231020161656438773\n" "help.text" msgid "(fullwidth Arabic)" -msgstr "" +msgstr "(arabska o pełnej szerokości)" #. zRDz3 #: 05020301.xhp @@ -20255,7 +20255,7 @@ "par_id231020161510026939\n" "help.text" msgid "Korean - Hangul" -msgstr "" +msgstr "koreańska – hangul" #. iCsB5 #: 05020301.xhp @@ -20264,7 +20264,7 @@ "par_id231020161510022383\n" "help.text" msgid "Calendar" -msgstr "" +msgstr "Kalendarz" #. RDZUN #: 05020301.xhp @@ -20273,7 +20273,7 @@ "par_id231020161510021223\n" "help.text" msgid "Two next digits CC are for calendar code. Each calendar is only valid for some LCID." -msgstr "" +msgstr "Dwie kolejne cyfry CC oznaczają kod kalendarza. Każdy kalendarz jest ważny tylko dla niektórych LCID." #. n4doZ #: 05020301.xhp @@ -20282,7 +20282,7 @@ "par_id231020161510022813\n" "help.text" msgid "Calendar" -msgstr "" +msgstr "Kalendarz" #. Cs5v7 #: 05020301.xhp @@ -20291,7 +20291,7 @@ "par_id231020161510028097\n" "help.text" msgid "Example (YYYY-MM-DD)" -msgstr "" +msgstr "Przykład (YYYY-MM-DD)" #. 5nFeM #: 05020301.xhp @@ -20300,7 +20300,7 @@ "par_id231020161510025567\n" "help.text" msgid "Supported LCID" -msgstr "" +msgstr "Obsługiwany identyfikator LCID" #. BFiYm #: 05020301.xhp @@ -20309,7 +20309,7 @@ "par_id231020161510038464\n" "help.text" msgid "Gregorian" -msgstr "" +msgstr "Gregoriański" #. J7MpB #: 05020301.xhp @@ -20318,7 +20318,7 @@ "par_id231020161510032619\n" "help.text" msgid "All" -msgstr "" +msgstr "Wszystkie" #. px34L #: 05020301.xhp @@ -20327,7 +20327,7 @@ "par_id231020161510037287\n" "help.text" msgid "Gengou" -msgstr "" +msgstr "Gengou" #. ZA2Hf #: 05020301.xhp @@ -20336,7 +20336,7 @@ "par_id231020161510041970\n" "help.text" msgid "411 (Japanese)" -msgstr "" +msgstr "411 (japoński)" #. ZSLrR #: 05020301.xhp @@ -20345,7 +20345,7 @@ "par_id231020161510049706\n" "help.text" msgid "Unknown" -msgstr "" +msgstr "Nieznany" #. RCjVf #: 05020301.xhp @@ -20354,7 +20354,7 @@ "par_id231020161510047856\n" "help.text" msgid "Unsupported" -msgstr "" +msgstr "Nieobsługiwany" #. dMAyG #: 05020301.xhp @@ -20363,7 +20363,7 @@ "par_id231020161510048032\n" "help.text" msgid "06 or 17" -msgstr "" +msgstr "06 lub 17" #. GoDmD #: 05020301.xhp @@ -20372,7 +20372,7 @@ "par_id231020161510056158\n" "help.text" msgid "Hijri" -msgstr "" +msgstr "Hijri" #. XvBCp #: 05020301.xhp @@ -20381,7 +20381,7 @@ "par_id231020161510052682\n" "help.text" msgid "401 (Arabic - Saudi Arabia), 1401 (Arabic - Algeria), 3c01 (Arabic - Bahrain), 0c01 (Arabic - Egypt), 801 (Arabic - Iraq), 2c01 (Arabic - Jordan), 3401 (Arabic - Kuwait), 3001 (Arabic - Lebanon), 1001 (Arabic - Libya), 1801 (Arabic - Morocco), 2001 (Arabic - Oman), 4001 (Arabic - Qatar), 2801 (Arabic - Syria), 1c01 (Arabic - Tunisia), 3801 (Arabic - U.A.E.), 2401 (Arabic - Yemen) and 429 (Farsi)" -msgstr "" +msgstr "401 (arabski – Arabia Saudyjska), 1401 (arabski – Algieria), 3c01 (arabski – Bahrajn), 0c01 (arabski – Egipt), 801 (arabski – Irak), 2c01 (arabski – Jordania), 3401 (arabski – Kuwejt), 3001 (arabski – Liban), 1001 (arabski – Libia), 1801 (arabski – Maroko), 2001 (arabski – Oman), 4001 (arabski – Katar), 2801 (arabski – Syria), 1c01 (arabski – Tunezja), 3801 (arabski – ZEA), 2401 (arabski – Jemen) i 429 (farsi)" #. 8EXNk #: 05020301.xhp @@ -20390,7 +20390,7 @@ "par_id2310201615100511\n" "help.text" msgid "Buddhist" -msgstr "" +msgstr "Buddyjski" #. GGAoN #: 05020301.xhp @@ -20399,7 +20399,7 @@ "par_id231020161510059823\n" "help.text" msgid "454 (Lao), 41E (Thai)" -msgstr "" +msgstr "454 (laotański), 41E (tajski)" #. 5gZNF #: 05020301.xhp @@ -20408,7 +20408,7 @@ "par_id231020161510061354\n" "help.text" msgid "Jewish" -msgstr "" +msgstr "Żydowski" #. BgCp9 #: 05020301.xhp @@ -20417,7 +20417,7 @@ "par_id231020161510065493\n" "help.text" msgid "40D (Hebrew)" -msgstr "" +msgstr "40D (hebrajski)" #. 5XGvr #: 05020301.xhp @@ -20426,7 +20426,7 @@ "par_id231020161510062635\n" "help.text" msgid "Indian" -msgstr "" +msgstr "Indyjski" #. mQHYZ #: 05020301.xhp @@ -20435,7 +20435,7 @@ "par_id23102016151007443\n" "help.text" msgid "Unsupported" -msgstr "" +msgstr "Nieobsługiwany" #. B4PRN #: 05020301.xhp @@ -20444,7 +20444,7 @@ "par_id231020161510074383\n" "help.text" msgid "0E, 0F, 11, 12 or 13" -msgstr "" +msgstr "0E, 0F, 11, 12 lub 13" #. WM2Xw #: 05020301.xhp @@ -20453,7 +20453,7 @@ "par_id231020161510072324\n" "help.text" msgid "Unknown" -msgstr "" +msgstr "Nieznany" #. BjUhe #: 05020301.xhp @@ -20462,7 +20462,7 @@ "par_id231020161510079549\n" "help.text" msgid "Unsupported" -msgstr "" +msgstr "Nieobsługiwany" #. LjwrT #: 05020301.xhp @@ -20471,7 +20471,7 @@ "par_id231020161510074993\n" "help.text" msgid "Unsupported" -msgstr "" +msgstr "Nieobsługiwany" #. DTCLN #: 05020301.xhp @@ -20480,7 +20480,7 @@ "par_id231020161510086169\n" "help.text" msgid "Hanja" -msgstr "" +msgstr "Hanja" #. kArG9 #: 05020301.xhp @@ -20489,7 +20489,7 @@ "par_id23102016151008696\n" "help.text" msgid "412 (Korean)" -msgstr "" +msgstr "412 (koreański)" #. 7gqwq #: 05020301.xhp @@ -20498,7 +20498,7 @@ "par_id231020161510087847\n" "help.text" msgid "Unsupported" -msgstr "" +msgstr "Nieobsługiwany" #. 9VCVC #: 05020301.xhp @@ -20507,7 +20507,7 @@ "par_id231020161510081946\n" "help.text" msgid "ROC" -msgstr "" +msgstr "Republika Chińska" #. bpcCC #: 05020301.xhp @@ -20516,7 +20516,7 @@ "par_id231020161510088509\n" "help.text" msgid "404 (Chinese - Taiwan)" -msgstr "" +msgstr "404 (chiński – Tajwan)" #. KjubE #: 05020301.xhp @@ -20525,7 +20525,7 @@ "hd_id231201610928993199\n" "help.text" msgid "NatNum12 modifier" -msgstr "" +msgstr "Modyfikator NatNum12" #. dnUBw #: 05020301.xhp @@ -20534,7 +20534,7 @@ "par_id3158314\n" "help.text" msgid "To spell out numbers in various number, currency and date formats, use a [NatNum12] modifier with the chosen arguments at the beginning of a number format code." -msgstr "" +msgstr "Aby przeliterować liczby w różnych formatach liczb, walut i dat, użyj modyfikatora [NatNum12] z wybranymi argumentami na początku kodu formatu liczb." #. pEAbi #: 05020301.xhp @@ -20543,7 +20543,7 @@ "par_id130820161735318343\n" "help.text" msgid "Common NatNum12 formatting examples" -msgstr "" +msgstr "Typowe przykłady formatowania NatNum12" #. p2j4P #: 05020301.xhp @@ -20552,7 +20552,7 @@ "par_id130820131011365891\n" "help.text" msgid "Formatting code" -msgstr "" +msgstr "Kod formatowania" #. 7CHrT #: 05020301.xhp @@ -20561,7 +20561,7 @@ "par_id13082016201136632\n" "help.text" msgid "Explanation" -msgstr "" +msgstr "Znaczenie" #. qMECD #: 05020301.xhp @@ -20570,7 +20570,7 @@ "par_id130820161733145583\n" "help.text" msgid "[NatNum12]" -msgstr "" +msgstr "[NatNum12]" #. 59Z4d #: 05020301.xhp @@ -20579,7 +20579,7 @@ "par_id130820161733112114\n" "help.text" msgid "Spell out as cardinal number: 1 → one" -msgstr "" +msgstr "Przeliteruj jako liczbę główną: 1 → jeden" #. uSj7Y #: 05020301.xhp @@ -20588,7 +20588,7 @@ "par_id1308201617533145585\n" "help.text" msgid "[NatNum12 ordinal]" -msgstr "" +msgstr "[NatNum12 ordinal]" #. RxCdm #: 05020301.xhp @@ -20597,7 +20597,7 @@ "par_id13082016107533112116\n" "help.text" msgid "Spell out as ordinal number: 1 → first" -msgstr "" +msgstr "Przeliteruj jako liczbę porządkową: 1 → pierwszy" #. 3FrmK #: 05020301.xhp @@ -20606,7 +20606,7 @@ "par_id1308201616533145587\n" "help.text" msgid "[NatNum12 ordinal-number]" -msgstr "" +msgstr "[NatNum12 ordinal-number]" #. PARVJ #: 05020301.xhp @@ -20615,7 +20615,7 @@ "par_id13082016107533112118\n" "help.text" msgid "Spell out as ordinal indicator: 1 → 1st" -msgstr "" +msgstr "Przeliteruj jako wskaźnik porządkowy: 1 → 1." #. MAPGe #: 05020301.xhp @@ -20624,7 +20624,7 @@ "par_id1308201796533145589\n" "help.text" msgid "[NatNum12 capitalize]" -msgstr "" +msgstr "[NatNum12 capitalize]" #. 9sGxx #: 05020301.xhp @@ -20633,7 +20633,7 @@ "par_id130820161715331121110\n" "help.text" msgid "Spell out with capitalization, as cardinal number: 1 → One" -msgstr "" +msgstr "Przeliteruj wielką literą, jako liczebnik główny: 1 → Jeden" #. fdavN #: 05020301.xhp @@ -20642,7 +20642,7 @@ "par_id1308201617965331455812\n" "help.text" msgid "[NatNum12 upper ordinal]" -msgstr "" +msgstr "[NatNum12 upper ordinal]" #. MWJCJ #: 05020301.xhp @@ -20651,7 +20651,7 @@ "par_id130826171075331121112\n" "help.text" msgid "Spell out in upper case, as ordinal number: 1 → FIRST" -msgstr "" +msgstr "Przeliteruj wielkimi literami, jako liczebnik porządkowy: 1 → PIERWSZY" #. Av6Up #: 05020301.xhp @@ -20660,7 +20660,7 @@ "par_id1308201617965331455813\n" "help.text" msgid "[NatNum12 title]" -msgstr "" +msgstr "[NatNum12 title]" #. G65Vr #: 05020301.xhp @@ -20669,7 +20669,7 @@ "par_id13082016075331121114\n" "help.text" msgid "Spell out in title case, as cardinal number: 101 → Hundred One" -msgstr "" +msgstr "Przeliteruj jak nazwę własną, jako liczba główna: 101 → Sto Jeden" #. wxymX #: 05020301.xhp @@ -20678,7 +20678,7 @@ "par_id1308201617965331455814\n" "help.text" msgid "[NatNum12 USD]" -msgstr "" +msgstr "[NatNum12 USD]" #. GpF26 #: 05020301.xhp @@ -20687,7 +20687,7 @@ "par_id13082016075331121115\n" "help.text" msgid "Spell out as a money amount of a given currency specified by 3-letter ISO code: 1 → one U.S. dollar" -msgstr "" +msgstr "Przeliteruj jako kwotę pieniężną danej waluty określoną przez 3-literowy kod ISO: 1 → jeden dolar amerykański" #. dC9Yz #: 05020301.xhp @@ -20696,7 +20696,7 @@ "par_id1308201617965331455816\n" "help.text" msgid "[NatNum12 D=ordinal-number]D\" of \"MMMM" -msgstr "" +msgstr "[NatNum12 D=ordinal-number]D\" \"MMMM" #. KWJXy #: 05020301.xhp @@ -20705,7 +20705,7 @@ "par_id13082016075331121117\n" "help.text" msgid "Spell out as a date in format \"1st of May\"" -msgstr "" +msgstr "Przeliteruj jako datę w formacie \"1 maja\"" #. AjRUC #: 05020301.xhp @@ -20714,7 +20714,7 @@ "par_id1308201617965331455818\n" "help.text" msgid "[NatNum12 YYYY=title year,D=capitalize ordinal]D\" of \"MMMM, YYYY" -msgstr "" +msgstr "[NatNum12 YYYY=title year,D=capitalize ordinal]D\" \"MMMM, YYYY" #. JCU7s #: 05020301.xhp @@ -20723,7 +20723,7 @@ "par_id13082016075331121119\n" "help.text" msgid "Spell out as a date in format \"First of May, Nineteen Ninety-nine\"" -msgstr "" +msgstr "Przeliteruj jako datę w formacie \"Pierwszy maja 1999\"" #. 6hJmz #: 05020301.xhp @@ -20732,7 +20732,7 @@ "par_id1308201617965331455819\n" "help.text" msgid "[NatNum12 MMM=upper]MMM-DD" -msgstr "" +msgstr "[NatNum12 MMM=upper]MMM-DD" #. MH8w7 #: 05020301.xhp @@ -20741,7 +20741,7 @@ "par_id13082016075331121120\n" "help.text" msgid "Display upper case abbreviated month name in format \"JAN-01\"" -msgstr "" +msgstr "Wyświetl nazwę miesiąca zapisaną wielkimi literami w formacie \"STY-01\"" #. dro72 #: 05020301.xhp @@ -20750,7 +20750,7 @@ "par_id1308201617965331455820\n" "help.text" msgid "[NatNum12 MMMM=lower]MMMM" -msgstr "" +msgstr "[NatNum12 MMMM=lower]MMMM" #. PCQE6 #: 05020301.xhp @@ -20759,7 +20759,7 @@ "par_id13082016075331121121\n" "help.text" msgid "Display lower case month name in format \"january\"" -msgstr "" +msgstr "Wyświetl nazwę miesiąca małymi literami w formacie \"styczeń\"" #. i25EX #: 05020301.xhp @@ -20768,7 +20768,7 @@ "par_id3158316\n" "help.text" msgid "Other possible arguments: \"money\" before 3-letter currency codes, for example [NatNum12 capitalize money USD]0.00 will format number \"1.99\" as \"One and 99/100 U.S. Dollars\"." -msgstr "" +msgstr "Inne możliwe argumenty: \"pieniądze\" przed 3-literowymi kodami walut, na przykład [NatNum12 capitalize money USD]0,00 spowoduje sformatowanie liczby \"1,99\" jako \"Jeden i 99/100 dolarów amerykańskich\"." #. wGSEZ #: 05020301.xhp @@ -20777,7 +20777,7 @@ "hd_id231201610928993200\n" "help.text" msgid "Error Codes" -msgstr "" +msgstr "Kody błędów" #. dw9X2 #: 05020301.xhp @@ -20786,7 +20786,7 @@ "par_id3158315\n" "help.text" msgid "If the value is outside the limits for the selected format the following error code is shown:" -msgstr "" +msgstr "Jeśli wartość wykracza poza granice wybranego formatu, zostanie wyświetlony następujący kod błędu:" #. pSG47 #: 05020400.xhp @@ -21074,7 +21074,7 @@ "par_id3150359\n" "help.text" msgid "Select a formatting style to use for visited links from the list. To add or modify a style in this list, close this dialog, and click the Styles icon on the Formatting toolbar." -msgstr "" +msgstr "Wybierz z listy styl formatowania dla odwiedzanych łączy. Aby dodać lub zmodyfikować styl na tej liście, zamknij to okno dialogowe i kliknij ikonę Style na pasku narzędzi Formatowanie." #. g36GD #: 05020400.xhp @@ -21092,7 +21092,7 @@ "par_id3154216\n" "help.text" msgid "Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the Styles icon on the Formatting toolbar." -msgstr "" +msgstr "Wybierz z listy styl formatowania dla nieodwiedzonych łączy. Aby dodać lub zmodyfikować styl na tej liście, zamknij to okno dialogowe i kliknij ikonę Style na pasku narzędzi Formatowanie." #. Er7g2 #: 05020400.xhp @@ -21281,7 +21281,7 @@ "hd_id3154905\n" "help.text" msgid "Rotation/scaling" -msgstr "" +msgstr "Obrót / skalowanie" #. PmAPp #: 05020500.xhp @@ -21416,7 +21416,7 @@ "par_id3146974\n" "help.text" msgid "Specifies the spacing between the characters of the selected text. Enter the amount by which you want to expand or condense the text in the spin button." -msgstr "" +msgstr "Określa odstęp między znakami zaznaczonego tekstu. Wprowadź wielkość, o jaką chcesz rozszerzyć lub zwęzić tekst na przycisku obracania." #. wSGzU #: 05020500.xhp @@ -21614,7 +21614,7 @@ "par_id3153124\n" "help.text" msgid "Set the typographic options for cells or paragraphs in Asian language files. To enable Asian language support, choose Language Settings - Languages in the Options dialog box, and then select the Enabled box in the Asian language support area. The Asian typography options are ignored in HTML documents." -msgstr "" +msgstr "Ustaw opcje typograficzne dla komórek lub akapitów w plikach w językach azjatyckich. Aby włączyć obsługę języków azjatyckich, wybierz Ustawienia językowe - Języki w oknie dialogowym Opcje, a następnie zaznacz pole Włączone w oknie Obsługa języków azjatyckich. Opcje typografii azjatyckiej są ignorowane w dokumentach HTML." #. qgmeT #: 05020700.xhp @@ -21677,7 +21677,7 @@ "par_id3147275\n" "help.text" msgid "Apply spacing between Asian and non-Asian text" -msgstr "" +msgstr "Zastosuj odstępy między tekstem azjatyckim i nieazjatyckim" #. yEFMG #: 05020700.xhp @@ -21686,7 +21686,7 @@ "par_id3148539\n" "help.text" msgid "Inserts a space between ideographic and alphabetic text." -msgstr "" +msgstr "Wstawia spację między tekstem ideograficznym a alfabetycznym." #. HGAr6 #: 05020700.xhp @@ -21722,7 +21722,7 @@ "par_id3148668\n" "help.text" msgid "Modifies the format of the current paragraph, such as indents and alignment. To modify the font of the current paragraph, select the entire paragraph, choose Format - Character, and then click on the Font tab." -msgstr "" +msgstr "Modyfikuje format bieżącego akapitu, taki jak wcięcia i wyrównanie. Aby zmodyfikować czcionkę bieżącego akapitu, zaznacz cały akapit, wybierz Format - Znak, a następnie kliknij kartę Czcionka." #. WTG9S #: 05030000.xhp @@ -21776,7 +21776,7 @@ "par_id3153910\n" "help.text" msgid "To change the measurement units used in this dialog, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General , and then select a new measurement unit in the Settings area." -msgstr "" +msgstr "Aby zmienić jednostki miary używane w tym oknie dialogowym, wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Writer - Ogólne, a następnie wybierz nową jednostkę miary w obszarze Ustawienia." #. 4fwpx #: 05030100.xhp @@ -21866,7 +21866,7 @@ "hd_id3150288\n" "help.text" msgid "Automatic" -msgstr "" +msgstr "Automatycznie" #. dJRTJ #: 05030100.xhp @@ -21875,7 +21875,7 @@ "par_id3151041\n" "help.text" msgid "Automatically indents a paragraph according to the font size and the line spacing. The setting in the First Line box is ignored." -msgstr "" +msgstr "Automatycznie wcina akapit zgodnie z rozmiarem czcionki i odstępami między wierszami. Ustawienie w polu Pierwszy wiersz jest ignorowane." #. Ppsst #: 05030100.xhp @@ -21938,7 +21938,7 @@ "hd_id3145591\n" "help.text" msgid "Do not add space between paragraphs of the same style" -msgstr "" +msgstr "Nie dodawaj odstępów między akapitami tego samego stylu" #. eqZaq #: 05030100.xhp @@ -21983,7 +21983,7 @@ "par_id3150011\n" "help.text" msgid "Applies single line spacing to the current paragraph. This is the default setting." -msgstr "" +msgstr "Stosuje pojedynczą interlinię do bieżącego akapitu. To jest ustawienie domyślne." #. Q3Apw #: 05030100.xhp @@ -21992,7 +21992,7 @@ "par_id881643818442245\n" "help.text" msgid "Icon Line Spacing 1" -msgstr "" +msgstr "Ikona interlinii 1" #. q6zhc #: 05030100.xhp @@ -22001,7 +22001,7 @@ "par_id651643818442248\n" "help.text" msgid "Line Spacing 1" -msgstr "" +msgstr "Interlinia 1" #. CBBax #: 05030100.xhp @@ -22010,7 +22010,7 @@ "hd_id3199345\n" "help.text" msgid "1.15 lines" -msgstr "" +msgstr "1,15-wierszowe" #. zihYd #: 05030100.xhp @@ -22019,7 +22019,7 @@ "par_id3184601\n" "help.text" msgid "Sets the line spacing to 1.15 lines." -msgstr "" +msgstr "Ustawia interlinię na 1,15-wierszową." #. Swk6G #: 05030100.xhp @@ -22028,7 +22028,7 @@ "par_id461643818848838\n" "help.text" msgid "Icon Line Spacing 1.15" -msgstr "" +msgstr "Ikona interlinii 1,15" #. nWqHm #: 05030100.xhp @@ -22037,7 +22037,7 @@ "par_id271643818848841\n" "help.text" msgid "Line Spacing 1.15" -msgstr "" +msgstr "Interlinia 1,15" #. 5SLdx #: 05030100.xhp @@ -22055,7 +22055,7 @@ "par_id3150094\n" "help.text" msgid "Sets the line spacing to 1.5 lines." -msgstr "" +msgstr "Ustawia interlinię na 1,5-wierszową." #. iGepF #: 05030100.xhp @@ -22064,7 +22064,7 @@ "par_id791643819136940\n" "help.text" msgid "Icon Line Spacing 1.5" -msgstr "" +msgstr "Ikona interlinii 1,5" #. Ag5FS #: 05030100.xhp @@ -22073,7 +22073,7 @@ "par_id831643819136944\n" "help.text" msgid "Line Spacing 1.5" -msgstr "" +msgstr "Interlinia 1,5" #. XGSUC #: 05030100.xhp @@ -22091,7 +22091,7 @@ "par_id3154512\n" "help.text" msgid "Sets the line spacing to two lines." -msgstr "" +msgstr "Ustawia interlinię na 2-wierszową." #. GP5wE #: 05030100.xhp @@ -22100,7 +22100,7 @@ "par_id421643819242730\n" "help.text" msgid "Icon Line Spacing 2" -msgstr "" +msgstr "Ikona interlinii 2" #. vJR3n #: 05030100.xhp @@ -22109,7 +22109,7 @@ "par_id991643819242734\n" "help.text" msgid "Line Spacing 2" -msgstr "" +msgstr "Interlinia 2" #. HDPps #: 05030100.xhp @@ -22181,7 +22181,7 @@ "hd_id3155443\n" "help.text" msgid "Fixed" -msgstr "" +msgstr "Stała" #. 7Dv79 #: 05030100.xhp @@ -22190,7 +22190,7 @@ "par_id3153711\n" "help.text" msgid "Sets the line spacing to exactly match the value that you enter in the box. This can result in cropped characters." -msgstr "" +msgstr "Ustawia interlinię dokładnie odpowiadającą wartości wprowadzonej w polu. Może to spowodować przycięcie znaków." #. sqTV8 #: 05030100.xhp @@ -22217,7 +22217,7 @@ "hd_id3146316\n" "help.text" msgid "Activate page line-spacing" -msgstr "" +msgstr "Aktywuj interlinię strony" #. ckCgA #: 05030100.xhp @@ -22226,7 +22226,7 @@ "par_id3156315\n" "help.text" msgid "Aligns the baseline of each line of text to a vertical document grid, so that each line is the same height. To use this feature, you must first activate the Use page line-spacing option for the current page style. Choose Format - Page Style, click on the Page tab, and then select the Use page line-spacing box in the Layout settings section." -msgstr "" +msgstr "Wyrównuje linię podstawową każdego wiersza tekstu do pionowej siatki dokumentu, dzięki czemu każdy wiersz jest tej samej wysokości. Aby użyć tej funkcji, musisz najpierw aktywować opcję Użyj interlinii strony dla bieżącego stylu strony. Wybierz Format - Styl strony, kliknij kartę Strona, a następnie zaznacz pole Użyj interlinii strony w sekcji Ustawienia układu." #. qLQP7 #: 05030100.xhp @@ -22415,7 +22415,7 @@ "par_id3154388\n" "help.text" msgid "The character that is used as a decimal separator depends on the regional setting of your operating system." -msgstr "" +msgstr "Znak używany jako separator dziesiętny zależy od ustawień regionalnych systemu operacyjnego." #. EifkG #: 05030300.xhp @@ -22541,7 +22541,7 @@ "hd_id3153945\n" "help.text" msgid "Delete all" -msgstr "" +msgstr "Usuń wszystko" #. n3nWv #: 05030300.xhp @@ -22586,7 +22586,7 @@ "par_id3155351\n" "help.text" msgid "You can specify the border position, size, and style in Writer or Calc. In $[officename] Writer, you can add borders to pages, frames, graphics, tables, paragraphs, characters and to embedded objects." -msgstr "" +msgstr "Położenie, rozmiar i styl krawędzi można określić w programach Writer lub Calc. W programie $[officename] Writer możesz dodawać krawędzie do stron, ramek, grafiki, tabel, akapitów, znaków i osadzonych obiektów." #. GhVPb #: 05030500.xhp @@ -22622,7 +22622,7 @@ "par_id3148643\n" "help.text" msgid "Alternatively, use the Borders button on the toolbar to apply predefined border formats." -msgstr "" +msgstr "Możesz też użyć przycisku Krawędzie na pasku narzędzi, aby zastosować wstępnie zdefiniowane formaty krawędzi." #. m9hFs #: 05030500.xhp @@ -22631,7 +22631,7 @@ "par_id591630450693398\n" "help.text" msgid "The Remove border option in the Adjacent Cells section determines if borders in the edges of the selected range are to be removed. Leave this option unchecked if edge borders should be left unchanged." -msgstr "" +msgstr "Opcja Usuń krawędzie w sekcji Przylegające komórki określa, czy krawędzie zaznaczonego zakresu mają zostać usunięte. Pozostaw tę opcję niezaznaczoną, jeśli granice krawędzi mają pozostać niezmienione." #. PjDF8 #: 05030500.xhp @@ -22640,7 +22640,7 @@ "par_id181630450040456\n" "help.text" msgid "Read the help page User Defined Borders in Cells to learn more on how to define custom line arrangements." -msgstr "" +msgstr "Przeczytaj stronę pomocy Krawędzie komórek definiowane przez użytkownika, aby dowiedzieć się więcej o definiowaniu niestandardowych układów linii." #. 2SFo2 #: 05030500.xhp @@ -22676,7 +22676,7 @@ "hd_id3150359\n" "help.text" msgid "Padding" -msgstr "" +msgstr "Wypełnianie" #. E4wjD #: 05030500.xhp @@ -22775,7 +22775,7 @@ "par_id3154299\n" "help.text" msgid "Applies the same padding setting to all four borders when you enter a new distance." -msgstr "" +msgstr "Stosuje to samo ustawienie wypełnienia do wszystkich czterech krawędzi po wprowadzeniu nowej odległości." #. cxwBF #: 05030500.xhp @@ -22973,7 +22973,7 @@ "hd_id3143268\n" "help.text" msgid "Options" -msgstr "" +msgstr "Opcje" #. zEFM8 #: 05030700.xhp @@ -23063,7 +23063,7 @@ "hd_id3145068\n" "help.text" msgid "Last Line" -msgstr "" +msgstr "Ostatni wiersz" #. gsE3Q #: 05030700.xhp @@ -23081,7 +23081,7 @@ "hd_id3154936\n" "help.text" msgid "Expand single word" -msgstr "" +msgstr "Rozciągnij pojedynczy wyraz" #. nxk2b #: 05030700.xhp @@ -23117,7 +23117,7 @@ "hd_id3148672\n" "help.text" msgid "Text-to-text" -msgstr "" +msgstr "Wyrównanie tekstu w pionie" #. CvZ85 #: 05030700.xhp @@ -23468,7 +23468,7 @@ "bm_id3153383\n" "help.text" msgid "organizing; stylesstyles; organizing" -msgstr "" +msgstr "organizowanie; stylestyle; organizowanie" #. SZdCB #: 05040100.xhp @@ -23504,7 +23504,7 @@ "par_id3160481\n" "help.text" msgid "Displays the name of the selected style. If you are creating or modifying a custom style, enter a name for the style. You cannot change the name of a predefined style." -msgstr "" +msgstr "Wyświetla nazwę wybranego stylu. Jeśli tworzysz lub modyfikujesz styl niestandardowy, wprowadź nazwę stylu. Nie możesz zmienić nazwy predefiniowanego stylu." #. xEE52 #: 05040100.xhp @@ -23513,7 +23513,7 @@ "hd_id3153750\n" "help.text" msgid "AutoUpdate" -msgstr "" +msgstr "Autoaktualizacja" #. 7yXws #: 05040100.xhp @@ -23522,7 +23522,7 @@ "par_id3153749\n" "help.text" msgid "Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated." -msgstr "" +msgstr "Aktualizuje styl po zastosowaniu formatowania bezpośredniego do akapitu przy użyciu tego stylu w dokumencie. Formatowanie wszystkich akapitów używających tego stylu jest automatycznie aktualizowane." #. N5rDR #: 05040100.xhp @@ -23549,7 +23549,7 @@ "par_id3155941\n" "help.text" msgid "Select an existing style that you want to follow the current style in your document. For paragraph styles, the next style is applied to an empty paragraph that is created when you press Enter at the end of an existing paragraph. For page styles, the next style is applied when a new page is created." -msgstr "" +msgstr "Wybierz istniejący styl, który ma być zgodny z bieżącym stylem w dokumencie. W przypadku stylów akapitu następny styl jest stosowany do pustego akapitu utworzonego po naciśnięciu klawisza Enter na końcu istniejącego akapitu. W przypadku stylów strony, następny styl jest stosowany podczas tworzenia nowej strony." #. cLVjF #: 05040100.xhp @@ -23558,7 +23558,7 @@ "hd_id3163802\n" "help.text" msgid "Inherit from" -msgstr "" +msgstr "Dziedziczenie po" #. PNQTa #: 05040100.xhp @@ -23567,7 +23567,7 @@ "par_id3166461\n" "help.text" msgid "Select an existing style (or - None -) to provide its definitions to the current style. Use the other tabs to modify the inherited style." -msgstr "" +msgstr "Wybierz istniejący styl (lub - Brak -), aby wprowadzić jego definicje do bieżącego stylu. Użyj innych kart, aby zmodyfikować odziedziczony styl." #. VmvvD #: 05040100.xhp @@ -23576,7 +23576,7 @@ "par_id31507664\n" "help.text" msgid "You cannot use this option with a page style or a list style." -msgstr "" +msgstr "Tej opcji nie można użyć ze stylem strony ani stylem listy." #. nt5th #: 05040100.xhp @@ -23585,7 +23585,7 @@ "hd_id3148400\n" "help.text" msgid "Edit Style" -msgstr "" +msgstr "Edycja stylu" #. TAEAj #: 05040100.xhp @@ -23594,7 +23594,7 @@ "par_id3155179\n" "help.text" msgid "Edit the properties of the parent style." -msgstr "" +msgstr "Edytuj właściwości stylu nadrzędnego." #. eaxKa #: 05040100.xhp @@ -23666,7 +23666,7 @@ "bm_id3150620\n" "help.text" msgid "pages;formatting and numberingformatting;pagespaper formatspaper traysprinters;paper trayslayout;pagesbinding spacemargins;pagesgutterchanging;page sizechanging;page marginspage marginsmargins;definingpage size;defining" -msgstr "" +msgstr "strony;formatowanie i numerowanieformatowanie;stronyformaty papierutace na papierdrukarki;tace na papierukład;stronymiejsce na oprawęmarginesy;stronyrynnazmiana;rozmiar stronyzmiana;marginesy stronymarginesy stronymarginesy;definiowanierozmiar strony;definiowanie" #. 2VdNc #: 05040200.xhp @@ -23765,7 +23765,7 @@ "hd_id901601605927805\n" "help.text" msgid "Orientation" -msgstr "" +msgstr "Orientacja" #. tDiD9 #: 05040200.xhp @@ -23774,7 +23774,7 @@ "par_id791601605959021\n" "help.text" msgid "Select paper orientation for display and print." -msgstr "" +msgstr "Wybierz orientację papieru do wyświetlania i drukowania." #. DMJ89 #: 05040200.xhp @@ -23837,7 +23837,7 @@ "par_id91601733418064\n" "help.text" msgid "Text direction only appears if Asian or Complex text layout is set in %PRODUCTNAME - PreferencesTools - Options - Language Setting - Languages." -msgstr "" +msgstr "Kierunek tekstu pojawia się tylko wtedy, gdy Azjatycki lub Złożony układ tekstu jest ustawiony w %PRODUCTNAME - PreferencjeNarzędzia - Opcje - Ustawienia języka - Języki." #. MR8zP #: 05040200.xhp @@ -23882,7 +23882,7 @@ "hd_id3153061\n" "help.text" msgid "Left / Inner" -msgstr "" +msgstr "Lewa / Wewnętrz" #. 2FbPb #: 05040200.xhp @@ -23891,7 +23891,7 @@ "par_id3151384\n" "help.text" msgid "Enter the amount of space to leave between the left edge of the page and the document text. If you are using the Mirrored page layout, enter the amount of space to leave between the inner text margin and the inner edge of the page." -msgstr "" +msgstr "Wprowadź ilość miejsca do pozostawienia między lewą krawędzią strony a tekstem dokumentu. Jeśli używasz układu strony Odbicie lustrzane, wprowadź ilość miejsca do pozostawienia między wewnętrznym marginesem tekstu a wewnętrzną krawędzią strony." #. GvkRk #: 05040200.xhp @@ -23900,7 +23900,7 @@ "hd_id3154923\n" "help.text" msgid "Right / Outer" -msgstr "" +msgstr "Prawa / Na zewnątrz" #. Pgp68 #: 05040200.xhp @@ -23909,7 +23909,7 @@ "par_id3147304\n" "help.text" msgid "Enter the amount of space to leave between the right edge of the page and the document text. If you are using the Mirrored page layout, enter the amount of space to leave between the outer text margin and the outer edge of the page." -msgstr "" +msgstr "Wprowadź ilość miejsca do pozostawienia między prawą krawędzią strony a tekstem dokumentu. Jeśli używasz układu strony Odbicie lustrzane, wprowadź ilość miejsca do pozostawienia między zewnętrznym marginesem tekstu a zewnętrzną krawędzią." #. pDxeH #: 05040200.xhp @@ -23918,7 +23918,7 @@ "hd_id3145745\n" "help.text" msgid "Gutter" -msgstr "" +msgstr "Rynna" #. rvmBG #: 05040200.xhp @@ -23927,7 +23927,7 @@ "par_id3147305\n" "help.text" msgid "Enter the amount of space to leave between the left edge of the page and the left margin. If you are using the Mirrored page layout, enter the amount of space to leave between the inner page margin and the inner edge of the page." -msgstr "" +msgstr "Wprowadź ilość miejsca do pozostawienia między lewą krawędzią strony a lewym marginesem. Jeśli używasz układu strony Odbicie lustrzane, wprowadź ilość miejsca do pozostawienia między wewnętrznym marginesem strony a wewnętrzną krawędzią strony." #. EPeDb #: 05040200.xhp @@ -23981,7 +23981,7 @@ "hd_id3145744\n" "help.text" msgid "Page layout" -msgstr "" +msgstr "Układ strony" #. DMwZG #: 05040200.xhp @@ -23990,7 +23990,7 @@ "par_id3154218\n" "help.text" msgid "Specify whether the current style should show odd pages, even pages, or both odd and even pages." -msgstr "" +msgstr "Określ, czy bieżący styl powinien wyświetlać strony nieparzyste, strony parzyste, czy też strony parzyste i nieparzyste." #. GTUc7 #: 05040200.xhp @@ -23999,7 +23999,7 @@ "hd_id3154946\n" "help.text" msgid "Right and left" -msgstr "" +msgstr "Z prawej i z lewej" #. PHbNi #: 05040200.xhp @@ -24008,7 +24008,7 @@ "par_id3153058\n" "help.text" msgid "The current page style shows both odd and even pages with left and right margins as specified." -msgstr "" +msgstr "Bieżący styl strony pokazuje zarówno strony nieparzyste, jak i parzyste z określonymi marginesami lewym i prawym." #. GDCeb #: 05040200.xhp @@ -24017,7 +24017,7 @@ "hd_id3147287\n" "help.text" msgid "Mirrored" -msgstr "" +msgstr "Odbicie lustrzane" #. Nz3A7 #: 05040200.xhp @@ -24026,7 +24026,7 @@ "par_id3147317\n" "help.text" msgid "The current page style shows both odd and even pages with inner and outer margins as specified. Use this layout if you want to bind the printed pages like a book. Enter the binding space as the \"Inner\" margin." -msgstr "" +msgstr "Bieżący styl strony zawiera zarówno strony nieparzyste, jak i parzyste z określonymi marginesami wewnętrznymi i zewnętrznymi. Użyj tego układu, jeśli chcesz zbindować wydrukowane strony jak książkę. Wprowadź miejsce na oprawę jako margines \"Wewnątrz\"." #. HPAak #: 05040200.xhp @@ -24035,7 +24035,7 @@ "hd_id3155308\n" "help.text" msgid "Only right" -msgstr "" +msgstr "Tylko z prawej" #. kxhBx #: 05040200.xhp @@ -24044,7 +24044,7 @@ "par_id3152885\n" "help.text" msgid "The current page style shows only odd (right) pages. Even pages are shown as blank pages." -msgstr "" +msgstr "Bieżący styl strony pokazuje tylko strony nieparzyste (prawe). Strony parzyste są wyświetlane jako puste strony." #. VxnGV #: 05040200.xhp @@ -24053,7 +24053,7 @@ "hd_id3157309\n" "help.text" msgid "Only left" -msgstr "" +msgstr "Tylko z lewej" #. 839AF #: 05040200.xhp @@ -24062,7 +24062,7 @@ "par_id3147326\n" "help.text" msgid "The current page style shows only even (left) pages. Odd pages are shown as blank pages." -msgstr "" +msgstr "Bieżący styl strony pokazuje tylko strony parzyste (lewe). Strony nieparzyste są wyświetlane jako puste strony." #. Dmugm #: 05040200.xhp @@ -24071,7 +24071,7 @@ "hd_id661587746131795\n" "help.text" msgid "Slide Numbers" -msgstr "" +msgstr "Numery slajdów" #. 8Gvk9 #: 05040200.xhp @@ -24080,7 +24080,7 @@ "par_id371587747950454\n" "help.text" msgid "Select the slide numbering format that you want to use for the current slide style." -msgstr "" +msgstr "Wybierz format numerowania slajdów, którego chcesz użyć w bieżącym stylu slajdów." #. Jr6w4 #: 05040200.xhp @@ -24089,7 +24089,7 @@ "hd_id511587746163578\n" "help.text" msgid "Page Numbers" -msgstr "" +msgstr "Numery stron" #. GnD6W #: 05040200.xhp @@ -24107,7 +24107,7 @@ "hd_id3150686\n" "help.text" msgid "Reference Style" -msgstr "" +msgstr "Styl uzgodnienia" #. hrqZy #: 05040200.xhp @@ -24116,7 +24116,7 @@ "par_id3146146\n" "help.text" msgid "Select the Paragraph Style that you want to use as a reference for lining up the text on the selected Page style. The height of the font that is specified in the reference style sets the spacing of the vertical page grid." -msgstr "" +msgstr "Wybierz styl akapitu, którego chcesz użyć jako odniesienia do wyrównania tekstu w wybranym stylu strony. Wysokość czcionki określona w stylu odniesienia określa odstępy między pionową siatką strony." #. cqiqD #: 05040200.xhp @@ -24125,7 +24125,7 @@ "hd_id3150488\n" "help.text" msgid "Use page line-spacing" -msgstr "" +msgstr "Użyj interlinii strony" #. xRZFb #: 05040200.xhp @@ -24134,7 +24134,7 @@ "par_id3151112\n" "help.text" msgid "Aligns the text on the selected Page Style to a vertical page grid. The spacing of the grid is defined by the Reference Style." -msgstr "" +msgstr "Wyrównuje tekst wybranego stylu strony do pionowej siatki strony. Odstępy siatki są definiowane przez Styl odniesienia." #. GQ3P2 #: 05040200.xhp @@ -24152,7 +24152,7 @@ "hd_id3150489\n" "help.text" msgid "Gutter position" -msgstr "" +msgstr "Pozycja rynny" #. Gs9qT #: 05040200.xhp @@ -24161,7 +24161,7 @@ "par_id0522200809473733\n" "help.text" msgid "Allows choosing if the current document's gutter shall be positioned at the left of the document's pages (default) or at top of the document's pages when the document is displayed." -msgstr "" +msgstr "Pozwala wybrać, czy margines bieżącego dokumentu ma być umieszczony po lewej stronie stron dokumentu (domyślnie), czy u góry stron dokumentu, gdy dokument jest wyświetlany." #. niqBy #: 05040200.xhp @@ -24170,7 +24170,7 @@ "hd_id3147480\n" "help.text" msgid "Table alignment" -msgstr "" +msgstr "Wyrównanie tabeli" #. 2fKA6 #: 05040200.xhp @@ -24179,7 +24179,7 @@ "par_id3150417\n" "help.text" msgid "Specify the alignment options for the cells on a printed page." -msgstr "" +msgstr "Określ opcje wyrównania komórek na drukowanej stronie." #. Rz6jD #: 05040200.xhp @@ -24197,7 +24197,7 @@ "hd_id3147047\n" "help.text" msgid "Horizontal" -msgstr "" +msgstr "Poziomo" #. eARTv #: 05040200.xhp @@ -24206,7 +24206,7 @@ "par_id3153878\n" "help.text" msgid "Centers the cells horizontally on the printed page." -msgstr "" +msgstr "Wyśrodkowuje komórki poziomo na drukowanej stronie." #. TxE3H #: 05040200.xhp @@ -24224,7 +24224,7 @@ "hd_id3153522\n" "help.text" msgid "Vertical" -msgstr "" +msgstr "Pionowo" #. o9bGn #: 05040200.xhp @@ -24233,7 +24233,7 @@ "par_id3149413\n" "help.text" msgid "Centers the cells vertically on the printed page." -msgstr "" +msgstr "Wyśrodkowuje komórki pionowo na drukowanej stronie." #. 4eiX9 #: 05040200.xhp @@ -24242,7 +24242,7 @@ "hd_id3151318\n" "help.text" msgid "Fit object to paper format" -msgstr "" +msgstr "Dopasuj obiekt do formatu papieru" #. AEasi #: 05040200.xhp @@ -24251,7 +24251,7 @@ "par_id3144746\n" "help.text" msgid "Resizes the drawing objects so that they fit on the paper format that you select. The arrangement of the drawing objects is preserved." -msgstr "" +msgstr "Zmienia rozmiar obiektów rysunkowych, tak aby pasowały do wybranego formatu papieru. Układ obiektów rysunkowych zostaje zachowany." #. AhYsC #: 05040200.xhp @@ -24296,7 +24296,7 @@ "par_id3156027\n" "help.text" msgid "Adds a header to the current page style. A header is an area in the top page margin, where you can add text or graphics." -msgstr "" +msgstr "Dodaje główkę do bieżącego stylu strony. Główka to obszar na górnym marginesie strony, w którym można dodać tekst lub grafikę." #. AiAZ8 #: 05040300.xhp @@ -24314,7 +24314,7 @@ "par_id3153821\n" "help.text" msgid "To add a header to the current page style, select Header on, and then click OK." -msgstr "" +msgstr "Aby dodać główkę do bieżącego stylu strony, wybierz Główka włączona, a następnie kliknij OK." #. fiqjQ #: 05040300.xhp @@ -24368,7 +24368,7 @@ "par_id3154388\n" "help.text" msgid "Adds a header to the current page style." -msgstr "" +msgstr "Dodaje główkę do bieżącego stylu strony." #. xCGR9 #: 05040300.xhp @@ -24386,7 +24386,7 @@ "par_id3154938\n" "help.text" msgid "Even and odd pages share the same content. To assign a different header to even and odd pages, clear this option, and then click Edit." -msgstr "" +msgstr "Strony parzyste i nieparzyste mają tę samą treść. Aby przypisać inną główkę do stron parzystych i nieparzystych, usuń zaznaczenie tej opcji, a następnie kliknij Edycja." #. jPgkw #: 05040300.xhp @@ -24539,7 +24539,7 @@ "hd_id3155306\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Edycja" #. ZTS24 #: 05040300.xhp @@ -24620,7 +24620,7 @@ "par_id3156553\n" "help.text" msgid "Adds a footer to the current page style. A footer is an area in the bottom page margin, where you can add text or graphics." -msgstr "" +msgstr "Dodaje stopkę do bieżącego stylu strony. Stopka to obszar na dolnym marginesie strony, w którym możesz dodać tekst lub grafikę." #. ofejE #: 05040400.xhp @@ -24638,7 +24638,7 @@ "par_id3155339\n" "help.text" msgid "To insert a footer into the current document, select Footer on, and then click OK." -msgstr "" +msgstr "Aby wstawić stopkę do bieżącego dokumentu, wybierz Stopka włączona, a następnie kliknij OK." #. DAGaz #: 05040400.xhp @@ -24692,7 +24692,7 @@ "par_id3153348\n" "help.text" msgid "Adds a footer to the current page style." -msgstr "" +msgstr "Dodaje stopkę do bieżącego stylu strony." #. 8qHgw #: 05040400.xhp @@ -24710,7 +24710,7 @@ "par_id3149575\n" "help.text" msgid "Even and odd pages share the same content. To assign a different footer to even and odd pages, clear this option, and then click Edit." -msgstr "" +msgstr "Strony parzyste i nieparzyste mają tę samą zawartość. Aby przypisać inną stopkę do stron parzystych i nieparzystych, usuń zaznaczenie tej opcji, a następnie kliknij Edycja." #. cL398 #: 05040400.xhp @@ -24728,7 +24728,7 @@ "par_id3154939\n" "help.text" msgid "First and even/odd pages share the same content." -msgstr "" +msgstr "Pierwsze i parzyste/nieparzyste strony mają tę samą treść." #. tmpKM #: 05040400.xhp @@ -24746,7 +24746,7 @@ "par_id3156434\n" "help.text" msgid "Enter the amount of space to leave between the left edge of the page and the left edge of the footer." -msgstr "" +msgstr "Wprowadź ilość miejsca do pozostawienia między lewą krawędzią strony a lewą krawędzią stopki." #. jKCfG #: 05040400.xhp @@ -24764,7 +24764,7 @@ "par_id3154224\n" "help.text" msgid "Enter the amount of space to leave between the right edge of the page and the right edge of the footer." -msgstr "" +msgstr "Wprowadź ilość miejsca do pozostawienia między prawą krawędzią strony a prawą krawędzią stopki." #. JrU5n #: 05040400.xhp @@ -24782,7 +24782,7 @@ "par_id3154908\n" "help.text" msgid "Enter the amount of space that you want to maintain between the bottom edge of the document text and the top edge of the footer." -msgstr "" +msgstr "Wprowadź ilość miejsca, jaką chcesz zachować między dolną krawędzią tekstu dokumentu a górną krawędzią stopki." #. JmTg9 #: 05040400.xhp @@ -24800,7 +24800,7 @@ "par_id3144760\n" "help.text" msgid "Overrides the Spacing setting and allows the footer to expand into the area between the footer and document text." -msgstr "" +msgstr "Zastępuje ustawienie Odstępy i pozwala rozszerzyć stopkę do obszaru między stopką a tekstem dokumentu." #. 3r7GC #: 05040400.xhp @@ -24818,7 +24818,7 @@ "par_id3125865\n" "help.text" msgid "Enter the height you want for the footer." -msgstr "" +msgstr "Wprowadź wysokość stopki." #. Y2kM2 #: 05040400.xhp @@ -24836,7 +24836,7 @@ "par_id3145744\n" "help.text" msgid "Automatically adjusts the height of the footer to fit the content you enter." -msgstr "" +msgstr "Automatycznie dostosowuje wysokość stopki do wprowadzanej treści." #. GBqjz #: 05040400.xhp @@ -24854,7 +24854,7 @@ "par_id3145421\n" "help.text" msgid "Defines a border, a background color, or a background pattern for the footer." -msgstr "" +msgstr "Określa krawędzie, kolor tła lub wzór tła dla stopki." #. VcmMZ #: 05040400.xhp @@ -24863,7 +24863,7 @@ "hd_id3157892\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Edycja" #. 2HTzq #: 05040400.xhp @@ -24953,7 +24953,7 @@ "par_id3083278\n" "help.text" msgid "Allows you to add comments next to Asian characters to serve as a pronunciation guide." -msgstr "" +msgstr "Umożliwia dodawanie komentarzy obok znaków azjatyckich, które służą jako przewodnik po wymowie." #. PYArP #: 05060000.xhp @@ -25034,7 +25034,7 @@ "par_id3156280\n" "help.text" msgid "Select the horizontal alignment for the ruby text." -msgstr "" +msgstr "Wybierz poziome wyrównanie dopisku fonetycznego." #. jYcBH #: 05060000.xhp @@ -25097,7 +25097,7 @@ "tit\n" "help.text" msgid "Align Objects" -msgstr "" +msgstr "Wyrównaj obiekty" #. kVyf4 #: 05070000.xhp @@ -25169,7 +25169,7 @@ "par_id3160463\n" "help.text" msgid "Aligns the left edges of the selected objects. If only one object is selected in Draw or Impress, the left edge of the object is aligned to the left page margin." -msgstr "" +msgstr "Wyrównuje lewe krawędzie zaznaczonych obiektów. Jeśli w Draw lub Impress zaznaczony jest tylko jeden obiekt, lewa krawędź obiektu jest wyrównana do lewego marginesu strony." #. Hisgg #: 05070100.xhp @@ -25214,7 +25214,7 @@ "par_id3145138\n" "help.text" msgid "Horizontally centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the horizontal center of the page." -msgstr "" +msgstr "Wyśrodkowuje zaznaczone obiekty w poziomie. Jeśli tylko jeden obiekt jest zaznaczony w Draw lub Impress, środek obiektu jest wyrównany do poziomego środka strony." #. KZbGT #: 05070200.xhp @@ -25223,7 +25223,7 @@ "par_id3144336\n" "help.text" msgid "The vertical position of the selected objects is not affected by this command." -msgstr "" +msgstr "To polecenie nie wpływa na pionowe położenie zaznaczonych obiektów." #. yXXeh #: 05070200.xhp @@ -25232,7 +25232,7 @@ "par_id891634662083611\n" "help.text" msgid "To align the individual objects in a group, choose Format - Group - Enter Group to enter the group, select the objects, right-click, and then choose an alignment option." -msgstr "" +msgstr "Aby wyrównać poszczególne obiekty w grupie, wybierz Format - Grupa - Wejdź do grupy, aby wejść do grupy, zaznacz obiekty, kliknij prawym przyciskiem myszy, a następnie wybierz opcję wyrównania." #. FyxcB #: 05070200.xhp @@ -25241,7 +25241,7 @@ "par_id81634662074262\n" "help.text" msgid "To align the individual objects in a group, double-click to enter the group, select the objects, right-click, and then choose an alignment option." -msgstr "" +msgstr "Aby wyrównać poszczególne obiekty w grupie, kliknij dwukrotnie, aby wejść do grupy, zaznacz obiekty, kliknij prawym przyciskiem myszy, a następnie wybierz opcję wyrównania." #. xtqWj #: 05070300.xhp @@ -25268,7 +25268,7 @@ "par_id3151264\n" "help.text" msgid "Aligns the right edges of the selected objects. If only one object is selected in Impress or Draw, the right edge of the object is aligned to the right page margin." -msgstr "" +msgstr "Wyrównuje prawe krawędzie zaznaczonych obiektów. Jeśli w Impress lub Draw wybrano tylko jeden obiekt, prawa krawędź obiektu zostanie wyrównana do prawego marginesu strony." #. QZmSn #: 05070300.xhp @@ -25304,7 +25304,7 @@ "par_id3154613\n" "help.text" msgid "Vertically aligns the top edges of the selected objects. If only one object is selected in Draw or Impress, the top edge of the object is aligned to the upper page margin." -msgstr "" +msgstr "Wyrównuje w pionie górne krawędzie zaznaczonych obiektów. Jeśli tylko jeden obiekt jest zaznaczony w Draw lub Impress, górna krawędź obiektu jest wyrównana do górnego marginesu strony." #. SLLEV #: 05070400.xhp @@ -25340,7 +25340,7 @@ "par_id3160463\n" "help.text" msgid "Vertically centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the vertical center of the page." -msgstr "" +msgstr "Wyśrodkowuje zaznaczone obiekty w pionie. Jeśli tylko jeden obiekt jest zaznaczony w Draw lub Impress, środek obiektu jest wyrównany do pionowego środka strony." #. zB9wy #: 05070600.xhp @@ -25610,7 +25610,7 @@ "bm_id501632012952361\n" "help.text" msgid "merge/merging cells" -msgstr "" +msgstr "scalanie komórek" #. 4qzwA #: 05100100.xhp @@ -25628,7 +25628,7 @@ "par_id3147406\n" "help.text" msgid "Combines the contents of the selected cells into a single cell, retaining the formatting of the first cell in the selection." -msgstr "" +msgstr "Łączy zawartość zaznaczonych komórek w jedną komórkę, zachowując formatowanie pierwszej zaznaczonej komórki." #. Cb2xp #: 05100100.xhp @@ -25637,7 +25637,7 @@ "par_id461632808376973\n" "help.text" msgid "Select the cells to be merged then do one of the following:" -msgstr "" +msgstr "Zaznacz komórki do scalenia, a następnie wykonaj jedną z następujących czynności:" #. bJGUQ #: 05100100.xhp @@ -25646,7 +25646,7 @@ "par_id221632803290526\n" "help.text" msgid "In the Formatting toolbar, click:" -msgstr "" +msgstr "Na pasku narzędzi Formatowanie kliknij:" #. kBxWW #: 05100100.xhp @@ -25655,7 +25655,7 @@ "par_id3154351\n" "help.text" msgid "Or, right click the selection to open the context menu and choose Merge Cells. If Unmerge Cells is present instead then the cell selection contains merged cells and cannot be merged further." -msgstr "" +msgstr "Lub kliknij prawym przyciskiem myszy zaznaczenie, aby otworzyć menu kontekstowe i wybierz Scal komórki. Jeśli zamiast tego występuje opcja Rozdziel komórki, zaznaczone komórki zawierają scalone komórki i nie można ich dalej scalać." #. Fz6u9 #: 05100100.xhp @@ -25664,7 +25664,7 @@ "par_id931632803442925\n" "help.text" msgid "Or, in the Properties sidebar mark the Merge Cells checkbox." -msgstr "" +msgstr "Lub na pasku bocznym Właściwości zaznacz pole wyboru Scal komórki." #. CmQFq #: 05100100.xhp @@ -25673,7 +25673,7 @@ "par_id3154020\n" "help.text" msgid "Or, choose Format - Merge and Unmerge Cells - Merge Cells." -msgstr "" +msgstr "Lub wybierz Format - Scal i rozdziel komórki - Scal komórki." #. tHAGa #: 05100100.xhp @@ -25682,7 +25682,7 @@ "par_id321632377889618\n" "help.text" msgid "Choose Table - Merge Cells.
" -msgstr "" +msgstr "Wybierz Tabela - Scal komórki.
" #. B7FNs #: 05100100.xhp @@ -25691,7 +25691,7 @@ "par_id3154370\n" "help.text" msgid "Or, on the Table toolbar click:" -msgstr "" +msgstr "Lub na pasku narzędzi Tabela kliknij:" #. pfYCj #: 05100200.xhp @@ -25709,7 +25709,7 @@ "bm_id501632012952361\n" "help.text" msgid "unmerge/unmerging cellssplit/splitting cells" -msgstr "" +msgstr "rozdzielanie komórekdzielenie komórek" #. zDkKt #: 05100200.xhp @@ -25727,7 +25727,7 @@ "par_id871632385128307\n" "help.text" msgid "Divides previously merged cells back to the original cells. If the original cells had content that was kept when merged that content is restored." -msgstr "" +msgstr "Dzieli wcześniej scalone komórki z powrotem na oryginalne komórki. Jeśli oryginalne komórki miały zawartość, która została zachowana podczas scalania, zawartość ta zostanie przywrócona." #. qBugU #: 05100200.xhp @@ -25736,7 +25736,7 @@ "par_id1001632807096225\n" "help.text" msgid "Select the cells to be unmerged then do one of the following:" -msgstr "" +msgstr "Zaznacz komórki do rozdzielenia, a następnie wykonaj jedną z następujących czynności:" #. 8HDVx #: 05100200.xhp @@ -25745,7 +25745,7 @@ "par_id961632804418168\n" "help.text" msgid "In the Formatting toolbar click:" -msgstr "" +msgstr "Na pasku narzędzi Formatowanie kliknij:" #. SMhxF #: 05100200.xhp @@ -25754,7 +25754,7 @@ "par_id161632275254217\n" "help.text" msgid "Or, right click the selection to open the context menu and choose Unmerge Cells. If Merge Cells is present instead then the cell selection does not contain any merged cells." -msgstr "" +msgstr "Lub kliknij prawym przyciskiem myszy zaznaczenie, aby otworzyć menu kontekstowe i wybierz Rozdziel komórki. Jeśli zamiast tego jest obecne Scal komórki, zaznaczone komórki nie zawierają żadnych scalonych komórek." #. WLbsk #: 05100200.xhp @@ -25763,7 +25763,7 @@ "par_id901632804430738\n" "help.text" msgid "Or, in the Properties sidebar clear the Merge Cells checkbox." -msgstr "" +msgstr "Lub na pasku bocznym Właściwości usuń zaznaczenie pola wyboru Scal komórki." #. nnwCo #: 05100200.xhp @@ -25772,7 +25772,7 @@ "par_id381632805680565\n" "help.text" msgid "Or, choose Format - Merge and Unmerge Cells - Unmerge Cells" -msgstr "" +msgstr "Lub wybierz Format - Scal i rozdziel komórki - Rozdziel komórki" #. Tvbae #: 05100200.xhp @@ -25790,7 +25790,7 @@ "par_id3083451\n" "help.text" msgid "Displays the Split Cells Dialog where the split can be defined as either horizontally or vertically and the number the each cell will be split into." -msgstr "" +msgstr "Wyświetla okno dialogowe Podziel komórki, w którym można zdefiniować podział w poziomie lub w pionie oraz liczbę, na jaką zostanie podzielona każda komórka." #. aAHnr #: 05100200.xhp @@ -25808,7 +25808,7 @@ "par_id3154024\n" "help.text" msgid "Choose Table - Split Cells." -msgstr "" +msgstr "Wybierz Tabela - Podziel komórki." #. pNAsT #: 05100200.xhp @@ -25817,7 +25817,7 @@ "par_id3154042\n" "help.text" msgid "Or, on the Table toolbar click:" -msgstr "" +msgstr "Lub na pasku narzędzi Tabela kliknij:" #. 4oLAA #: 05100200.xhp @@ -25826,7 +25826,7 @@ "hd_id3154558\n" "help.text" msgid "Split Cells Dialog" -msgstr "" +msgstr "Okno dialogowe Podziel komórki" #. cDdv6 #: 05100200.xhp @@ -26177,7 +26177,7 @@ "par_id3149031\n" "help.text" msgid "Underlines or removes underlining from the selected text." -msgstr "" +msgstr "Podkreśla lub usuwa podkreślenia z zaznaczonego tekstu." #. XAscP #: 05110300.xhp @@ -26204,7 +26204,7 @@ "par_id212197604765254\n" "help.text" msgid "Underlines the selected text with a single line." -msgstr "" +msgstr "Podkreśla zaznaczony tekst pojedynczą linią." #. ciLxw #: 05110300.xhp @@ -26222,7 +26222,7 @@ "par_id3154894\n" "help.text" msgid "Underlines the selected text with two lines." -msgstr "" +msgstr "Podkreśla zaznaczony tekst dwiema liniami." #. m4GEk #: 05110400.xhp @@ -26303,7 +26303,7 @@ "tit\n" "help.text" msgid "Distribute Rows Evenly" -msgstr "" +msgstr "Rozłóż wiersze równomiernie" #. E24fs #: 05110600m.xhp @@ -26312,7 +26312,7 @@ "bm_id431513359599959\n" "help.text" msgid "table rows;distribute height equally row height;distribute equally" -msgstr "" +msgstr "wiersze tabeli;rozłóż wysokość równowysokość wiersza;rozłóż równo" #. 3XJPh #: 05110600m.xhp @@ -26456,7 +26456,7 @@ "par_id3153514\n" "help.text" msgid "Specify the amount of space to leave between lines of text in a paragraph." -msgstr "" +msgstr "Określ ilość miejsca do pozostawienia między wierszami tekstu w akapicie." #. hBX9A #: 05120000.xhp @@ -26627,7 +26627,7 @@ "tit\n" "help.text" msgid "New Style from Selection" -msgstr "" +msgstr "Nowy styl z zaznaczenia" #. LRY9y #: 05140100.xhp @@ -26636,7 +26636,7 @@ "hd_id3152823\n" "help.text" msgid "New Style from Selection" -msgstr "" +msgstr "Nowy styl z zaznaczenia" #. CTRWm #: 05140100.xhp @@ -26645,7 +26645,7 @@ "par_id461608255735789\n" "help.text" msgid "Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.Create new cell and page styles from manually modified cell or page formatting.Create new graphic styles from objects that you have formatted manually to the new style that you want to create." -msgstr "" +msgstr "Twórz nowe style akapitu, znaku, ramek, stron, list i tabel z obiektów sformatowanych ręcznie do nowego stylu, który chcesz utworzyć.Twórz nowe style komórek i stron na podstawie ręcznie zmodyfikowanego formatowania komórek lub stron.Twórz nowe style grafiki z obiektów, które sformatowano ręcznie do nowego stylu, który chcesz utworzyć." #. 5nxxW #: 05140100.xhp @@ -26654,7 +26654,7 @@ "par_id261608301987247\n" "help.text" msgid "For paragraphs only:" -msgstr "" +msgstr "Tylko dla akapitów:" #. 2DuZc #: 05140100.xhp @@ -26663,7 +26663,7 @@ "par_id841608260799161\n" "help.text" msgid "Press Shift+F11" -msgstr "" +msgstr "Naciśnij Shift+F11" #. KhFGr #: 05140100.xhp @@ -26672,7 +26672,7 @@ "par_id291608260822416\n" "help.text" msgid "Choose Styles - New Style from Selection." -msgstr "" +msgstr "Wybierz Stylee - Nowy styl z zaznaczenia." #. eDfZA #: 05140100.xhp @@ -26681,7 +26681,7 @@ "par_id121608265120732\n" "help.text" msgid "On the Formatting bar, click the New Style from Selection icon." -msgstr "" +msgstr "Na pasku Formatowanie kliknij ikonę Nowy styl z zaznaczenia." #. nbEBB #: 05140100.xhp @@ -26690,7 +26690,7 @@ "par_id441608302065414\n" "help.text" msgid "For all style categories:" -msgstr "" +msgstr "Dla wszystkich kategorii stylów:" #. ZCV8q #: 05140100.xhp @@ -26699,7 +26699,7 @@ "par_id411608260881855\n" "help.text" msgid "Choose View - Styles or press Command+TF11 to open the Styles sidebar, select the desired style category at the top of Styles deck, then click the Styles action menu icon at the top right corner, and choose New Style from Selection." -msgstr "" +msgstr "Wybierz Widok - Style lub naciśnij Command+TF11 , aby otworzyć panel boczny stylów, wybierz żądaną kategorię stylów u góry obszaru Style, a następnie kliknij ikonę menu Akcje stylów w prawym górnym rogu, i wybierz Nowy styl z zaznaczenia." #. Z4co9 #: 05140100.xhp @@ -26708,7 +26708,7 @@ "par_id541608262296507\n" "help.text" msgid "Choose Styles - New Style from Selection. (cell styles only)" -msgstr "" +msgstr "Wybierz Style - Nowy styl z zaznaczenia. (tylko style komórek)" #. kP8Su #: 05140100.xhp @@ -26717,7 +26717,7 @@ "par_id751608262329946\n" "help.text" msgid "Choose Styles - Manage Styles or press Command+TF11 to open the Styles sidebar, select the desired style category at the top of Styles deck, then click the New Style from Selection icon." -msgstr "" +msgstr "Wybierz Style - Zarządzaj stylami lub naciśnij Command+TF11, aby otworzyć panel boczny stylów, wybierz żądaną kategorię stylów na górze obszaru Style, a następnie kliknij ikonę Nowy styl z zaznaczenia." #. 9Cz2g #: 05140100.xhp @@ -26726,7 +26726,7 @@ "par_id791608262979620\n" "help.text" msgid "Choose View - Styles or press Command+TF11 to open the Styles sidebar, then click the New Style from Selection icon at the top of the Styles deck." -msgstr "" +msgstr "Wybierz Widok - Style lub naciśnij Command+TF11, aby otworzyć panel boczny stylów, a następnie kliknij ikonę Nowy styl z zaznaczenia u góry obszaru Style." #. xeDUe #: 05140100.xhp @@ -26735,7 +26735,7 @@ "par_id361608258291007\n" "help.text" msgid "New Style from Selection Icon" -msgstr "" +msgstr "Ikona nowego stylu z zaznaczenia" #. QD8Pf #: 05140100.xhp @@ -26744,7 +26744,7 @@ "par_id151608258291007\n" "help.text" msgid "New Style from Selection Icon" -msgstr "" +msgstr "Ikona nowego stylu z zaznaczenia" #. Gnssc #: 05140100.xhp @@ -26753,7 +26753,7 @@ "hd_id3152790\n" "help.text" msgid "Enter New Style Name" -msgstr "" +msgstr "Wprowadź nazwę nowego stylu" #. uAXYU #: 05140100.xhp @@ -26771,7 +26771,7 @@ "hd_id3154682\n" "help.text" msgid "Custom Styles for Current Document" -msgstr "" +msgstr "Style niestandardowe dla bieżącego dokumentu" #. wWSGE #: 05140100.xhp @@ -26780,7 +26780,7 @@ "par_id3154894\n" "help.text" msgid "Lists all custom styles in the selected style category forin the selected style category forin the current document. These styles can be overwritten with a new style selection if you want." -msgstr "" +msgstr "Wyświetl listę wszystkich stylów niestandardowych dla bieżącego dokumentu i wybranej kategorii stylów i wybranej kategorii stylów . W razie potrzeby style te można zastąpić nowym wyborem stylów." #. Ey5dK #: 05140100.xhp @@ -26870,7 +26870,7 @@ "par_id3152924\n" "help.text" msgid "Enter a name for the selected object. The name will be visible in the Navigator." -msgstr "" +msgstr "Wprowadź nazwę zaznaczonego obiektu. Nazwa będzie widoczna w Nawigatorze." #. CSL6H #: 05190000.xhp @@ -26879,7 +26879,7 @@ "par_id661630417737429\n" "help.text" msgid "Names must be unique between images, OLE objects and frames in the same document." -msgstr "" +msgstr "Nazwy muszą być unikalne dla obrazów, obiektów OLE i ramek w tym samym dokumencie." #. 2gqYZ #: 05190100.xhp @@ -26897,7 +26897,7 @@ "bm_id3147366\n" "help.text" msgid "objects;text alternative and description descriptions for objects text alternative;objects" -msgstr "" +msgstr "obiekty;tekst alternatywny i opisopisy obiektów tekst alternatywny;obiekty" #. BmXdA #: 05190100.xhp @@ -26915,7 +26915,7 @@ "par_id3140354\n" "help.text" msgid "Assigns a text alternative and a description to the selected object. These texts are available as alternative tags in your document for use by accessibility tools. They are also available as tags for images when you export the document." -msgstr "" +msgstr "Przypisuje tekst alternatywny i opis do zaznaczonego obiektu. Teksty te są dostępne jako alternatywne znaczniki w dokumencie do wykorzystania przez narzędzia ułatwień dostępu. Są one również dostępne jako znaczniki obrazów podczas eksportowania dokumentu." #. CBSaQ #: 05190100.xhp @@ -26924,7 +26924,7 @@ "hd_id2576982\n" "help.text" msgid "Text Alternative" -msgstr "" +msgstr "Tekst alternatywny" #. uQ5RY #: 05190100.xhp @@ -26933,7 +26933,7 @@ "par_id1283608\n" "help.text" msgid "Enter a short description of the essential details of the selected object for a person who cannot see the object. This text is available for use by assistive technologies." -msgstr "" +msgstr "Wprowadź krótki opis istotnych szczegółów zaznaczonego obiektu dla osoby, która nie widzi obiektu. Ten tekst jest dostępny do użytku przez technologie wspomagające." #. Mxbmi #: 05190100.xhp @@ -26951,7 +26951,7 @@ "par_id693685\n" "help.text" msgid "Enter a longer description of the object, especially if the object is too complex or contains too much detail to be described adequately with the short Text Alternative. Use Description to add additional information to the short description found in Text Alternative. This text is available for use by assistive technologies." -msgstr "" +msgstr "Wprowadź dłuższy opis obiektu, zwłaszcza jeśli obiekt jest zbyt złożony lub zawiera zbyt wiele szczegółów, aby można go było odpowiednio opisać za pomocą krótkiego tekstu alternatywnego. Użyj opisu, aby dodać dodatkowe informacje do krótkiego opisu znajdującego się w tekście alternatywnym. Ten tekst jest dostępny do użytku przez technologie wspomagające." #. toUVu #: 05190100.xhp @@ -27050,7 +27050,7 @@ "par_id3147143\n" "help.text" msgid "Select the line style that you want to use." -msgstr "" +msgstr "Wybierz styl linii, który chcesz użyć." #. NrzDX #: 05200100.xhp @@ -27068,7 +27068,7 @@ "par_id3147226\n" "help.text" msgid "Select a color for the line." -msgstr "" +msgstr "Wybierz kolor linii." #. gVaax #: 05200100.xhp @@ -27086,7 +27086,7 @@ "par_id3150774\n" "help.text" msgid "Select the width for the line. You can append a measurement unit. A zero line width results in a hairline with a width of one pixel of the output medium." -msgstr "" +msgstr "Wybierz szerokość linii. Możesz dołączyć jednostkę miary. Zerowa szerokość linii skutkuje linią włosa o szerokości jednego piksela medium wyjściowego." #. hG52Y #: 05200100.xhp @@ -27500,7 +27500,7 @@ "par_id3149827\n" "help.text" msgid "Creates a new line style using the current settings. Enter a name for the new line style." -msgstr "" +msgstr "Tworzy nowy styl linii przy użyciu bieżących ustawień. Wprowadź nazwę nowego stylu linii." #. 6Yvch #: 05200200.xhp @@ -27599,7 +27599,7 @@ "hd_id3153551\n" "help.text" msgid "Manage Arrow Styles" -msgstr "" +msgstr "Zarządzaj stylami strzałek" #. eNpRg #: 05200300.xhp @@ -27608,7 +27608,7 @@ "par_id3154398\n" "help.text" msgid "Lets you add, rename, delete, save and load arrow styles." -msgstr "" +msgstr "Pozwala dodawać, zmieniać nazwy, usuwać, zapisywać i ładować style strzałek." #. Ur69B #: 05200300.xhp @@ -27617,7 +27617,7 @@ "hd_id3155552\n" "help.text" msgid "Style name" -msgstr "" +msgstr "Nazwa stylu" #. ESzub #: 05200300.xhp @@ -27671,7 +27671,7 @@ "hd_id3156346\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Zmień nazwę" #. sQktA #: 05200300.xhp @@ -27725,7 +27725,7 @@ "tit\n" "help.text" msgid "Area window" -msgstr "" +msgstr "Okno Obszar" #. AKnrv #: 05210000.xhp @@ -27752,7 +27752,7 @@ "tit\n" "help.text" msgid "Area tab" -msgstr "" +msgstr "Karta Obszar" #. yN2qC #: 05210100.xhp @@ -27761,7 +27761,7 @@ "bm_id3149999\n" "help.text" msgid "areas; stylesfill patterns for areasfill colors for areasinvisible areasframes; backgroundsbackgrounds; frames/sections/indexessections; backgroundsindexes; backgroundsfooters;backgroundsheaders;backgrounds" -msgstr "" +msgstr "obszary; stylewzory wypełnienia obszarówkolory wypełnienia obszarówobszary niewidoczneramki; tłatła; ramki/sekcje/indeksysekcje; tłaindeksy; tłastopki;tłagłówki;tła" #. 3fEfw #: 05210100.xhp @@ -27779,7 +27779,7 @@ "par_id3149748\n" "help.text" msgid "Set the fill options for the selected drawing object or document element." -msgstr "" +msgstr "Ustaw opcje wypełnienia zaznaczonego obiektu rysunkowego lub elementu dokumentu." #. DB3Ez #: 05210100.xhp @@ -27788,7 +27788,7 @@ "par_id3154863\n" "help.text" msgid "You can add custom colors, gradients, hatchings, two color patterns and image patterns to the default lists for later use." -msgstr "" +msgstr "Możesz dodać niestandardowe kolory, gradienty, kreskowania, dwa wzory kolorów i wzory obrazów do domyślnych list w celu późniejszego wykorzystania." #. CGbA3 #: 05210100.xhp @@ -27806,7 +27806,7 @@ "par_id3149751\n" "help.text" msgid "Do not fill the selected object." -msgstr "" +msgstr "Nie wypełniaj zaznaczonego obiektu." #. 58oAC #: 05210100.xhp @@ -27824,7 +27824,7 @@ "par_id3153716\n" "help.text" msgid "Fills the object with a gradient selected on this page." -msgstr "" +msgstr "Wypełnia obiekt gradientem wybranym na tej stronie." #. ydNTt #: 05210100.xhp @@ -27842,7 +27842,7 @@ "par_id3153698\n" "help.text" msgid "Fills the object with a hatching pattern selected on this page." -msgstr "" +msgstr "Wypełnia obiekt wzorem kreskowania wybranym na tej stronie." #. PHhMR #: 05210100.xhp @@ -27851,7 +27851,7 @@ "par_id3148548\n" "help.text" msgid "You can quickly select fill options from the list boxes on the Drawing Object Properties toolbar." -msgstr "" +msgstr "Możesz szybko wybrać opcje wypełnienia z pól listy na pasku narzędzi Właściwości obiektu rysunkowego." #. CiGCw #: 05210100.xhp @@ -27869,7 +27869,7 @@ "tit\n" "help.text" msgid "Colors" -msgstr "" +msgstr "Kolory" #. AKar8 #: 05210200.xhp @@ -27878,7 +27878,7 @@ "bm_id37440771\n" "help.text" msgid "colors;palettepalette;document colorscolors;addingcolors;deletedocument colors;palette" -msgstr "" +msgstr "kolory;paletapaleta;kolory dokumentukolory;dodawaniekolory;usuwaniekolory dokumentu;paleta" #. vay4k #: 05210200.xhp @@ -27896,7 +27896,7 @@ "par_id3149119\n" "help.text" msgid "Select a color to apply, save the current color list, or load a different color list." -msgstr "" +msgstr "Wybierz kolor do zastosowania, zapisz bieżącą listę kolorów lub załaduj inną listę kolorów." #. vUNGz #: 05210200.xhp @@ -27905,7 +27905,7 @@ "par_id291578764209687\n" "help.text" msgid "Press the Color button in one of the situations below:" -msgstr "" +msgstr "Naciśnij przyciskKolor w jednej z poniższych sytuacji:" #. uiJLg #: 05210200.xhp @@ -27914,7 +27914,7 @@ "hd_id931578758906569\n" "help.text" msgid "Colors" -msgstr "" +msgstr "Kolory" #. 2iXVW #: 05210200.xhp @@ -27923,7 +27923,7 @@ "hd_id551578758911321\n" "help.text" msgid "Palette" -msgstr "" +msgstr "Paleta" #. ebwpw #: 05210200.xhp @@ -27932,7 +27932,7 @@ "par_id411578758922329\n" "help.text" msgid "Select the color palette in the list box to pick the color for the selected object. The palette color set displays below." -msgstr "" +msgstr "Wybierz paletę kolorów w polu listy, aby wybrać kolor dla zaznaczonego obiektu. Zestaw kolorów palety jest wyświetlany poniżej." #. EyGbC #: 05210200.xhp @@ -27941,7 +27941,7 @@ "par_id441641431603505\n" "help.text" msgid "The Theme colors palette shows the theme colors from the current theme, if the document has any." -msgstr "" +msgstr "Paleta Kolory motywu pokazuje kolory motywu z bieżącego motywu, jeśli dokument taki posiada." #. CSCQY #: 05210200.xhp @@ -27950,7 +27950,7 @@ "par_id441641431603506\n" "help.text" msgid "The Document colors palette shows the colors used in the current document." -msgstr "" +msgstr "Paleta Kolory dokumentu pokazuje kolory użyte w bieżącym dokumencie." #. DQAGQ #: 05210200.xhp @@ -27959,7 +27959,7 @@ "hd_id981578758969146\n" "help.text" msgid "Recent colors" -msgstr "" +msgstr "Ostatnie kolory" #. 6LC8v #: 05210200.xhp @@ -27968,7 +27968,7 @@ "par_id751578758975939\n" "help.text" msgid "Displays the recent selected colors." -msgstr "" +msgstr "Wyświetla ostatnio wybrane kolory." #. Gkcmg #: 05210200.xhp @@ -27977,7 +27977,7 @@ "hd_id41578758979874\n" "help.text" msgid "Custom Palette" -msgstr "" +msgstr "Paleta użytkownika" #. u7xEP #: 05210200.xhp @@ -27986,7 +27986,7 @@ "par_id641578758985603\n" "help.text" msgid "Click Add to open a dialog to set a name for the custom color. The palette changes to \"custom\"." -msgstr "" +msgstr "Kliknij Dodaj, aby otworzyć okno dialogowe, w którym można ustawić nazwę dla niestandardowego koloru. Paleta zmieni się na „użytkownika”." #. 5Br7h #: 05210200.xhp @@ -27995,7 +27995,7 @@ "par_id191578758991563\n" "help.text" msgid "Click Delete to delete the color from the custom palette." -msgstr "" +msgstr "Kliknij Usuń, aby usunąć kolor z palety użytkownika." #. ECZqn #: 05210200.xhp @@ -28004,7 +28004,7 @@ "par_id921578758048450\n" "help.text" msgid "You cannot add or delete colors of the palettes provided by your installation." -msgstr "" +msgstr "Nie możesz dodawać ani usuwać kolorów palet dostarczonych przez instalację." #. BwEAC #: 05210200.xhp @@ -28013,7 +28013,7 @@ "hd_id991578758873888\n" "help.text" msgid "Active" -msgstr "" +msgstr "Aktywny" #. 77qcm #: 05210200.xhp @@ -28022,7 +28022,7 @@ "par_id361578758881241\n" "help.text" msgid "Displays the current active color for the object. Red, blue and green components values and the color value in hexadecimal notation are displayed just below." -msgstr "" +msgstr "Wyświetla bieżący aktywny kolor obiektu. Wartości składowych czerwonego, niebieskiego i zielonego oraz wartość koloru w zapisie szesnastkowym są wyświetlane tuż poniżej." #. hKFBD #: 05210200.xhp @@ -28031,7 +28031,7 @@ "hd_id801578758863952\n" "help.text" msgid "New" -msgstr "" +msgstr "Nowy" #. dtNaW #: 05210200.xhp @@ -28040,7 +28040,7 @@ "par_id271578758868425\n" "help.text" msgid "Displays the new color for the object that will be applied when you click OK." -msgstr "" +msgstr "Wyświetla nowy kolor obiektu, który zostanie zastosowany po kliknięciu OK." #. kw6LA #: 05210200.xhp @@ -28049,7 +28049,7 @@ "hd_id701578758840552\n" "help.text" msgid "R, G and B" -msgstr "" +msgstr "R, G i B" #. ufa4B #: 05210200.xhp @@ -28058,7 +28058,7 @@ "par_id691578758845984\n" "help.text" msgid "The values of the red, blue and green components of the new color. You can define the new color by entering the red, green and blue values in the respective R, G and B spin boxes. Allowed values are 0 to 255." -msgstr "" +msgstr "Wartości składowych czerwonego, niebieskiego i zielonego nowego koloru. Możesz zdefiniować nowy kolor, wprowadzając wartości czerwonego, zielonego i niebieskiego w odpowiednich polach obrotu R, G i B. Dozwolone wartości to od 0 do 255." #. NAGAE #: 05210200.xhp @@ -28067,7 +28067,7 @@ "hd_id591578758836544\n" "help.text" msgid "Hex" -msgstr "" +msgstr "Hex" #. TBTQV #: 05210200.xhp @@ -28076,7 +28076,7 @@ "par_id121578758850944\n" "help.text" msgid "The color value in hexadecimal notation. You can enter the hexadecimal value in the Hex text box." -msgstr "" +msgstr "Wartość koloru w notacji szesnastkowej. Możesz wprowadzić wartość szesnastkową w polu tekstowym Hex." #. hW3tX #: 05210200.xhp @@ -28085,7 +28085,7 @@ "hd_id891578758832248\n" "help.text" msgid "Pick" -msgstr "" +msgstr "Wybierz" #. oVvDT #: 05210200.xhp @@ -28103,7 +28103,7 @@ "tit\n" "help.text" msgid "Gradient" -msgstr "" +msgstr "Gradient" #. BSymY #: 05210300.xhp @@ -28121,7 +28121,7 @@ "par_id3154812\n" "help.text" msgid "Select a gradient, modify the properties of a gradient, or save a new gradient." -msgstr "" +msgstr "Wybierz gradient, zmodyfikuj właściwości gradientu lub zapisz nowy gradient." #. fMDs9 #: 05210300.xhp @@ -28130,7 +28130,7 @@ "hd_id691584574297573\n" "help.text" msgid "Gradient" -msgstr "" +msgstr "Gradient" #. eyRRB #: 05210300.xhp @@ -28139,7 +28139,7 @@ "par_id971584574359838\n" "help.text" msgid "Lists the available gradients. You can also modify or create your own gradients." -msgstr "" +msgstr "Wyświetla listę dostępnych gradientów. Możesz także modyfikować lub tworzyć własne gradienty." #. jEbtG #: 05210300.xhp @@ -28184,7 +28184,7 @@ "par_id161584528499683\n" "help.text" msgid "To rename a gradient, select the gradient, right-click and choose Rename. To delete a gradient, select the gradient, right-click and choose Delete." -msgstr "" +msgstr "Aby zmienić nazwę gradientu, zaznacz gradient, kliknij prawym przyciskiem myszy i wybierz Zmień nazwę. Aby usunąć gradient, zaznacz gradient, kliknij prawym przyciskiem myszy i wybierz Usuń." #. QvQ4W #: 05210300.xhp @@ -28193,7 +28193,7 @@ "hd_id591584574095111\n" "help.text" msgid "Options" -msgstr "" +msgstr "Opcje" #. DwwDT #: 05210300.xhp @@ -28202,7 +28202,7 @@ "par_id811584574574437\n" "help.text" msgid "Use the options to define or modify a gradient." -msgstr "" +msgstr "Użyj opcji, aby zdefiniować lub zmodyfikować gradient." #. gM7bE #: 05210300.xhp @@ -28238,7 +28238,7 @@ "par_id3153114\n" "help.text" msgid "Enter the horizontal offset for the gradient, where 0% corresponds to the current horizontal location of the endpoint color in the gradient. The endpoint color is the color that is selected in the To Color box." -msgstr "" +msgstr "Wprowadź poziome przesunięcie gradientu, gdzie 0% odpowiada aktualnemu poziomemu położeniu koloru punktu końcowego w gradiencie. Kolor punktu końcowego to kolor wybrany w polu Kolor docelowy." #. TGhRA #: 05210300.xhp @@ -28256,7 +28256,7 @@ "par_id3154751\n" "help.text" msgid "Enter the vertical offset for the gradient, where 0% corresponds to the current vertical location of the endpoint color in the gradient. The endpoint color is the color that is selected in the To Color box." -msgstr "" +msgstr "Wprowadź pionowe przesunięcie gradientu, gdzie 0% odpowiada aktualnemu pionowemu położeniu koloru punktu końcowego w gradiencie. Kolor punktu końcowego to kolor wybrany w polu Kolor docelowy." #. Vh5bN #: 05210300.xhp @@ -28292,7 +28292,7 @@ "par_id3155941\n" "help.text" msgid "Enter the amount by which you want to adjust the area of the endpoint color on the gradient. The endpoint color is the color that is selected in the To Color box." -msgstr "" +msgstr "Wprowadź wartość, o jaką chcesz dostosować obszar koloru punktu końcowego na gradiencie. Kolor punktu końcowego to kolor wybrany w polu Kolor docelowy." #. JmtoS #: 05210300.xhp @@ -28301,7 +28301,7 @@ "hd_id3152551\n" "help.text" msgid "From Color" -msgstr "" +msgstr "Kolor źródłowy" #. kA7FM #: 05210300.xhp @@ -28319,7 +28319,7 @@ "par_id3149398\n" "help.text" msgid "Enter the intensity for the color in the From Color box, where 0% corresponds to black, and 100 % to the selected color." -msgstr "" +msgstr "Wprowadź intensywność koloru w polu Kolor źródłowy, gdzie 0% odpowiada czerni, a 100% wybranemu kolorowi." #. iqyqC #: 05210300.xhp @@ -28328,7 +28328,7 @@ "hd_id3149903\n" "help.text" msgid "To Color" -msgstr "" +msgstr "Kolor docelowy" #. red4y #: 05210300.xhp @@ -28346,7 +28346,7 @@ "par_id3154142\n" "help.text" msgid "Enter the intensity for the color in the To Color box, where 0% corresponds to black, and 100 % to the selected color." -msgstr "" +msgstr "Wprowadź intensywność koloru w polu Kolor docelowy, gdzie 0% odpowiada czerni, a 100% wybranemu kolorowi." #. NCtQh #: 05210400.xhp @@ -28355,7 +28355,7 @@ "tit\n" "help.text" msgid "Hatch" -msgstr "" +msgstr "Kreskowanie" #. FB7Ra #: 05210400.xhp @@ -28382,7 +28382,7 @@ "par_id3144436\n" "help.text" msgid "Set the properties of a hatching pattern, or save a new hatching pattern." -msgstr "" +msgstr "Ustaw właściwości wzoru kreskowania lub zapisz nowy wzór kreskowania." #. evjyS #: 05210400.xhp @@ -28391,7 +28391,7 @@ "hd_id3159147\n" "help.text" msgid "Hatch" -msgstr "" +msgstr "Kreskowanie" #. Xd9jB #: 05210400.xhp @@ -28409,7 +28409,7 @@ "par_id161584528499683\n" "help.text" msgid "To rename a hatching pattern, select the pattern, right-click and choose Rename. To delete a hatching pattern, select the pattern, right-click and choose Delete." -msgstr "" +msgstr "Aby zmienić nazwę wzoru kreskowania, zaznacz wzór, kliknij prawym przyciskiem myszy i wybierz Zmień nazwę. Aby usunąć wzór kreskowania, zaznacz wzór, kliknij prawym przyciskiem myszy i wybierz Usuń." #. 2FhdX #: 05210400.xhp @@ -28454,7 +28454,7 @@ "hd_id3156042\n" "help.text" msgid "Options" -msgstr "" +msgstr "Opcje" #. B6eCC #: 05210400.xhp @@ -28544,7 +28544,7 @@ "hd_id961582995662197\n" "help.text" msgid "Background Color" -msgstr "" +msgstr "Kolor tła" #. MPBD3 #: 05210400.xhp @@ -28553,7 +28553,7 @@ "par_id591582995645878\n" "help.text" msgid "To apply a background color, select the Background color box, then select a color." -msgstr "" +msgstr "Aby zastosować kolor tła, zaznacz pole Kolor tła, a następnie wybierz kolor." #. FCpZG #: 05210500.xhp @@ -28571,7 +28571,7 @@ "bm_id3155619\n" "help.text" msgid "images; areasareas; image" -msgstr "" +msgstr "obrazy; obszaryobszary; obraz" #. EXFDE #: 05210500.xhp @@ -28589,7 +28589,7 @@ "par_id3149495\n" "help.text" msgid "Select an image that you want to use as a fill image, or add your own image pattern." -msgstr "" +msgstr "Wybierz obraz, którego chcesz użyć jako obrazu wypełnienia, lub dodaj własny wzór obrazu." #. fogGu #: 05210500.xhp @@ -28607,7 +28607,7 @@ "par_id3147226\n" "help.text" msgid "Lists the available images. You can also import images." -msgstr "" +msgstr "Wyświetla listę dostępnych obrazów. Możesz także importować obrazy." #. rr7b8 #: 05210500.xhp @@ -28616,7 +28616,7 @@ "par_id501592872056000\n" "help.text" msgid "To rename an image, select the image, right-click and choose Rename. To delete an image, select the image, right-click and choose Delete." -msgstr "" +msgstr "Aby zmienić nazwę obrazu, zaznacz obraz, kliknij prawym przyciskiem myszy i wybierz Zmień nazwę. Aby usunąć obraz, zaznacz obraz, kliknij prawym przyciskiem myszy i wybierz Usuń." #. MqVdD #: 05210500.xhp @@ -28625,7 +28625,7 @@ "hd_id71592866308524\n" "help.text" msgid "Add/Import" -msgstr "" +msgstr "Dodaj/Importuj" #. pkzgJ #: 05210500.xhp @@ -28634,7 +28634,7 @@ "par_id3148473\n" "help.text" msgid "Locate the image that you want to import, and then click Open. The image is added to the end of the list of available images." -msgstr "" +msgstr "Zlokalizuj obraz, który chcesz zaimportować, a następnie kliknij Otwórz. Obraz jest dodawany na końcu listy dostępnych obrazów." #. FXqsL #: 05210500.xhp @@ -28643,7 +28643,7 @@ "par_id301592866270627\n" "help.text" msgid "Imported images are saved in your user profile and can be used in other documents." -msgstr "" +msgstr "Zaimportowane obrazy są zapisywane w profilu użytkownika i mogą być używane w innych dokumentach." #. pC4QD #: 05210500.xhp @@ -28652,7 +28652,7 @@ "hd_id3145669\n" "help.text" msgid "Options" -msgstr "" +msgstr "Opcje" #. smwef #: 05210500.xhp @@ -28661,7 +28661,7 @@ "hd_id251592868388253\n" "help.text" msgid "Style" -msgstr "" +msgstr "Styl" #. PgyUs #: 05210500.xhp @@ -28670,7 +28670,7 @@ "par_id241592868416096\n" "help.text" msgid "Tiled: Fill the area with the image as tiles." -msgstr "" +msgstr "Kafelkowy: wypełnij obszar obrazem jako kafelkami." #. gCgdA #: 05210500.xhp @@ -28679,7 +28679,7 @@ "par_id161592868421600\n" "help.text" msgid "Stretched: Stretch the image to fit the object area." -msgstr "" +msgstr "Rozciągnięty: rozciągnij obraz, aby dopasować go do obszaru obiektu." #. MRcQq #: 05210500.xhp @@ -28688,7 +28688,7 @@ "par_id651592868426975\n" "help.text" msgid "Custom position/size: Set a custom size and position of the image in the object area." -msgstr "" +msgstr "Niestandardowa pozycja/rozmiar: ustaw niestandardowy rozmiar i położenie obrazu w obszarze obiektów." #. sAiUV #: 05210500.xhp @@ -28706,7 +28706,7 @@ "par_id321592869205683\n" "help.text" msgid "Size of the tiles and the custom size." -msgstr "" +msgstr "Rozmiar kafelków i niestandardowy rozmiar." #. rTjAd #: 05210500.xhp @@ -28715,7 +28715,7 @@ "par_id951592869294738\n" "help.text" msgid "Width: Set the width of the tile or custom size." -msgstr "" +msgstr "Szerokość: ustaw szerokość kafelka lub rozmiar niestandardowy." #. RQFrq #: 05210500.xhp @@ -28724,7 +28724,7 @@ "par_id171592869301228\n" "help.text" msgid "Height: Set the height of the tile or custom size." -msgstr "" +msgstr "Wysokość: ustaw wysokość kafelka lub rozmiar niestandardowy." #. twwdD #: 05210500.xhp @@ -28733,7 +28733,7 @@ "par_id351592869651411\n" "help.text" msgid "Scale: Mark to turn the height and width settings relative to original size." -msgstr "" +msgstr "Skala: zaznacz, aby zmienić ustawienia wysokości i szerokości względem rozmiaru oryginału." #. QEYV9 #: 05210500.xhp @@ -28742,7 +28742,7 @@ "hd_id201592869695805\n" "help.text" msgid "Position" -msgstr "" +msgstr "Pozycja" #. BnQeq #: 05210500.xhp @@ -28751,7 +28751,7 @@ "par_id321592869780471\n" "help.text" msgid "Select the anchoring position of the image inside the object area." -msgstr "" +msgstr "Wybierz pozycję zakotwiczenia obrazu wewnątrz obszaru obiektu." #. WKmCj #: 05210500.xhp @@ -28760,7 +28760,7 @@ "hd_id791592870139336\n" "help.text" msgid "Tiling Position" -msgstr "" +msgstr "Pozycja kafelkowania" #. MC32h #: 05210500.xhp @@ -28769,7 +28769,7 @@ "par_id811592870169715\n" "help.text" msgid "X-Offset: Set the horizontal image offset value with respect to the anchoring position." -msgstr "" +msgstr "Przesunięcie X: ustaw wartość przesunięcia obrazu w poziomie względem pozycji zakotwiczenia." #. MM4XP #: 05210500.xhp @@ -28778,7 +28778,7 @@ "par_id41592870267463\n" "help.text" msgid "Y-Offset: Set the vertical image offset value with respect to the anchoring position." -msgstr "" +msgstr "Przesunięcie Y: ustaw wartość przesunięcia obrazu w pionie względem pozycji zakotwiczenia." #. FeN7H #: 05210500.xhp @@ -28787,7 +28787,7 @@ "hd_id631592870132856\n" "help.text" msgid "Tiling Offset" -msgstr "" +msgstr "Przesunięcie kafelkowania" #. ogBQB #: 05210500.xhp @@ -28796,7 +28796,7 @@ "par_id111592870375812\n" "help.text" msgid "Select the tiles offset in rows or columns. Use the spin button to specify the offset value." -msgstr "" +msgstr "Wybierz przesunięcie płytek w wierszach lub kolumnach. Użyj przycisku pokrętła, aby określić wartość przesunięcia." #. wAHtP #: 05210600.xhp @@ -28832,7 +28832,7 @@ "par_id3155069\n" "help.text" msgid "Add a shadow to the selected drawing object, and define the properties of the shadow." -msgstr "" +msgstr "Dodaj cień do zaznaczonego obiektu rysunkowego i zdefiniuj właściwości cienia." #. QeBmE #: 05210600.xhp @@ -28868,7 +28868,7 @@ "par_id3154749\n" "help.text" msgid "Adds a shadow to the selected drawing object." -msgstr "" +msgstr "Dodaje cień do zaznaczonego obiektu rysunkowego." #. A8T2E #: 05210600.xhp @@ -28886,7 +28886,7 @@ "par_id3146138\n" "help.text" msgid "Click where you want to cast the shadow." -msgstr "" +msgstr "Kliknij miejsce, w którym chcesz rzucić cień." #. bazWf #: 05210600.xhp @@ -28904,7 +28904,7 @@ "par_id3146847\n" "help.text" msgid "Enter the distance that you want the shadow to be offset from the selected object." -msgstr "" +msgstr "Wprowadź odległość, o jaką cień ma być odsunięty od zaznaczonego obiektu." #. fc4EB #: 05210600.xhp @@ -28922,7 +28922,7 @@ "par_id3155829\n" "help.text" msgid "Select a color for the shadow." -msgstr "" +msgstr "Wybierz kolor cienia." #. 7aXiH #: 05210600.xhp @@ -28940,7 +28940,7 @@ "par_id3148642\n" "help.text" msgid "Enter a percentage from 0% (opaque) to 100% (transparent) to specify the transparency of the shadow." -msgstr "" +msgstr "Wprowadź wartość procentową od 0% (nieprzezroczyste) do 100% (przezroczyste), aby określić przezroczystość cienia." #. rVyiG #: 05210600.xhp @@ -28967,7 +28967,7 @@ "par_id3145068\n" "help.text" msgid "Icon Add Shadow" -msgstr "" +msgstr "Ikona dodawania cienia" #. 6XJUi #: 05210600.xhp @@ -29255,7 +29255,7 @@ "tit\n" "help.text" msgid "Pattern" -msgstr "" +msgstr "Deseń" #. 5FVqC #: 05210800.xhp @@ -29264,7 +29264,7 @@ "bm_id431592861834899\n" "help.text" msgid "pattern;areapattern;backgroundbackground;patternbackground;area" -msgstr "" +msgstr "wzór;obszarwzór;tłotło;wzórtło;obszar" #. S8BBE #: 05210800.xhp @@ -29282,7 +29282,7 @@ "par_id3153626\n" "help.text" msgid "Fills the object with a simple two color pattern selected on this page." -msgstr "" +msgstr "Wypełnia obiekt prostym dwukolorowym deseniem wybranym na tej stronie." #. p5uGC #: 05210800.xhp @@ -29291,7 +29291,7 @@ "hd_id3159147\n" "help.text" msgid "Pattern" -msgstr "" +msgstr "Deseń" #. KW3Ah #: 05210800.xhp @@ -29300,7 +29300,7 @@ "par_id3149955\n" "help.text" msgid "Lists the available patterns. You can also modify or create your own pattern." -msgstr "" +msgstr "Wyświetla listę dostępnych deseni. Możesz także zmodyfikować lub stworzyć własny deseń." #. rpQaV #: 05210800.xhp @@ -29309,7 +29309,7 @@ "par_id161584528499683\n" "help.text" msgid "To rename a pattern, select the pattern, right-click and choose Rename. To delete a pattern, select the pattern, right-click and choose Delete." -msgstr "" +msgstr "Aby zmienić nazwę desenia, zaznacz go, kliknij prawym przyciskiem myszy i wybierz Zmień nazwę. Aby usunąć deseń, zaznacz go, kliknij prawym przyciskiem myszy i wybierz Usuń." #. VrE5t #: 05210800.xhp @@ -29318,7 +29318,7 @@ "hd_id3153823\n" "help.text" msgid "Add" -msgstr "" +msgstr "Dodaj" #. 8fyh4 #: 05210800.xhp @@ -29327,7 +29327,7 @@ "par_id3148924\n" "help.text" msgid "Adds a custom pattern to the current list. Specify the properties of your pattern, and then click this button." -msgstr "" +msgstr "Dodaje niestandardowy deseń do bieżącej listy. Określ właściwości desenia, a następnie kliknij ten przycisk." #. 5waZ4 #: 05210800.xhp @@ -29336,7 +29336,7 @@ "hd_id3147620\n" "help.text" msgid "Modify" -msgstr "" +msgstr "Modyfikuj" #. BSeBy #: 05210800.xhp @@ -29345,7 +29345,7 @@ "par_id3156023\n" "help.text" msgid "Applies the current pattern properties to the selected pattern. If you want, you can save the pattern under a different name." -msgstr "" +msgstr "Stosuje bieżące właściwości desenia do wybranego desenia. Jeśli chcesz, możesz zapisać deseń pod inną nazwą." #. WCFwi #: 05210800.xhp @@ -29354,7 +29354,7 @@ "hd_id3156042\n" "help.text" msgid "Options" -msgstr "" +msgstr "Opcje" #. CVD9L #: 05210800.xhp @@ -29363,7 +29363,7 @@ "par_id3147291\n" "help.text" msgid "Draw or modify a pattern." -msgstr "" +msgstr "Narysuj lub zmodyfikuj deseń." #. ruCpD #: 05210800.xhp @@ -29372,7 +29372,7 @@ "hd_id3147834\n" "help.text" msgid "Pattern Editor" -msgstr "" +msgstr "Edytor deseni" #. rFfJm #: 05210800.xhp @@ -29381,7 +29381,7 @@ "par_id3147010\n" "help.text" msgid "Draw the pattern in the 8 x 8 pixel board. Click on a pattern pixel to activate it, click again to deactivate it." -msgstr "" +msgstr "Narysuj deseń na planszy 8 x 8 pikseli. Kliknij piksel desenia, aby go aktywować, kliknij ponownie, aby go dezaktywować." #. hNAPN #: 05210800.xhp @@ -29390,7 +29390,7 @@ "hd_id3155355\n" "help.text" msgid "Foreground Color" -msgstr "" +msgstr "Kolor pierwszoplanowy" #. sHjjw #: 05210800.xhp @@ -29399,7 +29399,7 @@ "par_id3156410\n" "help.text" msgid "Set the color of the activated pattern pixels." -msgstr "" +msgstr "Ustaw kolor aktywnych pikseli desenia." #. nh8wk #: 05210800.xhp @@ -29408,7 +29408,7 @@ "hd_id3155449\n" "help.text" msgid "Background Color" -msgstr "" +msgstr "Kolor tła" #. JqSDi #: 05210800.xhp @@ -29417,7 +29417,7 @@ "par_id3152909\n" "help.text" msgid "Set the color of the deactivated pattern pixels." -msgstr "" +msgstr "Ustaw kolor dezaktywowanych pikseli desenia." #. fZrDg #: 05220000.xhp @@ -29426,7 +29426,7 @@ "tit\n" "help.text" msgid "Text (Formatting)" -msgstr "" +msgstr "Tekst (formatowanie)" #. rCSp7 #: 05220000.xhp @@ -29471,7 +29471,7 @@ "hd_id3149031\n" "help.text" msgid "Drawing Object Text" -msgstr "" +msgstr "Tekst w obiekcie rysunkowym" #. ep3BQ #: 05220000.xhp @@ -29525,7 +29525,7 @@ "par_id3147834\n" "help.text" msgid "Resizes the text to fit the entire area of the drawing or text object. This control is available only when the other \"fit\" controls are not selected." -msgstr "" +msgstr "Zmienia tekst, aby pasował do całego obszaru obiektu rysunku lub tekstu. Ten formant jest dostępny tylko wtedy, gdy inne formanty „dopasowania” nie są wybrane." #. ZCxA3 #: 05220000.xhp @@ -29552,7 +29552,7 @@ "hd_id3149376\n" "help.text" msgid "Custom Shape Text" -msgstr "" +msgstr "Dostosuj kształt tekstu" #. BfUAu #: 05220000.xhp @@ -29768,7 +29768,7 @@ "tit\n" "help.text" msgid "Position and Size (Text Box and Shape)" -msgstr "" +msgstr "Pozycja i rozmiar (pole tekstowe i kształt)" #. tnQ2D #: 05230100.xhp @@ -29777,7 +29777,7 @@ "bm_id3154350\n" "help.text" msgid "positioning;draw objects and controls draw objects;positioning and resizing controls; positions and sizes sizes;draw objects anchors;types/positions for draw objects draw objects; anchoring" -msgstr "" +msgstr "pozycjonowanie; obiekty i formanty rysowaniaobiekty rysowania; pozycjonowanie i zmiana rozmiaruformanty; pozycje i rozmiaryrozmiary; obiekty rysowaniazakotwiczenia; typy/pozycje dla obiektów rysowaniaobiekty rysowania; zakotwiczenie" #. p36co #: 05230100.xhp @@ -29822,7 +29822,7 @@ "par_id891602774200160\n" "help.text" msgid "Coordinate axes start at column A - row 1." -msgstr "" +msgstr "Osie współrzędne zaczynają się od kolumny A – wiersz 1." #. TZgsN #: 05230100.xhp @@ -29831,7 +29831,7 @@ "par_id711602774229336\n" "help.text" msgid "X-coordinates are negative in a \"right-to-left\" table." -msgstr "" +msgstr "Współrzędne X są ujemne w tabeli „od prawej do lewej”." #. FkhZd #: 05230100.xhp @@ -29840,7 +29840,7 @@ "par_id491602774311111\n" "help.text" msgid "Coordinates are relative to the origin. Left/top corner of the page content area is the initial default." -msgstr "" +msgstr "Współrzędne są względne do pochodzenia. Lewy/górny róg obszaru zawartości strony jest początkowym domyślnym." #. Snfmr #: 05230100.xhp @@ -29858,7 +29858,7 @@ "par_id3155616\n" "help.text" msgid "Enter the horizontal coordinate where the selected base point should be placed." -msgstr "" +msgstr "Wprowadź poziomą współrzędną, w której należy umieścić wybrany punkt podstawy." #. qHcAA #: 05230100.xhp @@ -29876,7 +29876,7 @@ "par_id3147373\n" "help.text" msgid "Enter the vertical coordinate where the selected base point should be placed." -msgstr "" +msgstr "Wprowadź pionową współrzędną, w której należy umieścić wybrany punkt podstawy." #. AWT9v #: 05230100.xhp @@ -29894,7 +29894,7 @@ "par_id3147008\n" "help.text" msgid "The selected base point will be moved to the specified Position Y and Position X." -msgstr "" +msgstr "Wybrany punkt podstawy zostanie przeniesiony do określonej Pozycji Y i Pozycji X. " #. cE49F #: 05230100.xhp @@ -29903,7 +29903,7 @@ "par_id61602773901231\n" "help.text" msgid "The base point always returns to the left/top corner on reopening the dialog." -msgstr "" +msgstr "Punkt podstawy zawsze powraca do lewego/górnego rogu po ponownym otwarciu okna dialogowego." #. 2qMEV #: 05230100.xhp @@ -29921,7 +29921,7 @@ "par_id31507749753\n" "help.text" msgid "Specify the size of the selected object." -msgstr "" +msgstr "Określ rozmiar zaznaczonego obiektu." #. oaVxX #: 05230100.xhp @@ -29930,7 +29930,7 @@ "par_id3150774\n" "help.text" msgid "Resize the selected object to the chosen width and height relative to the selected base point." -msgstr "" +msgstr "Zmień rozmiar zaznaczonego obiektu na wybraną szerokość i wysokość w stosunku do wybranego punktu podstawy." #. gfmHb #: 05230100.xhp @@ -29984,7 +29984,7 @@ "par_id3155341\n" "help.text" msgid "Maintains the width and height ratio when changing the width or height setting in the dialog box." -msgstr "" +msgstr "Utrzymuje stosunek szerokości i wysokości podczas zmiany ustawienia szerokości lub wysokości w oknie dialogowym." #. RS3Rj #: 05230100.xhp @@ -29993,7 +29993,7 @@ "par_id501602631263504\n" "help.text" msgid "Only for shapes." -msgstr "" +msgstr "Tylko dla kształtów." #. D3kAe #: 05230100.xhp @@ -30002,7 +30002,7 @@ "hd_id731601417097805\n" "help.text" msgid "To frame" -msgstr "" +msgstr "Do ramki" #. WRzKk #: 05230100.xhp @@ -30011,7 +30011,7 @@ "par_id181601417265098\n" "help.text" msgid "Anchors the selection to the surrounding frame." -msgstr "" +msgstr "Zakotwicza zaznaczenie otaczającej ramki." #. uREAs #: 05230100.xhp @@ -30038,7 +30038,7 @@ "par_id501602631133297\n" "help.text" msgid "The selected base point remains fixed in the grid. The object is resized relative to that point." -msgstr "" +msgstr "Wybrany punkt podstawy pozostaje ustalony w siatce. Obiekt jest zmieniony w stosunku do tego punktu." #. J2shX #: 05230100.xhp @@ -30065,7 +30065,7 @@ "par_id3149784\n" "help.text" msgid "Prevents changes to the position and size of the selected object." -msgstr "" +msgstr "Zapobiega zmianom pozycji i wielkości zaznaczonego obiektu." #. jqJ6D #: 05230100.xhp @@ -30092,7 +30092,7 @@ "par_id956728219000973\n" "help.text" msgid "Below page text area: the bottom edge of the page text area to the bottom edge of the page." -msgstr "" +msgstr "Pod obszarem tekstu na stronie: dolna krawędź obszaru tekstu na dolnej krawędzi strony." #. wrDZM #: 05230100.xhp @@ -30101,7 +30101,7 @@ "par_id69163053457957\n" "help.text" msgid "Above page text area: the top edge of the page to the top of the page text area." -msgstr "" +msgstr "Nad obszarem tekstu na stronie: górna krawędź strony do górnej części obszaru tekstu." #. H6Z3y #: 05230100.xhp @@ -30164,7 +30164,7 @@ "par_id841603276770477\n" "help.text" msgid "Adapt is only available for Text Boxes. To adapt Shapes to text, use Format - Object - Text." -msgstr "" +msgstr "Dostosowanie jest dostępne tylko dla pól tekstowych. Aby dostosować kształty do tekstu, użyj Format - Obiekt - Tekst." #. EARC7 #: 05230100.xhp @@ -30173,7 +30173,7 @@ "par_id591602522244128\n" "help.text" msgid "Adapt is only available for Text Boxes. To adapt Shapes to text, use Format - Text." -msgstr "" +msgstr "Dostosowanie jest dostępne tylko dla pól tekstowych. Aby dostosować kształty do tekstu, użyj Format - Tekst." #. F5Va7 #: 05230100.xhp @@ -30236,7 +30236,7 @@ "hd_id3148983\n" "help.text" msgid "Pivot Point" -msgstr "" +msgstr "Punkt obrotu" #. Zzs3U #: 05230300.xhp @@ -37643,7 +37643,7 @@ "par_id3154173\n" "help.text" msgid "Lists the available replacement colors. To modify the current list of colors, deselect the image, choose Format - Area, and then click the Colors tab." -msgstr "" +msgstr "Wyświetla listę dostępnych kolorów zastępczych. Aby zmodyfikować aktualną listę kolorów, odznacz obraz, wybierz Format - Obszar, a następnie kliknij kartę Kolory.." #. 3nnTT #: 06030000.xhp @@ -47129,7 +47129,7 @@ "hd_id3153089\n" "help.text" msgid "File Type" -msgstr "Format pliku" +msgstr "Typ pliku" #. qCFFY #: gallery_files.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared/02.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared/02.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-15 15:33+0000\n" +"PO-Revision-Date: 2023-04-10 13:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -10643,7 +10643,7 @@ "par_id3155536\n" "help.text" msgid "Navigator On/Off" -msgstr "Włącz/wyłącz nawigatora" +msgstr "Włącz/wyłącz Nawigator" #. GBVDK #: 01230000.xhp @@ -15620,7 +15620,7 @@ "hd_id3150774\n" "help.text" msgid "Order" -msgstr "Porządek" +msgstr "Kolejność" #. CSsoL #: 12100100.xhp @@ -15629,7 +15629,7 @@ "par_id3149177\n" "help.text" msgid "Specifies the sort order (either ascending or descending)." -msgstr "Określa porządek sortowania (rosnący lub malejący)." +msgstr "Określa kolejność sortowania (rosnąco lub malejąco)." #. AjAyh #: 12100100.xhp @@ -19589,7 +19589,7 @@ "par_idN10591\n" "help.text" msgid "Fontwork Gallery" -msgstr "Fontwork - Galeria" +msgstr "Fontwork – Galeria" #. BoT5R #: fontwork.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared/06.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared/06.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared/06.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared/06.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-04-20 06:54+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1535980802.000000\n" #. EUcrc @@ -131,7 +131,7 @@ "par_id431564385734366\n" "help.text" msgid "Options Accessibility Dialog Image" -msgstr "Obraz okna dialogowego opcji ułatwienia dostępu" +msgstr "Obraz okna dialogowego opcji dostępności" #. XPDyx #: optionen_screenshots.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared/guide.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared/guide.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-03-01 23:55+0000\n" +"PO-Revision-Date: 2023-04-23 20:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -158,7 +158,7 @@ "tit\n" "help.text" msgid "Accessibility in %PRODUCTNAME" -msgstr "Ułatwienia dostępu w %PRODUCTNAME" +msgstr "Dostępność w %PRODUCTNAME" #. qyD8H #: accessibility.xhp @@ -167,7 +167,7 @@ "bm_id3150502\n" "help.text" msgid "accessibility; %PRODUCTNAME features" -msgstr "ułatwienia dostępu; funkcje %PRODUCTNAME" +msgstr "dostępność; funkcje %PRODUCTNAME" #. FinNu #: accessibility.xhp @@ -185,7 +185,7 @@ "par_id3154894\n" "help.text" msgid "The following accessibility features are part of %PRODUCTNAME:" -msgstr "W pakiecie %PRODUCTNAME dostępne są następujące ułatwienia dostępu:" +msgstr "Następujące funkcje dostępności są częścią %PRODUCTNAME:" #. meQqy #: accessibility.xhp @@ -239,7 +239,7 @@ "par_id3152349\n" "help.text" msgid "Please note that accessibility support relies on Java technology for communications with assistive technology tools. This means that the first program startup may take a few seconds longer, because the Java runtime environment has to be started as well." -msgstr "Obsługa ułatwień dostępu jest oparta na technologii Java firmy , za pośrednictwem której realizowana jest komunikacja z narzędziami ułatwień dostępu. Oznacza to, że pierwsze uruchamianie programu może trwać dłużej, ponieważ jednocześnie musi zostać załadowane środowisko uruchomieniowe języka Java." +msgstr "Należy pamiętać, że obsługa ułatwień dostępu opiera się na technologii Java do komunikacji z narzędziami technologii asystujących. Oznacza to, że pierwsze uruchomienie programu może potrwać kilka sekund dłużej, ponieważ należy również uruchomić środowisko wykonawcze Java." #. yZ56f #: accessibility.xhp @@ -545,7 +545,7 @@ "tit\n" "help.text" msgid "Assistive Tools in $[officename]" -msgstr "Narzędzia ułatwień dostępu w pakiecie $[officename]" +msgstr "Narzędzia asystujące w pakiecie $[officename]" #. vxKJG #: assistive.xhp @@ -554,7 +554,7 @@ "bm_id3147399\n" "help.text" msgid "accessibility; $[officename] assistive technologyassistive technology in $[officename]screen readersscreen magnifiersmagnifiers" -msgstr "ułatwienia dostępu; technologie ułatwień dostępu w pakiecie $[officename]technologie ułatwień dostępu w pakiecie $[officename]funkcje odczytywania zawartości ekranulupy ekranowelupy" +msgstr "dostępność; technologie asystujące w pakiecie $[officename]technologie asystujące w pakiecie $[officename]funkcje odczytywania zawartości ekranulupy ekranowelupy" #. kUCoE #: assistive.xhp @@ -572,7 +572,7 @@ "par_id3143267\n" "help.text" msgid "$[officename] supports some assistive technology tools like screen magnification software, screen readers, and on-screen keyboards." -msgstr "$[officename] wspiera kilka narzędzi technologii ułatwień dostępu, takich jak oprogramowanie powiększające ekran, czytające zawartość ekranu i klawiatury ekranowe." +msgstr "$[officename] wspiera kilka narzędzi technologii asystujących, takich jak oprogramowanie powiększające ekran, czytające zawartość ekranu i klawiatury ekranowe." #. vXVSF #: assistive.xhp @@ -671,7 +671,7 @@ "bm_id821562797360035\n" "help.text" msgid "spreadsheet; auto-redact presentations; auto-redact text documents; auto-redact contents automatic redaction" -msgstr "" +msgstr "arkusz kalkulacyjny; autoredagowanie prezentacje; automatyczne redagowanie dokumenty tekstowe; automatyczne redagowanie treści automatyczna redakcja" #. ycDxe #: auto_redact.xhp @@ -707,7 +707,7 @@ "par_id961562795750725\n" "help.text" msgid "Choose Tools - Auto-Redact" -msgstr "" +msgstr "Wybierz Narzędzia - Redaguj automatycznie" #. XFRFz #: auto_redact.xhp @@ -752,7 +752,7 @@ "par_id101626028852152\n" "help.text" msgid "The Add Target dialog appears, to let you define a Name for the new target, as well as to choose its Type and Content. There are three types of targets to choose from in the Type dropdown list:" -msgstr "" +msgstr "Pojawi się okno dialogowe Dodaj cel, w którym możesz zdefiniować Nazwę nowego celu, a także wybrać jego Typ i Zawartość. Istnieją trzy rodzaje celów do wyboru z listy rozwijanej Typ:" #. 5AKPv #: auto_redact.xhp @@ -761,7 +761,7 @@ "par_id241626028988544\n" "help.text" msgid "Text: Automatic Redaction will look for all occurrences of the specified text and mark them for redaction." -msgstr "" +msgstr "Tekst: automatyczne redagowanie wyszuka wszystkie wystąpienia określonego tekstu i oznaczy je do redagowania." #. iCDRP #: auto_redact.xhp @@ -770,7 +770,7 @@ "par_id31626028992866\n" "help.text" msgid "Regular expression: Define a regular expression to use to search the document. All matches will be marked for redaction." -msgstr "" +msgstr "Wyrażenie regularne: zdefiniuj wyrażenie regularne, którego użyjesz do przeszukiwania dokumentu. Wszystkie dopasowania zostaną oznaczone do redagowania." #. puprE #: auto_redact.xhp @@ -779,7 +779,7 @@ "par_id391626028994653\n" "help.text" msgid "Predefined: Choose predefined regular expressions to automatically redact contents, such as credit card numbers, email addresses and so on." -msgstr "" +msgstr "Wstępnie zdefiniowany: wybierz wstępnie zdefiniowane wyrażenia regularne, aby automatycznie redagować treści, takie jak numery kart kredytowych, adresy e-mail itd." #. bMHnY #: auto_redact.xhp @@ -788,7 +788,7 @@ "par_id181626029575406\n" "help.text" msgid "Add all targets that you want to apply to your document and click OK. This opens the document as a drawing in %PRODUCTNAME Draw with all targets automatically redacted with the Rectangle Redaction tool." -msgstr "" +msgstr "Dodaj wszystkie cele, które chcesz zastosować do swojego dokumentu, i kliknij OK. Spowoduje to otwarcie dokumentu jako rysunku w programie %PRODUCTNAME Draw ze wszystkimi celami automatycznie zredagowanymi za pomocą narzędzia Redagowanie prostokątem." #. kiFS3 #: auto_redact.xhp @@ -824,7 +824,7 @@ "par_id701626030005749\n" "help.text" msgid "Click the Save Targets button to save all defined targets in the document as a JSON (JavaScript Object Notation) file." -msgstr "" +msgstr "Kliknij przycisk Zapisz cele, aby zapisać wszystkie zdefiniowane cele w dokumencie jako plik JSON (JavaScript Object Notation)." #. M2XoB #: auto_redact.xhp @@ -833,7 +833,7 @@ "par_id971626030103135\n" "help.text" msgid "Click the Load Targets button to import and apply the targets defined in a JSON file to another %PRODUCTNAME document." -msgstr "" +msgstr "Kliknij przycisk Załaduj cele, aby zaimportować i zastosować cele zdefiniowane w pliku JSON do innego dokumentu %PRODUCTNAME." #. 2haDR #: auto_redact.xhp @@ -842,7 +842,7 @@ "par_id311626030327293\n" "help.text" msgid "The document automatic redaction targets are saved alongside the document. Hence, they are available in the document after you save and close it." -msgstr "" +msgstr "Cele automatycznego redagowania dokumentu są zapisywane wraz z dokumentem. Dzięki temu są one dostępne w dokumencie po jego zapisaniu i zamknięciu." #. K7YtD #: autocorr_url.xhp @@ -887,7 +887,7 @@ "par_id501605796731176\n" "help.text" msgid "The following texts are changed to hyperlinks:" -msgstr "" +msgstr "Następujące teksty zostają zamienione na hiperłącza:" #. JEKMV #: autocorr_url.xhp @@ -896,7 +896,7 @@ "par_id151606170788960\n" "help.text" msgid "Text" -msgstr "" +msgstr "Tekst" #. 4GrpF #: autocorr_url.xhp @@ -905,7 +905,7 @@ "par_id131606170828813\n" "help.text" msgid "Autocorrected hyperlink" -msgstr "" +msgstr "Autokorekta hiperłącza" #. FLUHT #: autocorr_url.xhp @@ -914,7 +914,7 @@ "par_id21605798391315\n" "help.text" msgid "Email addresses" -msgstr "" +msgstr "Adresy e-mail" #. b8hkH #: autocorr_url.xhp @@ -923,7 +923,7 @@ "par_id381605798546491\n" "help.text" msgid "Web addresses" -msgstr "" +msgstr "Adresy internetowe" #. npDDR #: autocorr_url.xhp @@ -932,7 +932,7 @@ "par_id551605798623251\n" "help.text" msgid "File addresses" -msgstr "" +msgstr "Adresy plików" #. efTZG #: autocorr_url.xhp @@ -941,7 +941,7 @@ "par_id781605797492605\n" "help.text" msgid "where x is one or more characters." -msgstr "" +msgstr "gdzie x to jeden lub więcej znaków." #. 6vSTS #: autocorr_url.xhp @@ -1112,7 +1112,7 @@ "par_id3150275\n" "help.text" msgid "Double-click inside a vacant area of the window while holding down the CommandCtrl key. In the Styles window, double-click a gray part of the window next to the icons while holding down the CommandCtrl key. Alternatively, press CommandCtrl+Shift+F10." -msgstr "" +msgstr "Kliknij dwukrotnie w wolnym obszarze okna, przytrzymując jednocześnie klawisz CommandCtrl. W oknie Style kliknij dwukrotnie szarą część okna obok ikon, przytrzymując CommandCtrl. Ewentualnie naciśnij CommandCtrl+Shift+F10." #. q8oSA #: autohide.xhp @@ -1193,7 +1193,7 @@ "par_id3149581\n" "help.text" msgid "On the Area tab page, select a background color or a background graphic." -msgstr "" +msgstr "Na karcie Obszar wybierz kolor tła lub grafikę tła." #. WCBmU #: background.xhp @@ -1310,7 +1310,7 @@ "par_id3153665\n" "help.text" msgid "Select the distance between the border lines and the paragraph contents in the Padding area. You can only change distances to edges that have a border line defined." -msgstr "" +msgstr "Wybierz odległość między liniami krawędzi a treścią akapitu w obszarze Wypełnianie. Odległości można zmieniać tylko do krawędzi, które mają zdefiniowaną linię krawędzi." #. TZ87m #: border_paragraph.xhp @@ -1373,7 +1373,7 @@ "par_id3150793\n" "help.text" msgid "Select the distance between the border lines and the paragraph contents in the Padding area. You can only change distances to edges that have a border line defined." -msgstr "" +msgstr "Wybierz odległość między liniami krawędzi a treścią akapitu w obszarze Wypełnianie. Odległości można zmieniać tylko do krawędzi, które mają zdefiniowaną linię krawędzi." #. AvfPu #: border_paragraph.xhp @@ -1580,7 +1580,7 @@ "par_idN106E0\n" "help.text" msgid "To insert a line break in a spreadsheet cell, press the CommandCtrl+Enter keys." -msgstr "" +msgstr "Aby wstawić podział wiersza w komórce arkusza kalkulacyjnego, naciśnij klawisze CommandCtrl+Enter ." #. y6vE4 #: breaking_lines.xhp @@ -1598,7 +1598,7 @@ "par_id0509200914160968\n" "help.text" msgid "You can search for a newline character in the Find & Replace dialog by searching for \\n as a regular expression. You can use the text function CHAR(10) to insert a newline character into a text formula." -msgstr "" +msgstr "Możesz wyszukać znak nowego wiersza w oknie dialogowym Znajdź i zamień, wyszukując \\n jako wyrażenie regularne. Możesz użyć funkcji tekstowej CHAR(10), aby wstawić znak nowego wiersza do formuły tekstowej." #. BsAfw #: breaking_lines.xhp @@ -1625,7 +1625,7 @@ "par_idN106F1\n" "help.text" msgid "Choose Format - Cells - Alignment." -msgstr "" +msgstr "Wybierz Format - Komórki - Wyrównanie." #. jjEEf #: breaking_lines.xhp @@ -1652,7 +1652,7 @@ "par_idN10707\n" "help.text" msgid "To insert a line break in a text document table cell, press the Enter key." -msgstr "" +msgstr "Aby wstawić podział wiersza w komórce tabeli dokumentu tekstowego, naciśnij klawisz Enter." #. Gm3yj #: breaking_lines.xhp @@ -1877,7 +1877,7 @@ "par_id3156136\n" "help.text" msgid "You can add texture to the bars in a graph or chart (instead of the default colors) via graphics:" -msgstr "" +msgstr "Możesz dodać teksturę do słupków na wykresie (zamiast domyślnych kolorów) za pomocą grafiki:" #. 4UEfD #: chart_barformat.xhp @@ -1922,7 +1922,7 @@ "par_id3146797\n" "help.text" msgid "Click on Image. In the list box select an image as a texture for the currently selected bars. Click OK to accept the setting." -msgstr "" +msgstr "Kliknij Obraz. W polu listy wybierz obraz jako teksturę dla aktualnie wybranych słupków. Kliknij OK, aby zaakceptować ustawienie." #. rgZEg #: chart_insert.xhp @@ -2309,7 +2309,7 @@ "par_id2706991\n" "help.text" msgid "If no title text exists, choose Insert - Titles to enter the text in a dialog." -msgstr "" +msgstr "Jeśli tekst tytułu nie istnieje, wybierz opcję Wstaw - Tytuły, aby wprowadzić tekst w oknie dialogowym." #. A35dx #: chart_title.xhp @@ -2363,7 +2363,7 @@ "tit\n" "help.text" msgid "Document Classification" -msgstr "" +msgstr "Klasyfikacja dokumentu" #. 8o3Ef #: classification.xhp @@ -2381,7 +2381,7 @@ "bm_id030820161847569710\n" "help.text" msgid "classification;BAILS levels classification;BAF category classification;security levels classification;document classification;classification bar document;classification" -msgstr "" +msgstr "klasyfikacja;poziomy BAILS klasyfikacja;kategoria BAF klasyfikacja;poziomy bezpieczeństwa klasyfikacja;dokument klasyfikacja;pasek klasyfikacji dokument;klasyfikacja" #. BcaWE #: classification.xhp @@ -2390,7 +2390,7 @@ "par_id030820161744119967\n" "help.text" msgid "Document classification and security is an important issue for businesses and governments." -msgstr "" +msgstr "Klasyfikacja i bezpieczeństwo dokumentów to ważna kwestia dla firm i rządów." #. AACM4 #: classification.xhp @@ -2399,7 +2399,7 @@ "par_id030820161744113553\n" "help.text" msgid "Information is exchanged between users and organizations that collaborate to pursue a business goal. Where sensitive information is involved, it is assumed that the parties will have agreed what information is sensitive and how such information will be identified and handled. Any recipient of a resource will rely upon the provider of the information to follow the agreed procedures to identify the sensitivity of the information." -msgstr "" +msgstr "Informacje są wymieniane między użytkownikami i organizacjami, które współpracują w celu osiągnięcia celu biznesowego. W przypadku informacji wrażliwych zakłada się, że strony uzgodnią, jakie informacje są wrażliwe oraz w jaki sposób będą identyfikowane i przetwarzane. Każdy odbiorca zasobów będzie polegał na dostawcy informacji, który będzie postępował zgodnie z uzgodnionymi procedurami w celu określenia wrażliwości informacji." #. zceBx #: classification.xhp @@ -2408,7 +2408,7 @@ "par_id030820161744118823\n" "help.text" msgid "%PRODUCTNAME provides standardized means for such sensitivity information to be expressed and may be used between parties if interoperable systems are to be implemented. It provides a set of standard “fields” that can be used to hold sensitivity information. It does not attempt to define what the contents of these “fields” should be. This approach is an improvement upon the only alternative that exists at the moment, which is for the provider to use an arbitrary means to express sensitivity that may not be useful to a recipient." -msgstr "" +msgstr "%PRODUCTNAME zapewnia ustandaryzowane sposoby wyrażania takich wrażliwych informacji i może być używana między stronami, jeśli mają zostać wdrożone systemy interoperacyjne. Zapewnia zestaw standardowych „pól”, które mogą być używane do przechowywania informacji o wrażliwości. Nie próbuje określić, jaka powinna być zawartość tych „pól”. To podejście jest ulepszeniem jedynej dostępnej obecnie alternatywy, która polega na wykorzystaniu przez usługodawcę arbitralnych środków do wyrażenia wrażliwości, które mogą nie być przydatne dla odbiorcy." #. YkACm #: classification.xhp @@ -2417,7 +2417,7 @@ "par_id030820161744121143\n" "help.text" msgid "While this standard has been developed with the intent that it would be applicable in any domain of activity, %PRODUCTNAME retained the aerospace and defense industry nomenclature and categories, where sensitivity marking results from national security, export control and intellectual property policies." -msgstr "" +msgstr "Chociaż ten standard został opracowany z myślą o zastosowaniu w dowolnej dziedzinie działalności, %PRODUCTNAME zachował nomenklaturę i kategorie przemysłu lotniczego i obronnego, w których oznaczenia wrażliwości wynikają z zasad bezpieczeństwa narodowego, kontroli eksportu i własności intelektualnej." #. 5W3De #: classification.xhp @@ -2426,7 +2426,7 @@ "par_id030820161744123676\n" "help.text" msgid "%PRODUCTNAME implemented the open standards produced by TSCP (Transglobal Secure Collaboration Participation, Inc.) independent of a specific vendor. Two of them are interesting:" -msgstr "" +msgstr "%PRODUCTNAME wdrożyła otwarte standardy opracowane przez TSCP (Transglobal Secure Collaboration Participation, Inc.) niezależnie od konkretnego dostawcy. Ciekawe są dwa z nich:" #. ZQs7u #: classification.xhp @@ -2435,7 +2435,7 @@ "par_id030820161744122593\n" "help.text" msgid "Business Authentication Framework (BAF) specifies how to describe the existing policy (which is probably some legal text) in a machine-readable format." -msgstr "" +msgstr "Business Authentication Framework (BAF) określa sposób opisywania istniejącej polityki (która prawdopodobnie jest tekstem prawnym) w formacie do odczytu maszynowego." #. mJEQ9 #: classification.xhp @@ -2444,7 +2444,7 @@ "par_id030820161744126871\n" "help.text" msgid "Business Authorization Identification and Labeling Scheme (BAILS) specifies how to refer to such a BAF policy in a document. The concepts in BAILS are so generic that they can be applied to any format that supports document-level user-defined properties." -msgstr "" +msgstr "Business Authorization Identification and Labeling Scheme (BAILS) określa sposób odwoływania się do takiej polityki BAF w dokumencie. Koncepcje w BAILS są tak ogólne, że można je zastosować do dowolnego formatu obsługującego właściwości zdefiniowane przez użytkownika na poziomie dokumentu." #. R9Yp9 #: classification.xhp @@ -2453,7 +2453,7 @@ "hd_id030820161800093929\n" "help.text" msgid "BAF Categories" -msgstr "" +msgstr "Kategorie BAF" #. NtntD #: classification.xhp @@ -2462,7 +2462,7 @@ "bm_id030820161856432825\n" "help.text" msgid "classification;displayed in user interface classification;headers and footers classification;watermark classification;categories" -msgstr "" +msgstr "klasyfikacja;wyświetlana w interfejsie użytkownika klasyfikacja;główki i stopki klasyfikacja;znak wodny klasyfikacja;kategorie" #. KJALu #: classification.xhp @@ -2471,7 +2471,7 @@ "par_id030820161800092823\n" "help.text" msgid "The default BAF categories for %PRODUCTNAME are listed below." -msgstr "" +msgstr "Domyślne kategorie BAF dla %PRODUCTNAME są wymienione poniżej." #. QrvwJ #: classification.xhp @@ -2480,7 +2480,7 @@ "par_id030820161800098142\n" "help.text" msgid "Only the \"Intellectual Properties\" category will modify the layout of the document with a watermark, fields in the header and footer and an information bar on top of the document area. Each item inserted in the document is controlled by the classification configuration file." -msgstr "" +msgstr "Tylko kategoria „Własności intelektualne” modyfikuje układ dokumentu ze znakiem wodnym, polami w nagłówku i stopce oraz paskiem informacyjnym u góry obszaru dokumentu. Każdy element wstawiony do dokumentu jest kontrolowany przez plik konfiguracyjny klasyfikacji." #. G8zUR #: classification.xhp @@ -2489,7 +2489,7 @@ "par_idN106B0\n" "help.text" msgid "Intellectual Property" -msgstr "" +msgstr "Własność intelektualna" #. GQYP9 #: classification.xhp @@ -2498,7 +2498,7 @@ "par_idN106C0\n" "help.text" msgid "Intellectual property is a generic term for the nature of the contents of the document. Select this category for general purpose document classification." -msgstr "" +msgstr "Prawo własności intelektualnej jest ogólnym pojęciem opisującym naturę treści dokumentu. Wybierz tę kategorię do klasyfikacji dokumentu ogólnego celu." #. Pifje #: classification.xhp @@ -2507,7 +2507,7 @@ "par_idN106CD\n" "help.text" msgid "National Security" -msgstr "" +msgstr "Bezpieczeństwo narodowe" #. S3BvF #: classification.xhp @@ -2516,7 +2516,7 @@ "par_idN106DD\n" "help.text" msgid "Selects the category of this document for the national security policy type. The selected category is saved together with the document as BAILS metadata in the file properties and no modifications is carried in the document layout or the user interface." -msgstr "" +msgstr "Wybiera kategorię dokumentu dla typu polityki bezpieczeństwa narodowego. Wybrana kategoria jest zachowana wspólnie z dokumentem we właściwościach pliku jako metadane standardu BAILS i żadne modyfikacje nie wpływają na układ dokumentu lub na interfejs użytkownika." #. uiSAu #: classification.xhp @@ -2525,7 +2525,7 @@ "par_idN106EA\n" "help.text" msgid "Export Control" -msgstr "" +msgstr "Kontrola eksportu" #. GJP8B #: classification.xhp @@ -2534,7 +2534,7 @@ "par_idN106FA\n" "help.text" msgid "Selects the category of this document for the export control policy type. The selected category is saved together with the document as BAILS metadata in the file properties and no modifications is carried in the document layout or the user interface." -msgstr "" +msgstr "Wybiera kategorię dokumentu dla typu polityki kontroli eksportu. Wybrana kategoria jest zachowana wspólnie z dokumentem we właściwościach pliku jako metadane standardu BAILS i żadne modyfikacje nie wpływają na układ dokumentu lub na interfejs użytkownika." #. 5xyWx #: classification.xhp @@ -2543,7 +2543,7 @@ "par_id030820161800091021\n" "help.text" msgid "Refer to your corporate data security policy and information security officers for support in document classification." -msgstr "" +msgstr "W celu sklasyfikowania dokumentów zapoznaj się z polityką bezpieczeństwa danych obowiązującą w firmie lub skontaktuj się z osobami odpowiedzialnymi za tę kwestię." #. LC8Eh #: classification.xhp @@ -2552,7 +2552,7 @@ "hd_id030820161747122444\n" "help.text" msgid "Default levels of classification" -msgstr "" +msgstr "Domyślne poziomy klasyfikacji" #. EByPW #: classification.xhp @@ -2561,7 +2561,7 @@ "bm_id030820161849574719\n" "help.text" msgid "classification levels;Internal use only classification levels;Confidential classification levels;General Business classification levels;Non-Business" -msgstr "" +msgstr "poziomy klasyfikacji;tylko do użytku wewnętrznego poziomy klasyfikacji;poufny poziomy klasyfikacji;ogólny firmowy poziomy klasyfikacji;nie dotyczy firmy" #. VWzXD #: classification.xhp @@ -2570,7 +2570,7 @@ "par_id030820161747139337\n" "help.text" msgid "%PRODUCTNAME provides default levels of document classification (BAILS) shown below, sorted by increasing level of business sensitivity:" -msgstr "" +msgstr "%PRODUCTNAME dostarcza domyślne poziomy klasyfikacji dokumentu (BAILS). Są one posortowane poziomami z rosnącą wrażliwością danych dla firm:" #. SK6Dg #: classification.xhp @@ -2579,7 +2579,7 @@ "par_id030820161747135421\n" "help.text" msgid "Non-Business: Information in document has no impact in business, if made public." -msgstr "" +msgstr "Nie dotyczy firmy: opublikowanie informacji zawartych w dokumencie nie ma żadnego wpływu na firmę." #. iHBj5 #: classification.xhp @@ -2588,7 +2588,7 @@ "par_id030820161747132341\n" "help.text" msgid "General Business: Minor impact. Information has impact in business, can generate embarrassments, minor damage in brand image, if made public." -msgstr "" +msgstr "Ogólny firmowy: niewielki wpływ. Opublikowanie informacji zawartych w dokumencie może wywołać zakłopotanie lub drobne szkody w wizerunku marki." #. bzmGY #: classification.xhp @@ -2597,7 +2597,7 @@ "par_id030820161747139845\n" "help.text" msgid "Confidential: Modest impact. Information disclosed can damage business brand, can generate negative media coverage and loss of revenue." -msgstr "" +msgstr "Poufny: średni wpływ. Wyjawione informacje mogą zaszkodzić marce firmy, wywołać negatywne relacje w mediach i spowodować utratę przychodów." #. fZxAa #: classification.xhp @@ -2606,7 +2606,7 @@ "par_id030820161747138519\n" "help.text" msgid "Internal use only: Major damage. Negative national media, lawsuits, fines, long term brand damages." -msgstr "" +msgstr "Tylko do użytku wewnętrznego: poważne szkody. Negatywne relacje w ogólnokrajowych mediach, procesy sądowe, grzywny, długotrwałe szkody dla marki firmy." #. RESkc #: classification.xhp @@ -2615,7 +2615,7 @@ "hd_id030820161747134459\n" "help.text" msgid "Customizing classification levels." -msgstr "" +msgstr "Dostosowywanie poziomów klasyfikacji." #. DCBYu #: classification.xhp @@ -2624,7 +2624,7 @@ "bm_id030820161851045883\n" "help.text" msgid "custom;classification levels classification levels;customizing" -msgstr "" +msgstr "niestandardowe;poziomy klasyfikacji poziomy klasyfikacji;dostosowywanie" #. NfubP #: classification.xhp @@ -2633,7 +2633,7 @@ "par_id030820161747133280\n" "help.text" msgid "%PRODUCTNAME allows customization of the levels of classification for your business. To customize the number and the name of the levels, copy the file example.xml located in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths - Classification into a local folder and edit the contents." -msgstr "" +msgstr "%PRODUCTNAME umożliwia dostosowanie poziomów klasyfikacji w firmie. Aby dostosować liczbę i nazwę poziomów, skopiuj plik example.xml, znajdujący się w %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME - Ścieżki - Klasyfikacja, do lokalnego folderu i edytuj zawartość." #. Tcss6 #: classification.xhp @@ -2642,7 +2642,7 @@ "par_id03082016174713477\n" "help.text" msgid "Use the file with your %PRODUCTNAME locale in the name as example." -msgstr "" +msgstr "Użyj pliku z ustawieniami regionalnymi %PRODUCTNAME w nazwie jako przykładu." #. YhBEK #: classification.xhp @@ -2651,7 +2651,7 @@ "par_id030820161747137522\n" "help.text" msgid "Save the file and make the adequate changes to the classification path above to access the file." -msgstr "" +msgstr "Zapisz plik i wprowadź odpowiednie zmiany w powyższej ścieżce klasyfikacji, aby uzyskać dostęp do pliku." #. kzkkC #: classification.xhp @@ -2660,7 +2660,7 @@ "par_id030820161747135133\n" "help.text" msgid "Your system administrator can place the file in a network folder and make all users access the classification settings file." -msgstr "" +msgstr "Plik ustawień klasyfikacji może być dostępny dla wszystkich użytkowników, jeśli tylko administrator systemu umieści go we współdzielonym folderze sieciowym i nada użytkownikom dostęp do niego." #. AnzFS #: classification.xhp @@ -2669,7 +2669,7 @@ "hd_id03082016174713354\n" "help.text" msgid "Pasting contents in documents with different levels of classification." -msgstr "" +msgstr "Wklejanie treści w dokumenty z różnymi poziomami klasyfikacji." #. z5iqF #: classification.xhp @@ -2678,7 +2678,7 @@ "bm_id030820161851512902\n" "help.text" msgid "document classification;pasting contents" -msgstr "" +msgstr "klasyfikacja dokumentów; wklejanie treści" #. KSkfc #: classification.xhp @@ -2687,7 +2687,7 @@ "par_id030820161747134188\n" "help.text" msgid "To prevent a breach in the security policy, contents with high classification level pasted to documents with lower classification level are not allowed. %PRODUCTNAME will display a warning message wherever it detects that the contents of the clipboard have higher security classification than the target document." -msgstr "" +msgstr "Aby nie dopuścić do naruszenia polityki bezpieczeństwa, treści o wysokim poziomie klasyfikacji wklejone do dokumentów o niższym poziomie klasyfikacji nie są akceptowane. %PRODUCTNAME wyświetli komunikat ostrzegawczy, wszędzie tam, gdzie okaże się, że zawartość schowka ma wyższą klasyfikację bezpieczeństwa od dokumentu docelowego." #. GCqDL #: classification.xhp @@ -2696,7 +2696,7 @@ "par_id030820161818081317\n" "help.text" msgid "TSCP (Transglobal Secure Collaboration Participation, Inc.) website." -msgstr "" +msgstr "Witryna TSCP (Transglobal Secure Collaboration Participation, Inc.)." #. gpp8Q #: classification.xhp @@ -2705,7 +2705,7 @@ "par_id030820161818082152\n" "help.text" msgid "Business Authentication Framework (BAF) document (PDF)" -msgstr "" +msgstr "Dokument (PDF) Business Authentication Framework (BAF)" #. svkxK #: classification.xhp @@ -2714,7 +2714,7 @@ "par_id030820161818085901\n" "help.text" msgid "Business Authorization Identification and Labeling Scheme (BAILS) document (PDF)" -msgstr "" +msgstr "Dokument (PDF) Business Authorization Identification and Labeling Scheme (BAILS)" #. TT796 #: cmis-remote-files-setup.xhp @@ -2768,7 +2768,7 @@ "par_id150820161816031470\n" "help.text" msgid "Select File - Open Remote" -msgstr "" +msgstr "Wybierz Plik - Otwórz zdalny" #. DDYD7 #: cmis-remote-files-setup.xhp @@ -2777,7 +2777,7 @@ "par_id150820161816037870\n" "help.text" msgid "Select File - Save Remote" -msgstr "" +msgstr "Wybierz Plik - Zapisz zdalny" #. XjsqJ #: cmis-remote-files-setup.xhp @@ -2948,7 +2948,7 @@ "par_id150820161816047387\n" "help.text" msgid "Remember password: Check to store the password in %PRODUCTNAME’s user profile. The password will be secured by the master password in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Security - Internet passwords." -msgstr "" +msgstr "Zapamiętaj hasło: Zaznacz, aby zapisać hasło w profilu użytkownika %PRODUCTNAME. Hasło będzie zabezpieczone hasłem głównym w %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME - Bezpieczeństwo - Hasła połączeń z siecią Web." #. xGTap #: cmis-remote-files-setup.xhp @@ -3146,7 +3146,7 @@ "par_id150820161816031425\n" "help.text" msgid "%PRODUCTNAME can open and save files stored on remote servers. Keeping files on remote servers allows to work with the documents using different computers. For example, you can work on a document in the office during the day and edit it at home for last-minute changes. Storing files on a remote server also protects them from computer loss or hard disk failure. Some servers are also able to check in and check out files, thus controlling their usage and access." -msgstr "" +msgstr "%PRODUCTNAME może otwierać i zapisywać pliki przechowywane na serwerach zdalnych. Przechowywanie plików na zdalnych serwerach pozwala na pracę z dokumentami na różnych komputerach. Na przykład możesz pracować nad dokumentem w biurze w ciągu dnia i edytować go w domu, aby wprowadzić zmiany w ostatniej chwili. Przechowywanie plików na zdalnym serwerze chroni je również przed utratą komputera lub awarią dysku twardego. Niektóre serwery mogą również sprawdzać i pobierać pliki, kontrolując w ten sposób ich użycie i dostęp." #. guAGA #: cmis-remote-files.xhp @@ -3200,7 +3200,7 @@ "par_id17082016160541995\n" "help.text" msgid "Choose File - Open Remote in any %PRODUCTNAME module" -msgstr "" +msgstr "Wybierz Plik - Otwórz zdalny w dowolnym module %PRODUCTNAME" #. BxeLT #: cmis-remote-files.xhp @@ -3245,7 +3245,7 @@ "bm_id190820161721082861\n" "help.text" msgid "remote file service;file lock remote file service;version control remote file service;working copy remote file service;checkout remote file service;checkin" -msgstr "" +msgstr "obsługa plików zdalnych;blokada plikówobsługa plików zdalnych;kontrola wersjiobsługa plików zdalnych;kopia roboczaobsługa plików zdalnych;wyewidencjonowanieobsługa plików zdalnych;zaewidencjonowanie" #. j47pX #: cmis-remote-files.xhp @@ -3263,7 +3263,7 @@ "par_id170820161605429941\n" "help.text" msgid "The Check Out and Check In actions control updates to the document and prevent unwanted overwrites in a CMIS remote service." -msgstr "" +msgstr "Czynności Wyewidencjonuj i Zaewidencjonuj kontrolują aktualizacje dokumentu i zapobiegają niechcianym nadpisaniom w zdalnej usłudze CMIS." #. DC5JZ #: cmis-remote-files.xhp @@ -3272,7 +3272,7 @@ "par_id17082016160542203\n" "help.text" msgid "Checking out a document locks it, preventing other users from writing changes to it. Only one user can have a particular document checked out (locked) at any time. Checking in a document or canceling the checkout unlocks the document." -msgstr "" +msgstr "Wyewidencjonowanie dokumentu blokuje go, uniemożliwiając innym użytkownikom wprowadzanie w nim zmian. Tylko jeden użytkownik może mieć określony dokument wyewidencjonowany (zablokowany) w dowolnym momencie. Zaewidencjonowanie dokumentu lub anulowanie wyewidencjonowania odblokowuje dokument." #. G7pkL #: cmis-remote-files.xhp @@ -3281,7 +3281,7 @@ "par_id170820161605426690\n" "help.text" msgid "There are no checkin/checkout controls for remote files in Windows Shares, WebDAV, FTP and SSH services." -msgstr "" +msgstr "W usługach udostępniania Windows, WebDAV, FTP i SSH nie ma kontroli zaewidencjonowania/wewidencjonowania plików zdalnych." #. ykFEK #: cmis-remote-files.xhp @@ -3290,7 +3290,7 @@ "par_id170820161605428976\n" "help.text" msgid "When a file is open from a CMIS remote file service, %PRODUCTNAME displays a Check Out button on the top message area. Click the Check Out button to lock the file in the server to prevent edition by another user. Alternatively choose File - Check Out." -msgstr "" +msgstr "Gdy plik jest otwierany ze zdalnej usługi plików CMIS, %PRODUCTNAME wyświetla przycisk Wyewidencjonuj w górnym obszarze komunikatów. Kliknij przycisk Wyewidencjonuj, aby zablokować plik na serwerze, aby uniemożliwić edycję przez innego użytkownika. Alternatywnie wybierz Plik - Wyewidencjonuj." #. 33JmH #: cmis-remote-files.xhp @@ -3299,7 +3299,7 @@ "par_id190820161707153804\n" "help.text" msgid "%PRODUCTNAME creates a working copy of the file in the server (and inserts the string (Working Copy) in the file name) when a file is checked out. Every edition and save operation is done in the working copy. You can save your file as many times you want. When you finished your changes, check in the file." -msgstr "" +msgstr "%PRODUCTNAME tworzy kopię roboczą pliku na serwerze (i wstawia ciąg (Kopia robocza) w nazwie pliku), gdy plik jest wyewidencjonowywany. Każda edycja i operacja zapisu odbywa się w kopii roboczej. Możesz zapisać swój plik tyle razy, ile chcesz. Po zakończeniu zmian zaewidencjonuj plik." #. 27HBp #: cmis-remote-files.xhp @@ -3308,7 +3308,7 @@ "par_id190820161707156843\n" "help.text" msgid "To check in the file, choose File - Check In. A dialog opens to insert comments about the last edition. These comments are recorded in the CMIS server for version control. The working copy replaces the existing file and its version number is updated." -msgstr "" +msgstr "Aby zaewidencjonować plik, wybierz Plik - Zaewidencjonuj. Zostanie otwarte okno dialogowe umożliwiające wstawienie komentarzy dotyczących ostatniego wydania. Te komentarze są zapisywane na serwerze CMIS w celu kontroli wersji. Kopia robocza zastępuje istniejący plik, a jej numer wersji jest aktualizowany." #. umXQV #: cmis-remote-files.xhp @@ -3317,7 +3317,7 @@ "par_id190820161707155303\n" "help.text" msgid "To cancel a checkout, choose File - Cancel Checkout. A warning message will inform that the latest edition will be discarded. If confirmed, no version updates occurs." -msgstr "" +msgstr "Aby anulować wyewidencjonowanie, wybierz Plik - Anulowanie wyewidencjonowania. Komunikat ostrzegawczy poinformuje, że najnowsza edycja zostanie odrzucona. Jeśli zostanie to potwierdzone, nie nastąpią żadne aktualizacje wersji." #. XSAgF #: cmis-remote-files.xhp @@ -3326,7 +3326,7 @@ "par_id19082016170715785\n" "help.text" msgid "Remember to check in the file when finishing using it. Not doing so will lock the file and no other user will be allowed to modify it." -msgstr "" +msgstr "Pamiętaj, aby zaewidencjonować plik po zakończeniu korzystania z niego. Niewykonanie tego spowoduje zablokowanie pliku i żaden inny użytkownik nie będzie mógł go modyfikować." #. Bx5Ma #: cmis-remote-files.xhp @@ -3371,7 +3371,7 @@ "par_id190820161707166344\n" "help.text" msgid "If the file is not stored in a CMIS server, choose File - Save Remote or long-click the Save icon and select Save Remote File." -msgstr "" +msgstr "Jeśli plik nie jest przechowywany na serwerze CMIS, wybierz Plik - Zapisz zdalny lub kliknij i przytrzymaj ikonę Zapisz i wybierz Zapisz plik zdalny." #. DaEPC #: cmis-remote-files.xhp @@ -3380,7 +3380,7 @@ "par_id170820161605428591\n" "help.text" msgid "The Remote files dialog appears. Select the remote file server." -msgstr "" +msgstr "Pojawi się okno dialogowe Pliki zdalne. Wybierz zdalny serwer plików." #. wQjzG #: cmis-remote-files.xhp @@ -3407,7 +3407,7 @@ "par_id190820161707163121\n" "help.text" msgid "When you finish working with the file, check it in. To do so, choose File - Check In." -msgstr "" +msgstr "Po zakończeniu pracy z plikiem zaewidencjonuj go. W tym celu wybierz Plik - Zaewidencjonuj." #. 9coLF #: cmis-remote-files.xhp @@ -4037,7 +4037,7 @@ "tit\n" "help.text" msgid "File Conversion Filters Tables" -msgstr "" +msgstr "Tabele filtrów konwersji plików" #. zKiAm #: convertfilters.xhp @@ -4046,7 +4046,7 @@ "bm_id541554406270299\n" "help.text" msgid "filters;document conversion document conversion;filters convert-to;filters command line document conversion;filters module file filters" -msgstr "" +msgstr "filtry;konwersja dokumentu konwersja dokumentu;filtry konwertuj na;filtry konwersja dokumentu wierszem poleceń;filtry filtry plików modułów" #. R5bPc #: convertfilters.xhp @@ -4073,7 +4073,7 @@ "hd_id531633524464103\n" "help.text" msgid "Usage" -msgstr "" +msgstr "Użycie" #. vcWaC #: convertfilters.xhp @@ -4100,7 +4100,7 @@ "bm_000writer\n" "help.text" msgid "command line document conversion; filters for WRITER" -msgstr "" +msgstr "konwersja dokumentu wierszem poleceń; filtry dla WRITER" #. CCb3G #: convertfilters.xhp @@ -4109,7 +4109,7 @@ "hd_000writer\n" "help.text" msgid "Filters for WRITER" -msgstr "" +msgstr "Filtry dla WRITER" #. cqFhB #: convertfilters.xhp @@ -4118,7 +4118,7 @@ "FilterName_HTML__StarWriter_\n" "help.text" msgid "HTML Document (Writer)" -msgstr "" +msgstr "Dokument HTML (Writer)" #. n9LGr #: convertfilters.xhp @@ -4127,7 +4127,7 @@ "FilterName_MS_WinWord_5\n" "help.text" msgid "Microsoft WinWord 1/2/5" -msgstr "" +msgstr "Microsoft WinWord 1/2/5" #. xD2w9 #: convertfilters.xhp @@ -4136,7 +4136,7 @@ "FilterName_MS_WinWord_6.0\n" "help.text" msgid "Microsoft Word 6.0" -msgstr "" +msgstr "Microsoft Word 6.0" #. SJ7vD #: convertfilters.xhp @@ -4145,7 +4145,7 @@ "FilterName_MS_Word_95\n" "help.text" msgid "Microsoft Word 95" -msgstr "" +msgstr "Microsoft Word 95" #. ZAyCh #: convertfilters.xhp @@ -4154,7 +4154,7 @@ "FilterName_MS_Word_95_Vorlage\n" "help.text" msgid "Microsoft Word 95 Template" -msgstr "" +msgstr "Szablon Microsoft Word 95" #. CDvco #: convertfilters.xhp @@ -4163,7 +4163,7 @@ "FilterName_MS_Word_97\n" "help.text" msgid "Word 97–2003" -msgstr "" +msgstr "Word 97–2003" #. uudBm #: convertfilters.xhp @@ -4172,7 +4172,7 @@ "FilterName_MS_Word_97_Vorlage\n" "help.text" msgid "Word 97–2003 Template" -msgstr "" +msgstr "Szablon Word 97–2003" #. ZCDT8 #: convertfilters.xhp @@ -4181,7 +4181,7 @@ "FilterName_OpenDocument_Text_Flat_XML\n" "help.text" msgid "Flat XML ODF Text Document" -msgstr "" +msgstr "Dokument tekstowy ODF Flat XML" #. eSFGw #: convertfilters.xhp @@ -4190,7 +4190,7 @@ "FilterName_Rich_Text_Format\n" "help.text" msgid "Rich Text" -msgstr "" +msgstr "Dokument Rich Text" #. pDv4t #: convertfilters.xhp @@ -4199,7 +4199,7 @@ "FilterName_StarOffice_XML__Writer_\n" "help.text" msgid "OpenOffice.org 1.0 Text Document" -msgstr "" +msgstr "Dokument tekstowy OpenOffice.org 1.0" #. PmERP #: convertfilters.xhp @@ -4208,7 +4208,7 @@ "FilterName_WordPerfect\n" "help.text" msgid "WordPerfect Document" -msgstr "" +msgstr "Dokument WordPerfect" #. yrGa7 #: convertfilters.xhp @@ -4217,7 +4217,7 @@ "FilterName_MS_Works\n" "help.text" msgid "Microsoft Works Document" -msgstr "" +msgstr "Dokument Microsoft Works" #. yeAAo #: convertfilters.xhp @@ -4226,7 +4226,7 @@ "FilterName_MS_Write\n" "help.text" msgid "Microsoft Write" -msgstr "" +msgstr "Microsoft Write" #. 8tUJt #: convertfilters.xhp @@ -4235,7 +4235,7 @@ "FilterName_DosWord\n" "help.text" msgid "Microsoft Word for DOS" -msgstr "" +msgstr "Microsoft Word dla DOS" #. RRhzm #: convertfilters.xhp @@ -4244,7 +4244,7 @@ "FilterName_ClarisWorks\n" "help.text" msgid "ClarisWorks/AppleWorks Text Document" -msgstr "" +msgstr "Dokument tekstowy ClarisWorks/AppleWorks" #. KRYRG #: convertfilters.xhp @@ -4253,7 +4253,7 @@ "FilterName_Mac_Word\n" "help.text" msgid "Microsoft Word for Mac (v1 - v5)" -msgstr "" +msgstr "Microsoft Word dla Mac (v1 - v5)" #. G7SHX #: convertfilters.xhp @@ -4262,7 +4262,7 @@ "FilterName_Mac_Works\n" "help.text" msgid "Microsoft Works for Mac Text Document (v1 - v4)" -msgstr "" +msgstr "Dokument tekstowy Microsoft Works dla Mac (v1 - v4)" #. sdUTZ #: convertfilters.xhp @@ -4271,7 +4271,7 @@ "FilterName_MacWrite\n" "help.text" msgid "MacWrite Document" -msgstr "" +msgstr "Dokument MacWrite" #. kNAGd #: convertfilters.xhp @@ -4280,7 +4280,7 @@ "FilterName_Mariner_Write\n" "help.text" msgid "Mariner Write Mac Classic v1.6 - v3.5" -msgstr "" +msgstr "Mariner Write Mac Classic v1.6 - v3.5" #. hauDe #: convertfilters.xhp @@ -4289,7 +4289,7 @@ "FilterName_WriteNow\n" "help.text" msgid "WriteNow Document" -msgstr "" +msgstr "Dokument WriteNow" #. XB2mE #: convertfilters.xhp @@ -4298,7 +4298,7 @@ "FilterName_AbiWord\n" "help.text" msgid "AbiWord Document" -msgstr "" +msgstr "Dokument AbiWord" #. AkpXt #: convertfilters.xhp @@ -4307,7 +4307,7 @@ "FilterName_T602Document\n" "help.text" msgid "T602 Document" -msgstr "" +msgstr "Dokument T602" #. BtFCB #: convertfilters.xhp @@ -4316,7 +4316,7 @@ "FilterName_LotusWordPro\n" "help.text" msgid "Lotus WordPro Document" -msgstr "" +msgstr "Dokument Lotus WordPro" #. iGofq #: convertfilters.xhp @@ -4325,7 +4325,7 @@ "FilterName_Text\n" "help.text" msgid "Text" -msgstr "" +msgstr "Теkst" #. mCyqh #: convertfilters.xhp @@ -4334,7 +4334,7 @@ "FilterName_Text__encoded_\n" "help.text" msgid "Text - Choose Encoding" -msgstr "" +msgstr "Tekst zakodowany" #. fviHV #: convertfilters.xhp @@ -4343,7 +4343,7 @@ "FilterName_writer_MIZI_Hwp_97\n" "help.text" msgid "Hangul WP 97" -msgstr "" +msgstr "Hangul WP 97" #. zZWv7 #: convertfilters.xhp @@ -4352,7 +4352,7 @@ "FilterName_writer_StarOffice_XML_Writer_Template\n" "help.text" msgid "OpenOffice.org 1.0 Text Document Template" -msgstr "" +msgstr "Szablon dokumentu tekstowego OpenOffice.org 1.0" #. 8CLpE #: convertfilters.xhp @@ -4361,7 +4361,7 @@ "FilterName_writer_pdf_Export\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. WFAmn #: convertfilters.xhp @@ -4370,7 +4370,7 @@ "FilterName_writer8\n" "help.text" msgid "ODF Text Document" -msgstr "" +msgstr "Dokument tekstowy ODF" #. EPBGH #: convertfilters.xhp @@ -4379,7 +4379,7 @@ "FilterName_writer8_template\n" "help.text" msgid "ODF Text Document Template" -msgstr "" +msgstr "Szablon dokumentu tekstowego ODF" #. yXkkF #: convertfilters.xhp @@ -4433,7 +4433,7 @@ "FilterName_writer_layout_dump\n" "help.text" msgid "Writer Layout XML" -msgstr "" +msgstr "Układ XML programu Writer" #. nxmVA #: convertfilters.xhp @@ -4442,7 +4442,7 @@ "FilterName_writer_indexing_export\n" "help.text" msgid "Writer Indexing Export XML" -msgstr "" +msgstr "Eksport XML z indeksowaniem programu Writer" #. Va5zD #: convertfilters.xhp @@ -4451,7 +4451,7 @@ "FilterName_BroadBand_eBook\n" "help.text" msgid "BroadBand eBook" -msgstr "" +msgstr "E-book BroadBand" #. xv2HX #: convertfilters.xhp @@ -4460,7 +4460,7 @@ "FilterName_FictionBook_2\n" "help.text" msgid "FictionBook 2.0" -msgstr "" +msgstr "FictionBook 2.0" #. eGEV2 #: convertfilters.xhp @@ -4469,7 +4469,7 @@ "FilterName_PalmDoc\n" "help.text" msgid "PalmDoc eBook" -msgstr "" +msgstr "E-book PalmDoc" #. s5QPG #: convertfilters.xhp @@ -4478,7 +4478,7 @@ "FilterName_Plucker_eBook\n" "help.text" msgid "Plucker eBook" -msgstr "" +msgstr "E-book Plucker" #. axzuL #: convertfilters.xhp @@ -4487,7 +4487,7 @@ "FilterName_Apple_Pages\n" "help.text" msgid "Apple Pages" -msgstr "" +msgstr "Apple Pages" #. 3jzkE #: convertfilters.xhp @@ -4496,7 +4496,7 @@ "FilterName_MWAW_Text_Document\n" "help.text" msgid "Legacy Mac Text Document" -msgstr "" +msgstr "Starszy dokument tekstowy Mac" #. KC9Cu #: convertfilters.xhp @@ -4505,7 +4505,7 @@ "FilterName_Palm_Text_Document\n" "help.text" msgid "Palm Text Document" -msgstr "" +msgstr "Dokument tekstowy Palm" #. Fy4FN #: convertfilters.xhp @@ -4514,7 +4514,7 @@ "FilterName_StarOffice_Writer\n" "help.text" msgid "Legacy StarOffice Text Document" -msgstr "" +msgstr "Starszy dokument tekstowy StarOffice" #. Qsixv #: convertfilters.xhp @@ -4523,7 +4523,7 @@ "FilterName_EPUB\n" "help.text" msgid "EPUB Document" -msgstr "" +msgstr "Dokument EPUB" #. eaj67 #: convertfilters.xhp @@ -4532,7 +4532,7 @@ "FilterName_PocketWord_File\n" "help.text" msgid "Pocket Word" -msgstr "" +msgstr "Pocket Word" #. Lapv3 #: convertfilters.xhp @@ -4541,7 +4541,7 @@ "bm_000calc\n" "help.text" msgid "command line document conversion; filters for CALC" -msgstr "" +msgstr "konwersja dokumentu wierszem poleceń; filtry dla CALC" #. FqFGm #: convertfilters.xhp @@ -4550,7 +4550,7 @@ "hd_000calc\n" "help.text" msgid "Filters for CALC" -msgstr "" +msgstr "Filtry dla CALC" #. EuWnD #: convertfilters.xhp @@ -4559,7 +4559,7 @@ "FilterName_DIF\n" "help.text" msgid "Data Interchange Format" -msgstr "" +msgstr "Data Interchange Format" #. 7q9Nb #: convertfilters.xhp @@ -4568,7 +4568,7 @@ "FilterName_HTML__StarCalc_\n" "help.text" msgid "HTML Document (Calc)" -msgstr "" +msgstr "Dokument HTML (Calc)" #. yPYR6 #: convertfilters.xhp @@ -4577,7 +4577,7 @@ "FilterName_OpenDocument_Spreadsheet_Flat_XML\n" "help.text" msgid "Flat XML ODF Spreadsheet" -msgstr "" +msgstr "Arkusz kalkulacyjny ODF Flat XML" #. rNgHW #: convertfilters.xhp @@ -4586,7 +4586,7 @@ "FilterName_Lotus\n" "help.text" msgid "Lotus 1-2-3" -msgstr "" +msgstr "Lotus 1-2-3" #. AEi8i #: convertfilters.xhp @@ -4595,7 +4595,7 @@ "FilterName_Quattro_Pro_6.0\n" "help.text" msgid "Quattro Pro 6.0" -msgstr "" +msgstr "Quattro Pro 6.0" #. mDJp3 #: convertfilters.xhp @@ -4604,7 +4604,7 @@ "FilterName_MS_Excel_4.0\n" "help.text" msgid "Microsoft Excel 4.0" -msgstr "" +msgstr "Microsoft Excel 4.0" #. hgBXj #: convertfilters.xhp @@ -4613,7 +4613,7 @@ "FilterName_MS_Excel_4.0_Vorlage_Template\n" "help.text" msgid "Microsoft Excel 4.0 Template" -msgstr "" +msgstr "Szablon Microsoft Excel 4.0" #. 3oEkA #: convertfilters.xhp @@ -4622,7 +4622,7 @@ "FilterName_MS_Excel_5.0_95\n" "help.text" msgid "Microsoft Excel 5.0" -msgstr "" +msgstr "Microsoft Excel 5.0" #. Uy7kn #: convertfilters.xhp @@ -4631,7 +4631,7 @@ "FilterName_MS_Excel_5.0_95_Vorlage_Template\n" "help.text" msgid "Microsoft Excel 5.0 Template" -msgstr "" +msgstr "Szablon Microsoft Excel 5.0" #. 4CJZN #: convertfilters.xhp @@ -4640,7 +4640,7 @@ "FilterName_MS_Excel_95\n" "help.text" msgid "Microsoft Excel 95" -msgstr "" +msgstr "Microsoft Excel 95" #. XGsPE #: convertfilters.xhp @@ -4649,7 +4649,7 @@ "FilterName_MS_Excel_95_Vorlage_Template\n" "help.text" msgid "Microsoft Excel 95 Template" -msgstr "" +msgstr "Szablon Microsoft Excel 95" #. wVQpy #: convertfilters.xhp @@ -4658,7 +4658,7 @@ "FilterName_MS_Excel_97\n" "help.text" msgid "Excel 97–2003" -msgstr "" +msgstr "Excel 97–2003" #. gXYBx #: convertfilters.xhp @@ -4667,7 +4667,7 @@ "FilterName_MS_Excel_97_Vorlage_Template\n" "help.text" msgid "Excel 97–2003 Template" -msgstr "" +msgstr "Szablon Excel 97–2003" #. ZHc63 #: convertfilters.xhp @@ -4676,7 +4676,7 @@ "FilterName_Rich_Text_Format__StarCalc_\n" "help.text" msgid "Rich Text Format (Calc)" -msgstr "" +msgstr "Format tekstu sformatowanego (Calc)" #. 3aMAe #: convertfilters.xhp @@ -4685,7 +4685,7 @@ "FilterName_SYLK\n" "help.text" msgid "SYLK" -msgstr "" +msgstr "SYLK" #. 7n2Wc #: convertfilters.xhp @@ -4694,7 +4694,7 @@ "FilterName_StarOffice_XML__Calc_\n" "help.text" msgid "OpenOffice.org 1.0 Spreadsheet" -msgstr "" +msgstr "Arkusz kalkulacyjny OpenOffice.org 1.0" #. dJAD5 #: convertfilters.xhp @@ -4703,7 +4703,7 @@ "FilterName_Text_-_txt_-_csv__StarCalc_\n" "help.text" msgid "Text CSV" -msgstr "" +msgstr "Tekst CSV" #. YWBDx #: convertfilters.xhp @@ -4712,7 +4712,7 @@ "FilterName_calc_HTML_WebQuery\n" "help.text" msgid "Web Page Query (Calc)" -msgstr "" +msgstr "Zapytanie internetowe (Calc)" #. V3SKY #: convertfilters.xhp @@ -4721,7 +4721,7 @@ "FilterName_calc_StarOffice_XML_Calc_Template\n" "help.text" msgid "OpenOffice.org 1.0 Spreadsheet Template" -msgstr "" +msgstr "Szablon arkusza kalkulacyjnego OpenOffice.org 1.0" #. LGWY8 #: convertfilters.xhp @@ -4730,7 +4730,7 @@ "FilterName_calc_pdf_Export\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. oiELg #: convertfilters.xhp @@ -4739,7 +4739,7 @@ "FilterName_dBase\n" "help.text" msgid "dBASE" -msgstr "" +msgstr "dBASE" #. beZKn #: convertfilters.xhp @@ -4748,7 +4748,7 @@ "FilterName_calc8\n" "help.text" msgid "ODF Spreadsheet" -msgstr "" +msgstr "Arkusz kalkulacyjny ODF" #. aDeFx #: convertfilters.xhp @@ -4757,7 +4757,7 @@ "FilterName_calc8_template\n" "help.text" msgid "ODF Spreadsheet Template" -msgstr "" +msgstr "Szablon arkusza kalkulacyjnego ODF" #. FcaWF #: convertfilters.xhp @@ -4766,7 +4766,7 @@ "FilterName_Gnumeric_Spreadsheet\n" "help.text" msgid "Gnumeric Spreadsheet" -msgstr "" +msgstr "Arkusz kalkulacyjny Gnumeric" #. jGBT4 #: convertfilters.xhp @@ -4775,7 +4775,7 @@ "FilterName_Calc_MS_Excel_2007_XML\n" "help.text" msgid "Excel 2007–365" -msgstr "" +msgstr "Excel 2007–365" #. vJc6C #: convertfilters.xhp @@ -4784,7 +4784,7 @@ "FilterName_Calc_MS_Excel_2007_VBA_XML\n" "help.text" msgid "Excel 2007–365 (macro-enabled)" -msgstr "" +msgstr "Excel 2007–365 (makro włączone)" #. cEpWn #: convertfilters.xhp @@ -4793,7 +4793,7 @@ "FilterName_Calc_MS_Excel_2007_XML_Template\n" "help.text" msgid "Excel 2007–365 Template" -msgstr "" +msgstr "Szablon Excel 2007–365" #. bkaz3 #: convertfilters.xhp @@ -4802,7 +4802,7 @@ "FilterName_Calc_MS_Excel_2007_Binary\n" "help.text" msgid "Microsoft Excel 2007 Binary" -msgstr "" +msgstr "Binarny Microsoft Excel 2007" #. HSHMA #: convertfilters.xhp @@ -4811,7 +4811,7 @@ "FilterName_Calc_Office_Open_XML\n" "help.text" msgid "Office Open XML Spreadsheet" -msgstr "" +msgstr "Arkusz kalkulacyjny Office Open XML" #. hsUaF #: convertfilters.xhp @@ -4820,7 +4820,7 @@ "FilterName_Calc_Office_Open_XML_Template\n" "help.text" msgid "Office Open XML Spreadsheet Template" -msgstr "" +msgstr "Szablon arkusza kalkulacyjnego Office Open XML" #. eAk3m #: convertfilters.xhp @@ -4829,7 +4829,7 @@ "FilterName_MS_Works_Calc\n" "help.text" msgid "Microsoft Works Document" -msgstr "" +msgstr "Dokument Microsoft Works" #. EnMAK #: convertfilters.xhp @@ -4838,7 +4838,7 @@ "FilterName_WPS_Lotus_Calc\n" "help.text" msgid "Lotus Document" -msgstr "" +msgstr "Dokument Lotus" #. kUjES #: convertfilters.xhp @@ -4847,7 +4847,7 @@ "FilterName_WPS_QPro_Calc\n" "help.text" msgid "QuattroPro Document" -msgstr "" +msgstr "Dokument QuattroPro" #. eYL6j #: convertfilters.xhp @@ -4856,7 +4856,7 @@ "FilterName_ClarisWorks_Calc\n" "help.text" msgid "ClarisWorks/AppleWorks Spreadsheet" -msgstr "" +msgstr "Arkusz kalkulacyjny ClarisWorks/AppleWorks" #. uqB3o #: convertfilters.xhp @@ -4865,7 +4865,7 @@ "FilterName_Claris_Resolve_Calc\n" "help.text" msgid "ClarisResolve Document" -msgstr "" +msgstr "Dokument ClarisResolve" #. sGZzg #: convertfilters.xhp @@ -4874,7 +4874,7 @@ "FilterName_Mac_Works_Calc\n" "help.text" msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" -msgstr "" +msgstr "Arkusz kalkulacyjny Microsoft Works dla Mac (v1 - v4)" #. nUBGp #: convertfilters.xhp @@ -4883,7 +4883,7 @@ "FilterName_Apple_Numbers\n" "help.text" msgid "Apple Numbers" -msgstr "" +msgstr "Apple Numbers" #. jXtFf #: convertfilters.xhp @@ -4892,7 +4892,7 @@ "FilterName_MWAW_Database\n" "help.text" msgid "Legacy Mac Database" -msgstr "" +msgstr "Starsza baza danych Mac" #. DB3FC #: convertfilters.xhp @@ -4901,7 +4901,7 @@ "FilterName_MWAW_Spreadsheet\n" "help.text" msgid "Legacy Mac Spreadsheet" -msgstr "" +msgstr "Starszy arkusz kalkulacyjny Mac" #. Gt7e4 #: convertfilters.xhp @@ -4910,7 +4910,7 @@ "FilterName_StarOffice_Spreadsheet\n" "help.text" msgid "Legacy StarOffice Spreadsheet" -msgstr "" +msgstr "Starszy arkusz kalkulacyjny StarOffice" #. HiGDu #: convertfilters.xhp @@ -4919,7 +4919,7 @@ "FilterName_Microsoft_Multiplan\n" "help.text" msgid "Microsoft Multiplan" -msgstr "" +msgstr "Microsoft Multiplan" #. EGUxE #: convertfilters.xhp @@ -4928,7 +4928,7 @@ "bm_000impress\n" "help.text" msgid "command line document conversion; filters for IMPRESS" -msgstr "" +msgstr "konwersja dokumentu wierszem poleceń; filtry dla IMPRESS" #. HDxSJ #: convertfilters.xhp @@ -4937,7 +4937,7 @@ "hd_000impress\n" "help.text" msgid "Filters for IMPRESS" -msgstr "" +msgstr "Filtry dla IMPRESS" #. uKDSG #: convertfilters.xhp @@ -4946,7 +4946,7 @@ "FilterName_Apple_Keynote\n" "help.text" msgid "Apple Keynote" -msgstr "" +msgstr "Apple Keynote" #. u7FSb #: convertfilters.xhp @@ -4955,7 +4955,7 @@ "FilterName_MS_PowerPoint_97\n" "help.text" msgid "PowerPoint 97–2003" -msgstr "" +msgstr "PowerPoint 97–2003" #. BsBhF #: convertfilters.xhp @@ -4964,7 +4964,7 @@ "FilterName_MS_PowerPoint_97_AutoPlay\n" "help.text" msgid "PowerPoint 97–2003 AutoPlay" -msgstr "" +msgstr "Autoodtwarzana prezentacja PowerPoint 97–2003" #. zQWHG #: convertfilters.xhp @@ -4973,7 +4973,7 @@ "FilterName_MS_PowerPoint_97_Vorlage\n" "help.text" msgid "PowerPoint 97–2003 Template" -msgstr "" +msgstr "Szablon PowerPoint 97–2003" #. WNSGm #: convertfilters.xhp @@ -4982,7 +4982,7 @@ "FilterName_impress_StarOffice_XML_Draw\n" "help.text" msgid "OpenOffice.org 1.0 Drawing (Impress)" -msgstr "" +msgstr "Rysunek OpenOffice.org 1.0 (Impress)" #. QiEkA #: convertfilters.xhp @@ -4991,7 +4991,7 @@ "FilterName_OpenDocument_Presentation_Flat_XML\n" "help.text" msgid "Flat XML ODF Presentation" -msgstr "" +msgstr "Prezentacja ODF Flat XML" #. Qriqe #: convertfilters.xhp @@ -5000,7 +5000,7 @@ "FilterName_StarOffice_XML__Impress_\n" "help.text" msgid "OpenOffice.org 1.0 Presentation" -msgstr "" +msgstr "Prezentacja OpenOffice.org 1.0" #. BFxUC #: convertfilters.xhp @@ -5009,7 +5009,7 @@ "FilterName_impress_StarOffice_XML_Impress_Template\n" "help.text" msgid "OpenOffice.org 1.0 Presentation Template" -msgstr "" +msgstr "Szablon prezentacji OpenOffice.org 1.0" #. F9DmM #: convertfilters.xhp @@ -5018,7 +5018,7 @@ "FilterName_impress_pdf_Export\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. 4EboJ #: convertfilters.xhp @@ -5027,7 +5027,7 @@ "FilterName_impress8\n" "help.text" msgid "ODF Presentation" -msgstr "" +msgstr "Prezentacja ODF" #. ELC6F #: convertfilters.xhp @@ -5036,7 +5036,7 @@ "FilterName_impress8_template\n" "help.text" msgid "ODF Presentation Template" -msgstr "" +msgstr "Szablon prezentacji ODF" #. BEBAL #: convertfilters.xhp @@ -5045,7 +5045,7 @@ "FilterName_impress8_draw\n" "help.text" msgid "ODF Drawing (Impress)" -msgstr "" +msgstr "Rysunek ODF (Impress)" #. n3Ewv #: convertfilters.xhp @@ -5054,7 +5054,7 @@ "FilterName_Impress_MS_PowerPoint_2007_XML\n" "help.text" msgid "PowerPoint 2007–365" -msgstr "" +msgstr "PowerPoint 2007–365" #. CQqPC #: convertfilters.xhp @@ -5063,7 +5063,7 @@ "FilterName_Impress_MS_PowerPoint_2007_XML_AutoPlay\n" "help.text" msgid "PowerPoint 2007–365 AutoPlay" -msgstr "" +msgstr "Autoodtwarzana prezentacja PowerPoint 2007–365" #. L6Xjf #: convertfilters.xhp @@ -5072,7 +5072,7 @@ "FilterName_Impress_MS_PowerPoint_2007_XML_Template\n" "help.text" msgid "PowerPoint 2007–365 Template" -msgstr "" +msgstr "Szablon PowerPoint 2007–365" #. gGyD7 #: convertfilters.xhp @@ -5081,7 +5081,7 @@ "FilterName_Impress_MS_PowerPoint_2007_XML_VBA\n" "help.text" msgid "PowerPoint 2007–365 VBA" -msgstr "" +msgstr "PowerPoint 2007–365 VBA" #. pctrF #: convertfilters.xhp @@ -5090,7 +5090,7 @@ "FilterName_Impress_Office_Open_XML\n" "help.text" msgid "Office Open XML Presentation" -msgstr "" +msgstr "Prezentacja Office Open XML" #. EWB4w #: convertfilters.xhp @@ -5099,7 +5099,7 @@ "FilterName_Impress_Office_Open_XML_Template\n" "help.text" msgid "Office Open XML Presentation Template" -msgstr "" +msgstr "Szablon prezentacji Office Open XML" #. EkxGy #: convertfilters.xhp @@ -5108,7 +5108,7 @@ "FilterName_Impress_Office_Open_XML_AutoPlay\n" "help.text" msgid "Office Open XML Presentation AutoPlay" -msgstr "" +msgstr "Autoodtwarzana prezentacja Office Open XML" #. eEvn7 #: convertfilters.xhp @@ -5117,7 +5117,7 @@ "FilterName_ClarisWorks_Impress\n" "help.text" msgid "ClarisWorks/AppleWorks Presentation" -msgstr "" +msgstr "Prezentacja ClarisWorks/AppleWorks" #. NHgBx #: convertfilters.xhp @@ -5126,7 +5126,7 @@ "FilterName_StarOffice_Presentation\n" "help.text" msgid "Legacy StarOffice Presentation" -msgstr "" +msgstr "Starsza prezentacja StarOffice" #. jhGVJ #: convertfilters.xhp @@ -5135,7 +5135,7 @@ "FilterName_MWAW_Presentation\n" "help.text" msgid "Legacy Mac Presentation" -msgstr "" +msgstr "Starsza prezentacja Mac" #. skCqq #: convertfilters.xhp @@ -5144,7 +5144,7 @@ "FilterName_PowerPoint_3\n" "help.text" msgid "Microsoft PowerPoint 1-4 and 95's" -msgstr "" +msgstr "Microsoft PowerPoint 1-4 i 95" #. 9djZG #: convertfilters.xhp @@ -5153,7 +5153,7 @@ "bm_000draw\n" "help.text" msgid "command line document conversion; filters for DRAW" -msgstr "" +msgstr "konwersja dokumentu wierszem poleceń; filtry dla DRAW" #. RqCik #: convertfilters.xhp @@ -5162,7 +5162,7 @@ "hd_000draw\n" "help.text" msgid "Filters for DRAW" -msgstr "" +msgstr "Filtry dla DRAW" #. YjDYB #: convertfilters.xhp @@ -5171,7 +5171,7 @@ "FilterName_OpenDocument_Drawing_Flat_XML\n" "help.text" msgid "Flat XML ODF Drawing" -msgstr "" +msgstr "Rysunek ODF Flat XML" #. HhPJQ #: convertfilters.xhp @@ -5180,7 +5180,7 @@ "FilterName_StarOffice_XML__Draw_\n" "help.text" msgid "OpenOffice.org 1.0 Drawing" -msgstr "" +msgstr "Rysunek OpenOffice.org 1.0" #. Yzxz6 #: convertfilters.xhp @@ -5189,7 +5189,7 @@ "FilterName_draw_StarOffice_XML_Draw_Template\n" "help.text" msgid "OpenOffice.org 1.0 Drawing Template" -msgstr "" +msgstr "Szablon rysunku OpenOffice.org 1.0" #. 5We5b #: convertfilters.xhp @@ -5198,7 +5198,7 @@ "FilterName_draw_pdf_Export\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. eE7XK #: convertfilters.xhp @@ -5207,7 +5207,7 @@ "FilterName_draw8\n" "help.text" msgid "ODF Drawing" -msgstr "" +msgstr "Rysunek ODF" #. EwBLA #: convertfilters.xhp @@ -5216,7 +5216,7 @@ "FilterName_draw8_template\n" "help.text" msgid "ODF Drawing Template" -msgstr "" +msgstr "Szablon rysunku ODF" #. pNG2x #: convertfilters.xhp @@ -5225,7 +5225,7 @@ "FilterName_WordPerfect_Graphics\n" "help.text" msgid "WordPerfect Graphics" -msgstr "" +msgstr "WordPerfect Graphics" #. RzyLC #: convertfilters.xhp @@ -5234,7 +5234,7 @@ "FilterName_Visio_Document\n" "help.text" msgid "Microsoft Visio 2000-2013" -msgstr "" +msgstr "Microsoft Visio 2000-2013" #. xDHNz #: convertfilters.xhp @@ -5243,7 +5243,7 @@ "FilterName_Publisher_Document\n" "help.text" msgid "Microsoft Publisher 98-2010" -msgstr "" +msgstr "Microsoft Publisher 98-2010" #. eGGBw #: convertfilters.xhp @@ -5252,7 +5252,7 @@ "FilterName_Corel_Draw_Document\n" "help.text" msgid "Corel Draw" -msgstr "" +msgstr "Corel Draw" #. aiQoG #: convertfilters.xhp @@ -5261,7 +5261,7 @@ "FilterName_Corel_Presentation_Exchange\n" "help.text" msgid "Corel Presentation Exchange" -msgstr "" +msgstr "Corel Presentation Exchange" #. B3BBp #: convertfilters.xhp @@ -5270,7 +5270,7 @@ "FilterName_Freehand_Document\n" "help.text" msgid "Adobe/Macromedia Freehand" -msgstr "" +msgstr "Adobe/Macromedia Freehand" #. DCoiy #: convertfilters.xhp @@ -5279,7 +5279,7 @@ "FilterName_ClarisWorks_Draw\n" "help.text" msgid "ClarisWorks/AppleWorks Drawing" -msgstr "" +msgstr "Rysunek ClarisWorks/AppleWorks" #. HUGEm #: convertfilters.xhp @@ -5288,7 +5288,7 @@ "FilterName_PageMaker_Document\n" "help.text" msgid "Adobe PageMaker" -msgstr "" +msgstr "Adobe PageMaker" #. zZ2EE #: convertfilters.xhp @@ -5297,7 +5297,7 @@ "FilterName_QXP_Document\n" "help.text" msgid "QuarkXPress" -msgstr "" +msgstr "QuarkXPress" #. hStZa #: convertfilters.xhp @@ -5306,7 +5306,7 @@ "FilterName_ZMF_Document\n" "help.text" msgid "Zoner Callisto/Draw" -msgstr "" +msgstr "Zoner Callisto/Draw" #. BiZgm #: convertfilters.xhp @@ -5315,7 +5315,7 @@ "FilterName_MWAW_Bitmap\n" "help.text" msgid "Legacy Mac Bitmap" -msgstr "" +msgstr "Starsza mapa bitowa Mac" #. gicao #: convertfilters.xhp @@ -5324,7 +5324,7 @@ "FilterName_MWAW_Drawing\n" "help.text" msgid "Legacy Mac Drawing" -msgstr "" +msgstr "Starszy rysunek Mac" #. 6dw2D #: convertfilters.xhp @@ -5333,7 +5333,7 @@ "FilterName_StarOffice_Drawing\n" "help.text" msgid "Legacy StarOffice Drawing" -msgstr "" +msgstr "Starszy rysunek StarOffice" #. 7s4EZ #: convertfilters.xhp @@ -5342,7 +5342,7 @@ "bm_000math\n" "help.text" msgid "command line document conversion; filters for MATH" -msgstr "" +msgstr "konwersja dokumentu wierszem poleceń; filtry dla MATH" #. paXbB #: convertfilters.xhp @@ -5351,7 +5351,7 @@ "hd_000math\n" "help.text" msgid "Filters for MATH" -msgstr "" +msgstr "Filtry dla MATH" #. 9DrmS #: convertfilters.xhp @@ -5360,7 +5360,7 @@ "FilterName_MathML_XML__Math_\n" "help.text" msgid "MathML 2.0" -msgstr "" +msgstr "MathML 2.0" #. NhtdT #: convertfilters.xhp @@ -5369,7 +5369,7 @@ "FilterName_MathType_3.x\n" "help.text" msgid "MathType3.x" -msgstr "" +msgstr "MathType3.x" #. zSwxR #: convertfilters.xhp @@ -5378,7 +5378,7 @@ "FilterName_StarOffice_XML__Math_\n" "help.text" msgid "OpenOffice.org 1.0 Formula" -msgstr "" +msgstr "Formuła OpenOffice.org 1.0" #. v95fZ #: convertfilters.xhp @@ -5387,7 +5387,7 @@ "FilterName_math_pdf_Export\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. BD7Mn #: convertfilters.xhp @@ -5396,7 +5396,7 @@ "FilterName_math8\n" "help.text" msgid "ODF Formula" -msgstr "" +msgstr "Formuła ODF" #. pkJ3f #: convertfilters.xhp @@ -5405,7 +5405,7 @@ "bm_000base\n" "help.text" msgid "command line document conversion; filters for BASE" -msgstr "" +msgstr "konwersja dokumentu wierszem poleceń; filtry dla BASE" #. Sh2BE #: convertfilters.xhp @@ -5414,7 +5414,7 @@ "hd_000base\n" "help.text" msgid "Filters for BASE" -msgstr "" +msgstr "Filtry dla BASE" #. GhDwr #: convertfilters.xhp @@ -5423,7 +5423,7 @@ "FilterName_StarOffice_XML__Base_\n" "help.text" msgid "ODF Database" -msgstr "" +msgstr "Baza danych ODF" #. nEtCn #: convertfilters.xhp @@ -5432,7 +5432,7 @@ "bm_000graphicfilter\n" "help.text" msgid "command line document conversion; filters for GRAPHICFILTER" -msgstr "" +msgstr "konwersja dokumentu wierszem poleceń; filtry dla GRAPHICFILTER" #. 9qQnA #: convertfilters.xhp @@ -5441,7 +5441,7 @@ "hd_000graphicfilter\n" "help.text" msgid "Filters for GRAPHICFILTER" -msgstr "" +msgstr "Filtry dla GRAPHICFILTER" #. ukbDG #: convertfilters.xhp @@ -5450,7 +5450,7 @@ "FilterName_writer_jpg_Export\n" "help.text" msgid "JPEG - Joint Photographic Experts Group" -msgstr "" +msgstr "JPEG - Joint Photographic Experts Group" #. c7VEt #: convertfilters.xhp @@ -5459,7 +5459,7 @@ "FilterName_writer_png_Export\n" "help.text" msgid "PNG - Portable Network Graphics" -msgstr "" +msgstr "PNG - Portable Network Graphics" #. FeKia #: convertfilters.xhp @@ -5468,7 +5468,7 @@ "FilterName_writer_svg_Export\n" "help.text" msgid "SVG - Scalable Vector Graphics" -msgstr "" +msgstr "SVG - Scalable Vector Graphics" #. fwhjA #: convertfilters.xhp @@ -5477,7 +5477,7 @@ "bm_000pdfimport\n" "help.text" msgid "command line document conversion; filters for PDFIMPORT" -msgstr "" +msgstr "konwersja dokumentu wierszem poleceń; filtry dla PDFIMPORT" #. K7dq5 #: convertfilters.xhp @@ -5486,7 +5486,7 @@ "hd_000pdfimport\n" "help.text" msgid "Filters for PDFIMPORT" -msgstr "" +msgstr "Filtry dla PDFIMPORT" #. xJhTH #: convertfilters.xhp @@ -5495,7 +5495,7 @@ "FilterName_draw_pdf_import\n" "help.text" msgid "PDF - Portable Document Format (Draw)" -msgstr "" +msgstr "PDF - Portable Document Format (Draw)" #. JDFdH #: convertfilters.xhp @@ -5504,7 +5504,7 @@ "FilterName_impress_pdf_import\n" "help.text" msgid "PDF - Portable Document Format (Impress)" -msgstr "" +msgstr "PDF - Portable Document Format (Impress)" #. WsMeW #: convertfilters.xhp @@ -5513,7 +5513,7 @@ "FilterName_writer_pdf_import\n" "help.text" msgid "PDF - Portable Document Format (Writer)" -msgstr "" +msgstr "PDF - Portable Document Format (Writer)" #. 9WyPm #: convertfilters.xhp @@ -5522,7 +5522,7 @@ "FilterName_writer_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. kF4WL #: convertfilters.xhp @@ -5531,7 +5531,7 @@ "FilterName_impress_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. aFqyu #: convertfilters.xhp @@ -5540,7 +5540,7 @@ "FilterName_draw_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. 5AFFP #: convertfilters.xhp @@ -5549,7 +5549,7 @@ "FilterName_calc_pdf_addstream_import\n" "help.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #. ziEHZ #: convertfilters.xhp @@ -5558,7 +5558,7 @@ "bm_000xsltfilter\n" "help.text" msgid "command line document conversion; filters for XSLTFILTER" -msgstr "" +msgstr "konwersja dokumentu wierszem poleceń; filtry dla XSLTFILTER" #. AzDaX #: convertfilters.xhp @@ -5567,7 +5567,7 @@ "hd_000xsltfilter\n" "help.text" msgid "Filters for XSLTFILTER" -msgstr "" +msgstr "Filtry dla XSLTFILTER" #. ebRhP #: convertfilters.xhp @@ -5576,7 +5576,7 @@ "FilterName_ADO_Rowset_XML\n" "help.text" msgid "ADO Rowset XML" -msgstr "" +msgstr "ADO Rowset XML" #. tTViV #: convertfilters.xhp @@ -5585,7 +5585,7 @@ "FilterName_DocBook_File\n" "help.text" msgid "DocBook" -msgstr "" +msgstr "DocBook" #. GHC43 #: convertfilters.xhp @@ -5594,7 +5594,7 @@ "FilterName_MS_Excel_2003_XML\n" "help.text" msgid "Microsoft Excel 2003 XML" -msgstr "" +msgstr "Microsoft Excel 2003 XML" #. 5wBfH #: convertfilters.xhp @@ -5603,7 +5603,7 @@ "FilterName_MS_Word_2003_XML\n" "help.text" msgid "Word 2003 XML" -msgstr "" +msgstr "Word 2003 XML" #. CTAEj #: convertfilters.xhp @@ -5612,7 +5612,7 @@ "FilterName_XHTML_Calc_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. VUZrD #: convertfilters.xhp @@ -5621,7 +5621,7 @@ "FilterName_XHTML_Draw_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. AhcRA #: convertfilters.xhp @@ -5630,7 +5630,7 @@ "FilterName_XHTML_Impress_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. iCCFv #: convertfilters.xhp @@ -5639,7 +5639,7 @@ "FilterName_XHTML_Writer_File\n" "help.text" msgid "XHTML" -msgstr "" +msgstr "XHTML" #. MCrWq #: convertfilters.xhp @@ -5648,7 +5648,7 @@ "FilterName_UOF_text\n" "help.text" msgid "Unified Office Format text" -msgstr "" +msgstr "Dokument tekstowy Unified Office Format" #. TXKeC #: convertfilters.xhp @@ -5657,7 +5657,7 @@ "FilterName_UOF_spreadsheet\n" "help.text" msgid "Unified Office Format spreadsheet" -msgstr "" +msgstr "Arkusz kalkulacyjny Unified Office Format" #. VW3Gt #: convertfilters.xhp @@ -5666,7 +5666,7 @@ "FilterName_UOF_presentation\n" "help.text" msgid "Unified Office Format presentation" -msgstr "" +msgstr "Prezentacja Unified Office Format" #. Bkz5M #: copy_drawfunctions.xhp @@ -5756,7 +5756,7 @@ "par_id3150276\n" "help.text" msgid "An inserted drawing object is anchored to the current paragraph. You can change the anchor by selecting the object and clicking the Change Anchor icon on the OLE Object toolbar or the Frame toolbar. This opens a popup menu where you can select the anchor type." -msgstr "" +msgstr "Wstawiony obiekt rysunkowy jest zakotwiczony w bieżącym akapicie. Możesz zmienić zakotwiczenie, wybierając obiekt i klikając ikonę Zmień zakotwiczenie na pasku narzędzi Obiekt OLE lub pasku narzędzi Ramka. Spowoduje to otwarcie menu podręcznego, w którym można wybrać typ zakotwiczenia." #. TTFkG #: copy_drawfunctions.xhp @@ -5882,7 +5882,7 @@ "par_id3156426\n" "help.text" msgid "You can insert text into other document types, such as spreadsheets and presentations. Note that there is a difference between whether the text is inserted into a frame, a spreadsheet cell, or into the outline view of a presentation." -msgstr "" +msgstr "Tekst można wstawić do dokumentów innego typu, np. arkuszy kalkulacyjnych i prezentacji. Należy pamiętać, że istnieje różnica między wstawianiem tekstu do ramki, komórki arkusza kalkulacyjnego lub widoku konspektu prezentacji." #. NMAmB #: copytext2application.xhp @@ -5972,7 +5972,7 @@ "tit\n" "help.text" msgid "CSV Filter parameters" -msgstr "" +msgstr "Parametry filtra CSV" #. KyLbg #: csv_params.xhp @@ -5981,7 +5981,7 @@ "bm_id181634740978601\n" "help.text" msgid "CSV;filter options CSV;separator specification line CSV;import options CSV;export options CSV;command line filter options" -msgstr "" +msgstr "CSV;opcje filtrowania CSV;linia specyfikacji separatora CSV;opcje importu CSV;opcje eksportu CSV; opcje filtrowania wiersza poleceń" #. szBoK #: csv_params.xhp @@ -5999,7 +5999,7 @@ "par_id401634734576197\n" "help.text" msgid "The CSV filter accepts an option string containing five to thirteen tokens, separated by commas. Tokens 6 to 13 are optional." -msgstr "" +msgstr "Filtr CSV akceptuje ciąg opcji zawierający od pięciu do trzynastu tokenów oddzielonych przecinkami. Tokeny od 6 do 13 są opcjonalne." #. BQKWB #: csv_params.xhp @@ -6008,7 +6008,7 @@ "par_id431634743318433\n" "help.text" msgid "Import from UTF-8, Language German, Comma separated, Text delimiter \", Quoted field as text. CSV file has columns formatted as date, number, number, number:" -msgstr "" +msgstr "Import z UTF-8, język niemiecki, oddzielone przecinkami, ogranicznik tekstu \", pole w cudzysłowie jako tekst. Plik CSV zawiera kolumny sformatowane jako data, liczba, liczba i liczba:" #. rdZgZ #: csv_params.xhp @@ -6017,7 +6017,7 @@ "par_id281634743298078\n" "help.text" msgid "Export to Windows-1252, Field delimiter : comma, Text delimiter : quote, Save cell contents as shown:" -msgstr "" +msgstr "Eksportuj do Windows-1252, ogranicznik pola: przecinek, ogranicznik tekstu: cytat, zapisz zawartość komórki jak przedstawiono:" #. J8rtr #: csv_params.xhp @@ -6026,7 +6026,7 @@ "par_id511634735255956\n" "help.text" msgid "Token Position" -msgstr "" +msgstr "Pozycja tokena" #. 5rrFy #: csv_params.xhp @@ -6035,7 +6035,7 @@ "par_id71634735255956\n" "help.text" msgid "Definition" -msgstr "" +msgstr "Definicja" #. tBx7H #: csv_params.xhp @@ -6044,7 +6044,7 @@ "par_id581634735255956\n" "help.text" msgid "Meaning and Example of Token" -msgstr "" +msgstr "Znaczenie i przykład tokena" #. FBZ5h #: csv_params.xhp @@ -6053,7 +6053,7 @@ "par_id691634735255956\n" "help.text" msgid "Field Separator" -msgstr "" +msgstr "Separator pól" #. Zgou6 #: csv_params.xhp @@ -6062,7 +6062,7 @@ "par_id501634735255956\n" "help.text" msgid "Field separator(s) as ASCII values. Multiple values are separated by the slash sign (\"/\"), that is, if the values are separated by semicolons and horizontal tabulators, the token would be 59/9. To treat several consecutive separators as one, then append '/MRG' to the token. If the file contains fixed width fields, then use 'FIX'. Example: 44 (,)" -msgstr "" +msgstr "Separatory pól jako wartości ASCII. Wiele wartości jest oddzielonych znakiem ukośnika (\"/\"), co oznacza, że jeśli wartości są oddzielone średnikami i tabulatorami poziomymi, tokenem będzie 59/9. Aby traktować kilka kolejnych separatorów jako jeden, należy dołączyć \"/MRG\" do tokena. Jeśli plik zawiera pola o stałej szerokości, użyj opcji \"FIX\". Przykład: 44 (,)" #. HqX6Y #: csv_params.xhp @@ -6071,7 +6071,7 @@ "par_id661634735416764\n" "help.text" msgid "Text Delimiter" -msgstr "" +msgstr "Ogranicznik tekstu" #. A3NpW #: csv_params.xhp @@ -6080,7 +6080,7 @@ "par_id131634735421911\n" "help.text" msgid "The text delimiter as ASCII value, like 34 for double quotes and 39 for single quotes. Example: 34 (\")." -msgstr "" +msgstr "Ogranicznik tekstu jako wartość ASCII, np. 34 w cudzysłowach podwójnych i 39 w cudzysłowach pojedynczych. Przykład: 34 (\")." #. 5EFCS #: csv_params.xhp @@ -6089,7 +6089,7 @@ "par_id901634735627024\n" "help.text" msgid "Character Set" -msgstr "" +msgstr "Zestaw znaków" #. v4Gzf #: csv_params.xhp @@ -6098,7 +6098,7 @@ "par_id871634735631362\n" "help.text" msgid "The character set code used in the file as described in the table below. Example: 0 (System)." -msgstr "" +msgstr "Kod zestawu znaków używany w pliku zgodnie z opisem w poniższej tabeli. Przykład: 0 (system)." #. RN5mh #: csv_params.xhp @@ -6107,7 +6107,7 @@ "par_id371634735705688\n" "help.text" msgid "CSV Import" -msgstr "" +msgstr "Import CSV" #. hzBqc #: csv_params.xhp @@ -6125,7 +6125,7 @@ "par_id741634735821982\n" "help.text" msgid "Cell Format Codes for Each Column" -msgstr "" +msgstr "Kod formatowania komórek dla każdej kolumny" #. fjBqE #: csv_params.xhp @@ -6134,7 +6134,7 @@ "par_id481634735825359\n" "help.text" msgid "A sequence of column/formatting code, where the formatting code is given in the table below. Example: \"1/5/2/1/3/1/4/1\"." -msgstr "" +msgstr "Sekwencja kodu kolumny/formatowania, gdzie kod formatowania jest podany w poniższej tabeli. Przykład: \"1/5/2/1/3/1/4/1\"." #. mFfyA #: csv_params.xhp @@ -6143,7 +6143,7 @@ "par_id831634735631362\n" "help.text" msgid "If value separators are used, the form of this token is column/format[/column/format/…] where column is the number of the column, with 1 being the leftmost column. The format code is detailed below." -msgstr "" +msgstr "Jeśli używane są separatory wartości, postać tego tokena to kolumna/format[/kolumna/format/…], gdzie kolumna to numer kolumny, gdzie 1 to kolumna znajdująca się najbardziej po lewej stronie. Kod formatu jest szczegółowo opisany poniżej." #. bMC9A #: csv_params.xhp @@ -6152,7 +6152,7 @@ "par_id831635735631362\n" "help.text" msgid "If the first token is FIX it has the form start/format[/start/format/…], where start is the number of the first character for this field, with 0 being the leftmost character in a line. The format is explained below." -msgstr "" +msgstr "Jeśli pierwszym tokenem jest FIX, ma on postać start/format[/start/format/…], gdzie start to numer pierwszego znaku dla tego pola, gdzie 0 to znak znajdujący się najbardziej na lewo w wierszu. Format wyjaśniono poniżej." #. ZwqfD #: csv_params.xhp @@ -6161,7 +6161,7 @@ "par_id971634736857464\n" "help.text" msgid "Language identifier" -msgstr "" +msgstr "Identyfikator języka" #. DrnsR #: csv_params.xhp @@ -6170,7 +6170,7 @@ "par_id951634736861475\n" "help.text" msgid "String expressed in decimal notation. This token is the equivalent of the \"Language\" listbox in the user interface for CSV import. If the value is 0 or omitted, the language identifier of the user interface is used. The language identifier is based on the Microsoft language identifiers." -msgstr "" +msgstr "Ciąg wyrażony w notacji dziesiętnej. Ten token jest odpowiednikiem pola listy \"Język\" w interfejsie użytkownika do importu pliku CSV. Jeśli wartość wynosi 0 lub jest pominięta, używany jest identyfikator języka interfejsu użytkownika. Identyfikator języka jest oparty na identyfikatorach języka firmy Microsoft." #. B8dVu #: csv_params.xhp @@ -6188,7 +6188,7 @@ "par_id481634736922278\n" "help.text" msgid "String, either false or true. Default value: false. This token is the equivalent of the check box \"Quoted field as text\"." -msgstr "" +msgstr "Ciąg, false albo true. Wartość domyślna: false. Token ten jest odpowiednikiem pola wyboru \"Cytowane pole jako tekst\"." #. bDTPa #: csv_params.xhp @@ -6206,7 +6206,7 @@ "par_id41634737061097\n" "help.text" msgid "Import: String, either false or true. Default value: false. This token is the equivalent of the check box \"Detect special numbers\"." -msgstr "" +msgstr "Importuj: ciąg znaków, false albo true. Wartość domyślna: false. Token ten jest odpowiednikiem pola wyboru \"Wykryj numery specjalne\"." #. kvUjv #: csv_params.xhp @@ -6215,7 +6215,7 @@ "par_id161634737264744\n" "help.text" msgid "Export: String, either false or true. Default value: true. This token has no UI equivalent. If true, the number cells are stored as numbers. If false, the numbers are stored as text, with text delimiters." -msgstr "" +msgstr "Eksportuj: ciąg, \"false\" lub \"true\". Wartość domyślna: true. Ten token nie ma odpowiednika w interfejsie użytkownika. Jeśli true, komórki liczbowe są przechowywane jako liczby. Jeśli false, liczby są przechowywane jako tekst z ogranicznikami tekstu." #. D9GzU #: csv_params.xhp @@ -6224,7 +6224,7 @@ "par_id961634737712752\n" "help.text" msgid "CSV Export" -msgstr "" +msgstr "Eksport CSV" #. bE733 #: csv_params.xhp @@ -6233,7 +6233,7 @@ "par_id701634737971414\n" "help.text" msgid "String, either false or true. Default value:true. This token is the equivalent of the check box \"Save cell contents as shown\"." -msgstr "" +msgstr "Ciąg, false albo true. Wartość domyślna:true. Token ten jest odpowiednikiem pola wyboru \"Zapisz zawartość komórki jak przedstawiono\"." #. DbAB4 #: csv_params.xhp @@ -6242,7 +6242,7 @@ "par_id481634896761359\n" "help.text" msgid "CSV Export" -msgstr "" +msgstr "Eksport CSV" #. 3V5FY #: csv_params.xhp @@ -6251,7 +6251,7 @@ "par_id411634896764659\n" "help.text" msgid "String, either false or true. Default value: false. Export cell formulas." -msgstr "" +msgstr "Ciąg, false albo true. Wartość domyślna: false. Eksportuj formuły komórek." #. FE6AD #: csv_params.xhp @@ -6260,7 +6260,7 @@ "par_id221634896896383\n" "help.text" msgid "CSV Import" -msgstr "" +msgstr "Import CSV" #. o6NCQ #: csv_params.xhp @@ -6269,7 +6269,7 @@ "par_id641634896897119\n" "help.text" msgid "String, either false or true. Default value: false. Remove spaces. Trim leading and trailing spaces, when reading the file." -msgstr "" +msgstr "Ciąg, false albo true. Wartość domyślna: false. Usuń odstępy. Przycinaj początkowe i końcowe odstępy podczas odczytu pliku." #. e7nRn #: csv_params.xhp @@ -6278,7 +6278,7 @@ "par_id521634896971296\n" "help.text" msgid "CSV Export" -msgstr "" +msgstr "Eksport CSV" #. NaJRN #: csv_params.xhp @@ -6287,7 +6287,7 @@ "par_id161634896971802\n" "help.text" msgid "Export the entire document to individual sheets .csv files or a specified sheet." -msgstr "" +msgstr "Eksportuj cały dokument do pojedynczych arkuszy plików .csv lub określonego arkusza." #. X7QDK #: csv_params.xhp @@ -6323,7 +6323,7 @@ "par_id451635293273892\n" "help.text" msgid "CSV Import" -msgstr "" +msgstr "Import CSV" #. 54sie #: csv_params.xhp @@ -6332,7 +6332,7 @@ "par_id701635293273893\n" "help.text" msgid "String, either false or true. Default value: false. Determines whether formula expressions starting with a = equal sign character are to be evaluated as formulas or imported as textual data. If true evaluate formulas on input. If false formulas are input as text. If omitted (not present at all), the default value is true to keep the behaviour of old versions' options string that didn't have this token at all. If present and empty (or any other value than true) the default value is false." -msgstr "" +msgstr "Ciąg, false albo true. Wartość domyślna: false. Określa, czy wyrażenia formuł zaczynające się od znaku równości = mają być oceniane jako formuły, czy importowane jako dane tekstowe. Jeśli true ocenia formuły na wejściu. Jeśli false formuły są wprowadzane jako tekst. Jeśli zostanie pominięty (w ogóle nie występuje), domyślną wartością jest true, aby zachować zachowanie ciągu opcji ze starych wersji, które w ogóle nie miały tego tokena. Jeśli obecny i pusty (lub dowolna inna wartość niż true), domyślną wartością jest false." #. DAriB #: csv_params.xhp @@ -6341,7 +6341,7 @@ "hd_id591638374883162\n" "help.text" msgid "Special case of CSV files with separator defined in the first line" -msgstr "" +msgstr "Specjalny przypadek plików CSV z separatorem zdefiniowanym w pierwszym wierszu" #. gpBdg #: csv_params.xhp @@ -6350,7 +6350,7 @@ "par_id781638374952502\n" "help.text" msgid "CSV import and export support a sep= and \"sep=\" field separator setting. When reading a CSV document, the separator is taken from the initial sep= or \"sep=\" single field, if that is the only line content." -msgstr "" +msgstr "Import i eksport CSV obsługują ustawienie separatora pól sep= i \"sep=\". Podczas odczytu dokumentu CSV separator jest pobierany z początkowego pojedynczego pola sep= lub \"sep=\", jeśli jest to jedyna treść wiersza." #. q8D8y #: csv_params.xhp @@ -6359,7 +6359,7 @@ "par_id561638377619263\n" "help.text" msgid "When reading a CSV file, the quoted form is preserved as (unquoted) cell content. You see sep=| when | is the separator in the first line. In the unquoted form, the separator is discarded because it is a real field separator in the context. You see sep= in the first line." -msgstr "" +msgstr "Podczas odczytywania pliku CSV cytowana forma jest zachowywana jako (niecytowana) zawartość komórki. Widzisz sep=|, gdy | jest separatorem w pierwszym wierszu. W formie bez cudzysłowów separator jest odrzucany, ponieważ jest to rzeczywisty separator pól w kontekście. Widzisz sep= w pierwszym wierszu." #. j5dBK #: csv_params.xhp @@ -6368,7 +6368,7 @@ "par_id761638377626465\n" "help.text" msgid "When writing a CSV file, the existing single top left cell's content such as sep=| is adapted to the current separator with the quoted form of \"sep=|\" (if quotes / text delimiters aren't set empty and | is the separator) and always uses the ASCII \" double quote character." -msgstr "" +msgstr "Podczas zapisywania pliku CSV, istniejąca zawartość pojedynczej komórki w lewym górnym rogu, taka jak sep=| jest dopasowywana do bieżącego separatora za pomocą cytowanej formy \"sep=|\" (jeśli cudzysłowy/ograniczniki tekstu nie są puste, a | jest separatorem) i zawsze używa znaku podwójnego cudzysłowu ASCII \"." #. uBq4B #: csv_params.xhp @@ -6377,7 +6377,7 @@ "par_id61638377631743\n" "help.text" msgid "If the line containing the sep=| is not to be imported as data, remember to set the From row number in the dialog to 2. Note that this line will not be preserved when re-saving." -msgstr "" +msgstr "Jeśli wiersz zawierający sep=| nie ma być importowany jako dane, pamiętaj o ustawieniu numeru Od wiersza w oknie dialogowym na 2. Zauważ, że ten wiersz nie będzie zachowane podczas ponownego zapisywania." #. oGd5z #: csv_params.xhp @@ -6386,7 +6386,7 @@ "par_id731638374814029\n" "help.text" msgid "\"LETTER\"|\"ANIMAL\"" -msgstr "" +msgstr "\"LITERA\"|\"ZWIERZĘ\"" #. CsfKB #: csv_params.xhp @@ -6395,7 +6395,7 @@ "par_id801638374818291\n" "help.text" msgid "\"a\"|\"aardvark\"" -msgstr "" +msgstr "\"a\"|\"antylopa\"" #. t62e9 #: csv_params.xhp @@ -6404,7 +6404,7 @@ "par_id621638374822275\n" "help.text" msgid "\"b\"|\"bear\"" -msgstr "" +msgstr "\"b\"|\"bocian\"" #. G2aQG #: csv_params.xhp @@ -6413,7 +6413,7 @@ "par_id851638374831208\n" "help.text" msgid "\"c\"|\"cow\"" -msgstr "" +msgstr "\"c\"|\"chomik\"" #. EFwn3 #: csv_params.xhp @@ -6422,7 +6422,7 @@ "hd_id181634739011588\n" "help.text" msgid "Formatting Codes for Token 5" -msgstr "" +msgstr "Kody formatowania dla tokena 5" #. 3KE5V #: csv_params.xhp @@ -6431,7 +6431,7 @@ "par_id31634738948892\n" "help.text" msgid "Meaning" -msgstr "" +msgstr "Znaczenie" #. kDygY #: csv_params.xhp @@ -6440,7 +6440,7 @@ "par_id101634738948892\n" "help.text" msgid "Code" -msgstr "" +msgstr "Kod" #. BpiaC #: csv_params.xhp @@ -6449,7 +6449,7 @@ "par_id1011670216\n" "help.text" msgid "Standard" -msgstr "" +msgstr "Standardowy" #. o2zeW #: csv_params.xhp @@ -6458,7 +6458,7 @@ "par_id1605952714\n" "help.text" msgid "Text" -msgstr "" +msgstr "Теkst" #. pPwcP #: csv_params.xhp @@ -6467,7 +6467,7 @@ "par_id5066036143\n" "help.text" msgid "MM/DD/YY" -msgstr "" +msgstr "MM/DD/RR" #. 6yrFg #: csv_params.xhp @@ -6476,7 +6476,7 @@ "par_id6386378851\n" "help.text" msgid "DD/MM/YY" -msgstr "" +msgstr "DD/MM/RR" #. BrCte #: csv_params.xhp @@ -6485,7 +6485,7 @@ "par_id6847541095\n" "help.text" msgid "YY/MM/DD" -msgstr "" +msgstr "RR/MM/DD" #. nixiA #: csv_params.xhp @@ -6494,7 +6494,7 @@ "par_id7881263433\n" "help.text" msgid "Ignore field (do not import)" -msgstr "" +msgstr "Ignoruj pole (nie importuj)" #. LEJDn #: csv_params.xhp @@ -6503,7 +6503,7 @@ "par_id6920129719\n" "help.text" msgid "US-English" -msgstr "" +msgstr "Angielski (USA)" #. wLth6 #: csv_params.xhp @@ -6512,7 +6512,7 @@ "hd_id591634740467955\n" "help.text" msgid "Character Set Codes for Token 3" -msgstr "" +msgstr "Kody zestawów znaków dla tokena 3" #. Ag4xM #: ctl.xhp @@ -7376,7 +7376,7 @@ "par_id7869502\n" "help.text" msgid "Either create a new Base file using the Database Wizard, or open any existing Base file that is not read-only." -msgstr "" +msgstr "Utwórz nowy plik Base za pomocą Kreatora bazy danych lub otwórz dowolny istniejący plik Base, który nie jest tylko do odczytu." #. JHYC6 #: data_im_export.xhp @@ -7457,7 +7457,7 @@ "par_id2584002\n" "help.text" msgid "On Windows systems, you can also use drag-and-drop instead of Copy and Paste. Also, for registered databases, you can open the datasource browser (press CommandCtrl + Shift + F4 keys) instead of opening the Base window." -msgstr "" +msgstr "W systemach Windows zamiast kopiowania i wklejania można również używać metody przeciągania i upuszczania. Również dla zarejestrowanych baz danych możesz otworzyć przeglądarkę źródła danych (naciśnij klawisze CommandCtrl + Shift + F4) zamiast otwierania okna Base." #. BNKMg #: data_new.xhp @@ -7502,7 +7502,7 @@ "par_idN105CB\n" "help.text" msgid "This opens the Database Wizard, where you create a new database file." -msgstr "" +msgstr "Spowoduje to otwarcie Kreatora bazy danych, w którym utworzysz nowy plik bazy danych." #. zTCBz #: data_new.xhp @@ -7520,7 +7520,7 @@ "par_idN105E0\n" "help.text" msgid "The Table Wizard helps you to add a table to the new database file." -msgstr "" +msgstr "Kreator tabel pomaga dodać tabelę do nowego pliku bazy danych." #. pF4kL #: data_queries.xhp @@ -7574,7 +7574,7 @@ "par_idN1061E\n" "help.text" msgid "In %PRODUCTNAME you can create a new query using the Query Wizard:" -msgstr "" +msgstr "W %PRODUCTNAME możesz utworzyć nowe zapytanie za pomocą Kreatora kwerendy:" #. DaGBc #: data_queries.xhp @@ -7646,7 +7646,7 @@ "par_idN1065F\n" "help.text" msgid "You see the Query Design window." -msgstr "" +msgstr "Zobaczysz okno Projekt kwerendy." #. xGFGr #: data_register.xhp @@ -7682,7 +7682,7 @@ "par_idN105C1\n" "help.text" msgid "Data from any database file can be registered to the installed instance of %PRODUCTNAME. To register means to tell %PRODUCTNAME where the data is located, how it is organized, how to get that data, and more. Once the database is registered, you can use the menu command View - Data source to access the data records from your text documents and spreadsheets." -msgstr "" +msgstr "Dane z dowolnego pliku bazy danych można zarejestrować w zainstalowanej instancji %PRODUCTNAME. Rejestracja oznacza poinformowanie %PRODUCTNAME, gdzie znajdują się dane, jak są zorganizowane, jak uzyskać te dane i nie tylko. Po zarejestrowaniu bazy danych możesz użyć polecenia menu Widok - Źródło danych, aby uzyskać dostęp do rekordów danych z dokumentów tekstowych i arkuszy kalkulacyjnych." #. ADK4M #: data_register.xhp @@ -7853,7 +7853,7 @@ "par_id5086825\n" "help.text" msgid "Use the toolbars and menu commands and drag-and-drop to edit the report as stated in the Report Builder guide." -msgstr "" +msgstr "Użyj pasków narzędzi i poleceń menu oraz przeciągnij i upuść, aby edytować raport zgodnie z przewodnikiem Konstruktora raportu." #. QSknJ #: data_report.xhp @@ -8132,7 +8132,7 @@ "par_id4870754\n" "help.text" msgid "Follow the instructions in the Report Builder guide." -msgstr "" +msgstr "Postępuj zgodnie z instrukcjami zawartymi w przewodniku Konstruktor raportu." #. xrbEC #: data_reports.xhp @@ -8276,7 +8276,7 @@ "par_id3159157\n" "help.text" msgid "As an example, open an empty text document and press CommandCtrl + Shift + F4 keys. Open the bibliography database table biblio in the data source view. While pressing Shift+CommandCtrl, drag a few column headers into the document so that the form fields are created." -msgstr "" +msgstr "Na przykład otwórz pusty dokument tekstowy i naciśnij klawisze CommandCtrl + Shift + F4. Otwórz tabelę bazy danych bibliografii biblio w widoku źródła danych. Naciskając Shift+CommandCtrl, przeciągnij kilka główek kolumn do dokumentu, tak aby pola formularza są tworzone." #. HNquU #: data_search2.xhp @@ -8285,7 +8285,7 @@ "par_id3150984\n" "help.text" msgid "On the Form Controls toolbar, click the Design Mode On/Off iconIcon to turn off the design mode." -msgstr "" +msgstr "Na pasku narzędzi Formanty formularza kliknij ikonę Włącz/wyłącz tryb projektuIkona, aby wyłączyć tryb projektowania." #. VGyYV #: data_search2.xhp @@ -8294,7 +8294,7 @@ "par_id3148672\n" "help.text" msgid "On the Form Navigation toolbar, click the Form-Based Filters iconIcon. The current document is displayed with its form controls as an empty edit mask. The Form Filter toolbar appears." -msgstr "" +msgstr "Na pasku narzędzi Nawigacja formularza kliknij ikonę Filtry oparte na formularzuIkona. Bieżący dokument jest wyświetlany wraz z formantami formularza jako pusta maska edycji. Pojawi się pasek narzędzi Filtr formularza." #. ESCiY #: data_search2.xhp @@ -8438,7 +8438,7 @@ "par_id3154760\n" "help.text" msgid "Each field can only accept data corresponding to the specified field type. For example, it is not possible to enter text in a number field. Memo fields in dBASE III format are references to internally-managed text files which can hold up to 64 kB text." -msgstr "" +msgstr "Każde pole może akceptować tylko dane odpowiadające określonemu typowi pola. Na przykład nie można wprowadzić tekstu w polu liczbowym. Pola memo w formacie dBASE III to odniesienia do wewnętrznie zarządzanych plików tekstowych, które mogą pomieścić do 64 KB tekstu." #. oApsQ #: data_tabledefine.xhp @@ -8528,7 +8528,7 @@ "par_idN10617\n" "help.text" msgid "Data is stored in tables. As an example, your system address book that you use for your email addresses is a table of the address book database. Each address is a data record, presented as a row in that table. The data records consist of data fields, for example the first and the last name fields and the email field." -msgstr "" +msgstr "Dane są przechowywane w tabelach. Na przykład systemowa książka adresowa, której używasz dla swoich adresów e-mail, jest tabelą bazy danych książki adresowej. Każdy adres jest rekordem danych przedstawionym jako wiersz w tej tabeli. Rekordy danych składają się z pól danych, na przykład pola imienia i nazwiska oraz pola adresu e-mail." #. No5nx #: data_tables.xhp @@ -8546,7 +8546,7 @@ "par_idN1061E\n" "help.text" msgid "In %PRODUCTNAME you can create a new table using the Table Wizard:" -msgstr "" +msgstr "W %PRODUCTNAME możesz utworzyć nową tabelę za pomocą Kreatora tabeli:" #. aBysk #: data_tables.xhp @@ -8726,7 +8726,7 @@ "par_idN105D1\n" "help.text" msgid "The database file gives you full access to tables, queries, reports, and forms. You can edit the structure of your tables and change the contents of the data records." -msgstr "" +msgstr "Plik bazy danych zapewnia pełny dostęp do tabel, kwerend, raportów i formularzy. Możesz edytować strukturę swoich tabel i zmieniać zawartość rekordów danych." #. drvbN #: data_view.xhp @@ -8780,7 +8780,7 @@ "par_idN105F1\n" "help.text" msgid "Working with databases in %PRODUCTNAME" -msgstr "" +msgstr "Praca z bazami danych w %PRODUCTNAME" #. VPAta #: database_main.xhp @@ -8798,7 +8798,7 @@ "par_id3149415\n" "help.text" msgid "Choose View - Data Sources or press CommandCtrl + Shift + F4 keys to call the data source view from a text document or spreadsheet." -msgstr "" +msgstr "Wybierz Widok - Źródła danych lub naciśnij klawisze CommandCtrl + Shift + F4 do wywoływania widoku źródła danych z dokumentu tekstowego lub arkusza kalkulacyjnego." #. mHDEG #: database_main.xhp @@ -8843,7 +8843,7 @@ "par_idN106A4\n" "help.text" msgid "Menu bar of a database file" -msgstr "" +msgstr "Pasek menu pliku bazy danych" #. QGxEh #: database_main.xhp @@ -8906,7 +8906,7 @@ "par_idN1072A\n" "help.text" msgid "Query Wizard" -msgstr "" +msgstr "Kreator kwerendy" #. TjEU4 #: database_main.xhp @@ -8942,7 +8942,7 @@ "par_idN1078F\n" "help.text" msgid "Table Wizard" -msgstr "" +msgstr "Kreator tabeli" #. x7kax #: database_main.xhp @@ -8960,7 +8960,7 @@ "tit\n" "help.text" msgid "Development Tools" -msgstr "" +msgstr "Narzędzia programistyczne" #. EQHbW #: dev_tools.xhp @@ -8969,7 +8969,7 @@ "bm_id821562797360035\n" "help.text" msgid "development tools object inspector" -msgstr "" +msgstr "narzędzia programistyczne inspektor obiektów" #. SfpDF #: dev_tools.xhp @@ -8987,7 +8987,7 @@ "par_id3155069\n" "help.text" msgid "Inspects objects in %PRODUCTNAME documents and shows supported UNO services, as well as available methods, properties and implemented interfaces." -msgstr "" +msgstr "Sprawdza obiekty w dokumentach %PRODUCTNAME i pokazuje obsługiwane usługi UNO, a także dostępne metody, właściwości i zaimplementowane interfejsy." #. DtSfG #: dev_tools.xhp @@ -8996,7 +8996,7 @@ "par_id791647281944610\n" "help.text" msgid "This feature also allows to explore the document structure using the Document Object Model (DOM)." -msgstr "" +msgstr "Ta funkcja umożliwia również eksplorację struktury dokumentu za pomocą Document Object Model (DOM)." #. st97j #: dev_tools.xhp @@ -9005,7 +9005,7 @@ "par_id961562795750725\n" "help.text" msgid "Choose Tools - Development Tools" -msgstr "" +msgstr "Wybierz Narzędzia - Narzędzia programistyczne" #. G6m74 #: dev_tools.xhp @@ -9014,7 +9014,7 @@ "par_id241637079282587\n" "help.text" msgid "Icon Development Tools" -msgstr "" +msgstr "Ikona narzędzi programistycznych" #. Adauw #: dev_tools.xhp @@ -9023,7 +9023,7 @@ "par_id991637079282590\n" "help.text" msgid "Development Tools" -msgstr "" +msgstr "Narzędzia programistyczne" #. EcEEb #: dev_tools.xhp @@ -9032,7 +9032,7 @@ "par_id271627931218557\n" "help.text" msgid "The Development Tools are visible in all documents of %PRODUCTNAME Writer, Calc, Impress and Draw. The display is persistent and remain visible until deselected." -msgstr "" +msgstr "Narzędzia programistyczne są widoczne we wszystkich dokumentach programów %PRODUCTNAME Writer, Calc, Impress i Draw. Wyświetlenie jest trwałe i pozostaje widoczne do momentu odznaczenia." #. YrKDj #: dev_tools.xhp @@ -9041,7 +9041,7 @@ "par_id3152821\n" "help.text" msgid "When Development Tools is enabled, a dockable window is shown at the bottom of the screen. This window has two sections:" -msgstr "" +msgstr "Gdy Narzędzia programistyczne są włączone, u dołu ekranu wyświetlane jest dokowalne okno. To okno ma dwie sekcje:" #. e28an #: dev_tools.xhp @@ -9050,7 +9050,7 @@ "par_id31627862228021\n" "help.text" msgid "Document Object Model tree view: Displays document portions according to the Document Object Model (DOM). Use this section to choose the object to inspect." -msgstr "" +msgstr "Widok drzewa Document Object Model (DOM): Wyświetla części dokumentu zgodnie z Document Object Model (DOM). Skorzystaj z tej sekcji, aby wybrać obiekt do sprawdzenia." #. fJXDt #: dev_tools.xhp @@ -9059,7 +9059,7 @@ "par_id581627862228381\n" "help.text" msgid "Object inspection panel: Displays the available services, methods, properties and interfaces of the selected object." -msgstr "" +msgstr "Panel inspekcji obiektów: wyświetla dostępne usługi, metody, właściwości i interfejsy wybranego obiektu." #. fiPDo #: dev_tools.xhp @@ -9068,7 +9068,7 @@ "par_id91627862617231\n" "help.text" msgid "This feature is available since %PRODUCTNAME 7.2 for Writer, Calc, Impress and Draw." -msgstr "" +msgstr "Ta funkcja jest dostępna od wersji 7.2 %PRODUCTNAME w programach Writer, Calc, Impress i Draw." #. 5J2jc #: dev_tools.xhp @@ -9077,7 +9077,7 @@ "hd_id791627911297568\n" "help.text" msgid "Document Model Tree View" -msgstr "" +msgstr "Widok drzewa modelu dokumentu" #. WCR6k #: dev_tools.xhp @@ -9086,7 +9086,7 @@ "par_id3153303\n" "help.text" msgid "The left side of the window contains a Current Selection toggle button, a Refresh button and a tree view that displays all objects in the document." -msgstr "" +msgstr "Lewa strona okna zawiera przycisk przełączania Bieżący wybór, przycisk Odśwież oraz widok drzewa, który wyświetla wszystkie obiekty w dokumencie." #. DEPEn #: dev_tools.xhp @@ -9095,7 +9095,7 @@ "par_id891627912224207\n" "help.text" msgid "The behavior of the tree view depends on the status of the Current Selection toggle button:" -msgstr "" +msgstr "Zachowanie widoku drzewa zależy od stanu przycisku przełączania Bieżący wybór:" #. CJUxG #: dev_tools.xhp @@ -9104,7 +9104,7 @@ "par_id811627912238786\n" "help.text" msgid "Click on Current Selection to display the properties of the object currently selected in the document. Hence, clicking any item in the tree view have no effect." -msgstr "" +msgstr "Kliknij Bieżący wybór, aby wyświetlić właściwości obiektu aktualnie wybranego w dokumencie. W związku z tym kliknięcie dowolnego elementu w widoku drzewa nie ma żadnego efektu." #. C3mpn #: dev_tools.xhp @@ -9113,7 +9113,7 @@ "par_id721627912239053\n" "help.text" msgid "Click on Current Selection again to display any item in the tree view and update the contents of the Object Inspection Panel." -msgstr "" +msgstr "Kliknij ponownie Bieżący wybór, aby wyświetlić dowolny element w widoku drzewa i zaktualizować zawartość Panelu inspekcji obiektów." #. PmkTZ #: dev_tools.xhp @@ -9122,7 +9122,7 @@ "par_id931627912467594\n" "help.text" msgid "The types of objects displayed by the Document Model Tree View depend on the %PRODUCTNAME application being used:" -msgstr "" +msgstr "Typy obiektów wyświetlanych w Widoku drzewa modeli dokumentu zależą od używanej aplikacji %PRODUCTNAME:" #. AMFhp #: dev_tools.xhp @@ -9131,7 +9131,7 @@ "par_id691627912559559\n" "help.text" msgid "%PRODUCTNAME application" -msgstr "" +msgstr "Aplikacja %PRODUCTNAME" #. 44vcy #: dev_tools.xhp @@ -9140,7 +9140,7 @@ "par_id771627912559559\n" "help.text" msgid "Supported objects" -msgstr "" +msgstr "Obsługiwane obiekty" #. meXjs #: dev_tools.xhp @@ -9149,7 +9149,7 @@ "par_id941627912559559\n" "help.text" msgid "Paragraphs
Text Portions in a Paragraph
Shapes
Tables
Frames
Graphic Objects
Embedded Objects (OLE)
Style Families and Styles" -msgstr "" +msgstr "Akapity
Części tekstu w akapicie
Kształty
Tabele
Ramki
Obiekty graficzne
Obiekty osadzone (OLE)
Rodziny stylów i style" #. SHryG #: dev_tools.xhp @@ -9158,7 +9158,7 @@ "par_id601627912702265\n" "help.text" msgid "Sheets
Shapes per sheet
Charts per sheet
Pivot tables per sheet
Style Families and Styles" -msgstr "" +msgstr "Arkusze
Kształty na arkusz
Wykresy na arkusz
Tabele przestawne na arkusz
Rodziny stylów i style" #. G7tq6 #: dev_tools.xhp @@ -9167,7 +9167,7 @@ "par_id561627912902324\n" "help.text" msgid "Slides
Shapes per slide
Master slides
Style Families and Styles" -msgstr "" +msgstr "Slajdy
Kształty na slajd
Slajdy główne
Rodziny stylów i style" #. QBNop #: dev_tools.xhp @@ -9176,7 +9176,7 @@ "par_id561627912902123\n" "help.text" msgid "Pages
Shapes per page
Style Families and Styles" -msgstr "" +msgstr "Strony
Kształty na stronę
Rodziny stylów i style" #. SsmFY #: dev_tools.xhp @@ -9185,7 +9185,7 @@ "hd_id731627913346236\n" "help.text" msgid "Object Inspection Panel" -msgstr "" +msgstr "Panel inspekcji obiektów" #. ULvie #: dev_tools.xhp @@ -9194,7 +9194,7 @@ "par_id571627913372273\n" "help.text" msgid "The right side of the window is the Object Inspection Panel that displays information about the object being inspected." -msgstr "" +msgstr "Prawa strona okna to Panel inspekcji obiektów, który wyświetla informacje o kontrolowanym obiekcie." #. KJDUA #: dev_tools.xhp @@ -9203,7 +9203,7 @@ "par_id361627930602108\n" "help.text" msgid "Class Name: is the name of the object class." -msgstr "" +msgstr "Nazwa klasy: to nazwa klasy obiektu." #. TbDBD #: dev_tools.xhp @@ -9221,7 +9221,7 @@ "par_id371627930700568\n" "help.text" msgid "You can inspect the object further by using the four tabs available that display its Interfaces, Services, Properties and Methods." -msgstr "" +msgstr "Możesz dokładniej sprawdzić obiekt, korzystając z czterech dostępnych kart, które wyświetlają jego Interfejsy, Usługi, Właściwości i Metody." #. hd4cE #: dev_tools.xhp @@ -9230,7 +9230,7 @@ "par_id71627913884995\n" "help.text" msgid "The information about the object is organized in columns in each tab. The set of columns displayed depend on the selected tab." -msgstr "" +msgstr "Informacje o obiekcie są uporządkowane w kolumnach na każdej karcie. Zestaw wyświetlanych kolumn zależy od wybranej karty." #. RECVL #: dev_tools.xhp @@ -9239,7 +9239,7 @@ "hd_id511627914011995\n" "help.text" msgid "Interfaces tab" -msgstr "" +msgstr "Karta Interfejsy" #. FJcvE #: dev_tools.xhp @@ -9248,7 +9248,7 @@ "par_id321627914033147\n" "help.text" msgid "Contains a single column presenting the list of interfaces implemented by the object." -msgstr "" +msgstr "Zawiera pojedynczą kolumnę prezentującą listę interfejsów zaimplementowanych przez obiekt." #. BF7qu #: dev_tools.xhp @@ -9257,7 +9257,7 @@ "hd_id21627913972266\n" "help.text" msgid "Services tab" -msgstr "" +msgstr "Karta Usługi" #. HZPma #: dev_tools.xhp @@ -9266,7 +9266,7 @@ "par_id371627913989665\n" "help.text" msgid "Contains a single column presenting the list of services supported by the object." -msgstr "" +msgstr "Zawiera pojedynczą kolumnę prezentującą listę usług obsługiwanych przez obiekt." #. NGnte #: dev_tools.xhp @@ -9275,7 +9275,7 @@ "hd_id901627914056156\n" "help.text" msgid "Properties tab" -msgstr "" +msgstr "Karta Właściwości" #. 9kX9a #: dev_tools.xhp @@ -9284,7 +9284,7 @@ "par_id531627914066770\n" "help.text" msgid "Contains four columns that describe the properties of the object:" -msgstr "" +msgstr "Zawiera cztery kolumny opisujące właściwości obiektu:" #. eNhy9 #: dev_tools.xhp @@ -9293,7 +9293,7 @@ "par_id461627914264898\n" "help.text" msgid "Property: Shows the names of the object properties." -msgstr "" +msgstr "Właściwość: pokazuje nazwy właściwości obiektu." #. hDfcB #: dev_tools.xhp @@ -9302,7 +9302,7 @@ "par_id491627914265327\n" "help.text" msgid "Value: Displays a textual representation of the current property value." -msgstr "" +msgstr "Wartość: wyświetla tekstową reprezentację bieżącej wartości właściwości." #. 7P4rv #: dev_tools.xhp @@ -9311,7 +9311,7 @@ "par_id981627914265672\n" "help.text" msgid "Type: Shows the property type." -msgstr "" +msgstr "Typ: pokazuje typ właściwości." #. VxeGP #: dev_tools.xhp @@ -9320,7 +9320,7 @@ "par_id391627914265992\n" "help.text" msgid "Info: display relevant information about the property. For example, a read-only property displays \"read-only\" in this column." -msgstr "" +msgstr "Informacje: wyświetla istotne informacje o usłudze. Na przykład właściwość tylko do odczytu wyświetla w tej kolumnie wartość \"tylko do odczytu\"." #. L6iHf #: dev_tools.xhp @@ -9329,7 +9329,7 @@ "par_id161627914138859\n" "help.text" msgid "The Properties tab also includes a text box on the bottom to display the full textual representation of the property value." -msgstr "" +msgstr "Karta Właściwości zawiera również pole tekstowe na dole, w którym wyświetlana jest pełna reprezentacja tekstowa wartości właściwości." #. ptFVa #: dev_tools.xhp @@ -9338,7 +9338,7 @@ "hd_id941627914764723\n" "help.text" msgid "Methods tab" -msgstr "" +msgstr "Karta Metody" #. XBugD #: dev_tools.xhp @@ -9347,7 +9347,7 @@ "par_id671627914803456\n" "help.text" msgid "Contains four columns that describe the combined list of methods that can be called by the current object:" -msgstr "" +msgstr "Zawiera cztery kolumny opisujące połączoną listę metod, które mogą być wywoływane przez bieżący obiekt:" #. iFvEX #: dev_tools.xhp @@ -9356,7 +9356,7 @@ "par_id281627914839271\n" "help.text" msgid "Method: Shows the names of all methods of the object." -msgstr "" +msgstr "Metoda: pokazuje nazwy wszystkich metod obiektu." #. hFE8H #: dev_tools.xhp @@ -9365,7 +9365,7 @@ "par_id421627914839748\n" "help.text" msgid "Return type: Displays the return type of the object methods. Methods that do not return any value are marked as \"void\" in this column." -msgstr "" +msgstr "Typ zwracany: wyświetla typ zwracany metod obiektu. Metody, które nie zwracają żadnej wartości, są w tej kolumnie oznaczone jako \"void\"." #. NwGtg #: dev_tools.xhp @@ -9374,7 +9374,7 @@ "par_id891627914840174\n" "help.text" msgid "Parameters: Shows the list of parameters that are required by the method as well as their respective types." -msgstr "" +msgstr "Parametry: wyświetla listę parametrów wymaganych przez metodę oraz ich typy." #. KDTST #: dev_tools.xhp @@ -9383,7 +9383,7 @@ "par_id371627914840561\n" "help.text" msgid "Implementation class: Displays the name of the class where the method is implemented." -msgstr "" +msgstr "Klasa implementacji: wyświetla nazwę klasy, w której metoda jest implementowana." #. WNbRY #: digital_signatures.xhp @@ -9617,7 +9617,7 @@ "par_id0821200910191774\n" "help.text" msgid "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the document are signed\" when loaded in the newer software." -msgstr "" +msgstr "Gdy podpiszesz dokument za pomocą OpenOffice.org 3.2 lub StarOffice 9.2 lub nowszej wersji i otworzysz ten dokument w starszej wersji oprogramowania, podpis zostanie wyświetlony jako \"nieważny\". Podpisy utworzone za pomocą starszych wersji oprogramowania zostaną oznaczone komunikatem \"tylko części dokumentu są podpisane\" po załadowaniu do nowszego oprogramowania." #. oct56 #: digital_signatures.xhp @@ -9680,7 +9680,7 @@ "par_id7953123\n" "help.text" msgid "Example: Think about someone who wants to camouflage his identity to be a sender from your bank. He can easily get a certificate using a false name, then send you any signed email pretending he is working for your bank. You will get that email, and the email or the document within has the \"valid signed\" icon." -msgstr "" +msgstr "Przykład: pomyśl o kimś, kto chce zakamuflować swoją tożsamość, aby być nadawcą z Twojego banku. Może łatwo uzyskać certyfikat przy użyciu fałszywego nazwiska, a następnie wysłać Ci podpisany e-mail, udając, że pracuje dla Twojego banku. Otrzymasz ten e-mail, a e-mail lub dokument w nim zawarty ma ikonę \"ważny podpisany\"." #. DGz9C #: digital_signatures.xhp @@ -9761,7 +9761,7 @@ "hd_id4989165\n" "help.text" msgid "Opening a Document Using WebDAV over HTTPS" -msgstr "" +msgstr "Otwieranie dokumentu za pomocą WebDAV poprzez HTTPS" #. csKmQ #: digitalsign_receive.xhp @@ -9869,7 +9869,7 @@ "par_id1251258\n" "help.text" msgid "View Certificate - Opens the View Certificate dialog." -msgstr "Wyświetl certyfikatwyświetla okno dialogowe Zobacz certyfikat." +msgstr "Zobacz certyfikatwyświetla okno dialogowe Zobacz certyfikat." #. BXyF3 #: digitalsign_receive.xhp @@ -9986,7 +9986,7 @@ "par_idN10640\n" "help.text" msgid "You can get a certificate from a certification authority. No matter if you choose a governmental institution or a private company it is common to be charged for this service, for example when they certify your identity. Few other authorities issue certificates free of costs, like the Open Source Project CAcert which is based on the well-known and reliable Web of Trust model and is of growing popularity." -msgstr "" +msgstr "Możesz uzyskać certyfikat od urzędu certyfikacji. Bez względu na to, czy wybierzesz instytucję rządową, czy prywatną firmę, często pobierana jest opłata za tę usługę, na przykład po potwierdzeniu Twojej tożsamości. Niewiele innych urzędów wydaje certyfikaty bezpłatnie, na przykład Open Source Project CAcert, który opiera się na dobrze znanym i niezawodnym modelu Web of Trust oraz cieszy się rosnącą popularnością." #. wXEGF #: digitalsign_send.xhp @@ -10013,7 +10013,7 @@ "par_idN10720\n" "help.text" msgid "If you have created different profiles in Thunderbird or Firefox and you want to use certificates from one specific user profile, select the profile in %PRODUCTNAME - PreferencesTools - Options - Security - Certificate Path. Alternatively, you can set the environment variable MOZILLA_CERTIFICATE_FOLDER to point to the folder containing that profile." -msgstr "" +msgstr "Jeśli utworzono różne profile w programie Thunderbird lub Firefox i chcesz używać certyfikatów z jednego konkretnego profilu użytkownika, wybierz profil w %PRODUCTNAME - PreferencjeNarzędzia - Opcje - Bezpieczeństwo - Ścieżka certyfikatu. Alternatywnie możesz ustawić zmienną środowiskową MOZILLA_CERTIFICATE_FOLDER tak, aby wskazywała folder zawierający ten profil." #. gFHy4 #: digitalsign_send.xhp @@ -10022,7 +10022,7 @@ "par_id944242\n" "help.text" msgid "Open your web browser’s preferences, select the Advanced section, click on the Certificates tab, and then choose View Certificates. The Certificate Manager dialog will appear." -msgstr "Otwórz okno preferencji przeglądarki internetowej, wybierz sekcję Zaawansowane, kliknij w kartę Certyfikaty, a następnie wybierz Wyświetl certyfikaty. Pojawi się okno Menadżera certyfikatów." +msgstr "Otwórz okno preferencji przeglądarki internetowej, wybierz sekcję Zaawansowane, kliknij w kartę Certyfikaty, a następnie wybierz Zobacz certyfikat. Pojawi się okno Menadżera certyfikatów." #. 3w5HD #: digitalsign_send.xhp @@ -10049,7 +10049,7 @@ "par_id921519766138177\n" "help.text" msgid "On Windows systems, %PRODUCTNAME will access the system certificate storage." -msgstr "" +msgstr "W systemach Windows program %PRODUCTNAME uzyska dostęp do magazynu certyfikatów systemowych." #. CDWbJ #: digitalsign_send.xhp @@ -10058,7 +10058,7 @@ "par_id461519763996407\n" "help.text" msgid "Your private key for the digital signature will usually be generated and securely stored by Windows as part of the signature-issuance process. Once the issuing Certificate Authority is satisfied that your computer produced the private key and you have satisfied any other identification requirements, the corresponding public key is signed by the Certificate Authority. For personal keys obtained over the Internet, the private key is generated by your browser and it is not shared with the Certificate Authority." -msgstr "" +msgstr "Twój klucz prywatny do podpisu cyfrowego jest zwykle generowany i bezpiecznie przechowywany przez system Windows w ramach procesu wystawiania podpisu. Po upewnieniu się przez wystawiający urząd certyfikacji, że Twój komputer wygenerował klucz prywatny i że spełniłeś wszystkie inne wymagania dotyczące identyfikacji, odpowiedni klucz publiczny jest podpisany przez urząd certyfikacji. W przypadku kluczy osobistych uzyskanych przez Internet klucz prywatny jest generowany przez Twoją przeglądarkę i nie jest udostępniany Urzędowi Certyfikacji." #. R9DdF #: digitalsign_send.xhp @@ -10085,7 +10085,7 @@ "par_id351519764024243\n" "help.text" msgid "The general management of public and private keys on your PC will vary depending on the version of Windows you are operating. For more information, use the \"Help and Support\" topic of your Windows version and search for \"digital signature\"." -msgstr "" +msgstr "Ogólne zarządzanie kluczami publicznymi i prywatnymi na komputerze będzie się różnić w zależności od używanej wersji systemu Windows. Aby uzyskać więcej informacji, skorzystaj z tematu \"Pomoc i wsparcie” w swojej wersji systemu Windows i wyszukaj hasło \"podpis cyfrowy\"." #. 87CDG #: digitalsign_send.xhp @@ -10103,7 +10103,7 @@ "par_idN10688\n" "help.text" msgid "Choose File - Digital Signatures - Digital Signatures." -msgstr "" +msgstr "Wybierz Plik - Podpisy cyfrowe - Podpisy cyfrowe." #. F7FFo #: digitalsign_send.xhp @@ -10121,7 +10121,7 @@ "par_idN10698\n" "help.text" msgid "After saving, you see the Digital Signatures dialog. Click Add to add a public key to the document." -msgstr "" +msgstr "Po zapisaniu zobaczysz okno dialogowe Podpisy cyfrowe. Kliknij Dodaj, aby dodać klucz publiczny do dokumentu." #. hDKuq #: digitalsign_send.xhp @@ -10130,7 +10130,7 @@ "par_idN106AE\n" "help.text" msgid "In the Select Certificate dialog, select your certificate and click OK." -msgstr "" +msgstr "W oknie dialogowym Wybierz certyfikat wybierz swój certyfikat i kliknij OK." #. EUCrv #: digitalsign_send.xhp @@ -10139,7 +10139,7 @@ "par_idN106C0\n" "help.text" msgid "You see again the Digital Signatures dialog, where you can add more certificates if you want. Click OK to add the public key to the saved file." -msgstr "" +msgstr "Ponownie zobaczysz okno dialogowe Podpisy cyfrowe, w którym możesz dodać więcej certyfikatów, jeśli chcesz. Kliknij OK, aby dodać klucz publiczny do zapisanego pliku." #. cnWUe #: digitalsign_send.xhp @@ -10148,7 +10148,7 @@ "par_idN106C3\n" "help.text" msgid "A signed document shows an iconIcon in the status bar. You can double-click the icon in the status bar to view the certificate." -msgstr "" +msgstr "Podpisany dokument zawiera ikonę Ikona na pasku stanu. Możesz dwukrotnie kliknąć ikonę na pasku stanu, aby wyświetlić certyfikat." #. NudNc #: digitalsign_send.xhp @@ -10157,7 +10157,7 @@ "par_id2008200911381426\n" "help.text" msgid "The result of the signature validation is displayed in the status bar and within the Digital Signature dialog. Several documents and macro signatures can exist inside an ODF document. If there is a problem with one signature, then the validation result of that one signature is assumed for all signatures. That is, if there are ten valid signatures and one invalid signature, then the status bar and the status field in the dialog will flag the signature as invalid." -msgstr "" +msgstr "Wynik weryfikacji podpisu jest wyświetlany na pasku stanu oraz w oknie dialogowym Podpis cyfrowy. W dokumencie ODF może istnieć kilka dokumentów i podpisów makr. Jeśli występuje problem z jednym podpisem, to wynik walidacji tego jednego podpisu jest przyjmowany dla wszystkich podpisów. Oznacza to, że jeśli jest dziesięć ważnych podpisów i jeden nieważny, wówczas pasek stanu i pole stanu w oknie dialogowym oznaczą podpis jako nieprawidłowy." #. HrsLC #: digitalsign_send.xhp @@ -10202,7 +10202,7 @@ "par_idN106F5\n" "help.text" msgid "When you open the Basic IDE that contains signed macros, you see an iconIcon in the status bar.
You can double-click the icon in the status bar to view the certificate." -msgstr "" +msgstr "Gdy otworzysz podstawowe środowisko IDE zawierające podpisane makra, zobaczysz ikonę Ikona na pasku stanu.
Możesz dwukrotnie kliknąć ikonę na pasku stanu, aby wyświetlić certyfikat." #. HABQ6 #: digitalsign_send.xhp @@ -10211,7 +10211,7 @@ "par_id5734733\n" "help.text" msgid "Click to open the View Certificate dialog." -msgstr "" +msgstr "Kliknij, aby otworzyć okno dialogowe Zobacz certyfikat." #. 9UAQe #: digitalsign_send.xhp @@ -10238,7 +10238,7 @@ "par_id3204443\n" "help.text" msgid "English Wiki page on digital signatures" -msgstr "" +msgstr "Strona Wiki w języku angielskim na temat podpisów cyfrowych" #. PuRvf #: digitalsign_send.xhp @@ -10445,7 +10445,7 @@ "par_idN107A9\n" "help.text" msgid "Choose File – Open" -msgstr "" +msgstr "Wybierz Plik - Otwórz" #. AAFFU #: doc_open.xhp @@ -10454,7 +10454,7 @@ "par_id210820160859353525\n" "help.text" msgid "Choose File – Open Remote" -msgstr "" +msgstr "Wybierz Plik - Otwórz zdalny" #. QWFLw #: doc_open.xhp @@ -10517,7 +10517,7 @@ "par_id6594744\n" "help.text" msgid "One exception appears when the author of a Writer text document saves and reopens a document: The cursor will be at the same position where it has been when the document was saved. This only works when the name of the author was entered in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - User Data." -msgstr "" +msgstr "Jeden wyjątek pojawia się, gdy autor dokumentu tekstowego programu Writer zapisuje i ponownie otwiera dokument: Kursor znajdzie się w tym samym miejscu, w którym znajdował się podczas zapisywania dokumentu. Działa to tylko wtedy, gdy nazwisko autora zostało wprowadzone w %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME - Dane użytkownika." #. aLKzF #: doc_open.xhp @@ -10526,7 +10526,7 @@ "par_id3422650\n" "help.text" msgid "Press Shift+F5 to set the cursor to the last saved position." -msgstr "" +msgstr "Naciśnij Shift+F5, aby ustawić kursor na ostatnio zapisaną pozycję." #. FRWxv #: doc_open.xhp @@ -11489,7 +11489,7 @@ "par_id3155389\n" "help.text" msgid "Alternatively, select the object and choose Edit - OLE Object - Edit or choose Edit from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets." -msgstr "" +msgstr "Ewentualnie zaznacz obiekt i wybierz Edycja - Obiekt OLE - Edycja lub wybierz Edycja z menu kontekstowego. Edytujesz obiekt w jego własnej ramce w dokumencie tekstowym, ale widzisz ikony i polecenia menu potrzebne do arkuszy kalkulacyjnych." #. uFCGU #: dragdrop_table.xhp @@ -11534,7 +11534,7 @@ "hd_id3153561\n" "help.text" msgid "To make a button visible on a toolbar" -msgstr "" +msgstr "Aby przycisk był widoczny na pasku narzędzi" #. c3Nvo #: edit_symbolbar.xhp @@ -11543,7 +11543,7 @@ "par_id3159157\n" "help.text" msgid "Open the context menu of the toolbar (right click) and choose Visible Buttons and then select the button you want to display." -msgstr "" +msgstr "Otwórz menu kontekstowe paska narzędzi (prawy przycisk myszy) i wybierz Widoczne przyciski, a następnie wybierz przycisk, który chcesz wyświetlić." #. AdQVC #: edit_symbolbar.xhp @@ -11561,7 +11561,7 @@ "hd_id3151384\n" "help.text" msgid "To add a button to a toolbar" -msgstr "" +msgstr "Aby dodać przycisk do paska narzędzi" #. NAZNp #: edit_symbolbar.xhp @@ -11570,7 +11570,7 @@ "par_id3147264\n" "help.text" msgid "Choose Tools - Customize, and click on the Toolbars tab." -msgstr "" +msgstr "Wybierz Narzędzia - Dostosuj i kliknij kartę Paski narzędzi." #. p5667 #: edit_symbolbar.xhp @@ -11579,7 +11579,7 @@ "par_id3154071\n" "help.text" msgid "In the Target box, select the toolbar you want to change." -msgstr "" +msgstr "W polu Cel wybierz pasek narzędzi, który chcesz zmienić." #. aABvW #: edit_symbolbar.xhp @@ -11588,7 +11588,7 @@ "par_id3148797\n" "help.text" msgid "Select the command to be added in the Available Commands box. (Use the Category and/or Search boxes to restrict possibilities.)" -msgstr "" +msgstr "Wybierz polecenie, które chcesz dodać w polu Dostępne polecenia. (Użyj pól Kategoria i/lub Szukaj, aby ograniczyć możliwości.)" #. W6XK5 #: edit_symbolbar.xhp @@ -11597,7 +11597,7 @@ "par_id611603924436655\n" "help.text" msgid "Click the Right Arrow icon to add the selected command." -msgstr "" +msgstr "Kliknij ikonę Strzałka w prawo, aby dodać wybrane polecenie." #. E4p3Y #: edit_symbolbar.xhp @@ -11606,7 +11606,7 @@ "par_id611603924900693\n" "help.text" msgid "The check box in the Assigned Commands list controls whether the command is visible on the toolbar." -msgstr "" +msgstr "Pole wyboru na liście Przypisane polecenia określa, czy polecenie jest widoczne na pasku narzędzi." #. HcHB7 #: edit_symbolbar.xhp @@ -11615,7 +11615,7 @@ "par_id3152922\n" "help.text" msgid "You can rearrange the Assigned Commands list by selecting a command name and clicking Move Up and Move Down." -msgstr "" +msgstr "Możesz zmienić układ listy Przypisane polecenia, wybierając nazwę polecenia i klikając Przenieś w górę i Przenieś w dół." #. VgXfX #: edit_symbolbar.xhp @@ -11633,7 +11633,7 @@ "tit\n" "help.text" msgid "Sending Documents as Email" -msgstr "" +msgstr "Wysyłanie dokumentów jako wiadomości e-mail" #. noFBE #: email.xhp @@ -11642,7 +11642,7 @@ "bm_id3153345\n" "help.text" msgid "documents; sending as emailsending; documents as emailemail attachmentsfiles; sending as emailtext documents;sending as emailspreadsheets; sending as emaildrawings; sending as emailpresentations; sending as emailattachments in emails" -msgstr "" +msgstr "dokumenty; wysyłanie jako wiadomości e-mailwysyłanie; dokumenty jako wiadomości e-mailzałączniki wiadomości e-mailpliki; wysyłanie jako wiadomości e-maildokumenty tekstowe;wysyłanie jako wiadomości e-mailarkusze kalkulacyjne; wysyłanie jako wiadomości e-mailrysunki; wysyłanie jako wiadomości e-mailprezentacje; wysyłanie jako wiadomości e-mailzałączniki w wiadomościach e-mail" #. CU2Ym #: email.xhp @@ -11660,7 +11660,7 @@ "par_id3154897\n" "help.text" msgid "Working in $[officename], you can send the current document as an email attachment." -msgstr "" +msgstr "Pracując w $[nazwa_biura], możesz wysłać bieżący dokument jako załącznik do wiadomości e-mail." #. 8jsBd #: email.xhp @@ -11669,7 +11669,7 @@ "par_id3147335\n" "help.text" msgid "Choose File - Send - Email Document." -msgstr "" +msgstr "Wybierz Plik - Wyślij - Dokument e-mail." #. EGqDe #: email.xhp @@ -11678,7 +11678,7 @@ "par_id3153127\n" "help.text" msgid "$[officename] opens your default email program. If you want to send the current document with another email program, you can select the program to use with Internet - Email in the Options dialog box." -msgstr "" +msgstr "$[officename] otworzy domyślny program pocztowy. Jeśli chcesz wysłać bieżący dokument za pomocą innego programu pocztowego, wybierz go w oknie dialogowym Opcje w Internet - E-mail." #. maP2B #: email.xhp @@ -11687,7 +11687,7 @@ "par_id3150986\n" "help.text" msgid "In your email program, enter the recipient, subject and any text you want to add, then send the email." -msgstr "" +msgstr "W swoim programie pocztowym wprowadź odbiorcę, temat i dowolny tekst, który chcesz dodać, a następnie wyślij wiadomość e-mail." #. XdVXq #: email.xhp @@ -11696,7 +11696,7 @@ "par_id3595385\n" "help.text" msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.
For a text document, choose File - Send - Email as Microsoft Word. For a spreadsheet, choose File - Send - Email as Microsoft Excel. And for a presentation, choose File - Send - Email as Microsoft PowerPoint.
If you want to send the document as a read-only file, choose File - Send - Email as PDF.
These commands do not change your current document. Only a temporary copy is created and sent." -msgstr "" +msgstr "Jeśli chcesz wysłać wiadomość e-mail do odbiorcy, który ma tylko oprogramowanie, które nie odczytuje formatu OpenDocument, możesz wysłać bieżący dokument w często używanym własnościowym formacie.
W przypadku dokumentu tekstowego wybierz Plik - Wyślij - E-mail jako Microsoft Word. W przypadku arkusza kalkulacyjnego wybierz Plik - Wyślij - E-mail jako Microsoft Excel. W przypadku prezentacji wybierz Plik - Wyślij - E-mail jako Microsoft PowerPoint.
Jeśli chcesz wysłać dokument jako plik tylko do odczytu, wybierz Plik - Wyślij - E-mail jako PDF.
Te polecenia nie zmieniają bieżącego dokument. Tworzona i wysyłana jest tylko tymczasowa kopia." #. MK28A #: error_report.xhp @@ -11705,7 +11705,7 @@ "tit\n" "help.text" msgid "Crash Report Tool" -msgstr "" +msgstr "Narzędzie raportowania awarii" #. uvF7J #: error_report.xhp @@ -11714,7 +11714,7 @@ "bm_id3150616\n" "help.text" msgid "Crash Report Tool reports;crash reports crash reports activating;Crash Report Tool" -msgstr "" +msgstr "Narzędzie raportowania awarii raporty;raporty o awarii raporty o awarii aktywacja;Narzędzie raportowania awarii" #. sNc7D #: error_report.xhp @@ -11732,7 +11732,7 @@ "par_id3153345\n" "help.text" msgid "The Crash Report Tool starts automatically after a program crash occurs." -msgstr "" +msgstr "Narzędzie raportowania awarii uruchamia się automatycznie po wystąpieniu awarii programu." #. MGnxx #: error_report.xhp @@ -11741,7 +11741,7 @@ "par_id3147088\n" "help.text" msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report." -msgstr "" +msgstr "Narzędzie raportowania awarii gromadzi niezbędne informacje, które mogą pomóc twórcom programu w ulepszaniu kodu, tak aby w późniejszych wersjach można było uniknąć tego błędu. Pomóż nam ulepszyć oprogramowanie i prześlij wygenerowany raport o awarii." #. aWFas #: error_report.xhp @@ -11750,7 +11750,7 @@ "hd_id3148538\n" "help.text" msgid "Starting the Crash Report Tool" -msgstr "" +msgstr "Uruchamianie Narzędzia raportowania awarii" #. nTAZD #: error_report.xhp @@ -11759,7 +11759,7 @@ "par_id3149811\n" "help.text" msgid "With most program crashes the Crash Report Tool will start automatically." -msgstr "" +msgstr "W przypadku większości awarii zostanie automatycznie uruchomione Narzędzie raportowania błędów." #. ioZKn #: error_report.xhp @@ -11768,7 +11768,7 @@ "hd_id3159399\n" "help.text" msgid "Sending the Crash Report" -msgstr "" +msgstr "Wysyłanie raportu o awarii" #. QZiPi #: error_report.xhp @@ -11777,7 +11777,7 @@ "par_id711605615413339\n" "help.text" msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the Send Crash Report button." -msgstr "" +msgstr "Zaznacz pole wyboru, jeśli chcesz ponownie uruchomić %PRODUCTNAME w trybie awaryjnym. Następnie kliknij przycisk Wyślij raport o awarii." #. SPdCD #: error_report.xhp @@ -11786,7 +11786,7 @@ "par_id521605621252890\n" "help.text" msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser." -msgstr "" +msgstr "Jeśli raport o awarii zostanie wysłany pomyślnie, w oknie dialogowym pojawi się adres URL raportu. Aby zobaczyć raport, skopiuj adres URL i wklej go w przeglądarce internetowej." #. 3PFBB #: error_report.xhp @@ -11795,7 +11795,7 @@ "par_id3149670\n" "help.text" msgid "You will not get an answer to your crash report. If you need support, please visit Community Assistance for an overview of different possibilities." -msgstr "" +msgstr "Nie otrzymasz odpowiedzi na raport o awarii. Jeśli potrzebujesz pomocy, odwiedź witrynę Pomoc dla społeczności, aby zapoznać się z różnymi możliwościami." #. jaz2y #: error_report.xhp @@ -11804,7 +11804,7 @@ "hd_id3150792\n" "help.text" msgid "What Data are Sent?" -msgstr "" +msgstr "Jakie dane są wysyłane?" #. CHASG #: error_report.xhp @@ -11822,7 +11822,7 @@ "par_id731607157836334\n" "help.text" msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU type and features; total RAM memory size; graphics device and driver)." -msgstr "" +msgstr "Wysyłane są również informacje o wersji programu %PRODUCTNAME, nazwie i wersji systemu operacyjnego oraz sprzęcie komputerowym (typ i funkcje procesora, całkowity rozmiar pamięci RAM, urządzenie graficzne i sterownik)." #. oCk4J #: error_report.xhp @@ -11831,7 +11831,7 @@ "par_id3150504\n" "help.text" msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request." -msgstr "" +msgstr "Raport o awarii jest anonimowy. Nie są wysyłane żadne informacje identyfikacyjne ani treść dokumentu. Dane raportu są wysyłane jako wieloczęściowe żądanie HTTP POST." #. uD7Ga #: export_ms.xhp @@ -12110,7 +12110,7 @@ "par_id3153711\n" "help.text" msgid "The filter conditions that have been set appear in the Filter navigator. As soon as a filter is set, you see a blank filter entry at the bottom of the Filter navigator . You can select this entry by clicking the word \"Or\". Once you have selected the blank filter entry, you can enter additional filter conditions in the form. These conditions are linked by Boolean OR to the previously defined conditions." -msgstr "" +msgstr "Ustawione warunki filtrowania pojawiają się w Nawigatorze filtrów. Gdy tylko filtr zostanie ustawiony, na dole Nawigatora filtrów pojawi się pusty wpis filtra. Możesz wybrać ten wpis, klikając słowo \"Lub\". Po wybraniu pustego wpisu filtra możesz wprowadzić dodatkowe warunki filtrowania w formularzu. Warunki te są połączone logicznym OR z poprzednio zdefiniowanymi warunkami." #. zBSLq #: filternavigator.xhp @@ -12119,7 +12119,7 @@ "par_id3145620\n" "help.text" msgid "The context menu can be called for each entry in the Filter navigator. You can edit the filter conditions in this area directly as text. If you wish to check if a field has content or no content, you can select the filter conditions \"empty\" (SQL:\"Is Null\") or \"not empty\" (SQL: \"Is not Null\"). It is also possible to delete the entry by using the context menu." -msgstr "" +msgstr "Menu kontekstowe można wywołać dla każdego wpisu w Nawigatorze filtrów. Możesz edytować warunki filtrowania w tym obszarze bezpośrednio jako tekst. Jeśli chcesz sprawdzić, czy pole zawiera treść, czy nie, możesz wybrać warunki filtrowania \"puste\" (SQL: \"Is Null\") lub \"niepuste\" (SQL: \"Is Not Null\"). Możliwe jest również usunięcie wpisu za pomocą menu kontekstowego." #. ZCGLY #: filternavigator.xhp @@ -12146,7 +12146,7 @@ "bm_id5681020\n" "help.text" msgid "fonts;findingfont attributes;findingtext attributes;findingattributes; findingFind & Replace;attributesfinding; attributesresetting;Find & Replace mode" -msgstr "" +msgstr "czcionki;znajdowanieatrybuty czcionek;znajdowanieatrybuty tekstu;znajdowanieatrybuty; znajdowanieZnajdź i zamień;atrybutyznajdowanie; atrybutyresetowanie;tryb Znajdź i zamień" #. 5zBUL #: find_attributes.xhp @@ -12398,7 +12398,7 @@ "bm_id3152801\n" "help.text" msgid "toolbars;docking/undocking toolbars;viewing/closing toolbars;locking/unlocking closing;toolbars docking;toolbars fixing toolbars detaching toolbars placing toolbars positioning;toolbars moving;toolbars attaching toolbars floating toolbars windows;docking viewing;toolbars showing;toolbars icon bars, see toolbars button bars, see toolbars" -msgstr "" +msgstr "paski narzędzi;dokowanie/oddokowanie paski narzędzi;przeglądanie/zamykanie paski narzędzi;blokowanie/odblokowywanie zamykanie;paski narzędzi dokowanie ;paski narzędzi ustawianie pasków narzędzi odłączanie pasków narzędzi umieszczanie pasków narzędzi pozycjonowanie;paski narzędzi przesuwanie;paski narzędzi dołączanie pasków narzędzi pływające paski narzędzi okna;dokowanie przeglądanie;paski narzędzi wyświetlanie;paski narzędzi paski ikon, zobacz paski narzędzi paski przycisków, zobacz paski narzędzi" #. hA6wB #: floating_toolbar.xhp @@ -12416,7 +12416,7 @@ "par_id201608908867251\n" "help.text" msgid "Toolbars in %PRODUCTNAME can be either docked as part of the main window, or floating as a separate window. By default, the visible toolbars and the ones you open with View – Toolbars are docked, and their positions are locked." -msgstr "" +msgstr "Paski narzędzi w programie %PRODUCTNAME mogą być zadokowane jako część okna głównego lub przestawne jako osobne okno. Domyślnie widoczne paski narzędzi i te, które otwierasz za pomocą Widok - Paski narzędzi są zadokowane, a ich pozycje są zablokowane." #. i9a3V #: floating_toolbar.xhp @@ -12479,7 +12479,7 @@ "par_id295724\n" "help.text" msgid "Click the icon in the toolbar's title bar, or choose Close Toolbar from the context menu. The toolbar will be shown automatically again when the context becomes active again." -msgstr "" +msgstr "Kliknij ikonę na pasku tytułu paska narzędzi lub wybierz Zamknij pasek narzędzi z menu kontekstowego. Pasek narzędzi zostanie ponownie wyświetlony automatycznie, gdy kontekst ponownie stanie się aktywny." #. SG6DB #: floating_toolbar.xhp @@ -12497,7 +12497,7 @@ "par_id9776909\n" "help.text" msgid "While the toolbar is visible, choose View – Toolbars and click the name of the toolbar to remove the check mark." -msgstr "" +msgstr "Gdy pasek narzędzi jest widoczny, wybierz Widok - Paski narzędzi i kliknij nazwę paska narzędzi, aby usunąć zaznaczenie." #. icSJb #: floating_toolbar.xhp @@ -12506,7 +12506,7 @@ "hd_idN1077E\n" "help.text" msgid "To Show a Closed Toolbar" -msgstr "" +msgstr "Aby wyświetlić zamknięty pasek narzędzi" #. EScnW #: floating_toolbar.xhp @@ -12515,7 +12515,7 @@ "par_idN10785\n" "help.text" msgid "Choose View – Toolbars and click the name of the toolbar." -msgstr "" +msgstr "Wybierz Widok - Paski narzędzi i kliknij nazwę paska narzędzi." #. pv9hG #: floating_toolbar.xhp @@ -12524,7 +12524,7 @@ "par_id7296975\n" "help.text" msgid "Choose View – Toolbars – Reset to reset the toolbars to their default context sensitive behavior. Now some toolbars will be shown automatically, dependent on the context." -msgstr "" +msgstr "Wybierz Widok - Paski narzędzi - Resetuj, aby zresetować paski narzędzi do ich domyślnego zachowania zależnego od kontekstu. Teraz niektóre paski narzędzi będą wyświetlane automatycznie, w zależności od kontekstu." #. TpoEB #: floating_toolbar.xhp @@ -12533,7 +12533,7 @@ "hd_id981608909383980\n" "help.text" msgid "To Unlock a Docked Toolbar" -msgstr "" +msgstr "Aby odblokować zadokowany pasek narzędzi" #. hq3GB #: floating_toolbar.xhp @@ -12542,7 +12542,7 @@ "par_id21608909469876\n" "help.text" msgid "Right-click the toolbar and choose Lock Toolbar Position from the context menu so that it is unchecked. A small vertical handle appears at the start of an unlocked toolbar, which you can use to move the toolbar." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy pasek narzędzi i wybierz Zablokuj pozycję paska narzędzi z menu kontekstowego, aby usunąć zaznaczenie. Na początku odblokowanego paska narzędzi pojawia się mały pionowy uchwyt, za pomocą którego można przesuwać pasek narzędzi." #. FMTD8 #: floating_toolbar.xhp @@ -12551,7 +12551,7 @@ "hd_id911608910290237\n" "help.text" msgid "To Lock a Docked Toolbar" -msgstr "" +msgstr "Aby zablokować zadokowany pasek narzędzi" #. 6DT2v #: floating_toolbar.xhp @@ -12560,7 +12560,7 @@ "par_id741608910160801\n" "help.text" msgid "You can lock the position of a toolbar by choosing Lock Toolbar Position again from the context menu, so that it is checked." -msgstr "" +msgstr "Możesz zablokować pozycję paska narzędzi, wybierając ponownie Zablokuj pozycję paska narzędzi z menu kontekstowego, tak aby była zaznaczona." #. WDMDm #: floating_toolbar.xhp @@ -12569,7 +12569,7 @@ "hd_idN106E9\n" "help.text" msgid "To Make a Toolbar a Floating Toolbar" -msgstr "" +msgstr "Aby przełączyć pasek narzędzi w tryb przestawny" #. SibLS #: floating_toolbar.xhp @@ -12578,7 +12578,7 @@ "par_idN106EF\n" "help.text" msgid "Click the toolbar handle and drag the toolbar into the document." -msgstr "" +msgstr "Kliknij uchwyt paska narzędzi i przeciągnij pasek narzędzi do dokumentu." #. k7YCp #: floating_toolbar.xhp @@ -12587,7 +12587,7 @@ "hd_idN106F2\n" "help.text" msgid "To Reattach a Floating Toolbar" -msgstr "" +msgstr "Aby ponownie przyłączyć przestawny pasek narzędzi" #. tUC9A #: floating_toolbar.xhp @@ -12668,7 +12668,7 @@ "par_idN1068B\n" "help.text" msgid "You can use Fontwork to create graphical text art objects." -msgstr "" +msgstr "Możesz używać funkcji Fontwork do tworzenia graficznych obiektów tekstowych." #. xA3KE #: fontwork.xhp @@ -12767,7 +12767,7 @@ "par_idN106B5\n" "help.text" msgid "Click the Fontwork object. If the Fontwork object is inserted in the background, hold down the CommandCtrl key while you click." -msgstr "" +msgstr "Kliknij obiekt Fontwork. Jeśli obiekt Fontwork jest wstawiony w tle, przytrzymaj CommandCtrl podczas klikania." #. EhZd8 #: fontwork.xhp @@ -12857,7 +12857,7 @@ "par_idN108D1\n" "help.text" msgid "Click the Fontwork object. If the Fontwork object is inserted in the background, hold down the CommandCtrl key while you click." -msgstr "" +msgstr "Kliknij obiekt Fontwork. Jeśli obiekt Fontwork jest wstawiony w tle, przytrzymaj CommandCtrl podczas klikania." #. pzMsR #: fontwork.xhp @@ -12938,7 +12938,7 @@ "par_id951604586347866\n" "help.text" msgid "Push Button Icon" -msgstr "" +msgstr "Ikona przycisku" #. 4GWCF #: formfields.xhp @@ -12974,7 +12974,7 @@ "par_idN107B2\n" "help.text" msgid "Right-click the button and choose Control Properties." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy przycisk i wybierz Właściwości formantu." #. Atf22 #: formfields.xhp @@ -13028,7 +13028,7 @@ "par_idN10828\n" "help.text" msgid "Right-click the button and choose Form Properties." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy przycisk i wybierz Właściwości formularza." #. kGATC #: formfields.xhp @@ -13145,7 +13145,7 @@ "par_id3145068\n" "help.text" msgid "Open the Gallery by clicking the Gallery icon on the Standard bar, or by choosing Insert - Media - Gallery." -msgstr "" +msgstr "Otwórz Galerię, klikając ikonę Galeria na pasku Standardowy lub wybierając Wstaw - Multimedia - Galeria." #. x75qp #: gallery_insert.xhp @@ -13559,7 +13559,7 @@ "hd_id3145071\n" "help.text" msgid "Changing the text of a hyperlink" -msgstr "" +msgstr "Zmiana tekstu hiperłącza" #. cyGqJ #: hyperlink_edit.xhp @@ -13577,7 +13577,7 @@ "par_id2690511\n" "help.text" msgid "If you leave the hyperlink by positioning the cursor elsewhere, only the visible text changes." -msgstr "" +msgstr "Jeśli opuścisz hiperłącze, umieszczając kursor w innym miejscu, zmieni się tylko widoczny tekst." #. bU4xF #: hyperlink_edit.xhp @@ -13604,7 +13604,7 @@ "hd_id3158432\n" "help.text" msgid "Changing the URL of a hyperlink" -msgstr "" +msgstr "Zmiana adresu URL hiperłącza" #. jCEKw #: hyperlink_edit.xhp @@ -13622,7 +13622,7 @@ "hd_id3148686\n" "help.text" msgid "Changing the attribute of all hyperlinks" -msgstr "" +msgstr "Zmiana atrybutu wszystkich hiperłączy" #. MwCds #: hyperlink_edit.xhp @@ -13667,7 +13667,7 @@ "hd_id3147530\n" "help.text" msgid "Editing a hyperlink button" -msgstr "" +msgstr "Edycja przycisku hiperłącza" #. rCCJN #: hyperlink_edit.xhp @@ -13676,7 +13676,7 @@ "par_id901565307899796\n" "help.text" msgid "Hyperlink buttons must be edited in Form design mode." -msgstr "" +msgstr "Przyciski hiperłączy muszą być edytowane w trybie Projekt formularza." #. ZiK7F #: hyperlink_edit.xhp @@ -13685,7 +13685,7 @@ "par_id641565307910254\n" "help.text" msgid "Select menu Form - Design mode or choose View - Toolbars and enable the Form Controls toolbar, click on the Design Mode icon and click on the button. The button handles shows." -msgstr "" +msgstr "Wybierz menu Formularz - Tryb projektu lub wybierz Widok - Paski narzędzi i włącz pasek narzędzi Formanty formularza, kliknij ikonę trybu projektu i kliknij przycisk. Wyświetlane są uchwyty przycisków." #. xTmQW #: hyperlink_edit.xhp @@ -13694,7 +13694,7 @@ "par_id961565308003935\n" "help.text" msgid "Open context menu and select Control Properties." -msgstr "" +msgstr "Otwórz menu kontekstowe i wybierz Właściwości formantu." #. hToHs #: hyperlink_edit.xhp @@ -13703,7 +13703,7 @@ "par_id811565308009651\n" "help.text" msgid "Edit the property in the control dialog box." -msgstr "" +msgstr "Edytuj właściwość w oknie dialogowym formantu." #. GjZJA #: hyperlink_insert.xhp @@ -14252,7 +14252,7 @@ "par_id3147209\n" "help.text" msgid "Choose Insert - Image." -msgstr "" +msgstr "Wybierz Wstaw - Obraz." #. 7dhJW #: insert_bitmap.xhp @@ -14270,7 +14270,7 @@ "par_id361654339227514\n" "help.text" msgid "Select the frame style for the image.Select the anchor type for the image at the current cell position.Check below." -msgstr "" +msgstr "Wybierz styl ramki dla obrazu.Wybierz typ zakotwiczenia dla obrazu w bieżącej pozycji komórki.Sprawdź poniżej." #. 3stNZ #: insert_bitmap.xhp @@ -14711,7 +14711,7 @@ "par_id3155535\n" "help.text" msgid "To view a repertoire of all characters, choose Insert - Special Character." -msgstr "" +msgstr "Aby wyświetlić repertuar wszystkich znaków, wybierz Wstaw - Znak specjalny." #. fFAT9 #: insert_specialchar.xhp @@ -14720,7 +14720,7 @@ "par_id3147275\n" "help.text" msgid "In the large selection field double-click on the desired character, which is inserted in the current document." -msgstr "" +msgstr "W dużym polu wyboru kliknij dwukrotnie żądany znak, który będzie wstawiony do bieżącego dokumentu." #. p7XqC #: insert_specialchar.xhp @@ -14837,7 +14837,7 @@ "par_id3153748\n" "help.text" msgid "Register the new components within $[officename]. This can be accomplished using the tool unopkg, which can be found in {installpath}/ \\program." -msgstr "Rejestracja nowych komponentów w pakiecie $[officename]. Do rejestrowania służy narzędzie unopkg, które można znaleźć w katalogu {instalacja}/ \\program." +msgstr "Rejestracja nowych komponentów w $[officename]. Do rejestrowania służy narzędzie unopkg, które można znaleźć w katalogu {installpath}/ \\program." #. KcTA5 #: integratinguno.xhp @@ -14873,7 +14873,7 @@ "tit\n" "help.text" msgid "Shortcuts (%PRODUCTNAME Accessibility)" -msgstr "Skróty klawiaturowe (ułatwienia dostępu w pakiecie %PRODUCTNAME)" +msgstr "Skróty klawiaturowe (dostępność w %PRODUCTNAME)" #. DCFvC #: keyboard.xhp @@ -14882,7 +14882,7 @@ "bm_id3158421\n" "help.text" msgid "accessibility;general shortcuts shortcut keys; %PRODUCTNAME accessibility" -msgstr "ułatwienia dostępu; ogólne skróty klawiaturowe skróty klawiaturowe; ułatwienia dostępu pakietu %PRODUCTNAME" +msgstr "dostępność; ogólne skróty klawiaturowe skróty klawiaturowe; dostępność w %PRODUCTNAME" #. ArwDt #: keyboard.xhp @@ -14918,7 +14918,7 @@ "par_id3145382\n" "help.text" msgid "In addition, under the keyword \"Accessibility\" you find step-by-step instructions about how to control the selected module without a mouse device." -msgstr "Ponadto pod hasłem \"Ułatwienia dostępu\" można znaleźć instrukcję objaśniającą krok po kroku sposób sterowania wybranym modułem bez użycia myszy." +msgstr "Ponadto pod hasłem \"Dostępność\" można znaleźć instrukcję objaśniającą krok po kroku sposób sterowania wybranym modułem bez użycia myszy." #. jmhLi #: keyboard.xhp @@ -15620,7 +15620,7 @@ "par_id3150515\n" "help.text" msgid "CommandCtrl + Shift + F4 opens and closes the data source view." -msgstr "" +msgstr "CommandCtrl + Shift + F4 otwiera i zamyka widok źródła danych." #. 3xgK2 #: keyboard.xhp @@ -15800,7 +15800,7 @@ "par_id3159096\n" "help.text" msgid "Press Tab to select an icon. If you selected one of the icons from Rectangle to Freeform Polygon and you press Command Ctrl+Enter, an object of the selected type is created in default size." -msgstr "" +msgstr "Naciśnij Tab, aby wybrać ikonę. Jeśli wybrano jedną z ikon od Prostokąt do Wielokąt odręczny i naciśniesz Command Ctrl+Enter, obiekt wybranego typu jest tworzony w domyślnym rozmiarze." #. go9cM #: keyboard.xhp @@ -15809,7 +15809,7 @@ "par_id3156016\n" "help.text" msgid "If you press Enter while the icon Select is selected, the focus is set into the image window of the ImageMap Editor. Press Esc to set the focus back to the icons and input boxes." -msgstr "" +msgstr "Jeśli naciśniesz Enter, gdy wybrana jest ikona Wybierz, fokus zostanie ustawiony na oknie obrazu Edytora mapy obrazkowej. Naciśnij Esc, aby ponownie ustawić fokus na ikonach i polach wprowadzania." #. 2DD3n #: keyboard.xhp @@ -15818,7 +15818,7 @@ "par_id3149587\n" "help.text" msgid "If the Select icon is selected and you press CommandCtrl+Enter, the first object in the image window gets selected." -msgstr "" +msgstr "Jeśli wybrano ikonę Wybierz i naciśniesz CommandCtrl+Enter, zostanie wybrany pierwszy obiekt w oknie obrazu." #. 3Wh8W #: keyboard.xhp @@ -15836,7 +15836,7 @@ "par_id3147073\n" "help.text" msgid "Use CommandCtrl+Tab in the image window to select the next point. Use Shift+CommandCtrl+Tab to select the previous point." -msgstr "" +msgstr "Użyj CommandCtrl+Tab w oknie obrazu, aby wybrać następny punkt. Użyj Shift+CommandCtrl+Tab, aby wybrać poprzedni punkt." #. 7BdLu #: keyboard.xhp @@ -15935,7 +15935,7 @@ "par_id3151000\n" "help.text" msgid "CommandCtrl+Left Arrow or CommandCtrl+Right Arrow: jump to the previous or to the next split" -msgstr "" +msgstr "CommandCtrl+strzałka w lewo lub CommandCtrl+strzałka w prawo: przeskocz do poprzedniego lub następnego podziału" #. a7Hg8 #: keyboard.xhp @@ -15944,7 +15944,7 @@ "par_id3159203\n" "help.text" msgid "CommandCtrl+Shift+Left Arrow or CommandCtrl+Shift+Right Arrow: move a split one position to the left or to the right" -msgstr "" +msgstr "CommandCtrl+Shift+strzałka w lewo lub CommandCtrl+Shift+strzałka w prawo: przesuń podział o jedną pozycję w lewo lub w prawo" #. xVvaL #: keyboard.xhp @@ -15962,7 +15962,7 @@ "par_id3155382\n" "help.text" msgid "CommandCtrl+Home or CommandCtrl+End: jump to the first or the last split" -msgstr "" +msgstr "CommandCtrl+Home lub CommandCtrl +End: przeskocz do pierwszego lub ostatniego podziału" #. 6CuHs #: keyboard.xhp @@ -15971,7 +15971,7 @@ "par_id3155894\n" "help.text" msgid "Shift+CommandCtrl+Home or Shift+CommandCtrl+End: move split to the first or to the last position" -msgstr "" +msgstr "Shift+CommandCtrl+Home lub Shift+CommandCtrl+End: przesuń podział na pierwszą lub ostatnią pozycję" #. yxCwG #: keyboard.xhp @@ -16061,7 +16061,7 @@ "par_id3150780\n" "help.text" msgid "CommandCtrl+Left Arrow or CommandCtrl+Right Arrow: move focus to the left or to the right column (does not change selection)" -msgstr "" +msgstr "CommandCtrl +strzałka w lewo lub CommandCtrl+strzałka w prawo: przesuń fokus w lewą lub prawą kolumnę (nie zmienia zaznaczenia)" #. FySem #: keyboard.xhp @@ -16079,7 +16079,7 @@ "par_id3146962\n" "help.text" msgid "CommandCtrl+Shift+Left Arrow or CommandCtrl+Shift+Right Arrow: expand or shrink the selected range (does not change other selections)" -msgstr "" +msgstr "CommandCtrl+Shift+strzałka w lewo lub CommandCtrl+Shift+strzałka w prawo: rozszerza lub zmniejsza wybrany zakres (nie zmienia innych zaznaczeń)" #. DbNiK #: keyboard.xhp @@ -16088,7 +16088,7 @@ "par_id3147512\n" "help.text" msgid "Home or End: select the first or the last column (use Shift or CommandCtrl as with cursor keys)" -msgstr "" +msgstr "Home lub End: wybierz pierwszą lub ostatnią kolumnę (użyj Shift lub CommandCtrl jak w przypadku klawiszy kursora)" #. 8F5dq #: keyboard.xhp @@ -16106,7 +16106,7 @@ "par_id3154171\n" "help.text" msgid "CommandCtrl+Shift+Space key: select the range from the last selected column to the current column (does not change other selections)" -msgstr "" +msgstr "CommandCtrl+Shift+Spacja: zaznacz zakres od ostatnio wybranej kolumny do bieżącej kolumny (nie zmienia innych zaznaczeń)" #. mCZzB #: keyboard.xhp @@ -16115,7 +16115,7 @@ "par_id3156368\n" "help.text" msgid "CommandCtrl+A: select all columns" -msgstr "" +msgstr "CommandCtrl+A: zaznacz wszystkie kolumny" #. GErPh #: keyboard.xhp @@ -16133,7 +16133,7 @@ "par_id3150416\n" "help.text" msgid "CommandCtrl+1 ... CommandCtrl+7: set the 1st ... 7th column type for the selected columns" -msgstr "" +msgstr "CommandCtrl+1 ... CommandCtrl+7: ustaw typ kolumny 1. ... 7. dla zaznaczonych kolumn" #. S7mnM #: keyboard.xhp @@ -16160,7 +16160,7 @@ "par_id3145116\n" "help.text" msgid "CommandCtrl+Home or CommandCtrl+End: scroll to the top or bottom of a table" -msgstr "" +msgstr "CommandCtrl+Home lub CommandCtrl+End: przewiń w górę lub w dół tabeli" #. FYdWx #: keyboard.xhp @@ -16493,7 +16493,7 @@ "bm_id3083278\n" "help.text" msgid "languages; selecting for text documents; languages characters; language selection character styles;language selection text; language selection paragraph styles; languages drawings; languages defaults;languages spellcheck; default languages spelling; default languages dictionaries, see also languages" -msgstr "" +msgstr "języki; wybieranie dla tekstu dokumenty; języki znaki; wybór języka style znaków;wybór języka tekst; wybór języka style akapitów; języki rysunki; języki domyślne;języki sprawdzanie pisowni; domyślne języki pisownia; domyślne języki słowniki, zobacz też języki" #. AoAWf #: language_select.xhp @@ -16691,7 +16691,7 @@ "par_id3145649\n" "help.text" msgid "Open the Styles window and click on the Character Styles icon." -msgstr "" +msgstr "Otwórz okno Style i kliknij ikonę Style znaku." #. gxtDr #: language_select.xhp @@ -16709,7 +16709,7 @@ "par_id3150753\n" "help.text" msgid "Then open the context menu in the Styles window and select Modify. This opens the Character Style dialog." -msgstr "" +msgstr "Następnie otwórz menu kontekstowe w oknie Style i wybierz Modyfikuj. Spowoduje to otwarcie okna dialogowego Styl znaku." #. p6Sei #: language_select.xhp @@ -16772,7 +16772,7 @@ "par_id2897427\n" "help.text" msgid "In the next page, click the Get It icon to download the dictionary extension. Note the folder name to which your browser downloads the file. Download additional dictionaries as you like." -msgstr "" +msgstr "Na następnej stronie kliknij ikonę Pobierz, aby pobrać rozszerzenie słownika. Zanotuj nazwę folderu, do którego przeglądarka pobiera plik. Pobierz dodatkowe słowniki, jak chcesz." #. NRmV4 #: language_select.xhp @@ -16844,7 +16844,7 @@ "par_id3806878\n" "help.text" msgid "Click OK and restart %PRODUCTNAME." -msgstr "" +msgstr "Kliknij OK i uruchom ponownie %PRODUCTNAME." #. jocyk #: language_select.xhp @@ -16880,7 +16880,7 @@ "par_id3791925\n" "help.text" msgid "Run %PRODUCTNAME installer, choose Modify, then select the language that you would like to install from the Additional user interface languages group." -msgstr "" +msgstr "Uruchom instalator %PRODUCTNAME, wybierz Modyfikuj, a następnie wybierz język, który chcesz zainstalować z grupy Dodatkowe języki interfejsu użytkownika." #. wgWMN #: language_select.xhp @@ -16925,7 +16925,7 @@ "par_id2216559\n" "help.text" msgid "Open your web browser and enter https://www.libreoffice.org/download/." -msgstr "" +msgstr "Otwórz przeglądarkę internetową i wpisz https://pl.libreoffice.org/pobieranie/." #. EynCH #: language_select.xhp @@ -16961,7 +16961,7 @@ "par_id221655a\n" "help.text" msgid "Open your web browser and enter https://www.libreoffice.org/download/." -msgstr "" +msgstr "Otwórz przeglądarkę internetową i wpisz https://pl.libreoffice.org/pobieranie/." #. nHFJY #: language_select.xhp @@ -17195,7 +17195,7 @@ "par_id8849452\n" "help.text" msgid "To create a single line, type three or more hyphens (-), or underscores (_), and then press Enter. To create a double line, type three or more equal signs (=), asterisks (*), tildes (~), or hash marks (#), and then press Enter." -msgstr "" +msgstr "Aby utworzyć pojedynczą linię, wpisz co najmniej trzy łączniki (-) lub podkreślenia (_), a następnie naciśnij klawisz Enter. Aby utworzyć linię podwójną, wpisz co najmniej trzy znaki równości (=), gwiazdki (*), tyldy (~) lub krzyżyki (#), a następnie naciśnij klawisz Enter." #. wkEWe #: line_intext.xhp @@ -17258,7 +17258,7 @@ "tit\n" "help.text" msgid "Defining Arrow Styles" -msgstr "" +msgstr "Definiowanie stylów strzałek" #. VSqSX #: lineend_define.xhp @@ -17285,7 +17285,7 @@ "par_id3153750\n" "help.text" msgid "You can define any shape to be included in the list of available arrow styles. Only the form of the shape is added as a black filled arrowhead." -msgstr "" +msgstr "Możesz zdefiniować dowolny kształt, który ma się znaleźć na liście dostępnych stylów strzałek. Tylko forma kształtu jest dodawana jako czarny grot strzałki." #. iWrXg #: lineend_define.xhp @@ -17294,7 +17294,7 @@ "par_id3147653\n" "help.text" msgid "Use the draw functions to create the shape to be used as an arrow style." -msgstr "" +msgstr "Użyj funkcji rysowania, aby utworzyć kształt, który będzie używany jako styl strzałki." #. NtyRL #: lineend_define.xhp @@ -17303,7 +17303,7 @@ "par_id3149795\n" "help.text" msgid "Select the shape and choose Format - Text Box and Shape - Line." -msgstr "" +msgstr "Wybierz kształt i Format - Pole tekstowe i kształt - Linia." #. unyMH #: lineend_define.xhp @@ -17312,7 +17312,7 @@ "par_id3154306\n" "help.text" msgid "In the dialog, click the Arrow Styles tab." -msgstr "" +msgstr "W oknie dialogowym kliknij kartę Style strzałek." #. abFgC #: lineend_define.xhp @@ -17510,7 +17510,7 @@ "tit\n" "help.text" msgid "Lotus, dBase and Diff filter parameters" -msgstr "" +msgstr "Parametry filtrów Lotus, dBase i Diff" #. vTZDY #: lotusdbasediff.xhp @@ -17519,7 +17519,7 @@ "bm_id561634741028649\n" "help.text" msgid "Lotus;command line filter optionsdBase;command line filter optionsDiff;command line filter options" -msgstr "" +msgstr "Opcje filtrowania wiersza poleceń LotusOpcje filtrowania wiersza poleceń dBase;Opcje filtrowania wiersza poleceń Diff;" #. AMfh8 #: lotusdbasediff.xhp @@ -17537,7 +17537,7 @@ "par_id951634727961726\n" "help.text" msgid "The Lotus, dBase and Diff filters accept a string containing the numerical index of the used character set for single-byte characters, that is, 0 for the system character set. The numerical indexes assigned to the character sets are in the table below." -msgstr "" +msgstr "Filtry Lotus, dBase i Diff akceptują ciąg znaków zawierający numeryczny indeks używanego zestawu znaków dla znaków jednobajtowych, czyli 0 dla zestawu znaków systemowych. Indeksy numeryczne przypisane do zestawów znaków znajdują się w poniższej tabeli." #. DC55B #: lotusdbasediff.xhp @@ -17546,7 +17546,7 @@ "par_id711634734305500\n" "help.text" msgid "To import file myLotus.wk3 with DOS/OS2-850/International (Western) character set." -msgstr "" +msgstr "Aby zaimportować plik myLotus.wk3 z zestawem znaków DOS/OS2-850/Międzynarodowe (zachodni)." #. 9K3yd #: lotusdbasediff.xhp @@ -17555,7 +17555,7 @@ "par_id271634732842048\n" "help.text" msgid "soffice --infilter=\"Lotus:4\" myLotus.wk3" -msgstr "" +msgstr "soffice --infilter=\"Lotus:4\" myLotus.wk3" #. vgUAD #: lotusdbasediff.xhp @@ -17564,7 +17564,7 @@ "par_id941634728189424\n" "help.text" msgid "Character set" -msgstr "" +msgstr "Zestaw znaków" #. tgBCT #: lotusdbasediff.xhp @@ -17573,7 +17573,7 @@ "par_id361634728189424\n" "help.text" msgid "Index" -msgstr "" +msgstr "Indeks" #. mwKC2 #: lotusdbasediff.xhp @@ -17582,7 +17582,7 @@ "par_id3595418994\n" "help.text" msgid "Unknown" -msgstr "" +msgstr "Nieznany" #. t4M3L #: lotusdbasediff.xhp @@ -17591,7 +17591,7 @@ "par_id6867528259\n" "help.text" msgid "Windows-1252/WinLatin 1 (Western)" -msgstr "" +msgstr "Windows-1252/WinLatin 1 (zachodni)" #. n8WbE #: lotusdbasediff.xhp @@ -17600,7 +17600,7 @@ "par_id8119642953\n" "help.text" msgid "Apple Macintosh (Western)" -msgstr "" +msgstr "Apple Macintosh (zachodni)" #. wYujo #: lotusdbasediff.xhp @@ -17609,7 +17609,7 @@ "par_id463985409\n" "help.text" msgid "DOS/OS2-437/US (Western)" -msgstr "" +msgstr "DOS/OS2-437/US (zachodni)" #. yK7oB #: lotusdbasediff.xhp @@ -17618,7 +17618,7 @@ "par_id7577032620\n" "help.text" msgid "DOS/OS2-850/International (Western)" -msgstr "" +msgstr "DOS/OS2-850/Międzynarodowy (zachodni)" #. LDVc7 #: lotusdbasediff.xhp @@ -17627,7 +17627,7 @@ "par_id8394619482\n" "help.text" msgid "DOS/OS2-860/Portuguese (Western)" -msgstr "" +msgstr "DOS/OS2-860/Portugalski (zachodni)" #. eyZPs #: lotusdbasediff.xhp @@ -17636,7 +17636,7 @@ "par_id8817860061\n" "help.text" msgid "DOS/OS2-861/Icelandic (Western)" -msgstr "" +msgstr "DOS/OS2-861/Islandzki (zachodni)" #. wMUyq #: lotusdbasediff.xhp @@ -17645,7 +17645,7 @@ "par_id4921442704\n" "help.text" msgid "DOS/OS2-863/Canadian-French (Western)" -msgstr "" +msgstr "DOS/OS2-863/Kanadyjsko-francuski (zachodni)" #. 8ZQ69 #: lotusdbasediff.xhp @@ -17654,7 +17654,7 @@ "par_id7664791639\n" "help.text" msgid "DOS/OS2-865/Nordic (Western)" -msgstr "" +msgstr "DOS/OS2-865/Nordycki (zachodni)" #. dVvsS #: lotusdbasediff.xhp @@ -17663,7 +17663,7 @@ "par_id2517707917\n" "help.text" msgid "System default" -msgstr "" +msgstr "Domyślny systemu" #. uxJB9 #: lotusdbasediff.xhp @@ -17672,7 +17672,7 @@ "par_id726768156\n" "help.text" msgid "Symbol" -msgstr "" +msgstr "Symbol" #. MsC3b #: lotusdbasediff.xhp @@ -17681,7 +17681,7 @@ "par_id9649275081\n" "help.text" msgid "ASCII/US (Western)" -msgstr "" +msgstr "ASCII/US (zachodni)" #. QMkdx #: lotusdbasediff.xhp @@ -17690,7 +17690,7 @@ "par_id7560998407\n" "help.text" msgid "ISO-8859-1 (Western)" -msgstr "" +msgstr "ISO-8859-1 (zachodni)" #. 5Coku #: lotusdbasediff.xhp @@ -17699,7 +17699,7 @@ "par_id7110791405\n" "help.text" msgid "ISO-8859-2 (Central European)" -msgstr "" +msgstr "ISO-8859-2 (środkowoeuropejski)" #. cnoiQ #: lotusdbasediff.xhp @@ -17708,7 +17708,7 @@ "par_id6569976233\n" "help.text" msgid "ISO-8859-3 (Latin 3)" -msgstr "" +msgstr "ISO-8859-3 (łaciński 3)" #. NfYxS #: lotusdbasediff.xhp @@ -17717,7 +17717,7 @@ "par_id6885689002\n" "help.text" msgid "ISO-8859-4 (Baltic)" -msgstr "" +msgstr "ISO-8859-4 (bałtycki)" #. FEpGp #: lotusdbasediff.xhp @@ -17726,7 +17726,7 @@ "par_id9664335036\n" "help.text" msgid "ISO-8859-5 (Cyrillic)" -msgstr "" +msgstr "ISO-8859-5 (cyrylica)" #. jSnZ8 #: lotusdbasediff.xhp @@ -17735,7 +17735,7 @@ "par_id8104755630\n" "help.text" msgid "ISO-8859-6 (Arabic)" -msgstr "" +msgstr "ISO-8859-6 (arabski)" #. 3MTAK #: lotusdbasediff.xhp @@ -17744,7 +17744,7 @@ "par_id5395014781\n" "help.text" msgid "ISO-8859-7 (Greek)" -msgstr "" +msgstr "ISO-8859-7 (grecki)" #. w7DLg #: lotusdbasediff.xhp @@ -17753,7 +17753,7 @@ "par_id5354416572\n" "help.text" msgid "ISO-8859-8 (Hebrew)" -msgstr "" +msgstr "ISO-8859-8 (hebrajski)" #. nzT2W #: lotusdbasediff.xhp @@ -17762,7 +17762,7 @@ "par_id3982667842\n" "help.text" msgid "ISO-8859-9 (Turkish)" -msgstr "" +msgstr "ISO-8859-9 (turecki)" #. GZMhu #: lotusdbasediff.xhp @@ -17771,7 +17771,7 @@ "par_id4764337087\n" "help.text" msgid "ISO-8859-14 (Western)" -msgstr "" +msgstr "ISO-8859-14 (zachodni)" #. htMTX #: lotusdbasediff.xhp @@ -17780,7 +17780,7 @@ "par_id5341317667\n" "help.text" msgid "ISO-8859-15/EURO (Western)" -msgstr "" +msgstr "ISO-8859-15/EURO (zachodni)" #. iCAjC #: lotusdbasediff.xhp @@ -17789,7 +17789,7 @@ "par_id8190805703\n" "help.text" msgid "DOS/OS2-737 (Greek)" -msgstr "" +msgstr "DOS/OS2-737 (grecki)" #. 9xBJb #: lotusdbasediff.xhp @@ -17798,7 +17798,7 @@ "par_id3299597784\n" "help.text" msgid "DOS/OS2-775 (Baltic)" -msgstr "" +msgstr "DOS/OS2-775 (bałtycki)" #. 6hVhF #: lotusdbasediff.xhp @@ -17807,7 +17807,7 @@ "par_id7018988324\n" "help.text" msgid "DOS/OS2-852 (Central European)" -msgstr "" +msgstr "DOS/OS2-852 (środkowoeuropejski)" #. SX66i #: lotusdbasediff.xhp @@ -17816,7 +17816,7 @@ "par_id9277324375\n" "help.text" msgid "DOS/OS2-855 (Cyrillic)" -msgstr "" +msgstr "DOS/OS2-855 (cyrylica)" #. agTyE #: lotusdbasediff.xhp @@ -17825,7 +17825,7 @@ "par_id138732955\n" "help.text" msgid "DOS/OS2-857 (Turkish)" -msgstr "" +msgstr "DOS/OS2-857 (turecki)" #. K7Ngv #: lotusdbasediff.xhp @@ -17834,7 +17834,7 @@ "par_id6163462950\n" "help.text" msgid "DOS/OS2-862 (Hebrew)" -msgstr "" +msgstr "DOS/OS2-862 (hebrajski)" #. oBLqw #: lotusdbasediff.xhp @@ -17843,7 +17843,7 @@ "par_id957523556\n" "help.text" msgid "DOS/OS2-864 (Arabic)" -msgstr "" +msgstr "DOS/OS2-864 (arabski)" #. wDrHu #: lotusdbasediff.xhp @@ -17852,7 +17852,7 @@ "par_id3620965595\n" "help.text" msgid "DOS/OS2-866/Russian (Cyrillic)" -msgstr "" +msgstr "DOS/OS2-866/Rosyjski (cyrylica)" #. KmHiA #: lotusdbasediff.xhp @@ -17861,7 +17861,7 @@ "par_id5590690561\n" "help.text" msgid "DOS/OS2-869/Modern (Greek)" -msgstr "" +msgstr "DOS/OS2-869/Współczesny (grecki)" #. HzHu5 #: lotusdbasediff.xhp @@ -17870,7 +17870,7 @@ "par_id4413925285\n" "help.text" msgid "DOS/Windows-874 (Thai)" -msgstr "" +msgstr "DOS/Windows-874 (tajski)" #. ASun4 #: lotusdbasediff.xhp @@ -17879,7 +17879,7 @@ "par_id8678281824\n" "help.text" msgid "Windows-1250/WinLatin 2 (Central European)" -msgstr "" +msgstr "Windows-1250/WinLatin 2 (środkowoeuropejski)" #. EBPgi #: lotusdbasediff.xhp @@ -17888,7 +17888,7 @@ "par_id7262965442\n" "help.text" msgid "Windows-1251 (Cyrillic)" -msgstr "" +msgstr "Windows-1251 (cyrylica)" #. dSjzb #: lotusdbasediff.xhp @@ -17897,7 +17897,7 @@ "par_id349886227\n" "help.text" msgid "Windows-1253 (Greek)" -msgstr "" +msgstr "Windows-1253 (grecki)" #. JqWit #: lotusdbasediff.xhp @@ -17906,7 +17906,7 @@ "par_id9334140001\n" "help.text" msgid "Windows-1254 (Turkish)" -msgstr "" +msgstr "Windows-1254 (turecki)" #. osHL5 #: lotusdbasediff.xhp @@ -17915,7 +17915,7 @@ "par_id198637729\n" "help.text" msgid "Windows-1255 (Hebrew)" -msgstr "" +msgstr "Windows-1255 (hebrajski)" #. AGNDB #: lotusdbasediff.xhp @@ -17924,7 +17924,7 @@ "par_id1915253947\n" "help.text" msgid "Windows-1256 (Arabic)" -msgstr "" +msgstr "Windows-1256 (arabski)" #. yLXBd #: lotusdbasediff.xhp @@ -17933,7 +17933,7 @@ "par_id3963233883\n" "help.text" msgid "Windows-1257 (Baltic)" -msgstr "" +msgstr "Windows-1257 (bałtycki)" #. 4R3tM #: lotusdbasediff.xhp @@ -17942,7 +17942,7 @@ "par_id7531693853\n" "help.text" msgid "Windows-1258 (Vietnamese)" -msgstr "" +msgstr "Windows-1258 (wietnamski)" #. XCFQC #: lotusdbasediff.xhp @@ -17951,7 +17951,7 @@ "par_id1467844465\n" "help.text" msgid "Apple Macintosh (Arabic)" -msgstr "" +msgstr "Apple Macintosh (arabski)" #. BPTER #: lotusdbasediff.xhp @@ -17960,7 +17960,7 @@ "par_id6024654003\n" "help.text" msgid "Apple Macintosh (Central European)" -msgstr "" +msgstr "Apple Macintosh (środkowoeuropejski)" #. HD8gK #: lotusdbasediff.xhp @@ -17969,7 +17969,7 @@ "par_id5126976760\n" "help.text" msgid "Apple Macintosh/Croatian (Central European)" -msgstr "" +msgstr "Apple Macintosh/Chorwacki (środkowoeuropejski)" #. 8VBmx #: lotusdbasediff.xhp @@ -17978,7 +17978,7 @@ "par_id3792290000\n" "help.text" msgid "Apple Macintosh (Cyrillic)" -msgstr "" +msgstr "Apple Macintosh (cyrylica)" #. YXyyc #: lotusdbasediff.xhp @@ -17987,7 +17987,7 @@ "par_id9965406690\n" "help.text" msgid "Not supported: Apple Macintosh (Devanagari)" -msgstr "" +msgstr "Nieobsługiwany: Apple Macintosh (dewanagari)" #. u4DPB #: lotusdbasediff.xhp @@ -17996,7 +17996,7 @@ "par_id8871119906\n" "help.text" msgid "Not supported: Apple Macintosh (Farsi)" -msgstr "" +msgstr "Nieobsługiwany: Apple Macintosh (perski)" #. 8BsMh #: lotusdbasediff.xhp @@ -18005,7 +18005,7 @@ "par_id4888972012\n" "help.text" msgid "Apple Macintosh (Greek)" -msgstr "" +msgstr "Apple Macintosh (grecki)" #. t5ZDC #: lotusdbasediff.xhp @@ -18014,7 +18014,7 @@ "par_id4238449987\n" "help.text" msgid "Not supported: Apple Macintosh (Gujarati)" -msgstr "" +msgstr "Nieobsługiwany: Apple Macintosh (gudżarati)" #. d9zo6 #: lotusdbasediff.xhp @@ -18023,7 +18023,7 @@ "par_id7304430577\n" "help.text" msgid "Not supported: Apple Macintosh (Gurmukhi)" -msgstr "" +msgstr "Nieobsługiwany: Apple Macintosh (gurmukhi)" #. EdkVx #: lotusdbasediff.xhp @@ -18032,7 +18032,7 @@ "par_id5620424688\n" "help.text" msgid "Apple Macintosh (Hebrew)" -msgstr "" +msgstr "Apple Macintosh (hebrajski)" #. UvmYZ #: lotusdbasediff.xhp @@ -18041,7 +18041,7 @@ "par_id9801830706\n" "help.text" msgid "Apple Macintosh/Icelandic (Western)" -msgstr "" +msgstr "Apple Macintosh/Islandzki (zachodni)" #. NUAXB #: lotusdbasediff.xhp @@ -18050,7 +18050,7 @@ "par_id1158047357\n" "help.text" msgid "Apple Macintosh/Romanian (Central European)" -msgstr "" +msgstr "Apple Macintosh/Rumuński (środkowoeuropejski)" #. VjbPQ #: lotusdbasediff.xhp @@ -18059,7 +18059,7 @@ "par_id8229976184\n" "help.text" msgid "Apple Macintosh (Thai)" -msgstr "" +msgstr "Apple Macintosh (tajski)" #. fTrd4 #: lotusdbasediff.xhp @@ -18068,7 +18068,7 @@ "par_id9198338282\n" "help.text" msgid "Apple Macintosh (Turkish)" -msgstr "" +msgstr "Apple Macintosh (turecki)" #. k2DCo #: lotusdbasediff.xhp @@ -18077,7 +18077,7 @@ "par_id8309681854\n" "help.text" msgid "Apple Macintosh/Ukrainian (Cyrillic)" -msgstr "" +msgstr "Apple Macintosh/Ukraiński (cyrylica)" #. LaGmk #: lotusdbasediff.xhp @@ -18086,7 +18086,7 @@ "par_id8838054309\n" "help.text" msgid "Apple Macintosh (Chinese Simplified)" -msgstr "" +msgstr "Apple Macintosh (chiński uproszczony)" #. SSjQu #: lotusdbasediff.xhp @@ -18095,7 +18095,7 @@ "par_id3756233214\n" "help.text" msgid "Apple Macintosh (Chinese Traditional)" -msgstr "" +msgstr "Apple Macintosh (chiński tradycyjny)" #. QU5fA #: lotusdbasediff.xhp @@ -18104,7 +18104,7 @@ "par_id2879385879\n" "help.text" msgid "Apple Macintosh (Japanese)" -msgstr "" +msgstr "Apple Macintosh (japoński)" #. jExUJ #: lotusdbasediff.xhp @@ -18113,7 +18113,7 @@ "par_id1036377524\n" "help.text" msgid "Apple Macintosh (Korean)" -msgstr "" +msgstr "Apple Macintosh (koreański)" #. 4YszB #: lotusdbasediff.xhp @@ -18122,7 +18122,7 @@ "par_id864841246\n" "help.text" msgid "Windows-932 (Japanese)" -msgstr "" +msgstr "Windows-932 (japoński)" #. PFMie #: lotusdbasediff.xhp @@ -18131,7 +18131,7 @@ "par_id2673430188\n" "help.text" msgid "Windows-936 (Chinese Simplified)" -msgstr "" +msgstr "Windows-936 (chiński uproszczony)" #. CCkYn #: lotusdbasediff.xhp @@ -18140,7 +18140,7 @@ "par_id8091466179\n" "help.text" msgid "Windows-Wansung-949 (Korean)" -msgstr "" +msgstr "Windows-Wansung-949 (koreański)" #. vaegT #: lotusdbasediff.xhp @@ -18149,7 +18149,7 @@ "par_id39627464\n" "help.text" msgid "Windows-950 (Chinese Traditional)" -msgstr "" +msgstr "Windows-950 (chiński tradycyjny)" #. 9TDCJ #: lotusdbasediff.xhp @@ -18158,7 +18158,7 @@ "par_id9816819191\n" "help.text" msgid "Shift-JIS (Japanese)" -msgstr "" +msgstr "Shift-JIS (japoński)" #. pcnRD #: lotusdbasediff.xhp @@ -18167,7 +18167,7 @@ "par_id3206710481\n" "help.text" msgid "GB-2312 (Chinese Simplified)" -msgstr "" +msgstr "GB-2312 (chiński uproszczony)" #. ELQVE #: lotusdbasediff.xhp @@ -18176,7 +18176,7 @@ "par_id4470976171\n" "help.text" msgid "GBT-12345 (Chinese Traditional)" -msgstr "" +msgstr "GBT-12345 (chiński tradycyjny)" #. iAUTD #: lotusdbasediff.xhp @@ -18185,7 +18185,7 @@ "par_id4932831786\n" "help.text" msgid "GBK/GB-2312-80 (Chinese Simplified)" -msgstr "" +msgstr "GBK/GB-2312-80 (chiński uproszczony)" #. pmCaK #: lotusdbasediff.xhp @@ -18194,7 +18194,7 @@ "par_id838501984\n" "help.text" msgid "BIG5 (Chinese Traditional)" -msgstr "" +msgstr "BIG5 (chiński tradycyjny)" #. 9UAnC #: lotusdbasediff.xhp @@ -18203,7 +18203,7 @@ "par_id1029043733\n" "help.text" msgid "EUC-JP (Japanese)" -msgstr "" +msgstr "EUC-JP (japoński)" #. YAg8h #: lotusdbasediff.xhp @@ -18212,7 +18212,7 @@ "par_id6012776196\n" "help.text" msgid "EUC-CN (Chinese Simplified)" -msgstr "" +msgstr "EUC-CN (chiński uproszczony)" #. EUiHu #: lotusdbasediff.xhp @@ -18221,7 +18221,7 @@ "par_id5452136920\n" "help.text" msgid "EUC-TW (Chinese Traditional)" -msgstr "" +msgstr "EUC-TW (chiński tradycyjny)" #. kbAeV #: lotusdbasediff.xhp @@ -18230,7 +18230,7 @@ "par_id3435928309\n" "help.text" msgid "ISO-2022-JP (Japanese)" -msgstr "" +msgstr "ISO-2022-JP (japoński)" #. Nk6pG #: lotusdbasediff.xhp @@ -18239,7 +18239,7 @@ "par_id2502757680\n" "help.text" msgid "ISO-2022-CN (Chinese Simplified)" -msgstr "" +msgstr "ISO-2022-CN (chiński uproszczony)" #. AggZE #: lotusdbasediff.xhp @@ -18248,7 +18248,7 @@ "par_id1644410169\n" "help.text" msgid "KOI8-R (Cyrillic)" -msgstr "" +msgstr "KOI8-R (cyrylica)" #. D4igh #: lotusdbasediff.xhp @@ -18257,7 +18257,7 @@ "par_id5346160920\n" "help.text" msgid "Unicode (UTF-7)" -msgstr "" +msgstr "Unicode (UTF-7)" #. 4mFF3 #: lotusdbasediff.xhp @@ -18266,7 +18266,7 @@ "par_id6945821257\n" "help.text" msgid "Unicode (UTF-8)" -msgstr "" +msgstr "Unicode (UTF-8)" #. EFYkJ #: lotusdbasediff.xhp @@ -18275,7 +18275,7 @@ "par_id360272883\n" "help.text" msgid "ISO-8859-10 (Central European)" -msgstr "" +msgstr "ISO-8859-10 (środkowoeuropejski)" #. DANdZ #: lotusdbasediff.xhp @@ -18284,7 +18284,7 @@ "par_id7595099556\n" "help.text" msgid "ISO-8859-13 (Central European)" -msgstr "" +msgstr "ISO-8859-13 (środkowoeuropejski)" #. JDPMV #: lotusdbasediff.xhp @@ -18293,7 +18293,7 @@ "par_id9690820995\n" "help.text" msgid "EUC-KR (Korean)" -msgstr "" +msgstr "EUC-KR (koreański)" #. cBnEq #: lotusdbasediff.xhp @@ -18302,7 +18302,7 @@ "par_id5313899602\n" "help.text" msgid "ISO-2022-KR (Korean)" -msgstr "" +msgstr "ISO-2022-KR (koreański)" #. EnC6J #: lotusdbasediff.xhp @@ -18311,7 +18311,7 @@ "par_id8105979305\n" "help.text" msgid "JIS 0201 (Japanese)" -msgstr "" +msgstr "JIS 0201 (japoński)" #. JtyuF #: lotusdbasediff.xhp @@ -18320,7 +18320,7 @@ "par_id1229669587\n" "help.text" msgid "JIS 0208 (Japanese)" -msgstr "" +msgstr "JIS 0208 (japoński)" #. ncHwS #: lotusdbasediff.xhp @@ -18329,7 +18329,7 @@ "par_id3628381032\n" "help.text" msgid "JIS 0212 (Japanese)" -msgstr "" +msgstr "JIS 0212 (japoński)" #. sBZGC #: lotusdbasediff.xhp @@ -18338,7 +18338,7 @@ "par_id7686777017\n" "help.text" msgid "Windows-Johab-1361 (Korean)" -msgstr "" +msgstr "Windows-Johab-1361 (koreański)" #. wmAKk #: lotusdbasediff.xhp @@ -18347,7 +18347,7 @@ "par_id4764349313\n" "help.text" msgid "GB-18030 (Chinese Simplified)" -msgstr "" +msgstr "GB-18030 (chiński uproszczony)" #. fDAdA #: lotusdbasediff.xhp @@ -18356,7 +18356,7 @@ "par_id3047093405\n" "help.text" msgid "BIG5-HKSCS (Chinese Traditional)" -msgstr "" +msgstr "BIG5-HKSCS (chiński tradycyjny)" #. f89n4 #: lotusdbasediff.xhp @@ -18365,7 +18365,7 @@ "par_id472750950\n" "help.text" msgid "TIS 620 (Thai)" -msgstr "" +msgstr "TIS 620 (tajski)" #. sMGuE #: lotusdbasediff.xhp @@ -18374,7 +18374,7 @@ "par_id5498125014\n" "help.text" msgid "KOI8-U (Cyrillic)" -msgstr "" +msgstr "KOI8-U (cyrylica)" #. TRHTM #: lotusdbasediff.xhp @@ -18383,7 +18383,7 @@ "par_id7311184156\n" "help.text" msgid "ISCII Devanagari (Indian)" -msgstr "" +msgstr "ISCII dewanagari (indyjski)" #. DEuFQ #: lotusdbasediff.xhp @@ -18392,7 +18392,7 @@ "par_id6161848540\n" "help.text" msgid "Unicode (Java's modified UTF-8)" -msgstr "" +msgstr "Unicode (zmodyfikowany UTF-8 Javy)" #. fiMu3 #: lotusdbasediff.xhp @@ -18401,7 +18401,7 @@ "par_id3941935297\n" "help.text" msgid "Adobe Standard" -msgstr "" +msgstr "Adobe Standard" #. vbSBX #: lotusdbasediff.xhp @@ -18410,7 +18410,7 @@ "par_id9054912223\n" "help.text" msgid "Adobe Symbol" -msgstr "" +msgstr "Adobe Symbol" #. HuPBo #: lotusdbasediff.xhp @@ -18419,7 +18419,7 @@ "par_id317092561\n" "help.text" msgid "PT 154 (Windows Cyrillic Asian codepage developed in ParaType)" -msgstr "" +msgstr "PT 154 (Azjatycka strona kodowa cyrylicy systemu Windows opracowana w ParaType)" #. DJAEX #: lotusdbasediff.xhp @@ -18428,7 +18428,7 @@ "par_id3689682515\n" "help.text" msgid "Unicode UCS4" -msgstr "" +msgstr "Unicode UCS4" #. VoHsG #: lotusdbasediff.xhp @@ -18437,7 +18437,7 @@ "par_id7382215766\n" "help.text" msgid "Unicode UCS2" -msgstr "" +msgstr "Unicode UCS2" #. F8tDM #: macro_recording.xhp @@ -18734,7 +18734,7 @@ "hd_id3149295\n" "help.text" msgid "Accessibility" -msgstr "Ułatwienia dostępu" +msgstr "Dostępność" #. sfWYj #: main.xhp @@ -18761,7 +18761,7 @@ "par_idN10826\n" "help.text" msgid "Working with databases in %PRODUCTNAME" -msgstr "" +msgstr "Praca z bazami danych w %PRODUCTNAME" #. FktEd #: main.xhp @@ -18770,7 +18770,7 @@ "par_idN10841\n" "help.text" msgid "Table Wizard" -msgstr "" +msgstr "Kreator tabeli" #. rimqF #: main.xhp @@ -18779,7 +18779,7 @@ "par_idN1085B\n" "help.text" msgid "Query Wizard" -msgstr "" +msgstr "Kreator kwerendy" #. nEnao #: main.xhp @@ -18860,7 +18860,7 @@ "tit\n" "help.text" msgid "Working with Templates in Template Manager" -msgstr "" +msgstr "Praca z szablonami w Menedżerze szablonów" #. DbDMX #: manage_templates.xhp @@ -18869,7 +18869,7 @@ "bm_id101608800218434\n" "help.text" msgid "paths;template filescategories;in templatesfile extensions;in templates" -msgstr "" +msgstr "ścieżki;pliki szablonówkategorie;w szablonachrozszerzenia plików;w szablonach" #. XoCwL #: manage_templates.xhp @@ -18896,7 +18896,7 @@ "par_id911607894878048\n" "help.text" msgid "This guide explains how the file system interacts with the Template Manager. This information is particularly useful if you want to manage directories directly, but still be coordinated with the Template Manager." -msgstr "" +msgstr "W tym przewodniku wyjaśniono, w jaki sposób system plików współdziała z Menedżerem szablonów. Te informacje są szczególnie przydatne, jeśli chcesz bezpośrednio zarządzać katalogami, ale nadal utrzymywać koordynację z Menedżerem szablonów." #. AFPSy #: manage_templates.xhp @@ -18905,7 +18905,7 @@ "hd_id101607896260383\n" "help.text" msgid "Working with Template Files" -msgstr "" +msgstr "Praca z plikami szablonów" #. 7veJC #: manage_templates.xhp @@ -18914,7 +18914,7 @@ "par_id451607988966808\n" "help.text" msgid "The Template Manager recognizes template files by their file extension. The following extensions are recognized:" -msgstr "" +msgstr "Menedżer szablonów rozpoznaje pliki szablonów na podstawie ich rozszerzenia. Rozpoznawane są następujące rozszerzenia:" #. m82BQ #: manage_templates.xhp @@ -18923,7 +18923,7 @@ "par_id81607989758329\n" "help.text" msgid "Application" -msgstr "" +msgstr "Aplikacja" #. c6EYa #: manage_templates.xhp @@ -18932,7 +18932,7 @@ "par_id321607989052104\n" "help.text" msgid "Extensions" -msgstr "" +msgstr "Rozszerzenia" #. C6NzD #: manage_templates.xhp @@ -18950,7 +18950,7 @@ "hd_id991607990069687\n" "help.text" msgid "Working with Template Names" -msgstr "" +msgstr "Praca z nazwami szablonów" #. pFJ8v #: manage_templates.xhp @@ -18959,7 +18959,7 @@ "par_id531607967664414\n" "help.text" msgid "The Template Manager shows the Title field of a document as the Template Name. As long as the Title field is not empty, the filename has no consequences for the Template Name shown in the Template Manager. If the Title field is empty, the filename, without extension, is shown as the Template Name." -msgstr "" +msgstr "Menedżer szablonów pokazuje pole Tytuł dokumentu jako nazwę szablonu. Dopóki pole Tytuł nie jest puste, nazwa pliku nie ma wpływu na nazwę szablonu wyświetlaną w Menedżerze szablonów. Jeśli pole Tytuł jest puste, nazwa pliku bez rozszerzenia jest wyświetlana jako nazwa szablonu." #. 89knb #: manage_templates.xhp @@ -18968,7 +18968,7 @@ "par_id841607968899084\n" "help.text" msgid "If two templates have the exact same entry in the Title field and belong to the same Category, then only one template appears in the Template Manager." -msgstr "" +msgstr "Jeśli dwa szablony mają dokładnie ten sam wpis w polu Tytuł i należą do tej samej kategorii, w Menedżerze szablonów pojawi się tylko jeden szablon." #. ogB3D #: manage_templates.xhp @@ -18977,7 +18977,7 @@ "par_id241608074568977\n" "help.text" msgid "Titles are case-sensitive. For example, if one template in category My Templates has the title a4 and another has the title A4, then both templates appear in the Template Manager. If both templates have the title A4, then only one appears." -msgstr "" +msgstr "W tytułach rozróżniana jest wielkość liter. Na przykład, jeśli jeden szablon w kategorii Moje szablony ma tytuł a4, a inny ma tytuł A4, to oba szablony pojawią się w Menedżerze szablonów . Jeśli oba szablony mają tytuł A4, pojawi się tylko jeden." #. C6Jyi #: manage_templates.xhp @@ -18986,7 +18986,7 @@ "par_id771608203314024\n" "help.text" msgid "If templates have the same title, but belong to different categories, then all appear in the Template Manager. For example, if three templates have the title A4, and each template belongs to a different category, then all three templates appear with the Template Name A4." -msgstr "" +msgstr "Jeśli szablony mają tę samą nazwę, ale należą do różnych kategorii, wszystkie zostaną wyświetlone w Menedżerze szablonów. W przypadku trzech szablonów o nazwie A4, z których każdy należy do innej kategorii, wszystkie zostaną wyświetlone w Menedżerze z nazwą szablonu A4." #. m5kGe #: manage_templates.xhp @@ -18995,7 +18995,7 @@ "par_id411607896274563\n" "help.text" msgid "You can edit the Title field by choosing File - Properties - Description. If you change the Title field, then the new title also appears as the Template Name in the Template Manager. Alternatively, if you use the Rename command in the context menu for a template, then the Title field of the template is changed to the new Template Name." -msgstr "" +msgstr "Możesz edytować pole Tytuł, wybierając Plik - Właściwości - Opis. Jeśli zmienisz pole Tytuł, nowy tytuł pojawi się również jako Nazwa szablonu w Menedżerze szablonów. Alternatywnie, jeśli użyjesz polecenia Zmień nazwę w menu kontekstowym szablonu, wówczas pole Tytuł szablonu zostanie zmienione na nową Nazwę szablonu." #. XVZ5C #: manage_templates.xhp @@ -19004,7 +19004,7 @@ "par_id181608073292539\n" "help.text" msgid "If you use the File - Save as Template dialog, then the name entered in that dialog is used as the filename and entered into the Title field. If you change the filename later, the template will still appear in the Template Manager according to the entry in the Title field." -msgstr "" +msgstr "Jeśli używasz okna dialogowego Plik - Zapisz jako szablon, nazwa wprowadzona w tym oknie dialogowym jest używana jako nazwa pliku i wprowadzana w polu Tytuł. Jeśli później zmienisz nazwę pliku, szablon nadal będzie wyświetlany w Menedżerze szablonów zgodnie z wpisem w polu Tytuł." #. 2dvtG #: manage_templates.xhp @@ -19013,7 +19013,7 @@ "par_id411608052261808\n" "help.text" msgid "The Title field of a template is included in the Title field of new documents created from the template." -msgstr "" +msgstr "Pole Tytuł szablonu jest uwzględniane w polu Tytuł nowych dokumentów tworzonych z szablonu." #. wBXi5 #: manage_templates.xhp @@ -19022,7 +19022,7 @@ "hd_id571607893586889\n" "help.text" msgid "Controlling which Files Appear in the Template Manager" -msgstr "" +msgstr "Kontrolowanie, które pliki pojawiają się w Menedżerze szablonów" #. VFSmq #: manage_templates.xhp @@ -19031,7 +19031,7 @@ "par_id401607895018345\n" "help.text" msgid "The Template Manager displays templates located in the directories defined in the Paths dialog for Templates. The dialog is found by choosing %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths, selecting Templates, and clicking Edit." -msgstr "" +msgstr "Menedżer szablonów wyświetla szablony znajdujące się w katalogach zdefiniowanych dla szablonów w oknie dialogowym Ścieżki . Okno dialogowe można znaleźć, wybierając %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME - Ścieżki, wybierając Szablony i klikając Edytuj." #. tV3qE #: manage_templates.xhp @@ -19040,7 +19040,7 @@ "hd_id591607916351907\n" "help.text" msgid "Internal Paths" -msgstr "" +msgstr "Ścieżki wewnętrzne" #. D5hJD #: manage_templates.xhp @@ -19049,7 +19049,7 @@ "par_id621607704680080\n" "help.text" msgid "The Internal Paths directories cannot be changed. They identify the location of the predefined templates. These templates are always shown in the Template Manager." -msgstr "" +msgstr "Katalogi ścieżek wewnętrznych nie mogą być zmieniane. Określają lokalizację predefiniowanych szablonów. Te szablony są zawsze wyświetlane w Menedżerze szablonów." #. oJf6e #: manage_templates.xhp @@ -19058,7 +19058,7 @@ "hd_id801607948690116\n" "help.text" msgid "User Paths" -msgstr "" +msgstr "Ścieżki użytkownika" #. eGWNv #: manage_templates.xhp @@ -19067,7 +19067,7 @@ "par_id741607769970240\n" "help.text" msgid "The default setting for User Path is the template subdirectory in the user profile directory. " -msgstr "" +msgstr "Domyślnym ustawieniem ścieżki użytkownika jest podkatalog template w katalogu profilu użytkownika. " #. gV22c #: manage_templates.xhp @@ -19076,7 +19076,7 @@ "par_id851607959591934\n" "help.text" msgid "Templates in the directories specified in User Path and its subdirectories are shown in the Template Manager. Subdirectories within subdirectories are not recognized." -msgstr "" +msgstr "Szablony w katalogach określonych w ścieżce użytkownika i jej podkatalogach są wyświetlane w Menedżerze szablonów. Podkatalogi w podkatalogach nie są rozpoznawane." #. waqwG #: manage_templates.xhp @@ -19085,7 +19085,7 @@ "par_id71607961272593\n" "help.text" msgid "You can add additional directories to the User Path. There has to be at least one directory in User Path, but there are no limits on where it is located." -msgstr "" +msgstr "Możesz dodać dodatkowe katalogi do ścieżki użytkownika. W ścieżce użytkownika musi znajdować się co najmniej jeden katalog, ale nie ma ograniczeń co do jego lokalizacji." #. GHGdD #: manage_templates.xhp @@ -19094,7 +19094,7 @@ "par_id501608118578046\n" "help.text" msgid "It is not a good idea to add a root Document directory, or other high-level directory, to your template User Path. All subdirectories in a User Path directory appear in the Template Manager as Categories." -msgstr "" +msgstr "Dodawanie głównego katalogu dokumentów lub innego katalogu wysokiego poziomu do ścieżki użytkownika szablonu nie jest dobrym pomysłem. Wszystkie podkatalogi w katalogu ścieżki użytkownika pojawiają się w Menedżerze szablonów jako kategorie." #. aAxFA #: manage_templates.xhp @@ -19103,7 +19103,7 @@ "par_id551607771028134\n" "help.text" msgid "If you have more than one directory in the User Path, then you must select which directory will be used to save a document as a template when the File - Save as Template command is used." -msgstr "" +msgstr "Jeśli masz więcej niż jeden katalog w ścieżce użytkownika, musisz wybrać, który katalog zostanie użyty do zapisania dokumentu jako szablonu, gdy zostanie użyte polecenie Plik - Zapisz jako szablon." #. sADzq #: manage_templates.xhp @@ -19112,7 +19112,7 @@ "par_id811608202662210\n" "help.text" msgid "The Default button resets User Path to the initial setting when %PRODUCTNAME was installed." -msgstr "" +msgstr "Przycisk Domyślne resetuje ścieżkę użytkownika do ustawień początkowych, gdy zainstalowano %PRODUCTNAME." #. yEKCp #: manage_templates.xhp @@ -19121,7 +19121,7 @@ "hd_id361607961401720\n" "help.text" msgid "Working with Categories" -msgstr "" +msgstr "Praca z kategoriami" #. LYVsB #: manage_templates.xhp @@ -19130,7 +19130,7 @@ "par_id711607961275200\n" "help.text" msgid "The names of subdirectories in the user-defined directories appear as Category names in the Template Manager. If you rename a category, the subdirectory continues to be used, with the new category name stored in groupuinames.xml in the selected Default Path." -msgstr "" +msgstr "Nazwy podkatalogów w katalogach zdefiniowanych przez użytkownika pojawiają się jako nazwy kategorii w Menedżerze szablonów. Jeśli zmienisz nazwę kategorii, podkatalog będzie nadal używany, a nowa nazwa kategorii będzie przechowywana w groupuinames.xml w wybranej ścieżce domyślnej." #. cZrzf #: manage_templates.xhp @@ -19139,7 +19139,7 @@ "par_id181607963416635\n" "help.text" msgid "When a Category is selected, then all templates in that subdirectory are shown in the Template Manager, if All Applications is the Filter selection." -msgstr "" +msgstr "Po wybraniu kategorii wszystkie szablony w tym podkatalogu zostaną pokazane w Menedżerze szablonów, jeśli Wszystkie aplikacje to opcja Filtru." #. sgaaG #: manage_templates.xhp @@ -19148,7 +19148,7 @@ "par_id231607963570076\n" "help.text" msgid "A category can only show templates in its own subdirectory, with two exceptions." -msgstr "" +msgstr "Kategoria może wyświetlać szablony tylko w swoim własnym podkatalogu, z dwoma wyjątkami." #. AQy3T #: manage_templates.xhp @@ -19157,7 +19157,7 @@ "par_id471607963130068\n" "help.text" msgid "All Categories shows all templates, relative to the Filter selection." -msgstr "" +msgstr "Wszystkie kategorie pokazują wszystkie szablony względem wybranego Filtru." #. CAjXA #: manage_templates.xhp @@ -19166,7 +19166,7 @@ "par_id771607963149924\n" "help.text" msgid "My Templates shows all templates in the directories specified in User Path, relative to the Filter selection." -msgstr "" +msgstr "Moje szablony pokazują wszystkie szablony w katalogach określonych w ścieżce użytkownika, względem wyboru Filtru." #. jz7d6 #: manage_templates.xhp @@ -19175,7 +19175,7 @@ "par_id241607963343716\n" "help.text" msgid "Categories within a Category are not possible, because subdirectories within subdirectories are not recognized." -msgstr "" +msgstr "Kategorie w ramach kategorii nie są możliwe, ponieważ podkatalogi w podkatalogach nie są rozpoznawane." #. 5UhGC #: manage_templates.xhp @@ -19184,7 +19184,7 @@ "par_id831608207492365\n" "help.text" msgid "You can only rename and delete categories in the Default Path selected in the Edit Paths dialog." -msgstr "" +msgstr "Możesz zmieniać nazwy i usuwać kategorie tylko w domyślnej ścieżce wybranej w oknie dialogowym Edytuj ścieżki." #. fihyU #: manage_templates.xhp @@ -19193,7 +19193,7 @@ "par_id381609772517385\n" "help.text" msgid "If you delete a Category whose subdirectory is in the selected Default Path, then the subdirectory associated with the Category name and any files in the subdirectory are deleted." -msgstr "" +msgstr "Jeśli usuniesz kategorię, której podkatalog znajduje się w wybranej ścieżce domyślnej, podkatalog powiązany z nazwą kategorii oraz wszystkie pliki w tym podkatalogu zostaną usunięte." #. 9TJfd #: measurement_units.xhp @@ -20561,7 +20561,7 @@ "par_id3154823\n" "help.text" msgid "All contents of the Navigator window are referred to here as \"categories,\" whether headings, sheets, tables, frames, graphics, OLE objects, sections, hyperlinks, references, indexes, comments, or drawing objects." -msgstr "" +msgstr "Cała zawartość okna Nawigatora jest określana jako \"kategorie\", niezależnie od tego, czy są to nagłówki, arkusze, tabele, ramki, grafika, obiekty OLE, sekcje, hiperłącza, odnośniki, indeksy, komentarze czy obiekty rysunkowe." #. EseGu #: navigator.xhp @@ -20570,7 +20570,7 @@ "par_id3153662\n" "help.text" msgid "The Navigator displays types of objects contained in a document. If a plus sign appears next to a category, this indicates that at least one object of this kind exists. If you rest the mouse pointer on the category name, the number of objects is displayed in an extended tip." -msgstr "" +msgstr "Nawigator wyświetla typy obiektów zawartych w dokumencie. Jeśli obok kategorii pojawi się znak plus, oznacza to, że istnieje co najmniej jeden obiekt tego typu. Jeśli zatrzymasz wskaźnik myszy na nazwie kategorii, liczba obiektów zostanie wyświetlona w rozszerzonej końcówce." #. AECi8 #: navigator.xhp @@ -20579,7 +20579,7 @@ "par_id3146797\n" "help.text" msgid "Open a category by clicking on the plus sign. If you only want to view the entries in a certain category, select the category and click the Content Navigation View icon. Until you click the icon again, only the objects of this category will be displayed." -msgstr "" +msgstr "Otwórz kategorię, klikając znak plus. Jeśli chcesz wyświetlić tylko wpisy z określonej kategorii, wybierz kategorię i kliknij ikonę Widok nawigacji po zawartości. Do momentu ponownego kliknięcia ikony wyświetlane będą tylko obiekty z tej kategorii." #. dcze2 #: navigator.xhp @@ -20732,7 +20732,7 @@ "bm_id3154186\n" "help.text" msgid "numbering; turning offbullets; turning offremoving, see also deletingremoving;bullets and numberingkeyboard;removing numbering" -msgstr "" +msgstr "numerowanie;wyłączenieznaki wypunktowania;wyłączanieusuwanie, zobacz też usuwanieusuwanie;znaki wypunktowania i numerowanieklawiatura;usuwanie numeracji" #. T3U8R #: numbering_stop.xhp @@ -20759,7 +20759,7 @@ "par_id3147618\n" "help.text" msgid "For the current paragraph or selected paragraphs you can switch off the automatic numbering or listing. Click the No List icon in the Formatting bar. The list indenting is also removed." -msgstr "" +msgstr "Dla bieżącego akapitu lub zaznaczonych akapitów możesz wyłączyć automatyczną numerację lub zestawienie. Kliknij ikonę Brak listy na pasku Formatowanie. Wcięcie listy jest również usuwane." #. R49Gn #: numbering_stop.xhp @@ -20768,7 +20768,7 @@ "par_id3154288\n" "help.text" msgid "No List icon" -msgstr "" +msgstr "Ikona bez listy" #. nFCu3 #: numbering_stop.xhp @@ -20777,7 +20777,7 @@ "par_id151614326512513\n" "help.text" msgid "No List icon" -msgstr "" +msgstr "Ikona bez listy" #. Uzqm6 #: numbering_stop.xhp @@ -20786,7 +20786,7 @@ "par_id3144511\n" "help.text" msgid "If the cursor is located within a numbered or bulleted list, you can turn off automatic numbers or bullets for the current paragraph or selected paragraphs by clicking the Toggle Unordered List icon on the Text Formatting bar." -msgstr "" +msgstr "Jeśli kursor znajduje się na liście numerowanej lub wypunktowanej, możesz wyłączyć automatyczne numerowanie lub wypunktowanie dla bieżącego akapitu lub zaznaczonych akapitów, klikając ikonę Przełącz listę nieuporządkowaną na pasku Formatowanie tekstu." #. 9sUYS #: numbering_stop.xhp @@ -20795,7 +20795,7 @@ "par_id3155449\n" "help.text" msgid "Toggle Unordered List icon " -msgstr "" +msgstr "Ikona przełączania listy nieuporządkowanej " #. ikjGP #: numbering_stop.xhp @@ -20804,7 +20804,7 @@ "par_id781614327726646\n" "help.text" msgid "Toggle Unordered List icon" -msgstr "" +msgstr "Ikona przełączania listy nieuporządkowanej" #. BB2Be #: numbering_stop.xhp @@ -20813,7 +20813,7 @@ "par_id3148946\n" "help.text" msgid "To remove a number or bullet from a paragraph while preserving the list indenting:" -msgstr "" +msgstr "Aby usunąć numer lub znak wypunktowania z akapitu, zachowując wcięcie listy:" #. ZhAMF #: numbering_stop.xhp @@ -20822,7 +20822,7 @@ "par_id3148663\n" "help.text" msgid "Place the cursor at the beginning of a paragraph in a list and press the Backspace key." -msgstr "" +msgstr "Umieść kursor na początku akapitu na liście i naciśnij klawisz Backspace." #. vYz5P #: numbering_stop.xhp @@ -20831,7 +20831,7 @@ "par_id3150543\n" "help.text" msgid "The numbering of the paragraph disappears and is removed from the numbering sequence. Numbering resumes in the following paragraph." -msgstr "" +msgstr "Numeracja akapitu znika i jest usuwana z kolejności numeracji. Numeracja zostaje wznowiona w następnym akapicie." #. B8akd #: numbering_stop.xhp @@ -20840,7 +20840,7 @@ "par_id911614326873271\n" "help.text" msgid "Press Shift+Backspace at the beginning of a list paragraph to return the number or bullet." -msgstr "" +msgstr "Naciśnij Shift+Backspace na początku akapitu listy, aby zwrócić numer lub znak wypunktowania." #. djwVN #: numbering_stop.xhp @@ -20849,7 +20849,7 @@ "par_id3154123\n" "help.text" msgid "Press the Enter key in an empty numbered paragraph to stop the numbering." -msgstr "" +msgstr "Naciśnij klawisz Enter w pustym ponumerowanym akapicie, aby zatrzymać numerację." #. TBFcZ #: numbering_stop.xhp @@ -20867,7 +20867,7 @@ "tit\n" "help.text" msgid "OpenPGP" -msgstr "" +msgstr "OpenPGP" #. iJXbT #: openpgp.xhp @@ -20876,7 +20876,7 @@ "bm_id361543701916002\n" "help.text" msgid "OpenPGP;document encryption file encryption;OpenPGP public key;file encryption private key;file encryption file encryption;symmetric keys" -msgstr "" +msgstr "OpenPGP;szyfrowanie dokumentów szyfrowanie plików;OpenPGP klucz publiczny;szyfrowanie plików klucz prywatny;szyfrowanie plików plik szyfrowanie;klucze symetryczne" #. 3JoL7 #: openpgp.xhp @@ -20894,7 +20894,7 @@ "par_id531543693200117\n" "help.text" msgid "%PRODUCTNAME can encrypt documents using OpenPGP public key cryptography. The document is encrypted using a symmetric encryption algorithm." -msgstr "" +msgstr "%PRODUCTNAME może szyfrować dokumenty za pomocą kryptografii klucza publicznego OpenPGP. Dokument jest szyfrowany przy użyciu algorytmu szyfrowania symetrycznego." #. dXKcW #: openpgp.xhp @@ -20903,7 +20903,7 @@ "par_id291631706320606\n" "help.text" msgid "GPG signing only works for ODF documents." -msgstr "" +msgstr "Podpisywanie GPG działa tylko w przypadku dokumentów ODF." #. LrFLD #: openpgp.xhp @@ -20912,7 +20912,7 @@ "par_id551543694091730\n" "help.text" msgid "Choose menu File - Save as, select Encrypt with GPG key, Click Save." -msgstr "" +msgstr "Wybierz menu Plik - Zapisz jako, wybierz Zaszyfruj kluczem GPG, kliknij Zapisz." #. MpaPG #: openpgp.xhp @@ -20921,7 +20921,7 @@ "par_id421543694016897\n" "help.text" msgid "%PRODUCTNAME can encrypt documents confidentially using OpenPGP. The document is encrypted using a symmetric encryption algorithm, which requires a symmetric key. Each symmetric key is used only once and is also called a session key. The document and its session key are sent to the recipient. The session key must be sent to the recipients so they know how to decrypt the document, but to protect it during transmission it is encrypted with the recipient's public key. Only the private key belonging to the recipient can decrypt the session key." -msgstr "" +msgstr "%PRODUCTNAME może poufnie szyfrować dokumenty za pomocą OpenPGP. Dokument jest szyfrowany przy użyciu algorytmu szyfrowania symetrycznego, który wymaga klucza symetrycznego. Każdy klucz symetryczny jest używany tylko raz i jest również nazywany kluczem sesyjnym. Dokument i jego klucz sesji są wysyłane do odbiorcy. Klucz sesyjny musi zostać wysłany do odbiorców, aby wiedzieli, jak odszyfrować dokument, ale w celu ochrony podczas transmisji jest on szyfrowany kluczem publicznym odbiorcy. Tylko klucz prywatny należący do odbiorcy może odszyfrować klucz sesyjny." #. bUCZd #: openpgp.xhp @@ -20930,7 +20930,7 @@ "par_id931543694032072\n" "help.text" msgid "%PRODUCTNAME uses the OpenPGP software installed in your computer. If no OpenPGP software is available you must download and install one suitable for your operating system, likely from your application store or software distribution channel." -msgstr "" +msgstr "%PRODUCTNAME korzysta z oprogramowania OpenPGP zainstalowanego na komputerze. Jeśli nie jest dostępne żadne oprogramowanie OpenPGP, należy pobrać i zainstalować oprogramowanie odpowiednie dla systemu operacyjnego, prawdopodobnie ze sklepu z aplikacjami lub kanału dystrybucji oprogramowania." #. SMjcv #: openpgp.xhp @@ -20939,7 +20939,7 @@ "par_id131543846940809\n" "help.text" msgid "Here are some external GPG applications known to work with %PRODUCTNAME:" -msgstr "" +msgstr "Oto niektóre zewnętrzne aplikacje GPG, o których wiadomo, że współpracują z %PRODUCTNAME:" #. MuxzA #: openpgp.xhp @@ -20948,7 +20948,7 @@ "par_id831543846877587\n" "help.text" msgid "gpg4win on Windows" -msgstr "" +msgstr "gpg4win w systemie Windows" #. C6vxi #: openpgp.xhp @@ -20957,7 +20957,7 @@ "par_id191543846891252\n" "help.text" msgid "GPGTools on MacOS" -msgstr "" +msgstr "GPGTools w systemie MacOS" #. 645og #: openpgp.xhp @@ -20966,7 +20966,7 @@ "par_id791543846905735\n" "help.text" msgid "On Linux, usually already installed:" -msgstr "" +msgstr "W systemie Linux zwykle już zainstalowano:" #. sVQpd #: openpgp.xhp @@ -20975,7 +20975,7 @@ "par_id411544099245722\n" "help.text" msgid "gnupg - a command line utility for signing, encrypting and key management." -msgstr "" +msgstr "gnupg – narzędzie wiersza poleceń do podpisywania, szyfrowania i zarządzania kluczami." #. Tukjr #: openpgp.xhp @@ -20984,7 +20984,7 @@ "par_id811544099299847\n" "help.text" msgid "Graphical applications for gnupg such as Seahorse (gnome), Kleopatra and KGpg (KDE)." -msgstr "" +msgstr "Aplikacje graficzne dla gnupg, takie jak Seahorse (GNOME), Kleopatra i KGpg (KDE)." #. QQeCt #: openpgp.xhp @@ -20993,7 +20993,7 @@ "par_id631544099446081\n" "help.text" msgid "gpgme - an application program interface (API) to develop applications with GPG." -msgstr "" +msgstr "gpgme – interfejs programowania aplikacji (API) do tworzenia aplikacji za pomocą GPG." #. 7kqN3 #: openpgp.xhp @@ -21002,7 +21002,7 @@ "par_id461543694043196\n" "help.text" msgid "You must define a personal pair of cryptography keys with the OpenPGP application. Refer to the OpenPGP software installed on how to create a pair of keys, it is usually the first step to execute after the software installation." -msgstr "" +msgstr "Musisz zdefiniować osobistą parę kluczy kryptograficznych za pomocą aplikacji OpenPGP. Zapoznaj się z zainstalowanym oprogramowaniem OpenPGP, aby dowiedzieć się, jak utworzyć parę kluczy, zwykle jest to pierwszy krok do wykonania po instalacji oprogramowania." #. C4peF #: openpgp.xhp @@ -21011,7 +21011,7 @@ "hd_id881543694319935\n" "help.text" msgid "%PRODUCTNAME Encryption Setup" -msgstr "" +msgstr "Konfiguracja szyfrowania %PRODUCTNAME" #. JtoQn #: openpgp.xhp @@ -21020,7 +21020,7 @@ "par_id611543699681558\n" "help.text" msgid "Choose menu %PRODUCTNAME - PreferencesTools - Options – User Data. In the Cryptography area:" -msgstr "" +msgstr "Wybierz menu %PRODUCTNAME - PreferencjeNarzędzia - Opcje - Dane użytkownika. W obszarze Kryptografia:" #. 8cVYn #: openpgp.xhp @@ -21029,7 +21029,7 @@ "hd_id251543694437685\n" "help.text" msgid "Encrypting documents" -msgstr "" +msgstr "Szyfrowanie dokumentów" #. sgzCw #: openpgp.xhp @@ -21038,7 +21038,7 @@ "par_id121543694447798\n" "help.text" msgid "OpenPGP encryption requires the use of the public key of the recipient and this key must be available in the OpenPGP key chain stored in your computer. To encrypt a document:" -msgstr "" +msgstr "Szyfrowanie OpenPGP wymaga użycia klucza publicznego odbiorcy, który musi być dostępny w łańcuchu kluczy OpenPGP przechowywanym w komputerze. Aby zaszyfrować dokument:" #. 2QFoS #: openpgp.xhp @@ -21047,7 +21047,7 @@ "par_id501543694474227\n" "help.text" msgid "Choose File – Save As," -msgstr "" +msgstr "Wybierz Plik - Zapisz jako," #. BDWsL #: openpgp.xhp @@ -21056,7 +21056,7 @@ "par_id641543694535615\n" "help.text" msgid "Enter a name for the file." -msgstr "" +msgstr "Wprowadź nazwę pliku." #. oDRsr #: openpgp.xhp @@ -21065,7 +21065,7 @@ "par_id621543694550648\n" "help.text" msgid "Mark the Encrypt with GPG key checkbox." -msgstr "" +msgstr "Zaznacz pole wyboru Zaszyfruj kluczem GPG." #. FzDEx #: openpgp.xhp @@ -21074,7 +21074,7 @@ "par_id91543694595310\n" "help.text" msgid "Click Save. %PRODUCTNAME opens the OpenPGP public key selection dialog." -msgstr "" +msgstr "Kliknij Zapisz. %PRODUCTNAME otwiera okno dialogowe wyboru klucza publicznego OpenPGP." #. RtWDW #: openpgp.xhp @@ -21083,7 +21083,7 @@ "par_id31543694619204\n" "help.text" msgid "Choose the public key of the recipient. You can select multiple keys at the time." -msgstr "" +msgstr "Wybierz klucz publiczny odbiorcy. Możesz wybrać wiele kluczy jednocześnie." #. cNs8L #: openpgp.xhp @@ -21092,7 +21092,7 @@ "par_id811543694660297\n" "help.text" msgid "Click OK to close the dialog and save the file." -msgstr "" +msgstr "Kliknij OK, aby zamknąć okno dialogowe i zapisać plik." #. HNTvF #: openpgp.xhp @@ -21101,7 +21101,7 @@ "par_id981543694776604\n" "help.text" msgid "The file is saved encrypted with the selected public keys." -msgstr "" +msgstr "Plik zostanie zapisany w postaci zaszyfrowanej wybranymi kluczami publicznymi." #. 3UhvQ #: openpgp.xhp @@ -21110,7 +21110,7 @@ "par_id851543694185733\n" "help.text" msgid "Only the private key belonging to the recipient can decrypt the document, unless you also encrypt for yourself." -msgstr "" +msgstr "Tylko klucz prywatny należący do odbiorcy może odszyfrować dokument, chyba że szyfrujesz również dla siebie." #. A2rAK #: openpgp.xhp @@ -21119,7 +21119,7 @@ "hd_id81543694812238\n" "help.text" msgid "Decrypting documents" -msgstr "" +msgstr "Odszyfrowywanie dokumentów" #. GExFa #: openpgp.xhp @@ -21128,7 +21128,7 @@ "par_id731543694835151\n" "help.text" msgid "You can only decrypt documents that have been encrypted with your public key. To decrypt a document:" -msgstr "" +msgstr "Możesz odszyfrować tylko dokumenty, które zostały zaszyfrowane Twoim kluczem publicznym. Aby odszyfrować dokument:" #. zPqT4 #: openpgp.xhp @@ -21137,7 +21137,7 @@ "par_id801543694880414\n" "help.text" msgid "Open the document. An Enter password prompt shows." -msgstr "" +msgstr "Otwórz dokument. Zostanie wyświetlony monit o wprowadzenie hasła." #. gHyiK #: openpgp.xhp @@ -21146,7 +21146,7 @@ "par_id891543694892170\n" "help.text" msgid "Enter the password of the OpenPGP private key. The document is decrypted and the contents is available." -msgstr "" +msgstr "Wprowadź hasło klucza prywatnego OpenPGP. Dokument został odszyfrowany, a jego zawartość jest dostępna." #. F3GUe #: openpgp.xhp @@ -21155,7 +21155,7 @@ "hd_id811543694928568\n" "help.text" msgid "Difference between document encryption with OpenPGP and Save with password" -msgstr "" +msgstr "Różnica między szyfrowaniem dokumentów za pomocą OpenPGP a zapisywaniem z hasłem" #. FaXKc #: openpgp.xhp @@ -21164,7 +21164,7 @@ "par_id391543694940352\n" "help.text" msgid "Both commands address confidentiality, but in different ways." -msgstr "" +msgstr "Oba polecenia odnoszą się do poufności, ale na różne sposoby." #. hvWoX #: openpgp.xhp @@ -21173,7 +21173,7 @@ "par_id331543694947279\n" "help.text" msgid "When you save a document with a password, you must remember the password inserted to open the document later. Anyone else that needs to open the document must also know the password used at save time. Therefore, the Save password must be transmitted to be known by other users." -msgstr "" +msgstr "Gdy zapisujesz dokument z hasłem, musisz zapamiętać wprowadzone hasło, aby móc później otworzyć dokument. Każda inna osoba, która chce otworzyć dokument, musi również znać hasło używane podczas zapisywania. Dlatego zapisane hasło musi zostać przesłane, aby było znane innym użytkownikom." #. MGvAn #: openpgp.xhp @@ -21182,7 +21182,7 @@ "par_id351543694955038\n" "help.text" msgid "Files encrypted with the save password cannot be decrypted unless the save password is supplied." -msgstr "" +msgstr "Pliki zaszyfrowane zapisanym hasłem nie mogą zostać odszyfrowane, chyba że zostanie podane zapisane hasło." #. SfAMs #: openpgp.xhp @@ -21191,7 +21191,7 @@ "par_id681543694965846\n" "help.text" msgid "With document OpenPGP encryption, you define the set of users that can decrypt the document and you don’t need to send passwords through channels which security is unknown. Besides, the OpenPGP application manages the key chain of public keys more efficiently." -msgstr "" +msgstr "W przypadku dokumentu zaszyfrowanego za pomocą OpenPGP określasz użytkowników, którzy mogą odszyfrować dokument, więc nie musisz wysyłać haseł kanałami, w których nie znasz ich poziomu bezpieczeństwa. Ponadto aplikacje OpenPGP wydajniej zarządzają kluczami publicznymi." #. uvff4 #: openpgp.xhp @@ -21317,7 +21317,7 @@ "bm_id380260\n" "help.text" msgid "Format Paintbrush clone formatting formatting;copying copying;formatting Paintbrush" -msgstr "" +msgstr "format pędzla klonowanie formatowania formatowanie;kopiowanie kopiowanie;formatowanie pędzel" #. 7BBrB #: paintbrush.xhp @@ -21335,7 +21335,7 @@ "par_idN10655\n" "help.text" msgid "Use the Clone Formatting tool to copy formatting from a text selection or from an object and apply the formatting to another text selection or object." -msgstr "" +msgstr "Użyj narzędzia Klonuj formatowanie, aby skopiować formatowanie z zaznaczenia tekstu lub z obiektu i zastosować formatowanie do innego zaznaczenia tekstu lub obiektu." #. F7Fcd #: paintbrush.xhp @@ -21353,7 +21353,7 @@ "par_idN10667\n" "help.text" msgid "On the Standard Bar, click the Clone Formatting icon. The mouse cursor will change to a paint bucket." -msgstr "" +msgstr "Na pasku Standardowy kliknij ikonę Klonuj formatowanie. Kursor myszy zmieni się w wiadro z farbą." #. AZjCv #: paintbrush.xhp @@ -21371,7 +21371,7 @@ "par_id291629997756899\n" "help.text" msgid "If you want to apply the formatting to more than one selection, double-click the Clone Formatting icon Icon. After you apply all the formatting, click the icon again." -msgstr "" +msgstr "Jeśli chcesz zastosować formatowanie do więcej niż jednego zaznaczenia, kliknij dwukrotnie ikonę Klonuj formatowanieIkona. Po zastosowaniu całego formatowania ponownie kliknij ikonę." #. 9ivCF #: paintbrush.xhp @@ -21389,7 +21389,7 @@ "par_id1001629997571404\n" "help.text" msgid "In Calc, the Clone Formatting tool only copies formatting applied using the Format - Cells dialog or other equivalent methods. Therefore, any formatting applied directly to characters by selecting text inside a cell and then going to the Format - Character dialog will not be copied using the Clone Formatting tool." -msgstr "" +msgstr "W Calc narzędzie Klonuj formatowanie kopiuje tylko formatowanie zastosowane przy użyciu okna dialogowego Format - Komórki lub innych równoważnych metod. W związku z tym żadne formatowanie zastosowane bezpośrednio do znaków poprzez zaznaczenie tekstu w komórce, a następnie przejście do okna dialogowego Format - Znak nie zostanie skopiowane przy użyciu narzędzia klonowania formatowania." #. pjGa2 #: paintbrush.xhp @@ -21587,7 +21587,7 @@ "par_idN1070C\n" "help.text" msgid "Copies cell formatting specified using the Format - Cells dialog." -msgstr "" +msgstr "Kopiuje formatowanie komórek określone w oknie dialogowym Format - Komórki." #. Sigiv #: palette_files.xhp @@ -21596,7 +21596,7 @@ "tit\n" "help.text" msgid "Loading Color, Gradient, and Hatching Palettes" -msgstr "" +msgstr "Ładowanie palet kolorów, gradientów i kreskowania" #. fj5SB #: palette_files.xhp @@ -21605,7 +21605,7 @@ "bm_id3154510\n" "help.text" msgid "colors;loading listsgradients;loading listshatching;loading listsloading;colors/gradients/hatchings" -msgstr "" +msgstr "kolory;ładowanie listgradienty;ładowanie listkreskowanie;ładowanie listładowanie;kolory/gradienty/kreskowanie" #. K56V8 #: palette_files.xhp @@ -21623,7 +21623,7 @@ "par_id3156385\n" "help.text" msgid "You can use %PRODUCTNAME extensions to add colors palettes, gradients lists, or hatching patterns lists." -msgstr "" +msgstr "Możesz użyć rozszerzeń %PRODUCTNAME, aby dodać palety kolorów, listy gradientów lub listy wzorów kreskowania." #. ZCUF9 #: palette_files.xhp @@ -21632,7 +21632,7 @@ "hd_id3155961\n" "help.text" msgid "To load a color palette:" -msgstr "" +msgstr "Aby załadować paletę kolorów:" #. Eczt9 #: palette_files.xhp @@ -21641,7 +21641,7 @@ "hd_id451653832000113\n" "help.text" msgid "Directly from the Extension Manager" -msgstr "" +msgstr "Bezpośrednio z Menedżera rozszerzeń" #. b9ojA #: palette_files.xhp @@ -21650,7 +21650,7 @@ "par_id951653832957956\n" "help.text" msgid "If you have a custom palette available as an extension, use the Extension Manager to load the palette in %PRODUCTNAME:" -msgstr "" +msgstr "Jeśli masz niestandardową paletę dostępną jako rozszerzenie, użyj Menedżera rozszerzeń, aby załadować paletę do %PRODUCTNAME:" #. E5GkG #: palette_files.xhp @@ -21668,7 +21668,7 @@ "par_id251653832314161\n" "help.text" msgid "Click Add" -msgstr "" +msgstr "Kliknij Dodaj" #. X9Ryk #: palette_files.xhp @@ -21677,7 +21677,7 @@ "par_id131653832320577\n" "help.text" msgid "Select the extension file (usually a file with oxt file extension)" -msgstr "" +msgstr "Wybierz plik rozszerzenia (zwykle jest to plik z rozszerzeniem oxt)" #. G96ns #: palette_files.xhp @@ -21686,7 +21686,7 @@ "par_id711653832326219\n" "help.text" msgid "Click OK. You will be asked to restart %PRODUCTNAME." -msgstr "" +msgstr "Kliknij OK. Pojawi się monit o ponowne uruchomienie %PRODUCTNAME." #. ri65P #: palette_files.xhp @@ -21695,7 +21695,7 @@ "hd_id481653832380062\n" "help.text" msgid "From the Area dialog box" -msgstr "" +msgstr "Z okna dialogowego Obszar" #. 7CbVF #: palette_files.xhp @@ -21704,7 +21704,7 @@ "par_id871653833259427\n" "help.text" msgid "Loading color palettes from the Area dialog box brings a dialog with all color palettes available in the %PRODUCTNAME Extension Website." -msgstr "" +msgstr "Ładowanie palet kolorów z okna dialogowego Obszar powoduje wyświetlenie okna dialogowego ze wszystkimi paletami kolorów dostępnymi w witrynie rozszerzeń %PRODUCTNAME." #. 5yi7U #: palette_files.xhp @@ -21713,7 +21713,7 @@ "par_id3154656\n" "help.text" msgid "Choose Format - Area, and then click the Colors tab." -msgstr "" +msgstr "Wybierz Format - Obszar i kliknij kartę Kolory." #. v8FEC #: palette_files.xhp @@ -21722,7 +21722,7 @@ "par_id3152896\n" "help.text" msgid "Click the Add color palette via extensions button. A dialog with all available color palettes in the %PRODUCTNAME extension site will appear." -msgstr "" +msgstr "Kliknij przycisk Dodaj paletę kolorów za pomocą rozszerzeń. Pojawi się okno dialogowe ze wszystkimi dostępnymi paletami kolorów w witrynie rozszerzeń %PRODUCTNAME." #. XafCz #: palette_files.xhp @@ -21731,7 +21731,7 @@ "par_id3151239\n" "help.text" msgid "Locate the color list that you want to load, and then click Install." -msgstr "" +msgstr "Znajdź listę kolorów, którą chcesz załadować, a następnie kliknij Zainstaluj." #. XbjUS #: palette_files.xhp @@ -21740,7 +21740,7 @@ "par_id891653833998608\n" "help.text" msgid "Close the Extension dialog.You will be asked to restart %PRODUCTNAME." -msgstr "" +msgstr "Zamknij okno dialogowe Rozszerzenie. Pojawi się monit o ponowne uruchomienie %PRODUCTNAME." #. EDN4C #: palette_files.xhp @@ -21749,7 +21749,7 @@ "bm_id3149871\n" "help.text" msgid "colors; default colorscolors; %PRODUCTNAME colors%PRODUCTNAME colorscolors; HLC colorsMaterial Design colorscolors; webcolors; freieFarbe" -msgstr "" +msgstr "kolory; domyślne kolorykolory; kolory %PRODUCTNAMEkolory %PRODUCTNAMEkolory; kolory HLCkolory Material Designkolory; siećkolory; freieFarbe" #. ELMea #: palette_files.xhp @@ -21758,7 +21758,7 @@ "hd_id691653835138200\n" "help.text" msgid "About the Default Color palettes:" -msgstr "" +msgstr "Informacje o domyślnych paletach kolorów:" #. rDWo9 #: palette_files.xhp @@ -21767,7 +21767,7 @@ "par_id3149871\n" "help.text" msgid "The freieFarbe HLC color list is based on the CIELAB model and is optimized for professional CMYK printing." -msgstr "" +msgstr "Lista kolorów HLC freieFarbe oparta jest na modelu CIELAB i jest zoptymalizowana pod kątem profesjonalnego druku CMYK." #. DtCSD #: palette_files.xhp @@ -21776,7 +21776,7 @@ "par_id991653835058847\n" "help.text" msgid "The colors in the Compatibility and HTML palettes are optimized for displays using a resolution of 256 colors." -msgstr "" +msgstr "Kolory w paletach Zgodność i HTML są zoptymalizowane dla wyświetlaczy o rozdzielczości 256 kolorów." #. t6FmY #: palette_files.xhp @@ -21785,7 +21785,7 @@ "par_id751653835074137\n" "help.text" msgid "The palettes “LibreOffice” and “Material” contain the official %PRODUCTNAME and Material Design palettes respectively." -msgstr "" +msgstr "Palety \"LibreOffice\" i \"Material\" zawierają odpowiednio oficjalne palety %PRODUCTNAME i Material Design." #. LHAim #: palette_files.xhp @@ -21794,7 +21794,7 @@ "par_id441653835085498\n" "help.text" msgid "The \"tonal\" palette provides a set of colors organized by luminance contrast that work across different hardware." -msgstr "" +msgstr "Paleta \"Tonal\" zapewnia zestaw kolorów zorganizowanych według kontrastu luminancji, które działają na różnych urządzeniach." #. qcFBB #: palette_files.xhp @@ -21803,7 +21803,7 @@ "hd_id3150435\n" "help.text" msgid "To load a gradient and hatching palette:" -msgstr "" +msgstr "Aby załadować paletę gradientu i kreskowania:" #. tEhw5 #: palette_files.xhp @@ -22082,7 +22082,7 @@ "par_id3149233\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress or %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw, as appropriate." -msgstr "" +msgstr "Odpowiednio wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Impress lub %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Draw." #. E9NZ5 #: print_blackwhite.xhp @@ -22163,7 +22163,7 @@ "par_id3150541\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer or %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer/Web." -msgstr "" +msgstr "Wybierz %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Writer lub %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Writer/Web." #. vZrWW #: print_blackwhite.xhp @@ -22217,7 +22217,7 @@ "par_id3149667\n" "help.text" msgid "Choose Print text in black and click Print." -msgstr "Wybierz opcję Drukuj tekst kolorem czarnym i kliknij przycisk Drukuj." +msgstr "Wybierz opcję Drukuj tekst w czerni i kliknij przycisk Drukuj." #. F8xN2 #: print_blackwhite.xhp @@ -22370,7 +22370,7 @@ "bm_id3150620\n" "help.text" msgid "protecting; contents protected contents contents protection encryption of contents passwords for protecting contents security;protecting contents form controls; protecting draw objects;protecting OLE objects;protecting graphics;protecting frames;protecting" -msgstr "" +msgstr "ochrona; zawartość chroniona zawartość ochrona zawartości szyfrowanie zawartości hasła do ochrony zawartości bezpieczeństwo;ochrona zawartości formanty formularza; ochrona obiekty rysunkowe;ochrona obiekty OLE;ochrona grafika;ochrona ramki;ochrona" #. gpCCS #: protection.xhp @@ -22397,7 +22397,7 @@ "hd_id3146957\n" "help.text" msgid "Protecting Documents With Passwords When Saving" -msgstr "" +msgstr "Ochrona dokumentów za pomocą haseł podczas zapisywania" #. 74CYA #: protection.xhp @@ -22541,7 +22541,7 @@ "par_id3150088\n" "help.text" msgid "For example, for graphics inserted in Writer: Choose Format - Image - Properties - Options tab. Under Protect, mark Contents, Position and/or Size." -msgstr "" +msgstr "Na przykład dla grafiki wstawianej w programie Writer: wybierz kartę Format - Obraz - Właściwości - Opcje. W sekcji Chroń zaznacz Zawartość, Pozycja i/lub Rozmiar." #. 2qB2F #: protection.xhp @@ -22559,7 +22559,7 @@ "par_id3153657\n" "help.text" msgid "For example, for graphics inserted in Writer: Choose Format - Image - Properties - Options tab. Under Protect, unmark as appropriate." -msgstr "" +msgstr "Na przykład dla grafiki wstawianej w programie Writer: wybierz kartę Format - Obraz - Właściwości - Opcje. W sekcji Chroń usuń odpowiednie zaznaczenie." #. o2ioR #: protection.xhp @@ -22622,7 +22622,7 @@ "tit\n" "help.text" msgid "QR and Barcode" -msgstr "" +msgstr "QR i kod kreskowy" #. 3tty9 #: qrcode.xhp @@ -22631,7 +22631,7 @@ "bm_id901566317201860\n" "help.text" msgid "QR code;barcode" -msgstr "" +msgstr "kod QR; kod kreskowy" #. 82bgJ #: qrcode.xhp @@ -22649,7 +22649,7 @@ "par_id381566315781439\n" "help.text" msgid "Generate linear and matrix codes for any text or URL." -msgstr "" +msgstr "Wygeneruj kody liniowe i macierzowe dla dowolnego tekstu lub adresu URL." #. UCs5m #: qrcode.xhp @@ -22658,7 +22658,7 @@ "par_id411566316109551\n" "help.text" msgid "The QR and Barcode generation feature allows you to encode any text string or URL as a barcode or a QR code and insert it as a graphical object in a document for scanning." -msgstr "" +msgstr "Funkcja generowania kodu QR i kodu kreskowego umożliwia zakodowanie dowolnego ciągu tekstowego lub adresu URL jako kodu kreskowego lub kodu QR i wstawienie go jako obiektu graficznego do dokumentu w celu zeskanowania." #. UCeXG #: qrcode.xhp @@ -22667,7 +22667,7 @@ "hd_id611566316506278\n" "help.text" msgid "URL or text" -msgstr "" +msgstr "Adres URL lub tekst" #. q98jw #: qrcode.xhp @@ -22676,7 +22676,7 @@ "par_id251566316519649\n" "help.text" msgid "The text from which to generate the code." -msgstr "" +msgstr "Tekst, na podstawie którego ma zostać wygenerowany kod." #. 6mj5K #: qrcode.xhp @@ -22685,7 +22685,7 @@ "hd_id701566317347416\n" "help.text" msgid "Error correction" -msgstr "" +msgstr "Korekcja błędów" #. VezeF #: qrcode.xhp @@ -22694,7 +22694,7 @@ "par_id281566317365617\n" "help.text" msgid "The error correction value for the QR Code that is to be created. The error correction of a QR code is a measure that helps a QR code to recover if it is damaged." -msgstr "" +msgstr "Wartość korekty błędów dla kodu QR, który ma zostać utworzony. Korekcja błędów kodu QR to środek, który pomaga odzyskać uszkodzony kod QR." #. iHFHY #: qrcode.xhp @@ -22703,7 +22703,7 @@ "par_id781566317374864\n" "help.text" msgid "There are four standard error correction values." -msgstr "" +msgstr "Istnieją cztery standardowe wartości korekcji błędów." #. LdLRP #: qrcode.xhp @@ -22712,7 +22712,7 @@ "par_id271566316757549\n" "help.text" msgid "Low: 7% of codewords can be restored." -msgstr "" +msgstr "Niska: można przywrócić 7% słów kodowych." #. gNLdh #: qrcode.xhp @@ -22721,7 +22721,7 @@ "par_id751566316834436\n" "help.text" msgid "Medium: 15% of codewords can be restored." -msgstr "" +msgstr "Średnia: można przywrócić 15% słów kodowych." #. GQtTJ #: qrcode.xhp @@ -22730,7 +22730,7 @@ "par_id481566316843503\n" "help.text" msgid "Quartile: 25% of codewords can be restored." -msgstr "" +msgstr "Kwartylowa: można przywrócić 25% słów kodowych." #. QBceY #: qrcode.xhp @@ -22739,7 +22739,7 @@ "par_id641566316849901\n" "help.text" msgid "High: 30% of codewords can be restored." -msgstr "" +msgstr "Duża: można przywrócić 30% słów kodowych." #. S5CKs #: qrcode.xhp @@ -22748,7 +22748,7 @@ "hd_id701566316879046\n" "help.text" msgid "Margin" -msgstr "" +msgstr "Margines" #. PuMhx #: qrcode.xhp @@ -22757,7 +22757,7 @@ "par_id981566316947064\n" "help.text" msgid "The width of the margin surrounding the code." -msgstr "" +msgstr "Szerokość marginesu otaczającego kod." #. kZPNW #: qrcode.xhp @@ -22775,7 +22775,7 @@ "par_id401566321281041\n" "help.text" msgid "The QR code below was generated for the text www.libreoffice.org:" -msgstr "" +msgstr "Poniższy kod QR został wygenerowany dla tekstu www.libreoffice.org:" #. jDPsG #: qrcode.xhp @@ -22784,7 +22784,7 @@ "par_id561566321218295\n" "help.text" msgid "QR code example" -msgstr "" +msgstr "Przykład kodu QR" #. FuBFK #: redaction.xhp @@ -22793,7 +22793,7 @@ "tit\n" "help.text" msgid "Redaction" -msgstr "" +msgstr "Redagowanie" #. Fb9ty #: redaction.xhp @@ -22802,7 +22802,7 @@ "bm_id821562797360035\n" "help.text" msgid "spreadsheet; redacting contents presentations; redacting contents text documents; redacting contents redaction" -msgstr "" +msgstr "arkusz kalkulacyjny; redagowanie treściprezentacje; redagowanie treścidokumenty tekstowe; redagowanie treści redakcja" #. vYCGW #: redaction.xhp @@ -22820,7 +22820,7 @@ "par_id471562795247717\n" "help.text" msgid "Redacting documents blocks out words or portions of a document for authorized use or viewing." -msgstr "" +msgstr "Redagowanie dokumentów blokuje słowa lub fragmenty dokumentu do autoryzowanego użytku lub przeglądania." #. sB25i #: redaction.xhp @@ -22829,7 +22829,7 @@ "par_id291647277725275\n" "help.text" msgid "Redaction protects sensitive information and helps enterprises and organizations to comply with regulations on confidentiality or privacy." -msgstr "" +msgstr "Redagowanie chroni wrażliwe informacje i pomaga przedsiębiorstwom i organizacjom w przestrzeganiu przepisów dotyczących poufności lub prywatności." #. QdoMp #: redaction.xhp @@ -22838,7 +22838,7 @@ "par_id961562795751821\n" "help.text" msgid "Choose Tools - Redact" -msgstr "" +msgstr "Wybierz Narzędzia - Redaguj" #. JBRpx #: redaction.xhp @@ -22847,7 +22847,7 @@ "hd_id281562795791927\n" "help.text" msgid "How redaction works in %PRODUCTNAME?" -msgstr "" +msgstr "Jak działa redagowanie w %PRODUCTNAME?" #. PEEvZ #: redaction.xhp @@ -22856,7 +22856,7 @@ "par_id791562795799809\n" "help.text" msgid "The current document is exported to a drawing document edited in %PRODUCTNAME Draw. The redacted text or contents is removed from the drawing document and replaced by the redaction block of pixels, preventing any attempt to restore or copy the original contents. The redacted drawing document is often exported to PDF for publication or sharing." -msgstr "" +msgstr "Bieżący dokument jest eksportowany do dokumentu rysunku edytowanego w programie %PRODUCTNAME Draw. Zredagowany tekst lub treść jest usuwana z dokumentu rysunku i zastępowana przez blok redakcyjny składający się z pikseli, co uniemożliwia jakiekolwiek próby przywrócenia lub skopiowania oryginalnej zawartości. Zredagowany dokument rysunkowy jest często eksportowany do formatu PDF w celu publikacji lub udostępnienia." #. 7a2gY #: redaction.xhp @@ -22865,7 +22865,7 @@ "par_id671562795811658\n" "help.text" msgid "When redacting, the redaction shapes are transparent and in gray so the user can see what is being redacted." -msgstr "" +msgstr "Podczas redagowania kształty redagowania są przezroczyste i szare, dzięki czemu użytkownik może zobaczyć, co jest redagowane." #. HNkTB #: redaction.xhp @@ -22874,7 +22874,7 @@ "par_id81562795822462\n" "help.text" msgid "The source document (text, spreadsheet or presentation) is not affected by redaction and can continue to be edited." -msgstr "" +msgstr "Redagowanie nie ma wpływu na dokument źródłowy (tekst, arkusz kalkulacyjny lub prezentację) i można go nadal edytować." #. LDDyY #: redaction.xhp @@ -22883,7 +22883,7 @@ "par_id411562795827608\n" "help.text" msgid "Save and share the in-redaction copies of the document with peers either in the modifiable (drawing) or the verbatim (PDF) format at your option." -msgstr "" +msgstr "Zapisz i udostępnij kopie dokumentu w trakcie redagowania ze współpracownikami w formacie modyfikowalnym (rysunek) lub dosłownym (PDF), według własnego uznania." #. 4C7qW #: redaction.xhp @@ -22892,7 +22892,7 @@ "hd_id221562796409113\n" "help.text" msgid "The redaction toolbar" -msgstr "" +msgstr "Pasek narzędzi redagowania" #. ti4GD #: redaction.xhp @@ -22901,7 +22901,7 @@ "par_id441562796415026\n" "help.text" msgid "The redaction toolbar consist of four tools" -msgstr "" +msgstr "Pasek narzędzi redagowania składa się z czterech narzędzi" #. fUsGb #: redaction.xhp @@ -22910,7 +22910,7 @@ "par_id691562796423552\n" "help.text" msgid "Rectangle Redaction tool icon" -msgstr "" +msgstr "Ikona narzędzia redagowania prostokątem" #. UYBBQ #: redaction.xhp @@ -22919,7 +22919,7 @@ "par_id731562796423552\n" "help.text" msgid "The Rectangle Redaction tool is used to mark the content for redaction by drawing transparent rectangles covering the content. Use the handles to resize the redaction rectangle." -msgstr "" +msgstr "Narzędzie Redagowanie prostokątem służy do oznaczania treści do redagowania poprzez rysowanie przezroczystych prostokątów pokrywających treść. Użyj uchwytów, aby zmienić rozmiar prostokąta redagowania." #. jEFws #: redaction.xhp @@ -22928,7 +22928,7 @@ "par_id401562796560552\n" "help.text" msgid "Freeform Redaction tool icon" -msgstr "" +msgstr "Ikona narzędzia redagowania dowolną formą" #. mx6Ta #: redaction.xhp @@ -22937,7 +22937,7 @@ "par_id641562796560552\n" "help.text" msgid "The Freeform Redaction tool allows the user to mark the content for redaction by drawing free-form lines or polygons covering the content." -msgstr "" +msgstr "Narzędzie Redagowanie dowolną formą umożliwia użytkownikowi oznaczanie treści do redagowania poprzez rysowanie dowolnych linii lub wielokątów pokrywających treść." #. fAQEW #: redaction.xhp @@ -22946,7 +22946,7 @@ "par_id961562796701222\n" "help.text" msgid "White Redacted Export tool icon Black Redacted Export tool icon" -msgstr "" +msgstr "Ikona narzędzia eksportu zredagowanego pliku (białego) Ikona narzędzia eksportu zredagowanego pliku (czarnego)" #. EUfoB #: redaction.xhp @@ -22955,7 +22955,7 @@ "par_id231562796701222\n" "help.text" msgid "The Redacted Export button box has two options:" -msgstr "" +msgstr "Pole przycisku Eksportuj zredagowany ma dwie opcje:" #. iFMK3 #: redaction.xhp @@ -22964,7 +22964,7 @@ "par_id551562796791417\n" "help.text" msgid "Redacted Export (Black): finalize your document by converting the semitransparent redaction shapes to opaque black and export as pixels in the PDF file." -msgstr "" +msgstr "Eksportuj zredagowany plik PDF (czarny): sfinalizuj swój dokument, konwertując półprzezroczyste kształty redagowania na nieprzezroczystą czerń i wyeksportuj jako piksele w pliku PDF." #. HSvWX #: redaction.xhp @@ -22973,7 +22973,7 @@ "par_id191562796822685\n" "help.text" msgid "Redacted Export (White): finalize your document by converting the semitransparent redaction shapes to opaque white shapes, and export as pixels in the PDF file." -msgstr "" +msgstr "Eksportuj zredagowany plik PDF (biały): sfinalizuj swój dokument, konwertując półprzezroczyste kształty redagowania na nieprzezroczyste białe kształty i wyeksportuj jako piksele w pliku PDF." #. 2w5mE #: redaction.xhp @@ -22982,7 +22982,7 @@ "par_id961562796947231\n" "help.text" msgid "Direct Export to PDF icon" -msgstr "" +msgstr "Ikona bezpośredniego eksportu do PDF" #. wqjEG #: redaction.xhp @@ -22991,7 +22991,7 @@ "par_id901562796947232\n" "help.text" msgid "Direct Export to PDF: Makes an in-redaction copy of the document in PDF to share as a verbatim copy for review" -msgstr "" +msgstr "Eksportuj bezpośrednio jako PDF: tworzy kopię dokumentu w formacie PDF w trakcie redagowania, aby udostępnić ją jako dosłowną kopię do recenzji." #. CigEo #: redlining.xhp @@ -23063,7 +23063,7 @@ "par_id3146957\n" "help.text" msgid "Let's say you also emailed a copy of the report to a good friend and colleague who has done research on a similar topic in the past. You asked for a few suggestions, and the document is now returned by email with your colleague's suggestions." -msgstr "" +msgstr "Załóżmy, że wysłałeś kopię raportu e-mailem do dobrego znajomego i współpracownika, który w przeszłości prowadził badania na podobny temat. Poprosiłeś o kilka sugestii, a dokument jest teraz zwracany e-mailem z sugestiami Twojego kolegi." #. CoW6n #: redlining.xhp @@ -23090,7 +23090,7 @@ "bm_id3150247\n" "help.text" msgid "changes; accepting or rejecting review function;accepting or rejecting changes" -msgstr "" +msgstr "zmiany; akceptacja lub odrzucaniefunkcja recenzji; akceptowanie lub odrzucanie zmian" #. FTaFc #: redlining_accept.xhp @@ -23144,7 +23144,7 @@ "par_id3153748\n" "help.text" msgid "Open the document and choose Edit - Track Changes - Manage. The Manage Changes dialog appears." -msgstr "Otwórz dokument i wybierz Edycja - Śledź zmiany - Zarządzaj. Wyświetlone zostanie okno dialogowe Zarządzanie zmianami." +msgstr "Otwórz dokument i wybierz Edycja - Śledź zmiany - Zarządzaj. Wyświetlone zostanie okno dialogowe Zarządzaj zmianami." #. 3Qapx #: redlining_accept.xhp @@ -23864,7 +23864,7 @@ "par_idN10760\n" "help.text" msgid "In the Category list box, scroll down and open the \"Application Macros\" entry." -msgstr "" +msgstr "W polu listy Kategoria przewiń w dół i otwórz wpis \"Makra aplikacji\"." #. eJ2zS #: scripting.xhp @@ -23873,7 +23873,7 @@ "par_idN10768\n" "help.text" msgid "You see entries for \"Application Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages." -msgstr "" +msgstr "Zobaczysz wpisy \"Makra aplikacji\" (skrypty w katalogu współdzielonym Twojej instalacji %PRODUCTNAME), \"Moje makra\" (skrypty w katalogu użytkownika) i bieżący dokument. Otwórz dowolny z nich, aby zobaczyć obsługiwane języki skryptowe." #. ydmmt #: scripting.xhp @@ -23927,7 +23927,7 @@ "par_idN10A59\n" "help.text" msgid "In the Category list box, scroll down and open the \"Application Macros\" entry." -msgstr "" +msgstr "W polu listy Kategoria przewiń w dół i otwórz wpis \"Makra aplikacji\"." #. 3vSLi #: scripting.xhp @@ -23936,7 +23936,7 @@ "par_idN10A61\n" "help.text" msgid "You see entries for \"Application Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages." -msgstr "" +msgstr "Zobaczysz wpisy \"Makra aplikacji\" (skrypty w katalogu współdzielonym Twojej instalacji %PRODUCTNAME), \"Moje makra\" (skrypty w katalogu użytkownika) i bieżący dokument. Otwórz dowolny z nich, aby zobaczyć obsługiwane języki skryptowe." #. FhQDE #: scripting.xhp @@ -24017,7 +24017,7 @@ "par_idN10A9E\n" "help.text" msgid "In the Library list box, scroll down and open the \"Application Macros\" entry." -msgstr "" +msgstr "W polu listy Biblioteka przewiń w dół i otwórz wpis \"Makra aplikacji\"." #. EFNsf #: scripting.xhp @@ -24026,7 +24026,7 @@ "par_idN10AA6\n" "help.text" msgid "You see entries for \"Application Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages." -msgstr "" +msgstr "Zobaczysz wpisy \"Makra aplikacji\" (skrypty w katalogu współdzielonym Twojej instalacji %PRODUCTNAME), \"Moje makra\" (skrypty w katalogu użytkownika) i bieżący dokument. Otwórz dowolny z nich, aby zobaczyć obsługiwane języki skryptowe." #. XQd7D #: scripting.xhp @@ -24215,7 +24215,7 @@ "par_idN10B3B\n" "help.text" msgid "Choose Format - Image - Properties - Macro." -msgstr "" +msgstr "Wybierz Format - Obraz - Właściwości - Makro." #. AnNkn #: scripting.xhp @@ -24359,7 +24359,7 @@ "par_id3147008\n" "help.text" msgid "To prevent two words from being separated at the end of a line, hold down the Command keyCtrl key and the Shift key when you type a space between the words." -msgstr "" +msgstr "Aby zapobiec rozdzieleniu dwóch słów na końcu linii, przytrzymaj klawisze CommandCtrl i Shift podczas wpisywania spacji między słowami." #. ZJmiP #: space_hyphen.xhp @@ -24386,7 +24386,7 @@ "par_id3148538\n" "help.text" msgid "An example of a non-breaking hyphen is a company name such as A-Z. Obviously you would not want A- to appear at the end of a line and Z at the beginning of the next line. To solve this problem, press Shift+CommandCtrl+ minus sign. In other words, hold down the Shift and CommandCtrl keys and press the minus key." -msgstr "" +msgstr "Przykładem nierozdzielającego łącznika jest nazwa firmy, taka jak A-Z. Oczywiście nie chciałbyś, aby A- pojawił się na końcu linii, a Z na początku następnej linii. Aby rozwiązać ten problem, naciśnij Shift+CommandCtrl+ znak minusa. Innymi słowy, przytrzymaj Shift i CommandCtrl i naciśnij klawisz znaku minusa." #. h8mVr #: space_hyphen.xhp @@ -24431,7 +24431,7 @@ "par_id3154306\n" "help.text" msgid "To support automatic hyphenation by entering a soft hyphen inside a word yourself, use the keys CommandCtrl+minus sign. The word is separated at this position when it is at the end of the line, even if automatic hyphenation for this paragraph is switched off." -msgstr "" +msgstr "Aby obsługiwać automatyczne dzielenie wyrazów przez samodzielne wprowadzanie miękkiego łącznika w słowie, użyj klawiszy CommandCtrl +znak minusa. Słowo jest oddzielane w tym miejscu, gdy znajduje się na końcu wiersza, nawet jeśli automatyczne dzielenie wyrazów dla tego akapitu jest wyłączone." #. hiwHr #: space_hyphen.xhp @@ -24584,7 +24584,7 @@ "tit\n" "help.text" msgid "Creating and Changing Default and Custom Templates" -msgstr "" +msgstr "Tworzenie i zmiana szablonów domyślnych i niestandardowych" #. CaTEi #: standard_template.xhp @@ -24593,7 +24593,7 @@ "bm_id3154285\n" "help.text" msgid "modifying, see changingchanging, see also editing and replacingdefault templates; changingdefault templates; creatingdefaults;documentscustom templatesupdating; templatesediting;templatestemplates;editing and savingsaving;templatesresetting;templates" -msgstr "" +msgstr "modyfikowanie, zobacz zmienianiezmiana, patrz także edycja i zastępowaniedomyślnych szablonów; zmianadomyślnych szablonów; tworzeniedomyślne;dokumentywłasne szablonyaktualizacja; szablonyedycja;szablonyszablony;edycja i zapisywaniezapisywanie;szablonyresetowanie;szablony" #. fZ8SR #: standard_template.xhp @@ -24620,7 +24620,7 @@ "par_id3159152\n" "help.text" msgid "You can define document templates for each $[officename] application." -msgstr "" +msgstr "Możesz zdefiniować szablony dokumentów dla każdej aplikacji $[officename]." #. T3xE3 #: standard_template.xhp @@ -24629,7 +24629,7 @@ "hd_id3150792\n" "help.text" msgid "Creating a Default Template" -msgstr "" +msgstr "Tworzenie szablonu domyślnego" #. WaygD #: standard_template.xhp @@ -24638,7 +24638,7 @@ "par_id3154365\n" "help.text" msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template." -msgstr "" +msgstr "Najpierw otwórz istniejący szablon $[officename] i zmodyfikuj go lub otwórz nowy dokument i edytuj go w razie potrzeby, aby utworzyć żądany szablon." #. bnC8i #: standard_template.xhp @@ -24647,7 +24647,7 @@ "par_id3145748\n" "help.text" msgid "Save the document by choosing File - Templates - Save as Template, then enter the template name, click the Set as default template checkbox, and save in the My Templates category." -msgstr "" +msgstr "Zapisz dokument, wybierając Plik - Szablony - Zapisz jako szablon, a następnie wprowadź nazwę szablonu, kliknij pole wyboru Ustaw jako domyślny szablon i zapisz w kategorii Moje szablony." #. td5TZ #: standard_template.xhp @@ -24656,7 +24656,7 @@ "par_id3146901\n" "help.text" msgid "The next time you open a new text document, the new document will be based on this new default template." -msgstr "" +msgstr "Następnym razem, gdy otworzysz nowy dokument tekstowy, nowy dokument będzie oparty na tym nowym domyślnym szablonie." #. MEA5R #: standard_template.xhp @@ -24665,7 +24665,7 @@ "hd_id751605458425017\n" "help.text" msgid "Modifying a Default Template" -msgstr "" +msgstr "Modyfikowanie szablonu domyślnego" #. 7bPEX #: standard_template.xhp @@ -24674,7 +24674,7 @@ "par_id3154011\n" "help.text" msgid "Choose File - Templates - Manage Templates." -msgstr "" +msgstr "Wybierz Plik - Szablony - Zarządzaj szablonami." #. mhwYW #: standard_template.xhp @@ -24683,7 +24683,7 @@ "par_id531605464645795\n" "help.text" msgid "Use Filter to select the type of document." -msgstr "" +msgstr "Użyj Filtru, aby wybrać typ dokumentu." #. qaBUc #: standard_template.xhp @@ -24692,7 +24692,7 @@ "par_id981605464830645\n" "help.text" msgid "The default template is marked with a green check mark. Right-click that template and choose Edit." -msgstr "" +msgstr "Domyślny szablon jest oznaczony zielonym znacznikiem wyboru. Kliknij ten szablon prawym przyciskiem myszy i wybierz Edycja." #. Us6Qr #: standard_template.xhp @@ -24701,7 +24701,7 @@ "par_id211605464919603\n" "help.text" msgid "Make desired changes, choose File - Save, and close the document." -msgstr "" +msgstr "Dokonaj żądanych zmian, wybierz Plik - Zapisz i zamknij dokument." #. Mype2 #: standard_template.xhp @@ -24710,7 +24710,7 @@ "par_id851605464921341\n" "help.text" msgid "When you open a new document, the modified default template will be used." -msgstr "" +msgstr "Po otwarciu nowego dokumentu zostanie użyty zmodyfikowany szablon domyślny." #. SrDht #: standard_template.xhp @@ -24719,7 +24719,7 @@ "par_id131605483428241\n" "help.text" msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template." -msgstr "" +msgstr "%PRODUCTNAME udostępnia wbudowane szablony prezentacji, których nie można edytować, zmieniać ich nazwy ani usuwać. Aby zmodyfikować wbudowany szablon prezentacji, otwórz dokument za pomocą szablonu, zmodyfikuj go, a następnie zapisz jako nowy szablon." #. o4GyG #: standard_template.xhp @@ -24728,7 +24728,7 @@ "par_id461605483905608\n" "help.text" msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template." -msgstr "" +msgstr "%PRODUCTNAME udostępnia wbudowane szablony programu Writer, których nie można edytować, zmieniać ich nazwy ani usuwać. Aby zmodyfikować wbudowany szablon, otwórz dokument za pomocą szablonu, zmodyfikuj go, a następnie zapisz jako nowy szablon." #. S3sg4 #: standard_template.xhp @@ -24737,7 +24737,7 @@ "hd_id891605476755142\n" "help.text" msgid "Setting a Template as Default" -msgstr "" +msgstr "Ustawianie szablonu jako domyślnego" #. YPWzX #: standard_template.xhp @@ -24746,7 +24746,7 @@ "par_id501605476796634\n" "help.text" msgid "" -msgstr "" +msgstr "" #. AvnDi #: standard_template.xhp @@ -24755,7 +24755,7 @@ "par_id711605476873605\n" "help.text" msgid "Right-click on template to be made default, choose Set as Default." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy szablon, który ma być ustawiony jako domyślny, wybierz Ustaw jako domyślny." #. LNBjE #: standard_template.xhp @@ -24764,7 +24764,7 @@ "hd_id3153764\n" "help.text" msgid "Creating a Custom Template" -msgstr "" +msgstr "Tworzenie szablonu niestandardowego" #. eUBit #: standard_template.xhp @@ -24773,7 +24773,7 @@ "par_id231605475396242\n" "help.text" msgid "" -msgstr "" +msgstr "" #. DuAAp #: standard_template.xhp @@ -24782,7 +24782,7 @@ "par_id251605475503009\n" "help.text" msgid "Choose File - Templates - Save As Template, then enter the template name, choose a Template category, and save." -msgstr "" +msgstr "Wybierz Plik - Szablony - Zapisz jako szablon, następnie wprowadź nazwę szablonu, wybierz kategorię szablonu i zapisz." #. FZqGj #: standard_template.xhp @@ -24791,7 +24791,7 @@ "hd_id311605475738848\n" "help.text" msgid "Modifying a Custom Template" -msgstr "" +msgstr "Modyfikowanie szablonu niestandardowego" #. CpDHT #: standard_template.xhp @@ -24800,7 +24800,7 @@ "par_id901605475822840\n" "help.text" msgid "" -msgstr "" +msgstr "" #. 3w93A #: standard_template.xhp @@ -24809,7 +24809,7 @@ "par_id51605476162735\n" "help.text" msgid "Right-click on the template to be modified, and choose Edit." -msgstr "" +msgstr "Kliknij prawym przyciskiem myszy szablon do modyfikacji i wybierz Edycja." #. VMFLZ #: standard_template.xhp @@ -24818,7 +24818,7 @@ "par_id191605477448444\n" "help.text" msgid "" -msgstr "" +msgstr "" #. 2BZGR #: standard_template.xhp @@ -24827,7 +24827,7 @@ "hd_id3149109\n" "help.text" msgid "Saving a Template in the Template Folder" -msgstr "" +msgstr "Zapisywanie szablonu w folderze szablonów" #. eWjFn #: standard_template.xhp @@ -24836,7 +24836,7 @@ "par_id3146918\n" "help.text" msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the User Paths directory specified for Templates in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths. It is often easier to save a document with File - Templates - Save As Template, because it automatically places the template in the appropriate directory." -msgstr "" +msgstr "Możesz zapisać dowolny dokument jako szablon, wybierając typ pliku \"Szablon\" w oknie dialogowym Zapisz. Aby uzyskać dostęp do szablonu z menedżera szablonów, zapisz szablon w katalogu Ścieżki użytkownika określonym dla Szablony w %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME - Ścieżki. Często łatwiej jest zapisać dokument za pomocą Plik - Szablony - Zapisz jako szablon, ponieważ automatycznie umieszcza szablon w odpowiednim katalogu." #. 9uLRP #: standard_template.xhp @@ -24881,7 +24881,7 @@ "hd_id3156410\n" "help.text" msgid "Starting $[officename] Software With Parameters" -msgstr "" +msgstr "Uruchamianie oprogramowania $[officename] z parametrami" #. GVpcE #: start_parameters.xhp @@ -24917,7 +24917,7 @@ "par_id3156152\n" "help.text" msgid "Search for Run in the Windows Start menu." -msgstr "" +msgstr "Wyszukaj Uruchom w menu Start systemu Windows." #. xf2BF #: start_parameters.xhp @@ -24926,7 +24926,7 @@ "par_id3152472\n" "help.text" msgid "Type the following text in the Open text field and click OK." -msgstr "" +msgstr "Wpisz następujący tekst w polu tekstowym Otwórz i kliknij OK." #. JeMZ2 #: start_parameters.xhp @@ -24935,7 +24935,7 @@ "par_id3147561\n" "help.text" msgid "\"{install}\\program\\soffice.com\" {parameter}" -msgstr "" +msgstr "\"{install}\\program\\soffice.com\" {parameter}" #. FEwgW #: start_parameters.xhp @@ -24944,7 +24944,7 @@ "par_id3153360\n" "help.text" msgid "Replace {install} with the path to your installation of %PRODUCTNAME software (for example, C:\\Program Files\\%PRODUCTNAME). Use soffice.exe instead of soffice.com, when you do not need console (e.g., you do not use command-line interface for headless operations)." -msgstr "" +msgstr "Zastąp {install} ścieżką do instalacji oprogramowania %PRODUCTNAME (na przykład C:\\Program Files\\%PRODUCTNAME). Użyj soffice.exe zamiast soffice.com, jeśli nie potrzebujesz konsoli (np. nie używasz interfejsu wiersza poleceń do operacji bezobsługowych)." #. x5jE9 #: start_parameters.xhp @@ -24953,7 +24953,7 @@ "par_id3157152\n" "help.text" msgid "Open a shell under Linux, *BSD, or macOS platforms." -msgstr "" +msgstr "Otwórz powłokę na platformach Linux, *BSD lub macOS." #. LEs72 #: start_parameters.xhp @@ -24962,7 +24962,7 @@ "par_id3147669\n" "help.text" msgid "Type the following line of text, then press Return:" -msgstr "" +msgstr "Wpisz następujący wiersz tekstu, a następnie naciśnij Return:" #. smkWS #: start_parameters.xhp @@ -24971,7 +24971,7 @@ "par_id3143561\n" "help.text" msgid "{install}/program/soffice {parameter}" -msgstr "" +msgstr "{install}/program/soffice {parameter}" #. BEAF7 #: start_parameters.xhp @@ -24980,7 +24980,7 @@ "par_id3157360\n" "help.text" msgid "Replace {install} with the path to your installation of %PRODUCTNAME software (for example, /opt/%PRODUCTNAME in UNIX)" -msgstr "" +msgstr "Zastąp {install} ścieżką do instalacji oprogramowania %PRODUCTNAME (na przykład /opt/%PRODUCTNAME w systemie UNIX)" #. 4EMfS #: start_parameters.xhp @@ -25160,7 +25160,7 @@ "par_id2016120409236546\n" "help.text" msgid "(macOS sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments." -msgstr "" +msgstr "(tylko piaskownica macOS) Zwraca ścieżkę katalogu tymczasowego dla bieżącego użytkownika i kończy działanie. Zastępuje wszystkie inne argumenty." #. 4t9KE #: start_parameters.xhp @@ -25178,7 +25178,7 @@ "par_id3153919\n" "help.text" msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter no which deactivates the Quickstarter service. Without parameters this service is activated." -msgstr "Aktywuje [Dezaktywuje] usługę Quickstarter. Może pobierać tylko jeden parametr no, który dezaktywuje usługę Quickstarter. Bez parametrów, usługa jest włączana." +msgstr "Aktywuje [dezaktywuje] usługę Szybkie uruchamianie. Może przyjąć tylko jeden parametr no, który dezaktywuje usługę Szybkie uruchamianie. Bez parametrów usługa zostanie włączona." #. GsDGX #: start_parameters.xhp @@ -25196,7 +25196,7 @@ "par_id315053o\n" "help.text" msgid "Forces an input filter type, if possible. For example:" -msgstr "" +msgstr "Wymusza typ filtra wejściowego, jeśli to możliwe. Na przykład:" #. rcEZp #: start_parameters.xhp @@ -25214,7 +25214,7 @@ "par_id3146786\n" "help.text" msgid "Sets the DISPLAY environment variable on UNIX-like platforms to the value {display}. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms." -msgstr "" +msgstr "Ustawia zmienną środowiskową DISPLAYw systemach uniksowych na wartość {display}. Parametr ten obsługiwany jest tylko przez skrypt startowy oprogramowania $[officename] w systemach uniksowych." #. 67rps #: start_parameters.xhp @@ -25277,7 +25277,7 @@ "par_id3147341\n" "help.text" msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the kill command (UNIX-like systems)." -msgstr "Jeśli oprogramowanie $[officename] zostało uruchomione z tym parametrem, można zakończyć jego pracę tylko z poziomu Menadżera Zadań (Windows) lub z użyciem polecenia kill (w systemach uniksowych)." +msgstr "Jeśli oprogramowanie $[officename] zostało uruchomione z tym parametrem, można zakończyć jego pracę tylko z poziomu Menedżera zadań (Windows) lub z użyciem polecenia kill (w systemach uniksowych)." #. tVXKn #: start_parameters.xhp @@ -25412,7 +25412,7 @@ "par_id631571706947129\n" "help.text" msgid "Unix and Linux user can invoke %PRODUCTNAME with these additional parameters for debugging purposes." -msgstr "" +msgstr "Użytkownicy systemów Unix i Linux mogą wywołać %PRODUCTNAME z tymi dodatkowymi parametrami w celu debugowania." #. zJG7Z #: start_parameters.xhp @@ -25421,7 +25421,7 @@ "par_id491571706970241\n" "help.text" msgid "Parameter" -msgstr "" +msgstr "Parametr" #. fg9oE #: start_parameters.xhp @@ -25430,7 +25430,7 @@ "par_id11571706970242\n" "help.text" msgid "Meaning" -msgstr "" +msgstr "Znaczenie" #. iAEUa #: start_parameters.xhp @@ -25439,7 +25439,7 @@ "par_id11571706970245\n" "help.text" msgid "An enhanced debugger." -msgstr "" +msgstr "Udoskonalony debugger." #. VQCLF #: start_parameters.xhp @@ -25448,7 +25448,7 @@ "par_id971571707080686\n" "help.text" msgid "Prints the backtrace of the entire stack." -msgstr "" +msgstr "Zwraca ślad całego stosu." #. EybYK #: start_parameters.xhp @@ -25457,7 +25457,7 @@ "par_id621571707097884\n" "help.text" msgid "strace is a diagnostic, debugging and instructional userspace utility for Linux." -msgstr "" +msgstr "strace to diagnostyczne, debugujące i instruktażowe narzędzie przestrzeni użytkownika dla systemu Linux." #. vGFFD #: start_parameters.xhp @@ -25466,7 +25466,7 @@ "par_id281571707115502\n" "help.text" msgid "Automatically detect many memory management and threading bugs, and profile the program in detail." -msgstr "" +msgstr "Automatycznie wykrywa szereg błędów związanych z zarządzaniem pamięcią i wykorzystaniem wątków oraz wykonuje szczegółowe profilowanie programu." #. D3bfs #: start_parameters.xhp @@ -25475,7 +25475,7 @@ "par_id571571707462064\n" "help.text" msgid "The debug options --record, --backtrace, --strace and --valgrind cannot be used together. Please use them one by one." -msgstr "" +msgstr "Opcji debugowania --record, --backtrace, --strace i --valgrind nie można używać razem. Proszę używać je jedną po drugiej." #. hntPb #: start_parameters.xhp @@ -25601,7 +25601,7 @@ "par_id3155081\n" "help.text" msgid "Prints the following files to the printer {Printername} and ends. The splash screen does not appear." -msgstr "Drukuje następujące pliki do drukarce {nazwa_drukarki} i kończy pracę. Ekran powitalny nie jest wyświetlany." +msgstr "Drukuje następujące pliki na drukarce {Printername} i kończy pracę. Ekran powitalny nie jest wyświetlany." #. 2Fa6r #: start_parameters.xhp @@ -25727,7 +25727,7 @@ "par_id2016120401348732\n" "help.text" msgid "Applies filter \"txt:Text\" to the following text documents and dump text content to console (implies --headless). Cannot be used with --convert-to." -msgstr "" +msgstr "Stosuje filtr \"txt:Text\" do następujących dokumentów tekstowych i zrzuca zawartość tekstową do konsoli (implikuje --headless). Nie można użyć z --convert-to." #. dmEjt #: start_parameters.xhp @@ -25736,7 +25736,7 @@ "par_id2016120401398657\n" "help.text" msgid "Set a bootstrap variable. For example, to set a non-default user profile path:" -msgstr "" +msgstr "Ustaw zmienną bootstrap. Na przykład, aby ustawić inną niż domyślna ścieżkę profilu użytkownika:" #. n26C4 #: start_parameters.xhp @@ -26042,7 +26042,7 @@ "par_id9434492\n" "help.text" msgid "Change the default tab stops for all documents: Use the menu %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General." -msgstr "" +msgstr "Zmień domyślne tabulatory dla wszystkich dokumentów: użyj menu %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME Writer - Ogólne." #. WQVau #: tabs.xhp @@ -26240,7 +26240,7 @@ "par_id3147349\n" "help.text" msgid "Press CommandCtrl when you drag a tab on the ruler to move that tab and all the tabs to the right of it. This results in the spacing between those tabs changing proportionally to their distance from the margin." -msgstr "" +msgstr "Naciśnij CommandCtrl podczas przeciągania tabulatora na linijce, aby przesunąć ten tabulator i wszystkie tabulatory na prawo od niego. Powoduje to, że odstępy między tymi tabulatorami zmieniają się proporcjonalnie do ich odległości od marginesu." #. auJot #: tabs.xhp @@ -26321,7 +26321,7 @@ "tit\n" "help.text" msgid "Template Manager" -msgstr "" +msgstr "Menedżer szablonów" #. 84xFQ #: template_manager.xhp @@ -26330,7 +26330,7 @@ "bm_id041620170817452766\n" "help.text" msgid "template manager;filter template manager;category template manager;set as default template manager;import template manager;export template manager;settings templates;template manager" -msgstr "" +msgstr "menedżer szablonów;filtr menedżer szablonów;kategoria menedżer szablonów;ustaw jako domyślny menedżer szablonów;importuj szablon menedżer;eksport menedżer szablonów;ustawienia szablony;menedżer szablonów" #. vrXUB #: template_manager.xhp @@ -26339,7 +26339,7 @@ "hd_id041620170649101471\n" "help.text" msgid "Manage Templates" -msgstr "" +msgstr "Zarządzaj szablonami" #. G4iJX #: template_manager.xhp @@ -26348,7 +26348,7 @@ "par_id04162017064929216\n" "help.text" msgid "The Template Manager dialog makes it easy to manage templates and allows you to start new documents using templates." -msgstr "" +msgstr "Okno dialogowe Menedżera szablonów ułatwia zarządzanie szablonami i umożliwia tworzenie nowych dokumentów przy użyciu szablonów." #. MBtkj #: template_manager.xhp @@ -26366,7 +26366,7 @@ "par_id041620170723496526\n" "help.text" msgid "Choose menu File – Template – Manage Templates." -msgstr "" +msgstr "Wybierz menu Plik - Szablon - Zarządzaj szablonami." #. SrqXy #: template_manager.xhp @@ -26375,7 +26375,7 @@ "par_id041620170723493622\n" "help.text" msgid "Enter CommandCtrl+Shift+N in any %PRODUCTNAME module." -msgstr "" +msgstr "Wprowadź CommandCtrl +Shift+N w dowolnym module %PRODUCTNAME." #. RwG3b #: template_manager.xhp @@ -26384,7 +26384,7 @@ "par_id041620170723497279\n" "help.text" msgid "Press the Templates button in the Start Center." -msgstr "" +msgstr "Naciśnij przycisk Szablony w Centrum startowym." #. oRLxn #: template_manager.xhp @@ -26393,7 +26393,7 @@ "par_id041620170723509119\n" "help.text" msgid "Select any template type from the Templates button of the Start Center." -msgstr "" +msgstr "Wybierz dowolny typ szablonu z przycisku Szablony w Centrum startowym." #. 4HkCP #: template_manager.xhp @@ -26402,7 +26402,7 @@ "par_id041620170723502887\n" "help.text" msgid "Templates save editing time by starting new documents with pre-filled contents and formatting. The Template Manager allows you to access and organize templates in %PRODUCTNAME." -msgstr "" +msgstr "Szablony oszczędzają czas edycji, rozpoczynając nowe dokumenty z wstępnie wypełnioną treścią i formatowaniem. Menedżer szablonów umożliwia dostęp do szablonów i organizowanie ich w %PRODUCTNAME." #. 3KDAA #: template_manager.xhp @@ -26411,7 +26411,7 @@ "par_id041620170753116381\n" "help.text" msgid "%PRODUCTNAME comes with a set of built-in templates that can be used to create documents, presentations, spreadsheets or drawings. You may use templates available in the template manager, create your own templates or browse online for additional templates." -msgstr "" +msgstr "%PRODUCTNAME zawiera zestaw wbudowanych szablonów, których można używać do tworzenia dokumentów, prezentacji, arkuszy kalkulacyjnych lub rysunków. Możesz korzystać z szablonów dostępnych w menedżerze szablonów, tworzyć własne szablony lub przeglądać online w poszukiwaniu dodatkowych szablonów." #. Aa49E #: template_manager.xhp @@ -26420,7 +26420,7 @@ "par_id041620170723521916\n" "help.text" msgid "Make use of categories to organize your templates. Create new templates or download templates and organize in the Template Manager. Use templates to save time for repetitive documents." -msgstr "" +msgstr "Skorzystaj z kategorii, aby uporządkować swoje szablony. Twórz nowe szablony lub pobieraj szablony i organizuj je w Menedżerze szablonów. Użyj szablonów, aby zaoszczędzić czas na powtarzające się dokumenty." #. oD5Ec #: template_manager.xhp @@ -26429,7 +26429,7 @@ "hd_id041620170723509935\n" "help.text" msgid "Main Window – Template Choices" -msgstr "" +msgstr "Okno główne - Wybory szablonów" #. J4krC #: template_manager.xhp @@ -26447,7 +26447,7 @@ "par_id921608024342429\n" "help.text" msgid "Choose Thumbnail View or List View, at the bottom left, to change how the templates are displayed." -msgstr "" +msgstr "Wybierz Widok miniatur lub Widok listy w lewym dolnym rogu, aby zmienić sposób wyświetlania szablonów." #. ED7GM #: template_manager.xhp @@ -26456,7 +26456,7 @@ "par_id191608024074350\n" "help.text" msgid "Thumbnail View Icon" -msgstr "" +msgstr "Ikona widoku miniatur" #. EJkcU #: template_manager.xhp @@ -26465,7 +26465,7 @@ "par_id301608024074351\n" "help.text" msgid "Thumbnail View" -msgstr "" +msgstr "Widok miniatur" #. NDx6y #: template_manager.xhp @@ -26474,7 +26474,7 @@ "par_id61608024086461\n" "help.text" msgid "List View Icon" -msgstr "" +msgstr "Ikona widoku listy" #. 7Rg4W #: template_manager.xhp @@ -26483,7 +26483,7 @@ "par_id891608024086461\n" "help.text" msgid "Listview" -msgstr "" +msgstr "Widok listy" #. RaUDu #: template_manager.xhp @@ -26501,7 +26501,7 @@ "hd_id041620170723501731\n" "help.text" msgid "Search" -msgstr "" +msgstr "Wyszukiwanie" #. iM2qU #: template_manager.xhp @@ -26510,7 +26510,7 @@ "par_id041620170723505410\n" "help.text" msgid "You may search for a template by entering text in the search box at the top left. The Main window shows the templates found." -msgstr "" +msgstr "Możesz wyszukać szablon, wprowadzając tekst w polu wyszukiwania w lewym górnym rogu. Główne okno pokazuje znalezione szablony." #. o69K9 #: template_manager.xhp @@ -26519,7 +26519,7 @@ "hd_id041620170723509978\n" "help.text" msgid "Filter" -msgstr "" +msgstr "Filtr" #. rsfnV #: template_manager.xhp @@ -26528,7 +26528,7 @@ "par_id041620170723507575\n" "help.text" msgid "You may filter for: All Applications, Text Documents, Spreadsheets, Presentations or Drawings by choosing an option from the dropdown box at the top-center. The main window displays the filtered templates." -msgstr "" +msgstr "Możesz filtrować według: wszystkich aplikacji, dokumentów tekstowych, arkuszy kalkulacyjnych, prezentacji lub rysunków, wybierając opcję z rozwijanego pola w górnej środkowej części. Główne okno wyświetla przefiltrowane szablony." #. sGSTR #: template_manager.xhp @@ -26546,7 +26546,7 @@ "par_id041620170723507710\n" "help.text" msgid "Categories are folders where you place your templates. All templates are placed in a category, and can only be placed in one category. You may choose from the default categories: All Categories, My Templates, Business Correspondence, MediaWiki, Other Business Documents, Personal Correspondence and Documents, Presentations or Styles. You may also create new categories for your personal use. Press Manage at the top right corner of the Template Manager, then select New Category to create a new category." -msgstr "" +msgstr "Kategorie to foldery, w których umieszczasz swoje szablony. Wszystkie szablony są umieszczane w kategorii i można je umieścić tylko w jednej kategorii. Możesz wybrać jedną z domyślnych kategorii: Wszystkie kategorie, Moje szablony, Korespondencja służbowa, MediaWiki, Inne dokumenty służbowe, Korespondencja i dokumenty osobiste, Prezentacje lub Style. Możesz także tworzyć nowe kategorie do użytku osobistego. Naciśnij Zarządzaj w prawym górnym rogu Menedżera szablonów, a następnie wybierz Nowa kategoria, aby utworzyć nową kategorię." #. WJZhb #: template_manager.xhp @@ -26555,7 +26555,7 @@ "par_id341644402868376\n" "help.text" msgid "It is possible to move user-defined templates and copy built-in templates to another category. Use the Move option, found by right-clicking an individual template." -msgstr "" +msgstr "Istnieje możliwość przenoszenia szablonów zdefiniowanych przez użytkownika oraz kopiowania szablonów wbudowanych do innej kategorii. Użyj opcji Przenieś, którą można znaleźć, klikając prawym przyciskiem myszy pojedynczy szablon." #. kGCqh #: template_manager.xhp @@ -26573,7 +26573,7 @@ "hd_id041620170723509814\n" "help.text" msgid "Manage" -msgstr "" +msgstr "Zarządzaj" #. BBPKh #: template_manager.xhp @@ -26591,7 +26591,7 @@ "hd_id231644401056685\n" "help.text" msgid "New Category" -msgstr "" +msgstr "Nowa kategoria" #. Eumj5 #: template_manager.xhp @@ -26609,7 +26609,7 @@ "par_id91644402533961\n" "help.text" msgid "New Category Icon" -msgstr "" +msgstr "Ikona nowej kategorii" #. VDrjC #: template_manager.xhp @@ -26618,7 +26618,7 @@ "par_id21644402533961\n" "help.text" msgid "New Category" -msgstr "" +msgstr "Nowa kategoria" #. gYGYe #: template_manager.xhp @@ -26627,7 +26627,7 @@ "hd_id371642944398730\n" "help.text" msgid "Reset Default" -msgstr "" +msgstr "Resetuj domyślny" #. e34Ub #: template_manager.xhp @@ -26645,7 +26645,7 @@ "hd_id041620170723516279\n" "help.text" msgid "Import" -msgstr "" +msgstr "Importuj" #. QVmpk #: template_manager.xhp @@ -26663,7 +26663,7 @@ "par_id171607689516049\n" "help.text" msgid "Import Icon" -msgstr "" +msgstr "Ikona importu" #. f63Fp #: template_manager.xhp @@ -26672,7 +26672,7 @@ "par_id651607689516049\n" "help.text" msgid "Import" -msgstr "" +msgstr "Importuj" #. cP5Sj #: template_manager.xhp @@ -26681,7 +26681,7 @@ "hd_id041620170723501627\n" "help.text" msgid "Extensions" -msgstr "" +msgstr "Rozszerzenia" #. CFMpT #: template_manager.xhp @@ -26690,7 +26690,7 @@ "par_id041620170723503494\n" "help.text" msgid "To browse for more templates online, choose Extensions to open a search window. You can also search for templates at https://extensions.libreoffice.org." -msgstr "" +msgstr "Aby wyszukać więcej szablonów online, wybierz Rozszerzenia, aby otworzyć okno wyszukiwania. Możesz też wyszukać szablony na stronie https://extensions.libreoffice.org." #. PrQ6K #: template_manager.xhp @@ -26699,7 +26699,7 @@ "par_id431607690468509\n" "help.text" msgid "Extensions Icon" -msgstr "" +msgstr "Ikona rozszerzeń" #. mwqRi #: template_manager.xhp @@ -26708,7 +26708,7 @@ "par_id41607690468510\n" "help.text" msgid "Extensions" -msgstr "" +msgstr "Rozszerzenia" #. ddVcH #: template_manager.xhp @@ -26717,7 +26717,7 @@ "hd_id501607689762479\n" "help.text" msgid "Actions with Individual Templates" -msgstr "" +msgstr "Czynności z szablonami indywidualnymi" #. anVjc #: template_manager.xhp @@ -26726,7 +26726,7 @@ "hd_id041620170723503949\n" "help.text" msgid "Open" -msgstr "" +msgstr "Otwórz" #. kBsGv #: template_manager.xhp @@ -26735,7 +26735,7 @@ "par_id041620170723503583\n" "help.text" msgid "Select a template in the main window and right-click and then choose Open, press Enter or double click to open a new document using that template." -msgstr "" +msgstr "Wybierz szablon w oknie głównym i kliknij prawym przyciskiem myszy, a następnie wybierz Otwórz, naciśnij Enter lub kliknij dwukrotnie, aby otworzyć nowy dokument przy użyciu tego szablonu." #. rbHmi #: template_manager.xhp @@ -26744,7 +26744,7 @@ "par_id721608222737939\n" "help.text" msgid "You can also use the Open button on the bottom right to open a new document using the selected template." -msgstr "" +msgstr "Możesz także użyć przycisku Otwórz w prawym dolnym rogu, aby otworzyć nowy dokument przy użyciu wybranego szablonu." #. gvTq3 #: template_manager.xhp @@ -26753,7 +26753,7 @@ "par_id411642157620977\n" "help.text" msgid "Open Icon " -msgstr "" +msgstr "Ikona otwierania" #. KJxbk #: template_manager.xhp @@ -26762,7 +26762,7 @@ "par_id21642157620977\n" "help.text" msgid "Open" -msgstr "" +msgstr "Otwórz" #. V9DEC #: template_manager.xhp @@ -26780,7 +26780,7 @@ "par_id041620170723502297\n" "help.text" msgid "Select a template in the main window and right-click and then choose Edit to edit the template. For built-in templates, it is possible to edit a copy." -msgstr "" +msgstr "Wybierz szablon w oknie głównym i kliknij prawym przyciskiem myszy, a następnie wybierz opcję Edycja, aby edytować szablon. W przypadku wbudowanych szablonów istnieje możliwość edycji kopii." #. 2yEaB #: template_manager.xhp @@ -26789,7 +26789,7 @@ "par_id21642157799589\n" "help.text" msgid "Edit Icon" -msgstr "" +msgstr "Ikona edycji" #. MwDEk #: template_manager.xhp @@ -26807,7 +26807,7 @@ "hd_id041620170723509251\n" "help.text" msgid "Set as Default" -msgstr "" +msgstr "Ustaw jako domyślny" #. hZoKd #: template_manager.xhp @@ -26816,7 +26816,7 @@ "par_id041620170723501975\n" "help.text" msgid "Select a template in the main window and right-click and then choose Set as Default to set the template as the default template. This will cause a green tick to appear next to the selected template and the template will automatically load when a new document is created using the matching application." -msgstr "" +msgstr "Wybierz szablon w oknie głównym i kliknij prawym przyciskiem myszy, a następnie wybierz opcję Ustaw jako domyślny, aby ustawić szablon jako szablon domyślny. Spowoduje to pojawienie się zielonego haczyka obok wybranego szablonu, a szablon zostanie automatycznie załadowany po utworzeniu nowego dokumentu przy użyciu pasującej aplikacji." #. x6Wr2 #: template_manager.xhp @@ -26825,7 +26825,7 @@ "par_id461642158211948\n" "help.text" msgid "Set as Default Icon" -msgstr "" +msgstr "Ikona ustawiania jako domyślnego" #. Tt9Aw #: template_manager.xhp @@ -26834,7 +26834,7 @@ "par_id751642158211948\n" "help.text" msgid "Set as Default" -msgstr "" +msgstr "Ustaw jako domyślny" #. mPSZV #: template_manager.xhp @@ -26843,7 +26843,7 @@ "hd_id041620170723508003\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Zmień nazwę" #. BLKaw #: template_manager.xhp @@ -26861,7 +26861,7 @@ "par_id501642158394220\n" "help.text" msgid "Rename Icon" -msgstr "" +msgstr "Ikona zmieniania nazwy" #. CXWXD #: template_manager.xhp @@ -26870,7 +26870,7 @@ "par_id61642158394220\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Zmień nazwę" #. mSSwu #: template_manager.xhp @@ -26879,7 +26879,7 @@ "hd_id041620170723508658\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Usuń" #. vUVBi #: template_manager.xhp @@ -26888,7 +26888,7 @@ "par_id041620170723504317\n" "help.text" msgid "Select one or more templates to delete in the main window and press the Delete key, or right-click then choose Delete to delete the selected template(s). A dialog box will appear requesting confirmation. Choose Yes to delete or No to cancel." -msgstr "" +msgstr "Wybierz jeden lub więcej szablonów do usunięcia w głównym oknie i naciśnij klawisz Usuń lub kliknij prawym przyciskiem myszy i wybierz Usuń, aby usunąć wybrane szablony. Pojawi się okno dialogowe z prośbą o potwierdzenie. Wybierz Tak, aby usunąć lub Nie, aby anulować." #. VqweF #: template_manager.xhp @@ -26897,7 +26897,7 @@ "par_id591642158461235\n" "help.text" msgid "Delete Icon" -msgstr "" +msgstr "Ikona usuwania" #. KQKqG #: template_manager.xhp @@ -26906,7 +26906,7 @@ "par_id831642158461235\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Usuń" #. QQQyx #: template_manager.xhp @@ -26915,7 +26915,7 @@ "par_id141607690272821\n" "help.text" msgid "Built-in templates cannot be edited, renamed or deleted." -msgstr "" +msgstr "Wbudowanych szablonów nie można edytować, zmieniać ich nazw ani usuwać." #. gWz9H #: template_manager.xhp @@ -26942,7 +26942,7 @@ "par_id21642159780019\n" "help.text" msgid "Move Icon" -msgstr "" +msgstr "Ikona przenoszenia" #. sLKnY #: template_manager.xhp @@ -26969,7 +26969,7 @@ "par_id041620170723513192\n" "help.text" msgid "Choose a template in the main window, or use CommandCtrl+click to select additional templates, and then right-click and select Export to export your selection to a folder on your computer." -msgstr "" +msgstr "Wybierz szablon w oknie głównym lub użyj CommandCtrl+kliknij, aby wybrać dodatkowe szablony, a następnie kliknij prawym przyciskiem myszy i wybierz Eksportuj, aby wyeksportować zaznaczenie do folderu na komputerze." #. CgT8y #: template_manager.xhp @@ -26978,7 +26978,7 @@ "par_id181607689509896\n" "help.text" msgid "Export Icon" -msgstr "" +msgstr "Ikona eskportowania" #. Ckewj #: template_manager.xhp @@ -26996,7 +26996,7 @@ "par_id581607995218423\n" "help.text" msgid "To move or export all templates in a Category, press CommandCtrl+A, then choose Move or Export." -msgstr "" +msgstr "Aby przenieść lub wyeksportować wszystkie szablony w Kategorii, naciśnij CommandCtrl+A, a następnie wybierz Przenieś lub Eksportuj." #. bF5Yb #: template_manager.xhp @@ -27005,7 +27005,7 @@ "hd_id041620170723515107\n" "help.text" msgid "Examples" -msgstr "" +msgstr "Przykłady" #. gmnia #: template_manager.xhp @@ -27014,7 +27014,7 @@ "hd_id041620170723516260\n" "help.text" msgid "Example 1 – Creating a Business Letter" -msgstr "" +msgstr "Przykład 1 – Tworzenie listu biznesowego" #. PxwVf #: template_manager.xhp @@ -27023,7 +27023,7 @@ "par_id041620170723512460\n" "help.text" msgid "Open %PRODUCTNAME Writer" -msgstr "" +msgstr "Otwórz %PRODUCTNAME Writer" #. G3S3i #: template_manager.xhp @@ -27032,7 +27032,7 @@ "par_id041620170723518567\n" "help.text" msgid "Press CommandCtrl+Shift+N or choose File - New - Templates to open the Template Manager" -msgstr "" +msgstr "Naciśnij CommandCtrl+Shift+N lub wybierz Plik - Nowy - Szablony, aby otworzyć Menedżera szablonów." #. ZEBKt #: template_manager.xhp @@ -27041,7 +27041,7 @@ "par_id041620170723513600\n" "help.text" msgid "Type “business letter” into the search box" -msgstr "" +msgstr "Wpisz \"list biznesowy\" w polu wyszukiwania" #. gdEGV #: template_manager.xhp @@ -27050,7 +27050,7 @@ "par_id041620170723518765\n" "help.text" msgid "Choose one of the templates from the main window by double-clicking on it or select and press Enter." -msgstr "" +msgstr "Wybierz jeden z szablonów z głównego okna, klikając go dwukrotnie lub wybierz i naciśnij Enter." #. jDpef #: template_manager.xhp @@ -27059,7 +27059,7 @@ "par_id041620170723511456\n" "help.text" msgid "A new document using that template is created in a new instance of %PRODUCTNAME Writer" -msgstr "" +msgstr "Nowy dokument korzystający z tego szablonu jest tworzony w nowej instancji programu %PRODUCTNAME Writer" #. pEpRH #: template_manager.xhp @@ -27068,7 +27068,7 @@ "par_id041620170723516762\n" "help.text" msgid "Change text and logo as needed" -msgstr "" +msgstr "W razie potrzeby zmień tekst i logo" #. FJxF7 #: template_manager.xhp @@ -27077,7 +27077,7 @@ "hd_id041620170723518918\n" "help.text" msgid "Example 2 – Import Template – Personal Budget Spreadsheet" -msgstr "" +msgstr "Przykład 2 – Import szablonu – Arkusz kalkulacyjny budżetu osobistego" #. 7AktZ #: template_manager.xhp @@ -27086,7 +27086,7 @@ "par_id041620170723511504\n" "help.text" msgid "Open %PRODUCTNAME Calc" -msgstr "" +msgstr "Otwórz %PRODUCTNAME Calc" #. EBCMG #: template_manager.xhp @@ -27095,7 +27095,7 @@ "par_id041620170723518639\n" "help.text" msgid "Press CommandCtrl+Shift+N or choose File - New - Templates to open the Template Manager" -msgstr "" +msgstr "Naciśnij CommandCtrl+Shift+N lub wybierz Plik - Nowy - Szablony, aby otworzyć Menedżera szablonów." #. Nd2Pn #: template_manager.xhp @@ -27104,7 +27104,7 @@ "par_id041620170723512689\n" "help.text" msgid "Click on Manage and choose Extensions to browse for online templates." -msgstr "" +msgstr "Kliknij Zarządzaj i wybierz Rozszerzenia, aby przeglądać szablony online." #. v6rBQ #: template_manager.xhp @@ -27113,7 +27113,7 @@ "par_id041620170723511300\n" "help.text" msgid "Search for the Personal Budget Template, then download it" -msgstr "" +msgstr "Wyszukaj szablon budżetu osobistego, a następnie pobierz go." #. NXMp8 #: template_manager.xhp @@ -27122,7 +27122,7 @@ "par_id041620170723514055\n" "help.text" msgid "Open Template Manager and choose the Import button" -msgstr "" +msgstr "Otwórz Menedżera szablonów i wybierz przycisk Importuj." #. s3AD2 #: template_manager.xhp @@ -27131,7 +27131,7 @@ "par_id041620170723513485\n" "help.text" msgid "Select a category to save the new template in, for example, My Templates, and press OK." -msgstr "" +msgstr "Wybierz kategorię, w której chcesz zapisać nowy szablon, na przykład Moje szablony i naciśnij OK." #. XJ8gU #: template_manager.xhp @@ -27140,7 +27140,7 @@ "par_id041620170723513541\n" "help.text" msgid "Browse to the folder where you downloaded the template, select it and press Open" -msgstr "" +msgstr "Przejdź do folderu, do którego pobrano szablon, wybierz go i naciśnij Otwórz." #. Dvx8b #: template_manager.xhp @@ -27149,7 +27149,7 @@ "par_id041620170723511411\n" "help.text" msgid "The Template is now available in the category you chose." -msgstr "" +msgstr "Szablon jest teraz dostępny w wybranej przez Ciebie kategorii." #. 6EgKw #: template_manager.xhp @@ -27158,7 +27158,7 @@ "hd_id041620170723518447\n" "help.text" msgid "Example 3 – %PRODUCTNAME Impress – Presentation Template" -msgstr "" +msgstr "Przykład 3 – %PRODUCTNAME Impress – Szablon prezentacji" #. n8qop #: template_manager.xhp @@ -27167,7 +27167,7 @@ "par_id041620170723515914\n" "help.text" msgid "Open %PRODUCTNAME Impress" -msgstr "" +msgstr "Otwórz %PRODUCTNAME Impress" #. UtaQp #: template_manager.xhp @@ -27176,7 +27176,7 @@ "par_id041620170723523193\n" "help.text" msgid "The Template Manager opens automatically when you open %PRODUCTNAME Impress" -msgstr "" +msgstr "Menedżer szablonów otwiera się automatycznie po uruchomieniu programu %PRODUCTNAME Impress." #. xBYPq #: template_manager.xhp @@ -27185,7 +27185,7 @@ "par_id041620170723525963\n" "help.text" msgid "Choose a template for your presentation, filter by categories or search" -msgstr "" +msgstr "Wybierz szablon prezentacji, filtruj według kategorii lub szukaj." #. Y9AeE #: template_manager.xhp @@ -27194,7 +27194,7 @@ "par_id041620170723523510\n" "help.text" msgid "You may also use the context menu, import a template, or search online for a template." -msgstr "" +msgstr "Możesz także użyć menu kontekstowego, zaimportować szablon lub wyszukać szablon online." #. Fgi2J #: template_manager.xhp @@ -27203,7 +27203,7 @@ "par_id041620170723525323\n" "help.text" msgid "A few features in the Template Manager are not available when first opened automatically. After starting %PRODUCTNAME Impress you may run the Template Manager again to access all features." -msgstr "" +msgstr "Kilka funkcji w Menedżerze szablonów nie jest dostępnych po pierwszym automatycznym otwarciu. Po uruchomieniu programu %PRODUCTNAME Impress możesz ponownie uruchomić Menedżera szablonów, aby uzyskać dostęp do wszystkich funkcji." #. YFEXe #: template_manager.xhp @@ -27212,7 +27212,7 @@ "par_id041620170723529524\n" "help.text" msgid "Refer to https://extensions.libreoffice.org for templates to download." -msgstr "" +msgstr "Szablony do pobrania można znaleźć na stronie https://extensions.libreoffice.org." #. dCf3G #: template_manager.xhp @@ -27221,7 +27221,7 @@ "par_id04162017072352674\n" "help.text" msgid "See Chapter 3 – Using Styles and Templates in the Getting Started Guide." -msgstr "" +msgstr "Zobacz Chapter 3 – Using Styles and Templates w Getting Started Guide." #. KunAB #: template_manager.xhp @@ -27230,7 +27230,7 @@ "par_id041620170723523966\n" "help.text" msgid "See Creating a Document Template for related information." -msgstr "" +msgstr "Zobacz Tworzenie szablonu dokumentu, aby uzyskać powiązane informacje." #. BKHDD #: template_manager.xhp @@ -27239,7 +27239,7 @@ "par_id04162017072352773\n" "help.text" msgid "See Templates and Styles for related information." -msgstr "" +msgstr "Zobacz Szablony i style, aby uzyskać powiązane informacje." #. XFoCf #: text_color.xhp @@ -27356,7 +27356,7 @@ "bm_id3159233\n" "help.text" msgid "text; overwriting or inserting overwrite mode insert mode for entering text" -msgstr "" +msgstr "tekst; nadpisywanie lub wstawianietryb nadpisywania tryb wstawiania do wprowadzania tekstu" #. AWrGk #: textmode_change.xhp @@ -27383,7 +27383,7 @@ "par_id3153031\n" "help.text" msgid "Press Insert to toggle between overwrite mode and insert mode. The current mode is displayed on the Status Bar. The text cursor must be enabled in the cell or in the input line." -msgstr "" +msgstr "Naciśnij Insert, aby przełączyć między trybem nadpisywania i trybem wstawiania. Bieżący tryb jest wyświetlany na pasku stanu. Kursor tekstowy musi być włączony w komórce lub w wierszu wprowadzania." #. Hd4Vg #: textmode_change.xhp @@ -27410,7 +27410,7 @@ "par_id3145673\n" "help.text" msgid "Insert" -msgstr "" +msgstr "Wstawianie" #. DjbYz #: textmode_change.xhp @@ -27419,7 +27419,7 @@ "par_id3154307\n" "help.text" msgid " Insert mode is active. The area in the status bar is blank, when Insert mode is active. The text cursor is a blinking vertical line. Click on the area to activate the overwrite mode." -msgstr "" +msgstr "Tryb wstawiania jest aktywny. Obszar na pasku stanu jest pusty, gdy tryb wstawiania jest aktywny. Kursor tekstowy to migająca pionowa linia. Kliknij obszar, aby aktywować tryb nadpisywania." #. XFgYi #: textmode_change.xhp @@ -27428,7 +27428,7 @@ "par_id3150984\n" "help.text" msgid "Overwrite" -msgstr "" +msgstr "Nadpisywanie" #. idAmv #: textmode_change.xhp @@ -27437,7 +27437,7 @@ "par_id3148491\n" "help.text" msgid "The overwrite mode is active. The text cursor is a blinking block. Click on the area to activate insert mode." -msgstr "" +msgstr "Tryb nadpisywania jest aktywny. Kursor tekstowy to migający blok. Kliknij obszar, aby aktywować tryb wstawiania." #. tHRqe #: textmode_change.xhp @@ -27617,7 +27617,7 @@ "par_idN1063F\n" "help.text" msgid "Press CommandCtrl+A to select the whole text." -msgstr "" +msgstr "Naciśnij CommandCtrl+A, aby zaznaczyć cały tekst." #. CCBSr #: undo_formatting.xhp @@ -27653,7 +27653,7 @@ "par_idN106DD\n" "help.text" msgid "Press CommandCtrl+A to select the whole text." -msgstr "" +msgstr "Naciśnij CommandCtrl+A, aby zaznaczyć cały tekst." #. HSD7L #: undo_formatting.xhp @@ -27689,7 +27689,7 @@ "par_id3906674\n" "help.text" msgid "Press CommandCtrl+A to select the whole text." -msgstr "" +msgstr "Naciśnij CommandCtrl+A, aby zaznaczyć cały tekst." #. wRVC2 #: undo_formatting.xhp @@ -27743,7 +27743,7 @@ "par_id3147008\n" "help.text" msgid "See lists of code and Wiki contributors on the LibreOffice website." -msgstr "" +msgstr "Zobacz listy współtwórców kodu i Wiki w witrynie LibreOffice." #. Vpxf6 #: viewing_file_properties.xhp @@ -27959,7 +27959,7 @@ "par_idN106F5\n" "help.text" msgid "XForms are a new type of web form that was developed by the World Wide Web Consortium. The XForm model is defined in Extensible Markup Language (XML). The model uses separate sections to describe what a form does and what a form looks like. You can view the specification for XForms at: https://www.w3.org/MarkUp/Forms/." -msgstr "" +msgstr "XForms to nowy typ formularzy internetowych opracowany przez World Wide Web Consortium. Model XForm jest zdefiniowany w Extensible Markup Language (XML). Model wykorzystuje osobne sekcje, aby opisać, co robi formularz i jak wygląda. Ze specyfikacją XForms można zapoznać się pod adresem: https://www.w3.org/MarkUp/Forms/." #. andWs #: xforms.xhp @@ -27977,7 +27977,7 @@ "par_idN1074A\n" "help.text" msgid "In %PRODUCTNAME, an XForms document is a special type of Writer document. The Design Mode for an XForm document has additional toolbars and panes." -msgstr "" +msgstr "W %PRODUCTNAME dokument XForms jest specjalnym typem dokumentu programu Writer. Tryb projektowania dokumentu XForm ma dodatkowe paski narzędzi i panele." #. JyxBE #: xforms.xhp @@ -28040,7 +28040,7 @@ "par_idN10722\n" "help.text" msgid "In the Data Navigator, add an element to the instance." -msgstr "" +msgstr "W Nawigatorze danych dodaj element do instancji." #. 34s3a #: xforms.xhp @@ -28184,7 +28184,7 @@ "par_idN10947\n" "help.text" msgid "Import Filters - load external XML files and transform the format of the files into the OpenDocument XML file format. After you install an import filter, the name of the filter is added to the list of file types in the File Open dialog." -msgstr "" +msgstr "Importuj filtry – ładuj zewnętrzne pliki XML i przekształcaj format plików do formatu OpenDocument XML. Po zainstalowaniu filtra importu nazwa filtra jest dodawana do listy typów plików w oknie dialogowym Plik - Otwórz." #. 3anRN #: xsltfilter.xhp @@ -28193,7 +28193,7 @@ "par_idN10960\n" "help.text" msgid "Export Filters - transform OpenDocument XML files and save the files to a different XML format. After you install an export filter, the name of the filter is added to the list of file types in the Export dialog." -msgstr "" +msgstr "Eksportuj filtry – przekształcaj pliki OpenDocument XML i zapisuj pliki w innym formacie XML. Po zainstalowaniu filtra eksportu nazwa filtra jest dodawana do listy typów plików w oknie dialogowym Eksportuj." #. a7v4e #: xsltfilter.xhp @@ -28202,7 +28202,7 @@ "par_idN10979\n" "help.text" msgid "Import/Export Filters - load and save OpenDocument XML files into a different XML format. After you install these filters, the names of the filters are added to the list of file types in the File Open dialog and the File Save As dialog." -msgstr "" +msgstr "Importuj/eksportuj filtry – ładuj i zapisuj pliki OpenDocument XML w innym formacie XML. Po zainstalowaniu tych filtrów nazwy filtrów są dodawane do listy typów plików w oknach dialogowych Plik - Otwórz i Plik - Zapisz jako." #. DV8pQ #: xsltfilter.xhp @@ -28211,7 +28211,7 @@ "par_idN10B39\n" "help.text" msgid "World Wide Web Consortium Pages on Extensible Stylesheet Language (XSL)" -msgstr "" +msgstr "Strony World Wide Web Consortium o Extensible Stylesheet Language (XSL)" #. akz8u #: xsltfilter.xhp @@ -28220,7 +28220,7 @@ "par_idN10B4E\n" "help.text" msgid "World Wide Web Consortium Pages on Extensible Markup Language (XML)" -msgstr "" +msgstr "World Wide Web Consortium o Extensible Markup Language (XML)" #. EDBNU #: xsltfilter.xhp @@ -28256,7 +28256,7 @@ "bm_id7007583\n" "help.text" msgid "testing XML filtersXML filters; creating/testing" -msgstr "" +msgstr "testowanie filtrów XMLfiltry XML; tworzenie/testowanie" #. BqWhU #: xsltfilter_create.xhp @@ -28292,7 +28292,7 @@ "par_idN109B0\n" "help.text" msgid "For more information about the OpenDocument XML format, go to https://www.openoffice.org/xml/." -msgstr "" +msgstr "Aby uzyskać więcej informacji na temat formatu OpenDocument XML, przejdź do https://www.openoffice.org/xml/." #. dMEEn #: xsltfilter_create.xhp @@ -28553,7 +28553,7 @@ "par_idN10A82\n" "help.text" msgid "To test an Export filter, do one of the following in the Export area of the dialog:" -msgstr "" +msgstr "Aby przetestować filtr Eksportuj, wykonaj jedną z poniższych czynności w obszarze Eksportuj okna dialogowego:" #. daxyu #: xsltfilter_create.xhp @@ -28580,7 +28580,7 @@ "par_idN10A99\n" "help.text" msgid "To test an Import filter, click Browse in the Import area of the dialog, select a document, and click Open." -msgstr "" +msgstr "Aby przetestować filtr Importuj, kliknij Przeglądaj w obszarze Importuj okna dialogowego, wybierz dokument i kliknij Otwórz." #. 7XyyP #: xsltfilter_create.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared/optionen.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared/optionen.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared/optionen.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-23 20:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -4244,7 +4244,7 @@ "hd_id3147323\n" "help.text" msgid "Convert colors to grayscale" -msgstr "Konwertuj kolory na odcienie szarości" +msgstr "Konwertuj kolory na skalę szarości" #. 3NCHE #: 01010900.xhp @@ -4253,7 +4253,7 @@ "par_id3145150\n" "help.text" msgid "Specifies that all colors are printed only as grayscale." -msgstr "Określa, czy wszystkie kolory mają zostać wydrukowane w odcieniach szarości." +msgstr "Określa, czy wszystkie kolory mają zostać wydrukowane w skali szarości." #. pjjFG #: 01010900.xhp @@ -4523,7 +4523,7 @@ "tit\n" "help.text" msgid "Accessibility" -msgstr "Ułatwienia dostępu" +msgstr "Dostępność" #. NEsnD #: 01013000.xhp @@ -4532,7 +4532,7 @@ "bm_id3159411\n" "help.text" msgid "disabled personstext colors for better accessibilityanimations; accessibility optionsHelp tips; hidinghigh contrast modeaccessibility; optionsoptions; accessibility" -msgstr "osoby niepełnosprawnekolory tekstu zapewniające lepszą czytelnośćanimacje; opcje ułatwień dostępuPomoc; ukrywanie wskazówektryb wysokiego kontrastuułatwienia dostępu; opcjeopcje; ułatwienia dostępu" +msgstr "osoby niepełnosprawnekolory tekstu zapewniające lepszą czytelnośćanimacje; opcje dostępnościPomoc; ukrywanie wskazówektryb wysokiego kontrastudostępność; opcjeopcje; dostępność" #. ymbHD #: 01013000.xhp @@ -4568,7 +4568,7 @@ "par_id3152996\n" "help.text" msgid "Sets accessibility options." -msgstr "Ustawia opcje ułatwień dostępu." +msgstr "Ustawia opcje dostępności." #. gGUDu #: 01013000.xhp @@ -4577,7 +4577,7 @@ "hd_id3154750\n" "help.text" msgid "Support assistive technology tools (program restart required)" -msgstr "Obsługa narzędzi ułatwień dostępu (wymagane ponowne uruchomienie programu)" +msgstr "Obsługa narzędzi technologii asystujących (wymagane ponowne uruchomienie programu)" #. Fr2e4 #: 01013000.xhp @@ -4586,7 +4586,7 @@ "par_id3155628\n" "help.text" msgid "Allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices. The Java Runtime Environment must be installed on your computer before you can enable assistive support." -msgstr "Umożliwia korzystanie z narzędzi ułatwień dostępu, takich jak zewnętrzne czytniki ekranowe, urządzenia do obsługi alfabetu Braille'a lub urządzenia do rozpoznawania mowy. Aby możliwe było włączenie obsługi narzędzi ułatwień dostępu, w komputerze musi być zainstalowane środowisko uruchomieniowe Java Runtime Environment." +msgstr "Umożliwia korzystanie z narzędzi asystujących, takich jak zewnętrzne czytniki ekranowe, urządzenia do obsługi alfabetu Braille'a lub urządzenia do rozpoznawania mowy. Aby możliwe było włączenie obsługi narzędzi asystujących, w komputerze musi być zainstalowane środowisko uruchomieniowe Java Runtime Environment." #. dqDv8 #: 01013000.xhp @@ -6323,7 +6323,7 @@ "hd_id3153525\n" "help.text" msgid "Form controls" -msgstr "Formanty" +msgstr "Formanty formularza" #. nrLsF #: 01040400.xhp @@ -6377,7 +6377,7 @@ "hd_id8004394\n" "help.text" msgid "Hidden text" -msgstr "Tekst ukryty" +msgstr "Ukryty tekst" #. 27ECg #: 01040400.xhp @@ -11678,7 +11678,7 @@ "par_id2215549\n" "help.text" msgid "ODF Spreadsheet (not saved by %PRODUCTNAME):" -msgstr "Arkusz kalkulacyjny ODF (nie zapisany przez %PRODUCTNAME):" +msgstr "Arkusz kalkulacyjny ODF (niezapisany przez %PRODUCTNAME):" #. YNKPk #: 01060900.xhp @@ -12434,7 +12434,7 @@ "par_id3149260\n" "help.text" msgid "Specifies that you want to print colors as grayscale." -msgstr "Określa, że kolory mają być drukowane jako odcienie szarości." +msgstr "Określa, że kolory mają być drukowane jako skala szarości." #. ukEgi #: 01070400.xhp @@ -14774,7 +14774,7 @@ "hd_id3159176\n" "help.text" msgid "Numerals (in text only)" -msgstr "Liczby (tylko w tekście)" +msgstr "Cyfry (tylko w tekście)" #. 6g4rf #: 01150300.xhp @@ -14783,7 +14783,7 @@ "par_id3153254\n" "help.text" msgid "Selects the type of numerals used within text, text in objects, fields, and controls, in all %PRODUCTNAME modules. Only cell contents of %PRODUCTNAME Calc are not affected." -msgstr "Określa typy liczb stosowane w tekście, obiektach, polach i formantach dla wszystkich modułów pakietu %PRODUCTNAME. To ustawienie nie dotyczy tylko programu %PRODUCTNAME Calc." +msgstr "Określa typy cyfr stosowane w tekście, obiektach, polach i formantach dla wszystkich modułów pakietu %PRODUCTNAME. To ustawienie nie dotyczy tylko programu %PRODUCTNAME Calc." #. qsoaM #: 01150300.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/shared.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-03-26 19:32+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1545245690.000000\n" #. fcmzq @@ -275,7 +275,7 @@ "par_idN1056D\n" "help.text" msgid "Fontwork Gallery" -msgstr "Galeria Fontwork" +msgstr "Fontwork – Galeria" #. A6ecD #: fontwork_toolbar.xhp @@ -302,7 +302,7 @@ "par_idN10588\n" "help.text" msgid "Fontwork Shape" -msgstr "Kształt Fontwork" +msgstr "Fontwork – Kształt" #. PgQM4 #: fontwork_toolbar.xhp @@ -311,7 +311,7 @@ "par_id51646926964588\n" "help.text" msgid "Icon Fontwork Shape" -msgstr "Ikona kształtów z Fontwork" +msgstr "Ikona kształtów Fontwork" #. CTe3i #: fontwork_toolbar.xhp @@ -320,7 +320,7 @@ "par_idN1058C\n" "help.text" msgid "Opens the Fontwork Shape toolbar. Click a shape to apply the shape to all selected Fontwork objects." -msgstr "Otwiera pasek kształtów Fontwork. Kliknięcie wybranego kształtu powoduje jego zastosowanie do wszystkich zaznaczonych obiektów fontwork." +msgstr "Otwiera pasek kształtów Fontwork. Kliknięcie wybranego kształtu powoduje jego zastosowanie do wszystkich zaznaczonych obiektów Fontwork." #. HTZ3F #: fontwork_toolbar.xhp @@ -329,7 +329,7 @@ "par_idN105A6\n" "help.text" msgid "Fontwork Same Letter Heights" -msgstr "Fontwork - Jednakowa wysokość liter" +msgstr "Fontwork – Jednakowa wysokość liter" #. gBD67 #: fontwork_toolbar.xhp @@ -356,7 +356,7 @@ "par_idN105C1\n" "help.text" msgid "Fontwork Alignment" -msgstr "Wyrównanie Fontwork" +msgstr "Fontwork – Wyrównanie" #. dPegd #: fontwork_toolbar.xhp @@ -383,7 +383,7 @@ "par_idN105DC\n" "help.text" msgid "Click to apply the alignment to the selected Fontwork objects." -msgstr "Kliknięcie powoduje zastosowanie wyrównania do zaznaczonych obiektów fontwork." +msgstr "Kliknięcie powoduje zastosowanie wyrównania do zaznaczonych obiektów Fontwork." #. NSmjx #: fontwork_toolbar.xhp @@ -392,7 +392,7 @@ "par_idN105F3\n" "help.text" msgid "Fontwork Character Spacing" -msgstr "Fontwork - Odstępy pomiędzy znakami" +msgstr "Fontwork – Odstępy pomiędzy znakami" #. uMC4D #: fontwork_toolbar.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/simpress/00.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/simpress/00.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/simpress/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/simpress/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-12-10 08:23+0000\n" +"PO-Revision-Date: 2023-04-14 16:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1545325084.000000\n" #. sqmGT @@ -1256,7 +1256,7 @@ "par_id3148386\n" "help.text" msgid "Select two or more objects, open the context menu and choose Combine." -msgstr "Zaznacz dwa lub więcej obiektów, otwórz menu kontekstowe i wybierz Zespalaj." +msgstr "Zaznacz dwa lub więcej obiektów, otwórz menu kontekstowe i wybierz Połącz." #. ryATH #: 00000413.xhp @@ -1274,7 +1274,7 @@ "par_id3151022\n" "help.text" msgid "Select a combined object, open the context menu and choose Split." -msgstr "Zaznacz zespolone obiekty, otwórz menu kontekstowe i wybierz Podziel ." +msgstr "Zaznacz połączone obiekty, otwórz menu kontekstowe i wybierz Podziel." #. a4HG7 #: 00000413.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/simpress/01.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/simpress/01.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/simpress/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/simpress/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-20 06:54+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -2489,7 +2489,7 @@ "par_id3151073\n" "help.text" msgid "Shows slides in color, grayscale, or black and white." -msgstr "Pokazuje slajdy w kolorze, w odcieniach szarości lub czarno-białe." +msgstr "Pokazuje slajdy w kolorze, w skali szarości lub czarno-białe." #. FZMsi #: 03180000.xhp @@ -2516,7 +2516,7 @@ "hd_id3155333\n" "help.text" msgid "Grayscale" -msgstr "Odcienie szarości" +msgstr "Skala szarości" #. Qkv9N #: 03180000.xhp @@ -3623,7 +3623,7 @@ "par_id3150439\n" "help.text" msgid "The Styles window in %PRODUCTNAME Impress behaves differently than in other %PRODUCTNAME programs. For example, you can create, edit and apply Graphic Styles, but you can only edit Presentation Styles." -msgstr "Okno Style w programie %PRODUCTNAME Impress zachowuje się odmiennie niż w pozostałych programach %PRODUCTNAME. Przykładowo: możliwe jest tworzenie, edycja i stosowanie Stylów grafiki ale Style obiektów prezentacji można jedynie edytować." +msgstr "Okno Style w programie %PRODUCTNAME Impress zachowuje się odmiennie niż w pozostałych programach %PRODUCTNAME. Przykładowo: możliwe jest tworzenie, edycja i stosowanie Stylów grafiki, ale Style prezentacji można jedynie edytować." #. BeLXe #: 05100000.xhp @@ -3641,7 +3641,7 @@ "hd_id3145251\n" "help.text" msgid "Presentation Styles" -msgstr "Style obiektów prezentacji" +msgstr "Style prezentacji" #. yWYhY #: 05100000.xhp @@ -3650,7 +3650,7 @@ "par_id3153418\n" "help.text" msgid "Show styles used in %PRODUCTNAME Impress AutoLayouts. You can only modify Presentation Styles." -msgstr "Style używane w %PRODUCTNAME Impress. Modyfikować można tylko Style obiektów prezentacji." +msgstr "Style używane w %PRODUCTNAME Impress. Modyfikować można tylko Style prezentacji." #. L9LrX #: 05100000.xhp @@ -3668,7 +3668,7 @@ "par_id3149128\n" "help.text" msgid "Presentation Styles" -msgstr "Style obiektów prezentacji" +msgstr "Style prezentacji" #. uuVzd #: 05100000.xhp @@ -7754,7 +7754,7 @@ "tit\n" "help.text" msgid "Combine" -msgstr "Zespalaj" +msgstr "Połącz" #. jWCjy #: 13140000.xhp @@ -7781,7 +7781,7 @@ "par_id3153876\n" "help.text" msgid "When you combine objects, the drawing elements are replaced by Bézier curves and holes appear where the objects overlap." -msgstr "Podczas zespalania obiektów elementy graficzne są zastępowane krzywymi Béziera. W miejscach nakładania się obiektów powstają puste, niewypełnione obszary." +msgstr "Podczas łączenia obiektów elementy graficzne są zastępowane krzywymi Béziera. W miejscach nakładania się obiektów powstają puste, niewypełnione obszary." #. v8ve3 #: 13150000.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/simpress/02.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/simpress/02.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/simpress/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/simpress/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-12 11:50+0200\n" -"PO-Revision-Date: 2022-12-10 08:24+0000\n" +"PO-Revision-Date: 2023-03-08 09:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507117574.000000\n" #. AiACn @@ -1967,7 +1967,7 @@ "hd_id3153618\n" "help.text" msgid "Rectangle, Unfilled" -msgstr "Prostokąt, niewypełniony" +msgstr "Prostokąt, bez wypełnienia" #. V85vc #: 10060000.xhp @@ -1994,7 +1994,7 @@ "par_id3153907\n" "help.text" msgid "Rectangle, Unfilled" -msgstr "Prostokąt, niewypełniony" +msgstr "Prostokąt, bez wypełnienia" #. LLh3D #: 10060000.xhp @@ -2003,7 +2003,7 @@ "hd_id3154930\n" "help.text" msgid "Square, Unfilled" -msgstr "Kwadrat, niewypełniony" +msgstr "Kwadrat, bez wypełnienia" #. cXfwq #: 10060000.xhp @@ -2030,7 +2030,7 @@ "par_id3149161\n" "help.text" msgid "Square, Unfilled" -msgstr "Kwadrat, niewypełniony" +msgstr "Kwadrat, bez wypełnienia" #. GYNLD #: 10060000.xhp @@ -2039,7 +2039,7 @@ "hd_id3154098\n" "help.text" msgid "Rounded Rectangle, Unfilled" -msgstr "Prostokąt zaokrąglony, niewypełniony" +msgstr "Prostokąt zaokrąglony, bez wypełnienia" #. Sg5HE #: 10060000.xhp @@ -2066,7 +2066,7 @@ "par_id3154802\n" "help.text" msgid "Rounded Square, Unfilled" -msgstr "Kwadrat zaokrąglony, niewypełniony" +msgstr "Kwadrat zaokrąglony, bez wypełnienia" #. dEBg7 #: 10060000.xhp @@ -2075,7 +2075,7 @@ "hd_id3150350\n" "help.text" msgid "Rounded Square, Unfilled" -msgstr "Kwadrat zaokrąglony, niewypełniony" +msgstr "Kwadrat zaokrąglony, bez wypełnienia" #. P5xdb #: 10060000.xhp @@ -2102,7 +2102,7 @@ "par_id3152960\n" "help.text" msgid "Rounded Square, Unfilled" -msgstr "Kwadrat zaokrąglony, niewypełniony" +msgstr "Kwadrat zaokrąglony, bez wypełnienia" #. ZCPSB #: 10070000.xhp @@ -2372,7 +2372,7 @@ "hd_id3158404\n" "help.text" msgid "Ellipse, Unfilled" -msgstr "Elipsa, niewypełniona" +msgstr "Elipsa, bez wypełnienia" #. GnaYP #: 10070000.xhp @@ -2399,7 +2399,7 @@ "par_id3153688\n" "help.text" msgid "Ellipse, Unfilled" -msgstr "Elipsa, niewypełniona" +msgstr "Elipsa, bez wypełnienia" #. cmjGq #: 10070000.xhp @@ -2408,7 +2408,7 @@ "hd_id3149926\n" "help.text" msgid "Circle, Unfilled" -msgstr "Koło, niewypełnione" +msgstr "Koło, bez wypełnienia" #. Nyz9X #: 10070000.xhp @@ -2435,7 +2435,7 @@ "par_id3151106\n" "help.text" msgid "Circle, Unfilled" -msgstr "Koło, niewypełnione" +msgstr "Koło, bez wypełnienia" #. s25M4 #: 10070000.xhp @@ -2444,7 +2444,7 @@ "hd_id3154572\n" "help.text" msgid "Ellipse Pie, Unfilled" -msgstr "Wycinek elipsy, niewypełniony" +msgstr "Wycinek elipsy, bez wypełnienia" #. c3C2Z #: 10070000.xhp @@ -2471,7 +2471,7 @@ "par_id3148403\n" "help.text" msgid "Ellipse Pie, Unfilled" -msgstr "Wycinek elipsy, niewypełniony" +msgstr "Wycinek elipsy, bez wypełnienia" #. DEU7C #: 10070000.xhp @@ -2480,7 +2480,7 @@ "hd_id3150835\n" "help.text" msgid "Circle Pie, Unfilled" -msgstr "Wycinek koła, niewypełniony" +msgstr "Wycinek koła, bez wypełnienia" #. CXQB9 #: 10070000.xhp @@ -2507,7 +2507,7 @@ "par_id3148986\n" "help.text" msgid "Circle Pie, Unfilled" -msgstr "Wycinek koła, niewypełniony" +msgstr "Wycinek koła, bez wypełnienia" #. D7Nmc #: 10070000.xhp @@ -2516,7 +2516,7 @@ "hd_id3149300\n" "help.text" msgid "Ellipse Segment, Unfilled" -msgstr "Odcinek elipsy, niewypełniony" +msgstr "Odcinek elipsy, bez wypełnienia" #. FG8dH #: 10070000.xhp @@ -2543,7 +2543,7 @@ "par_id3151253\n" "help.text" msgid "Ellipse Segment, Unfilled" -msgstr "Odcinek elipsy, niewypełniony" +msgstr "Odcinek elipsy, bez wypełnienia" #. 44oVc #: 10070000.xhp @@ -2552,7 +2552,7 @@ "hd_id3149103\n" "help.text" msgid "Circle Segment, Unfilled" -msgstr "Odcinek koła, niewypełniony" +msgstr "Odcinek koła, bez wypełnienia" #. fYuhb #: 10070000.xhp @@ -2579,7 +2579,7 @@ "par_id3149037\n" "help.text" msgid "Circle Segment, Unfilled" -msgstr "Odcinek koła, niewypełniony" +msgstr "Odcinek koła, bez wypełnienia" #. dWsQD #: 10070000.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/simpress/04.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/simpress/04.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/simpress/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/simpress/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-02 12:38+0000\n" +"PO-Revision-Date: 2023-04-20 06:54+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1545325370.000000\n" #. mYCYv @@ -554,7 +554,7 @@ "hd_id3151313\n" "help.text" msgid "Shortcut Keys in the Normal View" -msgstr "Skróty klawiaturowe w Widoku normalnym" +msgstr "Skróty klawiaturowe w widoku normalnym" #. CSTQF #: 01020000.xhp @@ -716,7 +716,7 @@ "par_id3151253\n" "help.text" msgid "Combine selected objects." -msgstr "Zespalaj zaznaczone obiekty." +msgstr "Połącz zaznaczone obiekty." #. iBe6x #: 01020000.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/simpress/guide.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/simpress/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/simpress/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-10 22:32+0000\n" +"PO-Revision-Date: 2023-04-20 06:54+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -2705,7 +2705,7 @@ "bm_id3154702\n" "help.text" msgid "accessibility; $[officename] Impress" -msgstr "ułatwienia dostępu; $[officename] Impress" +msgstr "dostępność; $[officename] Impress" #. NVRr5 #: keyboard.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/smath/01.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/smath/01.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/smath/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/smath/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-04-11 15:28+0200\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-04-10 13:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542031213.000000\n" #. QmNGE @@ -6827,7 +6827,7 @@ "tit\n" "help.text" msgid "Scaling" -msgstr "Skala" +msgstr "Skalowanie" #. FNN5i #: 03091400.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/smath/guide.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/smath/guide.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/smath/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/smath/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-20 06:54+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1494399290.000000\n" #. P9FEQ @@ -770,7 +770,7 @@ "tit\n" "help.text" msgid "Shortcuts ($[officename] Math Accessibility)" -msgstr "Skróty (ułatwienia dostępu w programie $[officename] Math)" +msgstr "Skróty (dostępność $[officename] Math)" #. rsGdv #: keyboard.xhp @@ -779,7 +779,7 @@ "bm_id3149018\n" "help.text" msgid "accessibility; $[officename] Math shortcuts" -msgstr "ułatwienia dostępu; skróty $[officename] Math" +msgstr "dostępność; skróty $[officename] Math" #. 4zHFd #: keyboard.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/swriter/01.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/swriter/01.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/swriter/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/swriter/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-20 06:54+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -8753,7 +8753,7 @@ "par_id3150177\n" "help.text" msgid "Last printed" -msgstr "Ostatnio wydrukowany" +msgstr "Ostatnio wydrukowano" #. qN6ZC #: 04090004.xhp @@ -20273,7 +20273,7 @@ "hd_id3145173\n" "help.text" msgid "Assign" -msgstr "Zastosuj" +msgstr "Przypisz" #. 5YXjU #: 05060700.xhp @@ -20525,7 +20525,7 @@ "hd_id3151183\n" "help.text" msgid "Accessibility" -msgstr "Ułatwienia dostępu" +msgstr "Dostępność" #. XPcB4 #: 05060900.xhp @@ -23297,7 +23297,7 @@ "hd_id3149483\n" "help.text" msgid "Assign" -msgstr "Zastosuj" +msgstr "Przypisz" #. K5F9U #: 05130100.xhp @@ -24287,7 +24287,7 @@ "tit\n" "help.text" msgid "Combine" -msgstr "Zespalaj" +msgstr "Połącz" #. ZmAGd #: 05150104.xhp @@ -24296,7 +24296,7 @@ "hd_id3154502\n" "help.text" msgid "Combine" -msgstr "Zespalaj" +msgstr "Połącz" #. pQuCT #: 05150104.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/swriter/guide.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/swriter/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/swriter/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-20 06:54+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -9770,7 +9770,7 @@ "tit\n" "help.text" msgid "Using Shortcut Keys ($[officename] Writer Accessibility)" -msgstr "Korzystanie ze skrótów klawiaturowych (ułatwienia dostępu w programie $[officename] Writer)" +msgstr "Korzystanie ze skrótów klawiaturowych (dostępność w $[officename] Writer)" #. ETbd7 #: keyboard.xhp @@ -9779,7 +9779,7 @@ "bm_id3151169\n" "help.text" msgid "keyboard; accessibility $[officename] Writer accessibility; $[officename] Writer" -msgstr "klawiatura; opcje ułatwień dostępu programu $[officename] Writer ułatwienia dostępu; $[officename] Writer" +msgstr "klawiatura; opcje dostępności w $[officename] Writer dostępność; $[officename] Writer" #. cuXDY #: keyboard.xhp @@ -11552,7 +11552,7 @@ "hd_id5051728\n" "help.text" msgid "Using Different Page Number Formats in Headers and Footers" -msgstr "Używanie różnych formatów numerów stron w główkach i stopkach" +msgstr "Korzystanie z różnych formatów numerów stron w główkach i stopkach" #. vXUs5 #: pagenumbers.xhp @@ -14360,7 +14360,7 @@ "tit\n" "help.text" msgid "Using Regular Expressions in Text Searches" -msgstr "Używanie wyrażeń regularnych w wyszukiwaniu tekstu" +msgstr "Korzystanie z wyrażeń regularnych w wyszukiwaniu tekstu" #. zQBiL #: search_regexp.xhp @@ -14378,7 +14378,7 @@ "hd_id3150099\n" "help.text" msgid "Using Regular Expressions in Text Searches" -msgstr "Używanie wyrażeń regularnych w wyszukiwaniu tekstu" +msgstr "Korzystanie z wyrażeń regularnych w wyszukiwaniu tekstu" #. MAYGg #: search_regexp.xhp @@ -17519,7 +17519,7 @@ "par_idN106E7\n" "help.text" msgid "Use Fontwork. To open the Fontwork window, click the Fontwork Gallery icon on the Drawing bar." -msgstr "Korzystanie z narzędzia Fontwork. Aby otworzyć okno Fontwork, kliknij ikonę Galeria - Fontwork umieszczoną na pasku narzędzi Rysunek." +msgstr "Korzystanie z narzędzia Fontwork. Aby otworzyć okno Fontwork, kliknij ikonę Fontwork – Galeria umieszczoną na pasku narzędzi Rysunek." #. CiExc #: text_frame.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/swriter.po libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/swriter.po --- libreoffice-7.4.6/translations/source/pl/helpcontent2/source/text/swriter.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/helpcontent2/source/text/swriter.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-28 18:09+0000\n" +"PO-Revision-Date: 2023-04-30 15:33+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -1310,7 +1310,7 @@ "par_idN10706\n" "help.text" msgid "Distribute Rows Evenly" -msgstr "Rozmieść wiersze równomiernie" +msgstr "Rozłóż wiersze równomiernie" #. pTncP #: main0110.xhp @@ -1364,7 +1364,7 @@ "par_idN106D2\n" "help.text" msgid "Distribute Columns Evenly" -msgstr "Rozmieść kolumny równomiernie" +msgstr "Rozłóż kolumny równomiernie" #. ChNkP #: main0110.xhp diff -Nru libreoffice-7.4.6/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-03-02 16:09+0000\n" +"PO-Revision-Date: 2023-04-28 06:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -8834,7 +8834,7 @@ "Label\n" "value.text" msgid "~Grayscale" -msgstr "~Odcienie szarości" +msgstr "~Skala szarości" #. n53DV #: DrawImpressCommands.xcu @@ -8864,7 +8864,7 @@ "Label\n" "value.text" msgid "~Grayscale" -msgstr "~Odcienie szarości" +msgstr "~Skala szarości" #. hhymh #: DrawImpressCommands.xcu @@ -9174,7 +9174,7 @@ "Label\n" "value.text" msgid "Comb~ine" -msgstr "~Zespalaj" +msgstr "Połą~cz" #. xauJR #: DrawImpressCommands.xcu @@ -19686,7 +19686,7 @@ "Label\n" "value.text" msgid "~Left" -msgstr "Od ~lewej" +msgstr "Do ~lewej" #. GMmgk #: GenericCommands.xcu @@ -19706,7 +19706,7 @@ "Label\n" "value.text" msgid "~Right" -msgstr "Od p~rawej" +msgstr "Do p~rawej" #. AfdQE #: GenericCommands.xcu @@ -26656,7 +26656,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Format..." -msgstr "E-mail w formacie ~OpenDocument..." +msgstr "E-mail jako format ~OpenDocument..." #. kJNVF #: GenericCommands.xcu @@ -26786,7 +26786,7 @@ "TooltipLabel\n" "value.text" msgid "Add descriptions of non-text content (for accessibility)" -msgstr "Dodaj opisy treści nietekstowej (dla ułatwień dostępu)" +msgstr "Dodaj opisy treści nietekstowej (dla dostępności)" #. YwMhY #: GenericCommands.xcu @@ -29426,7 +29426,7 @@ "Title\n" "value.text" msgid "Manage Changes" -msgstr "Zarządzanie zmianami" +msgstr "Zarządzaj zmianami" #. DC8Ky #: Sidebar.xcu @@ -32436,7 +32436,7 @@ "Label\n" "value.text" msgid "Header Rows Repeat Across Pages" -msgstr "Powtarzanie wierszy nagłówka na kolejnych stronach" +msgstr "Powtarzanie pierwszych wierszy na kolejnych stronach" #. xhNkD #: WriterCommands.xcu @@ -34786,7 +34786,7 @@ "TooltipLabel\n" "value.text" msgid "Clone Formatting (double click and Ctrl or Cmd to alter behavior)" -msgstr "Malarz formatów (dwukrotne kliknięcie i Ctrl lub Cmd w celu zmiany trybu)" +msgstr "Klonuj formatowanie (dwukrotne kliknięcie i Ctrl lub Cmd w celu zmiany trybu)" #. 7PCFf #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/pl/readlicense_oo/docs.po libreoffice-7.4.7/translations/source/pl/readlicense_oo/docs.po --- libreoffice-7.4.6/translations/source/pl/readlicense_oo/docs.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/readlicense_oo/docs.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2022-07-08 10:43+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1543139212.000000\n" #. q6Gg3 @@ -239,7 +239,7 @@ "wd2dff\n" "readmeitem.text" msgid "Gnome 3.18 or higher, with the at-spi2 1.32 package (required for support for assistive technology [AT] tools), or another compatible GUI (such as KDE, among others)." -msgstr "Gnome 3.18 lub nowszy, z pakietem at-spi2 1.32 (wymagany do obsługi narzędzi technologii asystującej [AT]) lub innym zgodnym GUI (np. KDE)." +msgstr "Gnome 3.18 lub nowszy, z pakietem at-spi2 1.32 (wymagany do obsługi narzędzi technologii asystujących [AT]) lub innym zgodnym GUI (np. KDE)." #. q9SJs #: readme.xrm @@ -473,7 +473,7 @@ "linuxlangpack1\n" "readmeitem.text" msgid "Download the language pack for your desired language and platform. They are available from the same location as the main installation archive. From the Nautilus file manager, extract the downloaded archive into a directory (your desktop, for instance). Ensure that you have exited all ${PRODUCTNAME} applications (including the QuickStarter, if it is started)." -msgstr "Należy pobrać pakiet językowy dla odpowiedniego języka i platformy. Pakiety dostępne są w tym samym miejscu co główne archiwum instalacyjne. Za pomocą menedżera plików należy rozpakować pobrane archiwum do katalogu (np. na pulpit). Należy również upewnić się, że żaden z programów pakietu ${PRODUCTNAME} nie jest uruchomiony (łącznie z modułem szybkiego uruchamiania QuickStarter)." +msgstr "Należy pobrać pakiet językowy dla odpowiedniego języka i platformy. Pakiety dostępne są w tym samym miejscu co główne archiwum instalacyjne. Za pomocą menedżera plików należy rozpakować pobrane archiwum do katalogu (np. na pulpit). Należy również upewnić się, że żaden z programów pakietu ${PRODUCTNAME} nie jest uruchomiony (łącznie z modułem Szybkie uruchamianie)." #. uQM2g #: readme.xrm @@ -563,7 +563,7 @@ "linuxlangpackB\n" "readmeitem.text" msgid "After adjusting those settings, click on OK. The dialog box will close, and you will see an information message telling you that your changes will only be activated after you exit ${PRODUCTNAME} and start it again (remember to also exit the QuickStarter if it is started)." -msgstr "Po zmianie tych ustawień należy nacisnąć przycisk OK. Okno dialogowe zamknie się i zostanie wyświetlona informacja o tym, że dokonane zmiany odniosą skutek dopiero po ponownym uruchomieniu ${PRODUCTNAME} (pamiętaj o zakończeniu działania modułu szybkiego uruchamiania QuickStarter)." +msgstr "Po zmianie tych ustawień należy nacisnąć przycisk OK. Okno dialogowe zamknie się i zostanie wyświetlona informacja o tym, że dokonane zmiany odniosą skutek dopiero po ponownym uruchomieniu ${PRODUCTNAME} (pamiętaj o zakończeniu działania modułu Szybkie uruchamianie)." #. DCABt #: readme.xrm diff -Nru libreoffice-7.4.6/translations/source/pl/sc/messages.po libreoffice-7.4.7/translations/source/pl/sc/messages.po --- libreoffice-7.4.6/translations/source/pl/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-03-02 16:09+0000\n" +"PO-Revision-Date: 2023-04-28 06:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -14727,19 +14727,19 @@ #: sc/inc/scfuncs.hrc:3585 msgctxt "SC_OPCODE_TEXTJOIN_MS" msgid "Combines several text items into one, accepts cell ranges as arguments. Uses delimiter between items." -msgstr "Łączy kilka elementów tekstowych w jeden, akceptuje zakresy komórek jako argumenty. Używa separatora pomiędzy elementami." +msgstr "Łączy kilka elementów tekstowych w jeden, akceptuje zakresy komórek jako argumenty. Używa ogranicznika pomiędzy elementami." #. f3X3Z #: sc/inc/scfuncs.hrc:3586 msgctxt "SC_OPCODE_TEXTJOIN_MS" msgid "Delimiter" -msgstr "Separator" +msgstr "Ogranicznik" #. HYbBc #: sc/inc/scfuncs.hrc:3587 msgctxt "SC_OPCODE_TEXTJOIN_MS" msgid "Text string to be used as delimiter." -msgstr "Ciąg tekstu do użycia jako separator." +msgstr "Ciąg tekstu do użycia jako ogranicznik." #. 85ros #: sc/inc/scfuncs.hrc:3588 @@ -15639,7 +15639,7 @@ #: sc/inc/scfuncs.hrc:3871 msgctxt "SC_OPCODE_ROMAN" msgid "Converts a number to a Roman numeral." -msgstr "Zamienia liczbę arabską na rzymską." +msgstr "Zamienia cyfrę arabską na rzymską." #. jADZM #: sc/inc/scfuncs.hrc:3872 @@ -15663,13 +15663,13 @@ #: sc/inc/scfuncs.hrc:3875 msgctxt "SC_OPCODE_ROMAN" msgid "The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range." -msgstr "Im wyższa wartość, tym bardziej zostanie uproszczona liczba rzymska. Wartość musi się mieścić w zakresie 0-4." +msgstr "Im wyższa wartość, tym bardziej zostanie uproszczona cyfra rzymska. Wartość musi się mieścić w zakresie 0-4." #. R6BAC #: sc/inc/scfuncs.hrc:3881 msgctxt "SC_OPCODE_ARABIC" msgid "Calculates the value of a Roman numeral." -msgstr "Zamienia liczbę rzymską na arabską." +msgstr "Zamienia cyfrę rzymską na arabską." #. QqUFE #: sc/inc/scfuncs.hrc:3882 @@ -15681,7 +15681,7 @@ #: sc/inc/scfuncs.hrc:3883 msgctxt "SC_OPCODE_ARABIC" msgid "The text that represents a Roman numeral." -msgstr "Tekst reprezentujący liczbę rzymską." +msgstr "Tekst reprezentujący cyfrę rzymską." #. QJEo4 #: sc/inc/scfuncs.hrc:3888 @@ -19127,7 +19127,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:295 msgctxt "autoformattable|numformatcb" msgid "Number format" -msgstr "Format liczbowy" +msgstr "Format liczb" #. KtQDR #: sc/uiconfig/scalc/ui/autoformattable.ui:303 @@ -21917,7 +21917,7 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:413 msgctxt "definedatabaserangedialog|extended_tip|KeepFormatting" msgid "Applies the existing cell format of headers and first data row to the whole database range." -msgstr "Stosuje istniejący format komórek lub nagłówków i pierwszego wiersza danych w całym zakresie bazy danych." +msgstr "Stosuje istniejący format komórek główek i pierwszego wiersza danych w całym zakresie bazy danych." #. rSf5f #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:425 @@ -23939,7 +23939,7 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:118 msgctxt "imoptdialog|fieldft" msgid "_Field delimiter:" -msgstr "Separator _pola:" +msgstr "Ogranicznik _pola:" #. bhjBy #: sc/uiconfig/scalc/ui/imoptdialog.ui:132 @@ -23975,7 +23975,7 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:187 msgctxt "imoptdialog|extended_tip|quoteall" msgid "Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character." -msgstr "Eksportuje wszystkie komórki tekstowe ze znakiem początku i końca cytatu, zgodnie z ustawieniem w oknie separatora tekstu. Jeśli nie zaznaczono inaczej, cytowane będą tylko te komórki tekstowe które zawierają znak separatpra pola." +msgstr "Eksportuje wszystkie komórki tekstowe ze znakiem początku i końca cytatu, zgodnie z ustawieniem w oknie ogranicznika tekstu. Jeśli nie zaznaczono inaczej, cytowane będą tylko te komórki tekstowe które zawierają znak ogranicznika pola." #. KGh9G #: sc/uiconfig/scalc/ui/imoptdialog.ui:199 @@ -26917,7 +26917,7 @@ #: sc/uiconfig/scalc/ui/optformula.ui:128 msgctxt "optformula|label10" msgid "ODF spreadsheet (not saved by %PRODUCTNAME):" -msgstr "Arkusz kalkulacyjny ODF (nie zapisany przez %PRODUCTNAME):" +msgstr "Arkusz kalkulacyjny ODF (niezapisany przez %PRODUCTNAME):" #. 5AAhB #: sc/uiconfig/scalc/ui/optformula.ui:144 @@ -29317,7 +29317,7 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:405 msgctxt "extended_tip|markhdrcb" msgid "Specifies whether to highlight column and row headers in the selected columns or rows." -msgstr "Określa, czy nagłówki kolumn i wierszy mają być wyróżniane po zaznaczeniu tych kolumn lub wierszy." +msgstr "Określa, czy główki kolumn i wierszy mają być wyróżniane po zaznaczeniu tych kolumn lub wierszy." #. KGWyE #: sc/uiconfig/scalc/ui/scgeneralpage.ui:417 @@ -30931,7 +30931,7 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:100 msgctxt "sortoptionspage|includeimages" msgid "Include boundary column(s) containing only images" -msgstr "Dołącz kolumnę(-y) graniczną(-e) zawierającą(-e) tylko obrazy" +msgstr "Uwzględnij kolumny graniczne zawierające tylko obrazy" #. eZ8XM #: sc/uiconfig/scalc/ui/sortoptionspage.ui:114 @@ -30973,7 +30973,7 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:179 msgctxt "sortoptionspage|sortuser" msgid "Custom sort order" -msgstr "Niestandardowy kierunek sortowania" +msgstr "Niestandardowa kolejność sortowania" #. aDYdR #: sc/uiconfig/scalc/ui/sortoptionspage.ui:190 @@ -30985,7 +30985,7 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:209 msgctxt "sortoptionspage|sortuserlb-atkobject" msgid "Custom sort order" -msgstr "Niestandardowy kierunek sortowania" +msgstr "Niestandardowa kolejność sortowania" #. KJrPL #: sc/uiconfig/scalc/ui/sortoptionspage.ui:224 @@ -32155,13 +32155,13 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:327 msgctxt "textimportcsv|mergedelimiters" msgid "Merge _delimiters" -msgstr "Scal _separatory" +msgstr "Scal o_graniczniki" #. EMxAD #: sc/uiconfig/scalc/ui/textimportcsv.ui:337 msgctxt "textimportcsv|extended_tip|mergedelimiters" msgid "Combines consecutive delimiters and removes blank data fields." -msgstr "Łączy sąsiadujące separatory i usuwa puste pola danych." +msgstr "Łączy sąsiadujące ograniczniki i usuwa puste pola danych." #. fZFyK #: sc/uiconfig/scalc/ui/textimportcsv.ui:349 @@ -32245,7 +32245,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:525 msgctxt "textimportcsv|extended_tip|textdelimiter" msgid "Select a character to delimit text data. You can also enter a character in the text box." -msgstr "Wybierz znak, który ma służyć jako separator danych tekstowych. Można go także wpisać w polu tekstowym." +msgstr "Wybierz znak, który ma służyć jako ogranicznik danych tekstowych. Można go także wpisać w polu tekstowym." #. nPRdc #: sc/uiconfig/scalc/ui/textimportcsv.ui:553 diff -Nru libreoffice-7.4.6/translations/source/pl/scaddins/messages.po libreoffice-7.4.7/translations/source/pl/scaddins/messages.po --- libreoffice-7.4.6/translations/source/pl/scaddins/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/scaddins/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-01-20 15:36+0000\n" +"PO-Revision-Date: 2023-03-25 14:33+0000\n" "Last-Translator: Adam Rak \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1530400624.000000\n" #. i8Y7Z @@ -156,7 +156,7 @@ #: scaddins/inc/analysis.hrc:62 msgctxt "ANALYSIS_Weeknum" msgid "Return type" -msgstr "Typ wyniku" +msgstr "Typ zwracany" #. EFAsX #: scaddins/inc/analysis.hrc:63 diff -Nru libreoffice-7.4.6/translations/source/pl/sd/messages.po libreoffice-7.4.7/translations/source/pl/sd/messages.po --- libreoffice-7.4.6/translations/source/pl/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -104,7 +104,7 @@ #: sd/inc/DocumentRenderer.hrc:54 msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES" msgid "Grayscale" -msgstr "Odcienie szarości" +msgstr "Skala szarości" #. 9aSXC #: sd/inc/DocumentRenderer.hrc:55 @@ -1803,13 +1803,13 @@ #: sd/inc/strings.hrc:259 msgctxt "STR_GRAPHICS_STYLE_FAMILY" msgid "Drawing Styles" -msgstr "Style rysowania" +msgstr "Style rysunku" #. tR4CL #: sd/inc/strings.hrc:260 msgctxt "STR_PRESENTATIONS_STYLE_FAMILY" msgid "Presentation Styles" -msgstr "Style obiektów prezentacji" +msgstr "Style prezentacji" #. oyUYa #: sd/inc/strings.hrc:261 @@ -2163,7 +2163,7 @@ #: sd/inc/strings.hrc:320 msgctxt "STR_STANDARD_STYLESHEET_NAME" msgid "Default Drawing Style" -msgstr "Domyślny styl rysowania" +msgstr "Domyślny styl rysunku" #. pxfDw #: sd/inc/strings.hrc:321 @@ -3557,7 +3557,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:122 msgctxt "drawprinteroptions|grayscale" msgid "Grayscale" -msgstr "Odcienie szarości" +msgstr "Skala szarości" #. 2TphV #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:131 @@ -3575,7 +3575,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:152 msgctxt "drawprinteroptions|extended_tip|blackandwhite" msgid "Specifies to print colors as black and white." -msgstr "Określa drukowanie kolorów jako czerni i bieli." +msgstr "Określa, czy kolory mają być drukowane jako czarno-białe." #. MGAFs #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:168 @@ -6266,7 +6266,7 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:264 msgctxt "impressprinteroptions|grayscale" msgid "Grayscale" -msgstr "Odcienie szarości" +msgstr "Skala szarości" #. udszJ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:273 @@ -6284,7 +6284,7 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:294 msgctxt "impressprinteroptions|extended_tip|blackandwhite" msgid "Specifies to print colors as black and white." -msgstr "Określa drukowanie kolorów jako czerni i bieli." +msgstr "Określa, czy kolory mają być drukowane jako czarno-białe." #. G3CZp #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:310 @@ -8613,13 +8613,13 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:377 msgctxt "prntopts|grayscalerb" msgid "Gra_yscale" -msgstr "Odcienie _szarości" +msgstr "Skala _szarości" #. 85Da5 #: sd/uiconfig/simpress/ui/prntopts.ui:387 msgctxt "extended_tip|grayscalerb" msgid "Specifies that you want to print colors as grayscale." -msgstr "Określa, że kolory mają być drukowane jako odcienie szarości." +msgstr "Określa, że kolory mają być drukowane jako skala szarości." #. ibjkX #: sd/uiconfig/simpress/ui/prntopts.ui:398 diff -Nru libreoffice-7.4.6/translations/source/pl/sfx2/messages.po libreoffice-7.4.7/translations/source/pl/sfx2/messages.po --- libreoffice-7.4.6/translations/source/pl/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -3197,7 +3197,7 @@ #: sfx2/uiconfig/ui/developmenttool.ui:584 msgctxt "developmenttool|returntype" msgid "Return Type" -msgstr "Typ powrotu" +msgstr "Typ zwracany" #. AKnSa #: sfx2/uiconfig/ui/developmenttool.ui:598 @@ -4349,13 +4349,13 @@ #: sfx2/uiconfig/ui/optprintpage.ui:614 msgctxt "optprintpage|converttogray" msgid "Con_vert colors to grayscale" -msgstr "_Konwertuj kolory na odcienie szarości" +msgstr "_Konwertuj kolory na skalę szarości" #. UNSqH #: sfx2/uiconfig/ui/optprintpage.ui:622 msgctxt "extended_tip|converttogray" msgid "Specifies that all colors are printed only as grayscale." -msgstr "Określa, czy wszystkie kolory mają zostać wydrukowane w odcieniach szarości." +msgstr "Określa, czy wszystkie kolory mają zostać wydrukowane w skali szarości." #. CrFLq #: sfx2/uiconfig/ui/optprintpage.ui:633 @@ -4547,7 +4547,7 @@ #: sfx2/uiconfig/ui/saveastemplatedlg.ui:126 msgctxt "saveastemplatedlg|extended_tip|name_entry" msgid "Enter a name for the template." -msgstr "Wprowadź nazwę szablonu." +msgstr "Wpisz nazwę szablonu." #. GLDum #: sfx2/uiconfig/ui/saveastemplatedlg.ui:154 diff -Nru libreoffice-7.4.6/translations/source/pl/svtools/messages.po libreoffice-7.4.7/translations/source/pl/svtools/messages.po --- libreoffice-7.4.6/translations/source/pl/svtools/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/svtools/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1554834675.000000\n" #. fLdeV @@ -5418,7 +5418,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:820 msgctxt "graphicexport|color2rb" msgid "Grayscale" -msgstr "Odcienie szarości" +msgstr "Skala szarości" #. TWEx8 #: svtools/uiconfig/ui/graphicexport.ui:829 diff -Nru libreoffice-7.4.6/translations/source/pl/svx/messages.po libreoffice-7.4.7/translations/source/pl/svx/messages.po --- libreoffice-7.4.6/translations/source/pl/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-24 06:33+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1554834683.000000\n" #. 3GkZj @@ -3211,7 +3211,7 @@ #: include/svx/strings.hrc:561 msgctxt "RID_SVXSTR_GRAFMODE_GREYS" msgid "Grayscale" -msgstr "Odcienie szarości" +msgstr "Skala szarości" #. RHEXM #: include/svx/strings.hrc:562 @@ -6471,7 +6471,7 @@ #: include/svx/strings.hrc:1164 msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE" msgid "Apply Fontwork Shape" -msgstr "Zastosuj kształt z Fontwork" +msgstr "Fontwork – Zastosuj kształt" #. h3CLw #: include/svx/strings.hrc:1165 @@ -6483,13 +6483,13 @@ #: include/svx/strings.hrc:1166 msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT" msgid "Apply Fontwork Alignment" -msgstr "Zastosuj wyrównanie z Fontwork" +msgstr "Fontwork – Zastosuj wyrównanie" #. eKHcV #: include/svx/strings.hrc:1167 msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING" msgid "Apply Fontwork Character Spacing" -msgstr "Zastosuj odstępy między znakami z Fontwork" +msgstr "Fontwork – Zastosuj odstępy między znakami" #. oo88Y #: include/svx/strings.hrc:1169 @@ -9857,7 +9857,7 @@ #: include/svx/strings.hrc:1755 msgctxt "RID_SUBSETMAP" msgid "Mayan Numerals" -msgstr "Liczebniki Mayan" +msgstr "Cyfry Majów" #. aDjHx #: include/svx/strings.hrc:1756 @@ -11013,49 +11013,49 @@ #: svx/inc/frmsel.hrc:32 msgctxt "RID_SVXSTR_FRMSEL_TEXTS" msgid "Left border line" -msgstr "Lewa krawędź" +msgstr "Lewa linia krawędzi" #. YAWUD #: svx/inc/frmsel.hrc:33 msgctxt "RID_SVXSTR_FRMSEL_TEXTS" msgid "Right border line" -msgstr "Prawa krawędź" +msgstr "Prawa linia krawędzi" #. VH67W #: svx/inc/frmsel.hrc:34 msgctxt "RID_SVXSTR_FRMSEL_TEXTS" msgid "Top border line" -msgstr "Krawędź górna" +msgstr "Górna linia krawędzi" #. MLMaA #: svx/inc/frmsel.hrc:35 msgctxt "RID_SVXSTR_FRMSEL_TEXTS" msgid "Bottom border line" -msgstr "Krawędź dolna" +msgstr "Dolna linia krawędzi" #. ZqTGF #: svx/inc/frmsel.hrc:36 msgctxt "RID_SVXSTR_FRMSEL_TEXTS" msgid "Horizontal border line" -msgstr "Krawędź pozioma" +msgstr "Pozioma linia krawędzi" #. jzGHA #: svx/inc/frmsel.hrc:37 msgctxt "RID_SVXSTR_FRMSEL_TEXTS" msgid "Vertical border line" -msgstr "Krawędź pionowa" +msgstr "Pionowa linia krawędzi" #. DodCu #: svx/inc/frmsel.hrc:38 msgctxt "RID_SVXSTR_FRMSEL_TEXTS" msgid "Diagonal border line from top left to bottom right" -msgstr "Linia ukośna od górnego lewego narożnika do dolnego prawego narożnika" +msgstr "Ukośna linia krawędzi od górnego lewego narożnika do dolnego prawego narożnika" #. wfJ23 #: svx/inc/frmsel.hrc:39 msgctxt "RID_SVXSTR_FRMSEL_TEXTS" msgid "Diagonal border line from bottom left to top right" -msgstr "Linia ukośna od dolnego lewego narożnika do górnego prawego narożnika" +msgstr "Ukośna linia krawędzi od dolnego lewego narożnika do górnego prawego narożnika" #. dTBRy #: svx/inc/frmsel.hrc:44 @@ -11067,49 +11067,49 @@ #: svx/inc/frmsel.hrc:45 msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS" msgid "Left border line" -msgstr "Lewa krawędź" +msgstr "Lewa linia krawędzi" #. DAuHi #: svx/inc/frmsel.hrc:46 msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS" msgid "Right border line" -msgstr "Prawa krawędź" +msgstr "Prawa linia krawędzi" #. BYUTR #: svx/inc/frmsel.hrc:47 msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS" msgid "Top border line" -msgstr "Krawędź górna" +msgstr "Górna linia krawędzi" #. QAnid #: svx/inc/frmsel.hrc:48 msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS" msgid "Bottom border line" -msgstr "Krawędź dolna" +msgstr "Dolna linia krawędzi" #. kDBDR #: svx/inc/frmsel.hrc:49 msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS" msgid "Horizontal border line" -msgstr "Krawędź pozioma" +msgstr "Pozioma linia krawędzi" #. Em9YX #: svx/inc/frmsel.hrc:50 msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS" msgid "Vertical border line" -msgstr "Krawędź pionowa" +msgstr "Pionowa linia krawędzi" #. oDFKb #: svx/inc/frmsel.hrc:51 msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS" msgid "Diagonal border line from top left to bottom right" -msgstr "Linia ukośna od górnego lewego narożnika do dolnego prawego narożnika" +msgstr "Ukośna linia krawędzi od górnego lewego narożnika do dolnego prawego narożnika" #. 5EYDA #: svx/inc/frmsel.hrc:52 msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS" msgid "Diagonal border line from bottom left to top right" -msgstr "Linia ukośna od dolnego lewego narożnika do górnego prawego narożnika" +msgstr "Ukośna linia krawędzi od dolnego lewego narożnika do górnego prawego narożnika" #. Xx2Fj #. -------------------------------------------------------------------- @@ -12890,7 +12890,7 @@ #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:8 msgctxt "acceptrejectchangesdialog|AcceptRejectChangesDialog" msgid "Manage Changes" -msgstr "Zarządzanie zmianami" +msgstr "Zarządzaj zmianami" #. Jyka9 #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:77 @@ -17088,7 +17088,7 @@ #: svx/uiconfig/ui/fontworkgallerydialog.ui:16 msgctxt "fontworkgallerydialog|FontworkGalleryDialog" msgid "Fontwork Gallery" -msgstr "Galeria Fontwork" +msgstr "Fontwork – Galeria" #. GB7pa #: svx/uiconfig/ui/fontworkgallerydialog.ui:99 diff -Nru libreoffice-7.4.6/translations/source/pl/sw/messages.po libreoffice-7.4.7/translations/source/pl/sw/messages.po --- libreoffice-7.4.6/translations/source/pl/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-03-02 16:09+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -3219,7 +3219,7 @@ #: sw/inc/strings.hrc:185 msgctxt "STR_POOLCOLL_TOX_ILLUSH" msgid "Figure Index Heading" -msgstr "Nagłówek indeksu kształtu" +msgstr "Nagłówek indeksu rysunku" #. rA84j #: sw/inc/strings.hrc:186 @@ -5811,7 +5811,7 @@ #: sw/inc/strings.hrc:640 msgctxt "STR_PRINTOPTUI_PRINT_BLACK" msgid "Print text in blac~k" -msgstr "Drukuj tekst ~kolorem czarnym" +msgstr "Drukuj te~kst w czerni" #. DEELn #: sw/inc/strings.hrc:641 @@ -9438,7 +9438,7 @@ #: sw/inc/strings.hrc:1317 msgctxt "STR_TOKEN_ENTRY" msgid "E" -msgstr "E" +msgstr "W" #. gxt8B #: sw/inc/strings.hrc:1318 @@ -11225,7 +11225,7 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:150 msgctxt "bibliographyentry|frombibliography" msgid "Bibliography Database" -msgstr "Baza bibliograficzna" +msgstr "Bibliograficzna baza danych" #. TyGCb #: sw/uiconfig/swriter/ui/bibliographyentry.ui:159 @@ -12377,7 +12377,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:99 msgctxt "conditionpage|extended_tip|links" msgid "Here you can see the Writer predefined contexts, including outline levels 1 to 10, list levels 1 to 10, table header, table contents, section, border, footnote, header and footer." -msgstr "Tutaj można zobaczyć wstępnie zdefiniowane konteksty programu Writer, w tym poziomy konspektu od 1 do 10, poziomy listy od 1 do 10, nagłówek tabeli, zawartość tabeli, sekcję, krawędź, przypis, główkę i stopkę." +msgstr "Tutaj można zobaczyć wstępnie zdefiniowane konteksty programu Writer, w tym poziomy konspektu od 1 do 10, poziomy listy od 1 do 10, główkę tabeli, zawartość tabeli, sekcję, krawędź, przypis, główkę i stopkę." #. nDZqL #: sw/uiconfig/swriter/ui/conditionpage.ui:128 @@ -12803,7 +12803,7 @@ #: sw/uiconfig/swriter/ui/converttexttable.ui:299 msgctxt "converttexttable|extended_tip|repeatheading" msgid "Repeats the table header on each page that the table spans." -msgstr "Powtarza nagłówek tabeli na każdej kolejnej stronie, jeśli tabela jest wielostronicowa." +msgstr "Powtarza główkę tabeli na każdej kolejnej stronie, jeśli tabela jest wielostronicowa." #. URvME #: sw/uiconfig/swriter/ui/converttexttable.ui:310 @@ -15627,7 +15627,7 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:220 msgctxt "formattablepage|rightft" msgid "Ri_ght" -msgstr "Na _prawo" +msgstr "W _prawo" #. rJya4 #: sw/uiconfig/swriter/ui/formattablepage.ui:234 @@ -15879,7 +15879,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:155 msgctxt "frmaddpage|label1" msgid "Accessibility" -msgstr "Ułatwienia dostępu" +msgstr "Dostępność" #. WCaFa #: sw/uiconfig/swriter/ui/frmaddpage.ui:184 @@ -16707,7 +16707,7 @@ #: sw/uiconfig/swriter/ui/inforeadonlydialog.ui:13 msgctxt "inforeadonlydialog|InfoReadonlyDialog" msgid "Write-protected content cannot be changed." -msgstr "Treści chronionej przed zapisem nie można zmienić." +msgstr "Zawartości chronionej przed zapisem nie można zmienić." #. vGSds #: sw/uiconfig/swriter/ui/inforeadonlydialog.ui:14 @@ -21850,7 +21850,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:42 msgctxt "notebookbar_groups|imagestylegray" msgid "Grayscale" -msgstr "Odcienie szarości" +msgstr "Skala szarości" #. weCyB #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:50 @@ -23042,19 +23042,19 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:42 msgctxt "extended_tip|paragraph" msgid "Specifies whether paragraph delimiters are displayed. The paragraph delimiters also contain paragraph format information." -msgstr "Określa, czy mają być wyświetlane separatory akapitów. Separatory akapitów zawierają także informacje o formatowaniu akapitu." +msgstr "Określa, czy mają być wyświetlane ograniczniki akapitów. Ograniczniki akapitów zawierają także informacje o formatowaniu akapitu." #. jBMu5 #: sw/uiconfig/swriter/ui/optformataidspage.ui:53 msgctxt "optformataidspage|hyphens" msgid "Soft h_yphens" -msgstr "Miękkie łą_czniki" +msgstr "Łą_czniki miękkie" #. D9auF #: sw/uiconfig/swriter/ui/optformataidspage.ui:61 msgctxt "extended_tip|hyphens" msgid "Specifies whether soft hyphens (called also as optional or discretionary hyphens) are displayed. These are hidden user-defined delimiters that you enter within a word by pressing Ctrl+Hyphen(-). Words with soft hyphens are only separated at the end of a line at the point where a soft hyphen has been inserted, irrespective of whether the automatic hyphenation is activated or deactivated." -msgstr "Określa, czy wyświetlane są miękkie łączniki (nazywane także łącznikami opcjonalnymi lub dodatkowymi). Są to ukryte ograniczniki zdefiniowane przez użytkownika, które wprowadza się w słowie, naciskając Ctrl+łącznik(-). Słowa z miękkimi łącznikami są oddzielane tylko na końcu wiersza w miejscu, w którym został wstawiony miękki łącznik, niezależnie od tego, czy automatyczne dzielenie wyrazów jest włączone, czy wyłączone." +msgstr "Określa, czy wyświetlane są łączniki miękkie (nazywane także łącznikami opcjonalnymi lub dodatkowymi). Są to ukryte ograniczniki zdefiniowane przez użytkownika, które wprowadza się w słowie, naciskając Ctrl+łącznik(-). Słowa z łącznikami miękkimi są oddzielane tylko na końcu wiersza w miejscu, w którym został wstawiony łącznik miękki, niezależnie od tego, czy automatyczne dzielenie wyrazów jest włączone, czy wyłączone." #. GTJrw #: sw/uiconfig/swriter/ui/optformataidspage.ui:72 @@ -25228,7 +25228,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:91 msgctxt "printoptionspage|inblack" msgid "Print text in blac_k" -msgstr "Drukuj tekst _kolorem czarnym" +msgstr "Drukuj te_kst w czerni" #. W6rPX #: sw/uiconfig/swriter/ui/printoptionspage.ui:99 @@ -27158,7 +27158,7 @@ #: sw/uiconfig/swriter/ui/splittable.ui:141 msgctxt "splittable|extended_tip|customheading" msgid "Inserts an additional header row in the second table." -msgstr "Wstawia dodatkowy wiersz nagłówka w drugiej tabeli." +msgstr "Wstawia dodatkowy pierwszy wiersz w drugiej tabeli." #. hiwak #: sw/uiconfig/swriter/ui/splittable.ui:152 @@ -27170,7 +27170,7 @@ #: sw/uiconfig/swriter/ui/splittable.ui:161 msgctxt "splittable|extended_tip|noheading" msgid "Splits the table without copying the header row." -msgstr "Dzieli tabelę bez kopiowania wiersza nagłówka." +msgstr "Dzieli tabelę bez kopiowania pierwszego wiersza." #. RrS2A #: sw/uiconfig/swriter/ui/splittable.ui:176 @@ -28778,7 +28778,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:786 msgctxt "tocentriespage|alphadelim" msgid "Alphabetical delimiter" -msgstr "Separator alfabetyczny" +msgstr "Ogranicznik alfabetyczny" #. 42F3V #: sw/uiconfig/swriter/ui/tocentriespage.ui:794 diff -Nru libreoffice-7.4.6/translations/source/pl/vcl/messages.po libreoffice-7.4.7/translations/source/pl/vcl/messages.po --- libreoffice-7.4.6/translations/source/pl/vcl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/vcl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-08-24 12:29+0200\n" -"PO-Revision-Date: 2022-12-10 11:03+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1554058136.000000\n" #. k5jTM @@ -2194,7 +2194,7 @@ #: vcl/uiconfig/ui/printdialog.ui:983 msgctxt "printdialog|extended_tip|papersizebox" msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size." -msgstr "Ustaw rozmiar papieru, którego chcesz użyć. Podgląd pokaże, jak dokument będzie wyglądał na papierze o podanym rozmiarze." +msgstr "Ustaw rozmiar papieru do użycia. Podgląd pokaże, jak dokument wyglądałby na papierze o podanym rozmiarze." #. EZdsx #: vcl/uiconfig/ui/printdialog.ui:1018 diff -Nru libreoffice-7.4.6/translations/source/pl/wizards/source/resources.po libreoffice-7.4.7/translations/source/pl/wizards/source/resources.po --- libreoffice-7.4.6/translations/source/pl/wizards/source/resources.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pl/wizards/source/resources.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-09 20:32+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -1814,7 +1814,7 @@ "RID_QUERY_51\n" "property.text" msgid "Sorting order:" -msgstr "Porządek sortowania:" +msgstr "Kolejność sortowania:" #. JDHFH #: resources_en_US.properties @@ -1913,7 +1913,7 @@ "RID_QUERY_71\n" "property.text" msgid "Select the sorting order" -msgstr "Określ sposób sortowania" +msgstr "Określ kolejność sortowania" #. 7jmnS #: resources_en_US.properties @@ -1985,7 +1985,7 @@ "RID_QUERY_81\n" "property.text" msgid "Sorting order" -msgstr "Porządek sortowania" +msgstr "Kolejność sortowania" #. pVVLS #: resources_en_US.properties @@ -2129,7 +2129,7 @@ "RID_FORM_0\n" "property.text" msgid "Form Wizard" -msgstr "Kreator formularzy" +msgstr "Kreator formularza" #. H4MXV #: resources_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/pt/connectivity/messages.po libreoffice-7.4.7/translations/source/pt/connectivity/messages.po --- libreoffice-7.4.6/translations/source/pt/connectivity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pt/connectivity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2022-12-27 12:04+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" "Language: pt\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1555366473.000000\n" #. 9KHB8 @@ -317,7 +317,7 @@ #: connectivity/inc/strings.hrc:75 msgctxt "STR_DUPLICATE_VALUE_IN_COLUMN" msgid "Duplicate value found in column “$columnname$”." -msgstr "" +msgstr "Encontrado valor duplicado na coluna \"$columnname$\"." #. zSeBJ #: connectivity/inc/strings.hrc:76 @@ -327,36 +327,39 @@ "\n" "The specified value “$value$” is longer than the number of digits allowed." msgstr "" +"A coluna “$columnname$” foi definida como sendo do tipo “Decimal”, o comprimento máximo é de $precision$ caracteres (com $scale$ casas decimais).\n" +"\n" +"O valor especificado “$value$” é maior do que o número de dígitos permitido." #. M6CvC #: connectivity/inc/strings.hrc:77 msgctxt "STR_COLUMN_NOT_ALTERABLE" msgid "The column “$columnname$” could not be altered. Maybe the file system is write-protected." -msgstr "" +msgstr "Não foi possível alterar a coluna \"$columnname$\". Talvez o sistema de ficheiros esteja protegido contra escrita." #. st6hA #: connectivity/inc/strings.hrc:78 msgctxt "STR_INVALID_COLUMN_VALUE" msgid "The column “$columnname$” could not be updated. The value is invalid for that column." -msgstr "" +msgstr "Não foi possível atualizar a coluna \"$columnname$\". O valor é inválido para esta coluna." #. 5rH5W #: connectivity/inc/strings.hrc:79 msgctxt "STR_COLUMN_NOT_ADDABLE" msgid "The column “$columnname$” could not be added. Maybe the file system is write-protected." -msgstr "" +msgstr "Não foi possível adicionar a coluna \"$columnname$\". Talvez o sistema de ficheiros esteja protegido contra escrita." #. B9ACk #: connectivity/inc/strings.hrc:80 msgctxt "STR_COLUMN_NOT_DROP" msgid "The column at position “$position$” could not be dropped. Maybe the file system is write-protected." -msgstr "" +msgstr "Não foi possível descartar a coluna na posição \"$position$\". Talvez o sistema de ficheiros esteja protegido contra escrita." #. KfedE #: connectivity/inc/strings.hrc:81 msgctxt "STR_TABLE_NOT_DROP" msgid "The table “$tablename$” could not be dropped. Maybe the file system is write-protected." -msgstr "" +msgstr "Não foi possível descartar a tabela \"$tablename$\". Talvez o sistema de ficheiros esteja protegido contra escrita." #. R3BGx #: connectivity/inc/strings.hrc:82 @@ -368,7 +371,7 @@ #: connectivity/inc/strings.hrc:83 msgctxt "STR_INVALID_DBASE_FILE" msgid "The file “$filename$” is an invalid (or unrecognized) dBASE file." -msgstr "" +msgstr "\"$filename$\" é um ficheiro dBase inválido (ou irreconhecível)." #. LhHTA #. Evoab2 diff -Nru libreoffice-7.4.6/translations/source/pt-BR/cui/messages.po libreoffice-7.4.7/translations/source/pt-BR/cui/messages.po --- libreoffice-7.4.6/translations/source/pt-BR/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pt-BR/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2022-07-26 09:17+0000\n" -"Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Portuguese (Brazil) \n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" +"Last-Translator: Olivier Hallot \n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565304299.000000\n" #. GyY9M @@ -2885,7 +2885,7 @@ #: cui/inc/tipoftheday.hrc:169 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline." -msgstr "Precisa apresentar um relatório escrito no Writer? Arquivo > Enviar > Estrutura de tópicos para a presentação cria automaticamente uma apresentação de slides a partir da estrutura de tópicos." +msgstr "Precisa apresentar um relatório escrito no Writer? Arquivo > Enviar > Tópicos para a presentação cria automaticamente uma apresentação de slides a partir dos tópicos." #. ZdyGi #: cui/inc/tipoftheday.hrc:170 @@ -3031,7 +3031,7 @@ #: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." -msgstr "Precisa incluir um item da lista sem marca ou numeração? Utilize 'Inserir entrada sem numeração' da barra Marcadores e numeração." +msgstr "Precisa incluir um item da lista sem marcador ou numeração? Utilize 'Inserir entrada sem numeração' da barra Marcadores e numeração." #. ZacQo #: cui/inc/tipoftheday.hrc:193 @@ -3497,7 +3497,7 @@ #: cui/inc/tipoftheday.hrc:267 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline." -msgstr "Arraste e solte células do Calc num slide no modo normal para criar uma tabela. Ao soltar no modo Estrutura de tópicos, cada célula cria uma linha de tópico." +msgstr "Arraste e solte células do Calc num slide no modo normal para criar uma tabela. Ao soltar no modo Tópicos, cada célula cria uma linha de tópico." #. DgSwJ #: cui/inc/tipoftheday.hrc:268 @@ -6059,7 +6059,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:900 msgctxt "bulletandposition|extended_tip|right" msgid "Align bullet on the right of the list element." -msgstr "Alinha o marcado à direita do elemento da lista." +msgstr "Alinha o marcador à direita do elemento da lista." #. FhAfv #: cui/uiconfig/ui/bulletandposition.ui:919 @@ -18382,7 +18382,7 @@ #: cui/uiconfig/ui/pickoutlinepage.ui:58 msgctxt "pickoutlinepage|extended_tip|PickOutlinePage" msgid "Displays the different styles that you can apply to a hierarchical list. Up to nine outline levels in a list hierarchy are supported." -msgstr "Exibe os diferentes estilos para aplicar a uma lista hierárquica. Suporta até nove níveis de estrutura de tópicos em uma hierarquia de lista." +msgstr "Exibe os diferentes estilos para aplicar a uma lista hierárquica. Suporta até nove níveis de tópicos em uma hierarquia de lista." #. hRP6U #: cui/uiconfig/ui/positionpage.ui:62 diff -Nru libreoffice-7.4.6/translations/source/pt-BR/helpcontent2/source/text/sbasic/shared.po libreoffice-7.4.7/translations/source/pt-BR/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.4.6/translations/source/pt-BR/helpcontent2/source/text/sbasic/shared.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pt-BR/helpcontent2/source/text/sbasic/shared.po 2023-05-03 15:22:13.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: 2022-07-04 18:04+0200\n" -"PO-Revision-Date: 2022-12-12 16:14+0000\n" +"PO-Revision-Date: 2023-04-04 11:33+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559388696.000000\n" #. yzYVt @@ -11570,7 +11570,7 @@ "par_id3154018\n" "help.text" msgid "If you specify a parameter attribute with a value of 1, the following return values apply:" -msgstr "Se você especificar um atributo de parâmetro com o valor 1, os valores de retorno a seguir se aplicarão:" +msgstr "Se especificar um atributo de parâmetro com o valor 1, os valores de retorno a seguir aplicam-se:" #. SqXxC #: 03020405.xhp diff -Nru libreoffice-7.4.6/translations/source/pt-BR/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/pt-BR/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/pt-BR/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pt-BR/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-10-24 11:22+0000\n" +"PO-Revision-Date: 2023-04-10 03:34+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1559388658.000000\n" #. 3u8hR @@ -49091,7 +49091,7 @@ "hd_id3734550\n" "help.text" msgid "To install a shared extension in text mode (for system administrators)" -msgstr "Para instalar uma extensão compartilhada no modo de texto (para administradores de sistemas)" +msgstr "Instalar uma extensão compartilhada no modo de texto (para administradores de sistemas)" #. iovZS #: packagemanager.xhp diff -Nru libreoffice-7.4.6/translations/source/pt-BR/helpcontent2/source/text/shared/04.po libreoffice-7.4.7/translations/source/pt-BR/helpcontent2/source/text/shared/04.po --- libreoffice-7.4.6/translations/source/pt-BR/helpcontent2/source/text/shared/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pt-BR/helpcontent2/source/text/shared/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:31+0100\n" -"PO-Revision-Date: 2022-03-31 22:25+0000\n" +"PO-Revision-Date: 2023-04-05 12:34+0000\n" "Last-Translator: Olivier Hallot \n" -"Language-Team: Portuguese (Brazil) \n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.11.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1546949558.000000\n" #. GEuoc @@ -104,7 +104,7 @@ "par_id851591272526169\n" "help.text" msgid "You can enter arbitrary Unicode characters in the document typing the Unicode hexadecimal code point and then pressing Command+Option+XAlt+X (default). Type the Unicode hexadecimal notation and press Command+Option+XAlt+X to toggle between the Unicode character and its hexadecimal notation. Selection is not necessary but the conversion will apply to the selected characters. Toggling occurs on the characters prior to the cursor position when these characters form a valid Unicode hexadecimal point. Hexadecimal code points with value in the range U+0000 to U+0020 are not converted." -msgstr "Você podem inserir caracteres Unicode no documento digitando o código hexadecimal e pressionando Command+Option+XAlt+X (default). Digite a notação hexadecimal e pressione Command+Option+XAltX para alternar entre o caractere Unicode e sua notação hexadecimal. A seleção não é necessária mas a conversão se aplica aos caracteres selecionados. A alternância ocorre nos caracteres à esquerda da posição do cursos quando os caracteres formam um códigos hexadecimal Unicode válido. Códigos hexadecimais com valores no intervalo U+0000 até U+0020 não são convertidos." +msgstr "Você podem inserir caracteres Unicode no documento digitando o código hexadecimal e pressionando Command+Option+XAlt+X (default). Digite a notação hexadecimal e pressione Command+Option+XAltX para alternar entre o caractere Unicode e sua notação hexadecimal. A seleção não é necessária mas a conversão se aplica aos caracteres selecionados. A alternância ocorre nos caracteres à esquerda da posição do cursor quando os caracteres formam um códigos hexadecimal Unicode válido. Códigos hexadecimais com valores no intervalo U+0000 até U+0020 não são convertidos." #. PwHVE #: 01010000.xhp diff -Nru libreoffice-7.4.6/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.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: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-08 19:33+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564650959.000000\n" #. W5ukN @@ -2404,7 +2404,7 @@ "Label\n" "value.text" msgid "Show Hidden Row/Column Indicator" -msgstr "Mostrar indicador de linhas e colunas" +msgstr "Mostrar indicador de linhas/colunas ocultas" #. nZGvm #: CalcCommands.xcu @@ -2414,7 +2414,7 @@ "ContextLabel\n" "value.text" msgid "Hidden Row/Column Indicator" -msgstr "Ocultar indicador de linhas e colunas" +msgstr "Indicador de linhas/colunas ocultas" #. PMfQA #: CalcCommands.xcu @@ -4194,7 +4194,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Spreadsheet..." -msgstr "E-mail com o documento em formato ~OpenDocument..." +msgstr "Por e-mail como planilha ~OpenDocument..." #. UNYDc #: CalcCommands.xcu @@ -9044,7 +9044,7 @@ "Label\n" "value.text" msgid "~Outline" -msgstr "~Estrutura de tópicos" +msgstr "Tópic~os" #. tCZBQ #: DrawImpressCommands.xcu @@ -10324,7 +10324,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft PowerPoint Presentation..." -msgstr "E-mail com o documento no formato ~Microsoft PowerPoint..." +msgstr "Por e-mail como apresentação do ~Microsoft PowerPoint..." #. GDg6X #: DrawImpressCommands.xcu @@ -10334,7 +10334,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Presentation..." -msgstr "E-mail com a apresentação no formato ~OpenDocument..." +msgstr "Por e-mail como apresentação ~OpenDocument..." #. 4SNT3 #: DrawImpressCommands.xcu @@ -26646,7 +26646,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft Format..." -msgstr "E-mail com o documento em formato ~Microsoft..." +msgstr "Por e-mail no formato ~Microsoft..." #. BrAfB #: GenericCommands.xcu @@ -26656,7 +26656,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Format..." -msgstr "E-mail com o documento em formato ~OpenDocument..." +msgstr "Por e-mail no formato ~OpenDocument..." #. kJNVF #: GenericCommands.xcu @@ -27656,7 +27656,7 @@ "UIName\n" "value.text" msgid "Outline" -msgstr "Estrutura de tópicos" +msgstr "Tópicos" #. tBpp5 #: ImpressWindowState.xcu @@ -30596,7 +30596,7 @@ "TooltipLabel\n" "value.text" msgid "Shows a button next to headings and subheadings to help with outline folding. Even without the button, you can do outline folding with the Navigator." -msgstr "Mostra um botão próximo aos títulos e subtítulos para recolher a estrutura de tópicos. Mesmo sem o botão, você pode recolher a estrutura de tópicos com o Navegador." +msgstr "Mostra um botão perto dos títulos e dos subtítulos para recolhimento de tópicos. Mesmo que o botão não seja mostrado, pode recolher/expandir os tópicos através do navegador." #. C5mHk #: WriterCommands.xcu @@ -31806,7 +31806,7 @@ "Label\n" "value.text" msgid "Outline to ~Presentation" -msgstr "Estrutura de tópicos para a~presentação" +msgstr "Tópicos para a~presentação" #. 4wZZS #: WriterCommands.xcu @@ -34706,7 +34706,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft Word..." -msgstr "Por e-mail como Microsoft ~Word..." +msgstr "Por e-mail como ~Microsoft Word..." #. CRkbD #: WriterCommands.xcu @@ -34716,7 +34716,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Text..." -msgstr "E-mail com o documento em formato ~OpenDocument Text..." +msgstr "Por e-mail como documento de texto ~OpenDocument..." #. wnFCt #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/pt-BR/sc/messages.po libreoffice-7.4.7/translations/source/pt-BR/sc/messages.po --- libreoffice-7.4.6/translations/source/pt-BR/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pt-BR/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-12-27 12:05+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562678441.000000\n" #. kBovX @@ -16652,7 +16652,7 @@ #: sc/inc/strings.hrc:36 msgctxt "SCSTR_BOTTOM10FILTER" msgid "Bottom 10" -msgstr "Os últimos 10" +msgstr "Últimos 10" #. FNDLK #: sc/inc/strings.hrc:37 @@ -24685,7 +24685,7 @@ #: sc/uiconfig/scalc/ui/movingaveragedialog.ui:182 msgctxt "movingaveragedialog|trimrange-check" msgid "Trim input range to actual data content" -msgstr "Apare o intervalo de entrada para seu conteúdo efetivo" +msgstr "Reduzir intervalo de entrada aos dados reais" #. eTxm6 #: sc/uiconfig/scalc/ui/movingaveragedialog.ui:204 diff -Nru libreoffice-7.4.6/translations/source/pt-BR/sd/messages.po libreoffice-7.4.7/translations/source/pt-BR/sd/messages.po --- libreoffice-7.4.6/translations/source/pt-BR/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pt-BR/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-12-15 19:43+0000\n" +"PO-Revision-Date: 2023-04-08 19:33+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562678568.000000\n" #. WDjkB @@ -477,7 +477,7 @@ #: sd/inc/strings.hrc:38 msgctxt "STR_OUTLINE_MODE" msgid "Outline" -msgstr "Estrutura de tópicos" +msgstr "Tópicos" #. kYbwc #: sd/inc/strings.hrc:39 @@ -785,7 +785,7 @@ #: sd/inc/strings.hrc:88 msgctxt "STR_UNDO_CHANGE_TITLE_AND_LAYOUT" msgid "Modify title and outline" -msgstr "Modificar título e estrutura de tópicos" +msgstr "Modificar título e tópicos" #. 6zCeF #: sd/inc/strings.hrc:89 @@ -1988,7 +1988,7 @@ #: sd/inc/strings.hrc:291 msgctxt "STR_PRESOBJ_MPOUTLINE" msgid "Click to edit the outline text format" -msgstr "Clique para editar o formato do texto da estrutura de tópicos" +msgstr "Clique para editar o formato de texto dos tópicos" #. MhEh8 #: sd/inc/strings.hrc:292 @@ -2006,37 +2006,37 @@ #: sd/inc/strings.hrc:294 msgctxt "STR_PRESOBJ_MPOUTLLAYER2" msgid "Second Outline Level" -msgstr "2.º nível da estrutura de tópicos" +msgstr "2.º nível de tópicos" #. Lf8oo #: sd/inc/strings.hrc:295 msgctxt "STR_PRESOBJ_MPOUTLLAYER3" msgid "Third Outline Level" -msgstr "3.º nível da estrutura de tópicos" +msgstr "3.º nível de tópicos" #. n3fVM #: sd/inc/strings.hrc:296 msgctxt "STR_PRESOBJ_MPOUTLLAYER4" msgid "Fourth Outline Level" -msgstr "4.º nível da estrutura de tópicos" +msgstr "4.º nível de tópicos" #. DsABM #: sd/inc/strings.hrc:297 msgctxt "STR_PRESOBJ_MPOUTLLAYER5" msgid "Fifth Outline Level" -msgstr "5.º nível da estrutura de tópicos" +msgstr "5.º nível de tópicos" #. CG6UM #: sd/inc/strings.hrc:298 msgctxt "STR_PRESOBJ_MPOUTLLAYER6" msgid "Sixth Outline Level" -msgstr "6.º nível da estrutura de tópicos" +msgstr "6.º nível de tópicos" #. 45DF3 #: sd/inc/strings.hrc:299 msgctxt "STR_PRESOBJ_MPOUTLLAYER7" msgid "Seventh Outline Level" -msgstr "7.º nível da estrutura de tópicos" +msgstr "7.º nível de tópicos" #. msbUt #: sd/inc/strings.hrc:300 @@ -2360,7 +2360,7 @@ #: sd/inc/strings.hrc:357 msgctxt "STR_PSEUDOSHEET_OUTLINE" msgid "Outline" -msgstr "Estrutura de tópicos" +msgstr "Tópicos" #. riaKo #: sd/inc/strings.hrc:358 @@ -2452,7 +2452,7 @@ #: sd/inc/strings.hrc:376 msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N" msgid "Outline View" -msgstr "Exibição de estrutura de tópicos" +msgstr "Exibição de tópicos" #. k2hXi #: sd/inc/strings.hrc:377 @@ -3808,7 +3808,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:255 msgctxt "insertlayer|locked" msgid "_Locked" -msgstr "_Trancado" +msgstr "_Trancada" #. uaSTH #: sd/uiconfig/sdraw/ui/insertlayer.ui:263 @@ -6933,7 +6933,7 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:17767 msgctxt "ImpressNotebookbar|View2Label" msgid "~Outline" -msgstr "~Estrutura de tópicos" +msgstr "Tópic~os" #. pA8DH #: sd/uiconfig/simpress/ui/notebookbar.ui:18554 @@ -8660,7 +8660,7 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:498 msgctxt "prntopts|outlinecb" msgid "Outline" -msgstr "Estrutura de tópicos" +msgstr "Tópicos" #. AjCQi #: sd/uiconfig/simpress/ui/prntopts.ui:517 diff -Nru libreoffice-7.4.6/translations/source/pt-BR/sfx2/messages.po libreoffice-7.4.7/translations/source/pt-BR/sfx2/messages.po --- libreoffice-7.4.6/translations/source/pt-BR/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pt-BR/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2022-07-08 10:43+0000\n" +"PO-Revision-Date: 2023-04-25 07:34+0000\n" "Last-Translator: Olivier Hallot \n" -"Language-Team: Portuguese (Brazil) \n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1561724721.000000\n" #. bHbFE @@ -1542,7 +1542,7 @@ #: include/sfx2/strings.hrc:274 msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED" msgid "This document must be classified before the clipboard can be pasted." -msgstr "Este documento deve ser classificado antes de poder colar dados da área de transferência." +msgstr "Este documento deve ser previamente classificado para colar dados classificados da área de transferência." #. BYcYH #: include/sfx2/strings.hrc:275 diff -Nru libreoffice-7.4.6/translations/source/pt-BR/starmath/messages.po libreoffice-7.4.7/translations/source/pt-BR/starmath/messages.po --- libreoffice-7.4.6/translations/source/pt-BR/starmath/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pt-BR/starmath/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:51+0200\n" -"PO-Revision-Date: 2021-09-12 07:36+0000\n" +"PO-Revision-Date: 2023-03-27 19:33+0000\n" "Last-Translator: Olivier Hallot \n" -"Language-Team: Portuguese (Brazil) \n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562246319.000000\n" #. GrDhX @@ -1928,7 +1928,7 @@ #: starmath/inc/strings.hrc:271 msgctxt "RID_WP_HELP" msgid "Weierstrass p" -msgstr "Weierstrass p" +msgstr "p de Weierstrass" #. f9sfv #: starmath/inc/strings.hrc:272 diff -Nru libreoffice-7.4.6/translations/source/pt-BR/sw/messages.po libreoffice-7.4.7/translations/source/pt-BR/sw/messages.po --- libreoffice-7.4.6/translations/source/pt-BR/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pt-BR/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-04-08 19:33+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562678677.000000\n" #. v3oJv @@ -1586,7 +1586,7 @@ #: sw/inc/inspectorproperties.hrc:184 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outline Level" -msgstr "Nível do tópico" +msgstr "Nível de tópicos" #. syTbJ #: sw/inc/inspectorproperties.hrc:185 @@ -3793,7 +3793,7 @@ #: sw/inc/strings.hrc:291 msgctxt "STR_FDLG_OUTLINE_LEVEL" msgid "Outline: Level " -msgstr "Estrutura de tópicos: Nível " +msgstr "Tópicos: Nível " #. oEvac #: sw/inc/strings.hrc:292 @@ -4777,7 +4777,7 @@ #: sw/inc/strings.hrc:464 msgctxt "STR_OUTLINE_LR" msgid "Promote/demote outline level" -msgstr "Promover/Rebaixar nível do tópico" +msgstr "Promover/Rebaixar nível de tópicos" #. Mmk22 #: sw/inc/strings.hrc:465 @@ -4789,7 +4789,7 @@ #: sw/inc/strings.hrc:466 msgctxt "STR_OUTLINE_EDIT" msgid "Modify outline" -msgstr "Modificar estrutura de tópicos" +msgstr "Alterar tópicos" #. RjcRH #: sw/inc/strings.hrc:467 @@ -5948,7 +5948,7 @@ #: sw/inc/strings.hrc:666 msgctxt "STR_OUTLINE_LEVEL" msgid "Outline Level" -msgstr "Nível do tópico" +msgstr "Nível de tópicos" #. yERK6 #: sw/inc/strings.hrc:667 @@ -5960,7 +5960,7 @@ #: sw/inc/strings.hrc:668 msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY" msgid "Send Outline to Clipboard" -msgstr "Estrutura de tópi~cos para a área de transferência" +msgstr "Enviar tópicos para a área de transferência" #. b5tPU #: sw/inc/strings.hrc:669 @@ -5990,7 +5990,7 @@ #: sw/inc/strings.hrc:673 msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY" msgid "Click to toggle outline folding" -msgstr "Clique para alternar o recolhimento dos tópicos" +msgstr "Clique para alternar o recolhimento de tópicos" #. 44jEc #: sw/inc/strings.hrc:674 @@ -6002,7 +6002,7 @@ #: sw/inc/strings.hrc:675 msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY" msgid "Click to toggle outline folding" -msgstr "Clique para alternar o recolhimento dos tópicos" +msgstr "Clique para alternar o recolhimento de tópicos" #. rkD8H #: sw/inc/strings.hrc:676 @@ -9740,7 +9740,7 @@ #: sw/inc/strings.hrc:1377 msgctxt "STR_NUM_OUTLINE" msgid "Outline " -msgstr "Estrutura de tópicos " +msgstr "Tópicos " #. DE9FZ #: sw/inc/strings.hrc:1378 @@ -10138,7 +10138,7 @@ #: sw/uiconfig/swriter/ui/abstractdialog.ui:113 msgctxt "abstractdialog|label2" msgid "Included outline levels" -msgstr "Níveis incluídos da estrutura de tópicos" +msgstr "Níveis de tópicos incluídos" #. 8rYwZ #: sw/uiconfig/swriter/ui/abstractdialog.ui:128 @@ -10150,13 +10150,13 @@ #: sw/uiconfig/swriter/ui/abstractdialog.ui:143 msgctxt "abstractdialog|label4" msgid "The abstract contains the selected number of paragraphs from the included outline levels." -msgstr "O resumo contém o número de parágrafos selecionados a partir dos níveis incluídos da estrutura de tópicos." +msgstr "O resumo contém o número de parágrafos selecionados com base nos níveis de tópicos incluídos." #. zeoic #: sw/uiconfig/swriter/ui/abstractdialog.ui:165 msgctxt "abstractdialog|extended_tip|outlines" msgid "Enter the extent of the outline levels to be copied to the new document." -msgstr "Insira a extensão dos níveis da estrutura de tópicos a serem copiados para o novo documento." +msgstr "Insira a extensão dos níveis de tópicos a copiar para o novo documento." #. ELZAp #: sw/uiconfig/swriter/ui/abstractdialog.ui:183 @@ -11332,13 +11332,13 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:259 msgctxt "bulletsandnumbering|outlinenum" msgid "Outline" -msgstr "Estrutura de tópicos" +msgstr "Tópicos" #. ek4S5 #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:260 msgctxt "bulletsandnumbering|outlinenum" msgid "Select an outline format for an ordered list." -msgstr "Selecione um estrutura de tópicos para uma lista ordenada." +msgstr "Selecione um formato de tópicos para listas ordenadas." #. hW6yn #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:308 @@ -12370,7 +12370,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:99 msgctxt "conditionpage|extended_tip|links" msgid "Here you can see the Writer predefined contexts, including outline levels 1 to 10, list levels 1 to 10, table header, table contents, section, border, footnote, header and footer." -msgstr "Veja aqui os contextos predefinidos do Writer, incluindo os níveis de estrutura de tópicos de 1 a 10, níveis de listas de 1 a 10, cabeçalho de tabela, conteúdo de tabela, seção, borda, nota de rodapé, cabeçalho e rodapé." +msgstr "Veja aqui os contextos predefinidos do Writer, incluindo os níveis de tópicos de 1 a 10, níveis de listas de 1 a 10, cabeçalho de tabela, conteúdo de tabela, seção, borda, nota de rodapé, cabeçalho e rodapé." #. nDZqL #: sw/uiconfig/swriter/ui/conditionpage.ui:128 @@ -12448,61 +12448,61 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:233 msgctxt "conditionpage|filter" msgid " 1st Outline Level" -msgstr " 1.º nível da estrutura de tópicos" +msgstr " 1.º nível de tópicos" #. GTJPN #: sw/uiconfig/swriter/ui/conditionpage.ui:234 msgctxt "conditionpage|filter" msgid " 2nd Outline Level" -msgstr " 2.º nível da estrutura de tópicos" +msgstr " 2.º nível de tópicos" #. VKBoL #: sw/uiconfig/swriter/ui/conditionpage.ui:235 msgctxt "conditionpage|filter" msgid " 3rd Outline Level" -msgstr " 3.º nível da estrutura de tópicos" +msgstr " 3.º nível de tópicos" #. a9TaD #: sw/uiconfig/swriter/ui/conditionpage.ui:236 msgctxt "conditionpage|filter" msgid " 4th Outline Level" -msgstr " 4.º nível da estrutura de tópicos" +msgstr " 4.º nível de tópicos" #. dXE2C #: sw/uiconfig/swriter/ui/conditionpage.ui:237 msgctxt "conditionpage|filter" msgid " 5th Outline Level" -msgstr " 5.º nível da estrutura de tópicos" +msgstr " 5.º nível de tópicos" #. hCaZr #: sw/uiconfig/swriter/ui/conditionpage.ui:238 msgctxt "conditionpage|filter" msgid " 6th Outline Level" -msgstr " 6.º nível da estrutura de tópicos" +msgstr " 6.º nível de tópicos" #. eY5Fy #: sw/uiconfig/swriter/ui/conditionpage.ui:239 msgctxt "conditionpage|filter" msgid " 7th Outline Level" -msgstr " 7.º nível da estrutura de tópicos" +msgstr " 7.º nível de tópicos" #. KbZgs #: sw/uiconfig/swriter/ui/conditionpage.ui:240 msgctxt "conditionpage|filter" msgid " 8th Outline Level" -msgstr " 8.º nível da estrutura de tópicos" +msgstr " 8.º nível de tópicos" #. L5C8x #: sw/uiconfig/swriter/ui/conditionpage.ui:241 msgctxt "conditionpage|filter" msgid " 9th Outline Level" -msgstr " 9.º nível da estrutura de tópicos" +msgstr " 9.º nível de tópicos" #. xNPpQ #: sw/uiconfig/swriter/ui/conditionpage.ui:242 msgctxt "conditionpage|filter" msgid "10th Outline Level" -msgstr "10.º nível da estrutura de tópicos" +msgstr "10.º nível de tópicos" #. tFzDD #: sw/uiconfig/swriter/ui/conditionpage.ui:243 @@ -20456,13 +20456,13 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87 msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL" msgid "Promote Outline Level" -msgstr "Promover nível do tópico" +msgstr "Promover nível de tópicos" #. GRZmf #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96 msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL" msgid "Demote Outline Level" -msgstr "Rebaixar nível do tópico" +msgstr "Rebaixar nível do tópicos" #. tukRq #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105 @@ -20804,25 +20804,25 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:570 msgctxt "navigatorpanel|promote|tooltip_text" msgid "Promote outline level" -msgstr "Promover nível da estrutura de tópico" +msgstr "Promover nível de tópicos" #. dvQYH #: sw/uiconfig/swriter/ui/navigatorpanel.ui:574 msgctxt "navigatorpanel|extended_tip|promote" msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon." -msgstr "Aumente em um nível o título selecionado na estrutura de tópicos e os títulos abaixo dele. Para aumentar apenas o nível da estrutura do título selecionado, pressione Ctrl e clique nesse ícone." +msgstr "Aumenta o nível de tópicos do título selecionado e de todos os títulos subsequentes. Para apenas aumentar o nível de tópicos do título selecionado, mantenha pressionada a tecla Ctrl e clique neste ícone." #. DoiCW #: sw/uiconfig/swriter/ui/navigatorpanel.ui:586 msgctxt "navigatorpanel|demote|tooltip_text" msgid "Demote outline level" -msgstr "Rebaixar nível da estrutura de tópico" +msgstr "Rebaixar nível de tópicos" #. NHBAZ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:590 msgctxt "navigatorpanel|extended_tip|demote" msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon." -msgstr "Rebaixa em um nível o título selecionado na estrutura de tópicos e os títulos abaixo dele. Para rebaixar apenas o nível da estrutura do título selecionado, pressione Ctrl e clique nesse ícone." +msgstr "Rebaixa o nível de tópicos do título selecionado e de todos os títulos subsequentes. Para apenas diminuir o nível de tópicos do título selecionado, mantenha pressionada a tecla Ctrl e clique neste ícone." #. Bbq3k #: sw/uiconfig/swriter/ui/navigatorpanel.ui:602 @@ -21483,7 +21483,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6265 msgctxt "notebookbar_groupedbar_compact|CalculateButton" msgid "_Calc" -msgstr "_Calc" +msgstr "_Calcular" #. DC7Hv #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6521 @@ -21729,7 +21729,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7935 msgctxt "notebookbar_groupedbar_full|CalculateButton" msgid "_Calc" -msgstr "_Calc" +msgstr "_Calcular" #. cyjNn #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8294 @@ -22275,13 +22275,13 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:42 msgctxt "numparapage|labelFT_OUTLINE_LEVEL" msgid "Outline level:" -msgstr "Nível da estrutura de tópicos:" +msgstr "Nível de tópicos:" #. CHRqd #: sw/uiconfig/swriter/ui/numparapage.ui:57 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Assigned Outline Level" -msgstr "Nível de tópico atribuído" +msgstr "Nível de tópicos atribuído" #. y9mKV #: sw/uiconfig/swriter/ui/numparapage.ui:59 @@ -22353,13 +22353,13 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:73 msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL" msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style." -msgstr "Atribui um nível de estrutura de tópicos de 1 a 10 aos parágrafos selecionados ou ao estilo de parágrafo." +msgstr "Atribui um nível de tópicos de 1 até 10 para os parágrafos ou para o estilo de parágrafo selecionado." #. A9CrD #: sw/uiconfig/swriter/ui/numparapage.ui:89 msgctxt "numparapage|labelOutline" msgid "Outline" -msgstr "Estrutura de tópicos" +msgstr "Tópicos" #. oKotj #: sw/uiconfig/swriter/ui/numparapage.ui:126 @@ -22491,7 +22491,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:447 msgctxt "numparapage|extended_tip|NumParaPage" msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list." -msgstr "Adiciona ou remove níveis de tópicos, estilo de listas e a numeração de linhas do parágrafo. Você pode também redefinir a numeração de uma lista numerada." +msgstr "Adiciona ou remove nível de tópicos, estilo de listas e a numeração de linhas do parágrafo. Você pode também redefinir a numeração de uma lista numerada." #. GHR9r #: sw/uiconfig/swriter/ui/objectdialog.ui:8 @@ -24035,7 +24035,7 @@ #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:189 msgctxt "outlinenumberingpage|extended_tip|numbering" msgid "Select the numbering scheme that you want to apply to the selected outline level." -msgstr "Selecione o esquema de numeração que deseja aplicar ao nível de estrutura de tópicos selecionado." +msgstr "Selecione o esquema de numeração que deseja aplicar ao nível de tópicos selecionado." #. BSBWE #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:205 @@ -24753,13 +24753,13 @@ #: sw/uiconfig/swriter/ui/paradialog.ui:353 msgctxt "paradialog|labelTP_NUMPARA" msgid "Outline & List" -msgstr "Estrutura de tópicos e lista" +msgstr "Tópicos e lista" #. hZxni #: sw/uiconfig/swriter/ui/paradialog.ui:354 msgctxt "paradialog|labelTP_NUMPARA" msgid "Set outline level, list style and line numbering for paragraph." -msgstr "Define o nível de tópicos, estilo de lista e numeração para parágrafos." +msgstr "Define o nível de tópicos, o estilo de lista e a numeração de linhas do parágrafo." #. BzbWJ #: sw/uiconfig/swriter/ui/paradialog.ui:402 @@ -27799,13 +27799,13 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:314 msgctxt "templatedialog16|outline" msgid "Outline" -msgstr "Estrutura de tópicos" +msgstr "Tópicos" #. vDSFy #: sw/uiconfig/swriter/ui/templatedialog16.ui:315 msgctxt "templatedialog16|outline" msgid "Choose a predefined outline format" -msgstr "Escolha um formato de estrutura de tópicos predefinido" +msgstr "Escolha um formato de tópicos predefinido" #. Dp6La #: sw/uiconfig/swriter/ui/templatedialog16.ui:363 @@ -27841,7 +27841,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:462 msgctxt "templatedialog16|customize" msgid "Design your own list or outline format" -msgstr "Esboce seu próprio formato de lista ou estrutura de tópicos" +msgstr "Crie o seu formato de tópicos ou de lista" #. 6ozqU #: sw/uiconfig/swriter/ui/templatedialog2.ui:9 @@ -27949,13 +27949,13 @@ #: sw/uiconfig/swriter/ui/templatedialog2.ui:935 msgctxt "templatedialog2|outline" msgid "Outline & List" -msgstr "Estrutura de tópicos e lista" +msgstr "Tópicos e lista" #. xT7hc #: sw/uiconfig/swriter/ui/templatedialog2.ui:936 msgctxt "templatedialog2|outline" msgid "Set outline level, list style and line numbering for paragraph style." -msgstr "Define nível do tópico, estilo de lista e numeração de linha para estilo de parágrafo." +msgstr "Define nível do tópicos, o estilo de lista e a numeração de linhas para o estilo de parágrafo." #. q8oC5 #: sw/uiconfig/swriter/ui/templatedialog4.ui:9 @@ -29761,13 +29761,13 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:595 msgctxt "viewoptionspage|outlinecontentvisibilitybutton" msgid "_Show outline-folding buttons" -msgstr "Mo_strar botões de controles de tópicos" +msgstr "Mo_strar botões de recolhimento de tópicos" #. 4RBet #: sw/uiconfig/swriter/ui/viewoptionspage.ui:603 msgctxt "viewoptionspage|extended_tip|outlinecontentvisibilitybutton" msgid "Displays outline folding buttons on the left of the outline headings." -msgstr "Exibe os botões de recolher à esquerda dos títulos da estrutura de tópicos." +msgstr "Mostra os botões para recolhimento/expansão de tópicos na margem esquerda dos títulos." #. gAXeG #: sw/uiconfig/swriter/ui/viewoptionspage.ui:614 @@ -29779,7 +29779,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:623 msgctxt "viewoptionspage|extended_tip|suboutlinelevelsascontent" msgid "Displays the folding buttons of the outline sub levels." -msgstr "Exibe os botões de recolher dos subníveis da estrutura de tópicos." +msgstr "Mostra os botões para recolhimento/expansão de subníveis dos tópicos." #. P8f3D #: sw/uiconfig/swriter/ui/viewoptionspage.ui:638 diff -Nru libreoffice-7.4.6/translations/source/pt-BR/swext/mediawiki/help.po libreoffice-7.4.7/translations/source/pt-BR/swext/mediawiki/help.po --- libreoffice-7.4.6/translations/source/pt-BR/swext/mediawiki/help.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/pt-BR/swext/mediawiki/help.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-12 16:30+0000\n" +"PO-Revision-Date: 2023-04-08 19:33+0000\n" "Last-Translator: Olivier Hallot \n" -"Language-Team: Portuguese (Brazil) \n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542506904.000000\n" #. 7EFBE @@ -473,7 +473,7 @@ "par_id508133\n" "help.text" msgid "Apply a heading paragraph style to the headings in your Writer document. The wiki will show the heading styles of the same outline level, formatted as defined by the wiki engine." -msgstr "Aplica um estilo de parágrafo de título para os títulos de seu documento Writer. O wiki mostrará os estilos de títulos com a mesma estrutura de tópicos, formatado de acordo com os padrões do servidor wiki." +msgstr "Aplica um estilo de parágrafo de título para os títulos de seu documento Writer. O wiki mostrará os estilos de títulos com o mesmo nível de tópicos, formatado de acordo com os padrões do servidor wiki." #. YAjYW #: wikiformats.xhp diff -Nru libreoffice-7.4.6/translations/source/ro/cui/messages.po libreoffice-7.4.7/translations/source/ro/cui/messages.po --- libreoffice-7.4.6/translations/source/ro/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ro/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-28 18:05+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -5389,7 +5389,7 @@ #: cui/uiconfig/ui/autocorrectdialog.ui:438 msgctxt "autocorrectdialog|wordcompletion" msgid "Word Completion" -msgstr "Completează cuvintele" +msgstr "Completare de cuvinte" #. 2HJ6n #: cui/uiconfig/ui/autocorrectdialog.ui:486 @@ -21586,13 +21586,13 @@ #: cui/uiconfig/ui/tipofthedaydialog.ui:25 msgctxt "TipOfTheDay|Checkbox" msgid "_Show tips on startup" -msgstr "" +msgstr "Arată _sfaturi la pornire" #. vmqCo #: cui/uiconfig/ui/tipofthedaydialog.ui:29 msgctxt "TipOfTheDay|Checkbox_Tooltip" msgid "Enable the dialog again at Tools ▸ Options ▸ General, or Help ▸ Show Tip of the Day" -msgstr "" +msgstr "Activează din nou dialogul la Instrumente ▸ Opțiuni ▸ General sau Ajutor ▸ Arată sfatul zilei" #. GALqP #: cui/uiconfig/ui/tipofthedaydialog.ui:43 @@ -21952,55 +21952,55 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:60 msgctxt "wordcompletionpage|wordcompletion" msgid "Word Completion" -msgstr "" +msgstr "Completare de cuvinte" #. WFeum #: cui/uiconfig/ui/wordcompletionpage.ui:73 msgctxt "wordcompletionpage|enablewordcomplete" msgid "Enable word _completion" -msgstr "Activare _completare cuvinte" +msgstr "Activează _completarea cuvintelor" #. C6wQP #: cui/uiconfig/ui/wordcompletionpage.ui:81 msgctxt "wordcompletionpage|extended_tip|enablewordcomplete" msgid "Stores frequently used words, and automatically completes a word after you type three letters that match the first three letters of a stored word." -msgstr "" +msgstr "Stochează cuvintele utilizate frecvent și completează automat un cuvânt după ce tastați trei litere care se potrivesc cu primele trei litere ale unui cuvânt stocat." #. F6ECQ #: cui/uiconfig/ui/wordcompletionpage.ui:99 msgctxt "wordcompletionpage|appendspace" msgid "_Append space" -msgstr "_Adaugă spațiu" +msgstr "_Adaugă un spațiu" #. gZhGZ #: cui/uiconfig/ui/wordcompletionpage.ui:107 msgctxt "wordcompletionpage|extended_tip|appendspace" msgid "If you do not add punctuation after the word then a space is added automatically." -msgstr "" +msgstr "Dacă nu adăugați semne de punctuație după cuvânt, atunci se adaugă automat un spațiu." #. YyYGC #: cui/uiconfig/ui/wordcompletionpage.ui:118 msgctxt "wordcompletionpage|showastip" msgid "_Show as tip" -msgstr "_Arată ca sugestie" +msgstr "Arată ca _sugestie" #. AM5rj #: cui/uiconfig/ui/wordcompletionpage.ui:126 msgctxt "wordcompletionpage|extended_tip|showastip" msgid "Displays the completed word as a Help Tip." -msgstr "" +msgstr "Afișează cuvântul completat ca un sugestie ajutătoare." #. RJa2G #: cui/uiconfig/ui/wordcompletionpage.ui:160 msgctxt "wordcompletionpage|label2" msgid "Mi_n. word length:" -msgstr "Lu_ngime minimă de cuvânt:" +msgstr "Lu_ngimea minimă a cuvântului:" #. XSEGa #: cui/uiconfig/ui/wordcompletionpage.ui:180 msgctxt "wordcompletionpage|extended_tip|minwordlen" msgid "Enter the minimum word length for a word to become eligible for the word completion feature." -msgstr "" +msgstr "Introduceți lungimea minimă a cuvântului pentru ca un cuvânt să devină eligibil pentru funcția de completare a cuvântului." #. YAb3D #: cui/uiconfig/ui/wordcompletionpage.ui:193 @@ -22012,7 +22012,7 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:213 msgctxt "wordcompletionpage|extended_tip|maxentries" msgid "Enter the maximum number of words that you want to store in the Word Completion list." -msgstr "" +msgstr "Introduceți numărul maxim de cuvinte pe care doriți să le stocați în lista de completare a cuvintelor." #. SzABn #: cui/uiconfig/ui/wordcompletionpage.ui:226 @@ -22024,19 +22024,19 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:242 msgctxt "wordcompletionpage|extended_tip|acceptwith" msgid "Select the key that you want to use to accept the automatic word completion." -msgstr "" +msgstr "Selectați tasta pe care vreți să o utilizați pentru a accepta completarea automată a cuvântului." #. iedK3 #: cui/uiconfig/ui/wordcompletionpage.ui:276 msgctxt "acorreplacepage|collectedwords" msgid "Collected Words" -msgstr "" +msgstr "Cuvinte colectate" #. GCXAm #: cui/uiconfig/ui/wordcompletionpage.ui:322 msgctxt "wordcompletionpage|extended_tip|entries" msgid "Lists the collected words. The list is valid until you close the current document. To make the list available to other documents in the current session, disable \"When closing a document, remove the words collected from it from the list\"." -msgstr "" +msgstr "Enumeră cuvintele colectate. Lista este valabilă până când închideți documentul curent. Pentru a face lista disponibilă pentru alte documente din sesiunea curentă, dezactivați „La închiderea unui document, elimină din listă cuvintele colectate din acesta”." #. Akygd #: cui/uiconfig/ui/wordcompletionpage.ui:335 diff -Nru libreoffice-7.4.6/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-03-01 01:57+0000\n" +"PO-Revision-Date: 2023-03-13 11:34+0000\n" "Last-Translator: Secară Cristian \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -23586,7 +23586,7 @@ "ContextLabel\n" "value.text" msgid "Show Tip of the Day" -msgstr "" +msgstr "Arată sfatul zilei" #. 6VUAq #: GenericCommands.xcu @@ -23596,7 +23596,7 @@ "TooltipLabel\n" "value.text" msgid "Show the Tip of the Day dialog" -msgstr "" +msgstr "Arată dialogul Sfatul zilei" #. GjCU6 #: GenericCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/ru/cui/messages.po libreoffice-7.4.7/translations/source/ru/cui/messages.po --- libreoffice-7.4.6/translations/source/ru/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -15126,7 +15126,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:488 msgctxt "extended_tip|starbasicwarning" msgid "If this field is marked, when exporting to HTML a warning is shown that Basic macros will be lost." -msgstr "Если это поле отмечено, при экспорте в HTML отображается предупреждение о том, что макросы Basic будут потеряны." +msgstr "Если это поле отмечено, при экспорте в HTML отображается предупреждение о том, что макросы Basic будут утеряны." #. puyKW #: cui/uiconfig/ui/opthtmlpage.ui:499 diff -Nru libreoffice-7.4.6/translations/source/ru/desktop/messages.po libreoffice-7.4.7/translations/source/ru/desktop/messages.po --- libreoffice-7.4.6/translations/source/ru/desktop/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/desktop/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-01-30 09:57+0000\n" +"PO-Revision-Date: 2023-03-13 11:33+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1553168942.000000\n" #. v2iwK @@ -1175,7 +1175,7 @@ #: desktop/uiconfig/ui/updatedialog.ui:389 msgctxt "updatedialog|extended_tip|UpdateDialog" msgid "Click the Check for Updates button in the Extension Manager to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose Update." -msgstr "Нажмите на кнопку Проверить обновления в окне Управление расширениями для проверки наличия обновлений всех установленных расширений. Для проверки обновлений только выбранных расширений щёлкните правой кнопкой мыши для вызова контекстного меню, а затем выберите Обновить." +msgstr "Нажмите кнопку «Проверка обновлений» в окне «Управление расширениями» для проверки наличия обновлений всех установленных расширений. Для проверки обновлений только выбранных расширений, щёлкните правой кнопкой мыши для вызова контекстного меню, а затем выберите «Обновить»." #. YEhMN #: desktop/uiconfig/ui/updateinstalldialog.ui:8 diff -Nru libreoffice-7.4.6/translations/source/ru/extensions/messages.po libreoffice-7.4.7/translations/source/ru/extensions/messages.po --- libreoffice-7.4.6/translations/source/ru/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-03-04 13:34+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -1081,7 +1081,7 @@ #: extensions/inc/strings.hrc:71 msgctxt "RID_STR_TABINDEX" msgid "Tab order" -msgstr "Порядок" +msgstr "Порядок обхода" #. pAcjw #: extensions/inc/strings.hrc:72 diff -Nru libreoffice-7.4.6/translations/source/ru/extras/source/autocorr/emoji.po libreoffice-7.4.7/translations/source/ru/extras/source/autocorr/emoji.po --- libreoffice-7.4.6/translations/source/ru/extras/source/autocorr/emoji.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/extras/source/autocorr/emoji.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-03-13 11:33+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1513756439.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -10584,7 +10584,7 @@ "WEIGHT_LIFTER\n" "LngText.text" msgid "weight lifter" -msgstr "" +msgstr "тяжелоатлет" #. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji #. bDCyA @@ -10694,7 +10694,7 @@ "SHOPPING_BAGS\n" "LngText.text" msgid "shop" -msgstr "" +msgstr "сумка" #. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji #. eQaW4 @@ -10714,7 +10714,7 @@ "DOVE_OF_PEACE\n" "LngText.text" msgid "dove" -msgstr "" +msgstr "голубь" #. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji #. Uyg9S @@ -10744,7 +10744,7 @@ "ROSETTE\n" "LngText.text" msgid "rosette" -msgstr "" +msgstr "розетка" #. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji #. SAxJc @@ -10794,7 +10794,7 @@ "CAMPING\n" "LngText.text" msgid "camping" -msgstr "" +msgstr "кемпинг" #. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji #. QQU86 @@ -10904,7 +10904,7 @@ "MOTORWAY\n" "LngText.text" msgid "motorway" -msgstr "" +msgstr "шоссе" #. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji #. XNZp2 @@ -11184,7 +11184,7 @@ "LEVEL_SLIDER\n" "LngText.text" msgid "slider" -msgstr "" +msgstr "ползунок" #. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji #. HRvG2 @@ -11294,7 +11294,7 @@ "LABEL\n" "LngText.text" msgid "label" -msgstr "" +msgstr "бирка" #. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji #. MtcT9 @@ -11364,7 +11364,7 @@ "SPIRAL_NOTE_PAD\n" "LngText.text" msgid "notepad" -msgstr "" +msgstr "блокнот" #. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji #. fjcB6 @@ -11454,7 +11454,7 @@ "SHIELD\n" "LngText.text" msgid "shield" -msgstr "" +msgstr "щит" #. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji #. F9G5C @@ -11464,7 +11464,7 @@ "COMPRESSION\n" "LngText.text" msgid "clamp" -msgstr "" +msgstr "тиски" #. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji #. g4DGu @@ -11474,7 +11474,7 @@ "BED\n" "LngText.text" msgid "bed" -msgstr "" +msgstr "кровать" #. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji #. XnFom @@ -11484,7 +11484,7 @@ "COUCH_AND_LAMP\n" "LngText.text" msgid "couch" -msgstr "" +msgstr "кушетка" #. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji #. R8EvG @@ -11764,7 +11764,7 @@ "DECREASE_FONT_SIZE_SYMBOL\n" "LngText.text" msgid "font" -msgstr "" +msgstr "шрифт" #. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji #. ZSeGW @@ -12184,7 +12184,7 @@ "INCREASE_FONT_SIZE_SYMBOL\n" "LngText.text" msgid "font2" -msgstr "" +msgstr "шрифт 2" #. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji #. KeAPT @@ -12624,7 +12624,7 @@ "BLACK_ROSETTE\n" "LngText.text" msgid "rosette2" -msgstr "" +msgstr "розетка 2" #. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji #. i4YCp @@ -12924,7 +12924,7 @@ "HUGGING_FACE\n" "LngText.text" msgid "hugging" -msgstr "" +msgstr "объятие" #. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji #. QGVSq @@ -12934,7 +12934,7 @@ "THINKING_FACE\n" "LngText.text" msgid "thinking" -msgstr "" +msgstr "обдумывание" #. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji #. YWnjW @@ -12944,7 +12944,7 @@ "FACE_WITH_ROLLING_EYES\n" "LngText.text" msgid "eye roll" -msgstr "" +msgstr "закатывание глаз" #. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji #. eahZt @@ -12964,7 +12964,7 @@ "UPSIDE-DOWN_FACE\n" "LngText.text" msgid "upside-down" -msgstr "" +msgstr "перевёрнутый" #. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji #. NHvD5 @@ -12994,7 +12994,7 @@ "FACE_WITH_HEAD-BANDAGE\n" "LngText.text" msgid "bandage" -msgstr "" +msgstr "повязка" #. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji #. AZgGL @@ -13314,7 +13314,7 @@ "PLACE_OF_WORSHIP\n" "LngText.text" msgid "worship" -msgstr "" +msgstr "молитва" #. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji #. VJK9e @@ -13344,7 +13344,7 @@ "DROOLING_FACE\n" "LngText.text" msgid "drool" -msgstr "" +msgstr "слюни" #. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji #. BFDoH @@ -13554,7 +13554,7 @@ "CALL_ME_HAND\n" "LngText.text" msgid "call" -msgstr "" +msgstr "позвони" #. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji #. FAjqc @@ -13834,7 +13834,7 @@ "PANCAKES\n" "LngText.text" msgid "pancakes" -msgstr "" +msgstr "блинчики" #. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji #. ZD8B4 @@ -13844,7 +13844,7 @@ "BACON\n" "LngText.text" msgid "bacon" -msgstr "" +msgstr "бекон" #. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji #. FBeQo @@ -13884,7 +13884,7 @@ "GREEN_SALAD\n" "LngText.text" msgid "salad" -msgstr "" +msgstr "салат" #. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji #. ABhFU @@ -13924,7 +13924,7 @@ "SPOON\n" "LngText.text" msgid "spoon" -msgstr "" +msgstr "ложка" #. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji #. i9HME @@ -14094,7 +14094,7 @@ "SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n" "LngText.text" msgid "cursing" -msgstr "" +msgstr "ругательства" #. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji #. kBxkz @@ -14234,7 +14234,7 @@ "MERPERSON\n" "LngText.text" msgid "merperson" -msgstr "" +msgstr "русалка" #. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji #. 7WZ3s @@ -14284,7 +14284,7 @@ "PERSON_CLIMBING\n" "LngText.text" msgid "climber" -msgstr "" +msgstr "альпинист" #. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji #. UhgUh @@ -14334,7 +14334,7 @@ "ORANGE_HEART\n" "LngText.text" msgid "orange heart" -msgstr "" +msgstr "оранжевое сердечко" #. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji #. 9F7KC @@ -14484,7 +14484,7 @@ "CUT_OF_MEAT\n" "LngText.text" msgid "steak" -msgstr "" +msgstr "стейк" #. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji #. kUkjd @@ -14494,7 +14494,7 @@ "SANDWICH\n" "LngText.text" msgid "sandwich" -msgstr "" +msgstr "бутерброд" #. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji #. UgCS4 @@ -14524,7 +14524,7 @@ "DUMPLING\n" "LngText.text" msgid "dumpling" -msgstr "" +msgstr "вареник" #. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji #. APAjG @@ -14554,7 +14554,7 @@ "PIE\n" "LngText.text" msgid "pie" -msgstr "" +msgstr "пирог" #. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji #. YNHfJ @@ -14594,7 +14594,7 @@ "SLED\n" "LngText.text" msgid "sled" -msgstr "" +msgstr "сани" #. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji #. 5hGNv diff -Nru libreoffice-7.4.6/translations/source/ru/helpcontent2/source/text/sdraw/01.po libreoffice-7.4.7/translations/source/ru/helpcontent2/source/text/sdraw/01.po --- libreoffice-7.4.6/translations/source/ru/helpcontent2/source/text/sdraw/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/helpcontent2/source/text/sdraw/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2023-01-23 12:19+0000\n" +"PO-Revision-Date: 2023-04-11 14:34+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1494403161.000000\n" #. ybhKD @@ -437,7 +437,7 @@ "par_idN10732\n" "help.text" msgid "3D Color" -msgstr "" +msgstr "Цвета 3D" #. TLZ97 #: 3dsettings_toolbar.xhp diff -Nru libreoffice-7.4.6/translations/source/ru/helpcontent2/source/text/shared/00.po libreoffice-7.4.7/translations/source/ru/helpcontent2/source/text/shared/00.po --- libreoffice-7.4.6/translations/source/ru/helpcontent2/source/text/shared/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/helpcontent2/source/text/shared/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: 00\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-15 15:33+0000\n" +"PO-Revision-Date: 2023-04-17 22:33+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -2255,7 +2255,7 @@ "par_id971619105747398\n" "help.text" msgid "A direct formatting attribute applied on a object overrides the corresponding attribute of the style applied to the object." -msgstr "" +msgstr "Применённый к объекту атрибут прямого форматирования переопределяет соответствующий атрибут стиля, применённого к объекту." #. aUcVk #: 00000005.xhp @@ -3830,7 +3830,7 @@ "par_id3153573\n" "help.text" msgid "A left paragraph indent in numbering is indicated as \"margin-left\" CSS1 property. First-line indents are ignored in numbering and not exported." -msgstr "Отступ левого абзаца в нумерации указывается как свойство CSS1 \"Левое поле\". Отступы первой строки в нумерации не учитываются и не экспортируются." +msgstr "Отступ левого абзаца в нумерации указывается как свойство CSS1 «margin-left». Отступы первой строки в нумерации не учитываются и не экспортируются." #. 6wqk9 #: 00000020.xhp diff -Nru libreoffice-7.4.6/translations/source/ru/helpcontent2/source/text/shared/02.po libreoffice-7.4.7/translations/source/ru/helpcontent2/source/text/shared/02.po --- libreoffice-7.4.6/translations/source/ru/helpcontent2/source/text/shared/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/helpcontent2/source/text/shared/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-02 12:38+0000\n" +"PO-Revision-Date: 2023-03-04 13:33+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542031432.000000\n" #. Edm6o @@ -4415,7 +4415,7 @@ "hd_id3149266\n" "help.text" msgid "Tab order" -msgstr "Последовательность перехода" +msgstr "Порядок обхода" #. zDMXA #: 01170101.xhp @@ -9554,7 +9554,7 @@ "hd_id3153799\n" "help.text" msgid "Tab order" -msgstr "Последовательность перехода" +msgstr "Порядок обхода" #. 9KPjF #: 01170600.xhp diff -Nru libreoffice-7.4.6/translations/source/ru/helpcontent2/source/text/shared/autopi.po libreoffice-7.4.7/translations/source/ru/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.4.6/translations/source/ru/helpcontent2/source/text/shared/autopi.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/helpcontent2/source/text/shared/autopi.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2023-02-15 15:33+0000\n" +"PO-Revision-Date: 2023-04-12 10:34+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -3380,7 +3380,7 @@ "par_id3150355\n" "help.text" msgid "Aligns the database fields column-wise with the labels above the field." -msgstr "" +msgstr "Выравнивает поля базы данных по столбцам с подписями над полями." #. yVG3V #: 01090300.xhp @@ -3443,7 +3443,7 @@ "par_idN106D9\n" "help.text" msgid "Aligns the database fields column-wise with the labels to the left of the fields." -msgstr "Выравнивание полей базы данных по столбцам с подписями в левой части полей." +msgstr "Выравнивает поля базы данных по столбцам с подписями слева от полей." #. 6Asyj #: 01090300.xhp @@ -3461,7 +3461,7 @@ "par_idN106E0\n" "help.text" msgid "Aligns the database fields column-wise with the labels above the field." -msgstr "Выравнивание полей базы данных по столбцам с подписями в верхней части полей." +msgstr "Выравнивает поля базы данных по столбцам с подписями над полями." #. xPC4F #: 01090300.xhp @@ -7259,7 +7259,7 @@ "par_id3155413\n" "help.text" msgid "Activates the help for the dialog." -msgstr "" +msgstr "Активирует справку для диалогового окна." #. 5uzLq #: 01150000.xhp diff -Nru libreoffice-7.4.6/translations/source/ru/helpcontent2/source/text/shared/guide.po libreoffice-7.4.7/translations/source/ru/helpcontent2/source/text/shared/guide.po --- libreoffice-7.4.6/translations/source/ru/helpcontent2/source/text/shared/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/helpcontent2/source/text/shared/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2023-02-15 15:33+0000\n" +"PO-Revision-Date: 2023-04-11 14:34+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -20264,7 +20264,7 @@ "par_id3152801\n" "help.text" msgid "$[officename] can open and save documents in the Microsoft Office file formats, including Microsoft Office Open XML formats." -msgstr "" +msgstr "$[officename] может открывать и сохранять документы в файлах форматов Microsoft Office, включая форматы Microsoft Office Open XML." #. zS7ku #: ms_user.xhp diff -Nru libreoffice-7.4.6/translations/source/ru/helpcontent2/source/text/swriter/01.po libreoffice-7.4.7/translations/source/ru/helpcontent2/source/text/swriter/01.po --- libreoffice-7.4.6/translations/source/ru/helpcontent2/source/text/swriter/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/helpcontent2/source/text/swriter/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2023-02-15 15:33+0000\n" +"PO-Revision-Date: 2023-04-11 14:34+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -104,7 +104,7 @@ "par_id3151187\n" "help.text" msgid "The Mail Merge dialog helps you in printing and saving form letters." -msgstr "" +msgstr "Диалоговое окно Рассылка писем помогает печатать и сохранять письма по форме." #. zidma #: 01150000.xhp @@ -194,7 +194,7 @@ "par_id3149034\n" "help.text" msgid "Specify the number of the first record to be printed." -msgstr "" +msgstr "Задаёт номер первой распечатываемой записи." #. AQKFV #: 01150000.xhp @@ -212,7 +212,7 @@ "par_id3145758\n" "help.text" msgid "Specify the number of the last record to be printed." -msgstr "" +msgstr "Задаёт номер последней распечатываемой записи." #. Zjw9y #: 01150000.xhp @@ -275,7 +275,7 @@ "hd_id3150109\n" "help.text" msgid "Save as single document" -msgstr "" +msgstr "Сохранить одним документом" #. zEFxt #: 01150000.xhp @@ -284,7 +284,7 @@ "par_id3101901\n" "help.text" msgid "Create one big document containing all data records." -msgstr "" +msgstr "Создать один большой документ, содержащий все записи данных." #. bWfGH #: 01150000.xhp @@ -302,7 +302,7 @@ "par_id5345011\n" "help.text" msgid "Create one document for every one data record." -msgstr "" +msgstr "Создать по одному документу для каждой записи данных." #. GeTUX #: 01150000.xhp @@ -338,7 +338,7 @@ "par_id3149829\n" "help.text" msgid "Uses the content of the selected database field as the file name for the form letter." -msgstr "" +msgstr "Использует содержимое выбранного поля базы данных в качестве имени файла письма." #. Eu4nU #: 01150000.xhp @@ -392,7 +392,7 @@ "par_id8992889\n" "help.text" msgid "Select the file format to store the resulting document." -msgstr "" +msgstr "Выберите формат файла для сохранения полученного документа." #. gjswW #: 01160100.xhp @@ -419,7 +419,7 @@ "par_id3155186\n" "help.text" msgid "Sends the outline of the active document to a new presentation document." -msgstr "" +msgstr "Отправляет структуру активного документа в новую презентацию." #. uE622 #: 01160200.xhp @@ -437,7 +437,7 @@ "bm_id481537444644102\n" "help.text" msgid "send;outline to clipboardoutline;outline to clipboardclipboard;outline to clipboard" -msgstr "" +msgstr "отправить;структура в буфер обменаструктура;структура в буфер обменабуфер обмена;структура в буфер обмена" #. CoiER #: 01160200.xhp @@ -482,7 +482,7 @@ "par_id3149286\n" "help.text" msgid "Copies the headings and a number of subsequent paragraphs in the active document to a new AutoAbstract text document. An AutoAbstract is useful for obtaining an overview of long documents. You can specify the number of outline levels as well as the number of paragraphs displayed therein. All levels and paragraphs under the respective settings are hidden." -msgstr "" +msgstr "Копирует заголовки и несколько последующих абзацев активного документа в новый документ автореферата. Автореферат полезен для получения представления о длинных документах. Можно задать количество уровней структуры, а также количество отображаемых в них абзацев. Все уровни и абзацы под соответствующими настройками скрыты." #. Hi8kE #: 01160300.xhp @@ -545,7 +545,7 @@ "par_id3145412\n" "help.text" msgid "Opens the current document as a $[officename] Impress presentation. The current document must contain at least one predefined heading paragraph style." -msgstr "" +msgstr "Открывает текущий документ как презентацию $[officename] Impress. Текущий документ должен содержать хотя бы один предопределённый стиль абзаца заголовка." #. RQwem #: 01160400.xhp @@ -608,7 +608,7 @@ "par_id3151175\n" "help.text" msgid "Saves the file as an HTML document, so that you can view it in a web browser. You can choose to create a separate page when a heading style that you specify is encountered in the document. If you choose this option, a separate page of links to all of the pages that are generated is also created." -msgstr "" +msgstr "Сохраняет файл как HTML-документ, чтобы его можно было просмотреть в браузере. Можно выбрать создание отдельной страницы, если в документе встречается указанный стиль заголовка. Если выбрать этот вариант, также будет создана отдельная страница со ссылками на все созданные страницы." #. egW9H #: 01160500.xhp @@ -644,7 +644,7 @@ "par_id3149688\n" "help.text" msgid "Select the heading paragraph style that you want to use to indicate a new HTML page. To use this option, apply one of the heading paragraph styles to the paragraphs where you want to start a new page in the document." -msgstr "" +msgstr "Выберите стиль абзаца заголовка, который требуется использовать для обозначения новой HTML-страницы. Чтобы использовать этот параметр, примените один из стилей абзацев заголовка к абзацам, в которых требуется начать новую страницу в документе." #. 6XFAp #: 01160500.xhp @@ -698,7 +698,7 @@ "par_id3154475\n" "help.text" msgid "To open the Navigator, choose View - Navigator (F5). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the CommandCtrl key and double-click on a grey area of the Navigator." -msgstr "" +msgstr "Чтобы открыть Навигатор, выберите Вид - Навигатор (F5). Чтобы переместить Навигатор, перетащите его строку заголовка. Чтобы закрепить Навигатор, перетащите его строку заголовка к левому, правому или нижнему краю рабочей области. Чтобы открепить навигатор, удерживайте нажатой клавишу CommandCtrl и дважды щёлкните серую область Навигатора." #. yfEGn #: 02110000.xhp @@ -716,7 +716,7 @@ "par_id3149106\n" "help.text" msgid "To jump to the next or previous item in a document, use the Navigate by box to select the item category, and then click the up or down arrows." -msgstr "" +msgstr "Чтобы перейти к следующему или предыдущему элементу в документе, используйте поле Навигация, чтобы выбрать категорию элемента, а затем щёлкните стрелку вверх или вниз." #. uDAjZ #: 02110000.xhp @@ -761,7 +761,7 @@ "par_id3148784\n" "help.text" msgid "Jumps to the previous item in the document. To specify the type of item to jump to, click the Navigate By list, and then click an item category - for example, \"Images\"." -msgstr "" +msgstr "Переход к предыдущему элементу в документе. Чтобы указать тип элемента для перехода, щёлкните список Навигация, а затем выберите категорию элемента, например «Изображения»." #. C89cM #: 02110000.xhp @@ -770,7 +770,7 @@ "par_id3154616\n" "help.text" msgid "Icon Previous Object" -msgstr "" +msgstr "Значок Предыдущий объект" #. z3HC5 #: 02110000.xhp @@ -797,7 +797,7 @@ "par_id3154028\n" "help.text" msgid "Jumps to the next item in the document. To specify the type of item to jump to, click the Navigate By list, and then click an item category - for example, \"Images\"." -msgstr "" +msgstr "Переход к следующему элементу в документе. Чтобы указать тип элемента для перехода, щёлкните список Навигация, а затем выберите категорию элемента, например «Изображения»." #. b29WS #: 02110000.xhp @@ -833,7 +833,7 @@ "par_id3155548\n" "help.text" msgid "Type the number of the page that you want to jump to, and then press Enter. Use the spin buttons to navigate." -msgstr "" +msgstr "Введите номер страницы, на которую нужно перейти, и нажмите клавишу Enter. Используйте кнопки счётчика для навигации." #. vXqRA #: 02110000.xhp @@ -851,7 +851,7 @@ "par_id3145596\n" "help.text" msgid "Switches between the display of all categories in the Navigator and the selected category." -msgstr "" +msgstr "Переключение между отображением всех категорий и выбранной категории в Навигаторе." #. jPkHa #: 02110000.xhp @@ -860,7 +860,7 @@ "par_id471603110016087\n" "help.text" msgid "Context menus use a selection of commands found on this help page. The commands in a context menu change, depending on which category or item is selected." -msgstr "" +msgstr "Контекстные меню используют набор команд, находящиеся на этой странице справки. Команды в контекстном меню меняются в зависимости от того, какая категория или элемент выбраны." #. XtZG9 #: 02110000.xhp @@ -869,7 +869,7 @@ "par_id3154133\n" "help.text" msgid "Icon Switch Content Navigation View" -msgstr "" +msgstr "Значок Переключить содержимое" #. kHFkW #: 02110000.xhp @@ -878,7 +878,7 @@ "par_id3156067\n" "help.text" msgid "Switch Content Navigation View" -msgstr "" +msgstr "Переключить содержимое" #. VkGBD #: 02110000.xhp @@ -959,7 +959,7 @@ "par_id721603287623090\n" "help.text" msgid "Tables Icon" -msgstr "" +msgstr "Значок Таблицы" #. jAnQW #: 02110000.xhp @@ -1013,7 +1013,7 @@ "par_id801603532799021\n" "help.text" msgid "Images Icon" -msgstr "" +msgstr "Значок Изображения" #. 4Zuo5 #: 02110000.xhp @@ -1085,7 +1085,7 @@ "par_id741603570764762\n" "help.text" msgid "Sections Icon" -msgstr "" +msgstr "Значок Разделы" #. SLmBP #: 02110000.xhp @@ -1121,7 +1121,7 @@ "par_id461603570542532\n" "help.text" msgid "Hyperlinks Icon" -msgstr "" +msgstr "Значок Гиперссылки" #. yve5A #: 02110000.xhp @@ -1229,7 +1229,7 @@ "par_id711603572473016\n" "help.text" msgid "Show All, Hide All, Delete All" -msgstr "" +msgstr "Показать все, Скрыть все, Удалить все" #. WMdde #: 02110000.xhp @@ -1256,7 +1256,7 @@ "par_id951603571856944\n" "help.text" msgid "Drawing objects Icon" -msgstr "" +msgstr "Значок Рисунки" #. apAFN #: 02110000.xhp @@ -1283,7 +1283,7 @@ "par_id291603347382271\n" "help.text" msgid "Go to, Delete, Rename" -msgstr "" +msgstr "Перейти, Удалить, Переименовать" #. vGwzZ #: 02110000.xhp @@ -1337,7 +1337,7 @@ "par_id3150689\n" "help.text" msgid "Icon Toggle Master View" -msgstr "" +msgstr "Значок Составной документ" #. 9STbB #: 02110000.xhp @@ -1364,7 +1364,7 @@ "par_id3159242\n" "help.text" msgid "Moves the cursor to the header, or from the header to the document text area." -msgstr "" +msgstr "Перемещает курсор в верхний колонтитул или из верхнего колонтитула в текстовую область документа." #. Vq7Aq #: 02110000.xhp @@ -1373,7 +1373,7 @@ "par_id3153900\n" "help.text" msgid "Icon Header" -msgstr "" +msgstr "Значок Верхний колонтитул" #. SPDHG #: 02110000.xhp @@ -1400,7 +1400,7 @@ "par_id3147137\n" "help.text" msgid "Moves the cursor to the footer, or from the footer to the document text area." -msgstr "" +msgstr "Перемещает курсор в нижний колонтитул или из нижнего колонтитула в текстовую область документа." #. ZCu8N #: 02110000.xhp @@ -1409,7 +1409,7 @@ "par_id3150217\n" "help.text" msgid "Icon Footer" -msgstr "" +msgstr "Значок Нижний колонтитул" #. DxkG4 #: 02110000.xhp @@ -1436,7 +1436,7 @@ "par_id3150314\n" "help.text" msgid "Jumps between the footnote text and the footnote anchor." -msgstr "" +msgstr "Переход между текстом сноски и привязкой сноски." #. GVbtG #: 02110000.xhp @@ -1445,7 +1445,7 @@ "par_id3153100\n" "help.text" msgid "Icon Anchor <-> Text" -msgstr "" +msgstr "Значок Привязка<->Текст" #. DnZEQ #: 02110000.xhp @@ -1463,7 +1463,7 @@ "hd_id3155381\n" "help.text" msgid "Set Reminder" -msgstr "Поставить временную закладку" +msgstr "Поставить напоминание" #. Ahyyy #: 02110000.xhp @@ -1481,7 +1481,7 @@ "par_id3154608\n" "help.text" msgid "Icon Set Reminder" -msgstr "" +msgstr "Значок Поставить напоминание" #. 5ArS8 #: 02110000.xhp @@ -1490,7 +1490,7 @@ "par_id3153054\n" "help.text" msgid "Set Reminder" -msgstr "Поставить временную закладку" +msgstr "Поставить напоминание" #. GpFmn #: 02110000.xhp @@ -1499,7 +1499,7 @@ "par_id3495381\n" "help.text" msgid "Reminders are navigated in the order in which they are set. Reminders are not saved when a document is closed." -msgstr "" +msgstr "Переход по напоминаниям осуществляется в том порядке, в котором они были поставлены. Напоминания не сохраняются при закрытии документа." #. sDwQu #: 02110000.xhp @@ -1571,7 +1571,7 @@ "par_id3155325\n" "help.text" msgid "Shows or hides the Navigator list." -msgstr "" +msgstr "Показывает или скрывает список Навигатора." #. ys6tB #: 02110000.xhp @@ -1580,7 +1580,7 @@ "par_id3154949\n" "help.text" msgid "Icon List box on/off" -msgstr "" +msgstr "Значок Окно списка вкл./выкл." #. 8uyJF #: 02110000.xhp @@ -1589,7 +1589,7 @@ "par_id3146874\n" "help.text" msgid "List box on/off" -msgstr "Вкл./выкл. окно списка" +msgstr "Окно списка вкл./выкл." #. mBgUw #: 02110000.xhp @@ -1607,7 +1607,7 @@ "par_id3151354\n" "help.text" msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down CommandCtrl, and then click this icon." -msgstr "" +msgstr "Увеличивает на единицу уровень структуры выбранного заголовка и расположенных под ним. Чтобы увеличить уровень структуры только выбранного заголовка, удерживая клавишу CommandCtrl, щёлкните этот значок." #. vnohk #: 02110000.xhp @@ -1643,7 +1643,7 @@ "par_id3150707\n" "help.text" msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down CommandCtrl, and then click this icon." -msgstr "" +msgstr "Уменьшает на единицу уровень структуры выбранного заголовка и расположенных под ним. Чтобы уменьшить уровень структуры только выбранного заголовка, удерживая клавишу CommandCtrl, щёлкните этот значок." #. 6Bn49 #: 02110000.xhp @@ -1679,7 +1679,7 @@ "par_id3145587\n" "help.text" msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down CommandCtrl, and then click this icon." -msgstr "" +msgstr "Перемещает выбранный заголовок и текст под ним на одну позицию вверх в Навигаторе и в документе. Чтобы переместить только выбранный заголовок без связанного с ним текста, удерживая клавишу CommandCtrl, щёлкните этот значок." #. 4ZbrU #: 02110000.xhp @@ -1715,7 +1715,7 @@ "par_id3154440\n" "help.text" msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down CommandCtrl, and then click this icon." -msgstr "" +msgstr "Перемещает выбранный заголовок и текст под ним на одну позицию вниз в Навигаторе и в документе. Чтобы переместить только выбранный заголовок без связанного с ним текста, удерживая клавишу CommandCtrl, щёлкните этот значок." #. TFuFH #: 02110000.xhp @@ -1760,7 +1760,7 @@ "par_id3155828\n" "help.text" msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use." -msgstr "" +msgstr "Задаёт параметры вставки элементов перетаскиванием из Навигатора в документ, например, в виде гиперссылки. Щёлкните этот значок и выберите нужный вариант." #. Lzao9 #: 02110000.xhp @@ -1769,7 +1769,7 @@ "par_id3155120\n" "help.text" msgid "Icon Drag mode" -msgstr "" +msgstr "Значок Режим перетаскивания" #. zDXiV #: 02110000.xhp @@ -1841,7 +1841,7 @@ "hd_id3147340\n" "help.text" msgid "Open Documents" -msgstr "" +msgstr "Открытые документы" #. rZmAa #: 02110000.xhp @@ -1886,7 +1886,7 @@ "par_id161603966072360\n" "help.text" msgid "In Default and Focus mode, Navigator will automatically select the nearest heading before the current cursor position in the document." -msgstr "" +msgstr "В режимах По умолчанию и Фокус Навигатор автоматически выбирает ближайший заголовок перед текущей позицией курсора в документе." #. 85sNR #: 02110000.xhp @@ -1895,7 +1895,7 @@ "par_id571603887044019\n" "help.text" msgid "In Default mode, the display of outline entries in Navigator is never changed, only an outline entry is selected." -msgstr "" +msgstr "В режиме По умолчанию отображение элементов структуры в Навигаторе никогда не изменяется, выбирается только элемент структуры." #. GoL6Y #: 02110000.xhp @@ -1904,7 +1904,7 @@ "par_id201603965501777\n" "help.text" msgid "In Focus mode, Navigator shows only the headings for the selected outline level, relative to the next higher outline level. For example, if a level 2 heading is selected, then all level 2 headings under the same level 1 heading are shown, while any level 3-10 headings (under the same level 1 heading) are collapsed. Other headings, not under the same level 1 heading, are also collapsed." -msgstr "" +msgstr "В режиме Фокус Навигатор отображает только заголовки для выбранного уровня структуры относительно следующего более высокого уровня структуры. Например, если выбран заголовок уровня 2, то отображаются все заголовки уровня 2 под одним и тем же заголовком уровня 1, а любые заголовки уровней 3–10 (под одним и тем же заголовком уровня 1) сворачиваются. Другие заголовки, не относящиеся к тому же заголовку уровня 1, также сворачиваются." #. aehES #: 02110000.xhp @@ -1913,7 +1913,7 @@ "par_id81603965538425\n" "help.text" msgid "Choose Off to disable Outline Tracking." -msgstr "" +msgstr "Выберите Выключено, чтобы отключить «Отслеживание структуры»." #. zV9BS #: 02110000.xhp @@ -1994,7 +1994,7 @@ "par_id3148330\n" "help.text" msgid "Reminders are navigated in the order in which they are set." -msgstr "" +msgstr "Переход по напоминаниям осуществляется в том порядке, в котором они были поставлены." #. BiC9u #: 02110100.xhp @@ -2021,7 +2021,7 @@ "par_id3150045\n" "help.text" msgid "Open the Navigation toolbar by clicking on its top left icon located on the top of the Navigator display area. You can break the toolbar away from its place by dragging and arranging it on the screen." -msgstr "" +msgstr "Откройте панель инструментов Навигация, щёлкнув её левый верхний значок, расположенный в верхней части области отображения Навигатора. Можно оторвать панель инструментов от её места, перетащив и расположив её на экране." #. sg88n #: 02110100.xhp @@ -2327,7 +2327,7 @@ "par_id3149177\n" "help.text" msgid "To display the list in reverse order, press CommandCtrl+Shift+Tab." -msgstr "" +msgstr "Чтобы отобразить список в обратном порядке, нажмите CommandCtrl+Shift+Tab." #. 23v8E #: 02120000.xhp @@ -2588,7 +2588,7 @@ "par_id3148937\n" "help.text" msgid "Opens a dialog where you can select the 97/2000/XP Word document or template, containing the AutoText entries that you want to import." -msgstr "" +msgstr "Открывает диалоговое окно, где возможно выбрать документ или шаблон Word 97/2000/XP, содержащий записи Автотекста, которые требуется импортировать." #. twDAW #: 02120000.xhp @@ -2903,7 +2903,7 @@ "par_id3145253\n" "help.text" msgid "Edits the selected bibliography entry." -msgstr "" +msgstr "Редактирует выбранную библиографическую ссылку." #. C7di6 #: 02130000.xhp @@ -2921,7 +2921,7 @@ "hd_id3155961\n" "help.text" msgid "Short name" -msgstr "Сокращение" +msgstr "Сокращённо" #. RGAta #: 02130000.xhp @@ -3074,7 +3074,7 @@ "par_id3153668\n" "help.text" msgid "To change the view between field names and field contents in your document, choose View - Field Names." -msgstr "" +msgstr "Чтобы изменить представление между именами полей и их содержимым в документе, выберите Вид - Поля." #. fabLD #: 02140000.xhp @@ -3425,7 +3425,7 @@ "par_id3155341\n" "help.text" msgid "Icon Previous Field" -msgstr "" +msgstr "Значок Предыдущее поле" #. 8DYxg #: 02140000.xhp @@ -3461,7 +3461,7 @@ "par_id3145117\n" "help.text" msgid "Icon Next Field" -msgstr "" +msgstr "Значок Следующее поле" #. 8ZUxu #: 02140000.xhp @@ -3479,7 +3479,7 @@ "tit\n" "help.text" msgid "Edit Footnote or Endnote" -msgstr "" +msgstr "Правка сноски/концевой сноски" #. B7FCm #: 02150000.xhp @@ -3515,7 +3515,7 @@ "par_id3145776\n" "help.text" msgid "To quickly jump to the footnote or endnote text, click the anchor for note in the document. You can also position the cursor in front of or behind the marker, and then press CommandCtrl+Shift+PgDn. To jump back to the anchor for the note, press PgUp." -msgstr "" +msgstr "Чтобы быстро перейти к тексту сноски или концевой сноски, щёлкните привязку для сноски в документе. Можно также поместить курсор перед маркером или за ним, а затем нажать CommandCtrl+Shift+PgDn. Чтобы вернуться к привязке для сноски, нажмите PgUp." #. TN7ER #: 02150000.xhp @@ -3569,7 +3569,7 @@ "par_id3149849\n" "help.text" msgid "To change the format of a footnote or endnote anchor or text, select it, and then choose Format - Character. You can press Command+TF11 to open the Styles window and modify the footnote or endnote paragraph style." -msgstr "" +msgstr "Чтобы изменить формат привязки или текста сноски или концевой сноски, выделите его, а затем выберите Формат - Символы. Можно нажать Command+TF11, чтобы открыть окно Стили и изменить стиль абзаца сноски или концевой сноски." #. fb5Fh #: 02150000.xhp @@ -3650,7 +3650,7 @@ "par_id3150023\n" "help.text" msgid "Icon Previous footnote" -msgstr "" +msgstr "Значок Предыдущая сноска" #. AFFAN #: 02150000.xhp @@ -3686,7 +3686,7 @@ "par_id3154029\n" "help.text" msgid "Icon Next footnote" -msgstr "" +msgstr "Значок Следующая сноска" #. yKfqA #: 02150000.xhp @@ -4145,7 +4145,7 @@ "par_id3147514\n" "help.text" msgid "Contains a submenu for showing or hiding the horizontal and vertical rulers." -msgstr "" +msgstr "Содержит подменю для отображения или скрытия горизонтальных и вертикальных линеек." #. knLsq #: 03050000.xhp @@ -4163,7 +4163,7 @@ "par_id3147517\n" "help.text" msgid "Show or hide the horizontal ruler and if activate, the vertical ruler. The horizontal ruler can be used to adjust page horizontal margins, tab stops, indents, borders, table cells, and to arrange objects on the page." -msgstr "" +msgstr "Показать или скрыть горизонтальную и, если активирована, вертикальную линейку. Горизонтальную линейку можно использовать для настройки горизонтальных полей страниц, шагов табуляции, отступов, обрамления, ячеек таблицы и для расположения объектов на странице." #. kkWvk #: 03050000.xhp @@ -4181,7 +4181,7 @@ "par_id110120150347249577\n" "help.text" msgid "Show or hide the vertical ruler. The vertical ruler can be used to adjust page vertical margins, table cells, and object heights on the page." -msgstr "" +msgstr "Показать или скрыть вертикальную линейку. Вертикальную линейку можно использовать для настройки вертикальных полей страниц, ячеек таблицы и высоты объектов на странице." #. puGjH #: 03070000.xhp @@ -4235,7 +4235,7 @@ "par_id3147513\n" "help.text" msgid "Shows or hides shadings around fields in your document like non-breaking spaces, soft hyphens, indexes, and footnotes." -msgstr "" +msgstr "Отображает или скрывает затенение полей документа, например неразрывные пробелы, мягкие переносы, указатели и сноски." #. cSEP8 #: 03080000.xhp @@ -4253,7 +4253,7 @@ "tit\n" "help.text" msgid "Field Names" -msgstr "Имя поля" +msgstr "Имена полей" #. nMGnN #: 03090000.xhp @@ -4271,7 +4271,7 @@ "par_id3147171\n" "help.text" msgid "Switches between showing fields as field names or field values. When enabled the field names are displayed, and when disabled the field values displayed. Some field contents cannot be displayed." -msgstr "" +msgstr "Переключение между отображением полей в виде имён или значений. Если этот параметр включён, отображаются имена полей, а если он отключен, отображаются значения полей. Содержимое некоторых полей не может быть отображено." #. t6YzS #: 03090000.xhp @@ -4370,7 +4370,7 @@ "par_id3154646\n" "help.text" msgid "Displays the document as it would be viewed in a Web browser. This is useful when you create HTML documents." -msgstr "" +msgstr "Отображает документ так, как он будет выглядеть в браузере. Это полезно при создании HTML-документов." #. Fz9EL #: 03130000.xhp @@ -4397,7 +4397,7 @@ "par_id3145249\n" "help.text" msgid "Displays how the document will look when you print it." -msgstr "" +msgstr "Отображает документ так, как он будет выглядеть при печати." #. XffAc #: 03140000.xhp @@ -4487,7 +4487,7 @@ "par_id3147176\n" "help.text" msgid "Inserts a manual line break, column break or a page break at the current cursor position. " -msgstr "Производится вставка переноса строки, разрыва колонки или страницы в текущую позицию курсора." +msgstr "Производится вставка разрыва строки, колонки или страницы в текущую позицию курсора." #. R6ZwA #: 04010000.xhp @@ -4514,7 +4514,7 @@ "hd_id3154097\n" "help.text" msgid "Line Break" -msgstr "Перенос строки" +msgstr "Разрыв строки" #. TsXRf #: 04010000.xhp @@ -4523,7 +4523,7 @@ "par_id3149805\n" "help.text" msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph." -msgstr "" +msgstr "Завершает текущую строку, текст справа от курсора переносит на следующую строку без создания нового абзаца." #. dG28G #: 04010000.xhp @@ -4532,7 +4532,7 @@ "par_id3149806\n" "help.text" msgid "The restart location specifies where the next line will start after a line break." -msgstr "" +msgstr "Место перезапуска задаёт, где будет начинаться следующая строка после разрыва строки." #. dAvpm #: 04010000.xhp @@ -4541,7 +4541,7 @@ "par_id781648827677698\n" "help.text" msgid "Possible values are below." -msgstr "" +msgstr "Ниже приведены возможные значения." #. Tvnkg #: 04010000.xhp @@ -4604,7 +4604,7 @@ "par_id71648813862665\n" "help.text" msgid "Line break none" -msgstr "" +msgstr "Разрыв строки Нет" #. C3oyH #: 04010000.xhp @@ -4613,7 +4613,7 @@ "par_id811648813862667\n" "help.text" msgid "Continue right after the current line." -msgstr "" +msgstr "Продолжить сразу после текущей строки." #. xRLYA #: 04010000.xhp @@ -4622,7 +4622,7 @@ "par_id346648819712404\n" "help.text" msgid "Example of line break None (default)" -msgstr "" +msgstr "Пример разрыва строки Нет (по умолчанию)" #. gmKv3 #: 04010000.xhp @@ -4640,7 +4640,7 @@ "par_id401648813999364\n" "help.text" msgid "Line break full" -msgstr "" +msgstr "Разрыв строки Полная" #. yP6GD #: 04010000.xhp @@ -4649,7 +4649,7 @@ "par_id871648813999365\n" "help.text" msgid "Continue at the next full line, that is below all of the anchored objects intersecting with the current line." -msgstr "" +msgstr "Продолжить на следующей полной строке, которая находится ниже всех привязанных объектов, пересекающихся с текущей строкой." #. GjEmy #: 04010000.xhp @@ -4658,7 +4658,7 @@ "par_id341641819712404\n" "help.text" msgid "Example of line break Next full line" -msgstr "" +msgstr "Пример разрыва строки Следующая полная строка" #. M4cmF #: 04010000.xhp @@ -4667,7 +4667,7 @@ "par_id161648814025099\n" "help.text" msgid "Left" -msgstr "" +msgstr "Слева" #. pD6fu #: 04010000.xhp @@ -4676,7 +4676,7 @@ "par_id731748814025100\n" "help.text" msgid "Line break left" -msgstr "" +msgstr "Разрыв строки Слева" #. jrVKp #: 04010000.xhp @@ -4685,7 +4685,7 @@ "par_id791648814025101\n" "help.text" msgid "Continue at the next line which is unblocked on the left hand side." -msgstr "" +msgstr "Продолжить на следующей строке, которая разблокирована с левой стороны." #. FGsCh #: 04010000.xhp @@ -4694,7 +4694,7 @@ "par_id351648819712404\n" "help.text" msgid "Example of Line break left" -msgstr "" +msgstr "Пример разрыва строки Слева" #. hRhpk #: 04010000.xhp @@ -4703,7 +4703,7 @@ "par_id271648814369416\n" "help.text" msgid "Right" -msgstr "" +msgstr "Справа" #. 2BFuP #: 04010000.xhp @@ -4712,7 +4712,7 @@ "par_id801648814369418\n" "help.text" msgid "Line break right" -msgstr "" +msgstr "Разрыв строки Справа" #. RE7s8 #: 04010000.xhp @@ -4721,7 +4721,7 @@ "par_id671648814369419\n" "help.text" msgid "Continue at the next line which is unblocked on the right hand side." -msgstr "" +msgstr "Продолжить на следующей строке, которая разблокирована с правой стороны." #. Kd7EQ #: 04010000.xhp @@ -4730,7 +4730,7 @@ "par_id341648819715404\n" "help.text" msgid "Example of Line break right" -msgstr "" +msgstr "Пример разрыва строки Справа" #. HjTa9 #: 04010000.xhp @@ -4739,7 +4739,7 @@ "par_id961648814424612\n" "help.text" msgid "The default value for the line break is none." -msgstr "" +msgstr "Значение по умолчанию для разрыва строки — нет." #. L77Xt #: 04010000.xhp @@ -4748,7 +4748,7 @@ "par_id3149685\n" "help.text" msgid "You can also insert a default line break by pressing Shift+Enter." -msgstr "" +msgstr "Можно также вставить разрыв строки по умолчанию, нажав Shift+Enter." #. CZccf #: 04010000.xhp @@ -4775,7 +4775,7 @@ "par_id61601653541581\n" "help.text" msgid "Insert a column break by pressing CommandCtrl+Shift+Enter" -msgstr "" +msgstr "Вставка разрыва колонки по нажатию CommandCtrl+Shift+Enter" #. P7DHK #: 04010000.xhp @@ -4793,7 +4793,7 @@ "par_id3149102\n" "help.text" msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page." -msgstr "" +msgstr "Вставляет разрыв страницы и перемещает находящийся справа от курсора текст в начало следующей страницы. Вставленный разрыв страницы обозначается непечатаемой линией в верхней части новой страницы." #. bAwS6 #: 04010000.xhp @@ -4802,7 +4802,7 @@ "par_id3145758\n" "help.text" msgid "You can also insert a page break by pressing CommandCtrl+Enter. However, if you want to assign the following page a different Page Style, you must use the menu command to insert the manual page break." -msgstr "" +msgstr "Можно также вставить разрыв страницы, нажав CommandCtrl+Enter. Однако если требуется назначить следующей странице другой стиль, необходимо использовать команду меню, чтобы вставить разрыв страницы." #. cDBHn #: 04010000.xhp @@ -4820,7 +4820,7 @@ "par_id3156275\n" "help.text" msgid "Select the page style for the page that follows the manual page break." -msgstr "" +msgstr "Выбор стиля страницы, следующей за разрывом страницы." #. VGFcT #: 04010000.xhp @@ -4829,7 +4829,7 @@ "par_id71633464502255\n" "help.text" msgid "To switch between landscape and portrait orientation, choose the Default Page Style to apply portrait orientation or the Landscape style to apply landscape orientation." -msgstr "" +msgstr "Для переключения между альбомной и книжной ориентацией выберите Базовый стиль, чтобы применить книжную ориентацию, или Альбомный стиль, чтобы применить альбомную ориентацию." #. iEpne #: 04010000.xhp @@ -4847,7 +4847,7 @@ "par_id3155917\n" "help.text" msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break." -msgstr "" +msgstr "Назначает указанный пользователем номер странице, следующей за разрывом. Этот параметр доступен, только если следующей за разрывом странице назначается другой стиль." #. EZk6A #: 04010000.xhp @@ -4865,7 +4865,7 @@ "par_id3150700\n" "help.text" msgid "Enter the new page number for the page that follows the manual page break." -msgstr "" +msgstr "Введите новый номер страницы, следующей за разрывом страницы." #. SbhQr #: 04010000.xhp @@ -4901,7 +4901,7 @@ "par_id3154480\n" "help.text" msgid "Inserts a text section at the cursor position in the document. You can also select a block of text and then choose this command to create a section. You can use sections to insert blocks of text from other documents, to apply custom column layouts, or to protect or to hide blocks of text if a condition is met." -msgstr "" +msgstr "Вставляет текстовый раздел в положение курсора в документе. Можно также выделить блок текста, а затем выбрать эту команду, чтобы создать раздел. Разделы можно использовать для вставки блоков текста из других документов, для применения пользовательской разметки колонок, а также для защиты или скрытия блоков текста при выполнении условия." #. CwDUG #: 04020000.xhp @@ -4982,7 +4982,7 @@ "par_id3154644\n" "help.text" msgid "Sets the properties of the section." -msgstr "" +msgstr "Задаёт свойства раздела." #. PHNU9 #: 04020100.xhp @@ -5000,7 +5000,7 @@ "par_id3145420\n" "help.text" msgid "Type a name for the new section. By default, $[officename] automatically assigns the name \"Section X\" to new sections, where X is a consecutive number." -msgstr "" +msgstr "Введите имя нового раздела. По умолчанию $[officename] автоматически присваивает новым разделам имя «Раздел X», где X — порядковый номер." #. hCR5y #: 04020100.xhp @@ -5027,7 +5027,7 @@ "par_id3154472\n" "help.text" msgid "Inserts the contents of another document or section from another document in the current section." -msgstr "" +msgstr "Вставляет содержимое другого документа или раздела из другого документа в текущий раздел." #. tS2jq #: 04020100.xhp @@ -5045,7 +5045,7 @@ "par_id3151310\n" "help.text" msgid "Creates a DDE link. Select this check box, and then enter the DDE command that you want to use. The DDE option is only available if the Link check box is selected." -msgstr "" +msgstr "Создаёт связь DDE . Установите флажок и введите команду DDE для использования. Параметр DDE доступен, только если установлен флажок Связь." #. BoeE2 #: 04020100.xhp @@ -5072,7 +5072,7 @@ "hd_id3153640\n" "help.text" msgid "File name / DDE command" -msgstr "" +msgstr "Имя файла / Команда DDE" #. HFttL #: 04020100.xhp @@ -5081,7 +5081,7 @@ "par_id3145754\n" "help.text" msgid "Enter the path and the filename for the file that you want to insert, or click the Browse button to locate the file. If the DDE check box is selected, enter the DDE command that you want to use." -msgstr "" +msgstr "Введите путь и имя файла, который хотите вставить, или нажмите кнопку Обзор, чтобы найти файл. Если установлен флажокDDE , введите команду DDE для использования." #. SBRTF #: 04020100.xhp @@ -5099,7 +5099,7 @@ "par_id3156274\n" "help.text" msgid "Locate the file that you want to insert as a link, and then click Insert." -msgstr "" +msgstr "Найдите файл, который хотите вставить в виде связи, затем нажмите Вставить." #. EGZDJ #: 04020100.xhp @@ -5117,7 +5117,7 @@ "par_id3155910\n" "help.text" msgid "Select the section in the file that you want to insert as a link." -msgstr "" +msgstr "Выберите раздел файла для вставки в виде связи." #. WuJDa #: 04020100.xhp @@ -5153,7 +5153,7 @@ "par_id3150110\n" "help.text" msgid "Prevents the selected section from being edited." -msgstr "" +msgstr "Запрещает редактирование выбранного раздела." #. mG7PE #: 04020100.xhp @@ -5171,7 +5171,7 @@ "par_id3149555\n" "help.text" msgid "Protects the selected section with a password. The password must have a minimum of 5 characters." -msgstr "" +msgstr "Защищает выбранный раздел паролем. Пароль должен содержать не менее 5 символов." #. uciGn #: 04020100.xhp @@ -5189,7 +5189,7 @@ "par_id3147742\n" "help.text" msgid "Opens a dialog where you can change the current password." -msgstr "" +msgstr "Открывает диалоговое окно, где возможно изменить текущий пароль." #. g7Rcr #: 04020100.xhp @@ -5216,7 +5216,7 @@ "par_id3148849\n" "help.text" msgid "Hides and prevents the selected section from being printed. The components of a hidden sections appear gray in the Navigator. When you rest your mouse pointer over a hidden component in the Navigator, the Help tip \"hidden\" is displayed." -msgstr "" +msgstr "Скрывает и запрещает печать выбранного раздела. Компоненты скрытых разделов отображаются в Навигаторе серым цветом. При наведении указателя мыши на скрытый компонент в Навигаторе отображается подсказка «скрытый»." #. UaiNQ #: 04020100.xhp @@ -5315,7 +5315,7 @@ "tit\n" "help.text" msgid "Indents (Sections)" -msgstr "" +msgstr "Отступы (Разделы)" #. ZHUTB #: 04020200.xhp @@ -5405,7 +5405,7 @@ "par_id3147167\n" "help.text" msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position. You can choose between automatic numbering or a custom symbol." -msgstr "" +msgstr "Вставляет сноску или концевую сноску в документ. Привязка сноски вставляется в текущее положение курсора. Можно выбрать между автоматической нумерацией или пользовательским символом." #. ogEtt #: 04030000.xhp @@ -5414,7 +5414,7 @@ "par_id3154645\n" "help.text" msgid "The following applies to both footnotes and endnotes." -msgstr "" +msgstr "Следующее относится как к сноскам, так и к концевым сноскам." #. nMBWW #: 04030000.xhp @@ -5423,7 +5423,7 @@ "par_id3151175\n" "help.text" msgid "Footnotes are inserted at the end of a page, and endnotes are inserted at the end of a document." -msgstr "" +msgstr "Сноски вставляются в конце страницы, а концевые сноски вставляются в конце документа." #. 6sxBh #: 04030000.xhp @@ -5477,7 +5477,7 @@ "par_id3155901\n" "help.text" msgid "Choose this option to define a character or symbol for the current footnote. This can be either a letter, number or special character." -msgstr "" +msgstr "Выберите этот параметр, чтобы задать символ для текущей сноски. Это может быть буква, цифра или специальный символ." #. nNcCJ #: 04030000.xhp @@ -5585,7 +5585,7 @@ "par_id3149806\n" "help.text" msgid "Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time. In an HTML document, bookmarks are converted to anchors that you can jump to from a hyperlink." -msgstr "" +msgstr "Вставляет закладку в позицию курсора. Потом возможно использовать Навигатор для быстрого перехода к отмеченному месту. В HTML-документе закладки преобразуются в привязки, к которым можно перейти по гиперссылке." #. DA74C #: 04040000.xhp @@ -5603,7 +5603,7 @@ "par_id3151308\n" "help.text" msgid "You can also right-click the Page Number field at the left end of the Status Bar at the bottom of the document window, and then choose the bookmark that you want to jump to." -msgstr "" +msgstr "Возможно также щёлкнуть правой кнопкой мыши поле Номер страницы в левой части строки состояния в нижней части окна документа, а затем выбрать закладку, к которой нужно перейти." #. KdpJp #: 04040000.xhp @@ -5621,7 +5621,7 @@ "par_id3155178\n" "help.text" msgid "Type the name of the bookmark that you want to create. Then, click Insert." -msgstr "" +msgstr "Задайте имя создаваемой закладки. Затем нажмите Вставить." #. s7rfA #: 04040000.xhp @@ -5648,7 +5648,7 @@ "par_id171581934040077\n" "help.text" msgid "Lists all the bookmarks in the current document." -msgstr "" +msgstr "Список всех закладок в текущем документе." #. ZyeAw #: 04040000.xhp @@ -5666,7 +5666,7 @@ "par_id971581935166865\n" "help.text" msgid "To rename a bookmark, select the bookmark, press Rename, then type the new name in the dialog box." -msgstr "" +msgstr "Чтобы переименовать закладку, выберите её, нажмите Переименовать, затем введите новое имя в диалоговом окне." #. aLuDE #: 04040000.xhp @@ -5684,7 +5684,7 @@ "par_id3151251\n" "help.text" msgid "To delete a bookmark, select the bookmark and click the Delete button. No confirmation dialog will follow." -msgstr "" +msgstr "Для удаления закладки, выберите её и нажмите кнопку Удалить. Подтверждающего диалога не последует." #. zfGWi #: 04040000.xhp @@ -5693,7 +5693,7 @@ "par_id231581943669611\n" "help.text" msgid "If bookmarks are protected, then they cannot be deleted or renamed." -msgstr "" +msgstr "Если закладки защищены, то их нельзя удалить или переименовать." #. caM6E #: 04040000.xhp @@ -5711,7 +5711,7 @@ "par_id511581935446495\n" "help.text" msgid "To move the cursor in the document to a bookmark, select the bookmark, then press Go to." -msgstr "" +msgstr "Чтобы переместить курсор на закладку в документе, выберите закладку, затем нажмите Перейти." #. ifBCD #: 04060000.xhp @@ -5738,7 +5738,7 @@ "par_id3149288\n" "help.text" msgid "Adds a numbered caption to a selected image, table, chart, frame, or shape. You can also access this command by right-clicking the item that you want to add the caption to. " -msgstr "" +msgstr "Добавляет нумерованное название для выбранного изображения, таблицы, диаграммы, врезки или фигуры. Доступ к этой команде также возможно получить, щёлкнув правой кнопкой мыши элемент, к которому требуется добавить название. " #. fUKh2 #: 04060000.xhp @@ -6179,7 +6179,7 @@ "par_id3145415\n" "help.text" msgid "Enter the delivery address. You can also click in this box, and select a database, a table, and field, and then click the arrow button to insert the field in the address. If you want, you can apply formatting, such as bold and underline, to the address text." -msgstr "" +msgstr "Введите адрес доставки. Возможно также щёлкнуть в этом поле и выбрать базу данных, таблицу и поле, а затем нажать кнопку со стрелкой, чтобы вставить поле в адрес. При желании к тексту адреса можно применить форматирование, например жирный и подчёркивание." #. 2ZUt3 #: 04070100.xhp @@ -6197,7 +6197,7 @@ "par_id3153527\n" "help.text" msgid "Includes a return address on the envelope. Select the Sender check box, and then enter the return address. $[officename] automatically inserts your user data in the Sender box, but you can also enter the data that you want." -msgstr "" +msgstr "Включает обратный адрес на конверте. Установите флажок Отправитель и введите обратный адрес. $[officename] автоматически вставляет пользовательские данные в поле Отправитель, но можно также ввести нужные данные." #. gEC9H #: 04070100.xhp @@ -6881,7 +6881,7 @@ "par_id3149805\n" "help.text" msgid "Inserts a field at the current cursor position. The dialog lists all available fields." -msgstr "" +msgstr "Вставляет поле в текущую позицию курсора. В диалоговом окне перечислены все доступные поля." #. cFGme #: 04090000.xhp @@ -6935,7 +6935,7 @@ "par_id3147167\n" "help.text" msgid "Fields are used to insert information about the current document, for example, file name, template, statistics, user data, date, and time." -msgstr "" +msgstr "Поля используются для вставки информации о текущем документе, например, имя файла, шаблон, статистика, пользовательские данные, дата и время." #. 3tZaF #: 04090001.xhp @@ -6962,7 +6962,7 @@ "par_id3153672\n" "help.text" msgid "Lists the available field types. " -msgstr "" +msgstr "Перечисляет доступные типы полей. " #. ZcgNs #: 04090001.xhp @@ -6980,7 +6980,7 @@ "par_id3150678\n" "help.text" msgid "Lists what information can be inserted for a selected field type." -msgstr "" +msgstr "Перечисляет, какую информацию можно вставить для выбранного типа поля." #. w3CsM #: 04090001.xhp @@ -6989,7 +6989,7 @@ "par_id71603998444482\n" "help.text" msgid "Available field Types and Select lists" -msgstr "" +msgstr "Списки доступных типов полей и выбора" #. XLkyh #: 04090001.xhp @@ -7007,7 +7007,7 @@ "par_id3143272\n" "help.text" msgid "Select list" -msgstr "" +msgstr "Список выбора" #. Go6eY #: 04090001.xhp @@ -14900,7 +14900,7 @@ "par_id3154638\n" "help.text" msgid "$[officename] can automatically format numbers that you enter in a table cell, for example, dates and times. To activate this feature, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table and click the Number recognition check box in the Input in tables area." -msgstr "" +msgstr "$[officename] может автоматически форматировать числа, которые вводятся в ячейку таблицы, например, дату и время. Чтобы активировать эту функцию, выберите %PRODUCTNAME - ПараметрыСервис - Параметры - %PRODUCTNAME Writer - Таблица и установите флажок Распознавание чисел в области Ввод в таблицы." #. ZUkKE #: 04150000.xhp diff -Nru libreoffice-7.4.6/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: UI\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-03-13 11:34+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -18464,7 +18464,7 @@ "Label\n" "value.text" msgid "~Find..." -msgstr "Найти" +msgstr "Найти..." #. 3BAcD #: GenericCommands.xcu @@ -22276,7 +22276,7 @@ "Label\n" "value.text" msgid "~Edit Contour..." -msgstr "Правка контуров..." +msgstr "Правка контура..." #. 8NPaD #: GenericCommands.xcu @@ -30276,7 +30276,7 @@ "PopupLabel\n" "value.text" msgid "Reject Change" -msgstr "Отклонить изменение" +msgstr "Отклонить исправление" #. Q84GZ #: WriterCommands.xcu @@ -30316,7 +30316,7 @@ "TooltipLabel\n" "value.text" msgid "Reject All Tracked Changes" -msgstr "Отклонить все изменения" +msgstr "Отклонить все исправления" #. nzLar #: WriterCommands.xcu @@ -30326,7 +30326,7 @@ "PopupLabel\n" "value.text" msgid "Reject All Changes" -msgstr "Отклонить все изменения" +msgstr "Отклонить все исправления" #. 9iqGn #: WriterCommands.xcu @@ -30356,7 +30356,7 @@ "PopupLabel\n" "value.text" msgid "Accept Change" -msgstr "Принять изменение" +msgstr "Принять исправление" #. BMTLL #: WriterCommands.xcu @@ -30396,7 +30396,7 @@ "TooltipLabel\n" "value.text" msgid "Accept All Tracked Changes" -msgstr "Принять все изменения" +msgstr "Принять все исправления" #. VgBB9 #: WriterCommands.xcu @@ -30406,7 +30406,7 @@ "PopupLabel\n" "value.text" msgid "Accept All Changes" -msgstr "Принять все изменения" +msgstr "Принять все исправления" #. kja8B #: WriterCommands.xcu @@ -34666,7 +34666,7 @@ "Label\n" "value.text" msgid "~Field Names" -msgstr "Поля" +msgstr "Имена полей" #. CcnG7 #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/ru/readlicense_oo/docs.po libreoffice-7.4.7/translations/source/ru/readlicense_oo/docs.po --- libreoffice-7.4.6/translations/source/ru/readlicense_oo/docs.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/readlicense_oo/docs.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: docs\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-03-13 11:33+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1553184646.000000\n" #. q6Gg3 @@ -428,7 +428,7 @@ "rpminstall7a\n" "readmeitem.text" msgid "Alternatively, you can use the 'install' script, located in the toplevel directory of this archive to perform an installation as a user. The script will set up ${PRODUCTNAME} to have its own profile for this installation, separated from your normal ${PRODUCTNAME} profile. Note that this will not install the system integration parts such as desktop menu items and desktop MIME type registrations." -msgstr "В качестве альтернативы возможно использовать 'install' скрипт, размещённый в каталоге верхнего уровня архива для установки от имени пользователя. Скрипт установит ${PRODUCTNAME} со своим собственным профилем, отдельно от обычного ${PRODUCTNAME} профиля. При этом не будет выполнена интеграция в систему: элементы меню и регистрация типов MIME." +msgstr "В качестве альтернативы возможно использовать сценарий 'install', размещённый в каталоге верхнего уровня архива для установки от имени пользователя. Сценарий установит ${PRODUCTNAME} со своим собственным профилем, отдельно от обычного ${PRODUCTNAME} профиля. При этом не будет выполнена интеграция в систему: элементы меню и регистрация типов MIME." #. wx2tD #: readme.xrm @@ -671,7 +671,7 @@ "pji76w\n" "readmeitem.text" msgid "File locking is enabled by default in ${PRODUCTNAME}. On a network that uses the Network File System protocol (NFS), the locking daemon for NFS clients must be active. To disable file locking, edit the soffice script and change the line \"export SAL_ENABLE_FILE_LOCKING\" to \"# export SAL_ENABLE_FILE_LOCKING\". If you disable file locking, the write access of a document is not restricted to the user who first opens the document." -msgstr "В ${PRODUCTNAME} блокировка файлов по умолчанию включена. При работе в сети с протоколом Network File System (NFS) служба блокировки файлов для NFS должна быть активна. Для отключения блокировки отредактируйте скрипт soffice, заменив строку «export SAL_ENABLE_FILE_LOCKING» на «# export SAL_ENABLE_FILE_LOCKING». Если Вы отключаете блокировку файлов, то право записи в документ более не ограничивается пользователем, открывшим этот документ первым." +msgstr "В ${PRODUCTNAME} блокировка файлов по умолчанию включена. При работе в сети с протоколом Network File System (NFS) служба блокировки файлов для NFS должна быть активна. Для отключения блокировки отредактируйте сценарий soffice, заменив строку «export SAL_ENABLE_FILE_LOCKING» на «# export SAL_ENABLE_FILE_LOCKING». Если отключить блокировку файлов, то право записи в документ более не ограничивается пользователем, открывшим этот документ первым." #. cbpAz #: readme.xrm diff -Nru libreoffice-7.4.6/translations/source/ru/sc/messages.po libreoffice-7.4.7/translations/source/ru/sc/messages.po --- libreoffice-7.4.6/translations/source/ru/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-03-13 11:34+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -29659,7 +29659,7 @@ #: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:123 msgctxt "sharedocumentdlg|warning" msgid "Note: Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities." -msgstr "Примечание: в этом режиме не сохраняются изменения шрифтов, цветов и числовых форматов, а также недоступно редактирование диаграмм и рисунков. Для реализации указанных функций перейдите в режим монопольного доступа к документу." +msgstr "Примечание: в этом режиме не сохраняются изменения шрифтов, цветов и числовых форматов, а также недоступно редактирование диаграмм и рисунков. Для использования указанных функций отключите общий доступ и перейдите в режим монопольного доступа к документу." #. dQz77 #: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:187 @@ -29689,7 +29689,7 @@ #: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:13 msgctxt "sharedwarningdialog|SharedWarningDialog" msgid "Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities." -msgstr "В режиме общего доступа не будут сохранены изменения атрибутов форматирования, такие как шрифты, цвета и числовые форматы, а также будут недоступны некоторые функциональные возможности, например, редактирование диаграмм и рисунков. Для использования указанных функций отключите общий доступ и получите монопольный доступ к документу." +msgstr "В режиме общего доступа не будут сохранены изменения атрибутов форматирования, такие как шрифты, цвета и числовые форматы, а также будут недоступны некоторые функциональные возможности, например, редактирование диаграмм и рисунков. Для использования указанных функций отключите общий доступ и перейдите в режим монопольного доступа к документу." #. AWccB #: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:32 @@ -30163,7 +30163,7 @@ #: sc/uiconfig/scalc/ui/sidebarcellappearance.ui:142 msgctxt "sidebarcellappearance|borderlinestyle-atkobject" msgid "Border Line Style" -msgstr "Стиль обрамления" +msgstr "Стиль линий обрамления" #. CNqCC #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:71 diff -Nru libreoffice-7.4.6/translations/source/ru/svx/messages.po libreoffice-7.4.7/translations/source/ru/svx/messages.po --- libreoffice-7.4.6/translations/source/ru/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564293177.000000\n" #. 3GkZj @@ -17152,7 +17152,7 @@ "\n" "How do you want to proceed?" msgstr "" -"Внесённые изменения будут потеряны при перезагрузке формы.\n" +"Внесённые изменения будут утеряны при перезагрузке формы.\n" "\n" "Продолжить?" diff -Nru libreoffice-7.4.6/translations/source/ru/sw/messages.po libreoffice-7.4.7/translations/source/ru/sw/messages.po --- libreoffice-7.4.6/translations/source/ru/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-15 15:30+0000\n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -2352,7 +2352,7 @@ #: sw/inc/strings.hrc:38 msgctxt "STR_POOLCHR_STANDARD" msgid "No Character Style" -msgstr "Без стиля символа" +msgstr "Без стиля символов" #. iVg2a #: sw/inc/strings.hrc:39 @@ -2691,121 +2691,121 @@ #: sw/inc/strings.hrc:97 msgctxt "STR_POOLCOLL_NUM_LEVEL1S" msgid "Numbering 1 Start" -msgstr "Начало нумерованного списка 1" +msgstr "Нумерованный 1 начало" #. ZK75h #: sw/inc/strings.hrc:98 msgctxt "STR_POOLCOLL_NUM_LEVEL1" msgid "Numbering 1" -msgstr "Нумерованный список 1" +msgstr "Нумерованный 1" #. d7ED5 #: sw/inc/strings.hrc:99 msgctxt "STR_POOLCOLL_NUM_LEVEL1E" msgid "Numbering 1 End" -msgstr "Конец нумерованного списка 1" +msgstr "Нумерованный 1 конец" #. EEefE #: sw/inc/strings.hrc:100 msgctxt "STR_POOLCOLL_NUM_NONUM1" msgid "Numbering 1 Cont." -msgstr "Продолжение нумерованного списка 1" +msgstr "Нумерованный 1 прод." #. oXzhq #: sw/inc/strings.hrc:101 msgctxt "STR_POOLCOLL_NUM_LEVEL2S" msgid "Numbering 2 Start" -msgstr "Начало нумерованного списка 2" +msgstr "Нумерованный 2 начало" #. mDFEC #: sw/inc/strings.hrc:102 msgctxt "STR_POOLCOLL_NUM_LEVEL2" msgid "Numbering 2" -msgstr "Нумерованный список 2" +msgstr "Нумерованный 2" #. srZLb #: sw/inc/strings.hrc:103 msgctxt "STR_POOLCOLL_NUM_LEVEL2E" msgid "Numbering 2 End" -msgstr "Конец нумерованного списка 2" +msgstr "Нумерованный 2 конец" #. K563Y #: sw/inc/strings.hrc:104 msgctxt "STR_POOLCOLL_NUM_NONUM2" msgid "Numbering 2 Cont." -msgstr "Продолжение нумерованного списка 2" +msgstr "Нумерованный 2 прод." #. ZY4dn #: sw/inc/strings.hrc:105 msgctxt "STR_POOLCOLL_NUM_LEVEL3S" msgid "Numbering 3 Start" -msgstr "Начало нумерованного списка 3" +msgstr "Нумерованный 3 начало" #. zadiT #: sw/inc/strings.hrc:106 msgctxt "STR_POOLCOLL_NUM_LEVEL3" msgid "Numbering 3" -msgstr "Нумерованный список 3" +msgstr "Нумерованный 3" #. 9XFGM #: sw/inc/strings.hrc:107 msgctxt "STR_POOLCOLL_NUM_LEVEL3E" msgid "Numbering 3 End" -msgstr "Конец нумерованного списка 3" +msgstr "Нумерованный 3 конец" #. odwZq #: sw/inc/strings.hrc:108 msgctxt "STR_POOLCOLL_NUM_NONUM3" msgid "Numbering 3 Cont." -msgstr "Продолжение нумерованного списка 3" +msgstr "Нумерованный 3 прод." #. L7LmA #: sw/inc/strings.hrc:109 msgctxt "STR_POOLCOLL_NUM_LEVEL4S" msgid "Numbering 4 Start" -msgstr "Начало нумерованного списка 4" +msgstr "Нумерованный 4 начало" #. MZko3 #: sw/inc/strings.hrc:110 msgctxt "STR_POOLCOLL_NUM_LEVEL4" msgid "Numbering 4" -msgstr "Нумерованный список 4" +msgstr "Нумерованный 4" #. NNVFa #: sw/inc/strings.hrc:111 msgctxt "STR_POOLCOLL_NUM_LEVEL4E" msgid "Numbering 4 End" -msgstr "Конец нумерованного списка 4" +msgstr "Нумерованный 4 конец" #. iN72r #: sw/inc/strings.hrc:112 msgctxt "STR_POOLCOLL_NUM_NONUM4" msgid "Numbering 4 Cont." -msgstr "Продолжение нумерованного списка 4" +msgstr "Нумерованный 4 прод." #. 96KqD #: sw/inc/strings.hrc:113 msgctxt "STR_POOLCOLL_NUM_LEVEL5S" msgid "Numbering 5 Start" -msgstr "Начало нумерованного списка 5" +msgstr "Нумерованный 5 начало" #. a4DBa #: sw/inc/strings.hrc:114 msgctxt "STR_POOLCOLL_NUM_LEVEL5" msgid "Numbering 5" -msgstr "Нумерованный список 5" +msgstr "Нумерованный 5" #. f2BKL #: sw/inc/strings.hrc:115 msgctxt "STR_POOLCOLL_NUM_LEVEL5E" msgid "Numbering 5 End" -msgstr "Конец нумерованного списка 5" +msgstr "Нумерованный 5 конец" #. NmxWb #: sw/inc/strings.hrc:116 msgctxt "STR_POOLCOLL_NUM_NONUM5" msgid "Numbering 5 Cont." -msgstr "Продолжение нумерованного списка 5" +msgstr "Нумерованный 5 прод." #. eBvvD #: sw/inc/strings.hrc:117 @@ -4140,7 +4140,7 @@ #: sw/inc/strings.hrc:356 msgctxt "STR_EVENT_IMAGE_ABORT" msgid "Image loading terminated" -msgstr "Загрузка изображения остановлена" +msgstr "Загрузка изображения прервана" #. uLNMH #: sw/inc/strings.hrc:357 @@ -5147,7 +5147,7 @@ #: sw/inc/strings.hrc:525 msgctxt "STR_OCCURRENCES_OF" msgid "occurrences of" -msgstr "нахождений из" +msgstr "вхождений из" #. hHUZi #: sw/inc/strings.hrc:526 @@ -11189,13 +11189,13 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:43 msgctxt "bibliographyentry|extended_tip|new" msgid "Opens the Define Bibliography Entry dialog, where you can create a new bibliography record. This record is only stored in the document. To add a record to the bibliography database, choose Tools - Bibliography Database." -msgstr "Открывает диалоговое окно Задать библиографическую ссылку, в котором можно создать новую библиографическую запись. Эта запись сохраняется только в документе. Чтобы добавить запись в базу данных библиографии, выберите Сервис - База данных библиографии." +msgstr "Открывает диалоговое окно «Задать библиографическую ссылку», в котором можно создать новую библиографическую запись. Эта запись сохраняется только в документе. Чтобы добавить запись в базу данных библиографии, выберите «Сервис - База данных библиографии»." #. xHxhn #: sw/uiconfig/swriter/ui/bibliographyentry.ui:62 msgctxt "bibliographyentry|extended_tip|edit" msgid "Opens the Define Bibliography Entry dialog where you can edit the selected bibliography record." -msgstr "Открывает диалоговое окно Задать библиографическую ссылку, где возможно изменить выбранную библиографическую запись." +msgstr "Открывает диалоговое окно «Задать библиографическую ссылку», где возможно изменить выбранную библиографическую запись." #. zo8CS #: sw/uiconfig/swriter/ui/bibliographyentry.ui:81 @@ -12185,7 +12185,7 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:504 msgctxt "columnpage|extended_tip|linestylelb" msgid "Select the formatting style for the column separator line. If you do not want a separator line, choose \"None\"." -msgstr "Выберите стиль разделительной линии для колонок. Если разделительная линия не нужна, выберите «-нет-»." +msgstr "Выберите стиль разделительной линии для колонок. Если разделительная линия не нужна, выберите «Нет»." #. DcSGt #: sw/uiconfig/swriter/ui/columnpage.ui:518 @@ -14367,7 +14367,7 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:89 msgctxt "flddbpage|extended_tip|type" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert." -msgstr "Выводит список доступных типов полей. Для добавления поля в документ щёлкните по типу поля, затем по полю в списке Выбор базы данных, и далее щёлкните кнопку Вставить." +msgstr "Выводит список доступных типов полей. Для добавления поля в документ щёлкните по типу поля, затем по полю в списке Выбор, затем щёлкните кнопку Вставить." #. A5HF3 #: sw/uiconfig/swriter/ui/flddbpage.ui:100 @@ -14475,7 +14475,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:77 msgctxt "flddocinfopage|extended_tip|type" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert." -msgstr "Выводит список доступных типов полей. Для добавления поля в документ щёлкните по типу поля, затем по полю в списке Выбор базы данных, и далее щёлкните кнопку Вставить." +msgstr "Выводит список доступных типов полей. Для добавления поля в документ щёлкните по типу поля, затем по полю в списке Выбор, затем щёлкните кнопку Вставить." #. 5B97z #: sw/uiconfig/swriter/ui/flddocinfopage.ui:88 @@ -14523,7 +14523,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:98 msgctxt "flddocumentpage|extended_tip|type" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert." -msgstr "Выводит список доступных типов полей. Для добавления поля в документ щёлкните по типу поля, затем по полю в списке Выбор базы данных, и далее щёлкните кнопку Вставить." +msgstr "Выводит список доступных типов полей. Для добавления поля в документ щёлкните по типу поля, затем по полю в списке Выбор, затем щёлкните кнопку Вставить." #. pmEvX #: sw/uiconfig/swriter/ui/flddocumentpage.ui:109 @@ -14613,7 +14613,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:87 msgctxt "fldfuncpage|extended_tip|type" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert." -msgstr "Выводит список доступных типов полей. Для добавления поля в документ щёлкните по типу поля, затем по полю в списке Выбор базы данных, и далее щёлкните кнопку Вставить." +msgstr "Выводит список доступных типов полей. Для добавления поля в документ щёлкните по типу поля, затем по полю в списке Выбор, затем щёлкните кнопку Вставить." #. GvXix #: sw/uiconfig/swriter/ui/fldfuncpage.ui:98 @@ -14853,7 +14853,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:107 msgctxt "fldvarpage|extended_tip|type" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert." -msgstr "Выводит список доступных типов полей. Для добавления поля в документ щёлкните по типу поля, затем по полю в списке Выбор базы данных, и далее щёлкните кнопку Вставить." +msgstr "Выводит список доступных типов полей. Для добавления поля в документ щёлкните по типу поля, затем по полю в списке Выбор, затем щёлкните кнопку Вставить." #. MYGxL #: sw/uiconfig/swriter/ui/fldvarpage.ui:118 @@ -28844,7 +28844,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:964 msgctxt "tocentriespage|extended_tip|key1lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Выберите элемент, по которому должны сортироваться библиографические ссылки. Этот параметр доступен, только если выбран переключатель Содержимому в области Сортировать по." +msgstr "Выберите элемент, по которому должны сортироваться библиографические ссылки. Этот параметр доступен, только если в области «Сортировать по» выбран переключатель «Содержимому»." #. B7NqZ #: sw/uiconfig/swriter/ui/tocentriespage.ui:977 @@ -28862,13 +28862,13 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1005 msgctxt "tocentriespage|extended_tip|key2lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Выберите элемент, по которому должны сортироваться библиографические ссылки. Этот параметр доступен, только если выбран переключатель Содержимому в области Сортировать по." +msgstr "Выберите элемент, по которому должны сортироваться библиографические ссылки. Этот параметр доступен, только если в области «Сортировать по» выбран переключатель «Содержимому»." #. tfvwe #: sw/uiconfig/swriter/ui/tocentriespage.ui:1022 msgctxt "tocentriespage|extended_tip|key3lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Выберите элемент, по которому должны сортироваться библиографические ссылки. Этот параметр доступен, только если выбран переключатель Содержимому в области Сортировать по." +msgstr "Выберите элемент, по которому должны сортироваться библиографические ссылки. Этот параметр доступен, только если в области «Сортировать по» выбран переключатель «Содержимому»." #. 6GYwu #: sw/uiconfig/swriter/ui/tocentriespage.ui:1036 diff -Nru libreoffice-7.4.6/translations/source/ru/swext/mediawiki/help.po libreoffice-7.4.7/translations/source/ru/swext/mediawiki/help.po --- libreoffice-7.4.6/translations/source/ru/swext/mediawiki/help.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ru/swext/mediawiki/help.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: help\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: 2023-01-30 09:57+0000\n" +"PO-Revision-Date: 2023-03-13 11:33+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1556786600.000000\n" #. 7EFBE @@ -473,7 +473,7 @@ "par_id508133\n" "help.text" msgid "Apply a heading paragraph style to the headings in your Writer document. The wiki will show the heading styles of the same outline level, formatted as defined by the wiki engine." -msgstr "Примените стиль заголовка к заголовку текстового документа Writer. Wiki будет отображать стили заголовков соответствующего уровня, отформатированные в соответствии с правилами Wiki." +msgstr "Примените стиль абзаца заголовка к заголовку текстового документа Writer. Wiki будет отображать стили заголовков соответствующего уровня, отформатированные в соответствии с правилами Wiki." #. YAjYW #: wikiformats.xhp @@ -743,7 +743,7 @@ "par_id6592913\n" "help.text" msgid "Show in web browser: Check this box to open your system web browser and show the uploaded wiki page." -msgstr "Показать в веб-браузере: Отметьте этот параметр для открытия веб-браузера и показа загруженной Wiki-страницы." +msgstr "Показать в браузере: Отметьте этот параметр для открытия браузера и показа загруженной Wiki-страницы." #. rt8Df #: wikisettings.xhp diff -Nru libreoffice-7.4.6/translations/source/sk/accessibility/messages.po libreoffice-7.4.7/translations/source/sk/accessibility/messages.po --- libreoffice-7.4.6/translations/source/sk/accessibility/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/accessibility/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-19 13:12+0100\n" -"PO-Revision-Date: 2021-01-23 18:34+0000\n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507246673.000000\n" #. be4e7 @@ -94,7 +94,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -134,7 +134,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sk/avmedia/messages.po libreoffice-7.4.7/translations/source/sk/avmedia/messages.po --- libreoffice-7.4.6/translations/source/sk/avmedia/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/avmedia/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-02-18 12:16+0100\n" -"PO-Revision-Date: 2021-01-23 18:34+0000\n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1511541384.000000\n" #. m6G23 @@ -124,7 +124,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -164,7 +164,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sk/basctl/messages.po libreoffice-7.4.7/translations/source/sk/basctl/messages.po --- libreoffice-7.4.6/translations/source/sk/basctl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/basctl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2022-07-12 03:33+0000\n" +"PO-Revision-Date: 2023-03-30 21:34+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1555447090.000000\n" #. fniWp @@ -482,13 +482,13 @@ #: basctl/inc/strings.hrc:98 msgctxt "RID_STR_PRINTDLG_PRINTALLPAGES" msgid "All ~Pages" -msgstr "Všetky ~strany" +msgstr "~Všetky strany" #. xfLXi #: basctl/inc/strings.hrc:99 msgctxt "RID_STR_PRINTDLG_PRINTPAGES" msgid "Pa~ges:" -msgstr "Stra~ny:" +msgstr "~Strany:" #. dALHq #: basctl/inc/strings.hrc:100 @@ -581,7 +581,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -621,7 +621,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -782,7 +782,7 @@ #: basctl/uiconfig/basicide/ui/breakpointmenus.ui:12 msgctxt "breakpointmenus|manage" msgid "Manage Breakpoints..." -msgstr "Body prerušenia..." +msgstr "Spravovať body prerušenia..." #. 2ZNKn #: basctl/uiconfig/basicide/ui/breakpointmenus.ui:15 @@ -1004,13 +1004,13 @@ #: basctl/uiconfig/basicide/ui/importlibdialog.ui:114 msgctxt "importlibdialog|ref" msgid "Insert as reference (read-only)" -msgstr "Vložiť ako odkaz (iba na čítanie)" +msgstr "Vložiť ako odkaz (len na čítanie)" #. iHJcm #: basctl/uiconfig/basicide/ui/importlibdialog.ui:122 msgctxt "importlibdialog|extended_tip|ref" msgid "Adds the selected library as a read-only file. The library is reloaded each time you start the office suite." -msgstr "Pridá vybranú knižnicu iba na čítanie. Knižnica sa znova načíta pri každom spustení tohto kancelárskeho balíka." +msgstr "Pridá vybranú knižnicu len na čítanie. Knižnica sa znova načíta pri každom spustení tohto kancelárskeho balíka." #. B9N7w #: basctl/uiconfig/basicide/ui/importlibdialog.ui:133 diff -Nru libreoffice-7.4.6/translations/source/sk/basic/messages.po libreoffice-7.4.7/translations/source/sk/basic/messages.po --- libreoffice-7.4.6/translations/source/sk/basic/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/basic/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2021-12-12 19:38+0000\n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507246675.000000\n" #. CacXi @@ -410,13 +410,13 @@ #: basic/inc/basic.hrc:97 msgctxt "RID_BASIC_START" msgid "This property is read-only." -msgstr "Táto vlastnosť je iba na čítanie." +msgstr "Táto vlastnosť je len na čítanie." #. ScKEy #: basic/inc/basic.hrc:98 msgctxt "RID_BASIC_START" msgid "This property is write only." -msgstr "Táto vlastnosť je iba na zápis." +msgstr "Táto vlastnosť je len na zápis." #. kTCMC #: basic/inc/basic.hrc:99 @@ -797,7 +797,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -837,7 +837,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sk/chart2/messages.po libreoffice-7.4.7/translations/source/sk/chart2/messages.po --- libreoffice-7.4.6/translations/source/sk/chart2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/chart2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,23 +4,23 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2021-12-12 19:38+0000\n" +"PO-Revision-Date: 2023-04-18 10:34+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547556845.000000\n" #. NCRDD #: chart2/inc/chart.hrc:18 msgctxt "tp_ChartType|liststore1" msgid "Bar" -msgstr "Kváder" +msgstr "Pásový" #. YpLZF #: chart2/inc/chart.hrc:19 @@ -58,7 +58,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -98,7 +98,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -217,7 +217,7 @@ #: chart2/inc/strings.hrc:42 msgctxt "STR_PAGE_POSITIONING" msgid "Positioning" -msgstr "Umiestňovanie" +msgstr "Umiestnenie" #. omcEo #: chart2/inc/strings.hrc:43 @@ -385,7 +385,7 @@ #: chart2/inc/strings.hrc:70 msgctxt "STR_OBJECT_TITLE_MAIN" msgid "Main Title" -msgstr "Hlavný názov" +msgstr "Hlavný nadpis" #. 3HPz3 #: chart2/inc/strings.hrc:71 @@ -469,25 +469,25 @@ #: chart2/inc/strings.hrc:84 msgctxt "STR_OBJECT_CURVE" msgid "Trend Line" -msgstr "Regresná krivka" +msgstr "Trendová krivka" #. 8miGx #: chart2/inc/strings.hrc:85 msgctxt "STR_OBJECT_CURVES" msgid "Trend Lines" -msgstr "Regresné krivky" +msgstr "Trendové krivky" #. ESVL6 #: chart2/inc/strings.hrc:86 msgctxt "STR_OBJECT_CURVE_WITH_PARAMETERS" msgid "Trend line %FORMULA with accuracy R² = %RSQUARED" -msgstr "Regresná krivka %FORMULA s presnosťou R² = %RSQUARED" +msgstr "Trendová krivka %FORMULA s presnosťou R² = %RSQUARED" #. DrVz3 #: chart2/inc/strings.hrc:87 msgctxt "STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS" msgid "Moving average trend line with period = %PERIOD" -msgstr "Regresná krivka kĺzavého priemeru s periódou = %PERIOD" +msgstr "Trendová krivka kĺzavého priemeru s periódou = %PERIOD" #. mcMQC #: chart2/inc/strings.hrc:88 @@ -547,7 +547,7 @@ #: chart2/inc/strings.hrc:97 msgctxt "STR_OBJECT_DIAGRAM_WALL" msgid "Chart Wall" -msgstr "Zadná stena grafu" +msgstr "Pozadie grafu" #. meV4E #: chart2/inc/strings.hrc:98 @@ -857,7 +857,7 @@ #: chart2/inc/strings.hrc:149 msgctxt "STR_CONTROLTEXT_ERROR_BARS_FROM_DATA" msgid "From Data Table" -msgstr "Z tabuľky dát" +msgstr "Z tabuľky údajov" #. aPEDY #: chart2/inc/strings.hrc:150 @@ -971,7 +971,7 @@ #: chart2/inc/strings.hrc:169 msgctxt "STR_LINES_ONLY" msgid "Lines Only" -msgstr "Iba čiary" +msgstr "Len čiary" #. AAEA2 #: chart2/inc/strings.hrc:170 @@ -1145,7 +1145,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:8 msgctxt "chartdatadialog|ChartDataDialog" msgid "Data Table" -msgstr "Tabuľka s dátami" +msgstr "Tabuľka údajov" #. ywdAz #: chart2/uiconfig/ui/chartdatadialog.ui:72 @@ -1259,7 +1259,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:357 msgctxt "chartdatadialog|extended_tip|ChartDataDialog" msgid "Opens the Data Table dialog where you can edit the chart data." -msgstr "Otvorí dialógové okno Tabuľka dát, v ktorom môžete upraviť dáta grafu." +msgstr "Otvorí dialógové okno Tabuľka údajov, v ktorom môžete upraviť dáta grafu." #. KbkRw #: chart2/uiconfig/ui/charttypedialog.ui:8 @@ -1595,7 +1595,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:641 msgctxt "dlg_DataLabel|extended_tip|dlg_DataLabel" msgid "Opens the Data Labels dialog, which enables you to set the data labels." -msgstr "Otvorí dialóg Popisy údajov, ktorý umožňuje nastavenie ich popisu." +msgstr "Otvorí dialógové okno Popisy dát, ktorý umožňuje nastavenie popisu dát." #. bt7D7 #: chart2/uiconfig/ui/dlg_DataLabel.ui:660 @@ -1649,7 +1649,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:200 msgctxt "dlg_InsertErrorBars|extended_tip|RB_FUNCTION" msgid "Select a function to calculate the error bars." -msgstr "Vyberte funkciu pre výpočet chybových čiar." +msgstr "Vyberte funkciu pre výpočet chybových úsečiek." #. fkUNn #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:215 @@ -1679,7 +1679,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:222 msgctxt "dlg_InsertErrorBars|extended_tip|LB_FUNCTION" msgid "Select a function to calculate the error bars." -msgstr "Vyberte funkciu pre výpočet chybových čiar." +msgstr "Vyberte funkciu pre výpočet chybových úsečiek." #. Z5yGF #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:241 @@ -1691,7 +1691,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:250 msgctxt "dlg_InsertErrorBars|extended_tip|RB_RANGE" msgid "Click Cell Range and then specify a cell range from which to take the positive and negative error bar values." -msgstr "Kliknite na oblasť buniek a potom špecifikujte oblasť buniek, z ktorej chcete definovať kladné a záporné hodnoty chybovej čiary." +msgstr "Kliknite na oblasť buniek a potom špecifikujte oblasť buniek, z ktorej chcete definovať kladné a záporné hodnoty chybovej úsečky." #. vdvVR #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:266 @@ -1709,7 +1709,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:305 msgctxt "dlg_InsertErrorBars|extended_tip|RB_BOTH" msgid "Shows positive and negative error bars." -msgstr "Ukáže kladné a záporné chybové čiary." +msgstr "Ukáže kladné a záporné chybové úsečky." #. jJw8Y #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:316 @@ -1721,7 +1721,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:325 msgctxt "dlg_InsertErrorBars|extended_tip|RB_POSITIVE" msgid "Shows only positive error bars." -msgstr "Ukáže iba kladné chybové čiary." +msgstr "Ukáže len kladné chybové úsečky." #. 6YgbM #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:336 @@ -1733,7 +1733,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:345 msgctxt "dlg_InsertErrorBars|extended_tip|RB_NEGATIVE" msgid "Shows only negative error bars." -msgstr "Ukáže iba záporné chybové čiary." +msgstr "Ukáže len záporné chybové úsečky." #. fkKQH #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:393 @@ -1811,7 +1811,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:606 msgctxt "dlg_InsertErrorBars|extended_tip|CB_SYN_POS_NEG" msgid "Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically." -msgstr "Povolí použiť kladnú chybovú hodnotu ako zápornú chybovú hodnotu. Budete môcť meniť iba hodnoty v poli 'Kladné (+)'. Tieto hodnoty sa automaticky skopírujú do poľa 'Záporné (-)'." +msgstr "Povolí použiť kladnú chybovú hodnotu ako zápornú chybovú hodnotu. Budete môcť meniť len hodnoty v poli 'Kladné (+)'. Tieto hodnoty sa automaticky skopírujú do poľa 'Záporné (-)'." #. ogVMg #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:622 @@ -1835,7 +1835,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:661 msgctxt "dlg_InsertErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA" msgid "From Data Table" -msgstr "Z tabuľky dát" +msgstr "Z tabuľky údajov" #. 3G3Jo #: chart2/uiconfig/ui/dlg_InsertLegend.ui:8 @@ -2081,7 +2081,7 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:106 msgctxt "inserttitledlg|labelSubTitle" msgid "_Subtitle" -msgstr "P_odnázov" +msgstr "P_odnadpis" #. aCRZ7 #: chart2/uiconfig/ui/inserttitledlg.ui:125 @@ -2423,7 +2423,7 @@ #: chart2/uiconfig/ui/sidebarelements.ui:493 msgctxt "sidebarelements|text_title" msgid "Title" -msgstr "Názvy" +msgstr "Názov" #. jXGDE #: chart2/uiconfig/ui/sidebarelements.ui:504 @@ -2453,7 +2453,7 @@ #: chart2/uiconfig/ui/sidebarerrorbar.ui:76 msgctxt "sidebarerrorbar|comboboxtext_type" msgid "Cell Range or Data Table" -msgstr "Oblasť buniek alebo tabuľka dát" +msgstr "Oblasť buniek alebo tabuľka údajov" #. Lqw6L #: chart2/uiconfig/ui/sidebarerrorbar.ui:77 @@ -2579,7 +2579,7 @@ #: chart2/uiconfig/ui/sidebarseries.ui:109 msgctxt "sidebarseries|checkbutton_trendline" msgid "Show trendline" -msgstr "Zobraziť trendovú čiara" +msgstr "Zobraziť trendovú krivku" #. bXUND #: chart2/uiconfig/ui/sidebarseries.ui:140 @@ -3491,7 +3491,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:216 msgctxt "tp_ChartType|extended_tip|shape" msgid "Select a shape from the list." -msgstr "Vyberte tvar zo zoznamu." +msgstr "Vyberte útvar zo zoznamu." #. G2u4D #: chart2/uiconfig/ui/tp_ChartType.ui:241 @@ -4175,7 +4175,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:269 msgctxt "tp_ErrorBars|extended_tip|RB_POSITIVE" msgid "Shows only positive error bars." -msgstr "Ukáže iba kladné chybové čiary." +msgstr "Ukáže len kladné chybové čiary." #. jdFbj #: chart2/uiconfig/ui/tp_ErrorBars.ui:280 @@ -4187,7 +4187,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:291 msgctxt "tp_ErrorBars|extended_tip|RB_NEGATIVE" msgid "Shows only negative error bars." -msgstr "Ukáže iba záporné chybové čiary." +msgstr "Ukáže len záporné chybové čiary." #. D4Aou #: chart2/uiconfig/ui/tp_ErrorBars.ui:339 @@ -4265,7 +4265,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:551 msgctxt "tp_ErrorBars|extended_tip|CB_SYN_POS_NEG" msgid "Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically." -msgstr "Povolí použiť kladnú chybovú hodnotu ako zápornú chybovú hodnotu. Budete môcť meniť iba hodnoty v poli 'Kladné (+)'. Tieto hodnoty sa automaticky skopírujú do poľa 'Záporné (-)'." +msgstr "Povolí použiť kladnú chybovú hodnotu ako zápornú chybovú hodnotu. Budete môcť meniť len hodnoty v poli 'Kladné (+)'. Tieto hodnoty sa automaticky skopírujú do poľa 'Záporné (-)'." #. BEj3C #: chart2/uiconfig/ui/tp_ErrorBars.ui:567 @@ -4289,7 +4289,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:606 msgctxt "tp_ErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA" msgid "From Data Table" -msgstr "Z tabuľky dát" +msgstr "Z tabuľky údajov" #. C9QvS #: chart2/uiconfig/ui/tp_LegendPosition.ui:27 @@ -4619,7 +4619,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:199 msgctxt "tp_Scale|CBX_AUTO_MAX" msgid "A_utomatic" -msgstr "A_utomaticky" +msgstr "_Automatický" #. 2Kb67 #: chart2/uiconfig/ui/tp_Scale.ui:221 @@ -4943,43 +4943,43 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:56 msgctxt "tp_Trendline|linear" msgid "_Linear" -msgstr "Lineárny" +msgstr "Lineárna" #. jir3B #: chart2/uiconfig/ui/tp_Trendline.ui:65 msgctxt "tp_Trendline|extended_tip|linear" msgid "A linear trend line is shown." -msgstr "Je zobrazená lineárna trendová krivka." +msgstr "Je zobrazená lineárna trendová čiara." #. u3nKx #: chart2/uiconfig/ui/tp_Trendline.ui:76 msgctxt "tp_Trendline|logarithmic" msgid "L_ogarithmic" -msgstr "L_ogaritmický" +msgstr "L_ogaritmická" #. AZT5a #: chart2/uiconfig/ui/tp_Trendline.ui:85 msgctxt "tp_Trendline|extended_tip|logarithmic" msgid "A logarithmic trend line is shown." -msgstr "Je zobrazený logaritmický priebeh trendovej krivky." +msgstr "Je zobrazený logaritmický priebeh trendovej čiary." #. fPNok #: chart2/uiconfig/ui/tp_Trendline.ui:96 msgctxt "tp_Trendline|exponential" msgid "_Exponential" -msgstr "~Exponenciálny" +msgstr "~Exponenciálna" #. gufBS #: chart2/uiconfig/ui/tp_Trendline.ui:105 msgctxt "tp_Trendline|extended_tip|exponential" msgid "An exponential trend line is shown." -msgstr "Je zobrazený exponenciálny priebeh trendovej krivky." +msgstr "Je zobrazený exponenciálny priebeh trendovej čiary." #. a6FDp #: chart2/uiconfig/ui/tp_Trendline.ui:116 msgctxt "tp_Trendline|power" msgid "Po_wer" -msgstr "Mo_cninný" +msgstr "Mo_cninná" #. sU36A #: chart2/uiconfig/ui/tp_Trendline.ui:125 @@ -4991,7 +4991,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:191 msgctxt "tp_Trendline|polynomial" msgid "_Polynomial" -msgstr "_Polynomický" +msgstr "_Polynomická" #. f9EeD #: chart2/uiconfig/ui/tp_Trendline.ui:200 @@ -5057,7 +5057,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:322 msgctxt "tp_Trendline|extended_tip|label10" msgid "How the trend line is calculated." -msgstr "Spôsob výpočtu spojnice trendu." +msgstr "Spôsob výpočtu trendovej čiary." #. GWKEC #: chart2/uiconfig/ui/tp_Trendline.ui:336 @@ -5111,7 +5111,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:476 msgctxt "tp_Trendline|setIntercept" msgid "Force _Intercept" -msgstr "Vnútiť bod pretnutia" +msgstr "Vnútiť absolútny člen" #. ZJUti #: chart2/uiconfig/ui/tp_Trendline.ui:487 @@ -5129,7 +5129,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:506 msgctxt "tp_Trendline|extended_tip|showEquation" msgid "Shows the trend line equation next to the trend line." -msgstr "Rovnicu trendovej krivky zobrazí vedľa regresnej krivky." +msgstr "Rovnicu trendovej čiary zobrazí vedľa krivky." #. cA58s #: chart2/uiconfig/ui/tp_Trendline.ui:518 @@ -5141,7 +5141,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:526 msgctxt "tp_Trendline|extended_tip|showCorrelationCoefficient" msgid "Shows the coefficient of determination next to the trend line." -msgstr "Determinačný koeficient zobrazí vedľa regresnej krivky." +msgstr "Determinačný koeficient zobrazí vedľa trendovej čiary." #. 2S6og #: chart2/uiconfig/ui/tp_Trendline.ui:540 @@ -5261,7 +5261,7 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:125 msgctxt "tp_axisLabel|auto" msgid "A_utomatic" -msgstr "A_utomaticky" +msgstr "_Automatický" #. fj3Rq #: chart2/uiconfig/ui/tp_axisLabel.ui:134 @@ -5405,7 +5405,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:150 msgctxt "wizelementspage|labelSubTitle" msgid "_Subtitle" -msgstr "P_odnázov" +msgstr "P_odnadpis" #. CWmMQ #: chart2/uiconfig/ui/wizelementspage.ui:169 @@ -5435,7 +5435,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:233 msgctxt "wizelementspage|extended_tip|secondaryXaxis" msgid "Enter a label for the secondary x-axis. This option is only available for charts that support a secondary x-axis." -msgstr "Vloží popis pre druhú os x. Táto možnosť je dostupná iba pre grafy, ktoré podporujú druhú os x." +msgstr "Vloží popis pre druhú os x. Táto možnosť je dostupná len pre grafy, ktoré podporujú druhú os x." #. E6Y7y #: chart2/uiconfig/ui/wizelementspage.ui:269 diff -Nru libreoffice-7.4.6/translations/source/sk/connectivity/messages.po libreoffice-7.4.7/translations/source/sk/connectivity/messages.po --- libreoffice-7.4.6/translations/source/sk/connectivity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/connectivity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2022-07-18 04:35+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1537729845.000000\n" #. 9KHB8 @@ -184,7 +184,7 @@ #: connectivity/inc/strings.hrc:52 msgctxt "STR_TYPE_NOT_CONVERT" msgid "The type could not be converted." -msgstr "Typ nemohol byť prevedený." +msgstr "Typ nemohol byť skonvertovaný." #. 3L6uG #: connectivity/inc/strings.hrc:53 @@ -409,7 +409,7 @@ #: connectivity/inc/strings.hrc:91 msgctxt "STR_TABLE_READONLY" msgid "The table cannot be changed. It is read only." -msgstr "Tabuľka nemôže byť zmenená. Je iba na čítanie." +msgstr "Tabuľka nemôže byť zmenená. Je len na čítanie." #. TUUpf #: connectivity/inc/strings.hrc:92 @@ -624,7 +624,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -664,7 +664,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sk/cui/messages.po libreoffice-7.4.7/translations/source/sk/cui/messages.po --- libreoffice-7.4.6/translations/source/sk/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2022-10-24 11:13+0000\n" +"PO-Revision-Date: 2023-04-16 06:32+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: Slovak \n" "Language: sk\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565181520.000000\n" #. GyY9M @@ -100,7 +100,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -140,7 +140,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -442,7 +442,7 @@ #: cui/inc/strings.hrc:77 msgctxt "RID_SVXSTR_HYPDLG_MACROACT2" msgid "Trigger hyperlink" -msgstr "Previesť hypertextový odkaz" +msgstr "Konvertovať hypertextový odkaz" #. WMQPj #: cui/inc/strings.hrc:78 @@ -1153,7 +1153,7 @@ #: cui/inc/strings.hrc:202 msgctxt "RID_SVXSTR_GALLERY_READONLY" msgid "(read-only)" -msgstr "(iba na čítanie)" +msgstr "(len na čítanie)" #. sAwgA #: cui/inc/strings.hrc:203 @@ -1201,7 +1201,7 @@ #: cui/inc/strings.hrc:212 msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH" msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes." -msgstr "Potvdzovacie heslo nesúhlasí so zadaným heslom. Nastavte heslo znovu zadaním rovnakého hesla do obidvoch polí." +msgstr "Potvrdzovacie heslo nesúhlasí so zadaným heslom. Nastavte heslo znovu zadaním rovnakého hesla do obidvoch polí." #. mN9jE #: cui/inc/strings.hrc:213 @@ -1766,7 +1766,7 @@ #: cui/inc/strings.hrc:325 msgctxt "RID_SVXSTR_CHARNAME_FONT" msgid "Font:" -msgstr "Font:" +msgstr "Písmo:" #. KFXAV #: cui/inc/strings.hrc:326 @@ -2037,7 +2037,7 @@ #: cui/inc/strings.hrc:378 msgctxt "RID_SVXSTR_COMMANDLABEL" msgid "Command" -msgstr "Príkaz" +msgstr "Command" #. dRqYc #: cui/inc/strings.hrc:379 @@ -2061,7 +2061,7 @@ #: cui/inc/strings.hrc:383 msgctxt "RID_SVXSTR_DELETEUSERCOLOR1" msgid "You can only delete user-defined colors" -msgstr "Zmazať môžete iba používateľom definované farby" +msgstr "Zmazať môžete len používateľom definované farby" #. 4LWGV #: cui/inc/strings.hrc:384 @@ -2305,7 +2305,7 @@ #: cui/inc/tipoftheday.hrc:72 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to sort a pivot table? Click on drop-list’s arrow in the row/col header and select sort method: ascending, descending, or custom." -msgstr "Chcete zoradiť kontingenčnú tabuľku? Kliknite na rozbaľovaciu šípku v záhlaví riadku / stĺpca a vyberte spôsob zoradenia: vzostupne, zostupne alebo vlastné." +msgstr "Chcete zoradiť kontingenčnú tabuľku? Kliknite na rozbaľovaciu šípku v hlavičke riadku / stĺpca a vyberte spôsob zoradenia: vzostupne, zostupne alebo vlastné." #. CvgZt #: cui/inc/tipoftheday.hrc:73 @@ -2471,13 +2471,13 @@ #: cui/inc/tipoftheday.hrc:99 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to count words for just one particular paragraph style? Use Edit ▸ Find and Replace, click Paragraph Styles, select the style in Find, and click Find All. Read the result in the status bar." -msgstr "Chcete spočítať slová iba pre určitý štýl odseku? Použite Úpraviť ▸ Nájsť a nahradiť, kliknite na Štýly odseku, vyberte štýl v poli Nájsť a kliknite na Nájsť všetko. Výsledok zistíte v stavovom riadku." +msgstr "Chcete spočítať slová len pre určitý štýl odseku? Použite Úpraviť ▸ Nájsť a nahradiť, kliknite na Štýly odseku, vyberte štýl v poli Nájsť a kliknite na Nájsť všetko. Výsledok zistíte v stavovom riadku." #. VBCF7 #: cui/inc/tipoftheday.hrc:100 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Generate fully customized PDF documents with the exact format, image compression, comments, access rights, password, etc., via File ▸ Export as PDF." -msgstr "Vytvárajte plne prispôsobené dokumenty PDF s presným formátom, kompresiou obrázkov, komentármi, prístupovými právami, heslom apod. Pomocou Súbor ▸ Exportovať do PDF." +msgstr "Vytvárajte plne prispôsobené dokumenty PDF s presným formátom, kompresiou obrázkov, komentármi, prístupovými právami, heslom apod. Pomocou Súbor ▸ Exportovať ako PDF." #. XWchY #: cui/inc/tipoftheday.hrc:102 @@ -2671,7 +2671,7 @@ #: 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 "Pre ľavákov: zobrazte si zvislý posúvač naľavo tak, že zaškrtnete Nástroje ▸ Možnosti ▸ Nastavenia jazyka ▸ Jazyky ▸ Ázijské a potom zaškrtnete Nástroje ▸ Možnosti ▸ %PRODUCTNAME Writer ▸ Zobraziť ▸ Pravítko ▸ zarovnané vpravo." +msgstr "Pre ľavákov: zobrazte si zvislý posúvač naľavo tak, že zaškrtnete Nástroje ▸ Možnosti ▸ Nastavenie jazyka ▸ Jazyky ▸ Ázijské a potom zaškrtnete Nástroje ▸ Možnosti ▸ %PRODUCTNAME Writer ▸ Zobraziť ▸ Pravítko ▸ zarovnané vpravo." #. Bs9w9 #: cui/inc/tipoftheday.hrc:135 @@ -2737,7 +2737,7 @@ #: cui/inc/tipoftheday.hrc:145 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to open hyperlinks without pressing the %MOD1 key? Uncheck “%MOD1+click required to open hyperlinks” in Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ Security Options." -msgstr "Chcete otvárať hypertextové odkazy iba kliknutím so stlačeným klávesom %MOD1? Zrušte zaškrtnutie poľa „Na otvorenie hypertextových odkazov vyžadovať %MOD1-klik“ v Nástroje ▸ Možnosti ▸ %PRODUCTNAME ▸ Bezpečnosť ▸ Možnosti ▸ Možnosti zabezpečenia." +msgstr "Chcete otvárať hypertextové odkazy len kliknutím so stlačeným klávesom %MOD1? Zrušte zaškrtnutie poľa „Na otvorenie hypertextových odkazov vyžadovať %MOD1-klik“ v Nástroje ▸ Možnosti ▸ %PRODUCTNAME ▸ Bezpečnosť ▸ Možnosti ▸ Možnosti zabezpečenia." #. cCnpG #: cui/inc/tipoftheday.hrc:146 @@ -2981,13 +2981,13 @@ #: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Date acceptance patterns to tweak the pattern." -msgstr "Nerozpoznáva sa správne dátum? Vhodné masky nastavíte v Nástroje ▸ Možnosti ▸ Nastavenia jazyka ▸ Jazyky ▸ Rozpoznávané formáty dátumov." +msgstr "Nerozpoznáva sa správne dátum? Vhodné masky nastavíte v Nástroje ▸ Možnosti ▸ Nastavenie jazyka ▸ Jazyky ▸ Rozpoznávané formáty dátumov." #. MZyXB #: 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 "Chcete exportovať vzorce do CSV? Súbor ▸ Uložiť ako ▸ Typ: Text CSV, zaškrtnite 'Upraviť nastavenia filtra' a v ďalšom okne zaškrtnite 'Uložiť vzorce namiesto vypočítaných hodnôt'." +msgstr "Chcete exportovať vzorce do CSV? Súbor ▸ Uložiť ako ▸ Typ: Text CSV, zaškrtnite 'Upraviť nastavenie filtra' a v ďalšom okne zaškrtnite 'Uložiť vzorce namiesto vypočítaných hodnôt'." #. XLN9z #: cui/inc/tipoftheday.hrc:186 @@ -3049,7 +3049,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 "Chcete v Calc v jednom kroku presunúť stĺpec medzi dva iné? Kliknite na záhlavie a potom na nejakú bunku tohto stĺpca a so stlačeným tlačidlom myši a klávesom %MOD2 ho presuňte na požadované miesto." +msgstr "Chcete v Calc v jednom kroku presunúť stĺpec medzi dva iné? Kliknite na hlavičku a potom na nejakú bunku tohto stĺpca a so stlačeným tlačidlom myši a klávesom %MOD2 ho presuňte na požadované miesto." #. 3xJeA #: cui/inc/tipoftheday.hrc:196 @@ -3094,7 +3094,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 "Ak chcete ponechať záhlavia stĺpcov pri posúvaní riadkov viditeľné, vyberte Zobraziť ▸ Ukotviť bunky ▸ Ukotviť prvý riadok." +msgstr "Ak chcete ponechať hlavičky stĺpcov pri posúvaní riadkov viditeľné, vyberte Zobraziť ▸ Ukotviť bunky ▸ Ukotviť prvý riadok." #. mCfdK #: cui/inc/tipoftheday.hrc:203 @@ -3173,7 +3173,7 @@ #: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages for Documents ▸ Asian (and make the button visible with right-click and then Visible Buttons ▸ Vertical Text)." -msgstr "Ak chcete nástroj „Vertikálny text“ sprístupniť na paneli s nástrojmi Kresba, zaškrtnite políčka Nástroje ▸ Možnosti ▸ Nastavenia jazyka ▸ Jazyky ▸ Predvolené jazyky dokumentov ▸ Ázijské (a kliknutím pravým tlačidlom myši zviditeľnite tlačidlo a potom Viditeľné tlačidlá ▸ Zvislý text)." +msgstr "Ak chcete nástroj „Vertikálny text“ sprístupniť na paneli s nástrojmi Kresba, zaškrtnite políčka Nástroje ▸ Možnosti ▸ Nastavenie jazyka ▸ Jazyky ▸ Predvolené jazyky dokumentov ▸ Ázijské (a kliknutím pravým tlačidlom myši zviditeľnite tlačidlo a potom Viditeľné tlačidlá ▸ Zvislý text)." #. mmG7g #: cui/inc/tipoftheday.hrc:216 @@ -3272,7 +3272,7 @@ #: 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 "Pomocou Nástroje ▸ Automatický text ▸ Autom. text ▸ Importovať môžete vybrať dokument či šablónu Wordu obsahujúce položky importovaného automatického textu." +msgstr "Pomocou Nástroje ▸ Automatický text ▸ Automatický text ▸ Importovať môžete vybrať dokument či šablónu Wordu obsahujúce položky importovaného automatického textu." #. kwxqQ #: cui/inc/tipoftheday.hrc:232 @@ -3618,7 +3618,7 @@ #: 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 "Štandardné používateľské rozhranie, ale iba s jedným panelom nástrojov. Určené na použitie na malých obrazovkách." +msgstr "Štandardné používateľské rozhranie, ale len s jedným panelom nástrojov. Určené na použitie na malých obrazovkách." #. wKg2Q #: cui/inc/toolbarmode.hrc:26 @@ -4426,7 +4426,7 @@ #: cui/uiconfig/ui/accelconfigpage.ui:212 msgctxt "accelconfigpage|change" msgid "_Modify" -msgstr "_Upraviť" +msgstr "_Zmeniť" #. F2oLa #: cui/uiconfig/ui/accelconfigpage.ui:219 @@ -4552,7 +4552,7 @@ #: cui/uiconfig/ui/acorexceptpage.ui:73 msgctxt "acorexceptpage|autoabbrev" msgid "Automatically add to the exception list if autocorrection is immediately undone." -msgstr "Ak je automatická oprava okamžite zrušená, automaticky sa vloží do zoznamu výnimiek." +msgstr "Ak je automatická oprava okamžite zrušená, vloží sa do zoznamu výnimiek." #. 7qDG3 #: cui/uiconfig/ui/acorexceptpage.ui:76 @@ -4606,7 +4606,7 @@ #: cui/uiconfig/ui/acorexceptpage.ui:264 msgctxt "acorexceptpage|autodouble" msgid "Automatically add to the exception list if autocorrection is immediately undone." -msgstr "Automaticky doplní zoznam výnimiek, ak je automatická oprava okamžite zrušená." +msgstr "Ak je automatická oprava okamžite zrušená, vloží sa do zoznamu výnimiek." #. 7u9Af #: cui/uiconfig/ui/acorexceptpage.ui:267 @@ -4714,7 +4714,7 @@ #: cui/uiconfig/ui/acorreplacepage.ui:232 msgctxt "acorreplacepage|textonly" msgid "_Text only" -msgstr "Iba _text" +msgstr "Len _text" #. 784tz #: cui/uiconfig/ui/acorreplacepage.ui:240 @@ -4732,7 +4732,7 @@ #: cui/uiconfig/ui/additionsdialog.ui:12 msgctxt "customanimationfragment|90" msgid "Active version only" -msgstr "Iba aktívna verzia" +msgstr "Len aktívna verzia" #. 6ZZPG #: cui/uiconfig/ui/additionsdialog.ui:25 @@ -5495,7 +5495,7 @@ #: cui/uiconfig/ui/baselinksdialog.ui:290 msgctxt "baselinksdialog|UPDATE" msgid "Update:" -msgstr "Aktualizácia:" +msgstr "Aktualizovať:" #. NpTPK #: cui/uiconfig/ui/baselinksdialog.ui:356 @@ -5507,7 +5507,7 @@ #: cui/uiconfig/ui/baselinksdialog.ui:365 msgctxt "baselinksdialog|extended_tip|AUTOMATIC" msgid "Automatically updates the contents of the link when you open the file. Any changes made in the source file are then displayed in the file containing the link. Linked graphic files can only be updated manually." -msgstr "Po otvorení súboru sa automaticky aktualizuje obsah odkazu. Všetky zmeny vykonané v zdrojovom súbore sa potom zobrazia v súbore obsahujúcom odkaz. Prepojené grafické súbory je možné aktualizovať iba manuálne." +msgstr "Po otvorení súboru sa automaticky aktualizuje obsah odkazu. Všetky zmeny vykonané v zdrojovom súbore sa potom zobrazia v súbore obsahujúcom odkaz. Prepojené grafické súbory je možné aktualizovať len manuálne." #. GzGG5 #: cui/uiconfig/ui/baselinksdialog.ui:376 @@ -5579,7 +5579,7 @@ #: cui/uiconfig/ui/borderpage.ui:91 msgctxt "borderpage|userdefft" msgid "_User-defined:" -msgstr "_Používateľom definované:" +msgstr "Definované _používateľom" #. sRXeg #: cui/uiconfig/ui/borderpage.ui:107 @@ -5711,7 +5711,7 @@ #: cui/uiconfig/ui/borderpage.ui:537 msgctxt "borderpage|label22" msgid "_Position:" -msgstr "_Umiestnenie:" +msgstr "_Poloha:" #. 8ojCs #: cui/uiconfig/ui/borderpage.ui:551 @@ -6221,7 +6221,7 @@ #: cui/uiconfig/ui/calloutpage.ui:190 msgctxt "calloutpage|positionft" msgid "_Position:" -msgstr "_Umiestnenie:" +msgstr "_Poloha:" #. EXWoL #: cui/uiconfig/ui/calloutpage.ui:204 @@ -6269,19 +6269,19 @@ #: cui/uiconfig/ui/calloutpage.ui:228 msgctxt "calloutpage|extended_tip|position" msgid "Select where you want to extend the callout line from, in relation to the callout box." -msgstr "Vyberte miesto, z ktorého chcete viesť čiaru bubliny, vo vzťahu k bubline s s textom." +msgstr "Vyberte miesto, z ktorého chcete viesť čiaru bubliny, vo vzťahu k bubline s textom." #. rj7LU #: cui/uiconfig/ui/calloutpage.ui:248 msgctxt "calloutpage|extended_tip|by" msgid "Select where you want to extend the callout line from, in relation to the callout box." -msgstr "Vyberte miesto, z ktorého chcete viesť čiaru bubliny, vo vzťahu k bubline s s textom." +msgstr "Vyberte miesto, z ktorého chcete viesť čiaru bubliny, vo vzťahu k bubline s textom." #. jG4AE #: cui/uiconfig/ui/calloutpage.ui:273 msgctxt "calloutpage|label1" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. 9SDGt #: cui/uiconfig/ui/calloutpage.ui:294 @@ -6359,7 +6359,7 @@ #: cui/uiconfig/ui/cellalignment.ui:153 msgctxt "cellalignment|extended_tip|checkAsianMode" msgid "Aligns Asian characters one below the other in the selected cell(s). If the cell contains more than one line of text, the lines are converted to text columns that are arranged from right to left. Western characters in the converted text are rotated 90 degrees to the right. Asian characters are not rotated." -msgstr "Zarovná ázijské znaky pod seba vo vybraných bunkách. Ak bunka obsahuje viac ako jeden riadok textu, riadky sa prevedú na textové stĺpce, ktoré sú usporiadané sprava doľava. Západné znaky v prevedenom texte sú otočené o 90 stupňov doprava. Ázijské znaky sa neotáčajú." +msgstr "Zarovná ázijské znaky pod seba vo vybraných bunkách. Ak bunka obsahuje viac ako jeden riadok textu, riadky sa konvertujú na textové stĺpce, ktoré sú usporiadané sprava doľava. Západné znaky v skonvertovanom texte sú otočené o 90 stupňov doprava. Ázijské znaky sa neotáčajú." #. rTfQa #: cui/uiconfig/ui/cellalignment.ui:177 @@ -6437,7 +6437,7 @@ #: cui/uiconfig/ui/cellalignment.ui:391 msgctxt "cellalignment|labelVertAlign" msgid "_Vertical:" -msgstr "Z_visle:" +msgstr "Z_vislé:" #. mF2bB #: cui/uiconfig/ui/cellalignment.ui:405 @@ -7995,13 +7995,13 @@ #: cui/uiconfig/ui/cuiimapdlg.ui:245 msgctxt "cuiimapdlg|label4" msgid "_Text Alternative:" -msgstr "Alter_natívny text:" +msgstr "_Alternatívny text:" #. EP7Gk #: cui/uiconfig/ui/cuiimapdlg.ui:246 msgctxt "cuiimapdlg|label4" msgid "Enter a short description of essential features of the image map for persons who do not see the image." -msgstr "Zadajte krátky popis základných prvkov obrázkovej mapy pre osoby, ktoré obrázok neuvidia." +msgstr "Zadajte krátky popis základných prvkov obrázkovej mapy pre osoby, ktoré obrázok nevidia." #. YrTXB #: cui/uiconfig/ui/cuiimapdlg.ui:266 @@ -8379,7 +8379,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 "Toto vstupné pole je k dispozícii iba ak upravujete slovník výnimiek alebo vlastný slovník závislý od jazyka. V slovníkoch výnimiek pole zobrazuje alternatívny návrh pre aktuálne slovo v textovom poli „Slovo“. V jazykovo závislých vlastných slovníkoch pole obsahuje známe koreňové slovo ako model jeho použitia v zložených slovách. Napríklad v nemeckom vlastnom slovníku nové slovo „Litschi“ (liči) s modelovým slovom „Gummi“ (guma) bude mať za následok uznanie výrazov „Litschis“ (liči), „Litschibaum“ (liči), „Litschifrucht“. (liči ovocie) atď." +msgstr "Toto vstupné pole je k dispozícii len ak upravujete slovník výnimiek alebo vlastný slovník závislý od jazyka. V slovníkoch výnimiek pole zobrazuje alternatívny návrh pre aktuálne slovo v textovom poli „Slovo“. V jazykovo závislých vlastných slovníkoch pole obsahuje známe koreňové slovo ako model jeho použitia v zložených slovách. Napríklad v nemeckom vlastnom slovníku nové slovo „Litschi“ (liči) s modelovým slovom „Gummi“ (guma) bude mať za následok uznanie výrazov „Litschis“ (liči), „Litschibaum“ (liči), „Litschifrucht“. (liči ovocie) atď." #. 5EwBs #: cui/uiconfig/ui/editdictionarydialog.ui:203 @@ -8811,13 +8811,13 @@ #: cui/uiconfig/ui/effectspage.ui:387 msgctxt "effectspage|extended_tip|overlinelb" msgid "Select the overlining style that you want to apply. To apply the overlining to words only, select the Individual Words box." -msgstr "Vyberte štýl nadčiarknutia, ktorý chcete použiť. Ak chcete použiť nadčiarknutie iba na slová, zaškrtnite pole Jednotlivé slová." +msgstr "Vyberte štýl nadčiarknutia, ktorý chcete použiť. Ak chcete použiť nadčiarknutie len na slová, zaškrtnite pole Jednotlivé slová." #. jbrhD #: cui/uiconfig/ui/effectspage.ui:421 msgctxt "effectspage|extended_tip|underlinelb" msgid "Select the underlining style that you want to apply. To apply the underlining to words only, select the Individual Words box." -msgstr "Vyberte štýl podčiarknutia, ktorý chcete použiť. Ak chcete použiť podčiarknutie iba na slová, zaškrtnite pole Jednotlivé slová." +msgstr "Vyberte štýl podčiarknutia, ktorý chcete použiť. Ak chcete použiť podčiarknutie len na slová, zaškrtnite pole Jednotlivé slová." #. FgNij #: cui/uiconfig/ui/effectspage.ui:435 @@ -8883,7 +8883,7 @@ #: cui/uiconfig/ui/effectspage.ui:509 msgctxt "effectspage|extended_tip|individualwordscb" msgid "Applies the selected effect only to words and ignores spaces." -msgstr "Aplikuje vybraný efekt iba na slová a ignoruje medzery." +msgstr "Aplikuje vybraný efekt len na slová a ignoruje medzery." #. oFKJN #: cui/uiconfig/ui/effectspage.ui:553 @@ -9279,7 +9279,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:486 msgctxt "fmsearchdialog|ftPosition" msgid "_Position:" -msgstr "_Umiestnenie:" +msgstr "_Poloha:" #. BLRj3 #: cui/uiconfig/ui/fmsearchdialog.ui:504 @@ -9712,7 +9712,7 @@ #: cui/uiconfig/ui/gradientpage.ui:130 msgctxt "gradientpage|modify" msgid "_Modify" -msgstr "_Upraviť" +msgstr "_Zmeniť" #. EeXWP #: cui/uiconfig/ui/gradientpage.ui:137 @@ -9784,7 +9784,7 @@ #: cui/uiconfig/ui/gradientpage.ui:283 msgctxt "gradientpage|autoincrement" msgid "A_utomatic" -msgstr "A_utomaticky" +msgstr "_Automatický" #. LAhqj #: cui/uiconfig/ui/gradientpage.ui:315 @@ -10132,7 +10132,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597 msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly" msgid "Check to convert only Hangul. Do not convert Hanja." -msgstr "Zaškrtnutím tejto možnosti sa skonvertuje iba Hangul, neskonvertuje sa Hanča." +msgstr "Zaškrtnutím tejto možnosti sa skonvertuje len Hangul, neskonvertuje sa Hanča." #. r3HDY #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609 @@ -10144,7 +10144,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617 msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly" msgid "Check to convert only Hanja. Do not convert Hangul." -msgstr "Zaškrtnutím tejto možnosti sa skonvertuje iba Hanča, neskonvertuje sa Hangul." +msgstr "Zaškrtnutím tejto možnosti sa skonvertuje len Hanča, neskonvertuje sa Hangul." #. db8Nj #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650 @@ -10222,7 +10222,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787 msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog" msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul." -msgstr "Prevedie vybraný kórejský text z písma Hangul do písma Hanča alebo z písma Hanča do písma Hangul." +msgstr "Konvertuje vybraný kórejský text z písma Hangul do písma Hanča alebo z písma Hanča do písma Hangul." #. XiQXK #: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:8 @@ -10378,7 +10378,7 @@ #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:322 msgctxt "hangulhanjaoptdialog|extended_tip|autoreplaceunique" msgid "Automatically replaces words that only have one suggested word replacement." -msgstr "Automaticky nahradí slová, ktoré majú iba jednu navrhnutú náhradu." +msgstr "Automaticky nahradí slová, ktoré majú len jednu navrhnutú náhradu." #. Bdqne #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:337 @@ -10396,7 +10396,7 @@ #: cui/uiconfig/ui/hatchpage.ui:97 msgctxt "hatchpage|modify" msgid "_Modify" -msgstr "_Upraviť" +msgstr "_Zmeniť" #. 5VuZv #: cui/uiconfig/ui/hatchpage.ui:104 @@ -10414,7 +10414,7 @@ #: cui/uiconfig/ui/hatchpage.ui:163 msgctxt "hatchpage|distanceft" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. 5Psyb #: cui/uiconfig/ui/hatchpage.ui:182 @@ -10696,7 +10696,7 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:341 msgctxt "hyperlinkdocpage|form_label" msgid "F_orm:" -msgstr "F_orma:" +msgstr "F_ormulár:" #. 6TBzX #: cui/uiconfig/ui/hyperlinkdocpage.ui:358 @@ -10852,7 +10852,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:351 msgctxt "hyperlinkinternetpage|form_label" msgid "F_orm:" -msgstr "F_orma:" +msgstr "F_ormulár:" #. QPMun #: cui/uiconfig/ui/hyperlinkinternetpage.ui:368 @@ -10966,7 +10966,7 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:266 msgctxt "hyperlinkmailpage|form_label" msgid "F_orm:" -msgstr "F_orma:" +msgstr "F_ormulár:" #. ckEPR #: cui/uiconfig/ui/hyperlinkmailpage.ui:283 @@ -11140,7 +11140,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:351 msgctxt "hyperlinknewdocpage|form_label" msgid "F_orm:" -msgstr "F_orma:" +msgstr "F_ormulár:" #. fARTX #: cui/uiconfig/ui/hyperlinknewdocpage.ui:367 @@ -11236,13 +11236,13 @@ #: cui/uiconfig/ui/hyphenate.ui:216 msgctxt "hyphenate|extended_tip|left" msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed." -msgstr "Nastavte pozíciu rozdeľovacieho znamienka. Táto možnosť je k dispozícii, iba ak je zobrazených viac ako jeden návrh delenia slov." +msgstr "Nastavte pozíciu rozdeľovacieho znamienka. Táto možnosť je k dispozícii, len ak je zobrazených viac ako jeden návrh delenia slov." #. 5gKXt #: cui/uiconfig/ui/hyphenate.ui:235 msgctxt "hyphenate|extended_tip|right" msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed." -msgstr "Nastavte pozíciu rozdeľovacieho znamienka. Táto možnosť je k dispozícii, iba ak je zobrazených viac ako jeden návrh delenia slov." +msgstr "Nastavte pozíciu rozdeľovacieho znamienka. Táto možnosť je k dispozícii, len ak je zobrazených viac ako jeden návrh delenia slov." #. 8QHd8 #: cui/uiconfig/ui/hyphenate.ui:273 @@ -11294,7 +11294,7 @@ #: cui/uiconfig/ui/iconselectordialog.ui:187 msgctxt "iconselectordialog|extended_tip|deleteButton" msgid "Click to remove the selected icon from the list. Only user-defined icons can be removed." -msgstr "Kliknutím odstránite vybranú ikonu zo zoznamu. Odstrániť možno iba ikony definované používateľom." +msgstr "Kliknutím odstránite vybranú ikonu zo zoznamu. Odstrániť možno len ikony definované používateľom." #. C4HU9 #: cui/uiconfig/ui/iconselectordialog.ui:216 @@ -11486,7 +11486,7 @@ #: cui/uiconfig/ui/imagetabpage.ui:576 msgctxt "imagetabpage|label8" msgid "Preview" -msgstr "Náȟľad" +msgstr "Náhľad" #. TokEG #: cui/uiconfig/ui/imagetabpage.ui:592 @@ -12092,7 +12092,7 @@ #: cui/uiconfig/ui/linestyletabpage.ui:141 msgctxt "linestyletabpage|FT_DISTANCE" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. LyV8a #: cui/uiconfig/ui/linestyletabpage.ui:157 @@ -12124,7 +12124,7 @@ #: cui/uiconfig/ui/linestyletabpage.ui:345 msgctxt "linestyletabpage|BTN_MODIFY" msgid "_Modify" -msgstr "_Upraviť" +msgstr "_Zmeniť" #. wuhfR #: cui/uiconfig/ui/linestyletabpage.ui:366 @@ -12532,13 +12532,13 @@ #: cui/uiconfig/ui/menuassignpage.ui:224 msgctxt "menuassignpage|gear_iconOnly" msgid "Icon _only" -msgstr "Iba _ikona" +msgstr "Len _ikona" #. DCnZr #: cui/uiconfig/ui/menuassignpage.ui:234 msgctxt "menuassignpage|gear_textOnly" msgid "_Text only" -msgstr "Iba _text" +msgstr "Len _text" #. vJPYK #: cui/uiconfig/ui/menuassignpage.ui:264 @@ -12604,7 +12604,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:445 msgctxt "menuassignpage|extended_tip|savein" msgid "Select the location where the menu is to be attached. If attached to an office suite module, the menu is available for all files opened in that module. If attached to the file, the menu will be available only when that file is opened and active." -msgstr "Vyberte umiestnenie, do ktorého sa má menu pridať. Ak je pridané k modulu balíka, menu bude k dispozícii pre všetky súbory otvorené v danom module. Ak je pridané k súboru, menu bude k dispozícii iba vtedy, keď je daný súbor otvorený a aktívny." +msgstr "Vyberte umiestnenie, do ktorého sa má menu pridať. Ak je pridané k modulu balíka, menu bude k dispozícii pre všetky súbory otvorené v danom module. Ak je pridané k súboru, menu bude k dispozícii len vtedy, keď je daný súbor otvorený a aktívny." #. D35vJ #: cui/uiconfig/ui/menuassignpage.ui:456 @@ -12652,7 +12652,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:710 msgctxt "menuassignpage|modify" msgid "_Modify" -msgstr "_Upraviť" +msgstr "_Zmeniť" #. Cwu32 #: cui/uiconfig/ui/menuassignpage.ui:734 @@ -12694,7 +12694,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:856 msgctxt "menuassignpage|moveupbtn" msgid "Move up" -msgstr "Presunúť vyššie" +msgstr "Presunúť nahor" #. BH9fq #: cui/uiconfig/ui/menuassignpage.ui:861 @@ -12706,7 +12706,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:875 msgctxt "menuassignpage|movedownbtn" msgid "Move down" -msgstr "Presunúť nižšie" +msgstr "Presunúť nadol" #. RCKEK #: cui/uiconfig/ui/menuassignpage.ui:880 @@ -13700,7 +13700,7 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:92 msgctxt "objecttitledescdialog|object_title_label" msgid "_Text Alternative:" -msgstr "Alter_natívny text:" +msgstr "_Alternatívny text:" #. Ge74Q #: cui/uiconfig/ui/objecttitledescdialog.ui:94 @@ -13760,7 +13760,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:55 msgctxt "extended_tip|textselinreadonly" msgid "Displays cursor in read-only documents." -msgstr "Zobrazí kurzor v dokumentoch iba na čítanie." +msgstr "Zobrazí kurzor v dokumentoch len na čítanie." #. APEfF #: cui/uiconfig/ui/optaccessibilitypage.ui:67 @@ -13814,7 +13814,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:168 msgctxt "extended_tip|autofontcolor" msgid "Displays fonts in the office suite using the system color settings. This option only affects the screen display." -msgstr "Zobrazí písma kancelárskeho balíka s použitím systémového nastavenia farieb. Toto nastavenie ovplyvňuje iba zobrazenia na obrazovke." +msgstr "Zobrazí písma kancelárskeho balíka s použitím systémového nastavenia farieb. Toto nastavenie ovplyvňuje len zobrazenia na obrazovke." #. n24Cd #: cui/uiconfig/ui/optaccessibilitypage.ui:180 @@ -14042,7 +14042,7 @@ #: cui/uiconfig/ui/optasianpage.ui:27 msgctxt "optasianpage|charkerning" msgid "_Western text only" -msgstr "Iba _západný text" +msgstr "Len _západný text" #. QCvQv #: cui/uiconfig/ui/optasianpage.ui:36 @@ -14084,13 +14084,13 @@ #: cui/uiconfig/ui/optasianpage.ui:122 msgctxt "optasianpage|punctcompression" msgid "_Compress punctuation only" -msgstr "_Komprimovať iba interpunkciu" +msgstr "_Komprimovať len interpunkciu" #. 8FYbX #: cui/uiconfig/ui/optasianpage.ui:131 msgctxt "extended_tip|punctcompression" msgid "Specifies that only the punctuation is compressed." -msgstr "Komprimuje sa iba interpunkcia." +msgstr "Komprimuje sa len interpunkcia." #. aGY7H #: cui/uiconfig/ui/optasianpage.ui:143 @@ -14378,13 +14378,13 @@ #: cui/uiconfig/ui/optctlpage.ui:232 msgctxt "optctlpage|numerals" msgid "Arabic (1, 2, 3…)" -msgstr "Arabské (1, 2, 3…)" +msgstr "Arabské (1, 2, 3...)" #. 2n6dr #: cui/uiconfig/ui/optctlpage.ui:233 msgctxt "optctlpage|numerals" msgid "Eastern Arabic (٣ ,٢ ,١…)" -msgstr "Východoarabské (٣ ,٢ ,١…)" +msgstr "Východoarabské (٣ ,٢ ,١...)" #. uFBEA #: cui/uiconfig/ui/optctlpage.ui:234 @@ -14724,7 +14724,7 @@ #: cui/uiconfig/ui/optfontspage.ui:196 msgctxt "extended_tip | checklb" msgid "Lists the original font and the font that will replace it. Select Always to replace the font, even if the original font is installed on your system. Select Screen only to replace the screen font only and never replace the font for printing." -msgstr "Vypisuje zoznam pôvodných písiem a písiem, ktoré nahradí. Pre nahradenie obrazovkového písma aj písma tlačiarne, aj keď je originálne písmo nainštalované v systéme, vyberte Vždy. Pre nahradenie písma iba na obrazovke a nie pri tlači zvoľte Len na obrazovke." +msgstr "Vypisuje zoznam pôvodných písiem a písiem, ktoré nahradí. Pre nahradenie obrazovkového písma aj písma tlačiarne, aj keď je originálne písmo nainštalované v systéme, vyberte Vždy. Pre nahradenie písma len na obrazovke a nie pri tlači zvoľte Len na obrazovke." #. BGoZq #: cui/uiconfig/ui/optfontspage.ui:226 @@ -14754,7 +14754,7 @@ #: cui/uiconfig/ui/optfontspage.ui:307 msgctxt "extended_tip | replacements" msgid "Substitutes a font with a font of your choice. The substitution replaces a font only when it is displayed on screen, or on screen and when printing. The replacement does not change the font settings that are saved in the document." -msgstr "Nahradí písmo podľa vášho výberu. Písmo sa nahrádza buď iba pri zobrazení, alebo pri zobrazení a tlači. Nemení sa písmo určené vo formátovaní dokumentu." +msgstr "Nahradí písmo podľa vášho výberu. Písmo sa nahrádza buď len pri zobrazení, alebo pri zobrazení a tlači. Nemení sa písmo určené vo formátovaní dokumentu." #. 7ECDC #: cui/uiconfig/ui/optfontspage.ui:319 @@ -14808,7 +14808,7 @@ #: cui/uiconfig/ui/optfontspage.ui:431 msgctxt "extended_tip | nonpropfontonly" msgid "Check to display only non-proportional fonts in the Fonts list box." -msgstr "Ak zaškrtnete toto pole, zobrazia sa v zozname Písma iba neproporcionálne písma." +msgstr "Ak zaškrtnete toto pole, zobrazia sa v zozname Písma len neproporcionálne písma." #. GAiec #: cui/uiconfig/ui/optfontspage.ui:448 @@ -15162,7 +15162,7 @@ #: cui/uiconfig/ui/optionsdialog.ui:54 msgctxt "optionsdialog|revert" msgid "Unsaved modifications to this tab are reverted." -msgstr "Neuložené úpravy tejto karty budú zrušené." +msgstr "Neuložené zmeny na tejto karte budú zrušené." #. 5UNGW #: cui/uiconfig/ui/optionsdialog.ui:57 @@ -15480,7 +15480,7 @@ #: cui/uiconfig/ui/optlanguagespage.ui:222 msgctxt "optlanguagespage|currentdoc" msgid "For the current document only" -msgstr "Iba pre aktuálny dokument" +msgstr "Len pre aktuálny dokument" #. Xg3qT #: cui/uiconfig/ui/optlanguagespage.ui:231 @@ -17131,7 +17131,7 @@ #: cui/uiconfig/ui/optviewpage.ui:175 msgctxt "optviewpage|menuicons" msgid "Show" -msgstr "Ukázať" +msgstr "Zobraziť" #. CpRAh #: cui/uiconfig/ui/optviewpage.ui:179 @@ -17155,7 +17155,7 @@ #: cui/uiconfig/ui/optviewpage.ui:209 msgctxt "optviewpage|contextmenushortcuts" msgid "Show" -msgstr "Ukázať" +msgstr "Zobraziť" #. ZutFR #: cui/uiconfig/ui/optviewpage.ui:221 @@ -17576,13 +17576,13 @@ #: cui/uiconfig/ui/pageformatpage.ui:572 msgctxt "pageformatpage|liststorePageLayout" msgid "Only right" -msgstr "Iba vpravo" +msgstr "Len vpravo" #. ALSy9 #: cui/uiconfig/ui/pageformatpage.ui:573 msgctxt "pageformatpage|liststorePageLayout" msgid "Only left" -msgstr "Iba vľavo" +msgstr "Len vľavo" #. Fhvzk #: cui/uiconfig/ui/pageformatpage.ui:595 @@ -17655,7 +17655,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:724 msgctxt "extended_tip|checkBackgroundFullSize" msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins." -msgstr "Ak je povolené, pozadie bude prekrývať celú stránku vrátane okrajov. Ak je zakázané, pozadie bude prekrývať iba stránku medzi okrajmi." +msgstr "Ak je povolené, pozadie bude prekrývať celú stránku vrátane okrajov. Ak je zakázané, pozadie bude prekrývať len stránku medzi okrajmi." #. xdECe #: cui/uiconfig/ui/pageformatpage.ui:754 @@ -17883,7 +17883,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:336 msgctxt "paraindentspacing|labelFL_VERTALIGN" msgid "Spacing" -msgstr "Riadkový preklad" +msgstr "Rozostupy" #. vuFhh #: cui/uiconfig/ui/paraindentspacing.ui:378 @@ -18076,13 +18076,13 @@ #: cui/uiconfig/ui/password.ui:117 msgctxt "password|extended_tip|confirmpassEntry" msgid "Re-enter the password." -msgstr "Znova zadajte heslo." +msgstr "Opakovane zadajte heslo." #. vMhFF #: cui/uiconfig/ui/password.ui:130 msgctxt "password|label1" msgid "Note: After a password has been set, the document will only open with the password. Should you lose the password, there will be no way to recover the document. Please also note that this password is case-sensitive." -msgstr "Poznámka: Po nastavení hesla sa dokument možno otvoriť iba s heslom. Ak heslo zabudnete, dokument nebude možné žiadnym spôsobom obnoviť. Upozornenie: Pri hesle záleží na veľkosti písmen." +msgstr "Poznámka: Po nastavení hesla sa dokument možno otvoriť len s heslom. Ak heslo zabudnete, dokument nebude možné žiadnym spôsobom obnoviť. Upozornenie: Pri hesle záleží na veľkosti písmen." #. scLkF #: cui/uiconfig/ui/password.ui:162 @@ -18184,7 +18184,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:83 msgctxt "patterntabpage|BTN_MODIFY" msgid "_Modify" -msgstr "_Upraviť" +msgstr "_Zmeniť" #. 4LFRB #: cui/uiconfig/ui/patterntabpage.ui:90 @@ -20090,7 +20090,7 @@ #: cui/uiconfig/ui/specialcharacters.ui:123 msgctxt "specialcharacters|fontft" msgid "Font:" -msgstr "Font:" +msgstr "Písmo:" #. 3LCFE #: cui/uiconfig/ui/specialcharacters.ui:137 @@ -21098,7 +21098,7 @@ #: cui/uiconfig/ui/textcolumnstabpage.ui:51 msgctxt "textcolumnstabpage|labelColSpacing" msgid "_Spacing:" -msgstr "Rozo_stupy" +msgstr "_Rozostupy" #. cpMdh #: cui/uiconfig/ui/textcolumnstabpage.ui:71 diff -Nru libreoffice-7.4.6/translations/source/sk/dbaccess/messages.po libreoffice-7.4.7/translations/source/sk/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/sk/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/dbaccess/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2022-06-06 17:38+0000\n" +"PO-Revision-Date: 2023-03-27 21:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562264806.000000\n" #. BiN6g @@ -52,7 +52,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -92,7 +92,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -1489,7 +1489,7 @@ "Should a primary key be created now?" msgstr "" "Na identifikáciu záznamov v tejto databáze je potrebný jednoznačný index alebo primárny kľúč. \n" -"Do tejto tabuľky možno vkladať dáta iba ak je splnená niektorá z týchto podmienok. \n" +"Do tejto tabuľky možno vkladať dáta len ak je splnená niektorá z týchto podmienok. \n" "\n" "Má byť teraz vytvorený primárny kľúč?" @@ -1750,7 +1750,7 @@ #: dbaccess/inc/strings.hrc:305 msgctxt "STR_UNDO_COLON" msgid "Undo:" -msgstr "Späť:" +msgstr "Vrátiť:" #. aje2A #: dbaccess/inc/strings.hrc:306 @@ -2189,7 +2189,7 @@ #: dbaccess/inc/strings.hrc:382 msgctxt "STR_TEXT_HELPTEXT" msgid "Select the folder where the CSV (Comma Separated Values) text files are stored. %PRODUCTNAME Base will open these files in read-only mode." -msgstr "Vyberte priečinok, kde sú uložené textové súbory CSV (Comma Separated Values). %PRODUCTNAME Base ich otvorí iba na čítanie." +msgstr "Vyberte priečinok, kde sú uložené textové súbory CSV (Comma Separated Values). %PRODUCTNAME Base ich otvorí len na čítanie." #. chkNh #: dbaccess/inc/strings.hrc:383 @@ -2303,7 +2303,7 @@ "%PRODUCTNAME will open this file in read-only mode." msgstr "" "Kliknite 'Prehľadávať...' pre vybranie zošita %PRODUCTNAME alebo súboru programu Microsoft Excel.\n" -"%PRODUCTNAME ho otvorí iba na čítanie." +"%PRODUCTNAME ho otvorí len na čítanie." #. fxmJG #: dbaccess/inc/strings.hrc:398 @@ -4026,7 +4026,7 @@ #: dbaccess/uiconfig/ui/parametersdialog.ui:183 msgctxt "parametersdialog|next" msgid "_Next" -msgstr "Ďa_lší" +msgstr "_Nasledujúci" #. xirKR #: dbaccess/uiconfig/ui/parametersdialog.ui:209 @@ -4698,7 +4698,7 @@ #: dbaccess/uiconfig/ui/specialsettingspage.ui:32 msgctxt "specialsettingspage|extended_tip|usesql92" msgid "Only allows characters that conform to the SQL92 naming convention in a name in a data source. All other characters are rejected. Each name must begin with a lowercase letter, an uppercase letter, or an underscore ( _ ). The remaining characters can be ASCII letters, numbers, and underscores." -msgstr "Povoľuje iba názvy, ktoré v zdroji údajov používajú znaky zodpovedajúce pravidlám podľa SQL92. Ostatné názvy sú zamietnuté. Každý názov musí začínať malým alebo veľkým písmenom alebo podčiarkovníkom (_). Ostatné znaky môžu byť ASCII písmená, čísla a podčiarkovníky." +msgstr "Povoľuje len názvy, ktoré v zdroji údajov používajú znaky zodpovedajúce pravidlám podľa SQL92. Ostatné názvy sú zamietnuté. Každý názov musí začínať malým alebo veľkým písmenom alebo podčiarkovníkom (_). Ostatné znaky môžu byť ASCII písmená, čísla a podčiarkovníky." #. Gwn9n #: dbaccess/uiconfig/ui/specialsettingspage.ui:43 @@ -4722,7 +4722,7 @@ #: dbaccess/uiconfig/ui/specialsettingspage.ui:70 msgctxt "specialsettingspage|extended_tip|useas" msgid "Some databases use the keyword \"AS\" between a name and its alias, while other databases use a whitespace. Enable this option to insert AS before the alias." -msgstr "Niektoré databázy používajú na oddelenie názvu a aliasu kľúčové slovo AS, zatiaľ čo iné používajú iba medzeru. Povolením tejto voľby zapnete vkladanie AS pred alias." +msgstr "Niektoré databázy používajú na oddelenie názvu a aliasu kľúčové slovo AS, zatiaľ čo iné používajú len medzeru. Povolením tejto voľby zapnete vkladanie AS pred alias." #. JDTsA #: dbaccess/uiconfig/ui/specialsettingspage.ui:81 diff -Nru libreoffice-7.4.6/translations/source/sk/desktop/messages.po libreoffice-7.4.7/translations/source/sk/desktop/messages.po --- libreoffice-7.4.6/translations/source/sk/desktop/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/desktop/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-05-10 13:18+0000\n" +"PO-Revision-Date: 2023-03-25 21:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1537729940.000000\n" #. v2iwK @@ -812,7 +812,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -852,7 +852,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -947,7 +947,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:232 msgctxt "extensionmanager|updatebtn" msgid "Check for _Updates" -msgstr "Skontrolovať _dostupnosť aktualizácií" +msgstr "Vyhľadať _aktualizácie" #. rirpA #: desktop/uiconfig/ui/extensionmanager.ui:239 diff -Nru libreoffice-7.4.6/translations/source/sk/dictionaries/en/dialog.po libreoffice-7.4.7/translations/source/sk/dictionaries/en/dialog.po --- libreoffice-7.4.6/translations/source/sk/dictionaries/en/dialog.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/dictionaries/en/dialog.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-11-04 14:30+0000\n" +"PO-Revision-Date: 2023-04-18 06:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1484835701.000000\n" #. fyB4s @@ -293,7 +293,7 @@ "others\n" "property.text" msgid "Others" -msgstr "Iné" +msgstr "Ďalšie" #. CxSeG #: en_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/sk/dictionaries/pt_BR/dialog.po libreoffice-7.4.7/translations/source/sk/dictionaries/pt_BR/dialog.po --- libreoffice-7.4.6/translations/source/sk/dictionaries/pt_BR/dialog.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/dictionaries/pt_BR/dialog.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2022-01-05 19:38+0000\n" +"PO-Revision-Date: 2023-04-18 06:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547557225.000000\n" #. Bshz7 @@ -313,7 +313,7 @@ "others\n" "property.text" msgid "Others" -msgstr "Iné" +msgstr "Ďalšie" #. ifGmB #: pt_BR_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/sk/dictionaries/ru_RU/dialog.po libreoffice-7.4.7/translations/source/sk/dictionaries/ru_RU/dialog.po --- libreoffice-7.4.6/translations/source/sk/dictionaries/ru_RU/dialog.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/dictionaries/ru_RU/dialog.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2018-11-22 21:10+0000\n" +"PO-Revision-Date: 2023-04-18 06:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542921022.000000\n" #. iXbyq @@ -122,7 +122,7 @@ "others\n" "property.text" msgid "Others" -msgstr "Iné" +msgstr "Ďalšie" #. m7eFp #: ru_RU_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/sk/editeng/messages.po libreoffice-7.4.7/translations/source/sk/editeng/messages.po --- libreoffice-7.4.6/translations/source/sk/editeng/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/editeng/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:49+0200\n" -"PO-Revision-Date: 2022-07-04 16:16+0000\n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1535471035.000000\n" #. BHYB4 @@ -115,7 +115,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -155,7 +155,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -196,7 +196,7 @@ #: editeng/uiconfig/ui/spellmenu.ui:70 msgctxt "spellmenu|autocorrectdlg" msgid "Auto_Correct Options..." -msgstr "_Nastavenia automatickej opravy..." +msgstr "_Nastavenie automatickej opravy..." #. CLbNC #. enum SvxBreak ------------------------------------------------------------ @@ -751,7 +751,7 @@ #: include/editeng/editrids.hrc:132 msgctxt "RID_SVXITEMS_CASEMAP_TITEL" msgid "Title" -msgstr "Prvé písmená veľké" +msgstr "Názov" #. A7PCZ #: include/editeng/editrids.hrc:133 @@ -1744,7 +1744,7 @@ #: include/editeng/editrids.hrc:308 msgctxt "RID_SVXSTR_DIC_ERR_READONLY" msgid "The dictionary is read-only." -msgstr "Slovník je iba na čítanie." +msgstr "Slovník je len na čítanie." #. SEotA #: include/editeng/editrids.hrc:310 diff -Nru libreoffice-7.4.6/translations/source/sk/extensions/messages.po libreoffice-7.4.7/translations/source/sk/extensions/messages.po --- libreoffice-7.4.6/translations/source/sk/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-03-08 07:39+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1555915899.000000\n" #. cBx8W @@ -52,7 +52,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -92,7 +92,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -109,7 +109,7 @@ #: extensions/inc/showhide.hrc:32 msgctxt "RID_RSC_ENUM_SHOWHIDE" msgid "Show" -msgstr "Ukázať" +msgstr "Zobraziť" #. jtRex #: extensions/inc/stringarrays.hrc:29 @@ -775,7 +775,7 @@ #: extensions/inc/stringarrays.hrc:243 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Paragraph" -msgstr "Na odsek" +msgstr "K odseku" #. WZ2Yp #: extensions/inc/stringarrays.hrc:244 @@ -799,7 +799,7 @@ #: extensions/inc/stringarrays.hrc:247 msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE" msgid "To Character" -msgstr "Na znak" +msgstr "K znaku" #. SrTFR #: extensions/inc/stringarrays.hrc:252 @@ -829,7 +829,7 @@ #: extensions/inc/strings.hrc:29 msgctxt "RID_STR_READONLY" msgid "Read-only" -msgstr "Iba na čítanie" +msgstr "Len na čítanie" #. Vmbbd #: extensions/inc/strings.hrc:30 @@ -1015,7 +1015,7 @@ #: extensions/inc/strings.hrc:60 msgctxt "RID_STR_SHOW_POSITION" msgid "Positioning" -msgstr "Umiestňovanie" +msgstr "Umiestnenie" #. fGkps #: extensions/inc/strings.hrc:61 @@ -1903,7 +1903,7 @@ #: extensions/inc/strings.hrc:208 msgctxt "RID_STR_XSD_READONLY" msgid "Read-only" -msgstr "Iba na čítanie" +msgstr "Len na čítanie" #. woANr #: extensions/inc/strings.hrc:209 @@ -2277,7 +2277,7 @@ #: extensions/inc/strings.hrc:275 msgctxt "RID_STR_PROPTITLE_COMBOBOX" msgid "Combo Box" -msgstr "Rozbaľovacie pole" +msgstr "Pole so zoznamom" #. 5474w #: extensions/inc/strings.hrc:276 @@ -3124,7 +3124,7 @@ msgstr "" "To boli všetky informácie potrebné na integráciu vašich adries do %PRODUCTNAME.\n" "\n" -"Teraz iba zadajte meno, pod ktorým chcete zaregistrovať dátový zdroj v %PRODUCTNAME." +"Teraz len zadajte meno, pod ktorým chcete zaregistrovať dátový zdroj v %PRODUCTNAME." #. LaR7Y #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:43 @@ -3166,7 +3166,7 @@ #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:134 msgctxt "datasourcepage|extended_tip|available" msgid "Registers the newly created database file in the office suite. The database will then be listed in the Data sources pane (Ctrl+Shift+F4). If this check box is cleared, the database will be available only by opening the database file." -msgstr "Zaregistruje novovytvorenú databázu v tomto kancelárskom balíku. Databáza bude potom zobrazená v paneli Zdroje dát (Ctrl + Shift + F4). Ak toto pole nie je označené, databáza bude dostupná iba spustením súboru s databázou." +msgstr "Zaregistruje novovytvorenú databázu v tomto kancelárskom balíku. Databáza bude potom zobrazená v paneli Zdroje dát (Ctrl + Shift + F4). Ak toto pole nie je označené, databáza bude dostupná len spustením súboru s databázou." #. jbrum #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:162 @@ -3814,7 +3814,7 @@ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:376 msgctxt "generalpage|series" msgid "Se_ries" -msgstr "_Séria" +msgstr "_Postupnosť" #. JfqNT #: extensions/uiconfig/sbibliography/ui/generalpage.ui:390 @@ -4018,7 +4018,7 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:637 msgctxt "mappingdialog|label24" msgid "Se_ries" -msgstr "_Séria" +msgstr "_Postupnosť" #. kGM4q #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:687 diff -Nru libreoffice-7.4.6/translations/source/sk/filter/messages.po libreoffice-7.4.7/translations/source/sk/filter/messages.po --- libreoffice-7.4.6/translations/source/sk/filter/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/filter/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-15 22:28+0200\n" -"PO-Revision-Date: 2022-07-04 16:15+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562264757.000000\n" #. 5AQgJ @@ -269,7 +269,7 @@ #: filter/inc/strings.hrc:71 msgctxt "STR_WARN_TRANSP_CONVERTED" msgid "Some objects were converted to an image in order to remove transparencies, because the target PDF format does not support transparencies. Possibly better results can be achieved if you remove the transparent objects before exporting." -msgstr "Aby sa odstránila priehľadnosť, boli niektoré objekty prevedené na obrázky, pretože cieľový PDF formát nepodporuje priehľadnosť. Pravdepodobne dosiahnete lepší výsledok, ak odstránite priehľadné objekty pred exportovaním." +msgstr "Aby sa odstránila priehľadnosť, boli niektoré objekty skonvertované na obrázky, pretože cieľový PDF formát nepodporuje priehľadnosť. Pravdepodobne dosiahnete lepší výsledok, ak odstránite priehľadné objekty pred exportovaním." #. qtCcB #: filter/inc/strings.hrc:72 @@ -307,7 +307,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -347,7 +347,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -724,7 +724,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:831 msgctxt "pdfgeneralpage|extended_tip|exportplaceholders" msgid "Export the placeholders fields visual markings only. The exported placeholder is ineffective." -msgstr "Exportujte iba vizuálne označenie polí zástupných symbolov. Exportovaný zástupný symbol je neúčinný." +msgstr "Exportujte len vizuálne označenie polí zástupných symbolov. Exportovaný zástupný symbol je neúčinný." #. P4kGd #: filter/uiconfig/ui/pdfgeneralpage.ui:842 @@ -796,7 +796,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:952 msgctxt "pdfgeneralpage|extended_tip|onlynotes" msgid "Exports only the Notes page views." -msgstr "Exportuje iba stránky s poznámkami." +msgstr "Exportuje len stránky s poznámkami." #. MpRUp #: filter/uiconfig/ui/pdfgeneralpage.ui:963 @@ -832,7 +832,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:48 msgctxt "pdflinkspage|convert" msgid "_Convert document references to PDF targets" -msgstr "_Previesť odkazy v dokumente na PDF ciele" +msgstr "_Konvertovať odkazy v dokumente na PDF ciele" #. FEokC #: filter/uiconfig/ui/pdflinkspage.ui:56 @@ -1426,7 +1426,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:57 msgctxt "pdfviewpage|extended_tip|pageonly" msgid "Select to generate a PDF file that shows only the page contents." -msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje iba obsah strán." +msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje len obsah strán." #. d2FAh #: filter/uiconfig/ui/pdfviewpage.ui:68 @@ -1768,7 +1768,7 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:18 msgctxt "xmlfiltersettings|XMLFilterSettingsDialog" msgid "XML Filter Settings" -msgstr "Nastavenia XML filtra" +msgstr "Nastavenie XML filtra" #. x9LGg #: filter/uiconfig/ui/xmlfiltersettings.ui:41 diff -Nru libreoffice-7.4.6/translations/source/sk/forms/messages.po libreoffice-7.4.7/translations/source/sk/forms/messages.po --- libreoffice-7.4.6/translations/source/sk/forms/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/forms/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-01-23 18:34+0000\n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507246704.000000\n" #. naBgZ @@ -386,7 +386,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -426,7 +426,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sk/formula/messages.po libreoffice-7.4.7/translations/source/sk/formula/messages.po --- libreoffice-7.4.6/translations/source/sk/formula/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/formula/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2022-03-08 07:39+0000\n" +"PO-Revision-Date: 2023-03-26 10:32+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1555447105.000000\n" #. YfKFn @@ -2537,7 +2537,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -2577,7 +2577,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -2774,25 +2774,25 @@ #: formula/uiconfig/ui/parameter.ui:288 msgctxt "parameter|RB_ARG1|tooltip_text" msgid "Select" -msgstr "Zvoliť" +msgstr "Vybrať" #. YPW6d #: formula/uiconfig/ui/parameter.ui:300 msgctxt "parameter|RB_ARG2|tooltip_text" msgid "Select" -msgstr "Zvoliť" +msgstr "Vybrať" #. JDDDE #: formula/uiconfig/ui/parameter.ui:312 msgctxt "parameter|RB_ARG3|tooltip_text" msgid "Select" -msgstr "Zvoliť" +msgstr "Vybrať" #. ScEBw #: formula/uiconfig/ui/parameter.ui:324 msgctxt "parameter|RB_ARG4|tooltip_text" msgid "Select" -msgstr "Zvoliť" +msgstr "Vybrať" #. ohUbB #: formula/uiconfig/ui/structpage.ui:28 diff -Nru libreoffice-7.4.6/translations/source/sk/fpicker/messages.po libreoffice-7.4.7/translations/source/sk/fpicker/messages.po --- libreoffice-7.4.6/translations/source/sk/fpicker/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/fpicker/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-06-06 17:37+0000\n" +"PO-Revision-Date: 2023-03-28 15:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1538498523.000000\n" #. SJGCw @@ -108,7 +108,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -148,7 +148,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -255,7 +255,7 @@ #: fpicker/uiconfig/ui/explorerfiledialog.ui:670 msgctxt "explorerfiledialog|readonly" msgid "_Read-only" -msgstr "Iba na čí_tanie" +msgstr "Len na čí_tanie" #. hm2xy #: fpicker/uiconfig/ui/explorerfiledialog.ui:693 @@ -412,13 +412,13 @@ #: include/fpicker/strings.hrc:17 msgctxt "STR_SVT_FILEPICKER_GPGENCRYPT" msgid "Encrypt with ~GPG key" -msgstr "Šifrovať pomocou ~GPG kľúča" +msgstr "Šifrovať ~GPG kľúčom" #. LWkae #: include/fpicker/strings.hrc:18 msgctxt "STR_SVT_FILEPICKER_FILTER_OPTIONS" msgid "~Edit filter settings" -msgstr "~Upraviť nastavenia filtra" +msgstr "~Upraviť nastavenie filtra" #. k7Sdb #: include/fpicker/strings.hrc:19 @@ -466,7 +466,7 @@ #: include/fpicker/strings.hrc:26 msgctxt "STR_SVT_FILEPICKER_IMAGE_ANCHOR" msgid "A~nchor:" -msgstr "Ukotve~nie:" +msgstr "~Ukotviť:" #. JvMvb #: include/fpicker/strings.hrc:27 diff -Nru libreoffice-7.4.6/translations/source/sk/framework/messages.po libreoffice-7.4.7/translations/source/sk/framework/messages.po --- libreoffice-7.4.6/translations/source/sk/framework/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/framework/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-06-11 17:08+0200\n" -"PO-Revision-Date: 2021-07-03 02:01+0000\n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.6.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507246707.000000\n" #. 5dTDC @@ -251,7 +251,7 @@ #: framework/inc/strings.hrc:60 msgctxt "RID_STR_PROPTITLE_LISTBOX" msgid "List Box" -msgstr "Zoznam" +msgstr "Pole so zoznamom" #. a7gAj #: framework/inc/strings.hrc:61 @@ -275,7 +275,7 @@ #: framework/inc/strings.hrc:64 msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD" msgid "Currency Field" -msgstr "Menové pole" +msgstr "Pole meny" #. B6MEP #: framework/inc/strings.hrc:65 @@ -335,7 +335,7 @@ #: framework/inc/strings.hrc:75 msgctxt "RID_STR_PROPTITLE_SCROLLBAR" msgid "Scrollbar" -msgstr "Posuvný panel" +msgstr "Posúvač" #. VtEN6 #: framework/inc/strings.hrc:76 @@ -367,7 +367,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -407,7 +407,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sk/helpcontent2/source/auxiliary.po libreoffice-7.4.7/translations/source/sk/helpcontent2/source/auxiliary.po --- libreoffice-7.4.6/translations/source/sk/helpcontent2/source/auxiliary.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/helpcontent2/source/auxiliary.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2021-12-29 05:38+0000\n" +"PO-Revision-Date: 2023-04-12 10:34+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1532005060.000000\n" #. fEEXD @@ -122,7 +122,7 @@ "070202\n" "node.text" msgid "Programming with Python" -msgstr "Programovanie pomocou Pythonu" +msgstr "Programovanie v Pythone" #. JCHAg #: sbasic.tree @@ -158,7 +158,7 @@ "0802\n" "node.text" msgid "Command and Menu Reference" -msgstr "Prehľad príkazov a ponúk" +msgstr "Prehľad príkazov a menu" #. 8g9EE #: scalc.tree @@ -212,7 +212,7 @@ "0806\n" "node.text" msgid "Filtering and Sorting" -msgstr "Filtrovanie a radenie" +msgstr "Filtrovanie a zoraďovanie" #. yCyBs #: scalc.tree @@ -383,7 +383,7 @@ "1102\n" "node.text" msgid "Command and Menu Reference" -msgstr "Prehľad príkazov a ponúk" +msgstr "Prehľad príkazov a menu" #. kq7Az #: sdraw.tree @@ -428,7 +428,7 @@ "1105\n" "node.text" msgid "Printing" -msgstr "Tlačenie" +msgstr "Tlač" #. G8GoF #: sdraw.tree @@ -554,7 +554,7 @@ "100504\n" "node.text" msgid "Agenda Wizard" -msgstr "Sprievodca poradou" +msgstr "Sprievodca agendou stretnutia" #. gvsML #: shared.tree @@ -572,7 +572,7 @@ "100510\n" "node.text" msgid "Document Converter Wizard" -msgstr "Sprievodca prevodom dokumentov" +msgstr "Sprievodca konverziou dokumentov" #. zhnAF #: shared.tree @@ -581,7 +581,7 @@ "1006\n" "node.text" msgid "Configuring %PRODUCTNAME" -msgstr "Nastavenie %PRODUCTNAME" +msgstr "Konfigurácia %PRODUCTNAME" #. 2rp8T #: shared.tree @@ -734,7 +734,7 @@ "0402\n" "node.text" msgid "Command and Menu Reference" -msgstr "Prehľad príkazov a ponúk" +msgstr "Prehľad príkazov a menu" #. ADAgH #: simpress.tree @@ -797,7 +797,7 @@ "0407\n" "node.text" msgid "Objects, Graphics, and Bitmaps" -msgstr "Objekty, obrázky a rastre" +msgstr "Objekty, grafika a obrázky" #. aDbFG #: simpress.tree @@ -860,7 +860,7 @@ "0302\n" "node.text" msgid "Command and Menu Reference" -msgstr "Prehľad príkazov a ponúk" +msgstr "Prehľad príkazov a menu" #. CGoih #: smath.tree @@ -896,7 +896,7 @@ "0202\n" "node.text" msgid "Command and Menu Reference" -msgstr "Prehľad príkazov a ponúk" +msgstr "Prehľad príkazov a menu" #. 4RREa #: swriter.tree @@ -1049,7 +1049,7 @@ "0218\n" "node.text" msgid "Troubleshooting Tips" -msgstr "Užitočné rady" +msgstr "Rady na riešenie problémov" #. qLMLk #: swriter.tree diff -Nru libreoffice-7.4.6/translations/source/sk/helpcontent2/source/text/sbasic/shared/01.po libreoffice-7.4.7/translations/source/sk/helpcontent2/source/text/sbasic/shared/01.po --- libreoffice-7.4.6/translations/source/sk/helpcontent2/source/text/sbasic/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/helpcontent2/source/text/sbasic/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-09-26 19:35+0000\n" +"PO-Revision-Date: 2023-03-08 09:34+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542197402.000000\n" #. arCRB @@ -194,7 +194,7 @@ "par_id3148405\n" "help.text" msgid "Opens the Macro Organizer dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries." -msgstr "Otvorí dialógové okno Správcu makier, v ktorom je možné pridať, upraviť alebo zmazať existujúce moduly makier, dialógových okien alebo knižníc." +msgstr "Otvorí dialógové okno Správcu makier, v ktorom je možné pridať, upraviť alebo zmazať existujúce moduly makier, dialógových okien alebo knižníc." #. Ps6dk #: 06130000.xhp @@ -383,7 +383,7 @@ "par_id3145387\n" "help.text" msgid "Creates a new library." -msgstr "Vytvorí novú knižnicu." +msgstr "Vytvorí novú knižnicu." #. GsfAY #: 06130000.xhp diff -Nru libreoffice-7.4.6/translations/source/sk/helpcontent2/source/text/sdatabase.po libreoffice-7.4.7/translations/source/sk/helpcontent2/source/text/sdatabase.po --- libreoffice-7.4.6/translations/source/sk/helpcontent2/source/text/sdatabase.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/helpcontent2/source/text/sdatabase.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-01-10 11:44+0000\n" +"PO-Revision-Date: 2023-03-06 10:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" #. ugSgG #: 02000000.xhp @@ -10129,7 +10129,7 @@ "par_idN105F8\n" "help.text" msgid "Email Document" -msgstr "" +msgstr "Odoslať e-mailom" #. Qxg2W #: menufile.xhp diff -Nru libreoffice-7.4.6/translations/source/sk/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/sk/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/sk/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2020-10-26 21:35+0000\n" -"Last-Translator: serval2412 \n" -"Language-Team: Slovak \n" +"PO-Revision-Date: 2023-03-08 09:34+0000\n" +"Last-Translator: Miloš Šrámek \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542197408.000000\n" #. 3u8hR @@ -15215,7 +15215,7 @@ "hd_id3152937\n" "help.text" msgid "Special Character" -msgstr "Nový" +msgstr "Nový" #. CBACQ #: 04100000.xhp @@ -40973,7 +40973,7 @@ "par_id3153394\n" "help.text" msgid "Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog." -msgstr "Vypíše knižnice a moduly v ktorých je možné otvárať a ukladať vaše makrá. Pre uloženie modulu s konkrétnym dokumentom otvorte dokument a potom otvorte tento dialóg." +msgstr "Vypíše knižnice a moduly v ktorých je možné otvárať a ukladať vaše makrá. Pre uloženie modulu s konkrétnym dokumentom otvorte dokument a potom otvorte tento dialóg." #. 7oBKv #: 06130000.xhp @@ -41126,7 +41126,7 @@ "par_id3147618\n" "help.text" msgid "Opens the Macro Organizer dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries." -msgstr "Otvorí dialóg Správca makier, v ktorom je možné pridať, upraviť alebo zmazať existujúce moduly makier, dialógy alebo knižnice." +msgstr "Otvorí dialóg Správca makier, v ktorom je možné pridať, upraviť alebo zmazať existujúce moduly makier, dialógy alebo knižnice." #. G9feq #: 06130001.xhp @@ -52556,7 +52556,7 @@ "tit\n" "help.text" msgid "Email as PDF" -msgstr "" +msgstr "Odoslať e-mailom ako PDF" #. rAFEF #: ref_pdf_send_as.xhp diff -Nru libreoffice-7.4.6/translations/source/sk/helpcontent2/source/text/swriter/01.po libreoffice-7.4.7/translations/source/sk/helpcontent2/source/text/swriter/01.po --- libreoffice-7.4.6/translations/source/sk/helpcontent2/source/text/swriter/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/helpcontent2/source/text/swriter/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2020-10-26 21:35+0000\n" -"Last-Translator: serval2412 \n" -"Language-Team: Slovak \n" +"PO-Revision-Date: 2023-03-20 12:30+0000\n" +"Last-Translator: Miloš Šrámek \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1540154118.000000\n" #. sZfWF @@ -7655,7 +7655,7 @@ "hd_id3154333\n" "help.text" msgid "Refer using" -msgstr "" +msgstr "Odkaz na" #. hvMHh #: 04090002.xhp diff -Nru libreoffice-7.4.6/translations/source/sk/librelogo/source/pythonpath.po libreoffice-7.4.7/translations/source/sk/librelogo/source/pythonpath.po --- libreoffice-7.4.6/translations/source/sk/librelogo/source/pythonpath.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/librelogo/source/pythonpath.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-06-29 13:09+0200\n" -"PO-Revision-Date: 2020-11-04 14:31+0000\n" +"PO-Revision-Date: 2023-04-18 06:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1492518918.000000\n" #. tFoAo @@ -365,7 +365,7 @@ "ITALIC\n" "property.text" msgid "italic" -msgstr "Kurzíva" +msgstr "kurzíva" #. hC7sA #: LibreLogo_en_US.properties @@ -653,7 +653,7 @@ "PRINT\n" "property.text" msgid "print" -msgstr "Tlač" +msgstr "Tlačiť" #. LVNRT #: LibreLogo_en_US.properties @@ -1130,7 +1130,7 @@ "VIOLET\n" "property.text" msgid "violet" -msgstr "Fialová" +msgstr "fialová" #. TUvm5 #: LibreLogo_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-08-19 12:58+0000\n" +"PO-Revision-Date: 2023-04-16 06:32+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1565181316.000000\n" #. W5ukN @@ -444,7 +444,7 @@ "Label\n" "value.text" msgid "~Formula Object..." -msgstr "Objekt so ~vzorcom…" +msgstr "Objekt ~vzorca..." #. wfLfm #: CalcCommands.xcu @@ -454,7 +454,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Formula Object" -msgstr "Vložiť objekt so vzorcom" +msgstr "Vložiť objekt vzorca" #. K5x3E #: CalcCommands.xcu @@ -1334,7 +1334,7 @@ "Label\n" "value.text" msgid "Select Visible Rows Only" -msgstr "Vybrať iba viditeľné riadky" +msgstr "Vybrať len viditeľné riadky" #. rDd3w #: CalcCommands.xcu @@ -1344,7 +1344,7 @@ "Label\n" "value.text" msgid "Select Visible Columns Only" -msgstr "Vybrať iba viditeľné stĺpce" +msgstr "Vybrať len viditeľné stĺpce" #. LEvrC #: CalcCommands.xcu @@ -1424,7 +1424,7 @@ "ContextLabel\n" "value.text" msgid "Data Bar..." -msgstr "Dátový pruh..." +msgstr "Panel dát..." #. FgA4z #: CalcCommands.xcu @@ -3294,7 +3294,7 @@ "ContextLabel\n" "value.text" msgid "~Page Style..." -msgstr "Štýly st~rany..." +msgstr "Štýl st~rany..." #. C83UC #: CalcCommands.xcu @@ -4204,7 +4204,7 @@ "Label\n" "value.text" msgid "S~hare Spreadsheet..." -msgstr "Z~dieľať zošit..." +msgstr "Z~dieľať hárok..." #. 7Chje #: CalcCommands.xcu @@ -5234,7 +5234,7 @@ "UIName\n" "value.text" msgid "Media" -msgstr "Multimédiá" +msgstr "Médiá" #. FD7ZA #: CalcWindowState.xcu @@ -5284,7 +5284,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. Mu9NE #: CalcWindowState.xcu @@ -5374,7 +5374,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. oUWGo #: CalcWindowState.xcu @@ -5524,7 +5524,7 @@ "UIName\n" "value.text" msgid "Standard (Viewing Mode)" -msgstr "Štandardný (prezerací mód)" +msgstr "Štandardný (režim zobrazenia)" #. Jy7YE #: CalcWindowState.xcu @@ -5744,7 +5744,7 @@ "Label\n" "value.text" msgid "Tre~nd Line..." -msgstr "Tre~ndová čiara..." +msgstr "Tre~ndová krivka..." #. 5GFay #: ChartCommands.xcu @@ -5814,7 +5814,7 @@ "Label\n" "value.text" msgid "Chart ~Wall..." -msgstr "~Bok grafu..." +msgstr "~Pozadie grafu..." #. eiKNT #: ChartCommands.xcu @@ -5824,7 +5824,7 @@ "Label\n" "value.text" msgid "Chart ~Floor..." -msgstr "Päta gra~fu..." +msgstr "Podstava gra~fu..." #. CxvTH #: ChartCommands.xcu @@ -5864,7 +5864,7 @@ "Label\n" "value.text" msgid "~Data Table..." -msgstr "Tabuľka ú~dajov..." +msgstr "~Tabuľka údajov..." #. akKXG #: ChartCommands.xcu @@ -7164,7 +7164,7 @@ "Label\n" "value.text" msgid "~Index Design..." -msgstr "Návrh ~indexu..." +msgstr "Návrh ~registra..." #. 77E5a #: DbuCommands.xcu @@ -7174,7 +7174,7 @@ "Label\n" "value.text" msgid "Switch Design View On/Off" -msgstr "Pohľad na návrh prepínača zapnúť/vypnúť" +msgstr "Zapnúť/vypnúť okno návrhu dotazu" #. Bs2Ez #: DbuCommands.xcu @@ -7694,7 +7694,7 @@ "Label\n" "value.text" msgid "Query (Design View)..." -msgstr "Návrh dotazu..." +msgstr "Dotaz (režim Návrh dotazu)..." #. AenSc #: DbuCommands.xcu @@ -7704,7 +7704,7 @@ "PopupLabel\n" "value.text" msgid "New ~Query (Design View)" -msgstr "Nový ~dotaz (náhľad návrhu)" +msgstr "Nový ~dotaz (režim Návrh dotazu)" #. Njo7R #: DbuCommands.xcu @@ -8694,7 +8694,7 @@ "Label\n" "value.text" msgid "~Date (fixed)" -msgstr "~Dátum (pevný)" +msgstr "~Dátum (nemenný)" #. EFsBD #: DrawImpressCommands.xcu @@ -8714,7 +8714,7 @@ "Label\n" "value.text" msgid "~Time (fixed)" -msgstr "Ča~s (pevný)" +msgstr "Ča~s (nemenný)" #. BGC6S #: DrawImpressCommands.xcu @@ -8924,7 +8924,7 @@ "Label\n" "value.text" msgid "To C~ontour" -msgstr "Na ~obrysy" +msgstr "Na ~obrys" #. L87xG #: DrawImpressCommands.xcu @@ -9474,7 +9474,7 @@ "Label\n" "value.text" msgid "Master Page..." -msgstr "Predloha stránky..." +msgstr "Predloha strany..." #. RxHFo #: DrawImpressCommands.xcu @@ -9544,7 +9544,7 @@ "Label\n" "value.text" msgid "D~elete Page" -msgstr "~Odstrániť stranku" +msgstr "~Odstrániť stranu" #. DtBGJ #: DrawImpressCommands.xcu @@ -10094,7 +10094,7 @@ "Label\n" "value.text" msgid "Line Contour Only" -msgstr "Iba obrys" +msgstr "Len obrys" #. C7GKX #: DrawImpressCommands.xcu @@ -10364,7 +10364,7 @@ "Label\n" "value.text" msgid "~Modify" -msgstr "O~bjekt" +msgstr "~Zmeniť" #. JQHX9 #: DrawImpressCommands.xcu @@ -10414,7 +10414,7 @@ "Label\n" "value.text" msgid "~Convert" -msgstr "~Previesť" +msgstr "~Konvertovať" #. 6TUDH #: DrawImpressCommands.xcu @@ -11274,7 +11274,7 @@ "Label\n" "value.text" msgid "Title Only" -msgstr "Iba nadpis" +msgstr "Len nadpis" #. UcRbT #: DrawImpressCommands.xcu @@ -11284,7 +11284,7 @@ "Label\n" "value.text" msgid "Title Slide" -msgstr "Titulná snímka" +msgstr "Úvodná snímka" #. BxPRH #: DrawImpressCommands.xcu @@ -11724,7 +11724,7 @@ "UIName\n" "value.text" msgid "Media" -msgstr "Multimédiá" +msgstr "Médiá" #. ARv8G #: DrawWindowState.xcu @@ -12214,7 +12214,7 @@ "UIName\n" "value.text" msgid "Standard (Viewing Mode)" -msgstr "Štandardný (prezerací mód)" +msgstr "Štandardný (režim zobrazenia)" #. 6ZRkm #: DrawWindowState.xcu @@ -12744,7 +12744,7 @@ "Label\n" "value.text" msgid "Compress" -msgstr "Stlačiť" +msgstr "Komprimovať" #. Li8rn #: Effects.xcu @@ -15894,7 +15894,7 @@ "Label\n" "value.text" msgid "Media" -msgstr "Multimédiá" +msgstr "Médiá" #. bnqEq #: GenericCategories.xcu @@ -17954,7 +17954,7 @@ "Label\n" "value.text" msgid "Undo" -msgstr "Späť" +msgstr "Vrátiť" #. TszTz #: GenericCommands.xcu @@ -19134,7 +19134,7 @@ "Label\n" "value.text" msgid "~Bibliography Database" -msgstr "~Zoznam použitej literatúry" +msgstr "~Databáza použitej literatúry" #. cckzf #: GenericCommands.xcu @@ -19496,7 +19496,7 @@ "Label\n" "value.text" msgid "~Print..." -msgstr "~Tlač..." +msgstr "~Tlačiť..." #. c4qkT #: GenericCommands.xcu @@ -19666,7 +19666,7 @@ "Label\n" "value.text" msgid "Select" -msgstr "Zvoliť" +msgstr "Vybrať" #. vFuaY #: GenericCommands.xcu @@ -20186,7 +20186,7 @@ "Label\n" "value.text" msgid "Move Up" -msgstr "Presunúť vyššie" +msgstr "Presunúť nahor" #. J83AS #: GenericCommands.xcu @@ -20216,7 +20216,7 @@ "Label\n" "value.text" msgid "Move Down" -msgstr "Presunúť nižšie" +msgstr "Presunúť nadol" #. ZEVXU #: GenericCommands.xcu @@ -20336,7 +20336,7 @@ "Label\n" "value.text" msgid "Show Only First Level" -msgstr "Zobraziť iba prvú úroveň" +msgstr "Zobraziť len prvú úroveň" #. WQgCm #: GenericCommands.xcu @@ -20376,7 +20376,7 @@ "Label\n" "value.text" msgid "Read Only Mode" -msgstr "Režim iba na čítanie" +msgstr "Režim len na čítanie" #. WAXps #: GenericCommands.xcu @@ -20976,7 +20976,7 @@ "Label\n" "value.text" msgid "~Formula Object..." -msgstr "Objekt so ~vzorcom…" +msgstr "Objekt ~vzorca..." #. CeBmP #: GenericCommands.xcu @@ -20986,7 +20986,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Formula Object" -msgstr "Vložiť objekt so vzorcom" +msgstr "Vložiť objekt vzorca" #. 2ykCZ #: GenericCommands.xcu @@ -21036,7 +21036,7 @@ "Label\n" "value.text" msgid "~XML Filter Settings..." -msgstr "Nastavenia ~XML filtra..." +msgstr "Nastavenie ~XML filtra..." #. mPdwa #: GenericCommands.xcu @@ -21086,7 +21086,7 @@ "Label\n" "value.text" msgid "Combo Box" -msgstr "Rozbaľovacie pole" +msgstr "Pole so zoznamom" #. EMNG9 #: GenericCommands.xcu @@ -21376,7 +21376,7 @@ "Label\n" "value.text" msgid "Footnote and Endno~te" -msgstr "Poznámka pod čiarou/koncová poznámka" +msgstr "Poznámka pod čiarou a koncová poznámka" #. ugArR #: GenericCommands.xcu @@ -22086,7 +22086,7 @@ "Label\n" "value.text" msgid "~Undo" -msgstr "~Späť" +msgstr "~Vrátiť" #. FhmGD #: GenericCommands.xcu @@ -23076,7 +23076,7 @@ "Label\n" "value.text" msgid "Spreadsheet Options" -msgstr "Možnosti pre zošit" +msgstr "Možnosti pre hárok" #. mNJbw #: GenericCommands.xcu @@ -23676,7 +23676,7 @@ "ContextLabel\n" "value.text" msgid "~Export as PDF..." -msgstr "Exportovať do P~DF..." +msgstr "Exportovať ako P~DF..." #. FnRm4 #: GenericCommands.xcu @@ -23706,7 +23706,7 @@ "ContextLabel\n" "value.text" msgid "Export Directly as PDF" -msgstr "Exportovať priamo do PDF" +msgstr "Exportovať priamo ako PDF" #. JCirv #: GenericCommands.xcu @@ -23716,7 +23716,7 @@ "TooltipLabel\n" "value.text" msgid "Export Directly as PDF" -msgstr "Exportovať priamo do PDF" +msgstr "Exportovať priamo ako PDF" #. LrSFu #: GenericCommands.xcu @@ -24326,7 +24326,7 @@ "Label\n" "value.text" msgid "Combo Box" -msgstr "Rozbaľovacie pole" +msgstr "Pole so zoznamom" #. ZAc85 #: GenericCommands.xcu @@ -24896,7 +24896,7 @@ "Label\n" "value.text" msgid "Run SQL command directly" -msgstr "Spustiť SQL príkaz priamo" +msgstr "SQL príkaz spustiť priamo" #. Emzna #: GenericCommands.xcu @@ -25196,7 +25196,7 @@ "Label\n" "value.text" msgid "Replace with Pattern Field" -msgstr "Nahradiť poľom vzorky" +msgstr "Nahradiť poľom vzoru" #. Vti4m #: GenericCommands.xcu @@ -26266,7 +26266,7 @@ "ContextLabel\n" "value.text" msgid "Anc~hor" -msgstr "U~kotvenie" +msgstr "U~kotviť" #. CLNpa #: GenericCommands.xcu @@ -26316,7 +26316,7 @@ "Label\n" "value.text" msgid "Media" -msgstr "Multimédiá" +msgstr "Médiá" #. oLYuP #: GenericCommands.xcu @@ -26726,7 +26726,7 @@ "Label\n" "value.text" msgid "Select" -msgstr "Zvoliť" +msgstr "Vybrať" #. qjFMU #: GenericCommands.xcu @@ -27346,7 +27346,7 @@ "UIName\n" "value.text" msgid "Media" -msgstr "Multimédiá" +msgstr "Médiá" #. uBp7o #: ImpressWindowState.xcu @@ -27886,7 +27886,7 @@ "UIName\n" "value.text" msgid "Standard (Viewing Mode)" -msgstr "Štandardný (prezerací mód)" +msgstr "Štandardný (režim zobrazenia)" #. qsBFj #: ImpressWindowState.xcu @@ -27996,7 +27996,7 @@ "Label\n" "value.text" msgid "F~ont Size..." -msgstr "Veľk~osti písma..." +msgstr "Veľk~osť písma..." #. wDDa6 #: MathCommands.xcu @@ -29106,7 +29106,7 @@ "Title\n" "value.text" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. V5auD #: Sidebar.xcu @@ -30036,7 +30036,7 @@ "Label\n" "value.text" msgid "He~ader" -msgstr "~Záhlavie" +msgstr "~Hlavička" #. GstET #: WriterCommands.xcu @@ -30116,7 +30116,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Table of Contents, Index or Bibliography" -msgstr "Vložiť obsah, index alebo zoznam použitej literatúry" +msgstr "Vložiť obsah, register alebo zoznam použitej literatúry" #. uTYnH #: WriterCommands.xcu @@ -30126,7 +30126,7 @@ "ContextLabel\n" "value.text" msgid "Table of Contents, ~Index or Bibliography..." -msgstr "~Obsah, index alebo zoznam použitej literatúry..." +msgstr "~Obsah, register alebo zoznam použitej literatúry..." #. TuWK6 #: WriterCommands.xcu @@ -30216,7 +30216,7 @@ "Label\n" "value.text" msgid "Update Index" -msgstr "Aktualizovať index" +msgstr "Aktualizovať register" #. bQdcg #: WriterCommands.xcu @@ -30786,7 +30786,7 @@ "Label\n" "value.text" msgid "Anc~hor..." -msgstr "U~kotvenie..." +msgstr "~Ukotviť..." #. bRFPN #: WriterCommands.xcu @@ -30876,7 +30876,7 @@ "Label\n" "value.text" msgid "F~ootnote or Endnote..." -msgstr "~Poznámka pod čiarou/koncová poznámka..." +msgstr "~Poznámka pod čiarou alebo koncová poznámka..." #. tAWA5 #: WriterCommands.xcu @@ -31376,7 +31376,7 @@ "Label\n" "value.text" msgid "~Formula Object..." -msgstr "Objekt so ~vzorcom…" +msgstr "Objekt ~vzorca..." #. VaCbZ #: WriterCommands.xcu @@ -31386,7 +31386,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Formula Object" -msgstr "Vložiť objekt so vzorcom" +msgstr "Vložiť objekt vzorca" #. 4tQrL #: WriterCommands.xcu @@ -31586,7 +31586,7 @@ "Label\n" "value.text" msgid "Appl~y" -msgstr "Opraviť ~celý dokument" +msgstr "_Použiť" #. EV2yB #: WriterCommands.xcu @@ -32066,7 +32066,7 @@ "Label\n" "value.text" msgid "~Page Style..." -msgstr "Štýly st~rany..." +msgstr "Štýl st~rany..." #. 8aUD6 #: WriterCommands.xcu @@ -32096,7 +32096,7 @@ "Label\n" "value.text" msgid "Drop Caps" -msgstr "Iniciálky" +msgstr "Iniciály" #. 26bn9 #: WriterCommands.xcu @@ -32416,7 +32416,7 @@ "Label\n" "value.text" msgid "T~able to Text..." -msgstr "Previesť t~abuľku na text..." +msgstr "Konvertovať t~abuľku na text..." #. RPW5g #: WriterCommands.xcu @@ -32426,7 +32426,7 @@ "Label\n" "value.text" msgid "~Text to Table..." -msgstr "Previesť ~text na tabuľku..." +msgstr "Konvertovať ~text na tabuľku..." #. RGGHV #: WriterCommands.xcu @@ -33516,7 +33516,7 @@ "Label\n" "value.text" msgid "~Footnote or Endnote..." -msgstr "~Poznámka pod čiarou/koncová poznámka..." +msgstr "~Poznámka pod čiarou alebo koncová poznámka..." #. 65L8a #: WriterCommands.xcu @@ -34656,7 +34656,7 @@ "Label\n" "value.text" msgid "Calculat~e" -msgstr "S~počítať" +msgstr "Vy~počítať" #. AjNLg #: WriterCommands.xcu @@ -34836,7 +34836,7 @@ "Label\n" "value.text" msgid "~Convert" -msgstr "~Previesť" +msgstr "~Konvertovať" #. P8xfR #: WriterCommands.xcu @@ -35116,7 +35116,7 @@ "Label\n" "value.text" msgid "Su~btitle" -msgstr "Podnázov~s" +msgstr "~Podnadpis" #. Guok9 #: WriterCommands.xcu @@ -35126,7 +35126,7 @@ "Label\n" "value.text" msgid "Su~btitle" -msgstr "Podnázov~s" +msgstr "~Podnadpis" #. Fzdyf #: WriterCommands.xcu @@ -35136,7 +35136,7 @@ "TooltipLabel\n" "value.text" msgid "Subtitle Paragraph Style" -msgstr "Štýl odseku Podnázov" +msgstr "Štýl odseku Podnadpis" #. b8Nqa #: WriterCommands.xcu @@ -35526,7 +35526,7 @@ "TooltipLabel\n" "value.text" msgid "Quotation Character Style" -msgstr "Citácia" +msgstr "Znakový štýl Citácia" #. 9LD4r #: WriterCommands.xcu @@ -36116,7 +36116,7 @@ "UIName\n" "value.text" msgid "Media" -msgstr "Multimédiá" +msgstr "Médiá" #. ix5mu #: WriterFormWindowState.xcu @@ -36136,7 +36136,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. Grn9p #: WriterFormWindowState.xcu @@ -36376,7 +36376,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. nCSvk #: WriterFormWindowState.xcu @@ -36396,7 +36396,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. WzbV7 #: WriterFormWindowState.xcu @@ -36416,7 +36416,7 @@ "UIName\n" "value.text" msgid "Standard (Viewing Mode)" -msgstr "Štandardný (prezerací mód)" +msgstr "Štandardný (režim zobrazenia)" #. BoMEG #: WriterFormWindowState.xcu @@ -36606,7 +36606,7 @@ "UIName\n" "value.text" msgid "Media" -msgstr "Multimédiá" +msgstr "Médiá" #. gBtRL #: WriterGlobalWindowState.xcu @@ -36626,7 +36626,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. Er7xX #: WriterGlobalWindowState.xcu @@ -36856,7 +36856,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. v45LV #: WriterGlobalWindowState.xcu @@ -36876,7 +36876,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. rqZsp #: WriterGlobalWindowState.xcu @@ -36896,7 +36896,7 @@ "UIName\n" "value.text" msgid "Standard (Viewing Mode)" -msgstr "Štandardný (prezerací mód)" +msgstr "Štandardný (režim zobrazenia)" #. VZELB #: WriterGlobalWindowState.xcu @@ -37116,7 +37116,7 @@ "UIName\n" "value.text" msgid "Media" -msgstr "Multimédiá" +msgstr "Médiá" #. 5C9tD #: WriterReportWindowState.xcu @@ -37136,7 +37136,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. Z4q38 #: WriterReportWindowState.xcu @@ -37376,7 +37376,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. 5GFnw #: WriterReportWindowState.xcu @@ -37396,7 +37396,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. wtUgA #: WriterReportWindowState.xcu @@ -37416,7 +37416,7 @@ "UIName\n" "value.text" msgid "Standard (Viewing Mode)" -msgstr "Štandardný (prezerací mód)" +msgstr "Štandardný (režim zobrazenia)" #. ySeBh #: WriterReportWindowState.xcu @@ -37596,7 +37596,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. 6fLtS #: WriterWebWindowState.xcu @@ -37606,7 +37606,7 @@ "UIName\n" "value.text" msgid "HTML Source" -msgstr "Zdrojový HTML text" +msgstr "HTML zdroj" #. MMEvd #: WriterWebWindowState.xcu @@ -37676,7 +37676,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. gaswH #: WriterWebWindowState.xcu @@ -37856,7 +37856,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. aAcCd #: WriterWebWindowState.xcu @@ -37866,7 +37866,7 @@ "UIName\n" "value.text" msgid "Standard (Viewing Mode)" -msgstr "Štandardný (prezerací mód)" +msgstr "Štandardný (režim zobrazenia)" #. Yke4u #: WriterWebWindowState.xcu @@ -38026,7 +38026,7 @@ "UIName\n" "value.text" msgid "Media" -msgstr "Multimédiá" +msgstr "Médiá" #. q9cZg #: WriterWindowState.xcu @@ -38056,7 +38056,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. 63SJV #: WriterWindowState.xcu @@ -38336,7 +38336,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. Tgtuj #: WriterWindowState.xcu @@ -38356,7 +38356,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. MNMGR #: WriterWindowState.xcu @@ -38376,7 +38376,7 @@ "UIName\n" "value.text" msgid "Standard (Viewing Mode)" -msgstr "Štandardný (prezerací mód)" +msgstr "Štandardný (režim zobrazenia)" #. fmEKa #: WriterWindowState.xcu @@ -38616,7 +38616,7 @@ "UIName\n" "value.text" msgid "Media" -msgstr "Multimédiá" +msgstr "Médiá" #. EBoFb #: XFormsWindowState.xcu @@ -38636,7 +38636,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. GgAHU #: XFormsWindowState.xcu @@ -38876,7 +38876,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. URXoj #: XFormsWindowState.xcu @@ -38896,7 +38896,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "Náhľad pred tlačou" +msgstr "Náhľad tlače" #. jQnAF #: XFormsWindowState.xcu @@ -38916,7 +38916,7 @@ "UIName\n" "value.text" msgid "Standard (Viewing Mode)" -msgstr "Štandardný (prezerací mód)" +msgstr "Štandardný (režim zobrazenia)" #. hahnM #: XFormsWindowState.xcu diff -Nru libreoffice-7.4.6/translations/source/sk/oox/messages.po libreoffice-7.4.7/translations/source/sk/oox/messages.po --- libreoffice-7.4.6/translations/source/sk/oox/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/oox/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-07-12 03:34+0000\n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" #. C5e9E #: oox/inc/strings.hrc:15 @@ -51,7 +51,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -91,7 +91,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sk/readlicense_oo/docs.po libreoffice-7.4.7/translations/source/sk/readlicense_oo/docs.po --- libreoffice-7.4.6/translations/source/sk/readlicense_oo/docs.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/readlicense_oo/docs.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2021-12-12 19:38+0000\n" +"PO-Revision-Date: 2023-03-07 09:32+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1544623514.000000\n" #. q6Gg3 @@ -644,7 +644,7 @@ "w32e1\n" "readmeitem.text" msgid "Only shortcut keys (key combinations) not used by the operating system can be used in ${PRODUCTNAME}. If a key combination in ${PRODUCTNAME} does not work as described in the ${PRODUCTNAME} Help, check if that shortcut is already used by the operating system. To rectify such conflicts, you can change the keys assigned by your operating system. Alternatively, you can change almost any key assignment in ${PRODUCTNAME}. For more information on this topic, refer to the ${PRODUCTNAME} Help or the Help documentation of your operating system." -msgstr "V ${PRODUCTNAME} je možné používať iba skratky (kombinácie kláves), ktoré nepoužíva operačný systém. Ak skratka v ${PRODUCTNAME} nefunguje podľa popisu v Pomocníkovi ${PRODUCTNAME}, skontrolujte, či už skratku nepoužíva operačný systém. Takýto konflikt vyriešite zmenou skratky, ktorú používa operačný systém alebo môžete zmeniť takmer ktorúkoľvek skratku v ${PRODUCTNAME}. Viac informácií na túto tému vám poskytne Pomocník ${PRODUCTNAME} alebo dokumentácia k vášmu operačnému systému." +msgstr "V ${PRODUCTNAME} je možné používať len skratky (kombinácie kláves), ktoré nepoužíva operačný systém. Ak skratka v ${PRODUCTNAME} nefunguje podľa popisu v Pomocníkovi ${PRODUCTNAME}, skontrolujte, či už skratku nepoužíva operačný systém. Takýto konflikt vyriešite zmenou skratky, ktorú používa operačný systém alebo môžete zmeniť takmer ktorúkoľvek skratku v ${PRODUCTNAME}. Viac informácií na túto tému vám poskytne Pomocník ${PRODUCTNAME} alebo dokumentácia k vášmu operačnému systému." #. DBXZ8 #: readme.xrm diff -Nru libreoffice-7.4.6/translations/source/sk/reportdesign/messages.po libreoffice-7.4.7/translations/source/sk/reportdesign/messages.po --- libreoffice-7.4.6/translations/source/sk/reportdesign/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/reportdesign/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:20+0100\n" -"PO-Revision-Date: 2021-01-23 18:34+0000\n" +"PO-Revision-Date: 2023-03-28 15:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1511370255.000000\n" #. FBVr9 @@ -190,7 +190,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -230,7 +230,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -1376,13 +1376,13 @@ #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:96 msgctxt "floatingsort|up" msgid "Move up" -msgstr "Presunúť vyššie" +msgstr "Presunúť nahor" #. g5fDX #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:108 msgctxt "floatingsort|down" msgid "Move down" -msgstr "Presunúť nižšie" +msgstr "Presunúť nadol" #. 8DZyc #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:120 diff -Nru libreoffice-7.4.6/translations/source/sk/sc/messages.po libreoffice-7.4.7/translations/source/sk/sc/messages.po --- libreoffice-7.4.6/translations/source/sk/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-08-19 12:59+0000\n" +"PO-Revision-Date: 2023-04-12 10:32+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563988321.000000\n" #. kBovX @@ -100,7 +100,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -140,7 +140,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -761,7 +761,7 @@ #: sc/inc/globstr.hrc:135 msgctxt "STR_SORT_ERR_MERGED" msgid "Ranges containing merged cells can only be sorted without formats." -msgstr "Oblasti obsahujúce spojené bunky, môžu byť zoradené iba bez formátov." +msgstr "Oblasti obsahujúce spojené bunky, môžu byť zoradené len bez formátov." #. CMwFG #: sc/inc/globstr.hrc:136 @@ -1184,7 +1184,7 @@ #: sc/inc/globstr.hrc:204 msgctxt "STR_HEADER" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. fzG3P #: sc/inc/globstr.hrc:205 @@ -1220,7 +1220,7 @@ #: sc/inc/globstr.hrc:210 msgctxt "STR_PAGEHEADER" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. DPEzg #: sc/inc/globstr.hrc:211 @@ -1842,7 +1842,7 @@ #: sc/inc/globstr.hrc:321 msgctxt "STR_VOBJ_MODE_SHOW" msgid "Show" -msgstr "Ukázať" +msgstr "Zobraziť" #. BmQGg #: sc/inc/globstr.hrc:322 @@ -2658,7 +2658,7 @@ #: sc/inc/globstr.hrc:447 msgctxt "STR_ERR_NAME_INVALID" msgid "Invalid name. Start with a letter, use only letters, numbers and underscore." -msgstr "Neplatný názov. Začnite písmenom, používajte iba písmená, číslice a podčiarkovník." +msgstr "Neplatný názov. Začnite písmenom, používajte len písmená, číslice a podčiarkovník." #. owW4Y #: sc/inc/globstr.hrc:448 @@ -3270,7 +3270,7 @@ #: sc/inc/globstr.hrc:544 msgctxt "STR_UNDO_DELETE_SPARKLINE_GROUP" msgid "Delete Sparkline Group" -msgstr "Vložiť skupinu minigrafov" +msgstr "Zmazať skupinu minigrafov" #. 6sxnX #: sc/inc/globstr.hrc:545 @@ -3489,7 +3489,7 @@ #: sc/inc/scerrors.hrc:72 msgctxt "RID_ERRHDLSC" msgid "Only the active sheet was saved." -msgstr "Uložený môže byť iba aktívny hárok." +msgstr "Uložený môže byť len aktívny hárok." #. uCJvz #: sc/inc/scerrors.hrc:74 @@ -6517,19 +6517,19 @@ #: sc/inc/scfuncs.hrc:935 msgctxt "SC_OPCODE_POWER" msgid "Returns a^b, base a raised to the power of exponent b." -msgstr "Vráti a^b, mocnenec a umocnený exponentom b." +msgstr "Vráti a^b, základ a umocnený exponentom b." #. 3FCiX #: sc/inc/scfuncs.hrc:936 msgctxt "SC_OPCODE_POWER" msgid "Base" -msgstr "Mocnenec" +msgstr "Základ" #. WAWLC #: sc/inc/scfuncs.hrc:937 msgctxt "SC_OPCODE_POWER" msgid "The base a of the power a^b." -msgstr "Mocnenec a mocniny a^b." +msgstr "Základ a mocniny a^b." #. iUBVy #: sc/inc/scfuncs.hrc:938 @@ -7381,7 +7381,7 @@ #: sc/inc/scfuncs.hrc:1278 msgctxt "SC_OPCODE_RAD" msgid "Converts degrees to radians" -msgstr "Prevedie stupne na radiány" +msgstr "Konvertuje stupne na radiány" #. n5GJL #: sc/inc/scfuncs.hrc:1279 @@ -7435,7 +7435,7 @@ #: sc/inc/scfuncs.hrc:1297 msgctxt "SC_OPCODE_LOG" msgid "Base" -msgstr "Mocnenec" +msgstr "Základ" #. kojFq #: sc/inc/scfuncs.hrc:1298 @@ -8457,7 +8457,7 @@ #: sc/inc/scfuncs.hrc:1646 msgctxt "SC_OPCODE_LINEST" msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." -msgstr "Pokiaľ sa parameter = 0 tak sa zisťuje iba regresný koeficient, inak sa budú počítať aj ďalšie hodnoty." +msgstr "Pokiaľ sa parameter = 0 tak sa zisťuje len regresný koeficient, inak sa budú počítať aj ďalšie hodnoty." #. TjhxE #: sc/inc/scfuncs.hrc:1652 @@ -8511,7 +8511,7 @@ #: sc/inc/scfuncs.hrc:1660 msgctxt "SC_OPCODE_LOGEST" msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." -msgstr "Pokiaľ sa parameter = 0 tak sa zisťuje iba regresný koeficient, inak sa budú počítať aj ďalšie hodnoty." +msgstr "Pokiaľ sa parameter = 0 tak sa zisťuje len regresný koeficient, inak sa budú počítať aj ďalšie hodnoty." #. FABFr #: sc/inc/scfuncs.hrc:1666 @@ -8637,7 +8637,7 @@ #: sc/inc/scfuncs.hrc:1696 msgctxt "SC_OPCODE_COUNT" msgid "Value 1, value 2, ... are arguments containing different data types but where only numbers are counted." -msgstr "Hodnota 1, hodnota 2, ... sú argumenty, ktoré obsahujú rôzne dátové typy, ale počítajú sa iba čísla." +msgstr "Hodnota 1, hodnota 2, ... sú argumenty, ktoré obsahujú rôzne dátové typy, ale počítajú sa len čísla." #. NoX9E #: sc/inc/scfuncs.hrc:1702 @@ -9183,7 +9183,7 @@ #: sc/inc/scfuncs.hrc:1942 msgctxt "SC_OPCODE_PERCENTILE" msgid "Returns the alpha percentile of a sample." -msgstr "Vráti hodnotu k-teho percentilu výberu." +msgstr "Vracia hodnotu alfa percentilu vzorky." #. KruQH #: sc/inc/scfuncs.hrc:1943 @@ -14553,7 +14553,7 @@ #: sc/inc/scfuncs.hrc:3511 msgctxt "SC_OPCODE_BAHTTEXT" msgid "Converts a number to text (Baht)." -msgstr "Prevedie číslo na text (Baht)." +msgstr "Konvertuje číslo na text (Baht)." #. UQFFX #: sc/inc/scfuncs.hrc:3512 @@ -15057,7 +15057,7 @@ #: sc/inc/scfuncs.hrc:3683 msgctxt "SC_OPCODE_PROPER" msgid "Capitalizes the first letter in all words." -msgstr "Prevedie prvé písmená všetkých slov na veľké." +msgstr "Konvertuje prvé písmená všetkých slov na veľké." #. MT7Gu #: sc/inc/scfuncs.hrc:3684 @@ -15075,7 +15075,7 @@ #: sc/inc/scfuncs.hrc:3691 msgctxt "SC_OPCODE_UPPER" msgid "Converts text to uppercase." -msgstr "Prevedie text na veľké písmená." +msgstr "Konvertuje text na veľké písmená." #. semL2 #: sc/inc/scfuncs.hrc:3692 @@ -15093,7 +15093,7 @@ #: sc/inc/scfuncs.hrc:3699 msgctxt "SC_OPCODE_LOWER" msgid "Converts text to lowercase." -msgstr "Prevedie text na malé písmená." +msgstr "Konvertuje text na malé písmená." #. 3pTMV #: sc/inc/scfuncs.hrc:3700 @@ -15111,7 +15111,7 @@ #: sc/inc/scfuncs.hrc:3707 msgctxt "SC_OPCODE_VALUE" msgid "Converts text to a number." -msgstr "Prevedie text na číslo." +msgstr "Konvertuje text na číslo." #. TC6y4 #: sc/inc/scfuncs.hrc:3708 @@ -15129,7 +15129,7 @@ #: sc/inc/scfuncs.hrc:3715 msgctxt "SC_OPCODE_TEXT" msgid "Converts a number to text according to a given format." -msgstr "Prevedie číslo na text v zadanom formáte." +msgstr "Konvertuje číslo na text v zadanom formáte." #. PU92J #: sc/inc/scfuncs.hrc:3716 @@ -15543,7 +15543,7 @@ #: sc/inc/scfuncs.hrc:3839 msgctxt "SC_OPCODE_BASE" msgid "The number to be converted." -msgstr "Číslo, ktoré má byť prevedené." +msgstr "Číslo, ktoré má byť konvertované." #. XVzag #: sc/inc/scfuncs.hrc:3840 @@ -15585,7 +15585,7 @@ #: sc/inc/scfuncs.hrc:3851 msgctxt "SC_OPCODE_DECIMAL" msgid "The text to be converted." -msgstr "Text, ktorý má byť prevedený." +msgstr "Text, ktorý má byť konvertovaný." #. CsGvH #: sc/inc/scfuncs.hrc:3852 @@ -15639,7 +15639,7 @@ #: sc/inc/scfuncs.hrc:3871 msgctxt "SC_OPCODE_ROMAN" msgid "Converts a number to a Roman numeral." -msgstr "Prevedie číslo do vyjadrenia rímskymi číslicami." +msgstr "Konvertuje číslo do vyjadrenia rímskymi číslicami." #. jADZM #: sc/inc/scfuncs.hrc:3872 @@ -15723,7 +15723,7 @@ #: sc/inc/scfuncs.hrc:3902 msgctxt "SC_OPCODE_UNICHAR" msgid "Converts a code number into a Unicode character or letter." -msgstr "Prevedie číselný kód na Unicode znak alebo písmeno." +msgstr "Konvertuje číselný kód na Unicode znak alebo písmeno." #. HEQch #: sc/inc/scfuncs.hrc:3903 @@ -15741,7 +15741,7 @@ #: sc/inc/scfuncs.hrc:3909 msgctxt "SC_OPCODE_EUROCONVERT" msgid "Converts a value from one to another Euro currency." -msgstr "Prevedie hodnotu z jednej do druhej Euro meny." +msgstr "Konvertuje hodnotu z jednej do druhej Euro meny." #. cFiFr #: sc/inc/scfuncs.hrc:3910 @@ -15808,7 +15808,7 @@ #: sc/inc/scfuncs.hrc:3925 msgctxt "SC_OPCODE_NUMBERVALUE" msgid "Converts text to a number, in a locale-independent way." -msgstr "Prevedie text na číslo, nezávisle od národného nastavenia." +msgstr "Konvertuje text na číslo, nezávisle od národného nastavenia." #. cyLMe #: sc/inc/scfuncs.hrc:3926 @@ -17096,7 +17096,7 @@ #: sc/inc/strings.hrc:114 msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY" msgid "(read-only)" -msgstr "(iba na čítanie)" +msgstr "(len na čítanie)" #. fDxgL #: sc/inc/strings.hrc:115 @@ -18488,7 +18488,7 @@ #: sc/inc/strings.hrc:368 msgctxt "STR_ENABLE_CONTENT_TOOLTIP" msgid "Only allow updating if you trust this document." -msgstr "Aktualizáciu povoľte iba vtedy, ak tomuto dokumentu dôverujete." +msgstr "Aktualizáciu povoľte len vtedy, ak tomuto dokumentu dôverujete." #. w5Gd7 #. Insert image dialog @@ -18875,7 +18875,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:423 msgctxt "advancedfilterdialog|dbarealabel" msgid "Data range:" -msgstr "Dátová oblasť:" +msgstr "Oblasť dát:" #. 44y9m #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:436 @@ -19241,7 +19241,7 @@ #: sc/uiconfig/scalc/ui/autosum.ui:52 msgctxt "autosum|counta" msgid "CountA" -msgstr "Počet hodnôt" +msgstr "PočetA" #. TGUCo #: sc/uiconfig/scalc/ui/autosum.ui:60 @@ -19317,7 +19317,7 @@ "\n" "Select 'Protect Sheet' from the 'Tools' menu." msgstr "" -"Ochrana bunky je účinná iba v prípade, že je chránený celý hárok. \n" +"Ochrana bunky je účinná len v prípade, že je chránený celý hárok. \n" "\n" "Vyberte 'Zamknúť hárok' z ponuky 'Nástroje'." @@ -19649,7 +19649,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:200 msgctxt "conditionalentry|options" msgid "More Options..." -msgstr "Ďalšie možnosti..." +msgstr "Viac možností..." #. JWFYN #: sc/uiconfig/scalc/ui/conditionalentry.ui:215 @@ -21107,7 +21107,7 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:145 msgctxt "datafielddialog|extended_tip|functions" msgid "Click the type of subtotal that you want to calculate. This option is only available if the User-defined option is selected." -msgstr "Kliknite na typ medzisúčtu, ktorý chcete vypočítať. Táto možnosť je k dispozícii, iba ak je vybraná možnosť Definované používateľom." +msgstr "Kliknite na typ medzisúčtu, ktorý chcete vypočítať. Táto možnosť je k dispozícii, len ak je vybraná možnosť Definované používateľom." #. oY6n8 #: sc/uiconfig/scalc/ui/datafielddialog.ui:162 @@ -21245,7 +21245,7 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:359 msgctxt "datafielddialog|extended_tip|expander" msgid "Expands or reduces the dialog. The More button is visible for data fields only." -msgstr "Rozširuje alebo zmenšuje dialógové okno. Tlačidlo Viac je viditeľné iba pre dátové polia." +msgstr "Rozširuje alebo zmenšuje dialógové okno. Tlačidlo Viac je viditeľné len pre dátové polia." #. X9gD5 #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:29 @@ -21869,7 +21869,7 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:296 msgctxt "definedatabaserangedialog|modify" msgid "M_odify" -msgstr "_Upraviť" +msgstr "_Zmeniť" #. AGETd #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:317 @@ -21929,7 +21929,7 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:433 msgctxt "definedatabaserangedialog|extended_tip|DontSaveImportedData" msgid "Only saves a reference to the database, and not the contents of the cells." -msgstr "Uloží iba odkaz na databázu a nie na obsah buniek." +msgstr "Uloží len odkaz na databázu a nie na obsah buniek." #. nYJiV #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:447 @@ -22199,7 +22199,7 @@ #: sc/uiconfig/scalc/ui/deletecontents.ui:128 msgctxt "deletecontents|extended_tip|text" msgid "Deletes text only. Formats, formulas, numbers and dates are not affected." -msgstr "Zmaže iba text. Formáty, vzorce, čísla a dáta zostávajú nezmenené." +msgstr "Zmaže len text. Formáty, vzorce, čísla a dáta zostávajú nezmenené." #. pNGEC #: sc/uiconfig/scalc/ui/deletecontents.ui:139 @@ -22211,7 +22211,7 @@ #: sc/uiconfig/scalc/ui/deletecontents.ui:147 msgctxt "deletecontents|extended_tip|numbers" msgid "Deletes numbers only. Formats and formulas remain unchanged." -msgstr "Zmaže iba čísla. Formáty a vzorce zostávajú nezmenené." +msgstr "Zmaže len čísla. Formáty a vzorce zostávajú nezmenené." #. iNGBK #: sc/uiconfig/scalc/ui/deletecontents.ui:158 @@ -22223,7 +22223,7 @@ #: sc/uiconfig/scalc/ui/deletecontents.ui:166 msgctxt "deletecontents|extended_tip|datetime" msgid "Deletes date and time values. Formats, text, numbers and formulas remain unchanged." -msgstr "Zmaže iba časové a dátové hodnoty. Formáty, texty, čísla a vzorce zostávajú nezmenené." +msgstr "Zmaže len časové a dátové hodnoty. Formáty, texty, čísla a vzorce zostávajú nezmenené." #. igEyD #: sc/uiconfig/scalc/ui/deletecontents.ui:177 @@ -22235,7 +22235,7 @@ #: sc/uiconfig/scalc/ui/deletecontents.ui:185 msgctxt "deletecontents|extended_tip|formulas" msgid "Deletes formulas. Text, numbers, formats, dates and times remain unchanged." -msgstr "Zmaže iba vzorce. Formáty, texty, čísla a dátové hodnoty zostávajú nezmenené." +msgstr "Zmaže len vzorce. Formáty, texty, čísla a dátové hodnoty zostávajú nezmenené." #. qhUoD #: sc/uiconfig/scalc/ui/deletecontents.ui:196 @@ -22781,7 +22781,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:261 msgctxt "filldlg|date" msgid "Da_te" -msgstr "Dá_tumová" +msgstr "Dá_tum" #. 7VCDM #: sc/uiconfig/scalc/ui/filldlg.ui:270 @@ -22829,7 +22829,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:368 msgctxt "filldlg|extended_tip|week" msgid "Use the Date series type and this option to create a series only using the five weekdays. Unit of Increment is day." -msgstr "Pomocou typu Dátumový rad a tejto možnosti môžete vytvoriť postupnosť iba pomocou piatich pracovných dní. Jednotkou prírastku je deň." +msgstr "Pomocou typu Dátumový rad a tejto možnosti môžete vytvoriť postupnosť len pomocou piatich pracovných dní. Jednotkou prírastku je deň." #. gjGCn #: sc/uiconfig/scalc/ui/filldlg.ui:380 @@ -23915,7 +23915,7 @@ #: sc/uiconfig/scalc/ui/headerfooterdialog.ui:139 msgctxt "headerfooterdialog|header" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. cEXKF #: sc/uiconfig/scalc/ui/headerfooterdialog.ui:186 @@ -23975,7 +23975,7 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:187 msgctxt "imoptdialog|extended_tip|quoteall" msgid "Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character." -msgstr "Exportuje všetky textové bunky s úvodnými a koncovými znakmi úvodzoviek, ako sú nastavené v poli Oddeľovač textu. Ak nie je zaškrtnuté, úvodzovky sa použijú iba pre tie textové bunky, ktoré obsahujú znak oddeľovača textu." +msgstr "Exportuje všetky textové bunky s úvodnými a koncovými znakmi úvodzoviek, ako sú nastavené v poli Oddeľovač textu. Ak nie je zaškrtnuté, úvodzovky sa použijú len pre tie textové bunky, ktoré obsahujú znak oddeľovača textu." #. KGh9G #: sc/uiconfig/scalc/ui/imoptdialog.ui:199 @@ -25249,7 +25249,7 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:11669 msgctxt "CalcNotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. EjbzV #: sc/uiconfig/scalc/ui/notebookbar.ui:12850 @@ -25454,7 +25454,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. 8eQN8 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504 @@ -25659,7 +25659,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10494 msgctxt "notebookbar_groupedbar_compact|viewDrawb" msgid "Grou_p" -msgstr "Zosku_piť" +msgstr "_Zoskupiť" #. cbMTW #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6899 @@ -25969,7 +25969,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" -msgstr "Zosku_piť" +msgstr "_Zoskupiť" #. fNGFB #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978 @@ -26875,7 +26875,7 @@ #: sc/uiconfig/scalc/ui/optdlg.ui:103 msgctxt "extended_tip|printCB" msgid "Specifies that only contents from selected sheets are printed, even if you specify a wider range in the File - Print dialog or in the Format - Print Ranges dialog. Contents from sheets that are not selected will not be printed." -msgstr "Vytlačí sa iba obsah vybraných hárkov, aj keď v dialógovom okne Súbor - Tlač alebo Formát - Oblasti tlače určíte väčšiu oblasť. Obsah hárkov, ktoré nie sú vybrané, sa nevytlačí." +msgstr "Vytlačí sa len obsah vybraných hárkov, aj keď v dialógovom okne Súbor - Tlač alebo Formát - Oblasti tlače určíte väčšiu oblasť. Obsah hárkov, ktoré nie sú vybrané, sa nevytlačí." #. wT6PN #: sc/uiconfig/scalc/ui/optdlg.ui:119 @@ -27103,7 +27103,7 @@ #: sc/uiconfig/scalc/ui/optsortlists.ui:38 msgctxt "extended_tip|copy" msgid "Copies the contents of the cells in the Copy list from box. If you select a reference to related rows and columns, the Copy List dialog appears after clicking the button. You can use this dialog to define if the reference is converted to sort lists by row or by column." -msgstr "Skopíruje obsah buniek určených v poli Kopírovať zoznam z. Ak vyberiete odkaz na súvisiace riadky a stĺpce, po kliknutí na tlačidlo sa zobrazí dialógové okno Kopírovať zoznam. V tomto okne môžete určiť, či sa odkazy prevedú na zoradený zoznam po riadkoch či stĺpcoch." +msgstr "Skopíruje obsah buniek určených v poli Kopírovať zoznam z. Ak vyberiete odkaz na súvisiace riadky a stĺpce, po kliknutí na tlačidlo sa zobrazí dialógové okno Kopírovať zoznam. V tomto okne môžete určiť, či sa odkazy skonvertujú na zoradený zoznam po riadkoch či stĺpcoch." #. jG3HS #: sc/uiconfig/scalc/ui/optsortlists.ui:57 @@ -27175,7 +27175,7 @@ #: sc/uiconfig/scalc/ui/optsortlists.ui:265 msgctxt "optsortlists|modify" msgid "Modif_y" -msgstr "Up_raviť" +msgstr "_Zmeniť" #. yN2Fo #: sc/uiconfig/scalc/ui/optsortlists.ui:279 @@ -27229,7 +27229,7 @@ #: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:344 msgctxt "pagetemplatedialog|header" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. LLLXG #: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:392 @@ -27391,7 +27391,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:187 msgctxt "pastespecial|extended_tip|paste_formats" msgid "Pastes only the formats from the source range without changing the values in the destination range." -msgstr "Vloží iba formáty zo zdrojovej oblasti, hodnoty v cieľovej oblasti sa nezmenia." +msgstr "Vloží len formáty zo zdrojovej oblasti, hodnoty v cieľovej oblasti sa nezmenia." #. osqEX #: sc/uiconfig/scalc/ui/pastespecial.ui:199 @@ -27643,7 +27643,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:711 msgctxt "pastespecial|extended_tip|add" msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells." -msgstr "Pridá hodnoty v bunkách schránky k hodnotám v cieľových bunkách. Ak schránka obsahuje iba komentáre, pridá tiež komentáre do cieľových buniek." +msgstr "Pridá hodnoty v bunkách schránky k hodnotám v cieľových bunkách. Ak schránka obsahuje len komentáre, pridá tiež komentáre do cieľových buniek." #. 4SmrC #: sc/uiconfig/scalc/ui/pastespecial.ui:723 @@ -27709,7 +27709,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:41 msgctxt "pivotfielddialog|extended_tip|options" msgid "Opens the Data Field Options dialog. The Options button is visible for filters and column or row fields only." -msgstr "Otvorí dialógové okno Možnosti poľa údajov. Tlačidlo Možnosti je viditeľné iba pre filtre a polia stĺpcov alebo riadkov." +msgstr "Otvorí dialógové okno Možnosti poľa údajov. Tlačidlo Možnosti je viditeľné len pre filtre a polia stĺpcov alebo riadkov." #. KBmND #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:133 @@ -27727,13 +27727,13 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:163 msgctxt "pivotfielddialog|user" msgid "_User-defined" -msgstr "_Používateľom definované" +msgstr "Definované _používateľom" #. k2AjG #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:211 msgctxt "pivotfielddialog|extended_tip|functions" msgid "Click the type of subtotal that you want to calculate. This option is only available if the User-defined option is selected." -msgstr "Kliknite na typ medzisúčtu, ktorý chcete vypočítať. Táto možnosť je k dispozícii, iba ak je vybraná možnosť Definované používateľom." +msgstr "Kliknite na typ medzisúčtu, ktorý chcete vypočítať. Táto možnosť je k dispozícii, len ak je vybraná možnosť Definované používateľom." #. vDXUZ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:228 @@ -27925,7 +27925,7 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:520 msgctxt "pivotfilterdialog|dbarealabel" msgid "Data range:" -msgstr "Dátová oblasť:" +msgstr "Oblasť dát:" #. inZxG #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:533 @@ -29593,7 +29593,7 @@ #: sc/uiconfig/scalc/ui/sharedheaderdialog.ui:139 msgctxt "sharedheaderdialog|header" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. knqg2 #: sc/uiconfig/scalc/ui/sharedheaderdialog.ui:186 @@ -30349,7 +30349,7 @@ #: sc/uiconfig/scalc/ui/solverdlg.ui:8 msgctxt "solverdlg|SolverDialog" msgid "Solver" -msgstr "Riešič" +msgstr "Riešiteľ" #. p9CbY #: sc/uiconfig/scalc/ui/solverdlg.ui:39 @@ -30709,7 +30709,7 @@ #: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:121 msgctxt "solveroptionsdialog|extended_tip|engine" msgid "Select a solver engine. The listbox is disabled if only one solver engine is installed." -msgstr "Vyberte engine riešiteľa. Zoznam je deaktivovaný, ak je nainštalovaný iba jeden engine riešiteľa." +msgstr "Vyberte engine riešiteľa. Zoznam je deaktivovaný, ak je nainštalovaný len jeden engine riešiteľa." #. JVMDt #: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:148 @@ -30733,7 +30733,7 @@ #: sc/uiconfig/scalc/ui/solverprogressdialog.ui:8 msgctxt "solverprogressdialog|SolverProgressDialog" msgid "Solving..." -msgstr "Riešim..." +msgstr "Prebieha riešenie..." #. QEGW8 #: sc/uiconfig/scalc/ui/solverprogressdialog.ui:27 @@ -31117,7 +31117,7 @@ #: sc/uiconfig/scalc/ui/sparklinedialog.ui:218 msgctxt "SparklineDialog|label-data" msgid "Data" -msgstr "Údaje" +msgstr "Dáta" #. GXiV2 #: sc/uiconfig/scalc/ui/sparklinedialog.ui:250 @@ -31273,7 +31273,7 @@ #: sc/uiconfig/scalc/ui/sparklinedialog.ui:725 msgctxt "SparklineDialog|option_MaxAxis_Group" msgid "Group" -msgstr "Zoskupené" +msgstr "Zoskupiť" #. C2Huq #: sc/uiconfig/scalc/ui/sparklinedialog.ui:726 @@ -31807,7 +31807,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1167 msgctxt "standardfilterdialog|dbarealabel" msgid "Data range:" -msgstr "Dátová oblasť:" +msgstr "Oblasť dát:" #. VBZEp #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1180 @@ -32479,7 +32479,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:102 msgctxt "tpviewpage|anchor" msgid "_Anchor" -msgstr "_Ukotvenie" +msgstr "_Ukotviť" #. B5SJi #: sc/uiconfig/scalc/ui/tpviewpage.ui:110 @@ -32527,7 +32527,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:198 msgctxt "extended_tip|rowcolheader" msgid "Specifies whether to display row and column headers." -msgstr "Určuje, či sa zobrazí záhlavie riadkov a stĺpcov." +msgstr "Určuje, či sa zobrazia hlavičky riadkov a stĺpcov." #. WAwjG #: sc/uiconfig/scalc/ui/tpviewpage.ui:209 @@ -32647,7 +32647,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:440 msgctxt "tpviewpage|grid" msgid "Show" -msgstr "Ukázať" +msgstr "Zobraziť" #. GXPYd #: sc/uiconfig/scalc/ui/tpviewpage.ui:441 @@ -32731,7 +32731,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:605 msgctxt "tpviewpage|objgrf" msgid "Show" -msgstr "Ukázať" +msgstr "Zobraziť" #. Kx6yJ #: sc/uiconfig/scalc/ui/tpviewpage.ui:606 @@ -32749,7 +32749,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:624 msgctxt "tpviewpage|diagram" msgid "Show" -msgstr "Ukázať" +msgstr "Zobraziť" #. H7MAB #: sc/uiconfig/scalc/ui/tpviewpage.ui:625 @@ -32767,7 +32767,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:643 msgctxt "tpviewpage|draw" msgid "Show" -msgstr "Ukázať" +msgstr "Zobraziť" #. DST5a #: sc/uiconfig/scalc/ui/tpviewpage.ui:644 diff -Nru libreoffice-7.4.6/translations/source/sk/scaddins/messages.po libreoffice-7.4.7/translations/source/sk/scaddins/messages.po --- libreoffice-7.4.6/translations/source/sk/scaddins/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/scaddins/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:12+0200\n" -"PO-Revision-Date: 2021-01-23 18:34+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1507305401.000000\n" #. i8Y7Z @@ -138,7 +138,7 @@ "This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead." msgstr "" "Vráti číslo kalendárneho týždňa, do ktorého zadaný dátum padne.\n" -"Táto funkcia existuje iba kvôli interoperabilite so staršími dokumentami programu Microsoft Excel, v novších dokumentoch použite funkciu WEEKNUM." +"Táto funkcia existuje len kvôli interoperabilite so staršími dokumentami programu Microsoft Excel, v novších dokumentoch použite funkciu WEEKNUM." #. FRcij #: scaddins/inc/analysis.hrc:60 @@ -202,7 +202,7 @@ "This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead." msgstr "" "Vráti počet pracovných dní medzi dvomi dátumami.\n" -"Táto funkcia existuje iba kvôli interoperabilite so staršími dokumentmi programu Microsoft Excel, v novších dokumentoch použite funkciu NETWORKDAYS." +"Táto funkcia existuje len kvôli interoperabilite so staršími dokumentmi programu Microsoft Excel, v novších dokumentoch použite funkciu NETWORKDAYS." #. t7PBi #: scaddins/inc/analysis.hrc:78 @@ -464,7 +464,7 @@ "This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead." msgstr "" "Vráti najväčší spoločný deliteľ.\n" -"Táto funkcia existuje iba kvôli interoperabilite so staršími dokumentmi programu Microsoft Excel, v novších dokumentoch použite funkciu GCD." +"Táto funkcia existuje len kvôli interoperabilite so staršími dokumentmi programu Microsoft Excel, v novších dokumentoch použite funkciu GCD." #. UX77R #: scaddins/inc/analysis.hrc:157 @@ -486,7 +486,7 @@ "This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead." msgstr "" "Vráti najmenší spoločný násobok.\n" -"Táto funkcia existuje iba kvôli interoperabilite so staršími dokumentmi programu Microsoft Excel, v novších dokumentoch použite funkciu LCM." +"Táto funkcia existuje len kvôli interoperabilite so staršími dokumentmi programu Microsoft Excel, v novších dokumentoch použite funkciu LCM." #. QYJfr #: scaddins/inc/analysis.hrc:164 @@ -624,7 +624,7 @@ #: scaddins/inc/analysis.hrc:206 msgctxt "ANALYSIS_Bin2Oct" msgid "Converts a binary number to an octal number" -msgstr "Prevedie číslo z dvojkovej do osmičkovej sústavy" +msgstr "Konvertuje číslo z dvojkovej do osmičkovej sústavy" #. bvibr #: scaddins/inc/analysis.hrc:207 @@ -654,7 +654,7 @@ #: scaddins/inc/analysis.hrc:215 msgctxt "ANALYSIS_Bin2Dec" msgid "Converts a binary number to a decimal number" -msgstr "Prevedie číslo z dvojkovej do desiatkovej sústavy" +msgstr "Konvertuje číslo z dvojkovej do desiatkovej sústavy" #. YFu9X #: scaddins/inc/analysis.hrc:216 @@ -672,7 +672,7 @@ #: scaddins/inc/analysis.hrc:222 msgctxt "ANALYSIS_Bin2Hex" msgid "Converts a binary number to a hexadecimal number" -msgstr "Prevedie číslo z dvojkovej do šestnástkovej sústavy" +msgstr "Konvertuje číslo z dvojkovej do šestnástkovej sústavy" #. o38Dx #: scaddins/inc/analysis.hrc:223 @@ -702,7 +702,7 @@ #: scaddins/inc/analysis.hrc:231 msgctxt "ANALYSIS_Oct2Bin" msgid "Converts an octal number to a binary number" -msgstr "Prevedie číslo z osmičkovej do dvojkovej sústavy" +msgstr "Konvertuje číslo z osmičkovej do dvojkovej sústavy" #. 5S4TQ #: scaddins/inc/analysis.hrc:232 @@ -732,7 +732,7 @@ #: scaddins/inc/analysis.hrc:240 msgctxt "ANALYSIS_Oct2Dec" msgid "Converts an octal number to a decimal number" -msgstr "Prevedie číslo z osmičkovej do desiatkovej sústavy" +msgstr "Konvertuje číslo z osmičkovej do desiatkovej sústavy" #. 7LLcF #: scaddins/inc/analysis.hrc:241 @@ -750,7 +750,7 @@ #: scaddins/inc/analysis.hrc:247 msgctxt "ANALYSIS_Oct2Hex" msgid "Converts an octal number to a hexadecimal number" -msgstr "Prevedie číslo z osmičkovej do šestnástkovej sústavy" +msgstr "Konvertuje číslo z osmičkovej do šestnástkovej sústavy" #. FEYjF #: scaddins/inc/analysis.hrc:248 @@ -780,7 +780,7 @@ #: scaddins/inc/analysis.hrc:256 msgctxt "ANALYSIS_Dec2Bin" msgid "Converts a decimal number to a binary number" -msgstr "Prevedie číslo z desiatkovej do dvojkovej sústavy" +msgstr "Konvertuje číslo z desiatkovej do dvojkovej sústavy" #. 8TwGb #: scaddins/inc/analysis.hrc:257 @@ -810,7 +810,7 @@ #: scaddins/inc/analysis.hrc:265 msgctxt "ANALYSIS_Dec2Hex" msgid "Converts a decimal number to a hexadecimal number" -msgstr "Prevedie číslo z desiatkovej do šestnástkovej sústavy" +msgstr "Konvertuje číslo z desiatkovej do šestnástkovej sústavy" #. GDJ7U #: scaddins/inc/analysis.hrc:266 @@ -840,7 +840,7 @@ #: scaddins/inc/analysis.hrc:274 msgctxt "ANALYSIS_Dec2Oct" msgid "Converts a decimal number into an octal number" -msgstr "Prevedie číslo z desiatkovej do osmičkovej sústavy" +msgstr "Konvertuje číslo z desiatkovej do osmičkovej sústavy" #. BkhvW #: scaddins/inc/analysis.hrc:275 @@ -870,7 +870,7 @@ #: scaddins/inc/analysis.hrc:283 msgctxt "ANALYSIS_Hex2Bin" msgid "Converts a hexadecimal number to a binary number" -msgstr "Prevedie číslo z šestnástkovej do dvojkovej sústavy" +msgstr "Konvertuje číslo z šestnástkovej do dvojkovej sústavy" #. r3SbQ #: scaddins/inc/analysis.hrc:284 @@ -900,7 +900,7 @@ #: scaddins/inc/analysis.hrc:292 msgctxt "ANALYSIS_Hex2Dec" msgid "Converts a hexadecimal number to a decimal number" -msgstr "Prevedie číslo z šestnástkovej do desiatkovej sústavy" +msgstr "Konvertuje číslo z šestnástkovej do desiatkovej sústavy" #. trsUF #: scaddins/inc/analysis.hrc:293 @@ -918,7 +918,7 @@ #: scaddins/inc/analysis.hrc:299 msgctxt "ANALYSIS_Hex2Oct" msgid "Converts a hexadecimal number to an octal number" -msgstr "Prevedie číslo vyjadrené z šestnástkovej do osmičkovej sústavy" +msgstr "Konvertuje číslo vyjadrené z šestnástkovej do osmičkovej sústavy" #. oBk4D #: scaddins/inc/analysis.hrc:300 @@ -1554,7 +1554,7 @@ #: scaddins/inc/analysis.hrc:532 msgctxt "ANALYSIS_Complex" msgid "Converts real and imaginary coefficients into a complex number" -msgstr "Prevedie reálny a imaginárny koeficient na komplexné číslo" +msgstr "Konvertuje reálny a imaginárny koeficient na komplexné číslo" #. sorkj #: scaddins/inc/analysis.hrc:533 @@ -1596,7 +1596,7 @@ #: scaddins/inc/analysis.hrc:543 msgctxt "ANALYSIS_Convert" msgid "Converts a number from one measurement system to another" -msgstr "Prevedie číslo z jedného merného systému do iného" +msgstr "Konvertuje číslo z jedného merného systému do iného" #. 5ub7S #: scaddins/inc/analysis.hrc:544 @@ -4082,7 +4082,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -4122,7 +4122,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -4493,7 +4493,7 @@ #: scaddins/inc/pricing.hrc:53 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "String to define whether the barrier is observed (c)ontinuously or only at the (e)nd/maturity" -msgstr "Reťazec určujúci, či je bariéra sledovaná priebežne (c), alebo iba na konci pri splatnosti (e)" +msgstr "Reťazec určujúci, či je bariéra sledovaná priebežne (c), alebo len na konci pri splatnosti (e)" #. f82KB #: scaddins/inc/pricing.hrc:54 @@ -4631,7 +4631,7 @@ #: scaddins/inc/pricing.hrc:80 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "String to define whether the barrier is observed (c)ontinuously or only at the (e)nd/maturity" -msgstr "Reťazec určujúci, či je bariéra sledovaná priebežne (c), alebo iba na konci pri splatnosti (e)" +msgstr "Reťazec určujúci, či je bariéra sledovaná priebežne (c), alebo len na konci pri splatnosti (e)" #. H3XiF #: scaddins/inc/pricing.hrc:81 @@ -4679,7 +4679,7 @@ #: scaddins/inc/pricing.hrc:92 msgctxt "PRICING_FUNCDESC_OptProbHit" msgid "Drift" -msgstr "trend" +msgstr "Trend" #. qsmwN #: scaddins/inc/pricing.hrc:93 diff -Nru libreoffice-7.4.6/translations/source/sk/sccomp/messages.po libreoffice-7.4.7/translations/source/sk/sccomp/messages.po --- libreoffice-7.4.6/translations/source/sk/sccomp/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/sccomp/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-29 16:03+0200\n" -"PO-Revision-Date: 2021-01-23 18:34+0000\n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1516201491.000000\n" #. whDxm @@ -118,7 +118,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -158,7 +158,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sk/scp2/source/impress.po libreoffice-7.4.7/translations/source/sk/scp2/source/impress.po --- libreoffice-7.4.6/translations/source/sk/scp2/source/impress.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/scp2/source/impress.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-10-02 06:35+0000\n" +"PO-Revision-Date: 2023-03-26 10:32+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1484835713.000000\n" #. USjxN @@ -104,7 +104,7 @@ "STR_REG_VAL_SO60_SHOW\n" "LngText.text" msgid "Show" -msgstr "Ukázať" +msgstr "Zobraziť" #. oR4ox #: registryitem_impress.ulf diff -Nru libreoffice-7.4.6/translations/source/sk/scp2/source/ooo.po libreoffice-7.4.7/translations/source/sk/scp2/source/ooo.po --- libreoffice-7.4.6/translations/source/sk/scp2/source/ooo.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/scp2/source/ooo.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-02-21 15:23+0100\n" -"PO-Revision-Date: 2022-02-20 06:13+0000\n" +"PO-Revision-Date: 2023-03-07 09:32+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560237206.000000\n" #. CYBGJ @@ -5351,7 +5351,7 @@ "STR_NAME_MODULE_OPTIONAL_REPORTDESIGN\n" "LngText.text" msgid "Report Builder" -msgstr "Tvorba zostáv" +msgstr "Návrhár zostáv" #. uzCcq #: module_reportbuilder.ulf @@ -5405,7 +5405,7 @@ "STR_REG_VAL_EXTENSION\n" "LngText.text" msgid "%PRODUCTNAME Extension" -msgstr "Rozšírenie %PRODUCTNAME" +msgstr "%PRODUCTNAME Rozšírenie" #. TKpXD #: registryitem_ooo.ulf diff -Nru libreoffice-7.4.6/translations/source/sk/sd/messages.po libreoffice-7.4.7/translations/source/sk/sd/messages.po --- libreoffice-7.4.6/translations/source/sk/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-07-12 03:33+0000\n" +"PO-Revision-Date: 2023-04-18 10:34+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1563988209.000000\n" #. WDjkB @@ -200,7 +200,7 @@ #: sd/inc/DocumentRenderer.hrc:90 msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE" msgid "All ~Pages" -msgstr "Všetky ~strany" +msgstr "~Všetky strany" #. 7nrMB #: sd/inc/DocumentRenderer.hrc:91 @@ -232,7 +232,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -272,7 +272,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -507,7 +507,7 @@ #: sd/inc/strings.hrc:43 msgctxt "STR_AUTOLAYOUT_ONLY_TITLE" msgid "Title Only" -msgstr "Iba názov" +msgstr "Len nadpis" #. yEaXc #: sd/inc/strings.hrc:44 @@ -525,49 +525,49 @@ #: sd/inc/strings.hrc:46 msgctxt "STR_AUTOLAYOUT_CONTENT" msgid "Title, Content" -msgstr "Názov, obsah" +msgstr "Nadpis, obsah" #. D2n4r #: sd/inc/strings.hrc:47 msgctxt "STR_AUTOLAYOUT_2CONTENT" msgid "Title and 2 Content" -msgstr "Názov, 2 x obsah" +msgstr "Nadpis a 2 x obsah" #. gJvEw #: sd/inc/strings.hrc:48 msgctxt "STR_AUTOLAYOUT_CONTENT_2CONTENT" msgid "Title, Content and 2 Content" -msgstr "Názov, obsah a 2 x obsah" +msgstr "Nadpis, obsah a 2 x obsah" #. BygEm #: sd/inc/strings.hrc:49 msgctxt "STR_AUTOLAYOUT_2CONTENT_CONTENT" msgid "Title, 2 Content and Content" -msgstr "Názov, 2 x obsah, obsah" +msgstr "Nadpis, 2 x obsah, obsah" #. e3iAd #: sd/inc/strings.hrc:50 msgctxt "STR_AUTOLAYOUT_2CONTENT_OVER_CONTENT" msgid "Title, 2 Content over Content" -msgstr "Názov, 2 x obsah and obsahom" +msgstr "Nadpis, 2 x obsah nad obsahom" #. D9Ra9 #: sd/inc/strings.hrc:51 msgctxt "STR_AUTOLAYOUT_CONTENT_OVER_CONTENT" msgid "Title, Content over Content" -msgstr "Názov, obsah nad obsahom" +msgstr "Nadpis, obsah nad obsahom" #. jnnLj #: sd/inc/strings.hrc:52 msgctxt "STR_AUTOLAYOUT_4CONTENT" msgid "Title, 4 Content" -msgstr "Názov, 4 x obsah" +msgstr "Nadpis, 4 x obsah" #. Bhnxh #: sd/inc/strings.hrc:53 msgctxt "STR_AUTOLAYOUT_6CONTENT" msgid "Title, 6 Content" -msgstr "Názov, 6 x obsah" +msgstr "Nadpis, 6 x obsah" #. G9mLN #: sd/inc/strings.hrc:54 @@ -591,7 +591,7 @@ #: sd/inc/strings.hrc:57 msgctxt "STR_AL_VERT_TITLE_VERT_OUTLINE" msgid "Vertical Title, Vertical Text" -msgstr "Vertikálny názov, vertikálny text" +msgstr "Vertikálny nadpis, vertikálny text" #. CAeFA #: sd/inc/strings.hrc:58 @@ -993,7 +993,7 @@ #: sd/inc/strings.hrc:121 msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER" msgid "Convert selected object to curve?" -msgstr "Previesť vybraný objekt na krivku?" +msgstr "Konvertovať vybraný objekt na krivku?" #. wLsLp #: sd/inc/strings.hrc:122 @@ -1617,7 +1617,7 @@ #: sd/inc/strings.hrc:228 msgctxt "STR_UNDO_CONVERT_TO_BITMAP" msgid "Convert to bitmap" -msgstr "Previesť do rastrového formátu" +msgstr "Konvertovať do rastrového formátu" #. Fs7id #: sd/inc/strings.hrc:229 @@ -1953,13 +1953,13 @@ #: sd/inc/strings.hrc:285 msgctxt "STR_MASTERSLIDE_LABEL" msgid "Master Slide:" -msgstr "Predloha snímky:" +msgstr "Predloha snímok:" #. C3zZM #: sd/inc/strings.hrc:286 msgctxt "STR_MASTERPAGE_NAME" msgid "Master Page" -msgstr "Predloha stránok" +msgstr "Predloha strany" #. nTgKn #: sd/inc/strings.hrc:287 @@ -2355,7 +2355,7 @@ #: sd/inc/strings.hrc:356 msgctxt "STR_PSEUDOSHEET_SUBTITLE" msgid "Subtitle" -msgstr "Podnázov" +msgstr "Podnadpis" #. JVyHE #: sd/inc/strings.hrc:357 @@ -2495,7 +2495,7 @@ #: sd/inc/strings.hrc:383 msgctxt "SID_SD_A11Y_P_SUBTITLE_N" msgid "PresentationSubtitle" -msgstr "Podnázov prezentácie" +msgstr "Podnadpis prezentácie" #. 8KV99 #: sd/inc/strings.hrc:384 @@ -2567,7 +2567,7 @@ #: sd/inc/strings.hrc:395 msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE" msgid "Subtitle" -msgstr "Podnázov" +msgstr "Podnadpis" #. eSBEi #: sd/inc/strings.hrc:396 @@ -2603,7 +2603,7 @@ #: sd/inc/strings.hrc:401 msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. CCwKy #: sd/inc/strings.hrc:402 @@ -2621,7 +2621,7 @@ #: sd/inc/strings.hrc:404 msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY" msgid "(read-only)" -msgstr "(iba na čítanie)" +msgstr "(len na čítanie)" #. EV4W5 #: sd/inc/strings.hrc:406 @@ -2687,7 +2687,7 @@ #: sd/inc/strings.hrc:416 msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY" msgid "Font:" -msgstr "Font:" +msgstr "Písmo:" #. Fdsks #: sd/inc/strings.hrc:417 @@ -3287,7 +3287,7 @@ #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:110 msgctxt "crossfadedialog|extended_tip|orientation" msgid "Applies a smooth transition between the selected objects." -msgstr "Vykoná plynulý prechod medzi vybranými tvarmi." +msgstr "Vykoná plynulý prechod medzi vybranými útvarmi." #. SmBMK #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:122 @@ -3323,7 +3323,7 @@ #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:203 msgctxt "crossfadedialog|extended_tip|CrossFadeDialog" msgid "Creates shapes and distributes them by uniform increments between two drawing objects." -msgstr "Vytvorí nové tvary a rovnomerne ich rozmiestni medzi dva objekty." +msgstr "Vytvorí nové útvary a rovnomerne ich rozmiestni medzi dva objekty." #. 9Ga7E #: sd/uiconfig/sdraw/ui/dlgsnap.ui:8 @@ -3821,7 +3821,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:292 msgctxt "insertlayer|extended_tip|InsertLayerDialog" msgid "Inserts a new layer in the document. Layers are only available in Draw, not in Impress." -msgstr "Vloží do dokumentu novú vrstvu. Vrstvy sú k dispozícii iba v Draw, nie v Impress." +msgstr "Vloží do dokumentu novú vrstvu. Vrstvy sú k dispozícii len v Draw, nie v Impress." #. dCRtD #: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:18 @@ -3905,7 +3905,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:5723 msgctxt "drawnotebookbar|InsertLabel" msgid "~Insert" -msgstr "Vlož~iť" +msgstr "~Vložiť" #. TVDXM #: sd/uiconfig/sdraw/ui/notebookbar.ui:6423 @@ -3965,7 +3965,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:10669 msgctxt "drawnotebookbar|TableLabel" msgid "~Table" -msgstr "T~abuľka" +msgstr "~Tabuľka" #. ECD4J #: sd/uiconfig/sdraw/ui/notebookbar.ui:11196 @@ -3979,13 +3979,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:11864 msgctxt "drawnotebookbar|GraphicMenuButton" msgid "Ima_ge" -msgstr "O_brázok" +msgstr "_Obrázok" #. 7FoFi #: sd/uiconfig/sdraw/ui/notebookbar.ui:11973 msgctxt "drawnotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. 6SADm #: sd/uiconfig/sdraw/ui/notebookbar.ui:13724 @@ -4015,7 +4015,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:15271 msgctxt "drawnotebookbar|MediaMenuButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. ed3LH #: sd/uiconfig/sdraw/ui/notebookbar.ui:15375 @@ -4039,13 +4039,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:17054 msgctxt "DrawNotebookbar|FormMenuButton" msgid "3_d" -msgstr "_3D" +msgstr "3_D" #. fEyRX #: sd/uiconfig/sdraw/ui/notebookbar.ui:17161 msgctxt "DrawNotebookbar|FormLabel" msgid "3~d" -msgstr "~3D" +msgstr "3~D" #. 7ZLQw #: sd/uiconfig/sdraw/ui/notebookbar.ui:17685 @@ -4177,13 +4177,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10891 msgctxt "notebookbar_draw_compact|TableMenuButton" msgid "T_able" -msgstr "T_abuľka" +msgstr "_Tabuľka" #. GEmbu #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10942 msgctxt "notebookbar_draw_compact|TableLabel" msgid "~Table" -msgstr "T~abuľka" +msgstr "~Tabuľka" #. EGCcN #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 @@ -4195,7 +4195,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. CezAN #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 @@ -4225,13 +4225,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. dAbX4 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" -msgstr "~Multimédiá" +msgstr "~Médiá" #. SCSH8 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 @@ -4261,13 +4261,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" -msgstr "_3D" +msgstr "3_D" #. ZCuDe #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" -msgstr "~3D" +msgstr "3~D" #. YpLRj #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 @@ -4426,7 +4426,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12198 msgctxt "draw_notebookbar_groupedbar_compact|viewDrawb" msgid "Grou_p" -msgstr "Zosku_piť" +msgstr "_Zoskupiť" #. TCPHC #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8285 @@ -4486,7 +4486,7 @@ #: sd/uiconfig/sdraw/ui/paranumberingtab.ui:27 msgctxt "paranumberingtab|checkbuttonCB_NEW_START" msgid "R_estart at this paragraph" -msgstr "R_eštartovať v tomto odseku" +msgstr "R_eštartovať na začiatku tohto odseku" #. bEHD3 #: sd/uiconfig/sdraw/ui/paranumberingtab.ui:56 @@ -4600,7 +4600,7 @@ #: sd/uiconfig/sdraw/ui/vectorize.ui:372 msgctxt "vectorize|extended_tip|VectorizeDialog" msgid "Converts the selected object to a polygon (a closed object bounded by straight lines)." -msgstr "Prevedie vybraný objekt na mnohouholník, čo je uzavrený objekt ohraničený rovnými čarami." +msgstr "Konvertuje vybraný objekt na mnohouholník, čo je uzavrený objekt ohraničený rovnými čarami." #. oQWMw #: sd/uiconfig/simpress/ui/annotation.ui:12 @@ -5306,7 +5306,7 @@ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:120 msgctxt "customanimationtexttab|extended_tip|animate_shape" msgid "Deselect this box to animate only the text, not the shape." -msgstr "Zrušte výber tohto poľa, ak chcete animovať iba text, nie útvar." +msgstr "Zrušte výber tohto poľa, ak chcete animovať len text, nie útvar." #. ir4kZ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:132 @@ -5456,7 +5456,7 @@ #: sd/uiconfig/simpress/ui/customslideshows.ui:231 msgctxt "customslideshows|extended_tip|delete" msgid "Deletes the selected element or elements without requiring confirmation." -msgstr "Bez nutnosti potvrdenia odstráni vybraný prvok alebo prvky." +msgstr "Odstráni vybraný prvok alebo prvky bez potreby potvrdenia." #. 8Cf3C #: sd/uiconfig/simpress/ui/customslideshows.ui:267 @@ -5642,7 +5642,7 @@ #: sd/uiconfig/simpress/ui/dockinganimation.ui:139 msgctxt "dockinganimation|extended_tip|duration" msgid "Enter the number of seconds to display the current image. This option is only available if you select the Bitmap object option in the Animation group field." -msgstr "Zadajte počet sekúnd zobrazia aktuálneho obrázka. Táto možnosť je k dispozícii iba ak v poli skupiny Animácia vyberiete možnosť Objekt bitovej mapy." +msgstr "Zadajte počet sekúnd zobrazia aktuálneho obrázka. Táto možnosť je k dispozícii len ak v poli skupiny Animácia vyberiete možnosť Objekt bitovej mapy." #. B5sxX #: sd/uiconfig/simpress/ui/dockinganimation.ui:152 @@ -6506,7 +6506,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:8 msgctxt "masterlayoutdlg|MasterLayoutDialog" msgid "Master Elements" -msgstr "Predlohy prvkov" +msgstr "Prvky predlohy" #. 2kiHn #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:92 @@ -6518,7 +6518,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:100 msgctxt "masterlayoutdlg|extended_tip|header" msgid "Adds a header placeholder to the master slide for notes." -msgstr "Na predlohu poznámok pridá zástupný symbol záhlavia." +msgstr "Na predlohu poznámok pridá zástupný symbol hlavičky." #. iccus #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:112 @@ -6602,7 +6602,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:12 msgctxt "navigatorpanelSTR_DRAGTYPE_URL" msgid "Insert as Hyperlink" -msgstr "Vložiť ako hypertextové prepojenie" +msgstr "Vložiť ako hypertextový odkaz" #. ptpuN #: sd/uiconfig/simpress/ui/navigatorpanel.ui:20 @@ -6716,7 +6716,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:238 msgctxt "navigatorpanel|extended_tip|shapes" msgid "In the submenu you can choose to display a list of all shapes or only the named shapes. Use drag-and-drop in the list to reorder the shapes. When you set the focus to a slide and press the Tab key, the next shape in the defined order is selected." -msgstr "V podponuke si môžete zvoliť medzi zobrazením všetkých tvarov alebo iba vymenovaných tvarov. Tvary v zozname môžete preskupiť pretiahnutím. Keď nastavíte kurzor do snímky a stlačíte klávesu Tab, označí sa ďalší tvar v určenom poradí." +msgstr "V podponuke si môžete zvoliť medzi zobrazením všetkých útvarov alebo len vymenovaných útvarov. Útvary v zozname môžete preskupiť pretiahnutím. Keď nastavíte kurzor do snímky a stlačíte klávesu Tab, označí sa ďalší útvar v určenom poradí." #. DzQZC #: sd/uiconfig/simpress/ui/navigatorpanel.ui:261 @@ -6782,7 +6782,7 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:6134 msgctxt "impressnotebookbar|InsertLabel" msgid "~Insert" -msgstr "Vlož~iť" +msgstr "~Vložiť" #. 58fjG #: sd/uiconfig/simpress/ui/notebookbar.ui:6909 @@ -6806,7 +6806,7 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:7542 msgctxt "impressnotebookbar|ReferencesLabel" msgid "~Slide Show" -msgstr "Pr~ezentácia" +msgstr "~Prezentácia" #. sDdGm #: sd/uiconfig/simpress/ui/notebookbar.ui:8078 @@ -6842,7 +6842,7 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:10443 msgctxt "impressnotebookbar|TableLabel" msgid "~Table" -msgstr "T~abuľka" +msgstr "~Tabuľka" #. Cn8TS #: sd/uiconfig/simpress/ui/notebookbar.ui:10968 @@ -6850,19 +6850,19 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:14034 msgctxt "impressnotebookbar|ConvertMenuButton" msgid "Convert" -msgstr "Previesť" +msgstr "Konvertovať" #. do5DT #: sd/uiconfig/simpress/ui/notebookbar.ui:11638 msgctxt "impressnotebookbar|GraphicMenuButton" msgid "Ima_ge" -msgstr "O_brázok" +msgstr "_Obrázok" #. XCSMA #: sd/uiconfig/simpress/ui/notebookbar.ui:11747 msgctxt "impressnotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. nTy3C #: sd/uiconfig/simpress/ui/notebookbar.ui:13449 @@ -6892,7 +6892,7 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:14998 msgctxt "impressnotebookbar|MediaMenuButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. GgHEg #: sd/uiconfig/simpress/ui/notebookbar.ui:15102 @@ -6940,13 +6940,13 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:18554 msgctxt "impressnotebookbar|FormMenuButton" msgid "3_d" -msgstr "3_d" +msgstr "3_D" #. xwrog #: sd/uiconfig/simpress/ui/notebookbar.ui:18661 msgctxt "impressnotebookbar|FormLabel" msgid "3~d" -msgstr "3~d" +msgstr "3~D" #. syaDA #: sd/uiconfig/simpress/ui/notebookbar.ui:18718 @@ -7012,7 +7012,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5883 msgctxt "notebookbar_impress_compact|InsertLabel" msgid "~Insert" -msgstr "Vlož~iť" +msgstr "~Vložiť" #. zEEiz #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6669 @@ -7066,7 +7066,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10445 msgctxt "notebookbar_impress_compact|TableMenuButton" msgid "T_able" -msgstr "T_abuľka" +msgstr "_Tabuľka" #. mnepU #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10496 @@ -7078,13 +7078,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" -msgstr "Obraz" +msgstr "Obrázok" #. wD2ow #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" -msgstr "O~bráz" +msgstr "_Obrázok" #. ZqPYr #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 @@ -7114,13 +7114,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. HbptL #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" -msgstr "~Multimédiá" +msgstr "~Médiá" #. NNqQ2 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 @@ -7150,13 +7150,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" -msgstr "3_d" +msgstr "3_D" #. ntfL7 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" -msgstr "3~d" +msgstr "3~D" #. ntjaC #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 @@ -7253,7 +7253,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13213 msgctxt "notebookbar_groupedbar_compact|viewT" msgid "_View" -msgstr "Z_obraziť" +msgstr "_Zobraziť" #. 5fAr4 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4379 @@ -7315,7 +7315,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12160 msgctxt "notebookbar_groupedbar_compact|viewDrawb" msgid "Grou_p" -msgstr "Zosku_piť" +msgstr "_Zoskupiť" #. cbMTW #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8247 @@ -7501,7 +7501,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6996 msgctxt "notebookbar_groupedbar_full|tabled" msgid "T_able" -msgstr "T_abuľka" +msgstr "_Tabuľka" #. i8XUZ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7256 @@ -7539,7 +7539,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8683 msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" -msgstr "Zosku_piť" +msgstr "_Zoskupiť" #. fNGFB #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8822 @@ -7563,7 +7563,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10172 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. duFFM #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10347 @@ -8043,7 +8043,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:478 msgctxt "optimpressgeneralpage|textselected" msgid "Only text area selectable" -msgstr "Možné vybrať iba textovú oblasť" +msgstr "Možné vybrať len textovú oblasť" #. EQqRZ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:486 @@ -9177,13 +9177,13 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1520 msgctxt "publishingdialog|textOnlyCheckbutton" msgid "_Text only" -msgstr "Iba _text" +msgstr "Len _text" #. F9Ysk #: sd/uiconfig/simpress/ui/publishingdialog.ui:1529 msgctxt "publishingdialog|extended_tip|textOnlyCheckbutton" msgid "Inserts only text hyperlinks instead of buttons." -msgstr "Namiesto tlačidiel vloží iba hypertextové odkazy." +msgstr "Namiesto tlačidiel vloží len hypertextové odkazy." #. hJCd8 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1575 @@ -9459,7 +9459,7 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:269 msgctxt "sidebarslidebackground|masterslidebutton" msgid "Master View" -msgstr "Zobrazenie predlohy" +msgstr "Predloha snímok" #. EVfaj #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:282 @@ -9513,7 +9513,7 @@ #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:72 msgctxt "slidecontextmenu|150" msgid "_Normal" -msgstr "Normá_lne" +msgstr "_Normálne" #. g56Pz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:80 @@ -9723,7 +9723,7 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275 msgctxt "slidetransitionspanel|rb_auto_after" msgid "After:" -msgstr "Po:" +msgstr "Za:" #. rJJQy #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287 diff -Nru libreoffice-7.4.6/translations/source/sk/sfx2/messages.po libreoffice-7.4.7/translations/source/sk/sfx2/messages.po --- libreoffice-7.4.6/translations/source/sk/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2022-07-12 03:33+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1566300978.000000\n" #. bHbFE @@ -421,13 +421,13 @@ #: include/sfx2/strings.hrc:87 msgctxt "STR_HELP_BUTTON_PRINT" msgid "Print..." -msgstr "Tlač..." +msgstr "Tlačiť..." #. bmCzY #: include/sfx2/strings.hrc:88 msgctxt "STR_HELP_BUTTON_ADDBOOKMARK" msgid "Add to Bookmarks..." -msgstr "Pridať k záložkám..." +msgstr "Pridať do záložiek..." #. SGFus #: include/sfx2/strings.hrc:89 @@ -439,7 +439,7 @@ #: include/sfx2/strings.hrc:90 msgctxt "STR_HELP_BUTTON_SOURCEVIEW" msgid "HTML Source" -msgstr "Zdrojový HTML text" +msgstr "HTML zdroj" #. pHyBm #: include/sfx2/strings.hrc:91 @@ -1107,7 +1107,7 @@ #: include/sfx2/strings.hrc:202 msgctxt "STR_REDACTION_MULTI_EDIT" msgid "You have selected multiple targets, but only one target can be edited at once." -msgstr "Vybrali ste viac cieľov, ale upravovať možno iba jeden." +msgstr "Vybrali ste viac cieľov, ale upravovať možno len jeden." #. BTayC #: include/sfx2/strings.hrc:203 @@ -1161,7 +1161,7 @@ #: include/sfx2/strings.hrc:212 msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT" msgid "~Insert" -msgstr "Vlož~iť" +msgstr "~Vložiť" #. DcLFD #: include/sfx2/strings.hrc:213 @@ -1361,7 +1361,7 @@ #: include/sfx2/strings.hrc:249 msgctxt "STR_READONLY" msgid " (read-only)" -msgstr " (Iba na čítanie)" +msgstr " (Len na čítanie)" #. uL87C #: include/sfx2/strings.hrc:250 @@ -1500,7 +1500,7 @@ #: include/sfx2/strings.hrc:267 msgctxt "STR_DONATE_TEXT" msgid "Your donations support our worldwide community." -msgstr "Vaše finančné príspevky podporujú našu celosvetovú komunitu." +msgstr "Vaše finančné príspevky pomáhajú našej celosvetovej komunite." #. KzgoD #: include/sfx2/strings.hrc:268 @@ -1572,7 +1572,7 @@ #: include/sfx2/strings.hrc:279 msgctxt "STR_CHECKOUT" msgid "Check Out" -msgstr "Stiahnuť a rezervovať" +msgstr "Vytvoriť pracovnú verziu" #. PwPNw #: include/sfx2/strings.hrc:280 @@ -1614,7 +1614,7 @@ #: include/sfx2/strings.hrc:286 msgctxt "STR_SIGNATURE_PARTIAL_OK" msgid "At least one signature has problems: the document is only partially signed." -msgstr "Minimálne jeden podpis má problémy: dokument je podpísaný iba čiastočne." +msgstr "Minimálne jeden podpis má problémy: dokument je podpísaný len čiastočne." #. mU6ot #: include/sfx2/strings.hrc:287 @@ -1820,7 +1820,7 @@ #: include/sfx2/strings.hrc:323 msgctxt "STR_TEMPLATE_NAME26" msgid "Default" -msgstr "Prednastavené" +msgstr "Predvolené" #. d7Hyk #: include/sfx2/strings.hrc:324 @@ -1868,7 +1868,7 @@ #: include/sfx2/strings.hrc:332 msgctxt "STR_CLEAR_ALL_CHAR" msgid "Clear All" -msgstr "Všetko zmazať" +msgstr "Odstrániť všetko" #. yC8Gs #: include/sfx2/strings.hrc:334 @@ -2014,7 +2014,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -2054,7 +2054,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -2397,7 +2397,7 @@ #: sfx2/source/devtools/DevToolsStrings.hrc:21 msgctxt "STR_SHEET" msgid "Sheet %1" -msgstr "Tabuľka %1" +msgstr "Hárok %1" #. BaABx #: sfx2/source/devtools/DevToolsStrings.hrc:23 @@ -2745,13 +2745,13 @@ #: sfx2/uiconfig/ui/addtargetdialog.ui:234 msgctxt "addtargetdialog|checkboxCaseSensitive" msgid "Match case" -msgstr "Rozlišovať veľkosť" +msgstr "Rozlišovať veľkosť písmen" #. G2u3B #: sfx2/uiconfig/ui/addtargetdialog.ui:249 msgctxt "addtargetdialog|checkboxWholeWords" msgid "Whole words only" -msgstr "Iba celé slová" +msgstr "Len celé slová" #. JV66c #: sfx2/uiconfig/ui/alienwarndialog.ui:7 @@ -2817,7 +2817,7 @@ #: sfx2/uiconfig/ui/autoredactdialog.ui:161 msgctxt "autoredactdialog|target" msgid "Match case" -msgstr "Rozlišovať veľkosť" +msgstr "Rozlišovať veľkosť písmen" #. obHtC #: sfx2/uiconfig/ui/autoredactdialog.ui:174 @@ -2865,7 +2865,7 @@ #: sfx2/uiconfig/ui/bookmarkdialog.ui:8 msgctxt "bookmarkdialog|BookmarkDialog" msgid "Add to Bookmarks" -msgstr "Pridať k záložkám" +msgstr "Pridať do záložiek" #. U6BGv #: sfx2/uiconfig/ui/bookmarkdialog.ui:83 @@ -3647,19 +3647,19 @@ #: sfx2/uiconfig/ui/helpsearchpage.ui:122 msgctxt "helpsearchpage|find" msgid "_Find" -msgstr "_Upraviť" +msgstr "_Nájsť" #. ZiE8A #: sfx2/uiconfig/ui/helpsearchpage.ui:141 msgctxt "helpsearchpage|completewords" msgid "_Complete words only" -msgstr "Iba _celé slová" +msgstr "Len _celé slová" #. vzqdb #: sfx2/uiconfig/ui/helpsearchpage.ui:155 msgctxt "helpsearchpage|headings" msgid "Find in _headings only" -msgstr "_Hľadať iba v nadpisoch" +msgstr "_Hľadať len v nadpisoch" #. JDZho #: sfx2/uiconfig/ui/helpwindow.ui:69 @@ -3695,7 +3695,7 @@ #: sfx2/uiconfig/ui/helpwindow.ui:134 msgctxt "helpwindow|searchdialog|tooltip_text" msgid "Find on this Page" -msgstr "Nájsť na prvej strane" +msgstr "Nájsť na tejto strane" #. VnXxR #: sfx2/uiconfig/ui/infobar.ui:65 @@ -4319,7 +4319,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:531 msgctxt "extended_tip|reducetransauto" msgid "Specifies that the transparency is only printed if the transparent area covers less than a quarter of the entire page." -msgstr "Určuje, že transparentnosť sa tlačí iba ak priehľadná oblasť pokrýva menej ako štvrtinu strany." +msgstr "Určuje, že transparentnosť sa tlačí len ak priehľadná oblasť pokrýva menej ako štvrtinu strany." #. K7P4C #: sfx2/uiconfig/ui/optprintpage.ui:542 @@ -4349,7 +4349,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:614 msgctxt "optprintpage|converttogray" msgid "Con_vert colors to grayscale" -msgstr "Pre_viesť farby na odtiene sivej" +msgstr "_Konvertovať farby na odtiene sivej" #. UNSqH #: sfx2/uiconfig/ui/optprintpage.ui:622 @@ -4421,13 +4421,13 @@ #: sfx2/uiconfig/ui/password.ui:165 msgctxt "password|extended_tip|pass1ed" msgid "Type a password. A password is case sensitive." -msgstr "Zadajte heslo. Pri hesle záleží na veľkosti písmen." +msgstr "Zadajte heslo. V hesle sa rozlišujú malé a veľké písmená." #. kEcVk #: sfx2/uiconfig/ui/password.ui:185 msgctxt "password|extended_tip|confirm1ed" msgid "Re-enter the password." -msgstr "Zopakujte heslo." +msgstr "Opakovane zadajte heslo." #. JBCUB #: sfx2/uiconfig/ui/password.ui:200 @@ -4451,13 +4451,13 @@ #: sfx2/uiconfig/ui/password.ui:267 msgctxt "password|extended_tip|pass2ed" msgid "Type a password. A password is case sensitive." -msgstr "Zadajte heslo. Pri hesle záleží na veľkosti písmen." +msgstr "Zadajte heslo. V hesle sa rozlišujú malé a veľké písmená." #. c4nGS #: sfx2/uiconfig/ui/password.ui:287 msgctxt "password|extended_tip|confirm2ed" msgid "Re-enter the password." -msgstr "Zopakujte heslo." +msgstr "Opakovane zadajte heslo." #. mCxpj #: sfx2/uiconfig/ui/password.ui:302 @@ -4469,7 +4469,7 @@ #: sfx2/uiconfig/ui/password.ui:338 msgctxt "password|onlyascii" msgid "Only Basic Latin characters can be entered" -msgstr "Zadané môžu byť iba znaky základnej latinky" +msgstr "Zadané môžu byť len znaky základnej latinky" #. AFsUP #: sfx2/uiconfig/ui/printeroptionsdialog.ui:8 @@ -4613,7 +4613,7 @@ #: sfx2/uiconfig/ui/searchdialog.ui:139 msgctxt "searchdialog|wholewords" msgid "Whole wor_ds only" -msgstr "Iba _celé slová" +msgstr "Len _celé slová" #. ycWSx #: sfx2/uiconfig/ui/searchdialog.ui:153 @@ -4637,7 +4637,7 @@ #: sfx2/uiconfig/ui/securityinfopage.ui:31 msgctxt "securityinfopage|extended_tip|readonly" msgid "Select to allow this document to be opened in read-only mode only." -msgstr "Zaškrtnutím povolíte otváranie tohoto dokument iba v režime na čítanie." +msgstr "Zaškrtnutím povolíte otváranie tohoto dokument len v režime na čítanie." #. GvCw9 #: sfx2/uiconfig/ui/securityinfopage.ui:42 @@ -4841,7 +4841,7 @@ #: sfx2/uiconfig/ui/stylecontextmenu.ui:36 msgctxt "stylecontextmenu|show" msgid "Show" -msgstr "Ukázať" +msgstr "Zobraziť" #. 7bAyD #: sfx2/uiconfig/ui/stylecontextmenu.ui:44 diff -Nru libreoffice-7.4.6/translations/source/sk/shell/messages.po libreoffice-7.4.7/translations/source/sk/shell/messages.po --- libreoffice-7.4.6/translations/source/sk/shell/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/shell/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-19 13:14+0100\n" -"PO-Revision-Date: 2021-01-23 18:34+0000\n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560238866.000000\n" #. 9taro @@ -74,7 +74,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -114,7 +114,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sk/starmath/messages.po libreoffice-7.4.7/translations/source/sk/starmath/messages.po --- libreoffice-7.4.6/translations/source/sk/starmath/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/starmath/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:51+0200\n" -"PO-Revision-Date: 2021-12-21 11:44+0000\n" +"PO-Revision-Date: 2023-04-19 00:34+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562264692.000000\n" #. GrDhX @@ -200,7 +200,7 @@ #: starmath/inc/smmod.hrc:52 msgctxt "RID_UI_SYMBOL_NAMES" msgid "omicron" -msgstr "omicron" +msgstr "omikron" #. ZvPw7 #: starmath/inc/smmod.hrc:53 @@ -442,7 +442,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -482,7 +482,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -2192,7 +2192,7 @@ #: starmath/inc/strings.hrc:315 msgctxt "RID_CATEGORY_BRACKETS" msgid "Brackets" -msgstr "Hranaté zátvorky" +msgstr "Zátvorky" #. UAdpn #: starmath/inc/strings.hrc:316 @@ -2204,7 +2204,7 @@ #: starmath/inc/strings.hrc:317 msgctxt "RID_CATEGORY_OTHERS" msgid "Others" -msgstr "Iné" +msgstr "Ďalšie" #. 3fzNy #: starmath/inc/strings.hrc:318 @@ -2492,7 +2492,7 @@ #: starmath/inc/strings.hrc:367 msgctxt "STR_FONT" msgid "font" -msgstr "Písmo" +msgstr "písmo" #. TEnpE #: starmath/inc/strings.hrc:368 @@ -2654,7 +2654,7 @@ #: starmath/inc/strings.hrc:394 msgctxt "RID_PRINTUIOPT_TITLE" msgid "~Title" -msgstr "Ná~zov" +msgstr "~Názov" #. LSV24 #: starmath/inc/strings.hrc:395 @@ -2780,7 +2780,7 @@ #: starmath/uiconfig/smath/ui/catalogdialog.ui:43 msgctxt "catalogdialog|insert" msgid "_Insert" -msgstr "Vlož_iť" +msgstr "_Vložiť" #. w4mRB #: starmath/uiconfig/smath/ui/catalogdialog.ui:52 @@ -2906,7 +2906,7 @@ #: starmath/uiconfig/smath/ui/fontsizedialog.ui:170 msgctxt "fontsizedialog|extended_tip|spinB_baseSize" msgid "All elements of a formula are proportionally scaled to the base size. To change the base size, select or type in the desired point (pt) size. You can also use other units of measure or other metrics, which are then automatically converted to points." -msgstr "Veľkosť všetkých prvkov vzorca sa proporcionálne mení podľa základnej veľkosti. Ak chcete zmeniť základnú veľkosť, vyberte alebo zadajte požadovanú veľkosť v bodoch (pt). Tiež môžete použiť iné jednotky z ďalších merných systémov, ktoré sa automaticky prevedú na body." +msgstr "Veľkosť všetkých prvkov vzorca sa proporcionálne mení podľa základnej veľkosti. Ak chcete zmeniť základnú veľkosť, vyberte alebo zadajte požadovanú veľkosť v bodoch (pt). Tiež môžete použiť iné jednotky z ďalších merných systémov, ktoré sa automaticky skonvertujú na body." #. RtP4G #: starmath/uiconfig/smath/ui/fontsizedialog.ui:214 @@ -3032,7 +3032,7 @@ #: starmath/uiconfig/smath/ui/fonttypedialog.ui:98 msgctxt "fonttypedialog|modify" msgid "_Modify" -msgstr "_Upraviť" +msgstr "_Zmeniť" #. uQCNw #: starmath/uiconfig/smath/ui/fonttypedialog.ui:111 @@ -3435,7 +3435,7 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:78 msgctxt "spacingdialog|menuitem6" msgid "Brackets" -msgstr "Hranaté zátvorky" +msgstr "Zátvorky" #. hk8a9 #: starmath/uiconfig/smath/ui/spacingdialog.ui:88 @@ -3483,7 +3483,7 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:375 msgctxt "spacingdialog|checkbutton" msgid "Scale all brackets" -msgstr "Upraviť všetky zátvorky" +msgstr "Škálovať všetky zátvorky" #. FuBDq #: starmath/uiconfig/smath/ui/spacingdialog.ui:713 @@ -3495,7 +3495,7 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:763 msgctxt "spacingdialog|1label1" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. yY4XJ #: starmath/uiconfig/smath/ui/spacingdialog.ui:776 @@ -3597,7 +3597,7 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:1244 msgctxt "spacingdialog|6label2" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. TbK3K #: starmath/uiconfig/smath/ui/spacingdialog.ui:1257 @@ -3609,7 +3609,7 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:1286 msgctxt "spacingdialog|6title" msgid "Brackets" -msgstr "Hranaté zátvorky" +msgstr "Zátvorky" #. fywdV #: starmath/uiconfig/smath/ui/spacingdialog.ui:1335 @@ -3657,7 +3657,7 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:1530 msgctxt "spacingdialog|9label2" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. xR3hK #: starmath/uiconfig/smath/ui/spacingdialog.ui:1559 @@ -3735,7 +3735,7 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:265 msgctxt "symdefinedialog|modify" msgid "_Modify" -msgstr "_Upraviť" +msgstr "_Zmeniť" #. 7FFzu #: starmath/uiconfig/smath/ui/symdefinedialog.ui:272 @@ -3759,7 +3759,7 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:346 msgctxt "symdefinedialog|symbolSetText" msgid "Symbol s_et:" -msgstr "S_ada symbolov:" +msgstr "_Množina symbolov:" #. G4GCV #: starmath/uiconfig/smath/ui/symdefinedialog.ui:360 diff -Nru libreoffice-7.4.6/translations/source/sk/svl/messages.po libreoffice-7.4.7/translations/source/sk/svl/messages.po --- libreoffice-7.4.6/translations/source/sk/svl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/svl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:20+0100\n" -"PO-Revision-Date: 2022-02-15 07:39+0000\n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1519744130.000000\n" #. PDMJD @@ -72,7 +72,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -112,7 +112,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sk/svtools/messages.po libreoffice-7.4.7/translations/source/sk/svtools/messages.po --- libreoffice-7.4.6/translations/source/sk/svtools/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/svtools/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-07-12 03:33+0000\n" +"PO-Revision-Date: 2023-03-25 21:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560235430.000000\n" #. fLdeV @@ -1343,7 +1343,7 @@ #: include/svtools/strings.hrc:277 msgctxt "STR_DESCRIPTION_GRAPHIC_DOC" msgid "Graphics" -msgstr "Obrázky" +msgstr "Grafika" #. Enc4X #: include/svtools/strings.hrc:278 @@ -1747,7 +1747,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -1787,7 +1787,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -2310,7 +2310,7 @@ #: svtools/inc/errtxt.hrc:107 msgctxt "RID_ERRHDL" msgid "Document opened as read-only cannot be saved over itself." -msgstr "Dokument, ktorý je otvorený iba na čítanie, nemožno uložiť na rovnaké umiestnenie." +msgstr "Dokument, ktorý je otvorený len na čítanie, nemožno uložiť na rovnaké umiestnenie." #. kDirB #: svtools/inc/errtxt.hrc:108 @@ -3852,7 +3852,7 @@ #: svtools/inc/langtab.hrc:245 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Friulian" -msgstr "friulčina" +msgstr "Furlandčina" #. XFeaU #: svtools/inc/langtab.hrc:246 @@ -5076,7 +5076,7 @@ #: svtools/uiconfig/ui/addresstemplatedialog.ui:203 msgctxt "addresstemplatedialog|label100" msgid "Address Book Source" -msgstr "Zdroj knihy adries" +msgstr "Zdroj databázy kontaktov" #. K4oiz #: svtools/uiconfig/ui/addresstemplatedialog.ui:548 @@ -5394,7 +5394,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:758 msgctxt "graphicexport|extended_tip|epsipreviewcb" msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code." -msgstr "Určuje, či je spolu s PostScript súborom exportovaný aj čiernobiely náhľad vo formáte EPSI. Tento formát obsahuje iba tlačiteľné znaky v kódovaní 7-bit ASCII." +msgstr "Určuje, či je spolu s PostScript súborom exportovaný aj čiernobiely náhľad vo formáte EPSI. Tento formát obsahuje len tlačiteľné znaky v kódovaní 7-bit ASCII." #. sRbZb #: svtools/uiconfig/ui/graphicexport.ui:773 diff -Nru libreoffice-7.4.6/translations/source/sk/svx/messages.po libreoffice-7.4.7/translations/source/sk/svx/messages.po --- libreoffice-7.4.6/translations/source/sk/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2022-07-15 17:09+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560239618.000000\n" #. 3GkZj @@ -962,37 +962,37 @@ #: include/svx/strings.hrc:182 msgctxt "STR_EditConvToPoly" msgid "Convert %1 to polygon" -msgstr "Previesť %1 na mnohouholník" +msgstr "Konvertovať %1 na mnohouholník" #. TPv7Q #: include/svx/strings.hrc:183 msgctxt "STR_EditConvToPolys" msgid "Convert %1 to polygons" -msgstr "Previesť %1 na mnohouholníky" +msgstr "Konvertovať %1 na mnohouholníky" #. ompqC #: include/svx/strings.hrc:184 msgctxt "STR_EditConvToCurve" msgid "Convert %1 to curve" -msgstr "Previesť %1 na krivku" +msgstr "Konvertovať %1 na krivku" #. gax8J #: include/svx/strings.hrc:185 msgctxt "STR_EditConvToCurves" msgid "Convert %1 to curves" -msgstr "Previesť %1 na krivky" +msgstr "Konvertovať %1 na krivky" #. s96Mt #: include/svx/strings.hrc:186 msgctxt "STR_EditConvToContour" msgid "Convert %1 to contour" -msgstr "Previesť %1 na obrys" +msgstr "Konvertovať %1 na obrys" #. LAyEj #: include/svx/strings.hrc:187 msgctxt "STR_EditConvToContours" msgid "Convert %1 to contours" -msgstr "Previesť %1 na obrysy" +msgstr "Konvertovať %1 na obrysy" #. jzxvB #: include/svx/strings.hrc:188 @@ -3394,7 +3394,7 @@ #: include/svx/strings.hrc:594 msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA" msgid "Light Magenta" -msgstr "Svetlá fialová" +msgstr "Svetlá purpurová" #. y96HS #: include/svx/strings.hrc:595 @@ -5420,7 +5420,7 @@ #: include/svx/strings.hrc:951 msgctxt "RID_SVXSTR_LEND3" msgid "Dimension Lines" -msgstr "Kótovacie čiara" +msgstr "Kótovacie čiary" #. JKxZ6 #. To translators: this is an arrow head style @@ -5455,7 +5455,7 @@ #: include/svx/strings.hrc:961 msgctxt "RID_SVXSTR_LEND8" msgid "Dimension Line" -msgstr "Kótovacia čiara s obrysom šípky" +msgstr "Kótovacia čiara" #. EBEY5 #. To translators: this is an arrow head style @@ -5553,7 +5553,7 @@ #: include/svx/strings.hrc:989 msgctxt "RID_SVXSTR_LEND22" msgid "Line" -msgstr "Obrys šípky" +msgstr "Čiara" #. im8fN #. To translators: this is an arrow head style @@ -6026,7 +6026,7 @@ #: include/svx/strings.hrc:1084 msgctxt "RID_SVXSTR_QRY_PRINT_MSG" msgid "Do you want to print the selection or the entire document?" -msgstr "Chcete vytlačiť iba vybranú časť alebo celý dokument?" +msgstr "Chcete vytlačiť len vybranú časť alebo celý dokument?" #. 3UyC8 #: include/svx/strings.hrc:1085 @@ -6224,7 +6224,7 @@ #: include/svx/strings.hrc:1119 msgctxt "RID_SVXSTR_MORE" msgid "More Options..." -msgstr "Ďalšie možnosti..." +msgstr "Viac možností..." #. D25BE #. This is duplicated in GenericCommands.xcu in officecfg. @@ -6790,7 +6790,7 @@ #: include/svx/strings.hrc:1222 msgctxt "RID_STR_PROPTITLE_COMBOBOX" msgid "Combo Box" -msgstr "Rozbaľovacie pole" +msgstr "Pole so zoznamom" #. WiNUf #: include/svx/strings.hrc:1223 @@ -6826,7 +6826,7 @@ #: include/svx/strings.hrc:1228 msgctxt "RID_STR_PROPTITLE_PATTERNFIELD" msgid "Pattern Field" -msgstr "Pole vzorky" +msgstr "Pole vzoru" #. DEn9D #: include/svx/strings.hrc:1229 @@ -7042,7 +7042,7 @@ #: include/svx/strings.hrc:1267 msgctxt "RID_STR_READONLY_VIEW" msgid " (read-only)" -msgstr " (Iba na čítanie)" +msgstr " (Len na čítanie)" #. DgfNh #: include/svx/strings.hrc:1268 @@ -7505,7 +7505,7 @@ #: include/svx/strings.hrc:1346 msgctxt "RID_SVXSTR_WRITER_STYLES" msgid "Paragraph St~yles" -msgstr "Štýly ~odsekov" +msgstr "Štýly ~odseku" #. ARuQM #: include/svx/strings.hrc:1347 @@ -7595,7 +7595,7 @@ #: include/svx/strings.hrc:1363 msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE" msgid "3D Effects" -msgstr "3D Efekty" +msgstr "3D efekty" #. j6dA6 #: include/svx/strings.hrc:1365 @@ -10284,7 +10284,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -10324,7 +10324,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -11132,7 +11132,7 @@ #: svx/inc/inspectorvalues.hrc:23 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Italic" -msgstr "Šikmé" +msgstr "Kurzíva" #. RTu5D #: svx/inc/inspectorvalues.hrc:25 @@ -11396,7 +11396,7 @@ #: svx/inc/rotationstrings.hrc:20 msgctxt "RID_SVXITEMS_ROTATE_MODE_STANDARD" msgid "Rotation only within cell" -msgstr "Otočenie iba vo vnútri bunky" +msgstr "Otočenie len vo vnútri bunky" #. r8WzF #: svx/inc/rotationstrings.hrc:21 @@ -13166,13 +13166,13 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:342 msgctxt "adddataitemdialog|extended_tip|readonly" msgid "Declares the item as read-only." -msgstr "Deklaruje položku iba na čítanie." +msgstr "Deklaruje položku len na čítanie." #. aAGTh #: svx/uiconfig/ui/adddataitemdialog.ui:353 msgctxt "adddataitemdialog|calculate" msgid "Calc_ulate" -msgstr "S_počítať" +msgstr "Vy_počítať" #. Ct5yr #: svx/uiconfig/ui/adddataitemdialog.ui:361 @@ -13628,7 +13628,7 @@ #: svx/uiconfig/ui/chineseconversiondialog.ui:112 msgctxt "chineseconversiondialog|extended_tip|tosimplified" msgid "Converts traditional Chinese text characters to simplified Chinese text characters. Click OK to convert the selected text. If no text is selected, the whole document is converted." -msgstr "Prevedie tradičné čínske textové znaky na zjednodušené čínske textové znaky. Kliknutím na tlačidlo OK prevediete vybraný text. Ak nie je vybraný žiadny text, prevedie sa celý dokument." +msgstr "Konvertuje tradičné čínske textové znaky na zjednodušené čínske textové znaky. Kliknutím na tlačidlo OK Konvertujete vybraný text. Ak nie je vybraný žiadny text, Konvertuje sa celý dokument." #. aDmx8 #: svx/uiconfig/ui/chineseconversiondialog.ui:123 @@ -13640,7 +13640,7 @@ #: svx/uiconfig/ui/chineseconversiondialog.ui:132 msgctxt "chineseconversiondialog|extended_tip|totraditional" msgid "Converts simplified Chinese text characters to traditional Chinese text characters. Click OK to convert the selected text. If no text is selected, the whole document is converted." -msgstr "Prevedie znaky zjednodušeného čínskeho textu na tradičné znaky čínskeho textu. Kliknutím na tlačidlo OK prevediete vybraný text. Ak nie je vybraný žiadny text, prevedie sa celý dokument." +msgstr "Konvertuje znaky zjednodušeného čínskeho textu na tradičné znaky čínskeho textu. Kliknutím na tlačidlo OK Konvertujete vybraný text. Ak nie je vybraný žiadny text, Konvertuje sa celý dokument." #. dKQjR #: svx/uiconfig/ui/chineseconversiondialog.ui:147 @@ -13658,7 +13658,7 @@ #: svx/uiconfig/ui/chineseconversiondialog.ui:189 msgctxt "chineseconversiondialog|extended_tip|commonterms" msgid "Converts words with two or more characters that are in the list of common terms. After the list is scanned, the remaining text is converted character by character." -msgstr "Skonvertuje slová s dvoma alebo viacerými znakmi, ktoré sú v zozname bežných výrazov. Po prehľadaní zoznamu sa zostávajúci text prevedie znak po znaku." +msgstr "Skonvertuje slová s dvoma alebo viacerými znakmi, ktoré sú v zozname bežných výrazov. Po prehľadaní zoznamu sa zostávajúci text skonvertuje znak po znaku." #. cEs8M #: svx/uiconfig/ui/chineseconversiondialog.ui:200 @@ -13682,7 +13682,7 @@ #: svx/uiconfig/ui/chineseconversiondialog.ui:253 msgctxt "chineseconversiondialog|extended_tip|ChineseConversionDialog" msgid "Converts the selected Chinese text from one Chinese writing system to the other. If no text is selected, the entire document is converted." -msgstr "Prevedie vybraný čínsky text z jedného čínskeho systému písania do druhého. Ak nie je vybraný žiadny text, prevedie sa celý dokument." +msgstr "Konvertuje vybraný čínsky text z jedného čínskeho systému písania do druhého. Ak nie je vybraný žiadny text, Konvertuje sa celý dokument." #. AdAdK #: svx/uiconfig/ui/chinesedictionary.ui:32 @@ -13700,7 +13700,7 @@ #: svx/uiconfig/ui/chinesedictionary.ui:124 msgctxt "chinesedictionary|extended_tip|tradtosimple" msgid "Converts traditional Chinese to simplified Chinese." -msgstr "Prevedie tradičnú čínštinu na zjednodušenú čínštinu." +msgstr "Konvertuje tradičnú čínštinu na zjednodušenú čínštinu." #. SqsBj #: svx/uiconfig/ui/chinesedictionary.ui:135 @@ -13712,7 +13712,7 @@ #: svx/uiconfig/ui/chinesedictionary.ui:144 msgctxt "chinesedictionary|extended_tip|simpletotrad" msgid "Converts simplified Chinese to traditional Chinese." -msgstr "Prevedie zjednodušenú čínštinu na tradičnú čínštinu." +msgstr "Konvertuje zjednodušenú čínštinu na tradičnú čínštinu." #. YqoXf #: svx/uiconfig/ui/chinesedictionary.ui:155 @@ -13752,7 +13752,7 @@ #: svx/uiconfig/ui/chinesedictionary.ui:243 msgctxt "chinesedictionary|modify" msgid "_Modify" -msgstr "_Upraviť" +msgstr "_Zmeniť" #. ccyfm #: svx/uiconfig/ui/chinesedictionary.ui:250 @@ -14510,7 +14510,7 @@ #: svx/uiconfig/ui/defaultshapespanel.ui:299 msgctxt "defaultshapespanel|label9" msgid "Stars and Banners" -msgstr "Hviezdy a panely" +msgstr "Hviezdy a plagáty" #. cibWf #: svx/uiconfig/ui/defaultshapespanel.ui:331 @@ -14582,7 +14582,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:291 msgctxt "docking3deffects|diagonalft" msgid "R_ounded edges" -msgstr "Za_oblené hrany" +msgstr "Za_oblené rohy" #. MozLP #: svx/uiconfig/ui/docking3deffects.ui:305 @@ -14744,7 +14744,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:723 msgctxt "docking3deffects|to3d|tooltip_text" msgid "Convert to 3D" -msgstr "Previesť na 3D" +msgstr "Konvertovať na 3D" #. jGHSC #: svx/uiconfig/ui/docking3deffects.ui:728 @@ -14756,13 +14756,13 @@ #: svx/uiconfig/ui/docking3deffects.ui:742 msgctxt "docking3deffects|tolathe|tooltip_text" msgid "Convert to Rotation Object" -msgstr "Previesť na rotačný objekt" +msgstr "Konvertovať na rotačný objekt" #. 3tj7D #: svx/uiconfig/ui/docking3deffects.ui:747 msgctxt "docking3deffects|extended_tip|tolathe" msgid "Click here to convert a selected 2D object to a 3D rotation object." -msgstr "Kliknutím sem prevediete vybraný 2D objekt na rotačný 3D objekt." +msgstr "Kliknutím sem skonvertujete vybraný 2D objekt na rotačný 3D objekt." #. Tk7Vb #: svx/uiconfig/ui/docking3deffects.ui:761 @@ -14780,7 +14780,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:832 msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text" msgid "Light Preview" -msgstr "Náhľad svetla" +msgstr "Náhľad osvetlenia" #. c86Xg #: svx/uiconfig/ui/docking3deffects.ui:837 @@ -15116,7 +15116,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1766 msgctxt "docking3deffects|extended_tip|textype" msgid "Converts the texture to black and white." -msgstr "Prevedie textúru na čiernobielu." +msgstr "Konvertuje textúru na čiernobielu." #. rfdVf #: svx/uiconfig/ui/docking3deffects.ui:1780 @@ -15128,13 +15128,13 @@ #: svx/uiconfig/ui/docking3deffects.ui:1788 msgctxt "docking3deffects|extended_tip|texcolor" msgid "Converts the texture to color." -msgstr "Prevedie textúru na farebnú." +msgstr "Konvertuje textúru na farebnú." #. aqP2z #: svx/uiconfig/ui/docking3deffects.ui:1802 msgctxt "docking3deffects|texreplace|tooltip_text" msgid "Only Texture" -msgstr "Iba textúra" +msgstr "Len textúra" #. hMAv6 #: svx/uiconfig/ui/docking3deffects.ui:1810 @@ -15452,7 +15452,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2449 msgctxt "docking3deffects|extended_tip|geometry" msgid "Adjusts the shape of the selected 3D object. You can only modify the shape of a 3D object that was created by converting a 2D object. To convert a 2D object to 3D, select the object, right-click, and then choose Convert - To 3D, or Convert - To 3D Rotation Object." -msgstr "Upraví tvar vybraného 3D objektu. Upraviť môžete iba tvar 3D objektu, ktorý bol vytvorený na základe 2D objektu. Ak chcete previesť 2D objekt na 3D, vyberte objekt, kliknite pravým tlačidlom myši a potom vyberte príkaz Konvertovať - na 3D alebo Konvertovať - na 3D rotačný objekt." +msgstr "Upraví tvar vybraného 3D objektu. Upraviť môžete len tvar 3D objektu, ktorý bol vytvorený na základe 2D objektu. Ak chcete previesť 2D objekt na 3D, vyberte objekt, kliknite pravým tlačidlom myši a potom vyberte príkaz Konvertovať - na 3D alebo Konvertovať - na 3D rotačný objekt." #. 4D9WF #: svx/uiconfig/ui/docking3deffects.ui:2466 @@ -15678,7 +15678,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:552 msgctxt "dockingcolorreplace|extended_tip|toolgrid" msgid "Displays the color in the selected image that directly underlies the current mouse pointer position. This features only works if the Color Replacer tool is selected." -msgstr "Zobrazí farbu vo vybranom obrázku, ktorá je priamo pod aktuálnou pozíciou kurzora myši. Táto funkcia funguje, iba ak je vybraný nástroj Náhrada farieb." +msgstr "Zobrazí farbu vo vybranom obrázku, ktorá je priamo pod aktuálnou pozíciou kurzora myši. Táto funkcia funguje, len ak je vybraný nástroj Náhrada farieb." #. gbska #: svx/uiconfig/ui/dockingcolorreplace.ui:568 @@ -16140,7 +16140,7 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:226 msgctxt "findreplacedialog-mobile|wholewords" msgid "Whole wor_ds only" -msgstr "Iba _celé slová" +msgstr "Len _celé slová" #. BRbAi #: svx/uiconfig/ui/findreplacedialog-mobile.ui:243 @@ -16152,7 +16152,7 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:261 msgctxt "findreplacedialog-mobile|allsheets" msgid "All _sheets" -msgstr "~Všetky hárky" +msgstr "Všetky _hárky" #. 8a3TB #: svx/uiconfig/ui/findreplacedialog-mobile.ui:297 @@ -16206,7 +16206,7 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:650 msgctxt "findreplacedialog-mobile|selection" msgid "C_urrent selection only" -msgstr "_Iba súčasný výber" +msgstr "_Len súčasný výber" #. kXCyp #: svx/uiconfig/ui/findreplacedialog-mobile.ui:664 @@ -16398,7 +16398,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:244 msgctxt "findreplacedialog|wholewords" msgid "Whole wor_ds only" -msgstr "Iba _celé slová" +msgstr "Len _celé slová" #. FgEuC #: svx/uiconfig/ui/findreplacedialog.ui:252 @@ -16458,7 +16458,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:485 msgctxt "findreplacedialog|extended_tip|searchall" msgid "Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents)." -msgstr "Nájde a označí v dokumentoch všetky texty alebo formáty, ktoré hľadáte (iba pre dokumenty Writer alebo Calc)." +msgstr "Nájde a označí v dokumentoch všetky texty alebo formáty, ktoré hľadáte (len pre dokumenty Writer alebo Calc)." #. A3wE5 #: svx/uiconfig/ui/findreplacedialog.ui:497 @@ -16512,13 +16512,13 @@ #: svx/uiconfig/ui/findreplacedialog.ui:704 msgctxt "findreplacedialog|selection" msgid "C_urrent selection only" -msgstr "_Iba súčasný výber" +msgstr "_Len súčasný výber" #. Fkfjb #: svx/uiconfig/ui/findreplacedialog.ui:712 msgctxt "findreplacedialog|extended_tip|selection" msgid "Searches only the selected text or cells." -msgstr "Prehľadáva iba vybraný text alebo bunky." +msgstr "Prehľadáva len vybraný text alebo bunky." #. CwXAb #: svx/uiconfig/ui/findreplacedialog.ui:723 @@ -16770,7 +16770,7 @@ #: svx/uiconfig/ui/floatingareastyle.ui:212 msgctxt "floatingareastyle|end|tooltip_text" msgid "Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent." -msgstr "Zatajte hodnotu priehľadnosti pre koncový bod prechodu, kde 0 % je plná nepriehľadnosť a 100 % je plnú priehľadnosť." +msgstr "Zadajte hodnotu priehľadnosti pre počiatočný bod prechodu, 0 % znamená nepriehľadnosť a 100 % úplnú priehľadnosť." #. PgT4m #: svx/uiconfig/ui/floatingareastyle.ui:238 @@ -16848,7 +16848,7 @@ #: svx/uiconfig/ui/floatingcontour.ui:212 msgctxt "floatingcontour|TBI_SELECT" msgid "Select" -msgstr "Zvoliť" +msgstr "Vybrať" #. S2yDP #: svx/uiconfig/ui/floatingcontour.ui:216 @@ -17310,7 +17310,7 @@ #: svx/uiconfig/ui/gallerymenu2.ui:12 msgctxt "gallerymenu2|add" msgid "_Insert" -msgstr "Vlož_iť" +msgstr "_Vložiť" #. UyxJv #: svx/uiconfig/ui/gallerymenu2.ui:20 @@ -17346,7 +17346,7 @@ #: svx/uiconfig/ui/gallerymenu2.ui:90 msgctxt "gallerymenu2|paste" msgid "_Paste" -msgstr "Vlož_iť" +msgstr "_Vložiť" #. YHL6E #: svx/uiconfig/ui/genericcheckentry.ui:31 @@ -17400,7 +17400,7 @@ #: svx/uiconfig/ui/headfootformatpage.ui:207 msgctxt "headfootformatpage|labelSpacing" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. xNArq #: svx/uiconfig/ui/headfootformatpage.ui:234 @@ -17436,7 +17436,7 @@ #: svx/uiconfig/ui/headfootformatpage.ui:352 msgctxt "headfootformatpage|labelHeaderFormat" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. KKLaG #: svx/uiconfig/ui/headfootformatpage.ui:368 @@ -17490,7 +17490,7 @@ #: svx/uiconfig/ui/imapdialog.ui:212 msgctxt "imapdialog|TBI_SELECT" msgid "Select" -msgstr "Zvoliť" +msgstr "Vybrať" #. eFg49 #: svx/uiconfig/ui/imapdialog.ui:216 @@ -17664,7 +17664,7 @@ #: svx/uiconfig/ui/imapdialog.ui:533 msgctxt "imapdialog|textft" msgid "_Text Alternative:" -msgstr "_Textová alternatíva" +msgstr "_Alternatívny text:" #. JnaCz #: svx/uiconfig/ui/imapdialog.ui:534 @@ -17772,7 +17772,7 @@ #: svx/uiconfig/ui/lightingwindow.ui:77 msgctxt "lightingwindow|RID_SVXSTR_NORMAL" msgid "_Normal" -msgstr "Normá_lne" +msgstr "_Normálne" #. m4f3F #: svx/uiconfig/ui/lightingwindow.ui:95 @@ -17790,7 +17790,7 @@ #: svx/uiconfig/ui/linkwarndialog.ui:13 msgctxt "linkwarndialog|LinkWarnDialog" msgid "The file %FILENAME will not be stored along with your document, but only referenced as a link." -msgstr "Súbor %FILENAME nebude uložený spolu s dokumentom, ale iba ako odkaz." +msgstr "Súbor %FILENAME nebude uložený spolu s dokumentom, ale len ako odkaz." #. FunGw #: svx/uiconfig/ui/linkwarndialog.ui:14 @@ -18132,7 +18132,7 @@ #: svx/uiconfig/ui/optgridpage.ui:640 msgctxt "extended_tip|mtrfldangle" msgid "Specifies that graphic objects can only be rotated within the rotation angle that you selected in the When rotating control." -msgstr "Určuje, že sa grafický objekt môže otočiť iba o uhol vybraný v poli Pri otáčaní." +msgstr "Určuje, že sa grafický objekt môže otočiť len o uhol vybraný v poli Pri otáčaní." #. a6oQ8 #: svx/uiconfig/ui/optgridpage.ui:651 @@ -18144,7 +18144,7 @@ #: svx/uiconfig/ui/optgridpage.ui:662 msgctxt "extended_tip|rotate" msgid "Specifies that graphic objects can only be rotated within the rotation angle that you selected in the When rotating control." -msgstr "Určuje, že sa grafický objekt môže otočiť iba o uhol vybraný v poli Pri otáčaní." +msgstr "Určuje, že sa grafický objekt môže otočiť len o uhol vybraný v poli Pri otáčaní." #. xEPJC #: svx/uiconfig/ui/optgridpage.ui:681 @@ -18216,7 +18216,7 @@ #: svx/uiconfig/ui/paralinespacingcontrol.ui:125 msgctxt "paralinespacingcontrol|line_dist" msgid "1.5 Lines" -msgstr "1,5 riadku" +msgstr "1,5 riadka" #. 5jgLT #: svx/uiconfig/ui/paralinespacingcontrol.ui:126 @@ -19644,7 +19644,7 @@ #: svx/uiconfig/ui/sidebarparagraph.ui:204 msgctxt "sidebarparagraph|spacinglabel" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. FUUE6 #: svx/uiconfig/ui/sidebarparagraph.ui:219 @@ -19957,7 +19957,7 @@ #: svx/uiconfig/ui/sidebartextcolumnspanel.ui:49 msgctxt "sidebartextcolumns|labelColSpacing" msgid "_Spacing:" -msgstr "Rozo_stupy:" +msgstr "_Rozostupy" #. Es5Bi #: svx/uiconfig/ui/sidebartextcolumnspanel.ui:70 @@ -19969,7 +19969,7 @@ #: svx/uiconfig/ui/sidebartextcolumnspanel.ui:90 msgctxt "sidebartextcolumns|extended_tip|MTR_FLD_COL_SPACING" msgid "Enter the amount of space to leave between the columns." -msgstr "Zadajte medzeru medzi stĺpcami." +msgstr "Zadajte medzeru, ktorú treba vynechať medzi dvoma stĺpcami." #. dZf2D #: svx/uiconfig/ui/stylemenu.ui:12 diff -Nru libreoffice-7.4.6/translations/source/sk/sw/messages.po libreoffice-7.4.7/translations/source/sk/sw/messages.po --- libreoffice-7.4.6/translations/source/sk/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-03-02 02:46+0000\n" +"PO-Revision-Date: 2023-03-30 21:34+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: Slovak \n" "Language: sk\n" @@ -142,7 +142,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -182,7 +182,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -1388,7 +1388,7 @@ #: sw/inc/inspectorproperties.hrc:151 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Color" -msgstr "Vyplnenie farba" +msgstr "Farba výplne" #. neFA2 #: sw/inc/inspectorproperties.hrc:152 @@ -1586,7 +1586,7 @@ #: sw/inc/inspectorproperties.hrc:184 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outline Level" -msgstr "Osnova úroveň" +msgstr "Úroveň osnovy" #. syTbJ #: sw/inc/inspectorproperties.hrc:185 @@ -2522,7 +2522,7 @@ #: sw/inc/strings.hrc:68 msgctxt "STR_POOLFRM_GRAPHIC" msgid "Graphics" -msgstr "Obrázky" +msgstr "Grafika" #. CHnev #: sw/inc/strings.hrc:69 @@ -2937,7 +2937,7 @@ #: sw/inc/strings.hrc:138 msgctxt "STR_POOLCOLL_HEADER" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. uCLQX #: sw/inc/strings.hrc:139 @@ -3274,7 +3274,7 @@ #: sw/inc/strings.hrc:195 msgctxt "STR_POOLCOLL_DOC_SUBTITEL" msgid "Subtitle" -msgstr "Podnázov" +msgstr "Podnadpis" #. NBniG #: sw/inc/strings.hrc:196 @@ -3630,7 +3630,7 @@ #: sw/inc/strings.hrc:263 msgctxt "SW_STR_READONLY" msgid "read-only" -msgstr "iba na čítanie" +msgstr "len na čítanie" #. QRU4j #: sw/inc/strings.hrc:264 @@ -3703,7 +3703,7 @@ #: sw/inc/strings.hrc:276 msgctxt "STR_STATSTR_HYPHEN" msgid "Hyphenation..." -msgstr "Prebieha delenie slov..." +msgstr "Delenie slov..." #. Dku8Y #: sw/inc/strings.hrc:277 @@ -3917,7 +3917,7 @@ #: sw/inc/strings.hrc:318 msgctxt "STR_CONVERT_TEXT_TABLE" msgid "Convert Text to Table" -msgstr "Previesť text na tabuľku" +msgstr "Konvertovať text na tabuľku" #. PknB5 #: sw/inc/strings.hrc:319 @@ -4122,7 +4122,7 @@ #: sw/inc/strings.hrc:353 msgctxt "STR_EVENT_MOUSECLICK_OBJECT" msgid "Trigger hyperlink" -msgstr "Previesť hypertextový odkaz" +msgstr "Konvertovať hypertextový odkaz" #. BXpj4 #: sw/inc/strings.hrc:354 @@ -4649,13 +4649,13 @@ #: sw/inc/strings.hrc:442 msgctxt "STR_TEXTTOTABLE_UNDO" msgid "Convert text -> table" -msgstr "Previesť text na tabuľku" +msgstr "Konvertovať text na tabuľku" #. h3EH7 #: sw/inc/strings.hrc:443 msgctxt "STR_TABLETOTEXT_UNDO" msgid "Convert table -> text" -msgstr "Previesť tabuľku na text" +msgstr "Konvertovať tabuľku na text" #. uKreq #: sw/inc/strings.hrc:444 @@ -5835,7 +5835,7 @@ #: sw/inc/strings.hrc:644 msgctxt "STR_PRINTOPTUI_NONE" msgid "None (document only)" -msgstr "Bez poznámok (tlačiť iba dokument)" +msgstr "Bez poznámok (tlačiť len dokument)" #. pbQtA #: sw/inc/strings.hrc:645 @@ -5889,7 +5889,7 @@ #: sw/inc/strings.hrc:653 msgctxt "STR_PRINTOPTUI_PRINTPAGES" msgid "Pa~ges:" -msgstr "Stra~ny:" +msgstr "~Strany:" #. rajyx #: sw/inc/strings.hrc:654 @@ -6003,7 +6003,7 @@ #: sw/inc/strings.hrc:674 msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT" msgid "right-click to include sub levels" -msgstr "Kliknutím pravým tlačidlom zahrniete úrovne" +msgstr "kliknite pravým tlačidlom myši, aby ste zahrnuli podúrovne" #. mnZA9 #: sw/inc/strings.hrc:675 @@ -8229,7 +8229,7 @@ #: sw/inc/strings.hrc:1106 msgctxt "STR_NO_CHARFMT" msgid "No Character Style" -msgstr "Nie je štýl znaku" +msgstr "Bez znakového štýlu" #. fzG3P #: sw/inc/strings.hrc:1107 @@ -8247,7 +8247,7 @@ #: sw/inc/strings.hrc:1109 msgctxt "STR_HEADER" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. PcYEB #: sw/inc/strings.hrc:1110 @@ -8295,7 +8295,7 @@ #: sw/inc/strings.hrc:1117 msgctxt "STR_SURROUND_ANCHORONLY" msgid "(Anchor only)" -msgstr "(Iba ukotvenie)" +msgstr "(Len ukotvenie)" #. 9Ywzb #: sw/inc/strings.hrc:1118 @@ -8457,7 +8457,7 @@ #: sw/inc/strings.hrc:1144 msgctxt "STR_EDIT_IN_READONLY" msgid "Editable in read-only document" -msgstr "Upravované v dokumente iba na čítanie" +msgstr "Upravované v dokumente len na čítanie" #. SCL5F #: sw/inc/strings.hrc:1145 @@ -8685,7 +8685,7 @@ #: sw/inc/strings.hrc:1183 msgctxt "ST_GRF" msgid "Graphics" -msgstr "Obrázky" +msgstr "Grafika" #. d5eSc #: sw/inc/strings.hrc:1184 @@ -9365,7 +9365,7 @@ #: sw/inc/strings.hrc:1302 msgctxt "STR_SWBG_HEADER" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. aDuAY #: sw/inc/strings.hrc:1303 @@ -10109,7 +10109,7 @@ #: sw/inc/utlui.hrc:47 msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Set \"Heading $(ARG1)\" Style" -msgstr "Nastaviť štýl \"Nadpisu $(ARG1)\"" +msgstr "Nastaviť štýl \"Nadpis $(ARG1)\"" #. orFXE #: sw/inc/utlui.hrc:48 @@ -10229,7 +10229,7 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:213 msgctxt "addressblockdialog|up|tooltip_text" msgid "Move up" -msgstr "Presunúť vyššie" +msgstr "Presunúť nahor" #. HGrvF #: sw/uiconfig/swriter/ui/addressblockdialog.ui:218 @@ -10265,7 +10265,7 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:270 msgctxt "addressblockdialog|down|tooltip_text" msgid "Move down" -msgstr "Presunúť nižšie" +msgstr "Presunúť nadol" #. FFgmC #: sw/uiconfig/swriter/ui/addressblockdialog.ui:275 @@ -10379,13 +10379,13 @@ #: sw/uiconfig/swriter/ui/annotation.ui:64 msgctxt "annotationmenu|delete" msgid "Delete _Comment" -msgstr "_Zmazať poznámku" +msgstr "_Odstrániť poznámku" #. 9ZUko #: sw/uiconfig/swriter/ui/annotation.ui:72 msgctxt "annotationmenu|deletethread" msgid "Delete _Comment Thread" -msgstr "Zmazať _vlákno poznámok" +msgstr "Odstrániť _vlákno poznámok" #. z2NAS #: sw/uiconfig/swriter/ui/annotation.ui:80 @@ -10445,7 +10445,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:171 msgctxt "asciifilterdialog|extended_tip|font" msgid "By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing." -msgstr "Nastavením predvoleného písma určíte, že text sa má zobrazovať v konkrétnom písme. Predvolené písma je možné zvoliť iba pri importovaní." +msgstr "Nastavením predvoleného písma určíte, že text sa má zobrazovať v konkrétnom písme. Predvolené písma je možné zvoliť len pri importovaní." #. Vd7Uv #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:188 @@ -10487,7 +10487,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:272 msgctxt "asciifilterdialog|extended_tip|language" msgid "Specifies the language of the text, if this has not already been defined. This setting is only available when importing." -msgstr "Určuje jazyk textu, ak ešte nebol definovaný. Toto nastavenie je k dispozícii iba pri importovaní." +msgstr "Určuje jazyk textu, ak ešte nebol definovaný. Toto nastavenie je k dispozícii len pri importovaní." #. BMvpA #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:283 @@ -10499,7 +10499,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:291 msgctxt "asciifilterdialog|extended_tip|includebom" msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file." -msgstr "Týka sa iba znakovej sady Unicode: značka poradia bajtov (BOM) je postupnosť bajtov používaná v textovom súbore na označenie kódovania Unicode." +msgstr "Týka sa len znakovej sady Unicode: značka poradia bajtov (BOM) je postupnosť bajtov používaná v textovom súbore na označenie kódovania Unicode." #. B2ofV #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309 @@ -10829,7 +10829,7 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:131 msgctxt "autoformattable|extended_tip|preview" msgid "Displays a preview of the current selection." -msgstr "Zobrazí ukážku aktuálneho výberu." +msgstr "Zobrazí náhľad aktuálneho výberu." #. q7HjF #: sw/uiconfig/swriter/ui/autoformattable.ui:173 @@ -10949,7 +10949,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:25 msgctxt "autotext|newtext" msgid "New (text only)" -msgstr "Nový (iba text)" +msgstr "Nový (len text)" #. s5n2E #: sw/uiconfig/swriter/ui/autotext.ui:29 @@ -11051,7 +11051,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:174 msgctxt "autotext|autotext" msgid "AutoTe_xt" -msgstr "Autom. te_xt" +msgstr "Automatický te_xt" #. kDwAj #: sw/uiconfig/swriter/ui/autotext.ui:186 @@ -11087,7 +11087,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:250 msgctxt "autotext|insert" msgid "_Insert" -msgstr "Vlož_iť" +msgstr "_Vložiť" #. VsqAk #: sw/uiconfig/swriter/ui/autotext.ui:312 @@ -11189,7 +11189,7 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:43 msgctxt "bibliographyentry|extended_tip|new" msgid "Opens the Define Bibliography Entry dialog, where you can create a new bibliography record. This record is only stored in the document. To add a record to the bibliography database, choose Tools - Bibliography Database." -msgstr "Otvorte dialóg Definovať položku použitej literatúry, kde môžete vytvoriť nový záznam použitej literatúry. Taký záznam je uložený iba v dokumente. ak ho chcete pridať do databázy použitej literatúry, zvoľte Nástroje - Databáza použitej literatúry." +msgstr "Otvorte dialóg Definovať položku použitej literatúry, kde môžete vytvoriť nový záznam použitej literatúry. Taký záznam je uložený len v dokumente. ak ho chcete pridať do databázy použitej literatúry, zvoľte Nástroje - Databáza použitej literatúry." #. xHxhn #: sw/uiconfig/swriter/ui/bibliographyentry.ui:62 @@ -12125,7 +12125,7 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:269 msgctxt "columnpage|distft" msgid "Spacing:" -msgstr "Riadkový Preklad:" +msgstr "Rozostupy:" #. rneea #: sw/uiconfig/swriter/ui/columnpage.ui:302 @@ -12179,7 +12179,7 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:481 msgctxt "columnpage|lineposft" msgid "_Position:" -msgstr "_Umiestnenie:" +msgstr "_Poloha:" #. yhqBe #: sw/uiconfig/swriter/ui/columnpage.ui:504 @@ -12443,7 +12443,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:231 msgctxt "conditionpage|filter" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. EbBvm #: sw/uiconfig/swriter/ui/conditionpage.ui:232 @@ -12647,7 +12647,7 @@ #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:323 msgctxt "contentcontordlg|modify" msgid "Modify" -msgstr "Upraviť" +msgstr "Zmeniť" #. rpNb6 #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:338 @@ -12659,13 +12659,13 @@ #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:353 msgctxt "contentcontordlg|moveup" msgid "Move Up" -msgstr "Presunúť vyššie" +msgstr "Presunúť nahor" #. 6BRRB #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:368 msgctxt "contentcontordlg|movedown" msgid "Move Down" -msgstr "Presunúť nižšie" +msgstr "Presunúť nadol" #. hCPKV #: sw/uiconfig/swriter/ui/contentcontroldlg.ui:453 @@ -12695,7 +12695,7 @@ #: sw/uiconfig/swriter/ui/converttexttable.ui:15 msgctxt "converttexttable|ConvertTextTableDialog" msgid "Convert Table to Text" -msgstr "Previesť tabuľku na text" +msgstr "Konvertovať tabuľku na text" #. iArsw #: sw/uiconfig/swriter/ui/converttexttable.ui:107 @@ -12791,13 +12791,13 @@ #: sw/uiconfig/swriter/ui/converttexttable.ui:278 msgctxt "converttexttable|extended_tip|headingcb" msgid "Formats the first row of the new table as a heading." -msgstr "Naformátuje prvý riadok novej tabuľky ako nadpis." +msgstr "Naformátuje prvý riadok novej tabuľky ako záhlavie." #. XqGoL #: sw/uiconfig/swriter/ui/converttexttable.ui:289 msgctxt "converttexttable|repeatheading" msgid "Repeat heading" -msgstr "Opakovať nadpis" +msgstr "Opakovať záhlavie" #. YhBhC #: sw/uiconfig/swriter/ui/converttexttable.ui:299 @@ -13115,7 +13115,7 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:66 msgctxt "dropcapspage|extended_tip|checkCB_SWITCH" msgid "Applies the drop cap settings to the selected paragraph." -msgstr "Pre označené odseky sa použije nastavenie iniciálok." +msgstr "Nastavenie iniciál sa použije pre označené odseky." #. CXZcp #: sw/uiconfig/swriter/ui/dropcapspage.ui:78 @@ -13217,7 +13217,7 @@ #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:40 msgctxt "dropdownfielddialog|prev" msgid "_Previous" -msgstr "_Nasledujúci" +msgstr "_Predchádzajúci" #. 2Wx2B #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:53 @@ -13265,13 +13265,13 @@ #: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:224 msgctxt "dropdownformfielddialog|up" msgid "Move Up" -msgstr "Presunúť vyššie" +msgstr "Presunúť nahor" #. HADbD #: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:238 msgctxt "dropdownformfielddialog|down" msgid "Move Down" -msgstr "Presunúť nižšie" +msgstr "Presunúť nadol" #. UD78C #: sw/uiconfig/swriter/ui/editcategories.ui:18 @@ -13451,7 +13451,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:289 msgctxt "editsectiondialog|extended_tip|dde" msgid "Creates a DDE link. Select this check box, and then enter the DDE command that you want to use. The DDE option is only available if the Link check box is selected." -msgstr "Vytvorí odkaz DDE. Zaškrtnite toto políčko a potom zadajte príkaz DDE, ktorý chcete použiť. Možnosť DDE je k dispozícii, iba ak je zaškrtnuté políčko Prepojiť." +msgstr "Vytvorí odkaz DDE. Zaškrtnite toto políčko a potom zadajte príkaz DDE, ktorý chcete použiť. Možnosť DDE je k dispozícii, len ak je zaškrtnuté políčko Prepojiť." #. kuxD5 #: sw/uiconfig/swriter/ui/editsectiondialog.ui:309 @@ -13487,7 +13487,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:391 msgctxt "editsectiondialog|filenameft" msgid "_File name" -msgstr "_Meno súboru" +msgstr "_Názov súboru" #. NTQ7u #: sw/uiconfig/swriter/ui/editsectiondialog.ui:406 @@ -13577,7 +13577,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:687 msgctxt "editsectiondialog|editinro" msgid "E_ditable in read-only document" -msgstr "Upraviteľné v _dokumente iba na čítanie" +msgstr "Upraviteľné v _dokumente len na čítanie" #. ndfNc #: sw/uiconfig/swriter/ui/editsectiondialog.ui:707 @@ -13661,7 +13661,7 @@ #: sw/uiconfig/swriter/ui/endnotepage.ui:212 msgctxt "endnotepage|extended_tip|parastylelb" msgid "Select the paragraph style for the endnote text. Only special styles can be selected." -msgstr "Vyberte štýl odseku pre text koncovej poznámky. Je možné zvoliť iba špeciálne štýly." +msgstr "Vyberte štýl odseku pre text koncovej poznámky. Je možné zvoliť len špeciálne štýly." #. 3CM3n #: sw/uiconfig/swriter/ui/endnotepage.ui:228 @@ -13805,13 +13805,13 @@ #: sw/uiconfig/swriter/ui/envdialog.ui:40 msgctxt "envdialog|user" msgid "_Insert" -msgstr "Vlož_iť" +msgstr "_Vložiť" #. Fe8UQ #: sw/uiconfig/swriter/ui/envdialog.ui:54 msgctxt "envdialog|modify" msgid "_Modify" -msgstr "_Upraviť" +msgstr "_Zmeniť" #. ixXKv #: sw/uiconfig/swriter/ui/envdialog.ui:163 @@ -14259,7 +14259,7 @@ #: sw/uiconfig/swriter/ui/fielddialog.ui:37 msgctxt "fielddialog|ok" msgid "_Insert" -msgstr "Vlož_iť" +msgstr "_Vložiť" #. AYDUA #: sw/uiconfig/swriter/ui/fielddialog.ui:46 @@ -14319,7 +14319,7 @@ #: sw/uiconfig/swriter/ui/findentrydialog.ui:24 msgctxt "findentrydialog|find" msgid "_Find" -msgstr "_Upraviť" +msgstr "_Nájsť" #. yfE3P #: sw/uiconfig/swriter/ui/findentrydialog.ui:33 @@ -14331,7 +14331,7 @@ #: sw/uiconfig/swriter/ui/findentrydialog.ui:97 msgctxt "findentrydialog|label1" msgid "F_ind" -msgstr "Hľa_dať" +msgstr "_Nájsť" #. svGxx #: sw/uiconfig/swriter/ui/findentrydialog.ui:116 @@ -14343,7 +14343,7 @@ #: sw/uiconfig/swriter/ui/findentrydialog.ui:139 msgctxt "findentrydialog|findin" msgid "Find _only in" -msgstr "Hľadať le_n v" +msgstr "Nájsť le_n v" #. vXdjr #: sw/uiconfig/swriter/ui/findentrydialog.ui:150 @@ -14493,7 +14493,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:155 msgctxt "flddocinfopage|label2" msgid "_Select" -msgstr "Vy_brať" +msgstr "_Vybrať" #. oGvBL #: sw/uiconfig/swriter/ui/flddocinfopage.ui:218 @@ -14535,13 +14535,13 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:165 msgctxt "flddocumentpage|extended_tip|select" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert." -msgstr "Zoznamy dostupných polí pre typ poľa vybraného zo zoznamu Typ . Pre vloženie poľa kliknite na pole a potom na Vložiť." +msgstr "Zoznamy dostupných polí pre typ poľa vybraného zo zoznamu Typ. Pre vloženie poľa kliknite na pole a potom na Vložiť." #. hnWF4 #: sw/uiconfig/swriter/ui/flddocumentpage.ui:176 msgctxt "flddocumentpage|label2" msgid "_Select" -msgstr "Vy_brať" +msgstr "_Vybrať" #. xtXnr #: sw/uiconfig/swriter/ui/flddocumentpage.ui:247 @@ -14625,7 +14625,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:161 msgctxt "fldfuncpage|label4" msgid "_Select" -msgstr "Vy_brať" +msgstr "_Vybrať" #. b3UqC #: sw/uiconfig/swriter/ui/fldfuncpage.ui:218 @@ -14733,7 +14733,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:608 msgctxt "fldfuncpage|up" msgid "Move _Up" -msgstr "Presunúť _vyššie" +msgstr "Presunúť _nahor" #. JwuHf #: sw/uiconfig/swriter/ui/fldfuncpage.ui:615 @@ -14745,7 +14745,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:627 msgctxt "fldfuncpage|down" msgid "Move Do_wn" -msgstr "Presunúť nižši_e" +msgstr "Presunúť _nadol" #. 8tg3f #: sw/uiconfig/swriter/ui/fldfuncpage.ui:634 @@ -14865,13 +14865,13 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:189 msgctxt "fldvarpage|extended_tip|select" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert." -msgstr "Zoznamy dostupných polí pre typ poľa vybraného zo zoznamu Typ . Pre vloženie poľa kliknite na pole a potom na Vložiť." +msgstr "Zoznamy dostupných polí pre typ poľa vybraného zo zoznamu Typ. Pre vloženie poľa kliknite na pole a potom na Vložiť." #. JFbpp #: sw/uiconfig/swriter/ui/fldvarpage.ui:200 msgctxt "fldvarpage|label2" msgid "_Select" -msgstr "Vy_brať" +msgstr "_Vybrať" #. ZuuQf #: sw/uiconfig/swriter/ui/fldvarpage.ui:286 @@ -14991,7 +14991,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:610 msgctxt "fldvarpage|extended_tip|delete" msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document." -msgstr "Odstráni pole definované používateľom zo zoznamu Vybrať. Odstrániť môžete iba polia, ktoré sa v aktuálnom dokumente nepoužívajú." +msgstr "Odstráni pole definované používateľom zo zoznamu Vybrať. Odstrániť môžete len polia, ktoré sa v aktuálnom dokumente nepoužívajú." #. b5iXT #: sw/uiconfig/swriter/ui/floatingsync.ui:7 @@ -15075,7 +15075,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:196 msgctxt "footnoteareapage|label4" msgid "_Position" -msgstr "_Umiestnenie" +msgstr "_Poloha" #. fzkPB #: sw/uiconfig/swriter/ui/footnoteareapage.ui:210 @@ -15237,7 +15237,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:167 msgctxt "footnotepage|extended_tip|offsetnf" msgid "Enter the number for the first footnote in the document. This option is only available if you selected \"Per Document\" in the Counting box." -msgstr "Zadajte číslo prvej poznámky pod čiarou v dokumente. Táto možnosť je k dispozícii, iba ak ste v poli Počítanie vybrali možnosť „V dokumente“." +msgstr "Zadajte číslo prvej poznámky pod čiarou v dokumente. Táto možnosť je k dispozícii, len ak ste v poli Počítanie vybrali možnosť „V dokumente“." #. RWgzD #: sw/uiconfig/swriter/ui/footnotepage.ui:181 @@ -15333,7 +15333,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:409 msgctxt "footnotepage|extended_tip|parastylelb" msgid "Select the paragraph style for the footnote text. Only special styles can be selected." -msgstr "Vyberte štýl odseku pre text poznámky pod čiarou. Je možné zvoliť iba špeciálne štýly." +msgstr "Vyberte štýl odseku pre text poznámky pod čiarou. Je možné zvoliť len špeciálne štýly." #. bhosj #: sw/uiconfig/swriter/ui/footnotepage.ui:425 @@ -15675,7 +15675,7 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:374 msgctxt "formattablepage|full" msgid "A_utomatic" -msgstr "A_utomatický" +msgstr "_Automatický" #. RhGRy #: sw/uiconfig/swriter/ui/formattablepage.ui:383 @@ -15969,13 +15969,13 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:348 msgctxt "frmaddpage|extended_tip|editinreadonly" msgid "Allows you to edit the contents of a frame in a document that is read-only (write-protected)." -msgstr "Umožňuje upravovať obsah rámca v dokumente, ktorý je iba na čítanie (ochrana proti zápisu)." +msgstr "Umožňuje upravovať obsah rámca v dokumente, ktorý je len na čítanie (ochrana proti zápisu)." #. vmiHE #: sw/uiconfig/swriter/ui/frmaddpage.ui:360 msgctxt "frmaddpage|printframe" msgid "Prin_t" -msgstr "_Tlač" +msgstr "_Tlačiť" #. URLpE #: sw/uiconfig/swriter/ui/frmaddpage.ui:368 @@ -16629,7 +16629,7 @@ #: sw/uiconfig/swriter/ui/indexentry.ui:502 msgctxt "indexentry|searchcasewordonlycb" msgid "Whole words only" -msgstr "Len celé slova" +msgstr "Len celé slová" #. 62yyk #: sw/uiconfig/swriter/ui/indexentry.ui:536 @@ -16725,7 +16725,7 @@ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:31 msgctxt "inputfielddialog|next" msgid "_Previous" -msgstr "_Nasledujúci" +msgstr "_Predchádzajúci" #. iwh9e #: sw/uiconfig/swriter/ui/inputfielddialog.ui:45 @@ -16743,7 +16743,7 @@ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:135 msgctxt "inputfielddialog|inputfieldname" msgid "Reference:" -msgstr "Odkaz:" +msgstr "Referencia:" #. c3zXj #: sw/uiconfig/swriter/ui/inputfielddialog.ui:176 @@ -17337,7 +17337,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:241 msgctxt "insertbreak|pagenumcb-atkobject" msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break." -msgstr "Priradí vami zadané číslo stránky stránke nasledujúcej po ručnom zalomení stránky. Táto voľba je dostupná iba vtedy, pokiaľ stránke nasledujúcej po ručnom zalomení stránky priradíte iný štýl stránky." +msgstr "Priradí vami zadané číslo stránky stránke nasledujúcej po ručnom zalomení stránky. Táto voľba je dostupná len vtedy, pokiaľ stránke nasledujúcej po ručnom zalomení stránky priradíte iný štýl stránky." #. iWGZG #: sw/uiconfig/swriter/ui/insertbreak.ui:264 @@ -17439,7 +17439,7 @@ #: sw/uiconfig/swriter/ui/insertcaption.ui:278 msgctxt "insertcaption|extended_tip|position" msgid "Adds the caption above or below the selected item. This option is only available for some objects." -msgstr "Pridá popis nad alebo pod vybraný objekt. Táto možnosť je k dispozícii iba pre niektoré objekty." +msgstr "Pridá popis nad alebo pod vybraný objekt. Táto možnosť je k dispozícii len pre niektoré objekty." #. QAJ9Q #: sw/uiconfig/swriter/ui/insertcaption.ui:292 @@ -17601,7 +17601,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:631 msgctxt "insertdbcolumnsdialog|extended_tip|tableheading" msgid "Specifies whether to insert a heading line for the columns in the text table." -msgstr "Určuje, či sa má vložiť nadpisový riadok stĺpcov v textovej tabuľke." +msgstr "Určuje, či sa má vložiť riadok záhlavia stĺpcov v textovej tabuľke." #. wEgCa #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:642 @@ -17613,7 +17613,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:652 msgctxt "insertdbcolumnsdialog|extended_tip|columnname" msgid "Uses the field names of the database table as headings for each of the text table columns." -msgstr "Používa názvy polí databázovej tabuľky ako nadpisy pre každý zo stĺpcov textovej tabuľky." +msgstr "Používa názvy polí databázovej tabuľky ako záhlavie pre každý zo stĺpcov textovej tabuľky." #. Aeipk #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:663 @@ -17625,7 +17625,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:673 msgctxt "insertdbcolumnsdialog|extended_tip|rowonly" msgid "Inserts an empty heading line into the text table." -msgstr "Vloží prázdny riadok nadpisu do textovej tabuľky." +msgstr "Vloží prázdny riadok záhlavia do textovej tabuľky." #. oJMmt #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:684 @@ -17679,7 +17679,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:788 msgctxt "insertdbcolumnsdialog|userdefined" msgid "_User-defined" -msgstr "_Používateľom definované" +msgstr "Definované _používateľom" #. KRqrf #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:800 @@ -17913,7 +17913,7 @@ #: sw/uiconfig/swriter/ui/insertsectiondialog.ui:37 msgctxt "insertsectiondialog|ok" msgid "_Insert" -msgstr "Vlož_iť" +msgstr "_Vložiť" #. V4AJG #: sw/uiconfig/swriter/ui/insertsectiondialog.ui:110 @@ -18021,7 +18021,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:287 msgctxt "inserttable|headercb" msgid "Hea_ding" -msgstr "Hlavička" +msgstr "_Nadpis" #. EZBnS #: sw/uiconfig/swriter/ui/inserttable.ui:295 @@ -18033,7 +18033,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:306 msgctxt "inserttable|repeatcb" msgid "Repeat heading rows on new _pages" -msgstr "Opakovať riadky hlavičky na nových stranách" +msgstr "Opakovať riadky nadpisu na nových stranách" #. LdEem #: sw/uiconfig/swriter/ui/inserttable.ui:317 @@ -18063,7 +18063,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:376 msgctxt "inserttable|repeatheaderafter" msgid "Heading ro_ws:" -msgstr "Riadky _hlavičky:" +msgstr "Riadky _záhlavia:" #. D26kf #: sw/uiconfig/swriter/ui/inserttable.ui:397 @@ -18075,7 +18075,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:437 msgctxt "inserttable|extended_tip|previewinstable" msgid "Displays a preview of the current selection." -msgstr "Zobrazí ukážku aktuálneho výberu." +msgstr "Zobrazí náhľad aktuálneho výberu." #. QDdwV #: sw/uiconfig/swriter/ui/inserttable.ui:479 @@ -18417,7 +18417,7 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:187 msgctxt "linenumbering|spacing" msgid "Spacing:" -msgstr "Riadkový preklad:" +msgstr "Rozostupy:" #. NZABV #: sw/uiconfig/swriter/ui/linenumbering.ui:201 @@ -18729,7 +18729,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:161 msgctxt "mailmerge|extended_tip|selected" msgid "Processes only the marked records from the database. This option is only available when you have previously marked the necessary records in the database." -msgstr "Spracuje iba označené záznamy v databáze. Voľba je dostupná iba v prípade, že ste predtým vybrali potrebné záznamy v databáze." +msgstr "Spracuje len označené záznamy v databáze. Voľba je dostupná len v prípade, že ste predtým vybrali potrebné záznamy v databáze." #. VCERP #: sw/uiconfig/swriter/ui/mailmerge.ui:178 @@ -19569,7 +19569,7 @@ #: sw/uiconfig/swriter/ui/mmmailbody.ui:311 msgctxt "mmmailbody|newmale" msgid "N_ew..." -msgstr "N_ové..." +msgstr "N_ový..." #. MPBju #: sw/uiconfig/swriter/ui/mmmailbody.ui:319 @@ -20175,7 +20175,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:380 msgctxt "mmsalutationpage|newmale" msgid "N_ew..." -msgstr "N_ové..." +msgstr "N_ový..." #. ACYDN #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:388 @@ -20433,7 +20433,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:43 msgctxt "navigatorcontextmenu|STR_SELECT" msgid "Select" -msgstr "Zvoliť" +msgstr "Vybrať" #. iH6Pr #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51 @@ -20739,7 +20739,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:442 msgctxt "navigatorpanel|header|tooltip_text" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. yZHED #: sw/uiconfig/swriter/ui/navigatorpanel.ui:446 @@ -20817,7 +20817,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:574 msgctxt "navigatorpanel|extended_tip|promote" msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon." -msgstr "Zvyšuje úroveň osnovy vybranej hlavičky a nadpisov, ktoré sa nachádzajú pod hlavičkou, o jednu. Ak chcete zvýšiť úroveň osnovy iba vybranej hlavičky, podržte stlačený kláves Ctrl a potom kliknite na túto ikonu." +msgstr "Zvyšuje úroveň osnovy vybraného nadpisu a nadpisov, ktoré sa nachádzajú pod ním, o jednu. Ak chcete zvýšiť úroveň osnovy len vybraného nadpisu, podržte stlačený kláves Ctrl a potom kliknite na túto ikonu." #. DoiCW #: sw/uiconfig/swriter/ui/navigatorpanel.ui:586 @@ -20829,7 +20829,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:590 msgctxt "navigatorpanel|extended_tip|demote" msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon." -msgstr "Zníži o jednu úroveň osnovy vybraného nadpisu a nadpisov, ktoré sa nachádzajú pod nadpisom. Ak chcete znížiť úroveň osnovy iba vybraného nadpisu, podržte stlačený kláves Ctrl a potom kliknite na túto ikonu." +msgstr "Zníži o jednu úroveň osnovy vybraného nadpisu a nadpisov, ktoré sa nachádzajú pod nadpisom. Ak chcete znížiť úroveň osnovy len vybraného nadpisu, podržte stlačený kláves Ctrl a potom kliknite na túto ikonu." #. Bbq3k #: sw/uiconfig/swriter/ui/navigatorpanel.ui:602 @@ -20841,7 +20841,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:606 msgctxt "navigatorpanel|extended_tip|chapterup" msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon." -msgstr "Posunie vybraný nadpis a text pod nadpisom nahor o jednu pozíciu nadpisu v Navigátore a v dokumente. Ak chcete presunúť iba vybraný nadpis a nie text priradený k nadpisu, podržte stlačený kláves Ctrl a potom kliknite na túto ikonu." +msgstr "Posunie vybraný nadpis a text pod nadpisom nahor o jednu pozíciu nadpisu v Navigátore a v dokumente. Ak chcete presunúť len vybraný nadpis a nie text priradený k nadpisu, podržte stlačený kláves Ctrl a potom kliknite na túto ikonu." #. fxY5W #: sw/uiconfig/swriter/ui/navigatorpanel.ui:618 @@ -20853,7 +20853,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:622 msgctxt "navigatorpanel|extended_tip|chapterdown" msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon." -msgstr "Posunie vybraný nadpis a text pod nadpisom o jednu pozíciu nadpisu v Navigátore a v dokumente. Ak chcete presunúť iba vybraný nadpis a nie text priradený k nadpisu, podržte stlačený kláves Ctrl a potom kliknite na túto ikonu." +msgstr "Posunie vybraný nadpis a text pod nadpisom o jednu pozíciu nadpisu v Navigátore a v dokumente. Ak chcete presunúť len vybraný nadpis a nie text priradený k nadpisu, podržte stlačený kláves Ctrl a potom kliknite na túto ikonu." #. mHVom #: sw/uiconfig/swriter/ui/navigatorpanel.ui:644 @@ -21045,13 +21045,13 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:5833 msgctxt "WriterNotebookbar|InsertLabel" msgid "~Insert" -msgstr "Vlož~iť" +msgstr "~Vložiť" #. 4t2ES #: sw/uiconfig/swriter/ui/notebookbar.ui:6899 msgctxt "WriterNotebookbar|LayoutMenuButton" msgid "_Layout" -msgstr "Roz_loženie" +msgstr "_Rozloženie" #. 4sDuv #: sw/uiconfig/swriter/ui/notebookbar.ui:6984 @@ -21105,19 +21105,19 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:10944 msgctxt "WriterNotebookbar|TableLabel" msgid "~Table" -msgstr "T~abuľka" +msgstr "~Tabuľka" #. ePiUn #: sw/uiconfig/swriter/ui/notebookbar.ui:12170 msgctxt "WriterNotebookbar|ImageMenuButton" msgid "Ima_ge" -msgstr "O_brázok" +msgstr "_Obrázok" #. tfZvk #: sw/uiconfig/swriter/ui/notebookbar.ui:12267 msgctxt "WriterNotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. CAFm3 #: sw/uiconfig/swriter/ui/notebookbar.ui:13586 @@ -21147,7 +21147,7 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:15424 msgctxt "WriterNotebookbar|MediaMenuButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. A9AmF #: sw/uiconfig/swriter/ui/notebookbar.ui:15528 @@ -21237,7 +21237,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5840 msgctxt "notebookbar_compact|InsertLabel" msgid "~Insert" -msgstr "Vlož~iť" +msgstr "~Vložiť" #. a5p4d #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6619 @@ -21309,7 +21309,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11807 msgctxt "notebookbar_compact|ImageLabel" msgid "Ima~ge" -msgstr "O~brázok" +msgstr "_Obrázok" #. 8eQN8 #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13189 @@ -21339,13 +21339,13 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15074 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. 7HDt3 #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15130 msgctxt "notebookbar_compact|MediaLabel" msgid "~Media" -msgstr "~Multimédiá" +msgstr "~Médiá" #. vSDok #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15789 @@ -21517,7 +21517,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7547 msgctxt "notebookbar_groupedbar_compact|viewDrawb" msgid "Grou_p" -msgstr "Zo_skupiť" +msgstr "_Zoskupiť" #. cbMTW #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7669 @@ -21567,13 +21567,13 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10356 msgctxt "notebookbar_groupedbar_compact|graphicB" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. bRfaC #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10986 msgctxt "notebookbar_groupedbar_compact|PrintMenuButton" msgid "_Layout" -msgstr "Roz_loženie" +msgstr "_Rozloženie" #. PhCFL #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11378 @@ -21597,7 +21597,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11777 msgctxt "notebookbar_groupedbar_compact|CommentsButton" msgid "_Comments" -msgstr "Poz_námky" +msgstr "_Poznámky" #. bCPNM #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11880 @@ -21730,7 +21730,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7711 msgctxt "notebookbar_groupedbar_full|SelectButton" msgid "Sele_ct" -msgstr "Vy_brať" +msgstr "_Vybrať" #. NZWw8 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7935 @@ -21748,7 +21748,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8726 msgctxt "notebookbar_groupedbar_full|CommentsButton" msgid "_Comments" -msgstr "Poz_námky" +msgstr "_Poznámky" #. mvE4u #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8925 @@ -21790,7 +21790,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11631 msgctxt "notebookbar_groupedbar_full|GroupButton" msgid "Grou_p" -msgstr "Zosku_piť" +msgstr "_Zoskupiť" #. rDBLq #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11803 @@ -21826,7 +21826,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14890 msgctxt "notebookbar_groupedbar_full|MediaButton" msgid "_Media" -msgstr "_Multimédiá" +msgstr "_Médiá" #. LRxDK #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:16704 @@ -22504,7 +22504,7 @@ #: sw/uiconfig/swriter/ui/objectdialog.ui:8 msgctxt "objectdialog|ObjectDialog" msgid "OLE Object" -msgstr "Objekt OLE" +msgstr "OLE objekt" #. eRTnb #: sw/uiconfig/swriter/ui/objectdialog.ui:110 @@ -23226,7 +23226,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:489 msgctxt "optformataidspage|anchor" msgid "_Anchor:" -msgstr "_Ukotvenie:" +msgstr "_Ukotviť:" #. 4ahDA #: sw/uiconfig/swriter/ui/optformataidspage.ui:506 @@ -23298,7 +23298,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:124 msgctxt "extended_tip|always" msgid "Always updates links while loading a document, and only if the document is in a trusted file location or the global security level is Low (Not recommended)." -msgstr "Pri načítavaní dokumentu sa odkazy vždy aktualizujú, ale iba vtedy, ak sa dokument nachádza v dôveryhodnom umiestnení alebo ak je úroveň zabezpečenia nastavená na Nízka (neodporúča sa)." +msgstr "Pri načítavaní dokumentu sa odkazy vždy aktualizujú, ale len vtedy, ak sa dokument nachádza v dôveryhodnom umiestnení alebo ak je úroveň zabezpečenia nastavená na Nízka (neodporúča sa)." #. UAGDA #: sw/uiconfig/swriter/ui/optgeneralpage.ui:135 @@ -23310,7 +23310,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:144 msgctxt "extended_tip|onrequest" msgid "Updates links only on request while loading a document." -msgstr "Pri načítavaní dokumentu sa odkazy aktualizujú iba na požiadanie." +msgstr "Pri načítavaní dokumentu sa odkazy aktualizujú len na požiadanie." #. sbk3q #: sw/uiconfig/swriter/ui/optgeneralpage.ui:155 @@ -23418,7 +23418,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:34 msgctxt "optredlinepage|insert_label" msgid "_Attributes:" -msgstr "Prízn_aky:" +msgstr "_Atribúty:" #. AdCLY #: sw/uiconfig/swriter/ui/optredlinepage.ui:48 @@ -23772,7 +23772,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:307 msgctxt "extended_tip|fix" msgid "Specifies that changes to a row or column only affect the corresponding adjacent area." -msgstr "Určuje, že zmeny riadku či stĺpca ovplyvnia iba zodpovedajúce susednú oblasť." +msgstr "Určuje, že zmeny riadku či stĺpca ovplyvnia len zodpovedajúce susednú oblasť." #. YH3A4 #: sw/uiconfig/swriter/ui/opttablepage.ui:318 @@ -24664,13 +24664,13 @@ #: sw/uiconfig/swriter/ui/pagestylespanel.ui:105 msgctxt "pagestylespanel|liststorePageLayout" msgid "Only right" -msgstr "Iba vpravo" +msgstr "Len vpravo" #. pJ6Zw #: sw/uiconfig/swriter/ui/pagestylespanel.ui:106 msgctxt "pagestylespanel|liststorePageLayout" msgid "Only left" -msgstr "Iba vľavo" +msgstr "Len vľavo" #. gfUBD #: sw/uiconfig/swriter/ui/pagestylespanel.ui:118 @@ -24808,7 +24808,7 @@ #: sw/uiconfig/swriter/ui/pbmenubutton.ui:25 msgctxt "pagebreakmenu|delete" msgid "Delete Page Break" -msgstr "Zmazať zalomenie strany" +msgstr "Odstrániť zalomenie strany" #. D9Fj4 #: sw/uiconfig/swriter/ui/picturedialog.ui:8 @@ -24898,7 +24898,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:72 msgctxt "picturepage|label1" msgid "_File name" -msgstr "_Meno súboru" +msgstr "_Názov súboru" #. UYzJC #: sw/uiconfig/swriter/ui/picturepage.ui:88 @@ -24982,7 +24982,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:339 msgctxt "picturepage|CTL_ANGLE|tooltip_text" msgid "Rotation Angle" -msgstr "Rotačný uhol" +msgstr "Uhol otočenia" #. Q6xq6 #: sw/uiconfig/swriter/ui/picturepage.ui:352 @@ -24994,7 +24994,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:375 msgctxt "picturepage|label2" msgid "Rotation Angle" -msgstr "Rotačný uhol" +msgstr "Uhol otočenia" #. swQe7 #: sw/uiconfig/swriter/ui/picturepage.ui:409 @@ -25342,7 +25342,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:318 msgctxt "printoptionspage|extended_tip|only" msgid "Only print the comments of your document." -msgstr "Tlačiť iba komentáre v dokumente." +msgstr "Tlačiť len komentáre v dokumente." #. n5M2U #: sw/uiconfig/swriter/ui/printoptionspage.ui:329 @@ -26192,13 +26192,13 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:168 msgctxt "sectionpage|extended_tip|dde" msgid "Creates a DDE link. Select this check box, and then enter the DDE command that you want to use. The DDE option is only available if the Link check box is selected." -msgstr "Vytvorí odkaz DDE. Zaškrtnite toto políčko a potom zadajte príkaz DDE, ktorý chcete použiť. Možnosť DDE je k dispozícii, iba ak je zaškrtnuté políčko Prepojiť." +msgstr "Vytvorí odkaz DDE. Zaškrtnite toto políčko a potom zadajte príkaz DDE, ktorý chcete použiť. Možnosť DDE je k dispozícii, len ak je zaškrtnuté políčko Prepojiť." #. KGrwG #: sw/uiconfig/swriter/ui/sectionpage.ui:195 msgctxt "sectionpage|filelabel" msgid "_File name" -msgstr "_Meno súboru" +msgstr "_Názov súboru" #. AYDG6 #: sw/uiconfig/swriter/ui/sectionpage.ui:210 @@ -26318,7 +26318,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:557 msgctxt "sectionpage|editable" msgid "E_ditable in read-only document" -msgstr "Upraviteľné v _dokumente iba na čítanie" +msgstr "Upraviteľné v _dokumente len na čítanie" #. hoFVv #: sw/uiconfig/swriter/ui/sectionpage.ui:572 @@ -26534,7 +26534,7 @@ #: sw/uiconfig/swriter/ui/selectblockdialog.ui:238 msgctxt "selectblockdialog|extended_tip|dependent" msgid "Only includes country or regional information in the address block if the value differs from the value that you enter in the text box." -msgstr "Informácie o krajine alebo regióne zahrnie do bloku adresy iba vtedy, ak sa ich hodnota líši od hodnoty, ktorú zadáte do textového poľa." +msgstr "Informácie o krajine alebo regióne zahrnie do bloku adresy len vtedy, ak sa ich hodnota líši od hodnoty, ktorú zadáte do textového poľa." #. FgnyP #: sw/uiconfig/swriter/ui/selectblockdialog.ui:260 @@ -27068,7 +27068,7 @@ #: sw/uiconfig/swriter/ui/spellmenu.ui:34 msgctxt "spellmenu|add" msgid "Add to _Dictionary" -msgstr "Pridať do slovníka" +msgstr "_Pridať do slovníka" #. i7HEY #: sw/uiconfig/swriter/ui/spellmenu.ui:55 @@ -27128,7 +27128,7 @@ #: sw/uiconfig/swriter/ui/splittable.ui:92 msgctxt "splittable|copyheading" msgid "Copy heading" -msgstr "Kopírovať nadpis" +msgstr "Kopírovať záhlavie" #. ajD2B #: sw/uiconfig/swriter/ui/splittable.ui:101 @@ -27140,7 +27140,7 @@ #: sw/uiconfig/swriter/ui/splittable.ui:112 msgctxt "splittable|customheadingapplystyle" msgid "Custom heading (apply Style)" -msgstr "Používateľský nadpis (použiť štýl)" +msgstr "Vlastné záhlavie (použiť štýl)" #. eq5fU #: sw/uiconfig/swriter/ui/splittable.ui:121 @@ -27152,7 +27152,7 @@ #: sw/uiconfig/swriter/ui/splittable.ui:132 msgctxt "splittable|customheading" msgid "Custom heading" -msgstr "Používateľský nadpis" +msgstr "Vlastné záhlavie" #. muzaG #: sw/uiconfig/swriter/ui/splittable.ui:141 @@ -27164,7 +27164,7 @@ #: sw/uiconfig/swriter/ui/splittable.ui:152 msgctxt "splittable|noheading" msgid "No heading" -msgstr "Bez nadpisu" +msgstr "Bez záhlavia" #. hhmK9 #: sw/uiconfig/swriter/ui/splittable.ui:161 @@ -27632,13 +27632,13 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:377 msgctxt "tabletextflowpage|headline" msgid "R_epeat heading" -msgstr "_Opakovať nadpis" +msgstr "_Opakovať záhlavie" #. EpMSY #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:385 msgctxt "tabletextflowpage|extended_tip|headline" msgid "Repeats the table heading on a new page when the table spans more than one page." -msgstr "Opakovanie záhlavia tabuľky na novej strane, keď tabuľka presiahne viac ako jednu stranu." +msgstr "Opakuje záhlavie tabuľky na novej strane, keď tabuľka presiahne viac ako jednu stranu." #. 7R7Gn #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:404 @@ -28064,7 +28064,7 @@ #: sw/uiconfig/swriter/ui/templatedialog8.ui:359 msgctxt "templatedialog8|header" msgid "Header" -msgstr "Záhlavie" +msgstr "Hlavička" #. oeXmC #: sw/uiconfig/swriter/ui/templatedialog8.ui:407 @@ -28328,7 +28328,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:580 msgctxt "textgridpage|extended_tip|TextGridPage" msgid "Adds a text grid to the current page style. This option is only available if Asian language support is enabled under Language Settings - Languages in the Options dialog box." -msgstr "Pridá k aktuálnemu štýlu stránky textovú mriežku. Táto voľba je k dispozícii iba ak je zapnutá podpora ázijských jazykov Nástroje - Voľby - Nastavenia jazyka - Jazyky)." +msgstr "Pridá k aktuálnemu štýlu stránky textovú mriežku. Táto voľba je k dispozícii len ak je zapnutá podpora ázijských jazykov Nástroje - Možnosti - Nastavenie jazyka - Jazyky)." #. aHkWU #: sw/uiconfig/swriter/ui/titlepage.ui:33 @@ -28586,7 +28586,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:413 msgctxt "tocentriespage|chapterentry" msgid "Number range only" -msgstr "Iba číselný interval" +msgstr "Len číselný interval" #. TyVE4 #: sw/uiconfig/swriter/ui/tocentriespage.ui:414 @@ -28652,7 +28652,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:546 msgctxt "tocentriespage|insert" msgid "_Insert" -msgstr "Vlož_iť" +msgstr "_Vložiť" #. sWDTV #: sw/uiconfig/swriter/ui/tocentriespage.ui:553 @@ -28784,7 +28784,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:794 msgctxt "tocentriespage|extended_tip|alphadelim" msgid "Uses the initial letters of the alphabetically arranged index entries as section headings." -msgstr "Používa úvodné písmená abecedne usporiadaného registra ako hlavičky sekcií." +msgstr "Používa úvodné písmená abecedne usporiadaného registra ako názvy sekcií." #. WqEHX #: sw/uiconfig/swriter/ui/tocentriespage.ui:808 @@ -28796,7 +28796,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:824 msgctxt "tocentriespage|extended_tip|mainstyle" msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry." -msgstr "Určite znakový štýl pre hlavné položky v abecednom registri. Položku registra prevediete na hlavnú položku kliknutím pred pole registra v dokumente a voľbou Upraviť - Položka registra." +msgstr "Určite znakový štýl pre hlavné položky v abecednom registri. Položku registra skonvertujete na hlavnú položku kliknutím pred pole registra v dokumente a voľbou Upraviť - Položka registra." #. r33aA #: sw/uiconfig/swriter/ui/tocentriespage.ui:839 @@ -28844,7 +28844,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:964 msgctxt "tocentriespage|extended_tip|key1lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Vyberte položku, podľa ktorej chcete zoradiť literatúru. Táto možnosť je aktívna iba ak je vybraná možnosť Obsah v oddiely zoraďovať podľa plochy." +msgstr "Vyberte položku, podľa ktorej chcete zoradiť literatúru. Táto možnosť je aktívna len ak je vybraná možnosť Obsah v oddiely zoraďovať podľa plochy." #. B7NqZ #: sw/uiconfig/swriter/ui/tocentriespage.ui:977 @@ -28862,13 +28862,13 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1005 msgctxt "tocentriespage|extended_tip|key2lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Vyberte položku, podľa ktorej chcete zoradiť literatúru. Táto možnosť je aktívna iba ak je vybraná možnosť Obsah v oddiely zoraďovať podľa plochy." +msgstr "Vyberte položku, podľa ktorej chcete zoradiť literatúru. Táto možnosť je aktívna len ak je vybraná možnosť Obsah v oddiely zoraďovať podľa plochy." #. tfvwe #: sw/uiconfig/swriter/ui/tocentriespage.ui:1022 msgctxt "tocentriespage|extended_tip|key3lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Vyberte položku, podľa ktorej chcete zoradiť literatúru. Táto možnosť je aktívna iba ak je vybraná možnosť Obsah v oddiely zoraďovať podľa plochy." +msgstr "Vyberte položku, podľa ktorej chcete zoradiť literatúru. Táto možnosť je aktívna len ak je vybraná možnosť Obsah v oddiely zoraďovať podľa plochy." #. 6GYwu #: sw/uiconfig/swriter/ui/tocentriespage.ui:1036 @@ -29150,7 +29150,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:427 msgctxt "tocindexpage|fromgraphics" msgid "Graphics" -msgstr "Obrázky" +msgstr "Grafika" #. nDFkz #: sw/uiconfig/swriter/ui/tocindexpage.ui:435 @@ -29414,7 +29414,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:1022 msgctxt "tocindexpage|extended_tip|initcaps" msgid "Automatically capitalizes the first letter of an index entry." -msgstr "Automatický prevedie prvé písmeno položky registra na veľké." +msgstr "Automaticky konvertuje prvé písmeno položky registra na veľké." #. iyXrS #: sw/uiconfig/swriter/ui/tocindexpage.ui:1033 @@ -30194,7 +30194,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:654 msgctxt "wrappage|extended_tip|transparent" msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type." -msgstr "Presunie vybraný objekt na pozadie. Táto možnosť je k dispozícii, iba ak ste vybrali typ obtekania Cez." +msgstr "Presunie vybraný objekt na pozadie. Táto možnosť je k dispozícii, len ak ste vybrali typ obtekania Cez." #. GYAAU #: sw/uiconfig/swriter/ui/wrappage.ui:665 @@ -30212,13 +30212,13 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:684 msgctxt "wrappage|outside" msgid "Outside only" -msgstr "Iba vonku" +msgstr "Len vonku" #. DNsU2 #: sw/uiconfig/swriter/ui/wrappage.ui:692 msgctxt "wrappage|extended_tip|outside" msgid "Wraps text only around the contour of the object, but not in open areas within the object shape." -msgstr "Text obteká iba okolo obrysu objektu, ale nie vo voľných oblastiach vo vnútri tvaru objektu." +msgstr "Text obteká len okolo obrysu objektu, ale nie vo voľných oblastiach vo vnútri tvaru objektu." #. Ts8tC #: sw/uiconfig/swriter/ui/wrappage.ui:703 diff -Nru libreoffice-7.4.6/translations/source/sk/swext/mediawiki/help.po libreoffice-7.4.7/translations/source/sk/swext/mediawiki/help.po --- libreoffice-7.4.6/translations/source/sk/swext/mediawiki/help.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/swext/mediawiki/help.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-09-15 16:35+0000\n" +"PO-Revision-Date: 2023-03-16 13:32+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1545057175.000000\n" #. 7EFBE @@ -257,7 +257,7 @@ "par_id944853\n" "help.text" msgid "Write the content of the wiki page. You can use formatting such as text formats, headings, footnotes, and more. See the list of supported formats." -msgstr "Napíšte obsah wiki stránky. Môžete použiť rôzne formáty textu, hlavičku, pätu a ďalšie. Pozrite si zoznam podporovaných formátov." +msgstr "Napíšte obsah wiki stránky. Môžete použiť rôzne formáty textu, názvy, poznámky pod čiarou a ďalšie. Pozrite si zoznam podporovaných formátov." #. sqvcC #: wiki.xhp @@ -455,7 +455,7 @@ "par_id5630664\n" "help.text" msgid "The OpenDocument format used by Writer and the MediaWiki format are quite different. Only a subset of all features can be transformed from one format to the other." -msgstr "Formát OpenDocument používaný Writer-om a WikiMedia formát sú dosť rozdielne. Iba určitá podmnožina všetkých vlastností môže transformovaná z jedného formátu do druhého formátu." +msgstr "Formát OpenDocument používaný Writer-om a WikiMedia formát sú dosť rozdielne. Len určitá podmnožina všetkých vlastností môže transformovaná z jedného formátu do druhého formátu." #. R74Ai #: wikiformats.xhp @@ -716,7 +716,7 @@ "par_id2794885\n" "help.text" msgid "Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry." -msgstr "Zadajte názov položky wiki. Toto je vrchný nadpis vašej wiki položky. Pre novú položku, názov musí byť jedinečný v rámci tohto Wiki. V prípade, že zadáte už existujúci názov, posielaná položka prepíše už existujúcu položku vo wiki." +msgstr "Zadajte názov položky wiki. Toto je vrchný nadpis wiki položky. Názov novej položky musí byť jedinečný v rámci tejto Wiki. V prípade, že zadáte už existujúci názov, položka pri odoslaní prepíše už existujúcu položku vo wiki." #. ACh6X #: wikisend.xhp diff -Nru libreoffice-7.4.6/translations/source/sk/uui/messages.po libreoffice-7.4.7/translations/source/sk/uui/messages.po --- libreoffice-7.4.6/translations/source/sk/uui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/uui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-04-26 13:59+0200\n" -"PO-Revision-Date: 2022-03-24 07:35+0000\n" +"PO-Revision-Date: 2023-03-26 10:32+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547564266.000000\n" #. DLY8p @@ -554,7 +554,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -594,7 +594,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -660,8 +660,8 @@ msgstr "" "Súbor dokumentu „$(ARG1)“ je od $(ARG2) vami uzamknutý na úpravu v inom systéme.\n" "\n" -"Otvorte dokument iba na čítanie alebo vlastné uzamknutie ignorujte a dokument otvorte na úpravu.\n" -"Výberom možnosti Upozorniť dokument otvoríte iba na čítanie a dostanete upozornenie, keď bude dokument možné upraviť." +"Otvorte dokument len na čítanie alebo vlastné uzamknutie ignorujte a dokument otvorte na úpravu.\n" +"Výberom možnosti Upozorniť dokument otvoríte len na čítanie a dostanete upozornenie, keď bude dokument možné upraviť." #. 8mKMg #: uui/inc/strings.hrc:34 @@ -739,7 +739,7 @@ msgstr "" "Nebolo možné vytvoriť súbor zámku pre exkluzívny prístup %PRODUCTNAME z dôvodu nedostatočných práv na vytvorenie súboru zámku v danom umiestnení alebo nedostatku voľného miesta na disku.\n" "\n" -"Výberom možnosti Upozorniť otvoríte iba na čítanie a dostanete upozornenie, keď bude dokument možné upraviť." +"Výberom možnosti Upozorniť otvoríte len na čítanie a dostanete upozornenie, keď bude dokument možné upraviť." #. CaBXF #: uui/inc/strings.hrc:47 @@ -839,7 +839,7 @@ #: uui/inc/strings.hrc:62 msgctxt "STR_TRYLATER_TITLE" msgid "Document in Use" -msgstr "Používaný dokument" +msgstr "Dokument sa už používa" #. 4Fimj #: uui/inc/strings.hrc:63 @@ -955,9 +955,9 @@ "\n" "Select Notify to open read-only and get notified when the document becomes editable." msgstr "" -"Súbor zámku je poškodený a pravdepodobne prázdny. Otvorením dokumentu iba na čítanie a jeho opätovným zatvorením sa odstráni poškodený súbor zámku.\n" +"Súbor zámku je poškodený a pravdepodobne prázdny. Otvorením dokumentu len na čítanie a jeho opätovným zatvorením sa odstráni poškodený súbor zámku.\n" "\n" -"Výberom možnosti Upozorniť dokument otvoríte iba na čítanie a dostanete upozornenie, keď bude dokument možné upraviť." +"Výberom možnosti Upozorniť dokument otvoríte len na čítanie a dostanete upozornenie, keď bude dokument možné upraviť." #. fKEYB #: uui/inc/strings.hrc:80 @@ -993,7 +993,7 @@ #: uui/inc/strings.hrc:85 msgctxt "STR_RELOADEDITABLE_BTN" msgid "~Reload" -msgstr "~Znovu načítať?" +msgstr "~Znovu načítať" #. 45x3T #: uui/uiconfig/ui/authfallback.ui:8 @@ -1165,7 +1165,7 @@ #: uui/uiconfig/ui/masterpassworddlg.ui:110 msgctxt "masterpassworddlg|extended_tip|password" msgid "Type a password. A password is case sensitive." -msgstr "Zadajte heslo. Pri hesle záleží na veľkosti písmen." +msgstr "Zadajte heslo. V hesle sa rozlišujú malé a veľké písmená." #. Twvfe #: uui/uiconfig/ui/masterpassworddlg.ui:139 @@ -1183,7 +1183,7 @@ #: uui/uiconfig/ui/password.ui:120 msgctxt "password|extended_tip|newpassEntry" msgid "Type a password. A password is case sensitive." -msgstr "Zadajte heslo. Pri hesle záleží na veľkosti písmen." +msgstr "Zadajte heslo. V hesle sa rozlišujú malé a veľké písmená." #. QbKd2 #: uui/uiconfig/ui/password.ui:139 diff -Nru libreoffice-7.4.6/translations/source/sk/vcl/messages.po libreoffice-7.4.7/translations/source/sk/vcl/messages.po --- libreoffice-7.4.6/translations/source/sk/vcl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/vcl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-08-24 12:29+0200\n" -"PO-Revision-Date: 2022-02-15 07:38+0000\n" +"PO-Revision-Date: 2023-03-26 10:32+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562264667.000000\n" #. k5jTM @@ -553,7 +553,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -593,7 +593,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -706,7 +706,7 @@ #: vcl/inc/strings.hrc:39 msgctxt "SV_HELPTEXT_FADEIN" msgid "Show" -msgstr "Ukázať" +msgstr "Zobraziť" #. FGDmB #: vcl/inc/strings.hrc:40 @@ -1348,7 +1348,7 @@ #: vcl/inc/font/OpenTypeFeatureStrings.hrc:37 msgctxt "STR_FONT_FEATURE_ID_DCAP" msgid "Drop Caps" -msgstr "Iniciálky" +msgstr "Iniciály" #. jaUfX #: vcl/inc/font/OpenTypeFeatureStrings.hrc:38 @@ -1762,7 +1762,7 @@ #: vcl/uiconfig/ui/editmenu.ui:12 msgctxt "editmenu|undo" msgid "_Undo" -msgstr "_Späť" +msgstr "_Vrátiť" #. wVVXn #: vcl/uiconfig/ui/editmenu.ui:26 @@ -1780,7 +1780,7 @@ #: vcl/uiconfig/ui/editmenu.ui:42 msgctxt "editmenu|paste" msgid "_Paste" -msgstr "Vlož_iť" +msgstr "_Vložiť" #. 36WAk #: vcl/uiconfig/ui/editmenu.ui:50 @@ -2020,7 +2020,7 @@ #: vcl/uiconfig/ui/printdialog.ui:602 msgctxt "printdialog|extended_tip|rbRangeSelection" msgid "Prints only the selected area(s) or object(s) in the current document." -msgstr "Vytlačí iba oblasti alebo objekty, ktoré sú v aktuálnom dokumente vybrané." +msgstr "Vytlačí len oblasti alebo objekty, ktoré sú v aktuálnom dokumente vybrané." #. UKYwM #: vcl/uiconfig/ui/printdialog.ui:616 @@ -2086,7 +2086,7 @@ #: vcl/uiconfig/ui/printdialog.ui:717 msgctxt "printdialog|extended_tip|sidesbox" msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both." -msgstr "Ak tlačiareň umožňuje obojstrannú tlač, je možné zvoliť medzi použitím iba jednej a oboch strán papiera." +msgstr "Ak tlačiareň umožňuje obojstrannú tlač, je možné zvoliť medzi použitím len jednej a oboch strán papiera." #. AVv6D #: vcl/uiconfig/ui/printdialog.ui:731 diff -Nru libreoffice-7.4.6/translations/source/sk/wizards/messages.po libreoffice-7.4.7/translations/source/sk/wizards/messages.po --- libreoffice-7.4.6/translations/source/sk/wizards/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/wizards/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-19 13:14+0100\n" -"PO-Revision-Date: 2023-03-02 02:46+0000\n" +"PO-Revision-Date: 2023-04-12 10:32+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: Slovak \n" "Language: sk\n" @@ -290,7 +290,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:78 msgctxt "RID_LETTERWIZARDDIALOG_START_23" msgid "Include ~only on second and following pages" -msgstr "Zahrnúť iba dr~uhú a ďalšie strany" +msgstr "Zahrnúť len dr~uhú a ďalšie strany" #. uwLyZ #: wizards/com/sun/star/wizards/common/strings.hrc:79 @@ -812,7 +812,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:173 msgctxt "RID_FAXWIZARDDIALOG_START_33" msgid "Include ~only on second and following pages" -msgstr "Zahrnúť iba dr~uhú a ďalšie strany" +msgstr "Zahrnúť len dr~uhú a ďalšie strany" #. p4XqG #: wizards/com/sun/star/wizards/common/strings.hrc:174 @@ -1052,13 +1052,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:223 msgctxt "RID_AGENDAWIZARDDIALOG_START_1" msgid "Agenda Wizard" -msgstr "Sprievodca poradou" +msgstr "Sprievodca agendou stretnutia" #. AV2GE #: wizards/com/sun/star/wizards/common/strings.hrc:224 msgctxt "RID_AGENDAWIZARDDIALOG_START_2" msgid "Make ~manual changes to this agenda template" -msgstr "Dorobiť ručné z~meny tejto šablóny porady" +msgstr "Dorobiť ručné z~meny tejto šablóny" #. LoA9c #: wizards/com/sun/star/wizards/common/strings.hrc:225 @@ -1082,7 +1082,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:228 msgctxt "RID_AGENDAWIZARDDIALOG_START_6" msgid "Please choose the page design for the agenda" -msgstr "Prosím vyberte vzhľad strany pre poradu" +msgstr "Prosím vyberte vzhľad strany pre agendu" #. GrttH #: wizards/com/sun/star/wizards/common/strings.hrc:229 @@ -1100,7 +1100,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:231 msgctxt "RID_AGENDAWIZARDDIALOG_START_9" msgid "Please specify items for the agenda" -msgstr "Prosím upresnite body porady" +msgstr "Upresnite body agendy" #. tRVBT #: wizards/com/sun/star/wizards/common/strings.hrc:232 @@ -1142,13 +1142,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:238 msgctxt "RID_AGENDAWIZARDDIALOG_START_16" msgid "Location:" -msgstr "Umiestnenie:" +msgstr "Miesto:" #. WdYDt #: wizards/com/sun/star/wizards/common/strings.hrc:239 msgctxt "RID_AGENDAWIZARDDIALOG_START_17" msgid "Placeholders will be used in empty fields. You can replace placeholders with text later." -msgstr "Namiesto prázdnych polí budú použité zástupné znaky. Môžete ich neskôr nahradiť ľubovoľným textom." +msgstr "Namiesto prázdnych polí budú použitý zástupný text. Môžete ho neskôr nahradiť ľubovoľným textom." #. raUGn #: wizards/com/sun/star/wizards/common/strings.hrc:240 @@ -1166,13 +1166,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:242 msgctxt "RID_AGENDAWIZARDDIALOG_START_20" msgid "To create a new agenda out of the template, go to the location where you saved the template and double-click the file." -msgstr "Nový program porady vytvoríte zo šablóny tak, že nájdete v súboroch miesto uloženia šablón a dvojkliknete na príslušnú šablónu." +msgstr "Nový program porady vytvoríte zo šablóny tak, že nájdete miesto uloženia šablón a dvojkliknete na príslušnú šablónu." #. GbdcR #: wizards/com/sun/star/wizards/common/strings.hrc:243 msgctxt "RID_AGENDAWIZARDDIALOG_START_21" msgid "Agenda item" -msgstr "Bod porady" +msgstr "Bod agendy" #. SDSFD #: wizards/com/sun/star/wizards/common/strings.hrc:244 @@ -1214,7 +1214,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:250 msgctxt "RID_AGENDAWIZARDDIALOG_START_28" msgid "Attendees" -msgstr "Pracovníci" +msgstr "Účastníci" #. qCFqz #: wizards/com/sun/star/wizards/common/strings.hrc:251 @@ -1226,7 +1226,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:252 msgctxt "RID_AGENDAWIZARDDIALOG_START_30" msgid "Facility personnel" -msgstr "Účastníci" +msgstr "Personál" #. jrfhT #: wizards/com/sun/star/wizards/common/strings.hrc:253 @@ -1238,7 +1238,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:254 msgctxt "RID_AGENDAWIZARDDIALOG_START_32" msgid "Type of meeting" -msgstr "Druh schôdzky" +msgstr "Druh stretnutia" #. ESsKC #: wizards/com/sun/star/wizards/common/strings.hrc:255 @@ -1262,7 +1262,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:258 msgctxt "RID_AGENDAWIZARDDIALOG_START_36" msgid "The agenda template will include placeholders for the selected items." -msgstr "Šablóna bude obsahovať zástupné znaky pre vybrané položky." +msgstr "Šablóna bude obsahovať zástupný text pre vybrané položky." #. bCFEm #: wizards/com/sun/star/wizards/common/strings.hrc:259 @@ -1274,7 +1274,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:260 msgctxt "RID_AGENDAWIZARDDIALOG_START_39" msgid "This wizard creates an agenda template which enables you to create multiple agendas with the same layout and settings." -msgstr "Tento sprievodca vytvorí šablónu pre porady, ktorá umožní zachovať rovnaké rozloženia a nastavenia pre všetky záznamy." +msgstr "Tento sprievodca vytvorí šablónu pre agendu porady, ktorá umožní zachovať rovnaké rozloženia a nastavenia pre všetky záznamy." #. CS6WP #: wizards/com/sun/star/wizards/common/strings.hrc:261 @@ -1286,19 +1286,19 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:262 msgctxt "RID_AGENDAWIZARDDIALOG_START_41" msgid "myAgendaTemplate.stw" -msgstr "MojaSablonaPorady.stw" +msgstr "MojaSablonaAgendy.stw" #. YpeTB #: wizards/com/sun/star/wizards/common/strings.hrc:263 msgctxt "RID_AGENDAWIZARDDIALOG_START_42" msgid "My Agenda Template" -msgstr "Moja šablóna porady" +msgstr "Moja šablóna agendy" #. ZK3nA #: wizards/com/sun/star/wizards/common/strings.hrc:264 msgctxt "RID_AGENDAWIZARDDIALOG_START_43" msgid "An error occurred while saving the agenda template." -msgstr "Pri ukladaní šablóny porady sa vyskytla chyba." +msgstr "Pri ukladaní šablóny sa vyskytla chyba." #. kFgjn #: wizards/com/sun/star/wizards/common/strings.hrc:265 @@ -1346,7 +1346,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:272 msgctxt "RID_AGENDAWIZARDDIALOG_START_52" msgid "Headings to Include" -msgstr "Hlavičky na zaradenie" +msgstr "Nadpisy na zaradenie" #. QU872 #: wizards/com/sun/star/wizards/common/strings.hrc:273 @@ -1370,13 +1370,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:276 msgctxt "RID_AGENDAWIZARDDIALOG_START_56" msgid "An error occurred while opening the agenda template." -msgstr "Pri otváraní šablóny porady sa vyskytla chyba." +msgstr "Pri otváraní šablóny sa vyskytla chyba." #. N49Hk #: wizards/com/sun/star/wizards/common/strings.hrc:277 msgctxt "RID_AGENDAWIZARDDIALOG_START_57" msgid "Type of meeting" -msgstr "Druh schôdzky" +msgstr "Druh stretnutia" #. 3f6B3 #: wizards/com/sun/star/wizards/common/strings.hrc:278 @@ -1454,13 +1454,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:290 msgctxt "RID_AGENDAWIZARDDIALOG_START_70" msgid "Move up" -msgstr "Presunúť vyššie" +msgstr "Presunúť nahor" #. 8uZEg #: wizards/com/sun/star/wizards/common/strings.hrc:291 msgctxt "RID_AGENDAWIZARDDIALOG_START_71" msgid "Move down" -msgstr "Presunúť nižšie" +msgstr "Presunúť nadol" #. wEi4D #: wizards/com/sun/star/wizards/common/strings.hrc:292 @@ -1630,7 +1630,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -1670,7 +1670,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sk/wizards/source/resources.po libreoffice-7.4.7/translations/source/sk/wizards/source/resources.po --- libreoffice-7.4.6/translations/source/sk/wizards/source/resources.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/wizards/source/resources.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-10-27 12:31+0100\n" -"PO-Revision-Date: 2020-10-17 12:29+0000\n" +"PO-Revision-Date: 2023-03-30 13:33+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1557772943.000000\n" #. 8UKfi @@ -1535,7 +1535,7 @@ "RID_QUERY_12\n" "property.text" msgid "~Summary query (Shows only results of aggregate functions.)" -msgstr "~Súhrnný dotaz (zobrazí iba výsledok agregačných funkcií)" +msgstr "~Súhrnný dotaz (zobrazí len výsledok agregačných funkcií)" #. SdQBk #: resources_en_US.properties @@ -2237,7 +2237,7 @@ "RID_FORM_19\n" "property.text" msgid "The join '' and '' has been selected twice.\\nBut joins may only be used once." -msgstr "Prepojenie '' a '' bolo vybrané dvakrát.\\nPrepojenia (joins) môžu byť použité iba raz." +msgstr "Prepojenie '' a '' bolo vybrané dvakrát.\\nPrepojenia (joins) môžu byť použité len raz." #. 9uFd2 #: resources_en_US.properties @@ -3173,7 +3173,7 @@ "STEP_ZERO_3\n" "property.text" msgid "~Convert" -msgstr "~Previesť" +msgstr "~Konvertovať" #. tGJBz #: resources_en_US.properties @@ -4559,7 +4559,7 @@ "BeginButton\n" "property.text" msgid "~Convert" -msgstr "~Previesť" +msgstr "~Konvertovať" #. CL4tm #: resources_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/sk/writerperfect/messages.po libreoffice-7.4.7/translations/source/sk/writerperfect/messages.po --- libreoffice-7.4.6/translations/source/sk/writerperfect/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/writerperfect/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-23 11:46+0100\n" -"PO-Revision-Date: 2022-09-09 11:26+0000\n" -"Last-Translator: Deleted User \n" -"Language-Team: Slovak \n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" +"Last-Translator: Miloš Šrámek \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1526189269.000000\n" #. DXXuk @@ -82,7 +82,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -122,7 +122,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sk/xmlsecurity/messages.po libreoffice-7.4.7/translations/source/sk/xmlsecurity/messages.po --- libreoffice-7.4.6/translations/source/sk/xmlsecurity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sk/xmlsecurity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:21+0100\n" -"PO-Revision-Date: 2022-09-09 11:26+0000\n" -"Last-Translator: Deleted User \n" -"Language-Team: Slovak \n" +"PO-Revision-Date: 2023-03-26 10:32+0000\n" +"Last-Translator: Miloš Šrámek \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1555447187.000000\n" #. EyJrF @@ -196,7 +196,7 @@ #: xmlsecurity/inc/strings.hrc:60 msgctxt "selectcertificatedialog|STR_ENCIPHER_ONLY" msgid "Only for encipherment" -msgstr "Iba pre šifrovanie" +msgstr "Len pre šifrovanie" #. 4oZqX #: xmlsecurity/inc/strings.hrc:61 @@ -208,7 +208,7 @@ #: xmlsecurity/inc/strings.hrc:62 msgctxt "selectcertificatedialog|str_selectsign" msgid "Select" -msgstr "Zvoliť" +msgstr "Vybrať" #. Gr5gE #: xmlsecurity/inc/strings.hrc:63 @@ -246,7 +246,7 @@ #. MRCkv msgctxt "stock" msgid "_Close" -msgstr "_Zavrieť" +msgstr "_Zatvoriť" #. nvx5t msgctxt "stock" @@ -286,7 +286,7 @@ #. C69Fy msgctxt "stock" msgid "_Reset" -msgstr "_Resetovať" +msgstr "_Obnoviť" #. mgpxh msgctxt "stock" @@ -537,7 +537,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:426 msgctxt "digitalsignaturesdialog|oldsignatureft" msgid "At least one signature has problems: the document is only partially signed." -msgstr "Minimálne jeden podpis má problémy: dokument je podpísaný iba čiastočne." +msgstr "Minimálne jeden podpis má problémy: dokument je podpísaný len čiastočne." #. wn85z #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:439 @@ -624,7 +624,7 @@ "Unsigned macros are disabled." msgstr "" "V_ysoká.\n" -"Spúšťať sa môžu iba podpísané makrá z dôveryhodných zdrojov.\n" +"Spúšťať sa môžu len podpísané makrá z dôveryhodných zdrojov.\n" "Spúšťanie nepodpísaných makier je zablokované." #. pbFLt diff -Nru libreoffice-7.4.6/translations/source/sq/accessibility/messages.po libreoffice-7.4.7/translations/source/sq/accessibility/messages.po --- libreoffice-7.4.6/translations/source/sq/accessibility/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/accessibility/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-19 13:12+0100\n" -"PO-Revision-Date: 2017-11-21 15:24+0000\n" -"Last-Translator: Anxhelo Lushka \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1511277862.000000\n" #. be4e7 @@ -79,7 +79,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/avmedia/messages.po libreoffice-7.4.7/translations/source/sq/avmedia/messages.po --- libreoffice-7.4.6/translations/source/sq/avmedia/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/avmedia/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-02-18 12:16+0100\n" -"PO-Revision-Date: 2017-12-06 17:50+0000\n" -"Last-Translator: Anxhelo Lushka \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1512582656.000000\n" #. m6G23 @@ -109,7 +109,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/basctl/messages.po libreoffice-7.4.7/translations/source/sq/basctl/messages.po --- libreoffice-7.4.6/translations/source/sq/basctl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/basctl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2017-12-15 09:50+0000\n" -"Last-Translator: Anxhelo Lushka \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1513331432.000000\n" #. fniWp @@ -566,7 +566,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/basic/messages.po libreoffice-7.4.7/translations/source/sq/basic/messages.po --- libreoffice-7.4.6/translations/source/sq/basic/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/basic/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2017-12-18 15:43+0000\n" -"Last-Translator: Anxhelo Lushka \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1513611839.000000\n" #. CacXi @@ -782,7 +782,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/chart2/messages.po libreoffice-7.4.7/translations/source/sq/chart2/messages.po --- libreoffice-7.4.6/translations/source/sq/chart2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/chart2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:18+0100\n" -"PO-Revision-Date: 2019-12-22 17:46+0000\n" -"Last-Translator: Gjergji Kokushta \n" -"Language-Team: Albanian \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1540151452.000000\n" #. NCRDD @@ -43,7 +43,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/connectivity/messages.po libreoffice-7.4.7/translations/source/sq/connectivity/messages.po --- libreoffice-7.4.6/translations/source/sq/connectivity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/connectivity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-06 20:18+0200\n" -"PO-Revision-Date: 2018-10-27 13:22+0000\n" -"Last-Translator: Anxhelo Lushka \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1540646528.000000\n" #. 9KHB8 @@ -606,7 +606,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/cui/messages.po libreoffice-7.4.7/translations/source/sq/cui/messages.po --- libreoffice-7.4.6/translations/source/sq/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2019-01-12 22:12+0000\n" -"Last-Translator: Nafie Shehu \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1547331174.000000\n" #. GyY9M @@ -85,7 +85,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/dbaccess/messages.po libreoffice-7.4.7/translations/source/sq/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/sq/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/dbaccess/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2020-01-07 12:21+0000\n" -"Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Albanian \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1524567995.000000\n" #. BiN6g @@ -39,7 +39,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/desktop/messages.po libreoffice-7.4.7/translations/source/sq/desktop/messages.po --- libreoffice-7.4.6/translations/source/sq/desktop/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/desktop/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2018-10-27 13:23+0000\n" -"Last-Translator: Anxhelo Lushka \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1540646596.000000\n" #. v2iwK @@ -797,7 +797,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/editeng/messages.po libreoffice-7.4.7/translations/source/sq/editeng/messages.po --- libreoffice-7.4.6/translations/source/sq/editeng/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/editeng/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:49+0200\n" -"PO-Revision-Date: 2018-01-15 20:37+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:33+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1516048639.000000\n" #. BHYB4 @@ -100,7 +100,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/extensions/messages.po libreoffice-7.4.7/translations/source/sq/extensions/messages.po --- libreoffice-7.4.6/translations/source/sq/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2018-11-12 12:15+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1542024928.000000\n" #. cBx8W @@ -37,7 +37,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/filter/messages.po libreoffice-7.4.7/translations/source/sq/filter/messages.po --- libreoffice-7.4.6/translations/source/sq/filter/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/filter/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-15 22:28+0200\n" -"PO-Revision-Date: 2018-01-15 19:59+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1516046370.000000\n" #. 5AQgJ @@ -292,7 +292,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/forms/messages.po libreoffice-7.4.7/translations/source/sq/forms/messages.po --- libreoffice-7.4.6/translations/source/sq/forms/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/forms/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: 2017-12-18 15:36+0000\n" -"Last-Translator: Anxhelo Lushka \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1513611387.000000\n" #. naBgZ @@ -371,7 +371,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/formula/messages.po libreoffice-7.4.7/translations/source/sq/formula/messages.po --- libreoffice-7.4.6/translations/source/sq/formula/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/formula/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2018-11-12 12:15+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:33+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1542024928.000000\n" #. YfKFn @@ -2571,7 +2571,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/fpicker/messages.po libreoffice-7.4.7/translations/source/sq/fpicker/messages.po --- libreoffice-7.4.6/translations/source/sq/fpicker/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/fpicker/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2018-10-02 16:42+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1538498545.000000\n" #. SJGCw @@ -93,7 +93,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/framework/messages.po libreoffice-7.4.7/translations/source/sq/framework/messages.po --- libreoffice-7.4.6/translations/source/sq/framework/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/framework/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-06-11 17:08+0200\n" -"PO-Revision-Date: 2017-12-15 09:51+0000\n" -"Last-Translator: Anxhelo Lushka \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1513331483.000000\n" #. 5dTDC @@ -352,7 +352,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/oox/messages.po libreoffice-7.4.7/translations/source/sq/oox/messages.po --- libreoffice-7.4.6/translations/source/sq/oox/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/oox/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,14 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-04 18:05+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" +"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" #. C5e9E #: oox/inc/strings.hrc:15 @@ -34,7 +36,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/reportdesign/messages.po libreoffice-7.4.7/translations/source/sq/reportdesign/messages.po --- libreoffice-7.4.6/translations/source/sq/reportdesign/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/reportdesign/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:20+0100\n" -"PO-Revision-Date: 2018-10-27 13:41+0000\n" -"Last-Translator: Anxhelo Lushka \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1540647665.000000\n" #. FBVr9 @@ -178,7 +178,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/sc/messages.po libreoffice-7.4.7/translations/source/sq/sc/messages.po --- libreoffice-7.4.6/translations/source/sq/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2018-11-12 12:15+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1542024934.000000\n" #. kBovX @@ -92,7 +92,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/scaddins/messages.po libreoffice-7.4.7/translations/source/sq/scaddins/messages.po --- libreoffice-7.4.6/translations/source/sq/scaddins/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/scaddins/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: 2018-01-15 20:37+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:33+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1516048644.000000\n" #. i8Y7Z @@ -4069,7 +4069,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/sccomp/messages.po libreoffice-7.4.7/translations/source/sq/sccomp/messages.po --- libreoffice-7.4.6/translations/source/sq/sccomp/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/sccomp/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-29 16:03+0200\n" -"PO-Revision-Date: 2017-12-15 09:55+0000\n" -"Last-Translator: Anxhelo Lushka \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1513331725.000000\n" #. whDxm @@ -103,7 +103,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/sd/messages.po libreoffice-7.4.7/translations/source/sq/sd/messages.po --- libreoffice-7.4.6/translations/source/sq/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2018-11-12 12:15+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1542024934.000000\n" #. WDjkB @@ -221,7 +221,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/sfx2/messages.po libreoffice-7.4.7/translations/source/sq/sfx2/messages.po --- libreoffice-7.4.6/translations/source/sq/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2018-10-21 19:51+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:33+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1540151460.000000\n" #. bHbFE @@ -1965,7 +1965,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/shell/messages.po libreoffice-7.4.7/translations/source/sq/shell/messages.po --- libreoffice-7.4.6/translations/source/sq/shell/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/shell/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,14 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-19 13:14+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" +"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" #. 9taro #: shell/inc/spsupp/spsuppStrings.hrc:15 @@ -51,7 +53,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/starmath/messages.po libreoffice-7.4.7/translations/source/sq/starmath/messages.po --- libreoffice-7.4.6/translations/source/sq/starmath/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/starmath/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:51+0200\n" -"PO-Revision-Date: 2018-05-08 13:52+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1525787545.000000\n" #. GrDhX @@ -427,7 +427,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/svl/messages.po libreoffice-7.4.7/translations/source/sq/svl/messages.po --- libreoffice-7.4.6/translations/source/sq/svl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/svl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:20+0100\n" -"PO-Revision-Date: 2018-02-27 15:09+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1519744157.000000\n" #. PDMJD @@ -57,7 +57,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/svtools/messages.po libreoffice-7.4.7/translations/source/sq/svtools/messages.po --- libreoffice-7.4.6/translations/source/sq/svtools/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/svtools/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2018-11-14 11:45+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:33+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1542195945.000000\n" #. fLdeV @@ -1741,7 +1741,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/svx/messages.po libreoffice-7.4.7/translations/source/sq/svx/messages.po --- libreoffice-7.4.6/translations/source/sq/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2020-02-01 14:51+0000\n" -"Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Albanian \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/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.15.2\n" "X-POOTLE-MTIME: 1542024937.000000\n" #. 3GkZj @@ -10356,7 +10356,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/sw/messages.po libreoffice-7.4.7/translations/source/sq/sw/messages.po --- libreoffice-7.4.6/translations/source/sq/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2018-11-14 11:45+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:33+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1542195945.000000\n" #. v3oJv @@ -127,7 +127,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/uui/messages.po libreoffice-7.4.7/translations/source/sq/uui/messages.po --- libreoffice-7.4.6/translations/source/sq/uui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/uui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-04-26 13:59+0200\n" -"PO-Revision-Date: 2018-10-27 13:51+0000\n" -"Last-Translator: Anxhelo Lushka \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1540648272.000000\n" #. DLY8p @@ -536,7 +536,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/vcl/messages.po libreoffice-7.4.7/translations/source/sq/vcl/messages.po --- libreoffice-7.4.6/translations/source/sq/vcl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/vcl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-08-24 12:29+0200\n" -"PO-Revision-Date: 2018-11-12 12:15+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1542024939.000000\n" #. k5jTM @@ -538,7 +538,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/wizards/messages.po libreoffice-7.4.7/translations/source/sq/wizards/messages.po --- libreoffice-7.4.6/translations/source/sq/wizards/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/wizards/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-19 13:14+0100\n" -"PO-Revision-Date: 2018-01-15 20:37+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1516048649.000000\n" #. gbiMx @@ -1626,7 +1626,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/writerperfect/messages.po libreoffice-7.4.7/translations/source/sq/writerperfect/messages.po --- libreoffice-7.4.6/translations/source/sq/writerperfect/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/writerperfect/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-23 11:46+0100\n" -"PO-Revision-Date: 2018-06-29 16:54+0000\n" -"Last-Translator: Anxhelo Lushka \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1530291277.000000\n" #. DXXuk @@ -67,7 +67,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sq/xmlsecurity/messages.po libreoffice-7.4.7/translations/source/sq/xmlsecurity/messages.po --- libreoffice-7.4.6/translations/source/sq/xmlsecurity/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sq/xmlsecurity/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:21+0100\n" -"PO-Revision-Date: 2018-05-23 21:56+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" +"Last-Translator: Agroni \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 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.15.2\n" "X-POOTLE-MTIME: 1527112568.000000\n" #. EyJrF @@ -229,7 +229,7 @@ #. wH3TZ msgctxt "stock" msgid "_Add" -msgstr "" +msgstr "_Shto" #. S9dsC msgctxt "stock" diff -Nru libreoffice-7.4.6/translations/source/sv/cui/messages.po libreoffice-7.4.7/translations/source/sv/cui/messages.po --- libreoffice-7.4.6/translations/source/sv/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sv/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2022-07-26 09:17+0000\n" +"PO-Revision-Date: 2023-04-23 05:34+0000\n" "Last-Translator: Andreas Pettersson \n" -"Language-Team: Swedish \n" +"Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562761710.000000\n" #. GyY9M @@ -9736,7 +9736,7 @@ #: cui/uiconfig/ui/gradientpage.ui:219 msgctxt "gradientpage|gradienttypelb" msgid "Linear" -msgstr "Aritmetisk" +msgstr "Linjär" #. fgBSm #: cui/uiconfig/ui/gradientpage.ui:220 @@ -21782,7 +21782,7 @@ #: cui/uiconfig/ui/transparencytabpage.ui:288 msgctxt "transparencytabpage|liststoreTYPE" msgid "Linear" -msgstr "Aritmetisk" +msgstr "Linjär" #. 8CgMQ #: cui/uiconfig/ui/transparencytabpage.ui:289 diff -Nru libreoffice-7.4.6/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-10-24 11:13+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Andreas Pettersson \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562689978.000000\n" #. W5ukN @@ -34616,7 +34616,7 @@ "Label\n" "value.text" msgid "Hide Whitespac~e" -msgstr "Dölj tomt utrymm~e" +msgstr "~Dölj blanksteg" #. XAsfn #: WriterCommands.xcu @@ -34626,7 +34626,7 @@ "Label\n" "value.text" msgid "Show Whitespac~e" -msgstr "Visa tomt utrymm~e" +msgstr "~Visa blanksteg" #. RHnwE #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/th/cui/messages.po libreoffice-7.4.7/translations/source/th/cui/messages.po --- libreoffice-7.4.6/translations/source/th/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/th/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-01-23 12:20+0000\n" +"PO-Revision-Date: 2023-03-06 11:33+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" "Language: th\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542196009.000000\n" #. GyY9M @@ -4774,7 +4774,7 @@ #: cui/uiconfig/ui/additionsdialog.ui:98 msgctxt "additionsdialog|AdditionsDialog" msgid "Additions" -msgstr "การเพิ่ม" +msgstr "ส่วนขยาย" #. wqAig #: cui/uiconfig/ui/additionsdialog.ui:123 diff -Nru libreoffice-7.4.6/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-03-06 11:33+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" "Language: th\n" @@ -3214,7 +3214,7 @@ "ContextLabel\n" "value.text" msgid "~Show" -msgstr "แส~ดง" +msgstr "แ~สดง" #. xvXRj #: CalcCommands.xcu @@ -7695,7 +7695,7 @@ "Label\n" "value.text" msgid "Query (Design View)..." -msgstr "ข้อคำถาม (มุมมองแบบ)..." +msgstr "ข้อคำถาม (มุมมองออกแบบ)..." #. AenSc #: DbuCommands.xcu @@ -7705,7 +7705,7 @@ "PopupLabel\n" "value.text" msgid "New ~Query (Design View)" -msgstr "" +msgstr "ข้อคำ~ถามใหม่ (มุมมองออกแบบ)" #. Njo7R #: DbuCommands.xcu @@ -8596,7 +8596,7 @@ "Label\n" "value.text" msgid "Reset line skew" -msgstr "" +msgstr "ล้างค่าเบี่ยงเบนเส้น" #. avSPK #: DrawImpressCommands.xcu @@ -9456,7 +9456,7 @@ "Label\n" "value.text" msgid "E~xecute Interaction..." -msgstr "" +msgstr "เรียกกระ~ทำปฏิสัมพันธ์..." #. TNj5u #: DrawImpressCommands.xcu @@ -9500,14 +9500,13 @@ #. ETuM4 #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:DisplayMode\n" "Label\n" "value.text" msgid "Display Views" -msgstr "แสดงผลเขตข้อมูล" +msgstr "มุมมองของการแสดงผล" #. fud7F #: DrawImpressCommands.xcu @@ -9571,14 +9570,13 @@ #. fNuFd #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Commands..uno:Dismantle\n" "Label\n" "value.text" msgid "Spl~it" -msgstr "Split แยก" +msgstr "แ~ยก" #. LH3FP #: DrawImpressCommands.xcu @@ -9668,7 +9666,7 @@ "Label\n" "value.text" msgid "~Break" -msgstr "~ตัวแบ่ง" +msgstr "~ตัดการเชื่อมต่อ" #. 9yBgu #: DrawImpressCommands.xcu @@ -11448,18 +11446,17 @@ "Label\n" "value.text" msgid "Slid~e Features" -msgstr "" +msgstr "ลักษณะเด่นของภา~พนิ่ง" #. YZqkk #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Popups..uno:CellMenu\n" "Label\n" "value.text" msgid "~Cell" -msgstr "เซลล์" +msgstr "~ช่องตาราง" #. FMhgM #: DrawImpressCommands.xcu @@ -11483,14 +11480,13 @@ #. AeDby #: DrawImpressCommands.xcu -#, fuzzy msgctxt "" "DrawImpressCommands.xcu\n" "..DrawImpressCommands.UserInterface.Popups..uno:ModifyPresentationObject\n" "Label\n" "value.text" msgid "Presentation ~Object..." -msgstr "~วัตถุการนำเสนอ..." +msgstr "~วัตถุงานนำเสนอ..." #. CBNFc #: DrawImpressCommands.xcu @@ -14340,7 +14336,7 @@ "Label\n" "value.text" msgid "Fall simulated" -msgstr "" +msgstr "หล่นจำลอง" #. BqK9h #: Effects.xcu @@ -14350,7 +14346,7 @@ "Label\n" "value.text" msgid "Shoot right and return" -msgstr "" +msgstr "ยิงขวาแล้วย้อนกลับ" #. DHrg4 #: Effects.xcu @@ -14360,7 +14356,7 @@ "Label\n" "value.text" msgid "Shoot left and return" -msgstr "" +msgstr "ยิงซ้ายแล้วย้อนกลับ" #. MZBtm #: Effects.xcu @@ -19882,7 +19878,7 @@ "Label\n" "value.text" msgid "Outline Format" -msgstr "" +msgstr "รูปแบบเค้าโครง" #. TSDD9 #: GenericCommands.xcu @@ -19892,7 +19888,7 @@ "ContextLabel\n" "value.text" msgid "~Outline Format" -msgstr "" +msgstr "รูปแบบเ~ค้าโครง" #. RMCDt #: GenericCommands.xcu @@ -19902,7 +19898,7 @@ "TooltipLabel\n" "value.text" msgid "Select Outline Format" -msgstr "" +msgstr "เลือกรูปแบบเค้าโครง" #. uKMCr #: GenericCommands.xcu @@ -19932,7 +19928,7 @@ "Label\n" "value.text" msgid "Dimen~sions..." -msgstr "" +msgstr "เ~ส้นบอกขนาด..." #. TgPVp #: GenericCommands.xcu @@ -26353,7 +26349,7 @@ "Label\n" "value.text" msgid "Table Control" -msgstr "" +msgstr "ตัวควบคุมแบบตาราง" #. 7wECp #: GenericCommands.xcu @@ -26643,7 +26639,7 @@ "Label\n" "value.text" msgid "Basic Macro Organizer..." -msgstr "" +msgstr "ตัวจัดการแมโครภาษาเบสิก..." #. ahLAz #: GenericCommands.xcu @@ -26883,7 +26879,7 @@ "Label\n" "value.text" msgid "~Additions..." -msgstr "" +msgstr "ส่วน~ขยาย..." #. bFKmR #: GenericCommands.xcu @@ -26893,7 +26889,7 @@ "ContextLabel\n" "value.text" msgid "~Additional Extensions..." -msgstr "" +msgstr "ส่วน~ขยายเพิ่มเติม..." #. UqjzD #: GenericCommands.xcu @@ -26903,7 +26899,7 @@ "TooltipLabel\n" "value.text" msgid "Additional Extensions" -msgstr "" +msgstr "ส่วนขยายเพิ่มเติม" #. YpeR4 #: GenericCommands.xcu @@ -28417,7 +28413,6 @@ #. DVRia #: ReportCommands.xcu -#, fuzzy msgctxt "" "ReportCommands.xcu\n" ".ReportCommands.UserInterface.Commands..uno:ShowRuler\n" @@ -28541,14 +28536,13 @@ #. oRqAD #: ReportCommands.xcu -#, fuzzy msgctxt "" "ReportCommands.xcu\n" ".ReportCommands.UserInterface.Commands..uno:GridMenu\n" "Label\n" "value.text" msgid "Gr~id" -msgstr "เส้น~แนว" +msgstr "~กริด" #. 44sUt #: ReportCommands.xcu @@ -28582,14 +28576,13 @@ #. Yts2i #: ReportCommands.xcu -#, fuzzy msgctxt "" "ReportCommands.xcu\n" ".ReportCommands.UserInterface.Commands..uno:ImageControl\n" "Label\n" "value.text" msgid "Image..." -msgstr "หน้า..." +msgstr "รูปภาพ..." #. E872w #: ReportCommands.xcu @@ -28609,7 +28602,7 @@ "Label\n" "value.text" msgid "Spreadsheet Document" -msgstr "" +msgstr "เอกสารตารางคำนวณ" #. eCwdZ #: ReportCommands.xcu @@ -29150,7 +29143,7 @@ "Title\n" "value.text" msgid "Effect" -msgstr "" +msgstr "ลูกเล่น" #. GBNW2 #: Sidebar.xcu @@ -32390,7 +32383,7 @@ "Label\n" "value.text" msgid "F~ields..." -msgstr "เ~ขตข้อมูล..." +msgstr "~ช่องข้อมูล..." #. Myv3t #: WriterCommands.xcu @@ -32400,7 +32393,7 @@ "PopupLabel\n" "value.text" msgid "Edit F~ields..." -msgstr "" +msgstr "แก้ไข~ช่องข้อมูล..." #. U9LvE #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/th/sc/messages.po libreoffice-7.4.7/translations/source/th/sc/messages.po --- libreoffice-7.4.6/translations/source/th/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/th/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-03-31 22:31+0000\n" +"PO-Revision-Date: 2023-05-01 17:34+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" -"Language-Team: Thai \n" +"Language-Team: Thai \n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542025149.000000\n" #. kBovX @@ -24,14 +24,12 @@ #. eDPDn #: sc/inc/compiler.hrc:29 -#, fuzzy msgctxt "RID_FUNCTION_CATEGORIES" msgid "Date&Time" msgstr "วันที่และเวลา" #. BbnPT #: sc/inc/compiler.hrc:30 -#, fuzzy msgctxt "RID_FUNCTION_CATEGORIES" msgid "Financial" msgstr "การเงิน" @@ -44,28 +42,24 @@ #. 7bP4A #: sc/inc/compiler.hrc:32 -#, fuzzy msgctxt "RID_FUNCTION_CATEGORIES" msgid "Logical" msgstr "ตรรกะ" #. XBcXD #: sc/inc/compiler.hrc:33 -#, fuzzy msgctxt "RID_FUNCTION_CATEGORIES" msgid "Mathematical" -msgstr "ทางคณิตศาสตร์" +msgstr "คณิตศาสตร์" #. iLDXL #: sc/inc/compiler.hrc:34 -#, fuzzy msgctxt "RID_FUNCTION_CATEGORIES" msgid "Array" -msgstr "อาเรย์ " +msgstr "อาร์เรย์" #. GzHHA #: sc/inc/compiler.hrc:35 -#, fuzzy msgctxt "RID_FUNCTION_CATEGORIES" msgid "Statistical" msgstr "สถิติ" @@ -78,7 +72,6 @@ #. ZUnEM #: sc/inc/compiler.hrc:37 -#, fuzzy msgctxt "RID_FUNCTION_CATEGORIES" msgid "Text" msgstr "ข้อความ" @@ -212,13 +205,13 @@ #: sc/inc/globstr.hrc:43 msgctxt "STR_UNDO_SELATTR" msgid "Attributes" -msgstr "ลักษณะ" +msgstr "คุณลักษณะ" #. cbfQK #: sc/inc/globstr.hrc:44 msgctxt "STR_UNDO_SELATTRLINES" msgid "Attributes/Lines" -msgstr "ลักษณะ/บรรทัด" +msgstr "คุณลักษณะ/เส้น" #. xGiQs #: sc/inc/globstr.hrc:45 @@ -242,7 +235,7 @@ #: sc/inc/globstr.hrc:48 msgctxt "STR_UNDO_OPTROWHEIGHT" msgid "Optimal Row Height" -msgstr "ความสูงแถวที่เหมาะที่สุด" +msgstr "ความสูงของแถวที่เหมาะที่สุด" #. r6cVy #: sc/inc/globstr.hrc:49 @@ -278,7 +271,7 @@ #: sc/inc/globstr.hrc:54 msgctxt "STR_UNDO_CURSORATTR" msgid "Attributes" -msgstr "ลักษณะ" +msgstr "คุณลักษณะ" #. y7oGy #: sc/inc/globstr.hrc:55 @@ -332,7 +325,7 @@ #: sc/inc/globstr.hrc:63 msgctxt "STR_UNDO_REMAKEOUTLINE" msgid "Ungroup" -msgstr "ยกเลิกการจัดกลุ่ม" +msgstr "แยกกลุ่ม" #. acouc #: sc/inc/globstr.hrc:64 @@ -380,7 +373,7 @@ #: sc/inc/globstr.hrc:71 msgctxt "STR_UNDO_QUERY" msgid "Filter" -msgstr "ตัวกรอง" +msgstr "กรอง" #. HCcTp #: sc/inc/globstr.hrc:72 @@ -398,31 +391,31 @@ #: sc/inc/globstr.hrc:74 msgctxt "STR_UNDO_REPEATDB" msgid "Refresh range" -msgstr "Refresh range" +msgstr "ปรับข้อมูลช่วง" #. tDARx #: sc/inc/globstr.hrc:75 msgctxt "STR_UNDO_LISTNAMES" msgid "List names" -msgstr "ชื่อรายการ" +msgstr "รายชื่อช่วง" #. EnHNF #: sc/inc/globstr.hrc:76 msgctxt "STR_UNDO_PIVOT_NEW" msgid "Create pivot table" -msgstr "สร้างตารางสรุปข้อมูล (Pivot Table)" +msgstr "สร้างตารางสรุปข้อมูล" #. iHXHE #: sc/inc/globstr.hrc:77 msgctxt "STR_UNDO_PIVOT_MODIFY" msgid "Edit pivot table" -msgstr "แก้ตารางสรุปข้อมูล (Pivot Table)" +msgstr "แก้ตารางสรุปข้อมูล" #. vrufF #: sc/inc/globstr.hrc:78 msgctxt "STR_UNDO_PIVOT_DELETE" msgid "Delete pivot table" -msgstr "ลบตารางสรุปข้อมูล (Pivot Table)" +msgstr "ลบตารางสรุปข้อมูล" #. 2YADi #: sc/inc/globstr.hrc:79 @@ -452,25 +445,25 @@ #: sc/inc/globstr.hrc:83 msgctxt "STR_UNDO_APPLYCELLSTYLE" msgid "Apply Cell Style" -msgstr "เริ่มใช้ลักษณะเซลล์" +msgstr "ใช้กระบวนแบบเซลล์" #. dfVuE #: sc/inc/globstr.hrc:84 msgctxt "STR_UNDO_EDITCELLSTYLE" msgid "Edit Cell Style" -msgstr "แก้ไขลักษณะเซลล์" +msgstr "แก้ไขกระบวนแบบเซลล์" #. VSw6F #: sc/inc/globstr.hrc:85 msgctxt "STR_UNDO_APPLYPAGESTYLE" msgid "Apply Page Style" -msgstr "เริ่มใช้รูปแบบหน้า" +msgstr "ใช้กระบวนแบบหน้า" #. ALV9B #: sc/inc/globstr.hrc:86 msgctxt "STR_UNDO_EDITPAGESTYLE" msgid "Edit Page Style" -msgstr "แก้ไขลักษณะหน้า" +msgstr "แก้ไขกระบวนแบบหน้า" #. vMyjF #: sc/inc/globstr.hrc:87 @@ -482,7 +475,7 @@ #: sc/inc/globstr.hrc:88 msgctxt "STR_UNDO_DETDELPRED" msgid "Remove Precedent" -msgstr "Remove Precedent" +msgstr "เอาการแสดงการคำนวณก่อนหน้าออก" #. 8Pkj9 #: sc/inc/globstr.hrc:89 @@ -494,7 +487,7 @@ #: sc/inc/globstr.hrc:90 msgctxt "STR_UNDO_DETDELSUCC" msgid "Remove Dependent" -msgstr "Remove Dependent" +msgstr "เอาการแสดงการคำนวณตามหลังออก" #. xTvKp #: sc/inc/globstr.hrc:91 @@ -518,7 +511,7 @@ #: sc/inc/globstr.hrc:94 msgctxt "STR_UNDO_DETREFRESH" msgid "Refresh Traces" -msgstr "Refresh Traces" +msgstr "ปรับแสดงการตามรอย" #. 2AuiD #: sc/inc/globstr.hrc:95 @@ -530,13 +523,13 @@ #: sc/inc/globstr.hrc:96 msgctxt "STR_UNDO_ORIGINALSIZE" msgid "Original Size" -msgstr "ขนาดต้นฉบับ" +msgstr "ขนาดเดิม" #. RjEDc #: sc/inc/globstr.hrc:97 msgctxt "STR_UNDO_FITCELLSIZE" msgid "Fit to Cell Size" -msgstr "" +msgstr "ขนาดพอดีเซลล์" #. SzED2 #: sc/inc/globstr.hrc:98 @@ -548,7 +541,7 @@ #: sc/inc/globstr.hrc:99 msgctxt "STR_UNDO_REMOVELINK" msgid "Unlink" -msgstr "ไม่เชื่อมโยง" +msgstr "ตัดการเชื่อมโยง" #. RYQAu #: sc/inc/globstr.hrc:100 @@ -560,13 +553,13 @@ #: sc/inc/globstr.hrc:101 msgctxt "STR_UNDO_ENTERMATRIX" msgid "Insert Array Formula" -msgstr "แทรกสูตรอาเรย์" +msgstr "แทรกสูตรอาร์เรย์" #. CUCCD #: sc/inc/globstr.hrc:102 msgctxt "STR_UNDO_INSERTNOTE" msgid "Insert Comment" -msgstr "ใส่ความคิดเห็น" +msgstr "แทรกความคิดเห็น" #. QvVPq #: sc/inc/globstr.hrc:103 @@ -578,7 +571,7 @@ #: sc/inc/globstr.hrc:104 msgctxt "STR_UNDO_SHOWNOTE" msgid "Show Comment" -msgstr "แสดงความคิดเห็น" +msgstr "แสดงเนื้อหาความคิดเห็น" #. hVdSb #: sc/inc/globstr.hrc:105 @@ -590,13 +583,13 @@ #: sc/inc/globstr.hrc:106 msgctxt "STR_UNDO_SHOWALLNOTES" msgid "Show All Comments" -msgstr "" +msgstr "แสดงเนื้อหาความคิดเห็นทั้งหมด" #. hcrJZ #: sc/inc/globstr.hrc:107 msgctxt "STR_UNDO_HIDEALLNOTES" msgid "Hide All Comments" -msgstr "" +msgstr "ซ่อนความคิดเห็นทั้งหมด" #. Ngfbt #: sc/inc/globstr.hrc:108 @@ -608,13 +601,13 @@ #: sc/inc/globstr.hrc:109 msgctxt "STR_UNDO_DEC_INDENT" msgid "Decrease Indent" -msgstr "ลดระยะเยื้อง" +msgstr "ลดระยะร่น" #. 4kqvD #: sc/inc/globstr.hrc:110 msgctxt "STR_UNDO_INC_INDENT" msgid "Increase Indent" -msgstr "เพิ่มระยะเยื้อง" +msgstr "เพิ่มระยะร่น" #. pizsf #: sc/inc/globstr.hrc:111 @@ -626,7 +619,7 @@ #: sc/inc/globstr.hrc:112 msgctxt "STR_UNDO_UNPROTECT_TAB" msgid "Unprotect sheet" -msgstr "ปลดการป้องกันแผ่นงาน" +msgstr "เลิกปกป้องแผ่นงาน" #. ESNgU #: sc/inc/globstr.hrc:113 @@ -638,7 +631,7 @@ #: sc/inc/globstr.hrc:114 msgctxt "STR_UNDO_UNPROTECT_DOC" msgid "Unprotect document" -msgstr "ปลดการป้องกันเอกสาร" +msgstr "เลิกปกป้องเอกสาร" #. 8MwdV #: sc/inc/globstr.hrc:115 @@ -704,7 +697,7 @@ #: sc/inc/globstr.hrc:125 msgctxt "STR_MSSG_REPEATDB_0" msgid "No operations to execute" -msgstr "No operations to execute" +msgstr "ไม่มีปฏิบัติการที่จะดำเนินการ" #. BC4uB #: sc/inc/globstr.hrc:126 @@ -713,8 +706,8 @@ "The range does not contain column headers.\n" "Do you want the first line to be used as column header?" msgstr "" -"ช่วงไม่มีส่วนหัวคอลัมน์\n" -"คุณต้องการใช้บรรทัดแรกเป็นส่วนหัวคอลัมน์หรือไม่?" +"ช่วงไม่มีหัวคอลัมน์\n" +"คุณต้องการใช้บรรทัดแรกเป็นหัวคอลัมน์หรือไม่?" #. W8DjC #: sc/inc/globstr.hrc:127 @@ -726,13 +719,13 @@ #: sc/inc/globstr.hrc:128 msgctxt "STR_MSSG_MAKEOUTLINE_0" msgid "Grouping not possible" -msgstr "การจัดกลุ่มเป็นไปไม่ได้" +msgstr "การรวมกลุ่มเป็นไปไม่ได้" #. vxHwk #: sc/inc/globstr.hrc:129 msgctxt "STR_MSSG_REMOVEOUTLINE_0" msgid "Ungrouping not possible" -msgstr "การยกเลิกจัดกลุ่มเป็นไปไม่ได้" +msgstr "การแยกกลุ่มเป็นไปไม่ได้" #. WF28B #: sc/inc/globstr.hrc:130 @@ -744,25 +737,25 @@ #: sc/inc/globstr.hrc:131 msgctxt "STR_MSSG_MOVEBLOCKTO_0" msgid "Cell merge not possible if cells already merged!" -msgstr "ผสานช่องไม่ได้ถ้ามีการผสานช่องอยู่แล้ว!" +msgstr "ผสานเซลล์ไม่ได้ถ้าเซลล์ผสานอยู่แล้ว!" #. won4Y #: sc/inc/globstr.hrc:132 msgctxt "STR_MSSG_INSERTCELLS_0" msgid "Inserting into merged ranges not possible" -msgstr "การแทรกเข้าไปในช่วงที่มีการผสานอยู่แล้วเป็นไปไม่ได้" +msgstr "แทรกเข้าในช่วงที่ผสานอยู่ไม่ได้" #. L3jzC #: sc/inc/globstr.hrc:133 msgctxt "STR_MSSG_DELETECELLS_0" msgid "Deleting in merged ranges not possible" -msgstr "ลบช่วงที่ผสานไม่ได้" +msgstr "ลบในช่วงที่ผสานอยู่ไม่ได้" #. DkYXD #: sc/inc/globstr.hrc:134 msgctxt "STR_MSSG_MERGECELLS_0" msgid "Cell merge not possible if cells already merged" -msgstr "ผสานเซลล์ไม่ได้ถ้ามีการผสานเซลล์อยู่ก่อนแล้ว" +msgstr "ผสานเซลล์ไม่ได้ถ้าเซลล์ผสานอยู่แล้ว" #. z5JEL #: sc/inc/globstr.hrc:135 @@ -774,7 +767,7 @@ #: sc/inc/globstr.hrc:136 msgctxt "STR_MSSG_SOLVE_0" msgid "Goal Seek succeeded. Result: " -msgstr "" +msgstr "ค้นหาค่าเป้าหมายสำเร็จ ผลลัพธ์คือ: " #. nLBkx #: sc/inc/globstr.hrc:137 @@ -784,6 +777,9 @@ "\n" "Insert the result into the variable cell?" msgstr "" +"\n" +"\n" +"จะแทรกผลลัพธ์ลงในเซลล์ตัวแปรหรือไม่?" #. 7fkiC #: sc/inc/globstr.hrc:138 @@ -792,19 +788,20 @@ "Goal Seek failed.\n" "\n" msgstr "" +"ค้นหาค่าเป้าหมายไม่สำเร็จ\n" +"\n" #. kDeqC #: sc/inc/globstr.hrc:139 -#, fuzzy msgctxt "STR_MSSG_SOLVE_3" msgid "Insert the closest value (" -msgstr "แทรกค่าที่ใกล้เคียงที่สุด (" +msgstr "จะแทรกค่าที่ใกล้เคียงที่สุด (" #. ESuoy #: sc/inc/globstr.hrc:140 msgctxt "STR_MSSG_SOLVE_4" msgid ") into the variable cell anyway?" -msgstr "" +msgstr ") ลงในเซลล์ตัวแปรหรือไม่?" #. qoGmi #: sc/inc/globstr.hrc:141 @@ -822,19 +819,19 @@ #: sc/inc/globstr.hrc:143 msgctxt "STR_UNDO_SPELLING" msgid "Spellcheck" -msgstr "ตรวจตัวสะกด" +msgstr "ตรวจการสะกดคำ" #. JsWgg #: sc/inc/globstr.hrc:144 msgctxt "STR_TABLE_AND" msgid "AND" -msgstr "" +msgstr "และ" #. frBzb #: sc/inc/globstr.hrc:145 msgctxt "STR_TABLE_OR" msgid "OR" -msgstr "" +msgstr "หรือ" #. ovwBG #: sc/inc/globstr.hrc:146 @@ -846,7 +843,7 @@ #: sc/inc/globstr.hrc:147 msgctxt "STR_MOVE_TO_END" msgid "- move to end position -" -msgstr "- ย้ายไปยังตำแหน่งสุดท้าย -" +msgstr "- ย้ายไปตำแหน่งท้ายสุด -" #. FJEi6 #: sc/inc/globstr.hrc:148 @@ -858,13 +855,13 @@ #: sc/inc/globstr.hrc:149 msgctxt "STR_PIVOT_NODATA" msgid "The pivot table must contain at least one entry." -msgstr "ตารางสรุปข้อมูลต้องมีอย่างน้อยที่สุดหนึ่งรายการ" +msgstr "ตารางสรุปข้อมูลต้องมีรายการอย่างน้อยหนึ่งรายการ" #. SWM6f #: sc/inc/globstr.hrc:150 msgctxt "STR_PIVOT_MOVENOTALLOWED" msgid "The data range can not be deleted." -msgstr "ไม่สามารถลบช่วงข้อมูล" +msgstr "ไม่สามารถลบช่วงข้อมูลได้" #. hEFjA #: sc/inc/globstr.hrc:151 @@ -876,7 +873,7 @@ #: sc/inc/globstr.hrc:152 msgctxt "STR_PIVOT_NOTEMPTY" msgid "The destination range is not empty. Overwrite existing contents?" -msgstr "ช่วงเป้าหมายไม่ว่าง เขียนทับเนื้อหาที่มีอยู่หรือไม่?" +msgstr "ช่วงปลายทางไม่ว่าง จะเขียนทับเนื้อหาที่มีอยู่หรือไม่?" #. BrFHa #: sc/inc/globstr.hrc:153 @@ -885,12 +882,14 @@ "Deleting the pivot table will also remove any associated pivot charts.\n" "Do you want to proceed?" msgstr "" +"การลบตารางสรุปข้อมูลจะเป็นการลบแผนภูมิสรุปข้อมูลต่างๆ ที่เชื่อมโยงอยู่ด้วย\n" +"คุณต้องการดำเนินการต่อไปหรือไม่?" #. W25Ey #: sc/inc/globstr.hrc:154 msgctxt "STR_DATAPILOT_SUBTOTAL" msgid "The source range contains subtotals which may distort the results. Use it anyway?" -msgstr "แหล่งช่วงมีผลรวมย่อยที่จะบิดเบือนผลลัพธ์ จะใช้มันหรือไม่?" +msgstr "ช่วงต้นทางมีผลรวมย่อยที่อาจบิดเบือนผลลัพธ์ได้ จะยังคงใช้ช่วงดังกล่าวอยู่หรือไม่?" #. gX9QE #: sc/inc/globstr.hrc:155 @@ -908,7 +907,7 @@ #: sc/inc/globstr.hrc:157 msgctxt "STR_PIVOT_GROUP" msgid "Group" -msgstr "จัดกลุ่ม" +msgstr "กลุ่ม" #. 9YfrB #. To translators: $1 == will be replaced by STR_SELCOUNT_ROWARG, and $2 by STR_SELCOUNT_COLARG @@ -916,7 +915,7 @@ #: sc/inc/globstr.hrc:160 msgctxt "STR_SELCOUNT" msgid "Selected: $1, $2" -msgstr "" +msgstr "เลือก: $1, $2" #. FgTCG #. To translators: STR_SELCOUNT_ROWARG is $1 of STR_SELCOUNT. $1 of STR_SELCOUNT_ROWARG is number of rows @@ -924,7 +923,7 @@ msgctxt "STR_SELCOUNT_ROWARG" msgid "$1 row" msgid_plural "$1 rows" -msgstr[0] "" +msgstr[0] "$1 แถว" #. o4pBL #. To translators: STR_SELCOUNT_COLARG is $1 of STR_SELCOUNT. $1 of STR_SELCOUNT_ROWARG is number of columns @@ -932,13 +931,13 @@ msgctxt "STR_SELCOUNT_COLARG" msgid "$1 column" msgid_plural "$1 columns" -msgstr[0] "" +msgstr[0] "$1 คอลัมน์" #. 3dMsw #: sc/inc/globstr.hrc:165 msgctxt "STR_FILTER_SELCOUNT" msgid "$1 of $2 records found" -msgstr "" +msgstr "พบ $1 จาก $2 ระเบียน" #. ibncs #: sc/inc/globstr.hrc:166 @@ -962,13 +961,13 @@ #: sc/inc/globstr.hrc:169 msgctxt "STR_PGNUM" msgid "Page %1" -msgstr "" +msgstr "หน้า %1" #. vRVuG #: sc/inc/globstr.hrc:170 msgctxt "STR_LOAD_DOC" msgid "Load document" -msgstr "บรรจุเอกสาร" +msgstr "โหลดเอกสาร" #. 5ryKn #: sc/inc/globstr.hrc:171 @@ -980,7 +979,7 @@ #: sc/inc/globstr.hrc:172 msgctxt "STR_AREA_ALREADY_INSERTED" msgid "This range has already been inserted." -msgstr "แทรกช่วงนี้แล้ว" +msgstr "ช่วงนี้ได้ถูกแทรกไปแล้ว" #. XyAxZ #: sc/inc/globstr.hrc:173 @@ -992,7 +991,7 @@ #: sc/inc/globstr.hrc:174 msgctxt "STR_INVALID_QUERYAREA" msgid "This range does not contain a valid query." -msgstr "ช่วงนี้ไม่มีคำค้นที่ใช้ได้" +msgstr "ช่วงนี้ไม่มีข้อคำถามที่ใช้ได้" #. BGXtf #: sc/inc/globstr.hrc:175 @@ -1028,13 +1027,13 @@ #: sc/inc/globstr.hrc:180 msgctxt "STR_UPDATE_SCENARIO" msgid "Add selected ranges to current scenario?" -msgstr "เพิ่มช่วงที่เลือกในสถานการณ์สมมติปัจจุบันหรือไม่?" +msgstr "จะเพิ่มช่วงที่เลือกเข้าในสถานการณ์สมมติปัจจุบันหรือไม่?" #. D6qcp #: sc/inc/globstr.hrc:181 msgctxt "STR_ERR_NEWSCENARIO" msgid "The scenario ranges must be selected in order to be able to create a new scenario." -msgstr "ต้องเลือกช่วงสถานการณ์สมมติเพื่อที่จะสามารถสร้างสถานการณ์สมมติใหม่" +msgstr "ต้องเลือกช่วงสถานการณ์สมมติเพื่อที่จะสามารถสร้างสถานการณ์สมมติใหม่ได้" #. yjtPb #: sc/inc/globstr.hrc:182 @@ -1060,6 +1059,13 @@ "• contain [ ] * ? : / \\ \n" "• use ' (apostrophe) as first or last character." msgstr "" +"ชื่อแผ่นงานไม่ถูกต้อง\n" +"\n" +"ชื่อแผ่นงานต้องไม่:\n" +"• ว่างเปล่า\n" +"• มีอยู่ก่อนแล้ว\n" +"• มีอักขระ [ ] * ? : / \\ \n" +"• ใช้ ' (apostrophe) เป็นอักษรตัวแรกหรือตัวสุดท้าย" #. CGAdE #: sc/inc/globstr.hrc:185 @@ -1090,44 +1096,43 @@ #: sc/inc/globstr.hrc:190 msgctxt "STR_FUN_TEXT_COUNT" msgid "Count" -msgstr "นับ" +msgstr "นับจำนวน" #. juNtW #: sc/inc/globstr.hrc:191 msgctxt "STR_FUN_TEXT_COUNT2" msgid "CountA" -msgstr "COUNTA" +msgstr "CountA" #. B58nD #: sc/inc/globstr.hrc:192 msgctxt "STR_FUN_TEXT_AVG" msgid "Average" -msgstr "เฉลี่ย" +msgstr "ค่าเฉลี่ย" #. AoUSX #: sc/inc/globstr.hrc:193 -#, fuzzy msgctxt "STR_FUN_TEXT_MEDIAN" msgid "Median" -msgstr "สื่อ" +msgstr "มัธยฐาน" #. YMzF9 #: sc/inc/globstr.hrc:194 msgctxt "STR_FUN_TEXT_MAX" msgid "Max" -msgstr "มากที่สุด" +msgstr "ค่ามากสุด" #. A8fBH #: sc/inc/globstr.hrc:195 msgctxt "STR_FUN_TEXT_MIN" msgid "Min" -msgstr "น้อยที่สุด" +msgstr "ค่าน้อยสุด" #. oZVg5 #: sc/inc/globstr.hrc:196 msgctxt "STR_FUN_TEXT_PRODUCT" msgid "Product" -msgstr "ผลิตภัณฑ์" +msgstr "ผลคูณ" #. 6FXQo #: sc/inc/globstr.hrc:197 @@ -1169,7 +1174,7 @@ #: sc/inc/globstr.hrc:203 msgctxt "STR_PAGESTYLE" msgid "Page Style" -msgstr "ลักษณะหน้า" +msgstr "กระบวนแบบหน้า" #. zFTin #: sc/inc/globstr.hrc:204 @@ -1193,19 +1198,19 @@ #: sc/inc/globstr.hrc:207 msgctxt "STR_PROTECTIONERR" msgid "Protected cells can not be modified." -msgstr "ไม่สามารถแก้ไขช่องที่ถูกปกป้อง" +msgstr "ไม่สามารถแก้ไขเซลล์ที่ถูกปกป้องได้" #. YS36j #: sc/inc/globstr.hrc:208 msgctxt "STR_READONLYERR" msgid "Document opened in read-only mode." -msgstr "เปิดเอกสารแบบอ่านอย่างเดียว" +msgstr "เอกสารถูกเปิดแบบอ่านอย่างเดียว" #. tPq5q #: sc/inc/globstr.hrc:209 msgctxt "STR_MATRIXFRAGMENTERR" msgid "You cannot change only part of an array." -msgstr "ไม่สามารถแก้ไขอาเรย์เฉพาะส่วน" +msgstr "ไม่สามารถแก้ไขอาร์เรย์เฉพาะบางส่วนได้" #. xDVk8 #: sc/inc/globstr.hrc:210 @@ -1232,14 +1237,14 @@ #: sc/inc/globstr.hrc:217 msgctxt "STR_LONG_ERR_DIV_ZERO" msgid "Error: Division by zero" -msgstr "ผิดพลาด: หารด้วยศูนย์" +msgstr "ข้อผิดพลาด: หารด้วยศูนย์" #. zznA7 #. ERROR.TYPE( #VALUE! ) == 3 #: sc/inc/globstr.hrc:219 msgctxt "STR_LONG_ERR_NO_VALUE" msgid "Error: No value" -msgstr "" +msgstr "ข้อผิดพลาด: ไม่มีค่า" #. kHwc6 #. ERROR.TYPE( #REF! ) == 4 @@ -1260,14 +1265,14 @@ #: sc/inc/globstr.hrc:225 msgctxt "STR_LONG_ERR_ILL_FPO" msgid "Error: Invalid numeric value" -msgstr "ผิดพลาด: ค่าตัวเลขไม่ถูกต้อง" +msgstr "ข้อผิดพลาด: ค่าตัวเลขไม่ถูกต้อง" #. zyzjD #. ERROR.TYPE( #N/A ) == 7 #: sc/inc/globstr.hrc:227 msgctxt "STR_LONG_ERR_NV" msgid "Error: Value not available" -msgstr "ข้อผิดพลาด: ค่าใช้ไม่ได้" +msgstr "ข้อผิดพลาด: ค่าไม่มีอยู่" #. 8VBei #. END defined ERROR.TYPE() values. @@ -1280,7 +1285,7 @@ #: sc/inc/globstr.hrc:230 msgctxt "STR_LONG_ERR_NO_ADDIN" msgid "Error: Add-in not found" -msgstr "ข้อผิดพลาด: ไม่พบโปรแกรมเสริม (add-in)" +msgstr "ข้อผิดพลาด: ไม่พบโปรแกรมเสริม" #. jxTFr #: sc/inc/globstr.hrc:231 @@ -1298,7 +1303,7 @@ #: sc/inc/globstr.hrc:233 msgctxt "STR_LONG_ERR_SYNTAX" msgid "Internal syntactical error" -msgstr "ข้อผิดพลาดทางไวยกรณ์ภายใน" +msgstr "ข้อผิดพลาดทางไวยากรณ์ภายใน" #. 7PBrr #: sc/inc/globstr.hrc:234 @@ -1310,13 +1315,13 @@ #: sc/inc/globstr.hrc:235 msgctxt "STR_LONG_ERR_ILL_PAR" msgid "Error in parameter list" -msgstr "เกิดความผิดพลาดในรายการพารามิเตอร์" +msgstr "เกิดข้อผิดพลาดในรายชื่อพารามิเตอร์" #. iJfWD #: sc/inc/globstr.hrc:236 msgctxt "STR_LONG_ERR_ILL_CHAR" msgid "Error: Invalid character" -msgstr "ข้อผิดพลาด: ตัวอักษรไม่ถูกต้อง" +msgstr "ข้อผิดพลาด: อักขระไม่ถูกต้อง" #. eoEQw #: sc/inc/globstr.hrc:237 @@ -1328,56 +1333,56 @@ #: sc/inc/globstr.hrc:238 msgctxt "STR_LONG_ERR_OP_EXP" msgid "Error: Operator missing" -msgstr "ข้อผิดพลาด: ตัวปฏิบัติการขาดหายไป" +msgstr "ข้อผิดพลาด: ขาดเครื่องหมายกระทำ" #. XoBCd #: sc/inc/globstr.hrc:239 msgctxt "STR_LONG_ERR_VAR_EXP" msgid "Error: Variable missing" -msgstr "ข้อผิดพลาด: ตัวแปรขาดหายไป" +msgstr "ข้อผิดพลาด: ขาดตัวแปร" #. ne6HG #: sc/inc/globstr.hrc:240 msgctxt "STR_LONG_ERR_CODE_OVF" msgid "Error: Formula overflow" -msgstr "ข้อผิดพลาด: สูตรล้น (overflow)" +msgstr "ข้อผิดพลาด: สูตรล้นหน่วยความจำ" #. zRh8E #: sc/inc/globstr.hrc:241 msgctxt "STR_LONG_ERR_STR_OVF" msgid "Error: String overflow" -msgstr "ข้อผิดพลาด: สายอักขระล้น (overflow)" +msgstr "ข้อผิดพลาด: สายอักขระล้นหน่วยความจำ" #. 5cMZo #: sc/inc/globstr.hrc:242 msgctxt "STR_LONG_ERR_STACK_OVF" msgid "Error: Internal overflow" -msgstr "ข้อผิดพลาด: ส่วนล้นภายใน (overflow)" +msgstr "ข้อผิดพลาด: มีการล้นหน่วยความจำภายใน" #. o6L8k #: sc/inc/globstr.hrc:243 msgctxt "STR_LONG_ERR_MATRIX_SIZE" msgid "Error: Array or matrix size" -msgstr "" +msgstr "ข้อผิดพลาด: ขนาดของอาร์เรย์หรือเมทริกซ์" #. JXoDE #: sc/inc/globstr.hrc:244 msgctxt "STR_LONG_ERR_CIRC_REF" msgid "Error: Circular reference" -msgstr "ข้อผิดพลาด: การอ้างอิงแบบเวียน" +msgstr "ข้อผิดพลาด: การอ้างอิงวนรอบ" #. ncFnr #: sc/inc/globstr.hrc:245 msgctxt "STR_LONG_ERR_NO_CONV" msgid "Error: Calculation does not converge" -msgstr "ข้อผิดพลาด: การคำนวณไม่ครอบคลุม" +msgstr "ข้อผิดพลาด: การคำนวณไม่ลู่เข้า" #. APCfx #. END error constants and error strings. #: sc/inc/globstr.hrc:248 msgctxt "STR_CELL_FILTER" msgid "Filter" -msgstr "ตัวแปลง" +msgstr "ตัวกรอง" #. si2AU #: sc/inc/globstr.hrc:249 @@ -1389,13 +1394,13 @@ #: sc/inc/globstr.hrc:250 msgctxt "STR_INVALID_EPS" msgid "Invalid increment" -msgstr "ส่วนเพิ่มไม่ถูกต้อง" +msgstr "ความละเอียดของการเพิ่มค่าไม่ถูกต้อง" #. 8tMQd #: sc/inc/globstr.hrc:251 msgctxt "STR_UNDO_TABOP" msgid "Multiple operations" -msgstr "ปฏิบัติการหลายอย่าง" +msgstr "การกระทำหลายอย่าง" #. 4PpzH #: sc/inc/globstr.hrc:252 @@ -1405,9 +1410,9 @@ "AutoFormat could not be created. \n" "Try again using a different name." msgstr "" -"คุณใส่ชื่อไม่ถูกต้อง.\n" -"ไม่สามารถสร้างรูปแบบอัตโนมัติได้ \n" -"ลองใช้ชื่อที่ต่างกันอีกครั้ง" +"คุณป้อนชื่อที่ไม่ถูกต้อง\n" +"จึงไม่สามารถสร้างการจัดรูปแบบอัตโนมัติได้\n" +"กรุณาลองใหม่โดยใช้ชื่ออื่น" #. ZGfyF #: sc/inc/globstr.hrc:253 @@ -1459,6 +1464,9 @@ "a table range of at least\n" "3 × 3 cells must be selected." msgstr "" +"ในการใช้การจัดรูปแบบอัตโนมัติ\n" +"จะต้องเลือกช่วงของตาราง\n" +"ขนาดอย่างน้อย 3 × 3 เซลล์" #. iySox #: sc/inc/globstr.hrc:261 @@ -1470,7 +1478,7 @@ #: sc/inc/globstr.hrc:262 msgctxt "STR_REQUIRED" msgid "(required)" -msgstr "(ต้องการ)" +msgstr "(จำเป็น)" #. Zv4jB #: sc/inc/globstr.hrc:263 @@ -1488,7 +1496,7 @@ #: sc/inc/globstr.hrc:265 msgctxt "STR_QUERY_DELSCENARIO" msgid "Are you sure you want to delete the selected scenario?" -msgstr "คุณแน่ใจหรือไม่ที่จะลบสถานการณ์สมมติที่เลือก?" +msgstr "ยืนยันหรือไม่ว่าคุณต้องการลบสถานการณ์สมมติที่เลือก?" #. dEC3W #: sc/inc/globstr.hrc:266 @@ -1506,133 +1514,133 @@ #: sc/inc/globstr.hrc:268 msgctxt "STR_IMPORT_DBF" msgid "Import dBASE files" -msgstr "" +msgstr "นำเข้าแฟ้ม dBASE" #. uyTFS #: sc/inc/globstr.hrc:269 msgctxt "STR_EXPORT_DBF" msgid "dBASE export" -msgstr "" +msgstr "ส่งออก dBASE" #. CtHUj #: sc/inc/globstr.hrc:270 msgctxt "STR_EXPORT_DIF" msgid "Dif Export" -msgstr "ส่ง Dif ออก" +msgstr "ส่งออก Dif" #. FVf4C #: sc/inc/globstr.hrc:271 msgctxt "STR_IMPORT_DIF" msgid "Dif Import" -msgstr "นำเข้า Dif " +msgstr "นำเข้า Dif" #. ouiCs #: sc/inc/globstr.hrc:272 msgctxt "STR_STYLENAME_STANDARD" msgid "Default" -msgstr "" +msgstr "ปริยาย" #. TG9pD #: sc/inc/globstr.hrc:273 msgctxt "STR_STYLENAME_HEADING" msgid "Heading" -msgstr "" +msgstr "หัวเรื่อง" #. NM7R3 #: sc/inc/globstr.hrc:274 msgctxt "STR_STYLENAME_HEADING_1" msgid "Heading 1" -msgstr "" +msgstr "หัวเรื่อง 1" #. 8XF63 #: sc/inc/globstr.hrc:275 msgctxt "STR_STYLENAME_HEADING_2" msgid "Heading 2" -msgstr "" +msgstr "หัวเรื่อง 2" #. WBuWS #: sc/inc/globstr.hrc:276 msgctxt "STR_STYLENAME_TEXT" msgid "Text" -msgstr "" +msgstr "ข้อความ" #. tMJaD #: sc/inc/globstr.hrc:277 msgctxt "STR_STYLENAME_NOTE" msgid "Note" -msgstr "" +msgstr "บันทึก" #. Df8xB #: sc/inc/globstr.hrc:278 msgctxt "STR_STYLENAME_FOOTNOTE" msgid "Footnote" -msgstr "" +msgstr "เชิงอรรถท้ายหน้า" #. 2hk6H #: sc/inc/globstr.hrc:279 msgctxt "STR_STYLENAME_HYPERLINK" msgid "Hyperlink" -msgstr "" +msgstr "ไฮเพอร์ลิงก์" #. aeksB #: sc/inc/globstr.hrc:280 msgctxt "STR_STYLENAME_STATUS" msgid "Status" -msgstr "" +msgstr "สถานะ" #. pxAhk #: sc/inc/globstr.hrc:281 msgctxt "STR_STYLENAME_GOOD" msgid "Good" -msgstr "" +msgstr "ดี" #. Ebk8F #: sc/inc/globstr.hrc:282 msgctxt "STR_STYLENAME_NEUTRAL" msgid "Neutral" -msgstr "" +msgstr "กลางๆ" #. FdWhD #: sc/inc/globstr.hrc:283 msgctxt "STR_STYLENAME_BAD" msgid "Bad" -msgstr "" +msgstr "แย่" #. t6f8W #: sc/inc/globstr.hrc:284 msgctxt "STR_STYLENAME_WARNING" msgid "Warning" -msgstr "" +msgstr "คำเตือน" #. 99BgJ #: sc/inc/globstr.hrc:285 msgctxt "STR_STYLENAME_ERROR" msgid "Error" -msgstr "" +msgstr "ข้อผิดพลาด" #. yGAVF #: sc/inc/globstr.hrc:286 msgctxt "STR_STYLENAME_ACCENT" msgid "Accent" -msgstr "" +msgstr "เน้น" #. fw24e #: sc/inc/globstr.hrc:287 msgctxt "STR_STYLENAME_ACCENT_1" msgid "Accent 1" -msgstr "" +msgstr "เน้น 1" #. nHhDx #: sc/inc/globstr.hrc:288 msgctxt "STR_STYLENAME_ACCENT_2" msgid "Accent 2" -msgstr "" +msgstr "เน้น 2" #. NsLP7 #: sc/inc/globstr.hrc:289 msgctxt "STR_STYLENAME_ACCENT_3" msgid "Accent 3" -msgstr "" +msgstr "เน้น 3" #. GATGM #: sc/inc/globstr.hrc:290 @@ -1656,13 +1664,13 @@ #: sc/inc/globstr.hrc:293 msgctxt "STR_THESAURUS_NO_STRING" msgid "Thesaurus can only be used in text cells!" -msgstr "ไม่สามารถใช้อรรถาภิธานในช่องข้อความได้!" +msgstr "อรรถาภิธานสามารถใช้ได้กับเซลล์ที่เป็นข้อความเท่านั้น!" #. EMMdQ #: sc/inc/globstr.hrc:294 msgctxt "STR_SPELLING_BEGIN_TAB" msgid "Should the spellcheck be continued at the beginning of the current sheet?" -msgstr "ควรตรวจตัวสะกดต่อที่จุดเริ่มต้นของแผ่นงานปัจจุบันหรือไม่?" +msgstr "ควรตรวจการสะกดคำต่อที่ต้นแผ่นงานปัจจุบันหรือไม่?" #. Qekpw #: sc/inc/globstr.hrc:295 @@ -1672,7 +1680,7 @@ "Please check your installation and install \n" "the desired language if necessary" msgstr "" -"ใช้อรรถาภิธานไม่ได้.\n" +"ไม่มีอรรถาภิธาน\n" "กรุณาตรวจสอบการติดตั้ง\n" "และติดตั้งภาษาที่ต้องการหากจำเป็น" @@ -1680,7 +1688,7 @@ #: sc/inc/globstr.hrc:296 msgctxt "STR_SPELLING_STOP_OK" msgid "The spellcheck of this sheet has been completed." -msgstr "ตรวจตัวสะกดในแผ่นงานนี้เสร็จแล้ว" +msgstr "ตรวจการสะกดคำในแผ่นงานนี้เสร็จแล้ว" #. FjWF9 #: sc/inc/globstr.hrc:297 @@ -1704,13 +1712,13 @@ #: sc/inc/globstr.hrc:300 msgctxt "STR_UNDO_SET_TAB_BG_COLOR" msgid "Color Tab" -msgstr "แท็บสี" +msgstr "กำหนดสีแท็บ" #. 3DXsa #: sc/inc/globstr.hrc:301 msgctxt "STR_UNDO_SET_MULTI_TAB_BG_COLOR" msgid "Color Tabs" -msgstr "แท็บสี" +msgstr "กำหนดสีแท็บหลายแท็บ" #. GZGAm #: sc/inc/globstr.hrc:302 @@ -1728,7 +1736,7 @@ #: sc/inc/globstr.hrc:304 msgctxt "STR_UNDO_APPEND_TAB" msgid "Append sheet" -msgstr "ผนวกแผ่นงาน" +msgstr "เพิ่มแผ่นงานต่อท้าย" #. ziE7i #: sc/inc/globstr.hrc:305 @@ -1740,7 +1748,7 @@ #: sc/inc/globstr.hrc:306 msgctxt "STR_UNDO_SHOWTABS" msgid "Show Sheets" -msgstr "แสดงแผ่นงาน" +msgstr "แสดงแผ่นงานหลายแผ่น" #. RpgBp #: sc/inc/globstr.hrc:307 @@ -1752,37 +1760,37 @@ #: sc/inc/globstr.hrc:308 msgctxt "STR_UNDO_HIDETABS" msgid "Hide sheets" -msgstr "ซ่อนแผ่นงาน" +msgstr "ซ่อนแผ่นงานหลายแผ่น" #. dcXQA #: sc/inc/globstr.hrc:309 msgctxt "STR_UNDO_TAB_RTL" msgid "Flip sheet" -msgstr "Flip sheet" +msgstr "พลิกแผ่นงาน" #. MM449 #: sc/inc/globstr.hrc:310 msgctxt "STR_ABSREFLOST" msgid "The new table contains absolute references to other tables which may be incorrect!" -msgstr "ตารางใหม่มีการอ้างอิงสัมบูรณ์ไปยังตารางอื่นที่ไม่ถูกต้อง!" +msgstr "ตารางใหม่มีการอ้างอิงแบบสัมบูรณ์ไปยังตารางอื่นซึ่งอาจไม่ถูกต้อง!" #. HbvvQ #: sc/inc/globstr.hrc:311 msgctxt "STR_NAMECONFLICT" msgid "Due to identical names, an existing range name in the destination document has been altered!" -msgstr "เนื่องจากชื่อที่กำหนด แจ้งเตือนชื่อของช่วงที่มีอยู่ในเอกสารเป้าหมาย!" +msgstr "เนื่องจากชื่อซ้ำกัน จึงได้เปลี่ยนชื่อของช่วงที่มีอยู่ในเอกสารเป้าหมาย!" #. R4PSM #: sc/inc/globstr.hrc:312 msgctxt "STR_ERR_AUTOFILTER" msgid "AutoFilter not possible" -msgstr "ตัวแปลงอัตโนมัติใช้ไม่ได้" +msgstr "ตัวกรองอัตโนมัติไม่สามารถทำงานได้" #. G4ADH #: sc/inc/globstr.hrc:313 msgctxt "STR_CREATENAME_REPLACE" msgid "Replace existing definition of #?" -msgstr "แทนที่คำนิยามของ # ที่มีอยู่หรือไม่?" +msgstr "จะแทนที่คำนิยามที่มีอยู่ของ # หรือไม่?" #. QCY4T #: sc/inc/globstr.hrc:314 @@ -1806,13 +1814,13 @@ #: sc/inc/globstr.hrc:317 msgctxt "STR_QUERY_DELENTRY" msgid "Do you really want to delete the entry #?" -msgstr "คุณต้องการลบรายการ # หรือไม่?" +msgstr "ยืนยันหรือไม่ว่าคุณต้องการลบรายการ #?" #. dcGSL #: sc/inc/globstr.hrc:318 msgctxt "STR_VOBJ_OBJECT" msgid "Objects/Images" -msgstr "" +msgstr "วัตถุ/รูปภาพ" #. cYXCQ #: sc/inc/globstr.hrc:319 @@ -1824,7 +1832,7 @@ #: sc/inc/globstr.hrc:320 msgctxt "STR_VOBJ_DRAWINGS" msgid "Drawing Objects" -msgstr "วัตถุรูปวาด" +msgstr "วัตถุงานวาด" #. JGftp #: sc/inc/globstr.hrc:321 @@ -1860,13 +1868,13 @@ #: sc/inc/globstr.hrc:326 msgctxt "STR_SCATTR_PAGE_GRID" msgid "Grid" -msgstr "เส้นแนว" +msgstr "กริด" #. Grh6n #: sc/inc/globstr.hrc:327 msgctxt "STR_SCATTR_PAGE_HEADERS" msgid "Row & Column Headers" -msgstr "ส่วนหัวแถวและคอลัมน์" +msgstr "หัวแถวและหัวคอลัมน์" #. opCNb #: sc/inc/globstr.hrc:328 @@ -1890,13 +1898,13 @@ #: sc/inc/globstr.hrc:331 msgctxt "STR_SCATTR_PAGE_FIRSTPAGENO" msgid "First page number" -msgstr "ตัวเลขหน้าแรก" +msgstr "หมายเลขหน้าแรก" #. 98ZSn #: sc/inc/globstr.hrc:332 msgctxt "STR_SCATTR_PAGE_SCALE" msgid "Reduce/enlarge printout" -msgstr "Reduce/enlarge printout" +msgstr "พิมพ์ย่อ/ขยาย" #. CXqDX #: sc/inc/globstr.hrc:333 @@ -1927,7 +1935,7 @@ msgctxt "STR_SCATTR_PAGE_SCALE_PAGES" msgid "One page" msgid_plural "%1 pages" -msgstr[0] "" +msgstr[0] "%1 หน้า" #. CHEgx #: sc/inc/globstr.hrc:338 @@ -1969,7 +1977,7 @@ #: sc/inc/globstr.hrc:344 msgctxt "STR_DOC_INFO" msgid "Doc.Information" -msgstr "DocInformation" +msgstr "Doc.Information" #. BPqDo #: sc/inc/globstr.hrc:345 @@ -1987,7 +1995,7 @@ #: sc/inc/globstr.hrc:347 msgctxt "STR_ON" msgid "on" -msgstr "บน" +msgstr "เมื่อ" #. NqkbD #: sc/inc/globstr.hrc:348 @@ -2002,8 +2010,8 @@ "This file contains queries. The results of these queries were not saved.\n" "Do you want these queries to be repeated?" msgstr "" -"แฟ้มนี้มีคำค้น ไม่ได้บันทึกผลลัพธ์ของคำค้น\n" -"คุณต้องการทำคำค้นซ้ำหรือไม่?" +"แฟ้มนี้มีข้อคำถามอยู่ โดยไม่มีการบันทึกผลลัพธ์ของข้อคำถามเหล่านี้\n" +"คุณต้องการทำข้อคำถามเหล่านี้ซ้ำอีกหรือไม่?" #. HrjKf #: sc/inc/globstr.hrc:350 @@ -2012,32 +2020,32 @@ "Filled cells cannot be shifted\n" "beyond the sheet." msgstr "" -"ไม่สามารถเลื่อนช่องที่เติม\n" -"เกินแผ่นงาน" +"ไม่สามารถเลื่อนเซลล์ที่เติมแล้ว\n" +"เกินขอบเขตแผ่นงาน" #. 9BK9C #: sc/inc/globstr.hrc:351 msgctxt "STR_TABINSERT_ERROR" msgid "The table could not be inserted." -msgstr "ไม่สามารถแทรกตาราง" +msgstr "ไม่สามารถแทรกตารางได้" #. SEwGE #: sc/inc/globstr.hrc:352 msgctxt "STR_TABREMOVE_ERROR" msgid "The sheets could not be deleted." -msgstr "ไม่สามารถลบแผ่นงาน" +msgstr "ไม่สามารถลบแผ่นงานได้" #. SQGAE #: sc/inc/globstr.hrc:353 msgctxt "STR_PASTE_ERROR" msgid "The contents of the clipboard could not be pasted." -msgstr "ไม่สามารถวางเนื้อหาของคลิปบอร์ด" +msgstr "ไม่สามารถวางเนื้อหาจากคลิปบอร์ดได้" #. pBHSD #: sc/inc/globstr.hrc:354 msgctxt "STR_PASTE_FULL" msgid "There is not enough space on the sheet to insert here." -msgstr "มีที่ว่างไม่พอบนแผ่นงานที่จะแทรก" +msgstr "มีที่ว่างไม่พอบนแผ่นงานที่จะแทรกลงที่นี่" #. inbya #: sc/inc/globstr.hrc:355 @@ -2046,14 +2054,14 @@ "The content of the clipboard is bigger than the range selected.\n" "Do you want to insert it anyway?" msgstr "" -"เนื้อหาของคลิปบอร์ดใหญ่กว่าช่วงที่เลือก\n" -"คุณต้องการแทรกมันหรือไม่?" +"เนื้อหาของคลิปบอร์ดใหญ่กว่าช่วงที่เลือกอยู่\n" +"คุณยังคงต้องการแทรกอยู่หรือไม่?" #. 2Afxk #: sc/inc/globstr.hrc:356 msgctxt "STR_ERR_NOREF" msgid "No cell references are found in the selected cells." -msgstr "" +msgstr "ไม่พบการอ้างอิงเซลล์ในเซลล์ที่เลือกอยู่" #. vKDsp #: sc/inc/globstr.hrc:357 @@ -2083,13 +2091,13 @@ #: sc/inc/globstr.hrc:361 msgctxt "STR_PROGRESS_CALCULATING" msgid "calculating" -msgstr "คำนวณ" +msgstr "กำลังคำนวณ" #. EDA4C #: sc/inc/globstr.hrc:362 msgctxt "STR_PROGRESS_SORTING" msgid "sorting" -msgstr "เรียงลำดับ" +msgstr "กำลังเรียงลำดับ" #. yedmq #: sc/inc/globstr.hrc:363 @@ -2110,8 +2118,8 @@ "The maximum number of invalid cells has been exceeded.\n" "Not all invalid cells have been marked." msgstr "" -"เกินจำนวนที่มากที่สุดของช่องที่ไม่ถูกต้อง\n" -"ไม่ทำเครื่องหมายช่องที่ไม่ถูกต้องทั้งหมด" +"พบเซลล์ที่ข้อมูลไม่ถูกต้องเกินจำนวนสูงสุดที่รองรับได้\n" +"จึงไม่ได้ทำเครื่องหมายเซลล์ที่ข้อมูลไม่ถูกต้องครบทุกเซลล์" #. pH5Pf #: sc/inc/globstr.hrc:366 @@ -2123,7 +2131,7 @@ #: sc/inc/globstr.hrc:367 msgctxt "STR_QUICKHELP_REF" msgid "%1 R × %2 C" -msgstr "" +msgstr "%1 ถ × %2 ค" #. NJpDi #: sc/inc/globstr.hrc:368 @@ -2141,56 +2149,56 @@ #: sc/inc/globstr.hrc:370 msgctxt "STR_CHARTTITLE" msgid "Chart Title" -msgstr "" +msgstr "ชื่อแผนภูมิ" #. yyY6k #: sc/inc/globstr.hrc:371 msgctxt "STR_AXISTITLE" msgid "Axis Title" -msgstr "" +msgstr "ชื่อแกน" #. ANABc #. Templates for data pilot tables. #: sc/inc/globstr.hrc:373 msgctxt "STR_PIVOT_STYLE_INNER" msgid "Pivot Table Value" -msgstr "ค่าตารางสรุปข้อมูล" +msgstr "ค่าในตารางสรุปข้อมูล" #. iaSss #: sc/inc/globstr.hrc:374 msgctxt "STR_PIVOT_STYLE_RESULT" msgid "Pivot Table Result" -msgstr "ผลลัพธ์ตารางสรุปข้อมูล" +msgstr "ผลลัพธ์ในตารางสรุปข้อมูล" #. DJhBL #: sc/inc/globstr.hrc:375 msgctxt "STR_PIVOT_STYLE_CATEGORY" msgid "Pivot Table Category" -msgstr "ประเภทตารางสรุปข้อมูล" +msgstr "หมวดในตารางสรุปข้อมูล" #. bTwc9 #: sc/inc/globstr.hrc:376 msgctxt "STR_PIVOT_STYLE_TITLE" msgid "Pivot Table Title" -msgstr "หัวเรื่องตารางสรุปข้อมูล" +msgstr "ชื่อตารางสรุปข้อมูล" #. zuSeA #: sc/inc/globstr.hrc:377 msgctxt "STR_PIVOT_STYLE_FIELDNAME" msgid "Pivot Table Field" -msgstr "เขตข้อมูลของตารางสรุปข้อมูล" +msgstr "เขตข้อมูลในตารางสรุปข้อมูล" #. Spguu #: sc/inc/globstr.hrc:378 msgctxt "STR_PIVOT_STYLE_TOP" msgid "Pivot Table Corner" -msgstr "มุมตารางสรุปข้อมูล" +msgstr "มุมของตารางสรุปข้อมูล" #. GyuCe #: sc/inc/globstr.hrc:379 msgctxt "STR_OPERATION_FILTER" msgid "Filter" -msgstr "ตัวแปลง" +msgstr "กรอง" #. xg5AD #: sc/inc/globstr.hrc:380 @@ -2214,7 +2222,7 @@ #: sc/inc/globstr.hrc:383 msgctxt "STR_IMPORT_REPLACE" msgid "Do you want to replace the contents of #?" -msgstr "คุณต้องการแทนที่เนื้อหา # หรือไม่?" +msgstr "คุณต้องการแทนที่เนื้อหาของ # หรือไม่?" #. DyCp4 #: sc/inc/globstr.hrc:384 @@ -2244,17 +2252,16 @@ #: sc/inc/globstr.hrc:388 msgctxt "STR_CHANGED_CELL" msgid "Cell #1 changed from '#2' to '#3'" -msgstr "ช่อง #1 เปลี่ยนจาก '#2' เป็น '#3'" +msgstr "เซลล์ #1 เปลี่ยนจาก '#2' เป็น '#3'" #. E7fW7 #: sc/inc/globstr.hrc:389 msgctxt "STR_CHANGED_INSERT" msgid "#1 inserted" -msgstr "แทรก #1 " +msgstr "แทรก #1" #. GcX7C #: sc/inc/globstr.hrc:390 -#, fuzzy msgctxt "STR_CHANGED_DELETE" msgid "#1 deleted" msgstr "ลบ #1" @@ -2275,41 +2282,41 @@ "Exit change recording mode?\n" "\n" msgstr "" -"การกระทำนี้จะออกจากโหมดบันทึกการเปลี่ยนแปลง\n" -"ข้อมูลเกี่ยวกับการเปลี่ยนแปลงจะสูญหายไป.\n" +"การกระทำนี้จะออกจากโหมดอัดบันทึกการเปลี่ยนแปลง\n" +"ข้อมูลต่างๆ เกี่ยวกับการเปลี่ยนแปลงจะสูญหายไป\n" "\n" -"ออกจากโหมดบันทึกการเปลี่ยนแปลงหรือไม่?\n" +"จะออกจากโหมดอัดบันทึกการเปลี่ยนแปลงหรือไม่?\n" "\n" #. ooAfe #: sc/inc/globstr.hrc:393 msgctxt "STR_CLOSE_ERROR_LINK" msgid "The document can not be closed while a link is being updated." -msgstr "ไม่สามารถปิดเอกสารขณะกำลังปรับข้อมูลการเชื่อมโยง" +msgstr "ไม่สามารถปิดเอกสารขณะกำลังปรับข้อมูลการเชื่อมโยงได้" #. PJdNn #: sc/inc/globstr.hrc:394 msgctxt "STR_UNDO_RESIZEMATRIX" msgid "Adapt array area" -msgstr "ปรับพื้นที่อาเรย์" +msgstr "ปรับพื้นที่อาร์เรย์" #. rY4eu #: sc/inc/globstr.hrc:395 msgctxt "STR_TIP_RESIZEMATRIX" msgid "Array formula %1 R × %2 C" -msgstr "" +msgstr "สูตรอาร์เรย์ %1 ถ × %2 ค" #. nkxuG #: sc/inc/globstr.hrc:396 msgctxt "STR_UNDO_HANGULHANJA" msgid "Hangul/Hanja Conversion" -msgstr "การแปลง Hangul/Hanja" +msgstr "การแปลงฮันกึล/ฮันจา" #. 9XdEk #: sc/inc/globstr.hrc:397 msgctxt "STR_NAME_INPUT_CELL" msgid "Select Cell" -msgstr "Select Cell" +msgstr "เลือกเซลล์" #. AkoV3 #: sc/inc/globstr.hrc:398 @@ -2327,43 +2334,43 @@ #: sc/inc/globstr.hrc:400 msgctxt "STR_NAME_INPUT_ROW" msgid "Go To Row" -msgstr "Go To Row" +msgstr "ไปที่แถว" #. fF3Qb #: sc/inc/globstr.hrc:401 msgctxt "STR_NAME_INPUT_SHEET" msgid "Go To Sheet" -msgstr "Go To Sheet" +msgstr "ไปที่แผ่นงาน" #. xEAo2 #: sc/inc/globstr.hrc:402 msgctxt "STR_NAME_INPUT_DEFINE" msgid "Define Name for Range" -msgstr "Define Name for Range" +msgstr "กำหนดชื่อของช่วง" #. Jee9b #: sc/inc/globstr.hrc:403 msgctxt "STR_NAME_ERROR_SELECTION" msgid "The selection needs to be rectangular in order to name it." -msgstr "The selection needs to be rectangular in order to name it." +msgstr "การเลือกต้องเป็นพื้นที่สี่เหลี่ยมผืนผ้าเพื่อที่จะตั้งชื่อได้" #. 3AECm #: sc/inc/globstr.hrc:404 msgctxt "STR_NAME_ERROR_NAME" msgid "You must enter a valid reference or type a valid name for the selected range." -msgstr "You must enter a valid reference or type a valid name for the selected range." +msgstr "คุณต้องป้อนการอ้างอิงหรือชื่อที่ถูกต้องสำหรับช่วงที่เลือก" #. UCv9m #: sc/inc/globstr.hrc:405 msgctxt "STR_CHANGED_MOVE_REJECTION_WARNING" msgid "WARNING: This action may have resulted in unintended changes to cell references in formulas." -msgstr "WARNING: This action may have resulted in unintended changes to cell references in formulas." +msgstr "คำเตือน: การกระทำนี้อาจมีผลทำให้การอ้างอิงต่างๆ ในสูตรมีการเปลี่ยนแปลงที่ไม่เป็นไปตามเจตนาได้" #. A7cxX #: sc/inc/globstr.hrc:406 msgctxt "STR_CHANGED_DELETE_REJECTION_WARNING" msgid "WARNING: This action may have resulted in references to the deleted area not being restored." -msgstr "WARNING: This action may have resulted in references to the deleted area not being restored." +msgstr "คำเตือน: การกระทำนี้อาจมีผลทำให้การอ้างอิงต่างๆ ที่อ้างไปยังพื้นที่ที่ถูกลบไม่สามารถกู้คืนได้" #. 7kcLL #: sc/inc/globstr.hrc:407 @@ -2375,13 +2382,13 @@ #: sc/inc/globstr.hrc:408 msgctxt "STR_ERR_DATAPILOT_INPUT" msgid "You cannot change this part of the pivot table." -msgstr "คุณไม่สามารถเปลี่ยนแปลงส่วนนี้ของตารางสรุปข้อมูล" +msgstr "คุณไม่สามารถเปลี่ยนแปลงส่วนนี้ของตารางสรุปข้อมูลได้" #. aqFcw #: sc/inc/globstr.hrc:409 msgctxt "STR_RECALC_MANUAL" msgid "Manual" -msgstr "Manual" +msgstr "ด้วยมือ" #. SEHZ2 #: sc/inc/globstr.hrc:410 @@ -2393,13 +2400,13 @@ #: sc/inc/globstr.hrc:411 msgctxt "STR_ERR_LONG_NESTED_ARRAY" msgid "Nested arrays are not supported." -msgstr "ไม่สนับสนุนอาเรย์ซ้อนในอาเรย์" +msgstr "ไม่รองรับอาร์เรย์ซ้อนในอาร์เรย์" #. uPhvo #: sc/inc/globstr.hrc:412 msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT" msgid "Unsupported inline array content." -msgstr "" +msgstr "พบเนื้อหาที่ไม่รองรับในอาร์เรย์ในบรรทัด" #. n5PAG #: sc/inc/globstr.hrc:413 @@ -2411,7 +2418,7 @@ #: sc/inc/globstr.hrc:414 msgctxt "STR_DOC_UPDATED" msgid "Your spreadsheet has been updated with changes saved by other users." -msgstr "กระดานคำนวณของคุณได้ถูกผู้ใช้อื่นบันทึกการเปลี่ยนแปลงลงไปแล้ว" +msgstr "ตารางคำนวณของคุณมีการเปลี่ยนแปลงจากการบันทึกของผู้ใช้อื่น" #. RzxS3 #: sc/inc/globstr.hrc:415 @@ -2421,9 +2428,9 @@ "\n" "Do you want to continue?" msgstr "" -"กระดานคำนวณจะต้องถูกบันทึกในตอนนี้เพื่อเปิดให้สามารถใช้งานร่วมกันกับผู้ใช้อื่นได้\n" +"จะต้องบันทึกตารางคำนวณเดี๋ยวนี้เพื่อเปิดใช้โหมดใช้งานร่วม\n" "\n" -"ต้องการทำต่อไปหรือไม่?" +"คุณต้องการทำต่อไปหรือไม่?" #. hRFbV #: sc/inc/globstr.hrc:416 @@ -2433,9 +2440,9 @@ "\n" "Do you want to continue?" msgstr "" -"ความขัดแย้งในการควบรวมที่ได้แก้ไขแล้วจะสูญหายไปและสิ่งที่คุณเปลี่ยนแปลงไปในกระดานคำนวณที่ใช้ร่วมกันจะไม่ถูกบันทึก\n" +"ข้อขัดแย้งต่างๆ ของการผสานที่ได้ตัดสินไปแล้วจะสูญหาย และสิ่งที่คุณเปลี่ยนแปลงในตารางคำนวณที่ใช้ร่วมกันนี้ก็จะไม่ถูกบันทึก\n" "\n" -"ต้องการทำต่อไปหรือไม่?" +"คุณต้องการทำต่อไปหรือไม่?" #. 6JJGG #: sc/inc/globstr.hrc:417 @@ -2445,9 +2452,9 @@ "\n" "Do you want to continue?" msgstr "" -"การปิดการทำงานของการใช้งานกระดานคำนวณร่วมกันจะทำขัดขวางผู้ใช้คนอื่นของกระดาณคำนวณที่จะควบรวมงานของพวกเขากลับเข้ามา\n" +"การปิดโหมดใช้ร่วมของตารางคำนวณจะเป็นการขวางผู้ใช้อื่นที่ใช้ตารางคำนวณนี้ร่วมกันอยู่ไม่ให้ผสานงานที่ทำกลับเข้ามาได้\n" "\n" -"ต้องการทำต่อไปหรือไม่?" +"คุณต้องการทำต่อไปหรือไม่?" #. wQu4c #: sc/inc/globstr.hrc:418 @@ -2457,9 +2464,9 @@ "\n" "Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually." msgstr "" -"กระดานคำนวณนี้ไม่อยู่ในโหมดการใช้งานร่วมกันอีกต่อไป\n" +"ตารางคำนวณนี้ไม่ได้อยู่ในโหมดใช้ร่วมแล้ว\n" "\n" -"บ้ันทึกกระดานคำนวณของคุณไปยังไฟล์ต่างหากและควบรวมการเปลี่ยนแปลงของคุณเข้าไปยังกระดานคำนวณที่ใช้ร่วมกันก่อนหน้านี้ด้วยมือ" +"กรุณาบันทึกตารางคำนวณของคุณลงในแฟ้มต่างหาก แล้วผสานการเปลี่ยนแปลงของคุณเข้าในตารางคำนวณที่ใช้ร่วมกันนั้นด้วยมือ" #. Acijp #: sc/inc/globstr.hrc:419 @@ -2469,9 +2476,9 @@ "\n" "Sharing mode of a locked file cannot be disabled. Try again later." msgstr "" -"ไฟล์กระดานคำนวณที่ใช้ร่วมกันนั้นถูกล็อกเนื่องจากกำลังทำการควบรวมการเปลี่ยนแปลงโดยผู้ใช้: '%1'\n" +"แฟ้มตารางคำนวณที่ใช้ร่วมกันนั้นถูกล็อคเนื่องจากอยู่ระหว่างการผสานโดยผู้ใช้: '%1'\n" "\n" -"ไม่สามารถปิดการทำงานโหมดใช้งานร่วมกันของไฟล์ที่ถูกล็อก โปรดลองใหม่ภายหลัง" +"การปิดโหมดใช้ร่วมของแฟ้มที่ถูกล็อคไม่สามารถทำได้ กรุณาลองใหม่ภายหลัง" #. tiq8b #: sc/inc/globstr.hrc:420 @@ -2481,27 +2488,27 @@ "\n" "Try again later to save your changes." msgstr "" -"ไฟล์กระดานคำนวณที่ใช้ร่วมกันนั้นถูกล็อกเนื่องจากกำลังทำการควบรวมการเปลี่ยนแปลงโดยผู้ใช้: '%1'\n" +"แฟ้มตารางคำนวณที่ใช้ร่วมกันนั้นถูกล็อคเนื่องจากอยู่ระหว่างการผสานโดยผู้ใช้: '%1'\n" "\n" -" โปรดลองใหม่ภายหลังเพื่อบันทึกการเปลี่ยนแปลงของคุณ" +"กรุณาลองใหม่ภายหลังเพื่อบันทึกการเปลี่ยนแปลงของคุณ" #. 67jJW #: sc/inc/globstr.hrc:421 msgctxt "STR_UNKNOWN_USER" msgid "Unknown User" -msgstr "ไม่รู้จักผู้ใช้" +msgstr "ผู้ใช้ที่ไม่รู้จัก" #. x3xuD #: sc/inc/globstr.hrc:422 msgctxt "STR_SHAPE_AUTOSHAPE" msgid "AutoShape" -msgstr "" +msgstr "รูปร่างอัตโนมัติ" #. c7YGt #: sc/inc/globstr.hrc:423 msgctxt "STR_SHAPE_RECTANGLE" msgid "Rectangle" -msgstr "สี่เหลี่ยม" +msgstr "สี่เหลี่ยมผืนผ้า" #. 9jDFZ #: sc/inc/globstr.hrc:424 @@ -2553,35 +2560,33 @@ #. iSqdH #: sc/inc/globstr.hrc:432 -#, fuzzy msgctxt "STR_FORM_DROPDOWN" msgid "Drop Down" -msgstr "ปล่อยลง" +msgstr "เมนูทิ้งลง" #. cs76P #: sc/inc/globstr.hrc:433 msgctxt "STR_FORM_SPINNER" msgid "Spinner" -msgstr "" +msgstr "ปุ่มปรับเลข" #. j8Dp2 #: sc/inc/globstr.hrc:434 -#, fuzzy msgctxt "STR_FORM_SCROLLBAR" msgid "Scroll Bar" -msgstr "แถบเลื่อนจอภาพ" +msgstr "แถบเลื่อนหน้าจอ" #. 7iaCJ #: sc/inc/globstr.hrc:435 msgctxt "STR_STYLE_FAMILY_CELL" msgid "Cell Styles" -msgstr "รูปแบบเซลล์" +msgstr "กระบวนแบบเซลล์" #. BFwPp #: sc/inc/globstr.hrc:436 msgctxt "STR_STYLE_FAMILY_PAGE" msgid "Page Styles" -msgstr "ลักษณะหน้า" +msgstr "กระบวนแบบหน้า" #. GJEem #: sc/inc/globstr.hrc:437 @@ -2593,26 +2598,25 @@ #: sc/inc/globstr.hrc:438 msgctxt "STR_OPTIONS_WARN_SEPARATORS" msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values." -msgstr "" +msgstr "เนื่องจากเครื่องหมายคั่นสูตรที่กำหนดไว้ในปัจจุบันขัดแย้งกับโลแคล จึงได้ล้างค่าตั้งเครื่องหมายคั่นสำหรับสูตรเป็นค่าปริยาย" #. QMTkA #: sc/inc/globstr.hrc:439 msgctxt "STR_UNDO_INSERT_CURRENT_DATE" msgid "Insert Current Date" -msgstr "" +msgstr "แทรกวันที่ปัจจุบัน" #. uoa4E #: sc/inc/globstr.hrc:440 msgctxt "STR_UNDO_INSERT_CURRENT_TIME" msgid "Insert Current Time" -msgstr "" +msgstr "แทรกเวลาปัจจุบัน" #. BZMPF #: sc/inc/globstr.hrc:441 -#, fuzzy msgctxt "STR_MANAGE_NAMES" msgid "Manage Names..." -msgstr "ชื่อช่วง" +msgstr "จัดการชื่อ..." #. AFC3z #: sc/inc/globstr.hrc:442 @@ -2624,32 +2628,31 @@ #: sc/inc/globstr.hrc:443 msgctxt "STR_HEADER_SCOPE" msgid "Scope" -msgstr "ขอบข่าย" +msgstr "ขอบเขต" #. VEEep #: sc/inc/globstr.hrc:444 msgctxt "STR_MULTI_SELECT" msgid "(multiple)" -msgstr "" +msgstr "(หลายรายการ)" #. hucnc #: sc/inc/globstr.hrc:445 -#, fuzzy msgctxt "STR_GLOBAL_SCOPE" msgid "Document (Global)" -msgstr "โหมดเอกสาร" +msgstr "เอกสาร (ส่วนกลาง)" #. Jhqkj #: sc/inc/globstr.hrc:446 msgctxt "STR_ERR_NAME_EXISTS" msgid "Invalid name. Already in use for the selected scope." -msgstr "" +msgstr "ชื่อไม่ถูกต้อง เนื่องจากถูกใช้ไปแล้วในขอบเขตที่กำหนด" #. qDNs9 #: sc/inc/globstr.hrc:447 msgctxt "STR_ERR_NAME_INVALID" msgid "Invalid name. Start with a letter, use only letters, numbers and underscore." -msgstr "" +msgstr "ชื่อไม่ถูกต้อง ชื่อต้องขึ้นต้นด้วยตัวอักษร ตามด้วยตัวอักษร ตัวเลข หรือขีดล่าง" #. owW4Y #: sc/inc/globstr.hrc:448 @@ -2659,64 +2662,66 @@ "\n" "Do you want to continue?" msgstr "" +"เอกสารนี้มีการอ้างอิงภายนอกไปยังเอกสารที่ยังไม่บันทึก\n" +"\n" +"คุณต้องการทำต่อไปหรือไม่?" #. dSCFD #: sc/inc/globstr.hrc:449 msgctxt "STR_CLOSE_WITH_UNSAVED_REFS" msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss." -msgstr "" +msgstr "เอกสารนี้ถูกอ้างอิงโดยเอกสารอีกฉบับหนึ่งและยังไม่ได้บันทึก หากปิดโดยไม่บันทึกก็จะทำให้ข้อมูลสูญหายได้" #. uBwWr #: sc/inc/globstr.hrc:450 msgctxt "STR_COND_CONDITION" msgid "Cell value" -msgstr "" +msgstr "ค่าในเซลล์" #. E8yxG #: sc/inc/globstr.hrc:451 msgctxt "STR_COND_COLORSCALE" msgid "ColorScale" -msgstr "" +msgstr "ระดับสี" #. 7eqFv #: sc/inc/globstr.hrc:452 msgctxt "STR_COND_DATABAR" msgid "DataBar" -msgstr "" +msgstr "แท่งข้อมูล" #. eroC7 #: sc/inc/globstr.hrc:453 msgctxt "STR_COND_ICONSET" msgid "IconSet" -msgstr "IconSet" +msgstr "ชุดไอคอน" #. EbSz5 #: sc/inc/globstr.hrc:454 msgctxt "STR_COND_BETWEEN" msgid "is between" -msgstr "" +msgstr "อยู่ระหว่าง" #. VwraP #: sc/inc/globstr.hrc:455 msgctxt "STR_COND_NOTBETWEEN" msgid "is not between" -msgstr "" +msgstr "ไม่ได้อยู่ระหว่าง" #. 35tDp #: sc/inc/globstr.hrc:456 msgctxt "STR_COND_UNIQUE" msgid "is unique" -msgstr "" +msgstr "เป็นค่าไม่ซ้ำ" #. CCscL #: sc/inc/globstr.hrc:457 msgctxt "STR_COND_DUPLICATE" msgid "is duplicate" -msgstr "" +msgstr "เป็นค่าซ้ำ" #. owhPn #: sc/inc/globstr.hrc:458 -#, fuzzy msgctxt "STR_COND_FORMULA" msgid "Formula is" msgstr "สูตรคือ" @@ -2725,171 +2730,169 @@ #: sc/inc/globstr.hrc:459 msgctxt "STR_COND_TOP10" msgid "is in top elements" -msgstr "" +msgstr "อยู่อันดับต้นๆ" #. tR5xA #: sc/inc/globstr.hrc:460 msgctxt "STR_COND_BOTTOM10" msgid "is in bottom elements" -msgstr "" +msgstr "อยู่อันดับท้ายๆ" #. EWAhr #: sc/inc/globstr.hrc:461 msgctxt "STR_COND_TOP_PERCENT" msgid "is in top percent" -msgstr "" +msgstr "อยู่เปอร์เซ็นต์ต้น" #. vRk5n #: sc/inc/globstr.hrc:462 msgctxt "STR_COND_DATE" msgid "Date is" -msgstr "" +msgstr "วันที่คือ" #. mv3Cr #: sc/inc/globstr.hrc:463 msgctxt "STR_COND_BOTTOM_PERCENT" msgid "is in bottom percent" -msgstr "" +msgstr "อยู่เปอร์เซ็นต์ท้าย" #. w5vq3 #: sc/inc/globstr.hrc:464 msgctxt "STR_COND_ABOVE_AVERAGE" msgid "is above average" -msgstr "" +msgstr "สูงกว่าค่าเฉลี่ย" #. 4QM7C #: sc/inc/globstr.hrc:465 msgctxt "STR_COND_BELOW_AVERAGE" msgid "is below average" -msgstr "" +msgstr "ต่ำกว่าค่าเฉลี่ย" #. CZfTg #: sc/inc/globstr.hrc:466 msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE" msgid "is above or equal average" -msgstr "" +msgstr "สูงกว่าหรือเท่ากับค่าเฉลี่ย" #. GmUGP #: sc/inc/globstr.hrc:467 msgctxt "STR_COND_BELOW_EQUAL_AVERAGE" msgid "is below or equal average" -msgstr "" +msgstr "ต่ำกว่าหรือเท่ากับค่าเฉลี่ย" #. 8DgQ9 #: sc/inc/globstr.hrc:468 msgctxt "STR_COND_ERROR" msgid "is an error code" -msgstr "" +msgstr "เป็นรหัสข้อผิดพลาด" #. ifj7i #: sc/inc/globstr.hrc:469 msgctxt "STR_COND_NOERROR" msgid "is not an error code" -msgstr "" +msgstr "ไม่ได้เป็นรหัสข้อผิดพลาด" #. pqqqU #: sc/inc/globstr.hrc:470 msgctxt "STR_COND_BEGINS_WITH" msgid "begins with" -msgstr "" +msgstr "ขึ้นต้นด้วย" #. atMkM #: sc/inc/globstr.hrc:471 msgctxt "STR_COND_ENDS_WITH" msgid "ends with" -msgstr "" +msgstr "ลงท้ายด้วย" #. 96Aos #: sc/inc/globstr.hrc:472 msgctxt "STR_COND_CONTAINS" msgid "contains" -msgstr "" +msgstr "เนื้อหามี" #. X5K9F #: sc/inc/globstr.hrc:473 msgctxt "STR_COND_NOT_CONTAINS" msgid "does not contain" -msgstr "" +msgstr "เนื้อหาไม่มี" #. GvCEB #: sc/inc/globstr.hrc:474 -#, fuzzy msgctxt "STR_COND_TODAY" msgid "today" msgstr "วันนี้" #. ADfRQ #: sc/inc/globstr.hrc:475 -#, fuzzy msgctxt "STR_COND_YESTERDAY" msgid "yesterday" -msgstr "เมื่อวาน," +msgstr "เมื่อวานนี้" #. fTnD2 #: sc/inc/globstr.hrc:476 msgctxt "STR_COND_TOMORROW" msgid "tomorrow" -msgstr "" +msgstr "พรุ่งนี้" #. mvGBE #: sc/inc/globstr.hrc:477 msgctxt "STR_COND_LAST7DAYS" msgid "in the last 7 days" -msgstr "" +msgstr "ภายใน 7 วันก่อน" #. DmaSj #: sc/inc/globstr.hrc:478 msgctxt "STR_COND_THISWEEK" msgid "this week" -msgstr "" +msgstr "สัปดาห์นี้" #. a8Hdp #: sc/inc/globstr.hrc:479 msgctxt "STR_COND_LASTWEEK" msgid "last week" -msgstr "" +msgstr "สัปดาห์ที่แล้ว" #. ykG5k #: sc/inc/globstr.hrc:480 msgctxt "STR_COND_NEXTWEEK" msgid "next week" -msgstr "" +msgstr "สัปดาห์หน้า" #. NCSVV #: sc/inc/globstr.hrc:481 msgctxt "STR_COND_THISMONTH" msgid "this month" -msgstr "" +msgstr "เดือนนี้" #. zEYre #: sc/inc/globstr.hrc:482 msgctxt "STR_COND_LASTMONTH" msgid "last month" -msgstr "" +msgstr "เดือนที่แล้ว" #. ZrGrG #: sc/inc/globstr.hrc:483 msgctxt "STR_COND_NEXTMONTH" msgid "next month" -msgstr "" +msgstr "เดือนหน้า" #. Fczye #: sc/inc/globstr.hrc:484 msgctxt "STR_COND_THISYEAR" msgid "this year" -msgstr "" +msgstr "ปีนี้" #. gQynd #: sc/inc/globstr.hrc:485 msgctxt "STR_COND_LASTYEAR" msgid "last year" -msgstr "" +msgstr "ปีที่แล้ว" #. sdxMh #: sc/inc/globstr.hrc:486 msgctxt "STR_COND_NEXTYEAR" msgid "next year" -msgstr "" +msgstr "ปีหน้า" #. FGxFR #: sc/inc/globstr.hrc:487 @@ -2901,7 +2904,7 @@ #: sc/inc/globstr.hrc:488 msgctxt "STR_ERR_CONDFORMAT_PROTECTED" msgid "Conditional Formats can not be created, deleted or changed in protected sheets." -msgstr "" +msgstr "ไม่สามารถสร้างรูปแบบตามเงื่อนไขได้ เนื่องจากมีการลบหรือเปลี่ยนแปลงในแผ่นงานที่มีการปกป้อง" #. EgDja #: sc/inc/globstr.hrc:489 @@ -2911,6 +2914,9 @@ "\n" " Do you want to edit the existing conditional format?" msgstr "" +"เซลล์ที่เลือกมีการจัดรูปแบบตามเงื่อนไขอยู่ก่อนแล้ว คุณสามารถแก้ไขเงื่อนไขการจัดรูปแบบที่มีอยู่ หรืออาจกำหนดเงื่อนไขใหม่ที่ซ้อนทับกันก็ได้\n" +"\n" +" คุณต้องการแก้ไขเงื่อนไขการจัดรูปแบบที่มีอยู่หรือไม่?" #. cisuZ #: sc/inc/globstr.hrc:490 @@ -2920,6 +2926,9 @@ "\n" "Do you want to recalculate all formula cells in this document now?" msgstr "" +"เอกสารนี้ถูกบันทึกครั้งล่าสุดโดยแอปพลิเคชันอื่นที่ไม่ใช่ %PRODUCTNAME เซลล์สูตรบางเซลล์อาจให้ผลลัพธ์ที่ต่างกันเมื่อคำนวณใหม่\n" +"\n" +"คุณต้องการคำนวณสูตรในเซลล์ต่างๆ ของเอกสารนี้ทั้งหมดใหม่เดี๋ยวนี้เลยหรือไม่?" #. rD6BE #: sc/inc/globstr.hrc:491 @@ -2929,12 +2938,15 @@ "\n" "Do you want to recalculate all formula cells now?" msgstr "" +"เอกสารนี้ถูกบันทึกในรูปแบบแฟ้ม Excel (.xlsx) เซลล์สูตรบางเซลล์อาจให้ผลลัพธ์ที่ต่างกันเมื่อคำนวณใหม่\n" +"\n" +"คุณต้องการคำนวณสูตรในเซลล์ต่างๆ ทั้งหมดใหม่เดี๋ยวนี้เลยหรือไม่?" #. YgjzK #: sc/inc/globstr.hrc:492 msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE" msgid "You cannot insert or delete cells when the affected range intersects with pivot table." -msgstr "" +msgstr "คุณไม่สามารถแทรกหรือลบเซลล์ได้ถ้ามีช่วงที่ได้รับผลกระทบตัดกับตารางสรุปข้อมูล" #. FVE5v #: sc/inc/globstr.hrc:493 @@ -2980,31 +2992,27 @@ #. xtZNy #: sc/inc/globstr.hrc:500 -#, fuzzy msgctxt "STR_INVALIDVAL" msgid "Invalid target value." msgstr "ค่าเป้าหมายไม่ถูกต้อง" #. qdJmG #: sc/inc/globstr.hrc:501 -#, fuzzy msgctxt "STR_INVALIDVAR" msgid "Undefined name for variable cell." -msgstr "ไม่ได้กำหนดชื่อช่องที่เป็นตัวแปร" +msgstr "ชื่อเซลล์ตัวแปรไม่เป็นไปตามข้อกำหนด" #. vvxwu #: sc/inc/globstr.hrc:502 -#, fuzzy msgctxt "STR_INVALIDFORM" msgid "Undefined name as formula cell." -msgstr "ไม่ได้กำหนดชื่อเซลล์ที่เป็นสูตร" +msgstr "ชื่อเซลล์สูตรไม่เป็นไปตามข้อกำหนด" #. F2Piu #: sc/inc/globstr.hrc:503 -#, fuzzy msgctxt "STR_NOFORMULA" msgid "Formula cell must contain a formula." -msgstr "ช่องต้องมีสูตร" +msgstr "เซลล์สูตรต้องมีสูตร" #. TAUZn #: sc/inc/globstr.hrc:504 @@ -3034,51 +3042,49 @@ #: sc/inc/globstr.hrc:507 msgctxt "STR_COPYLIST" msgid "Copy List" -msgstr "คัดลอกรายการ" +msgstr "คัดลอกรายชื่อ" #. BsYEp #: sc/inc/globstr.hrc:508 msgctxt "STR_COPYFROM" msgid "List from" -msgstr "รายการจาก" +msgstr "รายชื่อจาก" #. wxjFd #: sc/inc/globstr.hrc:509 msgctxt "STR_COPYERR" msgid "Cells without text have been ignored." -msgstr "ช่องไม่มีข้อความที่ละเว้น" +msgstr "จะไม่สนใจเซลล์ที่ไม่มีข้อความ" #. VFyBY #: sc/inc/globstr.hrc:510 msgctxt "STR_PRINT_PREVIEW_NODATA" msgid "No Data" -msgstr "" +msgstr "ไม่มีข้อมูล" #. he7Lf #: sc/inc/globstr.hrc:511 msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE" msgid "Print Range Empty" -msgstr "" +msgstr "ช่วงการพิมพ์ว่างเปล่า" #. 3GHaw #: sc/inc/globstr.hrc:512 -#, fuzzy msgctxt "STR_UNDO_CONDFORMAT" msgid "Conditional Format" msgstr "จัดรูปแบบตามเงื่อนไข" #. RJBPt #: sc/inc/globstr.hrc:513 -#, fuzzy msgctxt "STR_UNDO_CONDFORMAT_LIST" msgid "Conditional Formats" -msgstr "จัดรูปแบบตามเงื่อนไข" +msgstr "จัดรูปแบบตามเงื่อนไขหลายแห่ง" #. G5NhD #: sc/inc/globstr.hrc:514 msgctxt "STR_UNDO_FORMULA_TO_VALUE" msgid "Convert Formula To Value" -msgstr "" +msgstr "แปลงสูตรเป็นค่า" #. dsjqi #: sc/inc/globstr.hrc:515 @@ -3090,19 +3096,19 @@ #: sc/inc/globstr.hrc:516 msgctxt "STR_ENTER_VALUE" msgid "Enter a value!" -msgstr "" +msgstr "ป้อนค่า!" #. p6znj #: sc/inc/globstr.hrc:517 msgctxt "STR_TABLE_COUNT" msgid "Sheet %1 of %2" -msgstr "" +msgstr "แผ่นงาน %1 จาก %2" #. pWcDK #: sc/inc/globstr.hrc:518 msgctxt "STR_FUNCTIONS_FOUND" msgid "%1 and %2 more" -msgstr "" +msgstr "%1 และอีก %2 ฟังก์ชัน" #. X3uUX #: sc/inc/globstr.hrc:519 @@ -3112,7 +3118,6 @@ #. Ekqp8 #: sc/inc/globstr.hrc:520 -#, fuzzy msgctxt "STR_NUMBER" msgid "Number" msgstr "ตัวเลข" @@ -3149,10 +3154,9 @@ #. DGyo9 #: sc/inc/globstr.hrc:526 -#, fuzzy msgctxt "STR_FRACTION" msgid "Fraction" -msgstr "ฟังก์ชัน" +msgstr "เศษส่วน" #. AftLk #: sc/inc/globstr.hrc:527 @@ -3162,7 +3166,6 @@ #. HBUym #: sc/inc/globstr.hrc:528 -#, fuzzy msgctxt "STR_TEXT" msgid "Text" msgstr "ข้อความ" @@ -3177,115 +3180,115 @@ #: sc/inc/globstr.hrc:530 msgctxt "STR_ERR_NAME_INVALID_CELL_REF" msgid "Invalid name. Reference to a cell, or a range of cells not allowed." -msgstr "" +msgstr "ชื่อไม่ถูกต้อง ไม่อนุญาตให้ใช้การอ้างอิงไปยังเซลล์หรือช่วงของเซลล์" #. qqAQA #: sc/inc/globstr.hrc:531 msgctxt "STR_ERR_LONG_LINK_FORMULA_NEEDING_CHECK" msgid "External content disabled." -msgstr "" +msgstr "เนื้อหาภายนอกถูกปิดใช้งาน" #. RFrAD #: sc/inc/globstr.hrc:532 msgctxt "STR_TEXTORIENTANGLE" msgid "Text orientation angle" -msgstr "" +msgstr "มุมของแนววางข้อความ" #. EwD3A #: sc/inc/globstr.hrc:533 msgctxt "STR_SHRINKTOFITCELL_ON" msgid "Shrink to fit cell: On" -msgstr "" +msgstr "ลดขนาดให้พอดีกับเซลล์: เปิด" #. smuAM #: sc/inc/globstr.hrc:534 msgctxt "STR_SHRINKTOFITCELL_OFF" msgid "Shrink to fit cell: Off" -msgstr "" +msgstr "ลดขนาดให้พอดีกับเซลล์: ปิด" #. QxyGF #: sc/inc/globstr.hrc:535 msgctxt "STR_VERTICALSTACKCELL_ON" msgid "Vertically stacked: On" -msgstr "" +msgstr "ซ้อนแนวตั้ง: เปิด" #. 2x976 #: sc/inc/globstr.hrc:536 msgctxt "STR_VERTICALSTACKCELL_OFF" msgid "Vertically stacked: Off" -msgstr "" +msgstr "ซ้อนแนวตั้ง: ปิด" #. uxnQA #: sc/inc/globstr.hrc:537 msgctxt "STR_LINEBREAKCELL_ON" msgid "Wrap text automatically: On" -msgstr "" +msgstr "ตัดบรรทัดข้อความอัตโนมัติ: เปิด" #. tPYPJ #: sc/inc/globstr.hrc:538 msgctxt "STR_LINEBREAKCELL_OFF" msgid "Wrap text automatically: Off" -msgstr "" +msgstr "ตัดบรรทัดข้อความอัตโนมัติ: ปิด" #. LVJeJ #: sc/inc/globstr.hrc:539 msgctxt "STR_HYPHENATECELL_ON" msgid "Hyphenate: On" -msgstr "" +msgstr "แทรกยัติภังค์: เปิด" #. kXiLH #: sc/inc/globstr.hrc:540 msgctxt "STR_HYPHENATECELL_OFF" msgid "Hyphenate: Off" -msgstr "" +msgstr "แทรกยัติภังค์: ปิด" #. 5Vr2B #: sc/inc/globstr.hrc:541 msgctxt "STR_INDENTCELL" msgid "Indent: " -msgstr "" +msgstr "ระยะร่น: " #. HWAmv #: sc/inc/globstr.hrc:542 msgctxt "STR_UNDO_INSERT_SPARKLINE" msgid "Insert Sparkline Group" -msgstr "" +msgstr "แทรกกลุ่มเส้นประกายไฟ" #. LiBMo #: sc/inc/globstr.hrc:543 msgctxt "STR_UNDO_DELETE_SPARKLINE" msgid "Delete Sparkline" -msgstr "" +msgstr "ลบเส้นประกายไฟ" #. f2V6A #: sc/inc/globstr.hrc:544 msgctxt "STR_UNDO_DELETE_SPARKLINE_GROUP" msgid "Delete Sparkline Group" -msgstr "" +msgstr "ลบกลุ่มเส้นประกายไฟ" #. 6sxnX #: sc/inc/globstr.hrc:545 msgctxt "STR_UNDO_EDIT_SPARKLINE_GROUP" msgid "Edit Sparkline Group" -msgstr "" +msgstr "แก้ไขกลุ่มเส้นประกายไฟ" #. CBBMB #: sc/inc/globstr.hrc:546 msgctxt "STR_UNDO_GROUP_SPARKLINES" msgid "Group Sparklines" -msgstr "" +msgstr "จับกลุ่มเส้นประกายไฟ" #. vv2eo #: sc/inc/globstr.hrc:547 msgctxt "STR_UNDO_UNGROUP_SPARKLINES" msgid "Ungroup Sparklines" -msgstr "" +msgstr "แยกกลุ่มเส้นประกายไฟ" #. ux3mX #: sc/inc/globstr.hrc:548 msgctxt "STR_UNDO_EDIT_SPARKLINE" msgid "Edit Sparkline" -msgstr "" +msgstr "แก้ไขเส้นประกายไฟ" #. dB8cp #: sc/inc/pvfundlg.hrc:28 @@ -3297,44 +3300,43 @@ #: sc/inc/pvfundlg.hrc:29 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Count" -msgstr "นับ" +msgstr "นับจำนวน" #. T46iU #: sc/inc/pvfundlg.hrc:30 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Average" -msgstr "เฉลี่ย" +msgstr "ค่าเฉลี่ย" #. 7VaLh #: sc/inc/pvfundlg.hrc:31 -#, fuzzy msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Median" -msgstr "สื่อ" +msgstr "มัธยฐาน" #. h7Nr4 #: sc/inc/pvfundlg.hrc:32 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Max" -msgstr "มากสุด" +msgstr "ค่ามากสุด" #. GMhuR #: sc/inc/pvfundlg.hrc:33 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Min" -msgstr "น้อยสุด" +msgstr "ค่าน้อยสุด" #. Feqkk #: sc/inc/pvfundlg.hrc:34 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Product" -msgstr "ผลิตภัณฑ์" +msgstr "ผลคูณ" #. D7AtV #: sc/inc/pvfundlg.hrc:35 msgctxt "SCSTR_DPFUNCLISTBOX" msgid "Count (Numbers only)" -msgstr "นับ (ตัวเลขเท่านั้น)" +msgstr "นับจำนวน (ตัวเลขเท่านั้น)" #. q5wsn #: sc/inc/pvfundlg.hrc:36 @@ -3363,113 +3365,97 @@ #. X2yJh #. ERRORS ----------------------------------------------------- #: sc/inc/scerrors.hrc:30 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Impossible to connect to the file." -msgstr "ติดต่อกับแฟ้มไม่ได้" +msgstr "เป็นไปไม่ได้ที่จะเชื่อมต่อกับแฟ้มนี้" #. FNkxg #: sc/inc/scerrors.hrc:32 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "File could not be opened." msgstr "ไม่สามารถเปิดแฟ้มได้" #. NPhvg #: sc/inc/scerrors.hrc:34 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "An unknown error has occurred." -msgstr "เกิดความผิดพลาดที่ไม่รู้จัก" +msgstr "เกิดข้อผิดพลาดไม่ทราบสาเหตุ" #. EbDz9 #: sc/inc/scerrors.hrc:36 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Not enough memory while importing." msgstr "หน่วยความจำไม่พอขณะนำเข้า" #. GdkKn #: sc/inc/scerrors.hrc:38 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Unknown Lotus1-2-3 file format." -msgstr "ไม่รู้จักรูปแบบแฟ้ม Lotus1-2-3 " +msgstr "พบรูปแบบแฟ้ม Lotus1-2-3 ที่ไม่รู้จัก" #. psxcQ #: sc/inc/scerrors.hrc:40 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Error in file structure while importing." msgstr "ข้อผิดพลาดในโครงสร้างแฟ้มขณะนำเข้า" #. NmXtC #: sc/inc/scerrors.hrc:42 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "There is no filter available for this file type." -msgstr "ไม่มีตัวแปลงที่ใช้ได้สำหรับชนิดแฟ้มนี้" +msgstr "ไม่มีตัวกรองที่ใช้ได้สำหรับแฟ้มชนิดนี้" #. CZABZ #: sc/inc/scerrors.hrc:44 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Unknown or unsupported Excel file format." -msgstr "ไม่รู้จักหรือไม่สนับสนุนรูปแบบแฟ้ม Excel " +msgstr "พบรูปแบบแฟ้ม Excel ที่ไม่รู้จักหรือไม่รองรับ" #. SyADN #: sc/inc/scerrors.hrc:46 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Excel file format not yet implemented." msgstr "ยังใช้งานรูปแบบแฟ้ม Excel นี้ไม่ได้" #. vhTKu #: sc/inc/scerrors.hrc:48 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "This file is password-protected." msgstr "แฟ้มนี้ถูกปกป้องโดยรหัสผ่าน" #. Ksstd #: sc/inc/scerrors.hrc:50 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Internal import error." -msgstr "นำเข้าภายในผิดพลาด" +msgstr "เกิดข้อผิดพลาดภายในของการนำเข้า" #. LAD3q #: sc/inc/scerrors.hrc:52 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "The file contains data after row 8192 and therefore can not be read." -msgstr "แฟ้มมีข้อมูลหลังแถว 8192 และเนื่องจากไม่สามารถอ่านได้" +msgstr "แฟ้มมีข้อมูลหลังจากแถว 8192 จึงไม่สามารถอ่านได้" #. sRW9a #: sc/inc/scerrors.hrc:54 sc/inc/scerrors.hrc:102 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Format error discovered in the file in sub-document $(ARG1) at $(ARG2)(row,col)." -msgstr "Format error discovered in the file in sub-document $(ARG1) at $(ARG2)(row,col)" +msgstr "พบรูปแบบผิดพลาดในแฟ้มของเอกสารย่อย $(ARG1) ที่ $(ARG2)(แถว,คอลัมน์)" #. NzaA9 #: sc/inc/scerrors.hrc:56 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "File format error found at $(ARG1)(row,col)." -msgstr "File format error found at $(ARG1)(row,col)" +msgstr "พบรูปแบบผิดพลาดที่ $(ARG1)(แถว,คอลัมน์)" #. gYKQj #. Export ---------------------------------------------------- #: sc/inc/scerrors.hrc:60 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Connection to the file could not be established." -msgstr "ไม่สามารถสร้างการติดต่อกับแฟ้มได้" +msgstr "ไม่สามารถสร้างการเชื่อมต่อกับแฟ้มได้" #. BeyFY #: sc/inc/scerrors.hrc:62 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Data could not be written." msgstr "ไม่สามารถเขียนข้อมูลได้" @@ -3482,46 +3468,40 @@ #. amBdN #: sc/inc/scerrors.hrc:66 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Cell $(ARG1) contains characters that are not representable in the selected target character set \"$(ARG2)\"." -msgstr "Cell $(ARG1) contains characters that are not representable in the selected target character set \"$(ARG2)\"." +msgstr "เซลล์ $(ARG1) มีอักขระที่ไม่สามารถใช้รหัสแทนด้วยชุดอักขระเป้าหมาย \"$(ARG2)\" ได้" #. 9r2od #: sc/inc/scerrors.hrc:68 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Cell $(ARG1) contains a string that is longer in the selected target character set \"$(ARG2)\" than the given field width." -msgstr "Cell $(ARG1) contains a string that is longer in the selected target character set \"$(ARG2)\" than the given field width." +msgstr "เซลล์ $(ARG1) มีสายอักขระที่เมื่อแทนด้วยชุดอักขระเป้าหมาย \"$(ARG2)\" ที่เลือกแล้ว จะมีความยาวเกินขนาดของเขตข้อมูลที่กำหนด" #. rseoe #. WARNINGS --------------------------------------------------- #: sc/inc/scerrors.hrc:72 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Only the active sheet was saved." -msgstr "บันทึกแผ่นงานที่ใช้งานอยู่อย่างเดียว" +msgstr "จะบันทึกเฉพาะแผ่นงานที่ใช้งานอยู่เท่านั้น" #. uCJvz #: sc/inc/scerrors.hrc:74 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "The maximum number of rows has been exceeded. Excess rows were not imported!" -msgstr "เกินจำนวนแถวที่มากที่สุด ไม่นำเข้าแถวที่เกิน!" +msgstr "จำนวนแถวเกินจำนวนที่มากที่สุดที่รองรับได้ จะไม่นำเข้าแถวที่เกิน!" #. nvQMF #: sc/inc/scerrors.hrc:76 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "The data could not be loaded completely because the maximum number of rows per sheet was exceeded." -msgstr "The data could not be loaded completely because the maximum number of rows per sheet was exceeded.The data could not be loaded completely because the maximum number of rows per sheet was exceeded." +msgstr "ไม่สามารถโหลดข้อมูลได้ครบถ้วน เนื่องจากจำนวนแถวต่อแผ่นงานเกินจำนวนสูงสุดที่รองรับได้" #. gCUj2 #: sc/inc/scerrors.hrc:78 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "The data could not be loaded completely because the maximum number of columns per sheet was exceeded." -msgstr "The data could not be loaded completely because the maximum number of columns per sheet was exceeded.The data could not be loaded completely because the maximum number of columns per sheet was exceeded." +msgstr "ไม่สามารถโหลดข้อมูลได้ครบถ้วน เนื่องจากจำนวนคอลัมน์ต่อแผ่นงานเกินจำนวนสูงสุดที่รองรับได้" #. GcFDP #: sc/inc/scerrors.hrc:80 @@ -3531,89 +3511,82 @@ "\n" "Please be warned that re-saving this document will permanently delete those sheets that have not been loaded!" msgstr "" +"ไม่ได้โหลดแผ่นงานครบทุกแผ่น เนื่องจากจำนวนแผ่นงานเกินจำนวนสูงสุดที่รองรับได้\n" +"\n" +"พึงระวังว่าการบันทึกเอกสารนี้ซ้ำจะเป็นการลบแผ่นงานทั้งหมดที่ยังไม่ได้โหลดนั้นทิ้งอย่างถาวร!" #. rEAFX #: sc/inc/scerrors.hrc:82 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "The data could not be loaded completely because the maximum number of characters per cell was exceeded." -msgstr "The data could not be loaded completely because the maximum number of rows per sheet was exceeded.The data could not be loaded completely because the maximum number of rows per sheet was exceeded." +msgstr "ไม่สามารถโหลดข้อมูลได้ครบถ้วน เนื่องจากจำนวนอักขระต่อเซลล์เกินจำนวนสูงสุดที่รองรับได้" #. He2Ho #: sc/inc/scerrors.hrc:84 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Corresponding FM3-File could not be opened." -msgstr "ไม่สามารถเปิดแฟ้ม FM3-ได้" +msgstr "ไม่สามารถเปิดแฟ้ม FM3 ที่เกี่ยวเนื่องได้" #. CfYgQ #: sc/inc/scerrors.hrc:86 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Error in file structure of corresponding FM3-File." -msgstr "ข้อผิดพลาดในโครงสร้างแฟ้มของแฟ้ม FM3-" +msgstr "พบโครงสร้างที่ผิดพลาดในแฟ้ม FM3 ที่เกี่ยวเนื่อง" #. AoqGL #: sc/inc/scerrors.hrc:88 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Document too complex for automatic calculation. Press F9 to recalculate." -msgstr "เอกสารซับซ้อนเกินไปที่จะคำนวณอัตโนมัติ. กดปุ่ม F9 เพื่อคำนวณใหม่" +msgstr "เอกสารซับซ้อนเกินกว่าจะคำนวณโดยอัตโนมัติ กรุณากดปุ่ม F9 เพื่อคำนวณใหม่" #. ZkvB7 #: sc/inc/scerrors.hrc:90 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "" "The document contains more rows than supported in the selected format.\n" "Additional rows were not saved." msgstr "" -"เอกสารมีแถวมากกว่าที่สนับสนุนในรูปแบบที่เลือก.\n" -"ไม่ได้บันทึกแถวที่เพิ่มมา" +"เอกสารมีจำนวนแถวเกินกว่าที่รองรับสำหรับรูปแบบที่เลือก\n" +"จึงไม่มีการบันทึกแถวที่เกินนั้น" #. aPEqu #: sc/inc/scerrors.hrc:92 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "" "The document contains more columns than supported in the selected format.\n" "Additional columns were not saved." msgstr "" -"เอกสารมีแถวมากกว่าที่สนับสนุนในรูปแบบที่เลือก.\n" -"ไม่ได้บันทึกแถวที่เพิ่มมา" +"เอกสารมีจำนวนคอลัมน์เกินกว่าที่รองรับสำหรับรูปแบบที่เลือก\n" +"จึงไม่มีการบันทึกคอลัมน์ที่เกินนั้น" #. xzMQY #: sc/inc/scerrors.hrc:94 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "" "The document contains more sheets than supported in the selected format.\n" "Additional sheets were not saved." msgstr "" -"เอกสารมีแถวมากกว่าที่สนับสนุนในรูปแบบที่เลือก.\n" -"ไม่ได้บันทึกแถวที่เพิ่มมา" +"เอกสารมีจำนวนแผ่นงานเกินกว่าที่รองรับสำหรับรูปแบบที่เลือก\n" +"จึงไม่มีการบันทึกแผ่นงานที่เกินนั้น" #. UbTaD #: sc/inc/scerrors.hrc:96 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "" "The document contains information not recognized by this program version.\n" "Resaving the document will delete this information!" msgstr "" -"เอกสารมีข้อมูลที่ไม่ได้จดจำด้วยโปรแกรมรุ่นนี้.\n" -"การบันทึกเอกสารอีกครั้งจะลบข้อมูลนี้!" +"เอกสารมีข้อมูลที่ไม่มีการรับรู้โดยโปรแกรมรุ่นนี้\n" +"การบันทึกเอกสารนี้ซ้ำจะเป็นการลบข้อมูลดังกล่าว!" #. Bxz6s #: sc/inc/scerrors.hrc:98 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Not all cell contents could be saved in the specified format." -msgstr "ไม่สามารถบันทึกเนื้อหาช่องบางช่องในรูปแบบเฉพาะ" +msgstr "ไม่สามารถบันทึกเนื้อหาของเซลล์ได้ทั้งหมดในรูปแบบที่ระบุ" #. BzPnQ #: sc/inc/scerrors.hrc:100 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "" "The following characters could not be converted to the selected character set\n" @@ -3621,23 +3594,22 @@ "\n" "$(ARG1)" msgstr "" -"ไม่สามารถแปลงตัวอักษรต่อไปนี้เป็นชุดตัวอักษรที่เลือกได้\n" -"และถูกเขียนเป็น Ӓ ตัวแทน:\n" +"อักขระต่อไปนี้ไม่สามารถแปลงเป็นชุดอักขระที่เลือกได้\n" +"และถูกเขียนเป็นอักขระตัวแทน Ӓ แทน:\n" "\n" "$(ARG1)" #. h2693 #: sc/inc/scerrors.hrc:104 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Not all attributes could be read." -msgstr "ไม่สามารถอ่านคุณลักษณะทั้งหมดได้" +msgstr "ไม่สามารถอ่านคุณลักษณะได้ทั้งหมด" #. tCBGH #: sc/inc/scfuncs.hrc:38 msgctxt "SC_OPCODE_DB_COUNT" msgid "Counts the cells of a data range whose contents match the search criteria." -msgstr "นับช่องของช่วงข้อมูลที่เนื้อหาเข้ากับเกณฑ์ในการค้นหา" +msgstr "นับจำนวนเซลล์ในช่วงข้อมูลที่มีเนื้อหาตรงกับเกณฑ์การค้นหา" #. aTVmu #: sc/inc/scfuncs.hrc:39 @@ -3649,7 +3621,7 @@ #: sc/inc/scfuncs.hrc:40 msgctxt "SC_OPCODE_DB_COUNT" msgid "The range of cells containing data." -msgstr "ช่วงของช่องมีข้อมูล" +msgstr "ช่วงของเซลล์ที่เก็บข้อมูล" #. uA67X #: sc/inc/scfuncs.hrc:41 @@ -3665,23 +3637,21 @@ #. 8Ervr #: sc/inc/scfuncs.hrc:43 -#, fuzzy msgctxt "SC_OPCODE_DB_COUNT" msgid "Search criteria" -msgstr "เกณฑ์ในการค้นหา" +msgstr "เกณฑ์การค้นหา" #. wPWY7 #: sc/inc/scfuncs.hrc:44 -#, fuzzy msgctxt "SC_OPCODE_DB_COUNT" msgid "Defines the cell range containing the search criteria." -msgstr "กำหนดช่วงของช่องมีเกณฑ์ในการค้นหา" +msgstr "กำหนดช่วงของเซลล์ที่บรรจุเกณฑ์การค้นหา" #. DFDyC #: sc/inc/scfuncs.hrc:50 msgctxt "SC_OPCODE_DB_COUNT_2" msgid "Counts all non-blank cells of a data range where the content corresponds to the search criteria." -msgstr "นับช่องที่ไม่เป็นช่องว่างทั้งหมดของช่วงข้อมูลที่เนื้อหาตรงกับเกณฑ์ในการค้นหา" +msgstr "นับจำนวนเซลล์ที่ไม่ว่างเปล่าทั้งหมดในช่วงข้อมูลที่มีเนื้อหาตรงกับเกณฑ์การค้นหา" #. Mcdmw #: sc/inc/scfuncs.hrc:51 @@ -3693,7 +3663,7 @@ #: sc/inc/scfuncs.hrc:52 msgctxt "SC_OPCODE_DB_COUNT_2" msgid "The range of cells containing data." -msgstr "ช่วงของช่องมีข้อมูล" +msgstr "ช่วงของเซลล์ที่เก็บข้อมูล" #. tSCCy #: sc/inc/scfuncs.hrc:53 @@ -3717,13 +3687,13 @@ #: sc/inc/scfuncs.hrc:56 msgctxt "SC_OPCODE_DB_COUNT_2" msgid "Defines the cell range containing the search criteria." -msgstr "กำหนดช่วงของเซลล์ที่มีเกณฑ์การค้นหา" +msgstr "กำหนดช่วงของเซลล์ที่บรรจุเกณฑ์การค้นหา" #. qk8Wr #: sc/inc/scfuncs.hrc:62 msgctxt "SC_OPCODE_DB_AVERAGE" msgid "Returns the average value of all the cells of a data range whose contents match the search criteria." -msgstr "ส่งกลับค่าเฉลี่ยของช่องของช่วงข้อมูลทั้งหมดของเนื้อหาที่เข้ากับเกณฑ์การค้นหา" +msgstr "หาค่าเฉลี่ยของเซลล์ทั้งหมดในช่วงข้อมูลที่มีเนื้อหาตรงกับเกณฑ์การค้นหา" #. GnTLE #: sc/inc/scfuncs.hrc:63 @@ -3735,7 +3705,7 @@ #: sc/inc/scfuncs.hrc:64 msgctxt "SC_OPCODE_DB_AVERAGE" msgid "The range of cells containing data." -msgstr "ช่วงของช่องมีข้อมูล" +msgstr "ช่วงของเซลล์ที่เก็บข้อมูล" #. YYexB #: sc/inc/scfuncs.hrc:65 @@ -3759,13 +3729,13 @@ #: sc/inc/scfuncs.hrc:68 msgctxt "SC_OPCODE_DB_AVERAGE" msgid "Defines the cell range containing the search criteria." -msgstr "กำหนดช่วงช่องมีเกณฑ์การค้นหา" +msgstr "กำหนดช่วงของเซลล์ที่บรรจุเกณฑ์การค้นหา" #. GTs4S #: sc/inc/scfuncs.hrc:74 msgctxt "SC_OPCODE_DB_GET" msgid "Defines the contents of the cell of a data range which matches the search criteria." -msgstr "กำหนดเนื้อหาของช่องของช่วงข้อมูลที่ตรงกับเกณฑ์การค้นหา" +msgstr "กำหนดเนื้อหาของเซลล์ในช่วงข้อมูลที่ตรงกับเกณฑ์การค้นหา" #. 5mxLQ #: sc/inc/scfuncs.hrc:75 @@ -3777,7 +3747,7 @@ #: sc/inc/scfuncs.hrc:76 msgctxt "SC_OPCODE_DB_GET" msgid "The range of cells containing data." -msgstr "ช่วงของช่องมีข้อมูล" +msgstr "ช่วงของเซลล์ที่เก็บข้อมูล" #. TiuQb #: sc/inc/scfuncs.hrc:77 @@ -3801,13 +3771,13 @@ #: sc/inc/scfuncs.hrc:80 msgctxt "SC_OPCODE_DB_GET" msgid "Defines the cell range containing the search criteria." -msgstr "กำหนดช่วงช่องมีเกณฑ์การค้นหา" +msgstr "กำหนดช่วงของเซลล์ที่บรรจุเกณฑ์การค้นหา" #. fQPHB #: sc/inc/scfuncs.hrc:86 msgctxt "SC_OPCODE_DB_MAX" msgid "Returns the maximum value from all of the cells of a data range which correspond to the search criteria." -msgstr "ส่งกลับค่าที่มากที่สุดจากช่องทั้งหมดของช่วงข้อมูลที่ตรงกับเกณฑ์การค้นหา" +msgstr "หาค่าสูงสุดของเซลล์ทั้งหมดในช่วงข้อมูลที่มีเนื้อหาตรงกับเกณฑ์การค้นหา" #. bQKFQ #: sc/inc/scfuncs.hrc:87 @@ -3819,7 +3789,7 @@ #: sc/inc/scfuncs.hrc:88 msgctxt "SC_OPCODE_DB_MAX" msgid "The range of cells containing data." -msgstr "ช่วงของช่องมีข้อมูล" +msgstr "ช่วงของเซลล์ที่เก็บข้อมูล" #. bpaoh #: sc/inc/scfuncs.hrc:89 @@ -3843,13 +3813,13 @@ #: sc/inc/scfuncs.hrc:92 msgctxt "SC_OPCODE_DB_MAX" msgid "Defines the cell range containing the search criteria." -msgstr "กำหนดช่วงช่องมีเกณฑ์การค้นหา" +msgstr "กำหนดช่วงของเซลล์ที่บรรจุเกณฑ์การค้นหา" #. e9z3D #: sc/inc/scfuncs.hrc:98 msgctxt "SC_OPCODE_DB_MIN" msgid "Returns the minimum of all cells of a data range where the contents correspond to the search criteria." -msgstr "ส่งกลับช่องทั้งหมดของช่วงข้อมูลที่น้อยที่สุดที่เนื้อหาตรงกับเกณฑ์การค้นหา" +msgstr "หาค่าต่ำสุดของเซลล์ทั้งหมดในช่วงข้อมูลที่มีเนื้อหาตรงกับเกณฑ์การค้นหา" #. 4P9kg #: sc/inc/scfuncs.hrc:99 @@ -3861,7 +3831,7 @@ #: sc/inc/scfuncs.hrc:100 msgctxt "SC_OPCODE_DB_MIN" msgid "The range of cells containing data." -msgstr "ช่วงของช่องมีข้อมูล" +msgstr "ช่วงของเซลล์ที่เก็บข้อมูล" #. EFANN #: sc/inc/scfuncs.hrc:101 @@ -3885,13 +3855,13 @@ #: sc/inc/scfuncs.hrc:104 msgctxt "SC_OPCODE_DB_MIN" msgid "Defines the cell range containing the search criteria." -msgstr "กำหนดช่วงช่องมีเกณฑ์การค้นหา" +msgstr "กำหนดช่วงของเซลล์ที่บรรจุเกณฑ์การค้นหา" #. 8hsR2 #: sc/inc/scfuncs.hrc:110 msgctxt "SC_OPCODE_DB_PRODUCT" msgid "Multiplies all cells of a data range where the contents match the search criteria." -msgstr "คูณช่องทั้งหมดของช่วงข้อมูลที่เนื้อหาตรงกับเกณฑ์การค้นหา" +msgstr "หาผลคูณของเซลล์ทั้งหมดในช่วงข้อมูลที่มีเนื้อหาตรงกับเกณฑ์การค้นหา" #. jDDb8 #: sc/inc/scfuncs.hrc:111 @@ -3903,7 +3873,7 @@ #: sc/inc/scfuncs.hrc:112 msgctxt "SC_OPCODE_DB_PRODUCT" msgid "The range of cells containing data." -msgstr "ช่วงของช่องมีข้อมูล" +msgstr "ช่วงของเซลล์ที่เก็บข้อมูล" #. X2HYT #: sc/inc/scfuncs.hrc:113 @@ -3927,13 +3897,13 @@ #: sc/inc/scfuncs.hrc:116 msgctxt "SC_OPCODE_DB_PRODUCT" msgid "Defines the cell range containing the search criteria." -msgstr "กำหนดช่วงช่องมีเกณฑ์การค้นหา" +msgstr "กำหนดช่วงของเซลล์ที่บรรจุเกณฑ์การค้นหา" #. Gee8U #: sc/inc/scfuncs.hrc:122 msgctxt "SC_OPCODE_DB_STD_DEV" msgid "Calculates the standard deviation of all cells in a data range whose contents match the search criteria." -msgstr "คำนวณส่วนเบี่ยงเบนมาตรฐานของช่องทั้งหมดของช่วงข้อมูลของเนื้อหาที่ตรงกับเกณฑ์การค้นหา" +msgstr "คำนวณส่วนเบี่ยงเบนมาตรฐานของเซลล์ทั้งหมดในช่วงข้อมูลที่มีเนื้อหาตรงกับเกณฑ์การค้นหา" #. abeZd #: sc/inc/scfuncs.hrc:123 @@ -3945,7 +3915,7 @@ #: sc/inc/scfuncs.hrc:124 msgctxt "SC_OPCODE_DB_STD_DEV" msgid "The range of cells containing data." -msgstr "ช่วงของช่องมีข้อมูล" +msgstr "ช่วงของเซลล์ที่เก็บข้อมูล" #. heAy5 #: sc/inc/scfuncs.hrc:125 @@ -3969,13 +3939,13 @@ #: sc/inc/scfuncs.hrc:128 msgctxt "SC_OPCODE_DB_STD_DEV" msgid "Defines the cell range containing the search criteria." -msgstr "กำหนดช่วงช่องมีเกณฑ์การค้นหา" +msgstr "กำหนดช่วงของเซลล์ที่บรรจุเกณฑ์การค้นหา" #. UUJKA #: sc/inc/scfuncs.hrc:134 msgctxt "SC_OPCODE_DB_STD_DEV_P" msgid "Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria." -msgstr "ส่งกลับส่วนเบี่ยงเบนมาตรฐานในเรื่องประชากรของช่องทั้งหมดของช่วงข้อมูลตรงกับเกณฑ์การค้นหา" +msgstr "คำนวณส่วนเบี่ยงเบนมาตรฐานประชากรของเซลล์ทั้งหมดในช่วงข้อมูลที่มีเนื้อหาตรงกับเกณฑ์การค้นหา" #. pEAMu #: sc/inc/scfuncs.hrc:135 @@ -3987,7 +3957,7 @@ #: sc/inc/scfuncs.hrc:136 msgctxt "SC_OPCODE_DB_STD_DEV_P" msgid "The range of cells containing data." -msgstr "ช่วงของช่องมีข้อมูล" +msgstr "ช่วงของเซลล์ที่เก็บข้อมูล" #. NwZA9 #: sc/inc/scfuncs.hrc:137 @@ -4011,13 +3981,13 @@ #: sc/inc/scfuncs.hrc:140 msgctxt "SC_OPCODE_DB_STD_DEV_P" msgid "Defines the cell range containing the search criteria." -msgstr "กำหนดช่วงช่องมีเกณฑ์การค้นหา" +msgstr "กำหนดช่วงของเซลล์ที่บรรจุเกณฑ์การค้นหา" #. rFsPm #: sc/inc/scfuncs.hrc:146 msgctxt "SC_OPCODE_DB_SUM" msgid "Adds all the cells of a data range where the contents match the search criteria." -msgstr "เพิ่มช่องทั้งหมดของช่วงข้อมูลที่เนื้อหาตรงกับเกณฑ์การค้นหา" +msgstr "หาผลรวมของเซลล์ทั้งหมดในช่วงข้อมูลที่มีเนื้อหาตรงกับเกณฑ์การค้นหา" #. gCXg5 #: sc/inc/scfuncs.hrc:147 @@ -4029,7 +3999,7 @@ #: sc/inc/scfuncs.hrc:148 msgctxt "SC_OPCODE_DB_SUM" msgid "The range of cells containing data." -msgstr "ช่วงของช่องมีข้อมูล" +msgstr "ช่วงของเซลล์ที่เก็บข้อมูล" #. 3rKRS #: sc/inc/scfuncs.hrc:149 @@ -4053,13 +4023,13 @@ #: sc/inc/scfuncs.hrc:152 msgctxt "SC_OPCODE_DB_SUM" msgid "Defines the cell range containing the search criteria." -msgstr "กำหนดช่วงของช่องมีเกณฑ์การค้นหา" +msgstr "กำหนดช่วงของเซลล์ที่บรรจุเกณฑ์การค้นหา" #. ucdoS #: sc/inc/scfuncs.hrc:158 msgctxt "SC_OPCODE_DB_VAR" msgid "Determines the variance of all the cells in a data range where the contents match the search criteria." -msgstr "กำหนดว่าการแปรผันของช่องทั้งหมดของช่วงข้อมูลที่เนื้อหาตรงกับเกณฑ์การค้นหา" +msgstr "หาความแปรปรวนของเซลล์ทั้งหมดในช่วงข้อมูลที่มีเนื้อหาตรงกับเกณฑ์การค้นหา" #. ktEWn #: sc/inc/scfuncs.hrc:159 @@ -4071,7 +4041,7 @@ #: sc/inc/scfuncs.hrc:160 msgctxt "SC_OPCODE_DB_VAR" msgid "The range of cells containing data." -msgstr "ช่วงของช่องมีข้อมูลอยู่" +msgstr "ช่วงของเซลล์ที่เก็บข้อมูล" #. D4jW9 #: sc/inc/scfuncs.hrc:161 @@ -4095,13 +4065,13 @@ #: sc/inc/scfuncs.hrc:164 msgctxt "SC_OPCODE_DB_VAR" msgid "Defines the cell range containing the search criteria." -msgstr "กำหนดช่วงของช่องมีเกณฑ์การค้นหา" +msgstr "กำหนดช่วงของเซลล์ที่บรรจุเกณฑ์การค้นหา" #. m7qTy #: sc/inc/scfuncs.hrc:170 msgctxt "SC_OPCODE_DB_VAR_P" msgid "Determines variance of a population based on all cells in a data range where contents match the search criteria." -msgstr "กำหนดการแปรผันของประชากรอยู่บนพื้นฐานช่องทั้งหมดในช่วงข้อมูลหนึ่งที่เนื้อหาตรงกับเกณฑ์การค้นหา" +msgstr "หาความแปรปรวนของประชากรของเซลล์ทั้งหมดในช่วงข้อมูลที่มีเนื้อหาตรงกับเกณฑ์การค้นหา" #. ZiVej #: sc/inc/scfuncs.hrc:171 @@ -4113,7 +4083,7 @@ #: sc/inc/scfuncs.hrc:172 msgctxt "SC_OPCODE_DB_VAR_P" msgid "The range of cells containing data." -msgstr "ช่วงของช่องมีข้อมูลอยู่" +msgstr "ช่วงของเซลล์ที่เก็บข้อมูล" #. cekAy #: sc/inc/scfuncs.hrc:173 @@ -4137,13 +4107,13 @@ #: sc/inc/scfuncs.hrc:176 msgctxt "SC_OPCODE_DB_VAR_P" msgid "Defines the cell range containing the search criteria." -msgstr "ระบุช่วงของช่องมีเกณฑ์การค้นหา" +msgstr "กำหนดช่วงของเซลล์ที่บรรจุเกณฑ์การค้นหา" #. AhrEw #: sc/inc/scfuncs.hrc:182 msgctxt "SC_OPCODE_GET_DATE" msgid "Provides an internal number for the date given." -msgstr "จัดหาตัวเลขภายในสำหรับวันที่ที่ให้มา" +msgstr "คืนค่าตัวเลขภายในสำหรับวันที่ที่กำหนด" #. R4DSx #: sc/inc/scfuncs.hrc:183 @@ -4155,7 +4125,7 @@ #: sc/inc/scfuncs.hrc:184 msgctxt "SC_OPCODE_GET_DATE" msgid "An integer between 1583 and 9956 or 0 and 99 (19xx or 20xx depending on the defined option)." -msgstr "จำนวนเต็มระหว่าง 1583 กับ 9956 หรือ 0 กับ 99 (19xx หรือ 20xx ขึ้นอยู่กับตัวเลือกที่ระบุ)" +msgstr "จำนวนเต็มตั้งแต่ 1583 ถึง 9956 หรือ 0 ถึง 99 (19xx หรือ 20xx ขึ้นอยู่กับการกำหนดค่าตัวเลือก)" #. Zxc2E #: sc/inc/scfuncs.hrc:185 @@ -4167,7 +4137,7 @@ #: sc/inc/scfuncs.hrc:186 msgctxt "SC_OPCODE_GET_DATE" msgid "An integer between 1 and 12 representing the month." -msgstr "จำนวนเต็มระหว่าง 1 และ 12 ใช้แทนเดือน" +msgstr "จำนวนเต็มตั้งแต่ 1 ถึง 12 แทนเดือน" #. PmsNF #: sc/inc/scfuncs.hrc:187 @@ -4179,17 +4149,16 @@ #: sc/inc/scfuncs.hrc:188 msgctxt "SC_OPCODE_GET_DATE" msgid "An integer between 1 and 31 representing the day of the month." -msgstr "จำนวนเต็มระหว่าง 1 และ 31 ใช้แทนวันของเดือน" +msgstr "จำนวนเต็มตั้งแต่ 1 ถึง 31 แทนวันที่ในเดือน" #. RCsfH #: sc/inc/scfuncs.hrc:194 msgctxt "SC_OPCODE_GET_DATE_VALUE" msgid "Returns an internal number for a text having a possible date format." -msgstr "ส่งกลับตัวเลขภายในสำหรับการมีรูปแบบข้อความวันที่ที่เป็นไปได้" +msgstr "คืนค่าตัวเลขภายในสำหรับข้อความที่มีรูปแบบเป็นวันที่ที่เป็นไปได้" #. 5Dfoq #: sc/inc/scfuncs.hrc:195 -#, fuzzy msgctxt "SC_OPCODE_GET_DATE_VALUE" msgid "Text" msgstr "ข้อความ" @@ -4198,13 +4167,13 @@ #: sc/inc/scfuncs.hrc:196 msgctxt "SC_OPCODE_GET_DATE_VALUE" msgid "A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format." -msgstr "ข้อความในเครื่องหมายคำพูด ที่ส่งกลับวันที่ในรูปแบบวันที่ของ %PRODUCTNAME " +msgstr "ข้อความในเครื่องหมายคำพูด ที่แทนวันที่ในรูปแบบของ %PRODUCTNAME" #. enYun #: sc/inc/scfuncs.hrc:202 msgctxt "SC_OPCODE_GET_DAY" msgid "Returns the sequential date of the month as an integer (1-31) in relation to the date value." -msgstr "ส่งกลับวันที่ของเดือนตามลำดับเป็นจำนวนเต็ม (1-31) สัมพันธ์กับค่าของวันที่" +msgstr "คืนค่าวันที่ของเดือนเป็นจำนวนเต็ม (1-31) จากค่าของวันที่" #. mCQeQ #: sc/inc/scfuncs.hrc:203 @@ -4216,39 +4185,37 @@ #: sc/inc/scfuncs.hrc:204 msgctxt "SC_OPCODE_GET_DAY" msgid "The internal number for the date." -msgstr "ตัวเลขภายในสำหรับวันที่" +msgstr "ตัวเลขภายในของวันที่" #. F2GNE #: sc/inc/scfuncs.hrc:210 msgctxt "SC_OPCODE_GET_DIFF_DATE_360" msgid "Calculates the number of days between two dates based on a 360-day year." -msgstr "คำนวณจำนวนวันระหว่างวันที่สองวัน, โดยคิดหนึ่งปี มี 360 วัน." +msgstr "คำนวณจำนวนวันระหว่างวันที่สองวัน โดยคิดหนึ่งปี มี 360 วัน" #. ZUUYG #: sc/inc/scfuncs.hrc:211 -#, fuzzy msgctxt "SC_OPCODE_GET_DIFF_DATE_360" msgid "Date 1" -msgstr "วันที่" +msgstr "วันที่แรก" #. isAbX #: sc/inc/scfuncs.hrc:212 msgctxt "SC_OPCODE_GET_DIFF_DATE_360" msgid "The start date for calculating the difference in days." -msgstr "วันเริ่มต้น สำหรับการคำนวณจำนวนวันที่ต่างกัน" +msgstr "วันที่เริ่มต้นสำหรับการคำนวณจำนวนวันผลต่าง" #. wWHWp #: sc/inc/scfuncs.hrc:213 -#, fuzzy msgctxt "SC_OPCODE_GET_DIFF_DATE_360" msgid "Date 2" -msgstr "วันที่" +msgstr "วันที่ที่สอง" #. 9DEEN #: sc/inc/scfuncs.hrc:214 msgctxt "SC_OPCODE_GET_DIFF_DATE_360" msgid "The end date for calculating the difference in days." -msgstr "วันสุดท้าย สำหรับการคำนวณจำนวนวันที่ต่างกัน" +msgstr "วันที่ท้ายสำหรับการคำนวณจำนวนผลต่าง" #. snNiF #: sc/inc/scfuncs.hrc:215 @@ -4260,13 +4227,13 @@ #: sc/inc/scfuncs.hrc:216 msgctxt "SC_OPCODE_GET_DIFF_DATE_360" msgid "Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method." -msgstr "วิธีแยกความแตกต่าง: ชนิด = 0 แทนวิธีแบบอเมริกัน (NASD), ชนิด = 1 แทนวิธีแบบยุโรป" +msgstr "วิธีที่ใช้คำนวณผลต่าง: ชนิด = 0 แทนวิธีแบบอเมริกัน (NASD), ชนิด = 1 แทนวิธีแบบยุโรป" #. WxBru #: sc/inc/scfuncs.hrc:222 msgctxt "SC_OPCODE_NETWORKDAYS" msgid "Returns the number of workdays between two dates using arguments to indicate weekenddays and holidays." -msgstr "" +msgstr "หาจำนวนวันทำการระหว่างวันที่สองวัน โดยอาศัยอาร์กิวเมนต์ในการระบุวันหยุดสุดสัปดาห์และวันหยุดนักขัตฤกษ์" #. KVDGH #: sc/inc/scfuncs.hrc:223 @@ -4278,50 +4245,49 @@ #: sc/inc/scfuncs.hrc:224 msgctxt "SC_OPCODE_NETWORKDAYS" msgid "Start date for calculation." -msgstr "" +msgstr "วันที่เริ่มต้นสำหรับการคำนวณ" #. DmzPz #: sc/inc/scfuncs.hrc:225 msgctxt "SC_OPCODE_NETWORKDAYS" msgid "End date" -msgstr "วันสิ้นสุด" +msgstr "วันที่สิ้นสุด" #. 6BzAF #: sc/inc/scfuncs.hrc:226 msgctxt "SC_OPCODE_NETWORKDAYS" msgid "End date for calculation." -msgstr "" +msgstr "วันที่สิ้นสุดสำหรับการคำนวณ" #. M27k9 #: sc/inc/scfuncs.hrc:227 msgctxt "SC_OPCODE_NETWORKDAYS" msgid "List of dates" -msgstr "" +msgstr "รายชื่อวันหยุด" #. 2Br3z #: sc/inc/scfuncs.hrc:228 msgctxt "SC_OPCODE_NETWORKDAYS" msgid "Optional set of one or more dates to be considered as holiday." -msgstr "" +msgstr "ชุดข้อมูลเสริมของวันที่ตั้งแต่หนึ่งวันขึ้นไปที่นับเป็นวันหยุดนักขัตฤกษ์" #. hBdDy #: sc/inc/scfuncs.hrc:229 -#, fuzzy msgctxt "SC_OPCODE_NETWORKDAYS" msgid "Array" -msgstr "อาเรย์ " +msgstr "อาร์เรย์" #. 73dG6 #: sc/inc/scfuncs.hrc:230 msgctxt "SC_OPCODE_NETWORKDAYS" msgid "Optional list of numbers to indicate working (0) and weekend (non-zero) days. When omitted, weekend is Saturday and Sunday." -msgstr "" +msgstr "รายชื่อเสริมของตัวเลขแทนวันทำการ (0) และวันหยุดสุดสัปดาห์ (ไม่ใช่ศูนย์) ถ้าไม่ระบุ จะถือว่าวันหยุดสุดสัปดาห์คือวันเสาร์และวันอาทิตย์" #. fmBGW #: sc/inc/scfuncs.hrc:236 msgctxt "SC_OPCODE_NETWORKDAYS_MS" msgid "Returns the number of workdays between two dates using arguments to indicate weekend days and holidays." -msgstr "" +msgstr "หาจำนวนวันทำการระหว่างวันที่สองวัน โดยอาศัยอาร์กิวเมนต์ในการระบุวันหยุดสุดสัปดาห์และวันหยุดนักขัตฤกษ์" #. URPkP #: sc/inc/scfuncs.hrc:237 @@ -4333,50 +4299,49 @@ #: sc/inc/scfuncs.hrc:238 msgctxt "SC_OPCODE_NETWORKDAYS_MS" msgid "Start date for calculation." -msgstr "" +msgstr "วันที่เริ่มต้นสำหรับการคำนวณ" #. xomvo #: sc/inc/scfuncs.hrc:239 msgctxt "SC_OPCODE_NETWORKDAYS_MS" msgid "End date" -msgstr "วันสิ้นสุด" +msgstr "วันที่ท้าย" #. ora8B #: sc/inc/scfuncs.hrc:240 msgctxt "SC_OPCODE_NETWORKDAYS_MS" msgid "End date for calculation." -msgstr "" +msgstr "วันที่ท้ายสำหรับการคำนวณ" #. DDyfy #: sc/inc/scfuncs.hrc:241 msgctxt "SC_OPCODE_NETWORKDAYS_MS" msgid "Number or string" -msgstr "" +msgstr "ตัวเลขหรือสายอักขระ" #. 7Sxtc #: sc/inc/scfuncs.hrc:242 msgctxt "SC_OPCODE_NETWORKDAYS_MS" msgid "Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday." -msgstr "" +msgstr "ตัวเลขหรือสายอักขระเสริมสำหรับระบุวันที่จะนับเป็นวันหยุดสุดสัปดาห์ ถ้าไม่ระบุ จะถือว่าวันหยุดสุดสัปดาห์คือวันเสาร์และวันอาทิตย์" #. 9k2cU #: sc/inc/scfuncs.hrc:243 -#, fuzzy msgctxt "SC_OPCODE_NETWORKDAYS_MS" msgid "Array" -msgstr "อาเรย์ " +msgstr "อาร์เรย์" #. Sk8Tf #: sc/inc/scfuncs.hrc:244 msgctxt "SC_OPCODE_NETWORKDAYS_MS" msgid "Optional set of one or more dates to be considered as holiday." -msgstr "" +msgstr "ชุดข้อมูลเสริมของวันที่ตั้งแต่หนึ่งวันขึ้นไปที่นับเป็นวันหยุดนักขัตฤกษ์" #. 5iAyC #: sc/inc/scfuncs.hrc:250 msgctxt "SC_OPCODE_WORKDAY_MS" msgid "Returns the serial number of the date before or after a number of workdays using arguments to indicate weekend days and holidays." -msgstr "" +msgstr "คืนค่าตัวเลขลำดับของวันที่ก่อนหรือหลังวันที่กำหนดเป็นจำนวนวันทำการที่กำหนด โดยอาศัยอาร์กิวเมนต์ในการระบุวันหยุดสุดสัปดาห์และวันหยุดนักขัตฤกษ์" #. EUpDi #: sc/inc/scfuncs.hrc:251 @@ -4388,51 +4353,49 @@ #: sc/inc/scfuncs.hrc:252 msgctxt "SC_OPCODE_WORKDAY_MS" msgid "Start date for calculation." -msgstr "" +msgstr "วันที่เริ่มต้นสำหรับการคำนวณ" #. 8hcDG #: sc/inc/scfuncs.hrc:253 msgctxt "SC_OPCODE_WORKDAY_MS" msgid "Days" -msgstr "วัน" +msgstr "จำนวนวัน" #. ANEEJ #: sc/inc/scfuncs.hrc:254 -#, fuzzy msgctxt "SC_OPCODE_WORKDAY_MS" msgid "The number of workdays before or after start date." -msgstr "จำนวนวันทำงานก่อนหรือหลังจากวันที่เริ่มต้น" +msgstr "จำนวนวันทำการก่อนหรือหลังจากวันที่เริ่มต้น" #. GB8gh #: sc/inc/scfuncs.hrc:255 msgctxt "SC_OPCODE_WORKDAY_MS" msgid "Number or string" -msgstr "" +msgstr "ตัวเลขหรือสายอักขระ" #. jwRnD #: sc/inc/scfuncs.hrc:256 msgctxt "SC_OPCODE_WORKDAY_MS" msgid "Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday." -msgstr "" +msgstr "ตัวเลขหรือสายอักขระเสริมสำหรับระบุวันที่จะนับเป็นวันหยุดสุดสัปดาห์ ถ้าไม่ระบุ จะถือว่าวันหยุดสุดสัปดาห์คือวันเสาร์และวันอาทิตย์" #. FiXLp #: sc/inc/scfuncs.hrc:257 -#, fuzzy msgctxt "SC_OPCODE_WORKDAY_MS" msgid "Array" -msgstr "อาเรย์ " +msgstr "อาร์เรย์" #. UhRAn #: sc/inc/scfuncs.hrc:258 msgctxt "SC_OPCODE_WORKDAY_MS" msgid "Optional set of one or more dates to be considered as holiday." -msgstr "" +msgstr "ชุดข้อมูลเสริมของวันที่ตั้งแต่หนึ่งวันขึ้นไปที่นับเป็นวันหยุดนักขัตฤกษ์" #. VC8Lk #: sc/inc/scfuncs.hrc:264 msgctxt "SC_OPCODE_GET_HOUR" msgid "Determines the sequential number of the hour of the day (0-23) for the time value." -msgstr "กำหนดจำนวนชั่วโมงของวันตามลำดับ (0-23) สำหรับค่าของเวลา" +msgstr "หาเลขลำดับชั่วโมงของวัน (0-23) สำหรับค่าของเวลา" #. 9EWGn #: sc/inc/scfuncs.hrc:265 @@ -4444,13 +4407,13 @@ #: sc/inc/scfuncs.hrc:266 msgctxt "SC_OPCODE_GET_HOUR" msgid "Internal time value" -msgstr "ค่าของเวลาภายใน" +msgstr "ค่าของเวลารูปแบบภายใน" #. sVCpp #: sc/inc/scfuncs.hrc:272 msgctxt "SC_OPCODE_GET_MIN" msgid "Determines the sequential number for the minute of the hour (0-59) for the time value." -msgstr "กำหนดจำนวนนาทีของชั่วโมงตามลำดับ (0-59) สำหรับค่าของเวลา" +msgstr "หาเศษนาทีของชั่วโมง (0-59) สำหรับค่าของเวลา" #. DF6zG #: sc/inc/scfuncs.hrc:273 @@ -4462,13 +4425,13 @@ #: sc/inc/scfuncs.hrc:274 msgctxt "SC_OPCODE_GET_MIN" msgid "Internal time value." -msgstr "ค่าของเวลาภายใน" +msgstr "ค่าของเวลารูปแบบภายใน" #. xnEn2 #: sc/inc/scfuncs.hrc:280 msgctxt "SC_OPCODE_GET_MONTH" msgid "Determines the sequential number of a month of the year (1-12) for the date value." -msgstr "กำหนดจำนวนเดือนของปีตามลำดับ (1-12) สำหรับค่าของวันที่" +msgstr "หาหมายเลขเดือนของปี (1-12) สำหรับค่าของวันที่" #. VAaar #: sc/inc/scfuncs.hrc:281 @@ -4480,19 +4443,19 @@ #: sc/inc/scfuncs.hrc:282 msgctxt "SC_OPCODE_GET_MONTH" msgid "The internal number of the date." -msgstr "จำนวนวันที่ภายใน" +msgstr "ตัวเลขวันที่รูปแบบภายใน" #. orccZ #: sc/inc/scfuncs.hrc:288 msgctxt "SC_OPCODE_GET_ACT_TIME" msgid "Determines the current time of the computer." -msgstr "กำหนดเวลาปัจจุบันของเครื่องคอมพิวเตอร์" +msgstr "อ่านเวลาปัจจุบันของคอมพิวเตอร์" #. YDEUs #: sc/inc/scfuncs.hrc:294 msgctxt "SC_OPCODE_GET_SEC" msgid "Determines the sequential number of the second of a minute (0-59) for the time value." -msgstr "กำหนดจำนวนวินาทีของนาทีตามลำดับ (0-59) สำหรับค่าของเวลา" +msgstr "หาเศษวินาทีของนาที (0-59) สำหรับค่าของเวลา" #. fdSoC #: sc/inc/scfuncs.hrc:295 @@ -4504,13 +4467,13 @@ #: sc/inc/scfuncs.hrc:296 msgctxt "SC_OPCODE_GET_SEC" msgid "The internal time value." -msgstr "ค่าของเวลาภายใน" +msgstr "ค่าของเวลารูปแบบภายใน" #. vncGX #: sc/inc/scfuncs.hrc:302 msgctxt "SC_OPCODE_GET_TIME" msgid "Determines a time value from the details for hour, minute and second." -msgstr "กำหนดค่าของเวลาจากรายละเอียดสำหรับชั่วโมง, นาที และวินาที" +msgstr "หาค่าของเวลาจากการระบุชั่วโมง, นาที และวินาที" #. yACyr #: sc/inc/scfuncs.hrc:303 @@ -4538,7 +4501,6 @@ #. XEuAN #: sc/inc/scfuncs.hrc:307 -#, fuzzy msgctxt "SC_OPCODE_GET_TIME" msgid "Second" msgstr "วินาที" @@ -4553,11 +4515,10 @@ #: sc/inc/scfuncs.hrc:314 msgctxt "SC_OPCODE_GET_TIME_VALUE" msgid "Returns a sequential number for a text shown in a possible time entry format." -msgstr "ส่งกลับลำดับตัวเลขสำหรับการแสดงข้อความในรูปแบบรายการเวลาที่เป็นไปได้" +msgstr "คืนค่าตัวเลขลำดับสำหรับข้อความที่อยู่ในรูปแบบของเวลาที่เป็นไปได้" #. GKRRm #: sc/inc/scfuncs.hrc:315 -#, fuzzy msgctxt "SC_OPCODE_GET_TIME_VALUE" msgid "Text" msgstr "ข้อความ" @@ -4566,20 +4527,19 @@ #: sc/inc/scfuncs.hrc:316 msgctxt "SC_OPCODE_GET_TIME_VALUE" msgid "A text enclosed in quotation marks which returns a time in a %PRODUCTNAME time format." -msgstr "ข้อความในเครื่องหมายคำพูด ที่ส่งกลับเวลาในรูปแบบเวลาของ %PRODUCTNAME " +msgstr "ข้อความในเครื่องหมายคำพูด ที่แทนเวลาในรูปแบบของ %PRODUCTNAME" #. tGJaZ #: sc/inc/scfuncs.hrc:322 msgctxt "SC_OPCODE_GET_ACT_DATE" msgid "Determines the current date of the computer." -msgstr "กำหนดวันที่ปัจจุบันของเครื่องคอมพิวเตอร์" +msgstr "อ่านวันที่ปัจจุบันของคอมพิวเตอร์" #. dz6Z6 #: sc/inc/scfuncs.hrc:328 -#, fuzzy msgctxt "SC_OPCODE_GET_DAY_OF_WEEK" msgid "Returns the day of the week for the date value as an integer." -msgstr "ส่งกลับวันของสัปดาห์สำหรับค่าของวันที่เป็นจำนวนเต็ม (1-7)" +msgstr "คืนค่าวันในสัปดาห์สำหรับวันที่ที่กำหนดในรูปจำนวนเต็ม (1-7)" #. mkqTM #: sc/inc/scfuncs.hrc:329 @@ -4591,7 +4551,7 @@ #: sc/inc/scfuncs.hrc:330 msgctxt "SC_OPCODE_GET_DAY_OF_WEEK" msgid "The internal number for the date." -msgstr "ตัวเลขภายในสำหรับวันที่" +msgstr "ตัวเลขรูปแบบภายในสำหรับวันที่" #. d6CQC #: sc/inc/scfuncs.hrc:331 @@ -4603,13 +4563,13 @@ #: sc/inc/scfuncs.hrc:332 msgctxt "SC_OPCODE_GET_DAY_OF_WEEK" msgid "Fixes the beginning of the week and the type of calculation to be used." -msgstr "กำหนดให้วันเริ่มต้นสัปดาห์ และชนิดของการคำนวณที่ใช้ คงที่" +msgstr "ปรับวันเริ่มต้นสัปดาห์ และชนิดของการคำนวณที่ใช้" #. 54GgL #: sc/inc/scfuncs.hrc:338 msgctxt "SC_OPCODE_GET_YEAR" msgid "Returns the year of a date value as an integer." -msgstr "ส่งกลับปีของค่าของวันที่เป็นจำนวนเต็ม" +msgstr "คืนค่าปีของวันที่ที่กำหนดในรูปจำนวนเต็ม" #. HpEkw #: sc/inc/scfuncs.hrc:339 @@ -4621,7 +4581,7 @@ #: sc/inc/scfuncs.hrc:340 msgctxt "SC_OPCODE_GET_YEAR" msgid "Internal number of the date." -msgstr "ตัวเลขภายในของวันที่" +msgstr "ตัวเลขรูปแบบภายในของวันที่" #. BjW3K #: sc/inc/scfuncs.hrc:346 @@ -4631,35 +4591,33 @@ #. bGFGP #: sc/inc/scfuncs.hrc:347 -#, fuzzy msgctxt "SC_OPCODE_GET_DIFF_DATE" msgid "Date 2" -msgstr "วันที่" +msgstr "วันที่ที่สอง" #. u2ebL #: sc/inc/scfuncs.hrc:348 msgctxt "SC_OPCODE_GET_DIFF_DATE" msgid "The end date for calculating the difference in days." -msgstr "วันสุดท้าย สำหรับการคำนวณจำนวนวันที่ต่างกัน" +msgstr "วันที่ท้ายสำหรับการคำนวณจำนวนวันผลต่าง" #. mAuEW #: sc/inc/scfuncs.hrc:349 -#, fuzzy msgctxt "SC_OPCODE_GET_DIFF_DATE" msgid "Date 1" -msgstr "วันที่" +msgstr "วันที่แรก" #. hPAVA #: sc/inc/scfuncs.hrc:350 msgctxt "SC_OPCODE_GET_DIFF_DATE" msgid "The start date for calculating the difference in days." -msgstr "วันเริ่มต้น สำหรับการคำนวณจำนวนวันที่ต่างกัน" +msgstr "วันที่เริ่มต้นสำหรับการคำนวณจำนวนวันผลต่าง" #. FiEhB #: sc/inc/scfuncs.hrc:356 msgctxt "SC_OPCODE_GET_DATEDIF" msgid "Returns the number of whole days, months or years between 'start date' and 'end date'." -msgstr "" +msgstr "คืนค่าจำนวนวัน เดือน หรือปีเต็มระหว่าง 'วันที่เริ่มต้น' กับ 'วันที่ท้าย'" #. NrRAv #: sc/inc/scfuncs.hrc:357 @@ -4677,13 +4635,13 @@ #: sc/inc/scfuncs.hrc:359 msgctxt "SC_OPCODE_GET_DATEDIF" msgid "End date" -msgstr "วันสิ้นสุด" +msgstr "วันที่ท้าย" #. ygB8c #: sc/inc/scfuncs.hrc:360 msgctxt "SC_OPCODE_GET_DATEDIF" msgid "The end date." -msgstr "วันที่สิ้นสุด" +msgstr "วันที่ท้าย" #. jFhKf #: sc/inc/scfuncs.hrc:361 @@ -4695,13 +4653,13 @@ #: sc/inc/scfuncs.hrc:362 msgctxt "SC_OPCODE_GET_DATEDIF" msgid "Interval to be calculated. Can be \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"." -msgstr "" +msgstr "ช่วงที่จะคำนวณ ค่าที่ใช้ได้คือ \"d\", \"m\", \"y\", \"ym\", \"md\" หรือ \"yd\"" #. v6aoY #: sc/inc/scfuncs.hrc:368 msgctxt "SC_OPCODE_WEEK" msgid "Calculates the calendar week corresponding to the given date." -msgstr "คำนวณสัปดาห์ของปีของวันที่ที่ให้มา" +msgstr "คำนวณสัปดาห์ที่ของปีของวันที่ที่กำหนด" #. wSYNs #: sc/inc/scfuncs.hrc:369 @@ -4713,7 +4671,7 @@ #: sc/inc/scfuncs.hrc:370 msgctxt "SC_OPCODE_WEEK" msgid "The internal number of the date." -msgstr "ตัวเลขภายในของวันที่" +msgstr "ตัวเลขรูปแบบภายในของวันที่" #. de9xA #: sc/inc/scfuncs.hrc:371 @@ -4725,27 +4683,25 @@ #: sc/inc/scfuncs.hrc:372 msgctxt "SC_OPCODE_WEEK" msgid "Indicates the first day of the week and when week 1 starts." -msgstr "" +msgstr "ระบุวันแรกของสัปดาห์และการนับสัปดาห์แรกของปี" #. DXa5y #: sc/inc/scfuncs.hrc:378 msgctxt "SC_OPCODE_ISOWEEKNUM" msgid "Calculates the ISO 8601 calendar week for the given date." -msgstr "" +msgstr "คำนวณสัปดาห์ที่ของปีตามมาตรฐาน ISO 8601 ของวันที่ที่กำหนด" #. Rx8bG #: sc/inc/scfuncs.hrc:379 -#, fuzzy msgctxt "SC_OPCODE_ISOWEEKNUM" msgid "Number" msgstr "ตัวเลข" #. egCHH #: sc/inc/scfuncs.hrc:380 -#, fuzzy msgctxt "SC_OPCODE_ISOWEEKNUM" msgid "The internal number of the date." -msgstr "จำนวนวันที่ภายใน" +msgstr "ตัวเลขรูปแบบภายในของวันที่" #. HVtZ8 #: sc/inc/scfuncs.hrc:385 @@ -4754,20 +4710,20 @@ "Calculates the calendar week corresponding to the given date.\n" "This function only provides interoperability with %PRODUCTNAME 5.0 and earlier and OpenOffice.org." msgstr "" +"คำนวณสัปดาห์ที่ของปีของวันที่ที่กำหนด\n" +"ฟังก์ชันนี้มีเพื่อความเข้ากันได้กับ %PRODUCTNAME 5.0 หรือก่อนนั้น และ OpenOffice.org" #. CquiW #: sc/inc/scfuncs.hrc:386 -#, fuzzy msgctxt "SC_OPCODE_WEEKNUM_OOO" msgid "Number" msgstr "ตัวเลข" #. D5VMW #: sc/inc/scfuncs.hrc:387 -#, fuzzy msgctxt "SC_OPCODE_WEEKNUM_OOO" msgid "The internal number of the date." -msgstr "จำนวนวันที่ภายใน" +msgstr "ตัวเลขรูปแบบภายในของวันที่" #. VWEz5 #: sc/inc/scfuncs.hrc:388 @@ -4777,7 +4733,6 @@ #. hwgEb #: sc/inc/scfuncs.hrc:389 -#, fuzzy msgctxt "SC_OPCODE_WEEKNUM_OOO" msgid "Indicates the first day of the week (1 = Sunday, other values = Monday)." msgstr "ระบุวันแรกของสัปดาห์ (1 = วันอาทิตย์, ค่าอื่น = วันจันทร์)" @@ -4786,7 +4741,7 @@ #: sc/inc/scfuncs.hrc:395 msgctxt "SC_OPCODE_EASTERSUNDAY" msgid "Calculates the date of Easter Sunday in a given year." -msgstr "คำนวณวันที่ของวันอาทิตย์ที่เป็นวันอีสเตอร์ในปีที่ให้มา" +msgstr "คำนวณวันที่ของวันอีสเตอร์วันอาทิตย์ในปีที่กำหนด" #. BFtNz #: sc/inc/scfuncs.hrc:396 @@ -4798,25 +4753,25 @@ #: sc/inc/scfuncs.hrc:397 msgctxt "SC_OPCODE_EASTERSUNDAY" msgid "An integer between 1583 and 9956, or 0 and 99 (19xx or 20xx depending on the option set)." -msgstr "จำนวนเต็มระหว่าง 1583 กับ 9956, หรือ 0 กับ 99 (19xx หรือ 20xx ขึ้นอยู่กับชุดตัวเลือก)" +msgstr "จำนวนเต็มตั้งแต่ 1583 ถึง 9956 หรือ 0 ถึง 99 (19xx หรือ 20xx ขึ้นอยู่กับการกำหนดค่าตัวเลือก)" #. kmFgp #: sc/inc/scfuncs.hrc:403 msgctxt "SC_OPCODE_PV" msgid "Present value. Calculates the present value of an investment." -msgstr "ค่าปัจจุบัน คำนวณค่าปัจุบันของการลงทุน" +msgstr "มูลค่าปัจจุบัน: คำนวณมูลค่าปัจจุบันของเงินลงทุนหรือเงินกู้" #. 9D92F #: sc/inc/scfuncs.hrc:404 msgctxt "SC_OPCODE_PV" msgid "Rate" -msgstr "อัตรา" +msgstr "อัตราดอกเบี้ย" #. q3iQz #: sc/inc/scfuncs.hrc:405 msgctxt "SC_OPCODE_PV" msgid "The rate of interest for the period given." -msgstr "อัตราดอกเบี้ยสำหรับงวดที่ให้มา" +msgstr "อัตราดอกเบี้ยต่องวดที่กำหนด" #. FrWSE #: sc/inc/scfuncs.hrc:406 @@ -4828,7 +4783,7 @@ #: sc/inc/scfuncs.hrc:407 msgctxt "SC_OPCODE_PV" msgid "The payment period. The total number of periods in which the annuity is paid." -msgstr "งวดการจ่ายเงิน จำนวนงวดทั้งหมดที่จ่ายเงินรายปี" +msgstr "จำนวนงวด: จำนวนงวดทั้งหมดที่ผ่อนจ่ายเงินรายงวด" #. NUecK #: sc/inc/scfuncs.hrc:408 @@ -4840,7 +4795,7 @@ #: sc/inc/scfuncs.hrc:409 msgctxt "SC_OPCODE_PV" msgid "Regular payments. The constant amount of annuity that is paid in each period." -msgstr "การจ่ายเงินปกติ จำนวนเงินคงที่ของเงินรายปีที่จ่ายในแต่ละงวด" +msgstr "เงินรายงวด: จำนวนเงินที่ผ่อนจ่ายคงที่ในแต่ละงวด" #. BazeD #: sc/inc/scfuncs.hrc:410 @@ -4852,7 +4807,7 @@ #: sc/inc/scfuncs.hrc:411 msgctxt "SC_OPCODE_PV" msgid "Future value. The value (final value) to be attained after the last payment." -msgstr "ค่าของอนาคต ค่า (ค่าสุดท้าย) ที่ได้รับหลังจากการจ่ายเงินครั้งสุดท้าย" +msgstr "มูลค่าในอนาคต: มูลค่า (มูลค่าสุดท้าย) ที่จะได้รับหลังจากจ่ายเงินงวดสุดท้าย" #. regEY #: sc/inc/scfuncs.hrc:412 @@ -4864,19 +4819,19 @@ #: sc/inc/scfuncs.hrc:413 msgctxt "SC_OPCODE_PV" msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end." -msgstr "ชนิด = 1 แทนงวดเริ่มต้น, = 0 งวดสุดท้าย" +msgstr "ชนิด = 1 แทนการครบกำหนดที่ต้นงวด, = 0 ครบที่ปลายงวด" #. JWMSe #: sc/inc/scfuncs.hrc:419 msgctxt "SC_OPCODE_FV" msgid "Future value. Returns the future value of an investment based on regular payments and a constant interest rate." -msgstr "Future value. Returns the future value of an investment based on regular payments and a constant interest rate.ค่าของอนาคต ส่งกลับค่าของอนาคตของการลงทุนบนพื้นฐานการจ่ายเงินปกติและอัตราดอกเบี้ยคงที่" +msgstr "มูลค่าในอนาคต: คำนวณมูลค่าในอนาคตของเงินลงทุนหรือเงินกู้ที่ผ่อนจ่ายสม่ำเสมอเป็นงวดๆ โดยคิดอัตราดอกเบี้ยคงที่" #. NdU3B #: sc/inc/scfuncs.hrc:420 msgctxt "SC_OPCODE_FV" msgid "Rate" -msgstr "อัตรา" +msgstr "อัตราดอกเบี้ย" #. G5BK8 #: sc/inc/scfuncs.hrc:421 @@ -4894,7 +4849,7 @@ #: sc/inc/scfuncs.hrc:423 msgctxt "SC_OPCODE_FV" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "งวดการจ่าย จำนวนงวดทั้งหมดที่จ่ายเงินรายปี (บำนาญ)" +msgstr "จำนวนงวด: จำนวนงวดทั้งหมดที่ผ่อนจ่ายเงินรายงวด (บำนาญ)" #. LWkAe #: sc/inc/scfuncs.hrc:424 @@ -4906,7 +4861,7 @@ #: sc/inc/scfuncs.hrc:425 msgctxt "SC_OPCODE_FV" msgid "Regular payments. The constant annuity to be paid in each period." -msgstr "การจ่ายเงินปกติ เงินรายปีคงที่ที่จ่ายในแต่ละงวด" +msgstr "เงินรายงวด: จำนวนเงินที่ผ่อนจ่ายคงที่ในแต่ละงวด" #. RHEUR #: sc/inc/scfuncs.hrc:426 @@ -4918,7 +4873,7 @@ #: sc/inc/scfuncs.hrc:427 msgctxt "SC_OPCODE_FV" msgid "Present value. The current value of a series of payments" -msgstr "ค่าปัจจุบัน ค่าปัจจุบันของลำดับการจ่ายเงิน" +msgstr "มูลค่าปัจจุบัน: มูลค่าปัจจุบันของเงินที่ผ่อนจ่ายทั้งหมด" #. eC5FU #: sc/inc/scfuncs.hrc:428 @@ -4930,19 +4885,19 @@ #: sc/inc/scfuncs.hrc:429 msgctxt "SC_OPCODE_FV" msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end." -msgstr "ชนิด = 1 แทนงวดเริ่มต้น, = 0 งวดสุดท้าย" +msgstr "ชนิด = 1 แทนการครบกำหนดที่ต้นงวด, = 0 ครบที่ปลายงวด" #. c6Y23 #: sc/inc/scfuncs.hrc:435 msgctxt "SC_OPCODE_NPER" msgid "Payment period. Calculates the number of payment periods for an investment based on regular payments and a constant interest rate." -msgstr "Payment period. Calculates the number of payment periods for an investment based on regular payments and a constant interest rate.งวดการจ่ายเงิน คำนวนจำนวนงวดการจ่ายเงินสำหรับการลงทุนบนพื้นฐานการจ่ายเงินปกติและอัตราดอกเบี้ยปกติ" +msgstr "จำนวนงวด: คำนวณจำนวนงวดผ่อนจ่ายของการลงทุนที่ทยอยจ่ายสม่ำเสมอ ภายใต้อัตราดอกเบี้ยคงที่" #. GgGha #: sc/inc/scfuncs.hrc:436 msgctxt "SC_OPCODE_NPER" msgid "Rate" -msgstr "อัตรา" +msgstr "อัตราดอกเบี้ย" #. pKSEE #: sc/inc/scfuncs.hrc:437 @@ -4960,7 +4915,7 @@ #: sc/inc/scfuncs.hrc:439 msgctxt "SC_OPCODE_NPER" msgid "Regular payments. The constant annuity to be paid in each period." -msgstr "การจ่ายเงินปกติ เงินรายปีคงที่ที่จ่ายในแต่ละงวด" +msgstr "เงินรายงวด: จำนวนเงินที่ผ่อนจ่ายคงที่ในแต่ละงวด" #. UHQkU #: sc/inc/scfuncs.hrc:440 @@ -4972,7 +4927,7 @@ #: sc/inc/scfuncs.hrc:441 msgctxt "SC_OPCODE_NPER" msgid "Present value. The current value of a series of payments" -msgstr "ค่าปัจจุบัน ค่าปัจจุบันของลำดับการจ่ายเงิน" +msgstr "มูลค่าปัจจุบัน: มูลค่าปัจจุบันของเงินที่ผ่อนจ่ายทั้งหมด" #. FSFEQ #: sc/inc/scfuncs.hrc:442 @@ -4984,7 +4939,7 @@ #: sc/inc/scfuncs.hrc:443 msgctxt "SC_OPCODE_NPER" msgid "Future value. The value (end value) to be attained after the final payment." -msgstr "ค่าในอนาคต ค่า (ค่าสุดท้าย) ที่ได้หลังจากการชำระครั้งสุดท้าย" +msgstr "มูลค่าในอนาคต: มูลค่า (มูลค่าสุดท้าย) ที่จะได้รับหลังจากจ่ายเงินงวดสุดท้าย" #. yFiVM #: sc/inc/scfuncs.hrc:444 @@ -4996,19 +4951,19 @@ #: sc/inc/scfuncs.hrc:445 msgctxt "SC_OPCODE_NPER" msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end." -msgstr "ชนิด = 1 แทนครบกำหนดงวดเริ่มต้น, = 0 งวดสุดท้าย" +msgstr "ชนิด = 1 แทนการครบกำหนดที่ต้นงวด, = 0 ครบที่ปลายงวด" #. zkuDn #: sc/inc/scfuncs.hrc:451 msgctxt "SC_OPCODE_PMT" msgid "Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate." -msgstr "Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate.การจ่ายเงินปกติ ส่งกลับงวดการจ่ายเงินรายปี, บนพื้นฐานการจ่ายเงินปกติและดอกเบี้ยคงที่เป็นรายงวด" +msgstr "เงินรายงวด: คำนวณเงินรายงวดที่ต้องผ่อนจ่ายอย่างสม่ำเสมอ ภายใต้ดอกเบี้ยคงที่ต่องวด" #. FBNre #: sc/inc/scfuncs.hrc:452 msgctxt "SC_OPCODE_PMT" msgid "Rate" -msgstr "อัตรา" +msgstr "อัตราดอกเบี้ย" #. 3hDjt #: sc/inc/scfuncs.hrc:453 @@ -5026,7 +4981,7 @@ #: sc/inc/scfuncs.hrc:455 msgctxt "SC_OPCODE_PMT" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "งวดการจ่าย จำนวนงวดทั้งหมดที่จ่ายเงินรายปี (บำนาญ)" +msgstr "จำนวนงวด: จำนวนงวดทั้งหมดที่ผ่อนจ่ายเงินรายงวด (บำนาญ)" #. BfoBd #: sc/inc/scfuncs.hrc:456 @@ -5038,7 +4993,7 @@ #: sc/inc/scfuncs.hrc:457 msgctxt "SC_OPCODE_PMT" msgid "Present value. The current value of a series of payments" -msgstr "ค่าปัจจุบัน ค่าปัจจุบันของลำดับการจ่ายเงิน" +msgstr "มูลค่าปัจจุบัน: มูลค่าปัจจุบันของเงินที่ผ่อนจ่ายทั้งหมด" #. wLxeH #: sc/inc/scfuncs.hrc:458 @@ -5050,7 +5005,7 @@ #: sc/inc/scfuncs.hrc:459 msgctxt "SC_OPCODE_PMT" msgid "Future value. The value (end value) to be attained after the final payment." -msgstr "ค่าในอนาคต ค่า (ค่าสุดท้าย) ที่ได้หลังจากการชำระครั้งสุดท้าย" +msgstr "มูลค่าในอนาคต: มูลค่า (มูลค่าสุดท้าย) ที่จะได้รับหลังจากจ่ายเงินงวดสุดท้าย" #. XctnR #: sc/inc/scfuncs.hrc:460 @@ -5062,13 +5017,13 @@ #: sc/inc/scfuncs.hrc:461 msgctxt "SC_OPCODE_PMT" msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end." -msgstr "ชนิด = 1 หมายถึงครบกำหนดงวดเริ่มต้น, ส่วน 0 คือ งวดสุดท้าย" +msgstr "ชนิด = 1 แทนการครบกำหนดที่ต้นงวด, = 0 ครบที่ปลายงวด" #. e8CMw #: sc/inc/scfuncs.hrc:467 msgctxt "SC_OPCODE_RATE" msgid "Calculates the constant interest rate of an investment with regular payments." -msgstr "คำนวณอัตราดอกเบี้ยคงที่ของการลงทุนด้วยการจ่ายเงินแบบปกติ" +msgstr "คำนวณอัตราดอกเบี้ยคงที่ของการลงทุนด้วยการผ่อนจ่ายอย่างสม่ำเสมอ" #. MeabD #: sc/inc/scfuncs.hrc:468 @@ -5080,7 +5035,7 @@ #: sc/inc/scfuncs.hrc:469 msgctxt "SC_OPCODE_RATE" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "งวดการจ่าย จำนวนงวดทั้งหมดที่จ่ายเงินรายปี (บำนาญ)" +msgstr "จำนวนงวด: จำนวนงวดทั้งหมดที่ผ่อนจ่ายเงินรายงวด (บำนาญ)" #. TPtCR #: sc/inc/scfuncs.hrc:470 @@ -5092,7 +5047,7 @@ #: sc/inc/scfuncs.hrc:471 msgctxt "SC_OPCODE_RATE" msgid "Regular payments. The constant annuity to be paid in each period." -msgstr "การจ่ายเงินปกติ เงินรายปีคงที่ที่จ่ายในแต่ละงวด" +msgstr "เงินรายงวด: จำนวนเงินที่ผ่อนจ่ายคงที่ในแต่ละงวด" #. CfjNt #: sc/inc/scfuncs.hrc:472 @@ -5104,7 +5059,7 @@ #: sc/inc/scfuncs.hrc:473 msgctxt "SC_OPCODE_RATE" msgid "Present value. The current value of a series of payments" -msgstr "ค่าปัจจุบัน ค่าปัจจุบันของลำดับการจ่ายเงิน" +msgstr "มูลค่าปัจจุบัน: มูลค่าปัจจุบันของเงินที่ผ่อนจ่ายทั้งหมด" #. XLtt7 #: sc/inc/scfuncs.hrc:474 @@ -5116,7 +5071,7 @@ #: sc/inc/scfuncs.hrc:475 msgctxt "SC_OPCODE_RATE" msgid "Future value. The value (end value) to be attained after the final payment." -msgstr "ค่าในอนาคต ค่า (ค่าสุดท้าย) ที่ได้หลังจากการชำระครั้งสุดท้าย" +msgstr "มูลค่าในอนาคต: มูลค่า (มูลค่าสุดท้าย) ที่จะได้รับหลังจากจ่ายเงินงวดสุดท้าย" #. prU5x #: sc/inc/scfuncs.hrc:476 @@ -5128,31 +5083,31 @@ #: sc/inc/scfuncs.hrc:477 msgctxt "SC_OPCODE_RATE" msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end." -msgstr "ชนิด = 1 หมายถึงครบกำหนดงวดเริ่มต้น, ส่วน 0 คือ งวดสุดท้าย" +msgstr "ชนิด = 1 แทนการครบกำหนดที่ต้นงวด, = 0 ครบที่ปลายงวด" #. B6jVk #: sc/inc/scfuncs.hrc:478 msgctxt "SC_OPCODE_RATE" msgid "Guess" -msgstr "คะเน" +msgstr "ค่าคาดคะเน" #. HWAzL #: sc/inc/scfuncs.hrc:479 msgctxt "SC_OPCODE_RATE" msgid "Guess. The estimate of the interest rate for the iterative calculating method." -msgstr "คะเน อัตราดอกเบี้ยโดยประมาณสำหรับวิธีการคำนวณแบบทวนซ้ำ" +msgstr "ค่าคาดคะเน: อัตราดอกเบี้ยประมาณการสำหรับการคำนวณด้วยวิธีทวนซ้ำ" #. hd9mD #: sc/inc/scfuncs.hrc:485 msgctxt "SC_OPCODE_IPMT" msgid "Compounded interest. Calculates the interest payment on the principal for an investment with regular payments and a constant interest rate for a given period." -msgstr "Compounded interest. Calculates the interest payment on the principal for an investment with regular payments and a constant interest rate for a given period.ดอกเบี้ยเชิงซ้อน คำนวณการจ่ายดอกเบี้ยบนหลักการลงทุนด้วยการจ่ายเงินแบบปกติและอัตราดอกเบี้ยคงที่สำหรับงวดที่ให้มา" +msgstr "ส่วนชำระดอกเบี้ย: คำนวณส่วนชำระดอกเบี้ยของเงินรายงวดแต่ละงวด สำหรับการลงทุนที่ผ่อนจ่ายสม่ำเสมอภายใต้อัตราดอกเบี้ยคงที่" #. NeBtb #: sc/inc/scfuncs.hrc:486 msgctxt "SC_OPCODE_IPMT" msgid "Rate" -msgstr "อัตรา" +msgstr "อัตราดอกเบี้ย" #. Jz3cj #: sc/inc/scfuncs.hrc:487 @@ -5170,7 +5125,7 @@ #: sc/inc/scfuncs.hrc:489 msgctxt "SC_OPCODE_IPMT" msgid "Periods. The periods for which the compounded interest is to be calculated. P = 1 denotes for the first period, P = NPER for the last one." -msgstr "งวด งวดในการคำนวณดอกเบี้ยเชิงซ้อน P = 1 แทนงวดแรก, P = NPER สำหรับงวดสุดท้าย" +msgstr "งวด: งวดที่จะคำนวณส่วนชำระดอกเบี้ย P = 1 แทนงวดแรก, P = NPER แทนงวดสุดท้าย" #. 2JYMa #: sc/inc/scfuncs.hrc:490 @@ -5182,7 +5137,7 @@ #: sc/inc/scfuncs.hrc:491 msgctxt "SC_OPCODE_IPMT" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "งวดการจ่าย จำนวนงวดทั้งหมดที่จ่ายเงินรายปี (บำนาญ)" +msgstr "จำนวนงวด: จำนวนงวดทั้งหมดที่ผ่อนจ่ายเงินรายงวด (บำนาญ)" #. BwNPC #: sc/inc/scfuncs.hrc:492 @@ -5194,7 +5149,7 @@ #: sc/inc/scfuncs.hrc:493 msgctxt "SC_OPCODE_IPMT" msgid "Present value. The current value of a series of payments" -msgstr "ค่าปัจจุบัน ค่าปัจจุบันของลำดับการจ่ายเงิน" +msgstr "มูลค่าปัจจุบัน: มูลค่าปัจจุบันของเงินที่ผ่อนจ่ายทั้งหมด" #. YBHug #: sc/inc/scfuncs.hrc:494 @@ -5206,7 +5161,7 @@ #: sc/inc/scfuncs.hrc:495 msgctxt "SC_OPCODE_IPMT" msgid "Future value. The value (end value) to be attained after the final payment." -msgstr "ค่าในอนาคต ค่า (ค่าสุดท้าย) ที่ได้หลังจากการชำระครั้งสุดท้าย" +msgstr "มูลค่าในอนาคต: มูลค่า (มูลค่าสุดท้าย) ที่จะได้รับหลังจากจ่ายเงินงวดสุดท้าย" #. eDepL #: sc/inc/scfuncs.hrc:496 @@ -5218,19 +5173,19 @@ #: sc/inc/scfuncs.hrc:497 msgctxt "SC_OPCODE_IPMT" msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end." -msgstr "ชนิด = 1 แทนงวดเริ่มต้น, = 0 งวดสุดท้าย" +msgstr "ชนิด = 1 แทนการครบกำหนดที่ต้นงวด, = 0 ครบที่ปลายงวด" #. Z65oQ #: sc/inc/scfuncs.hrc:503 msgctxt "SC_OPCODE_PPMT" msgid "Repayment. Calculates the repayment amount for a period for an investment whereby the payments are at regular intervals and the interest rate constant." -msgstr "Repayment. Calculates the repayment amount for a period for an investment whereby the payments are at regular intervals and the interest rate constant.การจ่ายเงินคืน คำนวณจำนวนงวดการจ่ายเงินคืนสำหรับการลงทุนด้วยการจ่ายเงินช่วงปกติและอัตราดอกเบี้ยคงที่" +msgstr "ส่วนชำระเงินต้น: คำนวณส่วนชำระเงินต้นของเงินรายงวดแต่ละงวด สำหรับการลงทุนที่ผ่อนจ่ายสม่ำเสมอภายใต้อัตราดอกเบี้ยคงที่" #. pNF3b #: sc/inc/scfuncs.hrc:504 msgctxt "SC_OPCODE_PPMT" msgid "Rate" -msgstr "อัตรา" +msgstr "อัตราดอกเบี้ย" #. ozXtG #: sc/inc/scfuncs.hrc:505 @@ -5248,7 +5203,7 @@ #: sc/inc/scfuncs.hrc:507 msgctxt "SC_OPCODE_PPMT" msgid "Period. The period for which the repayments are to be calculated. Per = 1 denotes for the first period, P = NPER for the last" -msgstr "งวด งวดในการคำนวณการจ่ายเงินคืน Per = 1 แทนงวดแรก, P = NPER สำหรับงวดสุดท้าย" +msgstr "งวด: งวดที่จะคำนวณส่วนชำระเงินต้น P = 1 แทนงวดแรก, P = NPER แทนงวดสุดท้าย" #. dasVa #: sc/inc/scfuncs.hrc:508 @@ -5260,7 +5215,7 @@ #: sc/inc/scfuncs.hrc:509 msgctxt "SC_OPCODE_PPMT" msgid "The payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "งวดการจ่าย จำนวนงวดทั้งหมดที่จ่ายเงินรายปี (บำนาญ)" +msgstr "จำนวนงวด: จำนวนงวดทั้งหมดที่ผ่อนจ่ายเงินรายงวด (บำนาญ)" #. eKjez #: sc/inc/scfuncs.hrc:510 @@ -5272,7 +5227,7 @@ #: sc/inc/scfuncs.hrc:511 msgctxt "SC_OPCODE_PPMT" msgid "The present value. The present value or the amount the annuity is currently worth." -msgstr "ค่าปัจจุบัน ค่าปัจจุบันหรือจำนวนเงินรายปีที่มีค่าในปัจจุบัน" +msgstr "มูลค่าปัจจุบัน: มูลค่าปัจจุบันของเงินที่ผ่อนจ่ายทั้งหมด" #. MgtBv #: sc/inc/scfuncs.hrc:512 @@ -5284,7 +5239,7 @@ #: sc/inc/scfuncs.hrc:513 msgctxt "SC_OPCODE_PPMT" msgid "Future value. The value (end value) attained after the last payment has been made." -msgstr "ค่าของอนาคต ค่า (ค่าสุดท้าย) ที่ได้รับหลังจากทำการจ่ายเงินงวดสุดท้าย" +msgstr "มูลค่าในอนาคต: มูลค่า (มูลค่าสุดท้าย) ที่จะได้รับหลังจากจ่ายเงินงวดสุดท้าย" #. 7vmFL #: sc/inc/scfuncs.hrc:514 @@ -5296,20 +5251,19 @@ #: sc/inc/scfuncs.hrc:515 msgctxt "SC_OPCODE_PPMT" msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end." -msgstr "ชนิด = 1 หมายถึงครบกำหนดงวดเริ่มต้น, ส่วน 0 คือ งวดสุดท้าย" +msgstr "ชนิด = 1 แทนการครบกำหนดที่ต้นงวด, = 0 ครบที่ปลายงวด" #. pgK5D #: sc/inc/scfuncs.hrc:521 -#, fuzzy msgctxt "SC_OPCODE_CUM_PRINC" msgid "Cumulative capital. Calculates the total amount of the repayment share in a period for an investment with constant interest rate." -msgstr "Cumulative compounded interest. Calculates the total amount of the interest share in a period for an investment with a constant interest rate.ดอกเบี้ยเชิงซ้อนสะสม คำนวณจำนวนส่วนแบ่งดอกเบี้ยทั้งหมดในงวดเวลาหนึ่งสำหรับการลงทุนด้วยอัตราดอกเบี้ยคงที่" +msgstr "ส่วนชำระเงินต้นสะสม: คำนวณยอดชำระเงินต้นสะสมของแต่ละงวด สำหรับการลงทุนที่คิดอัตราดอกเบี้ยคงที่" #. yY5uB #: sc/inc/scfuncs.hrc:522 msgctxt "SC_OPCODE_CUM_PRINC" msgid "Rate" -msgstr "อัตรา" +msgstr "อัตราดอกเบี้ย" #. gEMGN #: sc/inc/scfuncs.hrc:523 @@ -5327,7 +5281,7 @@ #: sc/inc/scfuncs.hrc:525 msgctxt "SC_OPCODE_CUM_PRINC" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "งวดการจ่าย จำนวนงวดทั้งหมดที่จ่ายเงินรายปี (บำนาญ)" +msgstr "จำนวนงวด: จำนวนงวดทั้งหมดที่ผ่อนจ่ายเงินรายงวด (บำนาญ)" #. ALmpB #: sc/inc/scfuncs.hrc:526 @@ -5339,7 +5293,7 @@ #: sc/inc/scfuncs.hrc:527 msgctxt "SC_OPCODE_CUM_PRINC" msgid "The present value. The present value or the amount the annuity is currently worth." -msgstr "ค่าปัจจุบัน ค่าปัจจุบันหรือจำนวนเงินรายปีที่มีค่าในปัจจุบัน" +msgstr "มูลค่าปัจจุบัน: มูลค่าปัจจุบันของเงินที่ผ่อนจ่ายทั้งหมด" #. MBKJZ #: sc/inc/scfuncs.hrc:528 @@ -5351,19 +5305,19 @@ #: sc/inc/scfuncs.hrc:529 msgctxt "SC_OPCODE_CUM_PRINC" msgid "The start period. The first period to be taken into account. S = 1 denotes the very first period." -msgstr "" +msgstr "งวดเริ่มต้น: งวดแรกที่จะเริ่มนับสะสม S = 1 หมายถึงงวดแรก" #. cyCEm #: sc/inc/scfuncs.hrc:530 msgctxt "SC_OPCODE_CUM_PRINC" msgid "E" -msgstr "สิ้นสุด" +msgstr "E" #. 3AMAi #: sc/inc/scfuncs.hrc:531 msgctxt "SC_OPCODE_CUM_PRINC" msgid "End period. The last period to be taken into account." -msgstr "งวดสุดท้าย งวดสุดท้ายที่คำนึงถึง" +msgstr "งวดสุดท้าย: งวดสุดท้ายที่นับสะสม" #. G7UqU #: sc/inc/scfuncs.hrc:532 @@ -5375,19 +5329,19 @@ #: sc/inc/scfuncs.hrc:533 msgctxt "SC_OPCODE_CUM_PRINC" msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end." -msgstr "ชนิด = 1 แทนครบกำหนดงวดเริ่มต้น, = 0 งวดสุดท้าย" +msgstr "ชนิด = 1 แทนการครบกำหนดที่ต้นงวด, = 0 ครบที่ปลายงวด" #. xc89X #: sc/inc/scfuncs.hrc:539 msgctxt "SC_OPCODE_CUM_IPMT" msgid "Cumulative compounded interest. Calculates the total amount of the interest share in a period for an investment with a constant interest rate." -msgstr "Cumulative compounded interest. Calculates the total amount of the interest share in a period for an investment with a constant interest rate.ดอกเบี้ยเชิงซ้อนสะสม คำนวณจำนวนส่วนแบ่งดอกเบี้ยทั้งหมดในงวดเวลาหนึ่งสำหรับการลงทุนด้วยอัตราดอกเบี้ยคงที่" +msgstr "ส่วนชำระดอกเบี้ยสะสม: คำนวณยอดชำระดอกเบี้ยสะสมของแต่ละงวด สำหรับการลงทุนที่คิดอัตราดอกเบี้ยคงที่" #. nNUsr #: sc/inc/scfuncs.hrc:540 msgctxt "SC_OPCODE_CUM_IPMT" msgid "Rate" -msgstr "อัตรา" +msgstr "อัตราดอกเบี้ย" #. XFyVW #: sc/inc/scfuncs.hrc:541 @@ -5405,7 +5359,7 @@ #: sc/inc/scfuncs.hrc:543 msgctxt "SC_OPCODE_CUM_IPMT" msgid "Payment period. The total number of periods in which the annuity (pension) is paid." -msgstr "งวดการจ่าย จำนวนงวดทั้งหมดที่จ่ายเงินรายปี (บำนาญ)" +msgstr "จำนวนงวด: จำนวนงวดทั้งหมดที่ผ่อนจ่ายเงินรายงวด (บำนาญ)" #. trvAE #: sc/inc/scfuncs.hrc:544 @@ -5417,7 +5371,7 @@ #: sc/inc/scfuncs.hrc:545 msgctxt "SC_OPCODE_CUM_IPMT" msgid "The present value. The present value or the amount the annuity is currently worth." -msgstr "ค่าปัจจุบัน ค่าปัจจุบันหรือจำนวนเงินรายปที่มีค่าในปัจจุบัน" +msgstr "มูลค่าปัจจุบัน: มูลค่าปัจจุบันของเงินที่ผ่อนจ่ายทั้งหมด" #. 4NC9T #: sc/inc/scfuncs.hrc:546 @@ -5429,19 +5383,19 @@ #: sc/inc/scfuncs.hrc:547 msgctxt "SC_OPCODE_CUM_IPMT" msgid "The start period. The first period to be taken into account. S = 1 denotes the very first period." -msgstr "" +msgstr "งวดเริ่มต้น: งวดแรกที่จะเริ่มนับสะสม S = 1 หมายถึงงวดแรก" #. kbzPo #: sc/inc/scfuncs.hrc:548 msgctxt "SC_OPCODE_CUM_IPMT" msgid "E" -msgstr "สิ้นสุด" +msgstr "E" #. 33EVk #: sc/inc/scfuncs.hrc:549 msgctxt "SC_OPCODE_CUM_IPMT" msgid "The end period. The last period to be taken into account." -msgstr "งวดสุดท้าย งวดสุดท้ายที่คำนึงถึง" +msgstr "งวดสุดท้าย: งวดสุดท้ายที่นับสะสม" #. 5v5oC #: sc/inc/scfuncs.hrc:550 @@ -5453,37 +5407,37 @@ #: sc/inc/scfuncs.hrc:551 msgctxt "SC_OPCODE_CUM_IPMT" msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end." -msgstr "ชนิด = 1 แทนครบกำหนดงวดเริ่มต้น, = 0 งวดสุดท้าย" +msgstr "ชนิด = 1 แทนการครบกำหนดที่ต้นงวด, = 0 ครบที่ปลายงวด" #. mfMoZ #: sc/inc/scfuncs.hrc:557 msgctxt "SC_OPCODE_SYD" msgid "Calculates the arithmetically declining value of an asset (depreciation) for a specified period." -msgstr "คำนวณค่าที่ลดลงแบบเลขคณิตของสินทรัพย์ (ค่าเสื่อมราคา) สำหรับงวดที่ระบุ" +msgstr "คำนวณค่าเสื่อมราคาด้วยวิธีผลรวมจำนวนปีของอายุใช้งานคงเหลือ (Sum of Year Digit Method) ในงวดเวลาที่กำหนด" #. omwrF #: sc/inc/scfuncs.hrc:558 msgctxt "SC_OPCODE_SYD" msgid "Cost" -msgstr "ต้นทุน" +msgstr "ราคาทุน" #. EYzJR #: sc/inc/scfuncs.hrc:559 msgctxt "SC_OPCODE_SYD" msgid "Acquisition costs. The initial cost of the asset." -msgstr "ต้นทุนที่ได้รับมา ต้นทุนแรกเริ่มของสินทรัพย์" +msgstr "ราคาทุนที่ได้รับมา: ราคาทุนแรกเริ่มของสินทรัพย์" #. KrdVt #: sc/inc/scfuncs.hrc:560 msgctxt "SC_OPCODE_SYD" msgid "Salvage" -msgstr "เงินชดเชย" +msgstr "ราคาซาก" #. uBpZg #: sc/inc/scfuncs.hrc:561 msgctxt "SC_OPCODE_SYD" msgid "Salvage: The remaining value of the asset at the end of its life." -msgstr "มูลค่าซาก: ค่าของสินทรัพย์ที่เหลืออยู่ เมื่อหมดอายุการใช้งาน" +msgstr "ราคาซาก: มูลค่าคงเหลือของสินทรัพย์ เมื่อหมดอายุการใช้งาน" #. qMZUE #: sc/inc/scfuncs.hrc:562 @@ -5495,19 +5449,19 @@ #: sc/inc/scfuncs.hrc:563 msgctxt "SC_OPCODE_SYD" msgid "Useful life. The number of periods in the useful life of the asset." -msgstr "อายุการใช้งาน จำนวนงวดในอายุการใช้งานของสินทรัพย์" +msgstr "อายุการใช้งาน: จำนวนงวดเวลาในอายุการใช้ประโยชน์ของสินทรัพย์" #. shx5j #: sc/inc/scfuncs.hrc:564 msgctxt "SC_OPCODE_SYD" msgid "Period" -msgstr "งวด" +msgstr "งวดเวลา" #. 3NBRL #: sc/inc/scfuncs.hrc:565 msgctxt "SC_OPCODE_SYD" msgid "Period. The depreciation period which must have the same time unit as average useful life." -msgstr "งวด งวดของการเสื่อมราคาที่ต้องมีหน่วยเวลาเหมือนกับค่าเฉลี่ยอายุการใช้งานที่ใช้ประโยชน์" +msgstr "งวดเวลา: งวดเวลาที่จะคิดค่าเสื่อมราคา ซึ่งต้องมีหน่วยเวลาเหมือนกับอายุการใช้งานเฉลี่ย" #. vhWFe #: sc/inc/scfuncs.hrc:571 @@ -5519,25 +5473,25 @@ #: sc/inc/scfuncs.hrc:572 msgctxt "SC_OPCODE_SLN" msgid "Cost" -msgstr "ต้นทุน" +msgstr "ราคาทุน" #. gfSPc #: sc/inc/scfuncs.hrc:573 msgctxt "SC_OPCODE_SLN" msgid "Acquisition cost. The initial cost of an asset." -msgstr "ต้นทุนที่ได้รับมา ต้นทุนแรกเริ่มของสินทรัพย์" +msgstr "ราคาทุนที่ได้รับมา: ราคาทุนแรกเริ่มของสินทรัพย์" #. CrHAF #: sc/inc/scfuncs.hrc:574 msgctxt "SC_OPCODE_SLN" msgid "Salvage" -msgstr "เงินชดเชย" +msgstr "ราคาซาก" #. UUGWj #: sc/inc/scfuncs.hrc:575 msgctxt "SC_OPCODE_SLN" msgid "Salvage: The remaining value of the asset at the end of its life." -msgstr "มูลค่าซาก: ค่าของสินทรัพย์ที่เหลืออยู่ เมื่อหมดอายุการใช้งาน" +msgstr "ราคาซาก: มูลค่าคงเหลือของสินทรัพย์ เมื่อหมดอายุการใช้งาน" #. rMQPS #: sc/inc/scfuncs.hrc:576 @@ -5549,37 +5503,37 @@ #: sc/inc/scfuncs.hrc:577 msgctxt "SC_OPCODE_SLN" msgid "Useful life. The number of periods in the useful life of the asset." -msgstr "อายุการใช้งาน จำนวนงวดในอายุการใช้งานของสินทรัพย์" +msgstr "อายุการใช้งาน: จำนวนงวดเวลาในอายุการใช้ประโยชน์ของสินทรัพย์" #. bAXP7 #: sc/inc/scfuncs.hrc:583 msgctxt "SC_OPCODE_DDB" msgid "Calculates the depreciation of an asset for a specific period using the double-declining balance method or declining balance factor." -msgstr "คำนวณค่าเสื่อมราคาของสินทรัพย์สำหรับการใช้งวดเฉพาะวิธีการสมดุลแบบลดลงคู่หรือปัจจัยการลดลงอย่างสมดุล" +msgstr "คำนวณค่าเสื่อมราคาของสินทรัพย์ในงวดเวลาที่กำหนด โดยใช้วิธียอดลดลงทวีคูณ (double-declining balance method) หรือใช้ตัวคูณลดยอด (declining balance factor)" #. ECRmm #: sc/inc/scfuncs.hrc:584 msgctxt "SC_OPCODE_DDB" msgid "Cost" -msgstr "ต้นทุน" +msgstr "ราคาทุน" #. BYjeB #: sc/inc/scfuncs.hrc:585 msgctxt "SC_OPCODE_DDB" msgid "Acquisition costs. The initial cost of the asset." -msgstr "ต้นทุนที่ได้รับมา ต้นทุนแรกเริ่มของสินทรัพย์" +msgstr "ราคาทุนที่ได้รับมา: ราคาทุนแรกเริ่มของสินทรัพย์" #. Vkj3N #: sc/inc/scfuncs.hrc:586 msgctxt "SC_OPCODE_DDB" msgid "Salvage" -msgstr "เงินชดเชย" +msgstr "ราคาซาก" #. aNBXv #: sc/inc/scfuncs.hrc:587 msgctxt "SC_OPCODE_DDB" msgid "Salvage: The remaining value of the asset at the end of its life." -msgstr "มูลค่าซาก: ค่าของสินทรัพย์ที่เหลืออยู่ เมื่อหมดอายุการใช้งาน" +msgstr "ราคาซาก: มูลค่าคงเหลือของสินทรัพย์ เมื่อหมดอายุการใช้งาน" #. GV6bk #: sc/inc/scfuncs.hrc:588 @@ -5591,61 +5545,61 @@ #: sc/inc/scfuncs.hrc:589 msgctxt "SC_OPCODE_DDB" msgid "Useful life. The number of periods in the useful life of the asset." -msgstr "อายุการใช้งาน จำนวนงวดในอายุการใช้งานของสินทรัพย์" +msgstr "อายุการใช้งาน: จำนวนงวดเวลาในอายุการใช้ประโยชน์ของสินทรัพย์" #. bHPSG #: sc/inc/scfuncs.hrc:590 msgctxt "SC_OPCODE_DDB" msgid "Period" -msgstr "งวด" +msgstr "งวดเวลา" #. 7xUey #: sc/inc/scfuncs.hrc:591 msgctxt "SC_OPCODE_DDB" msgid "Period. The depreciation period in the same time unit as the average useful life entry." -msgstr "งวด งวดค่าเสื่อมราคาในเวลาเดียวกับหน่วยเป็นรายการอายุการใช้งานที่ใช้ประโยชน์โดยเฉลี่ย" +msgstr "งวดเวลา: งวดเวลาที่จะคิดค่าเสื่อมราคา ซึ่งต้องมีหน่วยเวลาเหมือนกับอายุการใช้งานเฉลี่ย" #. ZNCzZ #: sc/inc/scfuncs.hrc:592 msgctxt "SC_OPCODE_DDB" msgid "Factor" -msgstr "ปัจจัย" +msgstr "ตัวคูณ" #. AApLf #: sc/inc/scfuncs.hrc:593 msgctxt "SC_OPCODE_DDB" msgid "Factor. The factor for balance decline. F = 2 means a double declining balance factor" -msgstr "ปัจจัย ปัจจัยสำหรับการลดลงอย่างสมดุล F = 2 หมายถึงปัจจัยการลดลงคู่แบบสมดุล" +msgstr "ตัวคูณ: ตัวคูณสำหรับการลดยอด F = 2 หมายถึงตัวคูณสำหรับการลดยอดแบบทวีคูณ" #. PAWDA #: sc/inc/scfuncs.hrc:599 msgctxt "SC_OPCODE_DB" msgid "Returns the real depreciation of an asset for a specified period using the fixed-declining balance method." -msgstr "ส่งกลับค่าเสื่อมราคาจริงของสินทรัพย์สำหรับงวดที่ระบุใช้วิธีสมดุลแบบลดลงคงที่" +msgstr "คำนวณค่าเสื่อมราคาของสินทรัพย์สำหรับงวดเวลาที่กำหนด โดยใช้วิธีลดยอดด้วยอัตราคงที่" #. w3E7K #: sc/inc/scfuncs.hrc:600 msgctxt "SC_OPCODE_DB" msgid "Cost" -msgstr "ต้นทุน" +msgstr "ราคาทุน" #. 6vicC #: sc/inc/scfuncs.hrc:601 msgctxt "SC_OPCODE_DB" msgid "Acquisition costs: The initial cost of the asset." -msgstr "ต้นทุนที่ได้รับมา: ต้นทุนแรกเริ่มของสินทรัพย์" +msgstr "ราคาทุนที่ได้รับมา: ราคาทุนแรกเริ่มของสินทรัพย์" #. jsYeb #: sc/inc/scfuncs.hrc:602 msgctxt "SC_OPCODE_DB" msgid "Salvage" -msgstr "เงินชดเชย" +msgstr "ราคาซาก" #. J2fyR #: sc/inc/scfuncs.hrc:603 msgctxt "SC_OPCODE_DB" msgid "Salvage: The remaining value of the asset at the end of its life." -msgstr "มูลค่าซาก: ค่าของสินทรัพย์ที่เหลืออยู่ เมื่อหมดอายุการใช้งาน" +msgstr "ราคาซาก: มูลค่าคงเหลือของสินทรัพย์ เมื่อหมดอายุการใช้งาน" #. ycHNJ #: sc/inc/scfuncs.hrc:604 @@ -5657,19 +5611,19 @@ #: sc/inc/scfuncs.hrc:605 msgctxt "SC_OPCODE_DB" msgid "Useful life. The number of periods in the useful life of the asset." -msgstr "อายุการใช้งาน จำนวนงวดในอายุการใช้งานของสินทรัพย์" +msgstr "อายุการใช้งาน: จำนวนงวดเวลาในอายุการใช้ประโยชน์ของสินทรัพย์" #. Et7Hg #: sc/inc/scfuncs.hrc:606 msgctxt "SC_OPCODE_DB" msgid "Period" -msgstr "งวด" +msgstr "งวดเวลา" #. dskVE #: sc/inc/scfuncs.hrc:607 msgctxt "SC_OPCODE_DB" msgid "Periods: The period for which the depreciation is calculated. The time unit used for period must be the same as that for the useful life." -msgstr "Periods: The period for which the depreciation is calculated. The time unit used for period must be the same as that for the useful life.งวด: งวดสำหรับคำนวณค่าเสื่อมราคา หน่วยเวลาที่ใช้สำหรับงวดต้องเหมือนกับอายุการใช้งานที่ใช้ประโยชน์" +msgstr "งวดเวลา: งวดเวลาที่จะคิดค่าเสื่อมราคา ซึ่งต้องมีหน่วยเวลาเหมือนกับอายุการใช้งาน" #. vz9CU #: sc/inc/scfuncs.hrc:608 @@ -5687,31 +5641,31 @@ #: sc/inc/scfuncs.hrc:615 msgctxt "SC_OPCODE_VBD" msgid "Variable declining balance. Returns the declining balance depreciation for a particular period." -msgstr "ความสมดุลของการลดลงของตัวแปร ส่งกลับค่าเสื่อมราคาที่สมดุลที่ลดลงสำหรับงวดเฉพาะ" +msgstr "ค่าเสื่อมราคาแบบยอดลดลงผันแปร (Variable Declining Balance): คำนวณค่าเสื่อมราคาของงวดเวลาที่กำหนดด้วยวิธีลดยอดตั้งต้นสำหรับแต่ละงวดเวลา" #. 6B2pr #: sc/inc/scfuncs.hrc:616 msgctxt "SC_OPCODE_VBD" msgid "Cost" -msgstr "ต้นทุน" +msgstr "ราคาทุน" #. DEgvG #: sc/inc/scfuncs.hrc:617 msgctxt "SC_OPCODE_VBD" msgid "Cost. The initial cost of the asset." -msgstr "ต้นทุน ต้นทุนแรกเริ่มของสินทรัพย์" +msgstr "ราคาทุน: ราคาทุนแรกเริ่มของสินทรัพย์" #. W2GXE #: sc/inc/scfuncs.hrc:618 msgctxt "SC_OPCODE_VBD" msgid "Salvage" -msgstr "เงินชดเชย" +msgstr "ราคาซาก" #. HALLL #: sc/inc/scfuncs.hrc:619 msgctxt "SC_OPCODE_VBD" msgid "Salvage. The salvage value of an asset at the end of its useful life." -msgstr "เงินชดเชย ค่าเงินชดเชยของสินทรัพย์ที่จุดสิ้นสุดของอายุการใช้งานที่ใช้ประโยชน์" +msgstr "ราคาซาก: มูลค่าคงเหลือของสินทรัพย์ เมื่อหมดอายุการใช้ประโยชน์" #. 8UMes #: sc/inc/scfuncs.hrc:620 @@ -5723,109 +5677,103 @@ #: sc/inc/scfuncs.hrc:621 msgctxt "SC_OPCODE_VBD" msgid "Useful life. The number of periods in the useful life of the asset." -msgstr "อายุการใช้งาน จำนวนงวดในอายุการใช้งานของสินทรัพย์" +msgstr "อายุการใช้งาน: จำนวนงวดเวลาในอายุการใช้ประโยชน์ของสินทรัพย์" #. 2ETCS #: sc/inc/scfuncs.hrc:622 msgctxt "SC_OPCODE_VBD" msgid "Start" -msgstr "เริ่มต้น" +msgstr "งวดเริ่มต้น" #. J9NcQ #: sc/inc/scfuncs.hrc:623 msgctxt "SC_OPCODE_VBD" msgid "Start. The first period for depreciation in the same time unit as the useful life." -msgstr "เริ่มต้น งวดแรกสำหรับค่าเสื่อมราคาในหน่วยเวลาที่เหมือนกับอายุการใช้งานที่ใช้ประโยชน์" +msgstr "งวดเริ่มต้น: งวดแรกที่จะเริ่มคิดค่าเสื่อมราคา โดยอยู่ในหน่วยเวลาเดียวอายุการใช้งาน" #. 5YyiZ #: sc/inc/scfuncs.hrc:624 msgctxt "SC_OPCODE_VBD" msgid "End" -msgstr "สิ้นสุด" +msgstr "งวดสิ้นสุด" #. QoA9A #: sc/inc/scfuncs.hrc:625 msgctxt "SC_OPCODE_VBD" msgid "End. The last period of the depreciation using the same time unit as for the useful life." -msgstr "สิ้นสุด งวดสุดท้ายของค่าเสื่อมราคาใช้หน่วยเวลาเดียวกับอายุการใช้งานที่ใช้ประโยชน์" +msgstr "งวดสิ้นสุด: งวดสุดท้ายที่จบการคิดค่าเสื่อมราคา โดยอยู่ในหน่วยเวลาเดียวกับอายุการใช้งาน" #. RMiCB #: sc/inc/scfuncs.hrc:626 msgctxt "SC_OPCODE_VBD" msgid "Factor" -msgstr "ปัจจัย" +msgstr "ตัวคูณ" #. FSmh9 #: sc/inc/scfuncs.hrc:627 -#, fuzzy msgctxt "SC_OPCODE_VBD" msgid "Factor. The factor for the reduction of the depreciation. Factor = 2 denotes double rate depreciation." -msgstr "ปัจจัย ปัจจัยสำหรับการลดลงของค่าเสื่อมราคา F = 2 แทนค่าเสื่อมราคาอัตราสองเท่า" +msgstr "ตัวคูณ: ตัวคูณสำหรับการลดยอดมูลค่า F = 2 หมายถึงตัวคูณสำหรับการลดยอดแบบทวีคูณ" #. KbsBR #: sc/inc/scfuncs.hrc:628 -#, fuzzy msgctxt "SC_OPCODE_VBD" msgid "NoSwitch" -msgstr "สลับ" +msgstr "NoSwitch" #. BWZ6F #: sc/inc/scfuncs.hrc:629 msgctxt "SC_OPCODE_VBD" msgid "NoSwitch = 0 denotes switch to linear depreciation, NoSwitch = 1 do not switch." -msgstr "" +msgstr "NoSwitch = 0 หมายถึงให้สลับไปใช้การเสื่อมราคาแบบเส้นตรง, NoSwitch = 1 หมายถึงไม่สลับ" #. 7A9Cf #: sc/inc/scfuncs.hrc:635 -#, fuzzy msgctxt "SC_OPCODE_EFFECT" msgid "Calculates the annual net interest rate for a nominal interest rate." -msgstr "คำนวณอัตราดอกเบี้ยสุทธิประจำปีสำหรับอัตราดอกเบี้ยน้อยนิด" +msgstr "คำนวณอัตราดอกเบี้ยสุทธิที่จ่ายจริงต่อปีสำหรับอัตราดอกเบี้ยที่ระบุไว้" #. BcSMW #: sc/inc/scfuncs.hrc:636 -#, fuzzy msgctxt "SC_OPCODE_EFFECT" msgid "NOM" msgstr "NOM" #. GGDNk #: sc/inc/scfuncs.hrc:637 -#, fuzzy msgctxt "SC_OPCODE_EFFECT" msgid "Nominal interest" -msgstr "ดอกเบี้ยน้อยนิด" +msgstr "อัตราดอกเบี้ยที่ระบุไว้" #. EZJye #: sc/inc/scfuncs.hrc:638 msgctxt "SC_OPCODE_EFFECT" msgid "P" -msgstr "งวด" +msgstr "P" #. oG7XH #: sc/inc/scfuncs.hrc:639 -#, fuzzy msgctxt "SC_OPCODE_EFFECT" msgid "Periods. The number of interest payments per year." -msgstr "งวด จำนวนการจ่ายดอกเบี้ยต่อปี" +msgstr "จำนวนงวด: จำนวนครั้งของการจ่ายดอกเบี้ยต่อปี" #. yCgjr #: sc/inc/scfuncs.hrc:645 msgctxt "SC_OPCODE_NOMINAL" msgid "Calculates the yearly nominal interest rate as an effective interest rate." -msgstr "คำนวณอัตราดอกเบี้ยน้อยนิดต่อปีเป็นอัตราดอกเบี้ยที่มีผล" +msgstr "คำนวณอัตราดอกเบี้ยที่ระบุต่อปีจากอัตราดอกเบี้ยสุทธิที่จ่ายจริง" #. N93Eg #: sc/inc/scfuncs.hrc:646 msgctxt "SC_OPCODE_NOMINAL" msgid "Effective rate" -msgstr "อัตราที่แท้จริง" +msgstr "อัตราดอกเบี้ยที่จ่ายจริง" #. nruwX #: sc/inc/scfuncs.hrc:647 msgctxt "SC_OPCODE_NOMINAL" msgid "The effective interest rate" -msgstr "อัตราดอกเบี้ยที่มีผล" +msgstr "อัตราดอกเบี้ยที่จ่ายจริง" #. rBAgM #: sc/inc/scfuncs.hrc:648 @@ -5837,132 +5785,127 @@ #: sc/inc/scfuncs.hrc:649 msgctxt "SC_OPCODE_NOMINAL" msgid "Periods. The number of interest payment per year." -msgstr "งวด จำนวนการจ่ายดอกเบี้ยต่อปี" +msgstr "จำนวนงวด: จำนวนครั้งของการจ่ายดอกเบี้ยต่อปี" #. 4pCL3 #: sc/inc/scfuncs.hrc:655 msgctxt "SC_OPCODE_NPV" msgid "Net present value. Calculates the net present value of an investment based on a series of periodic payments and a discount rate." -msgstr "Net present value. Calculates the net present value of an investment based on a series of periodic payments and a discount rate.ค่าปัจจุบันสุทธิ คำนวณค่าปัจจุบันสุทธิของการลงทุนบนพื้นฐานลำดับการจ่ายเงินและอัตราส่วนลดเป็นงวด" +msgstr "มูลค่าปัจจุบันสุทธิ: คำนวณมูลค่าปัจจุบันสุทธิของการลงทุนที่จ่ายเป็นงวดๆ โดยมีอัตราคิดลด (discount rate)" #. bGMWF #: sc/inc/scfuncs.hrc:656 msgctxt "SC_OPCODE_NPV" msgid "Rate" -msgstr "อัตรา" +msgstr "อัตราคิดลด" #. EdCXc #: sc/inc/scfuncs.hrc:657 msgctxt "SC_OPCODE_NPV" msgid "The rate of discount for one period." -msgstr "อัตราส่วนลดสำหรับหนึ่งงวด" +msgstr "อัตราคิดลดสำหรับแต่ละงวด" #. cGmzv #: sc/inc/scfuncs.hrc:658 -#, fuzzy msgctxt "SC_OPCODE_NPV" msgid "Value " -msgstr "ค่า" +msgstr "มูลค่า " #. HKDEV #: sc/inc/scfuncs.hrc:659 -#, fuzzy msgctxt "SC_OPCODE_NPV" msgid "Value 1, value 2,... are arguments representing payments and income." -msgstr "ค่า 1, ค่า 2,... เป็นอาร์กิวเม้นท์ 1 ถึง 30 แทนการจ่ายเงินและรายได้" +msgstr "มูลค่า 1, มูลค่า 2,... เป็นอาร์กิวเมนต์แทนการจ่ายเงินและรายได้" #. zwY4W #: sc/inc/scfuncs.hrc:665 msgctxt "SC_OPCODE_IRR" msgid "Returns the actuarial rate of interest of an investment excluding costs or profits." -msgstr "ส่งกลับอัตราดอกเบี้ยของการลงทุนเกี่ยวกับสถิติการประกันภัยที่ไม่รวมต้นทุนหรือกำไร" +msgstr "คำนวณอัตราผลตอบแทนภายในในแบบเงินคืนของประกันภัยของการลงทุนโดยไม่รวมต้นทุนหรือกำไร" #. TLAzY #: sc/inc/scfuncs.hrc:666 msgctxt "SC_OPCODE_IRR" msgid "Values" -msgstr "ค่า" +msgstr "มูลค่า" #. rpbBe #: sc/inc/scfuncs.hrc:667 msgctxt "SC_OPCODE_IRR" msgid "An array or reference to cells whose contents correspond to the payments." -msgstr "อาเรย์หรือการอ้างอิงไปยังช่องที่เนื้อหาสอดคล้องกับการจ่ายเงิน" +msgstr "อาร์เรย์หรือการอ้างอิงไปยังเซลล์ที่มีเนื้อหาการจ่ายเงินงวดต่างๆ" #. ZA6d7 #: sc/inc/scfuncs.hrc:668 msgctxt "SC_OPCODE_IRR" msgid "Guess" -msgstr "คะเน" +msgstr "ค่าคาดคะเน" #. uxdTD #: sc/inc/scfuncs.hrc:669 msgctxt "SC_OPCODE_IRR" msgid "Guess. An estimated value of the rate of return to be used for the iteration calculation." -msgstr "คะเน ค่าโดยประมาณของอัตราของการส่งกลับที่ใช้สำหรับการคำนวณซ้ำ" +msgstr "ค่าคาดคะเน: อัตราผลตอบแทนประมาณการสำหรับการคำนวณด้วยวิธีทวนซ้ำ" #. 9kYck #: sc/inc/scfuncs.hrc:675 msgctxt "SC_OPCODE_MIRR" msgid "Returns the modified internal rate of return for a series of investments." -msgstr "ส่งกลับอัตราภายในที่ดัดแปลงของการส่งกลับลำดับการลงทุน" +msgstr "คำนวณอัตราผลตอบแทนภายในที่มีการปรับแล้วของการลงทุนต่อเนื่อง" #. pCnP9 #: sc/inc/scfuncs.hrc:676 msgctxt "SC_OPCODE_MIRR" msgid "Values" -msgstr "ค่า" +msgstr "มูลค่า" #. D6tGr #: sc/inc/scfuncs.hrc:677 msgctxt "SC_OPCODE_MIRR" msgid "An array or reference to cells whose contents correspond to the payments." -msgstr "อาเรย์หรือการอ้างอิงไปยังช่องที่เนื้อหาสอดคล้องกับการจ่ายเงิน" +msgstr "อาร์เรย์หรือการอ้างอิงไปยังเซลล์ที่มีเนื้อหาการจ่ายเงินงวดต่างๆ" #. yhrru #: sc/inc/scfuncs.hrc:678 -#, fuzzy msgctxt "SC_OPCODE_MIRR" msgid "Investment" -msgstr "ลงทุน" +msgstr "อัตราดอกเบี้ยลงทุน" #. Mp4Sr #: sc/inc/scfuncs.hrc:679 msgctxt "SC_OPCODE_MIRR" msgid "Interest rate for investments (the negative values in the array)." -msgstr "อัตราดอกเบี้ยสำหรับการลงทุน (ค่าติดลบในอาเรย์)" +msgstr "อัตราดอกเบี้ยสำหรับการลงทุน (ค่าลบในอาร์เรย์)" #. zhJmQ #: sc/inc/scfuncs.hrc:680 -#, fuzzy msgctxt "SC_OPCODE_MIRR" msgid "Reinvest rate" -msgstr "อัตรา_การลงทุนซ้ำ" +msgstr "อัตราดอกเบี้ยลงทุนซ้ำ" #. p87Mu #: sc/inc/scfuncs.hrc:681 -#, fuzzy msgctxt "SC_OPCODE_MIRR" msgid "Interest rate for reinvestments (the positive values in the array)." -msgstr "อัตราดอกเบี้ยสำหรับการลงทุน (ค่าติดลบในอาเรย์)" +msgstr "อัตราดอกเบี้ยสำหรับการลงทุนซ้ำ (ค่าบวกในอาร์เรย์)" #. xeEfA #: sc/inc/scfuncs.hrc:687 msgctxt "SC_OPCODE_ISPMT" msgid "Returns the amount of interest for constant amortization rates." -msgstr "ส่งกลับจำนวนดอกเบี้ยสำหรับอัตราหักลบกลบหนี้คงที่" +msgstr "คำนวณส่วนจ่ายดอกเบี้ยสำหรับการผ่อนชำระในอัตราดอกเบี้ยคงที่" #. QDFA5 #: sc/inc/scfuncs.hrc:688 msgctxt "SC_OPCODE_ISPMT" msgid "Rate" -msgstr "อัตรา" +msgstr "อัตราดอกเบี้ย" #. Q35Lv #: sc/inc/scfuncs.hrc:689 msgctxt "SC_OPCODE_ISPMT" msgid "Interest rate for a single amortization rate." -msgstr "อัตราดอกเบี้ยสำหรับอัตราหักลบกลบหนี้เชิงเดี่ยว" +msgstr "อัตราดอกเบี้ยสำหรับการผ่อนจ่ายอัตราเดียว" #. tUhDa #: sc/inc/scfuncs.hrc:690 @@ -5974,50 +5917,46 @@ #: sc/inc/scfuncs.hrc:691 msgctxt "SC_OPCODE_ISPMT" msgid "Number of amortization periods for the calculation of the interest." -msgstr "จำนวนงวดหักลบกลบหนี้สำหรับการคำนวณดอกเบี้ย" +msgstr "งวดผ่อนชำระที่จะคำนวณดอกเบี้ย" #. g4ATk #: sc/inc/scfuncs.hrc:692 -#, fuzzy msgctxt "SC_OPCODE_ISPMT" msgid "Total periods" -msgstr "ทั้งหมด_งวด" +msgstr "จำนวนงวดทั้งหมด" #. iYD4K #: sc/inc/scfuncs.hrc:693 msgctxt "SC_OPCODE_ISPMT" msgid "Sum total of amortization periods." -msgstr "ผลรวมทั้งหมดของงวดในการหักลบกลบหนี้" +msgstr "จำนวนงวดผ่อนชำระทั้งหมด" #. iwDL3 #: sc/inc/scfuncs.hrc:694 -#, fuzzy msgctxt "SC_OPCODE_ISPMT" msgid "Investment" -msgstr "ลงทุน" +msgstr "เงินต้น" #. wry9z #: sc/inc/scfuncs.hrc:695 msgctxt "SC_OPCODE_ISPMT" msgid "Amount of the investment." -msgstr "จำนวนเงินลงทุน" +msgstr "จำนวนเงินต้น" #. 566bB #: sc/inc/scfuncs.hrc:701 -#, fuzzy msgctxt "SC_OPCODE_PDURATION" msgid "Duration. Calculates the number of periods required by an investment to attain the desired value." -msgstr "ระยะเวลา คำนวณจำนวนงวดที่ต้องการโดยการลงทุนเพื่อได้รับค่าที่ปรารถนา" +msgstr "ระยะเวลา: คำนวณจำนวนงวดที่ต้องใช้ในการลงทุนเพื่อได้มูลค่าที่ต้องการ" #. 5AqDU #: sc/inc/scfuncs.hrc:702 msgctxt "SC_OPCODE_PDURATION" msgid "Rate" -msgstr "อัตรา" +msgstr "อัตราดอกเบี้ย" #. 48B25 #: sc/inc/scfuncs.hrc:703 -#, fuzzy msgctxt "SC_OPCODE_PDURATION" msgid "The constant rate of interest." msgstr "อัตราดอกเบี้ยคงที่" @@ -6030,10 +5969,9 @@ #. zJDGh #: sc/inc/scfuncs.hrc:705 -#, fuzzy msgctxt "SC_OPCODE_PDURATION" msgid "The present value. The current value of the investment." -msgstr "ค่าปัจจุบัน ค่าปัจจุบันของการลงทุน" +msgstr "มูลค่าปัจจุบัน: มูลค่าปัจจุบันของเงินต้น" #. ADZAS #: sc/inc/scfuncs.hrc:706 @@ -6045,20 +5983,19 @@ #: sc/inc/scfuncs.hrc:707 msgctxt "SC_OPCODE_PDURATION" msgid "The future value of the investment." -msgstr "ค่าอนาคตของการลงทุน" +msgstr "มูลค่าในอนาคตของเงินลงทุน" #. fCHvr #: sc/inc/scfuncs.hrc:713 msgctxt "SC_OPCODE_RRI" msgid "Interest. Calculates the interest rate which represents the rate of return from an investment." -msgstr "ดอกเบี้ย คำนวณอัตราดอกเบี้ยที่ใช้แทนอัตราของผลตอบแทนจากการลงทุน" +msgstr "ดอกเบี้ย: คำนวณอัตราดอกเบี้ยซึ่งแสดงถึงอัตราผลตอบแทนของการลงทุน" #. STJ7L #: sc/inc/scfuncs.hrc:714 -#, fuzzy msgctxt "SC_OPCODE_RRI" msgid "Periods" -msgstr "งวด" +msgstr "จำนวนงวด" #. DwcDi #: sc/inc/scfuncs.hrc:715 @@ -6076,7 +6013,7 @@ #: sc/inc/scfuncs.hrc:717 msgctxt "SC_OPCODE_RRI" msgid "Present value. The current value of the investment." -msgstr "ค่าปัจจุบัน ค่าปัจจุบันของการลงทุน" +msgstr "มูลค่าปัจจุบัน: มูลค่าปัจจุบันของเงินต้น" #. 83egL #: sc/inc/scfuncs.hrc:718 @@ -6088,13 +6025,13 @@ #: sc/inc/scfuncs.hrc:719 msgctxt "SC_OPCODE_RRI" msgid "The future value of the investment." -msgstr "ค่าอนาคตของการลงทุน" +msgstr "มูลค่าในอนาคตของเงินลงทุน" #. XPjdG #: sc/inc/scfuncs.hrc:725 msgctxt "SC_OPCODE_IS_REF" msgid "Returns TRUE if value is a reference." -msgstr "ส่งกลับ TRUE ถ้าค่าเป็นการอ้างอิง" +msgstr "คืนค่า TRUE ถ้าค่าเป็นการอ้างอิง" #. kC284 #: sc/inc/scfuncs.hrc:726 @@ -6106,13 +6043,13 @@ #: sc/inc/scfuncs.hrc:727 msgctxt "SC_OPCODE_IS_REF" msgid "The value to be tested." -msgstr "ค่าที่ถูกทดสอบ" +msgstr "ค่าที่จะทดสอบ" #. Ajcxx #: sc/inc/scfuncs.hrc:733 msgctxt "SC_OPCODE_IS_ERR" msgid "Returns TRUE if the value is an error value not equal to #N/A." -msgstr "ส่งกลับ TRUE ถ้าค่าเป็นค่าผิดพลาดที่ไม่เท่ากับ #N/A" +msgstr "คืนค่า TRUE ถ้าค่าเป็นค่าผิดพลาดที่ไม่ใช่ #N/A" #. 6Gdng #: sc/inc/scfuncs.hrc:734 @@ -6124,13 +6061,13 @@ #: sc/inc/scfuncs.hrc:735 msgctxt "SC_OPCODE_IS_ERR" msgid "The value to be tested." -msgstr "ค่าที่ถูกทดสอบ" +msgstr "ค่าที่จะทดสอบ" #. D4RCC #: sc/inc/scfuncs.hrc:741 msgctxt "SC_OPCODE_IS_ERROR" msgid "Returns TRUE if the value is an error value." -msgstr "ส่งกลับ TRUE ถ้าค่าเป็นค่าผิดพลาด" +msgstr "คืนค่า TRUE ถ้าค่าเป็นค่าผิดพลาด" #. FfG9z #: sc/inc/scfuncs.hrc:742 @@ -6142,13 +6079,13 @@ #: sc/inc/scfuncs.hrc:743 msgctxt "SC_OPCODE_IS_ERROR" msgid "The value to be tested." -msgstr "ค่าที่ถูกทดสอบ" +msgstr "ค่าที่จะทดสอบ" #. yFuFE #: sc/inc/scfuncs.hrc:749 msgctxt "SC_OPCODE_IS_EMPTY" msgid "Returns TRUE if value refers to an empty cell." -msgstr "ส่งกลับ TRUE ถ้าค่าอ้างถึงช่องว่าง" +msgstr "คืนค่า TRUE ถ้าค่าอ้างถึงเซลล์ว่าง" #. jzqbu #: sc/inc/scfuncs.hrc:750 @@ -6160,13 +6097,13 @@ #: sc/inc/scfuncs.hrc:751 msgctxt "SC_OPCODE_IS_EMPTY" msgid "The value to be tested." -msgstr "ค่าที่ถูกทดสอบ" +msgstr "ค่าที่จะทดสอบ" #. KopZh #: sc/inc/scfuncs.hrc:757 msgctxt "SC_OPCODE_IS_LOGICAL" msgid "Returns TRUE if the value carries a logical number format." -msgstr "ส่งกลับ TRUE ถ้าค่ามีรูปแบบตัวเลขตามตรรกะ" +msgstr "คืนค่า TRUE ถ้าค่าเป็นค่าตรรกะ" #. JGeuo #: sc/inc/scfuncs.hrc:758 @@ -6178,13 +6115,13 @@ #: sc/inc/scfuncs.hrc:759 msgctxt "SC_OPCODE_IS_LOGICAL" msgid "The value to be tested." -msgstr "ค่าที่ถูกทดสอบ" +msgstr "ค่าที่จะทดสอบ" #. YSyGh #: sc/inc/scfuncs.hrc:765 msgctxt "SC_OPCODE_IS_NV" msgid "Returns TRUE if value equals #N/A." -msgstr "ส่งกลับ TRUE ถ้าค่าเท่ากับ #N/A" +msgstr "คืนค่า TRUE ถ้าค่าเป็น #N/A" #. A2CUm #: sc/inc/scfuncs.hrc:766 @@ -6196,13 +6133,13 @@ #: sc/inc/scfuncs.hrc:767 msgctxt "SC_OPCODE_IS_NV" msgid "The value to be tested." -msgstr "ค่าที่ถูกทดสอบ" +msgstr "ค่าที่จะทดสอบ" #. N7VEW #: sc/inc/scfuncs.hrc:773 msgctxt "SC_OPCODE_IS_NON_STRING" msgid "Returns TRUE if the value is not text." -msgstr "ส่งกลับ TRUE ถ้าค่าไม่ใช่ข้อความ" +msgstr "คืนค่า TRUE ถ้าค่าไม่ใช่ข้อความ" #. CTqPF #: sc/inc/scfuncs.hrc:774 @@ -6214,13 +6151,13 @@ #: sc/inc/scfuncs.hrc:775 msgctxt "SC_OPCODE_IS_NON_STRING" msgid "The value to be tested." -msgstr "ค่าที่ถูกทดสอบ" +msgstr "ค่าที่จะทดสอบ" #. 2j93h #: sc/inc/scfuncs.hrc:781 msgctxt "SC_OPCODE_IS_STRING" msgid "Returns TRUE if value is text." -msgstr "ส่งกลับ TRUE ถ้าค่าเป็นข้อความ" +msgstr "คืนค่า TRUE ถ้าค่าเป็นข้อความ" #. gJ2mQ #: sc/inc/scfuncs.hrc:782 @@ -6232,13 +6169,13 @@ #: sc/inc/scfuncs.hrc:783 msgctxt "SC_OPCODE_IS_STRING" msgid "The value to be tested." -msgstr "ค่าที่ถูกทดสอบ" +msgstr "ค่าที่จะทดสอบ" #. GNhGh #: sc/inc/scfuncs.hrc:789 msgctxt "SC_OPCODE_IS_VALUE" msgid "Returns TRUE if value is a number." -msgstr "ส่งกลับ TRUE ถ้าค่าเป็นตัวเลข" +msgstr "คืนค่า TRUE ถ้าค่าเป็นตัวเลข" #. nnqdi #: sc/inc/scfuncs.hrc:790 @@ -6250,44 +6187,43 @@ #: sc/inc/scfuncs.hrc:791 msgctxt "SC_OPCODE_IS_VALUE" msgid "The value to be tested." -msgstr "ค่าที่ถูกทดสอบ" +msgstr "ค่าที่จะทดสอบ" #. FYhn6 #: sc/inc/scfuncs.hrc:797 msgctxt "SC_OPCODE_IS_FORMULA" msgid "Returns TRUE if the cell is a formula cell." -msgstr "ส่งกลับ TRUE ถ้าเป็นช่องสูตร" +msgstr "คืนค่า TRUE ถ้าเซลล์เป็นเซลล์สูตร" #. PnGFr #: sc/inc/scfuncs.hrc:798 msgctxt "SC_OPCODE_IS_FORMULA" msgid "Reference" -msgstr "อ้างอิง" +msgstr "การอ้างอิง" #. 8ZsKf #: sc/inc/scfuncs.hrc:799 -#, fuzzy msgctxt "SC_OPCODE_IS_FORMULA" msgid "The cell to be tested." -msgstr "ค่าที่ถูกทดสอบ" +msgstr "เซลล์ที่จะทดสอบ" #. 7dDn8 #: sc/inc/scfuncs.hrc:805 msgctxt "SC_OPCODE_FORMULA" msgid "Returns the formula of a formula cell." -msgstr "ส่งกลับสูตรของช่อง" +msgstr "คืนค่าสูตรของเซลล์" #. 8ZmRa #: sc/inc/scfuncs.hrc:806 msgctxt "SC_OPCODE_FORMULA" msgid "Reference" -msgstr "อ้างอิง" +msgstr "การอ้างอิง" #. bJjWf #: sc/inc/scfuncs.hrc:807 msgctxt "SC_OPCODE_FORMULA" msgid "The formula cell." -msgstr "ช่องสูตร" +msgstr "เซลล์สูตร" #. yKm8E #: sc/inc/scfuncs.hrc:813 @@ -6305,19 +6241,19 @@ #: sc/inc/scfuncs.hrc:815 msgctxt "SC_OPCODE_N" msgid "The value to be interpreted as a number." -msgstr "ค่าที่ถูกตีความเป็นตัวเลข" +msgstr "ค่าที่จะตีความเป็นตัวเลข" #. AEGQL #: sc/inc/scfuncs.hrc:821 msgctxt "SC_OPCODE_NO_VALUE" msgid "Not available. Returns the error value #N/A." -msgstr "ใช้ไม่ได้ ส่งกลับค่า #N/A ผิดพลาด" +msgstr "ไม่มีข้อมูล: คืนค่าผิดพลาด #N/A" #. Q7UfD #: sc/inc/scfuncs.hrc:827 msgctxt "SC_OPCODE_TYPE" msgid "Returns the data type of a value (1 = number, 2 = text, 4 = Boolean value, 8 = formula, 16 = error value, 64 = array)." -msgstr "" +msgstr "คืนค่าชนิดข้อมูลของค่า (1 = ตัวเลข, 2 = ข้อความ, 4 = ค่าบูลีน, 8 = สูตร, 16 = ค่าผิดพลาด, 64 = อาร์เรย์)" #. NSwsV #: sc/inc/scfuncs.hrc:828 @@ -6329,125 +6265,121 @@ #: sc/inc/scfuncs.hrc:829 msgctxt "SC_OPCODE_TYPE" msgid "The value for which the data type is to be determined." -msgstr "ค่าสำหรับชนิดของข้อมูลที่ถูกกำหนด" +msgstr "ค่าที่จะพิจารณาชนิดข้อมูล" #. VP7rD #: sc/inc/scfuncs.hrc:835 msgctxt "SC_OPCODE_CELL" msgid "Determines information about address, formatting or contents of a cell." -msgstr "กำหนดข้อมูลเกี่ยวกับที่อยู่, การจัดรูปแบบหรือเนื้อหาของช่อง" +msgstr "พิจารณาข้อมูลเกี่ยวกับที่อยู่, การจัดรูปแบบ หรือเนื้อหาของเซลล์" #. G9SiV #: sc/inc/scfuncs.hrc:836 -#, fuzzy msgctxt "SC_OPCODE_CELL" msgid "Info type" -msgstr "ข้อมูล_ชนิด" +msgstr "รายการข้อมูล" #. fUHwm #: sc/inc/scfuncs.hrc:837 msgctxt "SC_OPCODE_CELL" msgid "String that specifies the type of information." -msgstr "สายอักขระที่ระบุชนิดของข้อมูล" +msgstr "สายอักขระที่ระบุรายการข้อมูลที่ต้องการ" #. XYdFV #: sc/inc/scfuncs.hrc:838 msgctxt "SC_OPCODE_CELL" msgid "Reference" -msgstr "อ้างอิง" +msgstr "การอ้างอิง" #. eBw5E #: sc/inc/scfuncs.hrc:839 msgctxt "SC_OPCODE_CELL" msgid "The position of the cell you want to examine." -msgstr "ตำแหน่งของช่องที่คุณต้องการพิจารณา" +msgstr "ตำแหน่งของเซลล์ที่ต้องการพิจารณา" #. Dyn4C #: sc/inc/scfuncs.hrc:845 -#, fuzzy msgctxt "SC_OPCODE_CURRENT" msgid "Calculates the current value of the formula at the present location." -msgstr "คำนวณค่าปัจจุบันของสูตร ณ ที่ตั้งปัจจุบัน " +msgstr "คำนวณค่าปัจจุบันของสูตร ณ ตำแหน่งปัจจุบัน" #. yQMAM #: sc/inc/scfuncs.hrc:851 msgctxt "SC_OPCODE_FALSE" msgid "Defines the logical value as FALSE." -msgstr "ระบุค่าทางตรรกะเป็น เท็จ" +msgstr "กำหนดค่าตรรกะเป็น FALSE" #. gBTKc #: sc/inc/scfuncs.hrc:857 msgctxt "SC_OPCODE_NOT" msgid "Reverses the value of the argument." -msgstr "สงวนค่าของอาร์กิวเม้นท์" +msgstr "กลับค่าตรรกะของอาร์กิวเมนต์" #. RFgjB #: sc/inc/scfuncs.hrc:858 msgctxt "SC_OPCODE_NOT" msgid "Logical value" -msgstr "ค่าทางตรรกะ" +msgstr "ค่าตรรกะ" #. AjEum #: sc/inc/scfuncs.hrc:859 msgctxt "SC_OPCODE_NOT" msgid "An expression that can be either TRUE or FALSE." -msgstr "นิพจน์ที่สามารถเป็นจริงหรือเท็จเพียงอย่างเดียว" +msgstr "นิพจน์ที่สามารถเป็นจริงหรือเท็จ" #. LzbKn #: sc/inc/scfuncs.hrc:865 msgctxt "SC_OPCODE_TRUE" msgid "Returns the logical value TRUE." -msgstr "ส่งกลับค่าทางตรรกะ TRUE" +msgstr "คืนค่าตรรกะ TRUE" #. v3TGN #: sc/inc/scfuncs.hrc:871 msgctxt "SC_OPCODE_IF" msgid "Specifies a logical test to be performed." -msgstr "ระบุการทดสอบทางตรรกะที่จะถูกแสดง" +msgstr "ระบุการทดสอบทางตรรกะที่จะกระทำ" #. MYB24 #: sc/inc/scfuncs.hrc:872 msgctxt "SC_OPCODE_IF" msgid "Test" -msgstr "ทดสอบ" +msgstr "การทดสอบ" #. CTh7g #: sc/inc/scfuncs.hrc:873 msgctxt "SC_OPCODE_IF" msgid "Any value or expression which can be either TRUE or FALSE." -msgstr "ค่าหรือนิพจน์ใดๆ ที่สามารถเป็นจริงหรือเท็จเพียงอย่างเดียว" +msgstr "ค่าหรือนิพจน์ใดๆ ที่สามารถเป็นจริงหรือเท็จ" #. 7GF68 #: sc/inc/scfuncs.hrc:874 -#, fuzzy msgctxt "SC_OPCODE_IF" msgid "Then value" -msgstr "ฉะนั้น_ค่า" +msgstr "ค่าเมื่อเป็นจริง" #. 6D8BZ #: sc/inc/scfuncs.hrc:875 msgctxt "SC_OPCODE_IF" msgid "The result of the function if the logical test returns a TRUE." -msgstr "ผลลัพธ์ของฟังก์ชันถ้าการทดสอบทางตรรกะส่งกลับ TRUE" +msgstr "ผลลัพธ์ของฟังก์ชันถ้าผลการทดสอบทางตรรกะเป็น TRUE" #. 6nEAt #: sc/inc/scfuncs.hrc:876 -#, fuzzy msgctxt "SC_OPCODE_IF" msgid "Otherwise value" -msgstr "มิฉะนั้น_ค่า" +msgstr "ค่าเมื่อเป็นเท็จ" #. eEZDV #: sc/inc/scfuncs.hrc:877 msgctxt "SC_OPCODE_IF" msgid "The result of the function if the logical test returns FALSE." -msgstr "ผลลัพธ์ของฟังก์ชันถ้าการทดสอบทางตรรกะส่งกลับค่าเท็จ" +msgstr "ผลลัพธ์ของฟังก์ชันถ้าผลการทดสอบทางตรรกะเป็น FALSE" #. edvgD #: sc/inc/scfuncs.hrc:883 msgctxt "SC_OPCODE_IF_ERROR" msgid "Returns value if not an error value, else alternative." -msgstr "" +msgstr "คืนค่าถ้าค่าไม่ใช่ค่าผิดพลาด มิฉะนั้นก็คืนอีกค่าหนึ่ง" #. NLF3b #: sc/inc/scfuncs.hrc:884 @@ -6457,28 +6389,27 @@ #. a9eFD #: sc/inc/scfuncs.hrc:885 -#, fuzzy msgctxt "SC_OPCODE_IF_ERROR" msgid "The value to be calculated." -msgstr "ค่าที่ถูกแปลง" +msgstr "ค่าที่จะคำนวณ" #. vGUD4 #: sc/inc/scfuncs.hrc:886 msgctxt "SC_OPCODE_IF_ERROR" msgid "Alternative value" -msgstr "" +msgstr "ค่ากรณีผิดพลาด" #. aigz7 #: sc/inc/scfuncs.hrc:887 msgctxt "SC_OPCODE_IF_ERROR" msgid "The alternative to be returned, should value be an error value." -msgstr "" +msgstr "อีกค่าหนึ่งที่จะคืนค่าในกรณีที่ค่าเป็นค่าผิดพลาด" #. AEkuH #: sc/inc/scfuncs.hrc:893 msgctxt "SC_OPCODE_IF_NA" msgid "Returns value if not a #N/A error, else alternative." -msgstr "" +msgstr "คืนค่าถ้าค่าไม่ใช่ค่าผิดพลาด #N/A มิฉะนั้นก็คืนอีกค่าหนึ่ง" #. vUvwA #: sc/inc/scfuncs.hrc:894 @@ -6488,79 +6419,75 @@ #. GRMGK #: sc/inc/scfuncs.hrc:895 -#, fuzzy msgctxt "SC_OPCODE_IF_NA" msgid "The value to be calculated." -msgstr "ค่าที่ถูกแปลง" +msgstr "ค่าที่จะคำนวณ" #. LcnBF #: sc/inc/scfuncs.hrc:896 msgctxt "SC_OPCODE_IF_NA" msgid "Alternative value" -msgstr "" +msgstr "ค่ากรณีผิดพลาด" #. dFWuU #: sc/inc/scfuncs.hrc:897 msgctxt "SC_OPCODE_IF_NA" msgid "The alternative to be returned, should value be a #N/A error." -msgstr "" +msgstr "อีกค่าหนึ่งที่จะคืนค่าในกรณีที่ค่าเป็นค่าผิดพลาด #N/A" #. xUnPu #: sc/inc/scfuncs.hrc:903 msgctxt "SC_OPCODE_OR" msgid "Returns TRUE if an argument is TRUE." -msgstr "ส่งกลับ TRUE ถ้าอาร์กิวเม้นท์หนึ่งเป็น TRUE" +msgstr "คืนค่า TRUE ถ้ามีอาร์กิวเมนต์หนึ่งเป็น TRUE" #. kHpqi #: sc/inc/scfuncs.hrc:904 msgctxt "SC_OPCODE_OR" msgid "Logical value " -msgstr "ค่าทางตรรกะ " +msgstr "ค่าตรรกะ " #. 8XBdG #: sc/inc/scfuncs.hrc:905 -#, fuzzy msgctxt "SC_OPCODE_OR" msgid "Logical value 1, logical value 2,... are conditions to be tested and which return either TRUE or FALSE." -msgstr "ค่าทางตรรกะ 1, ค่าทางตรรกะ 2,... เป็นเงื่อนไขตั้งแต่ 1 ถึง 30 ตัวที่จะถูกทดสอบและส่งกลับค่า TRUE หรือ FALSE อย่างใดอย่างหนึ่ง" +msgstr "ค่าตรรกะ 1, ค่าตรรกะ 2,... เป็นเงื่อนไขที่จะทดสอบโดยให้ผลลัพธ์เป็น TRUE หรือ FALSE" #. oWP6A #: sc/inc/scfuncs.hrc:911 msgctxt "SC_OPCODE_XOR" msgid "Returns TRUE if an odd number of arguments evaluates to TRUE." -msgstr "" +msgstr "คืนค่า TRUE ถ้ามีอาร์กิวเมนต์เป็น TRUE เป็นจำนวนคี่" #. k66Hq #: sc/inc/scfuncs.hrc:912 msgctxt "SC_OPCODE_XOR" msgid "Logical value " -msgstr "ค่าทางตรรกะ " +msgstr "ค่าตรรกะ " #. sX2H9 #: sc/inc/scfuncs.hrc:913 -#, fuzzy msgctxt "SC_OPCODE_XOR" msgid "Logical value 1, logical value 2, ... are conditions to be tested and which return either TRUE or FALSE." -msgstr "ค่าทางตรรกะ 1, ค่าทางตรรกะ 2, ... เป็นเงื่อนไขตั้งแต่ 1 ถึง 30 ตัวที่จะถูกทดสอบและส่งกลับค่า TRUE หรือ FALSE อย่างใดอย่างหนึ่ง" +msgstr "ค่าตรรกะ 1, ค่าตรรกะ 2,... เป็นเงื่อนไขที่จะทดสอบโดยให้ผลลัพธ์เป็น TRUE หรือ FALSE" #. DrctE #: sc/inc/scfuncs.hrc:919 msgctxt "SC_OPCODE_AND" msgid "Returns TRUE if all arguments are TRUE." -msgstr "ส่งกลับ TRUE ถ้าอาร์กิวเม้นท์ทั้งหมดเป็น TRUE" +msgstr "คืนค่า TRUE ถ้าอาร์กิวเมนต์ทั้งหมดเป็น TRUE" #. xY9uD #: sc/inc/scfuncs.hrc:920 msgctxt "SC_OPCODE_AND" msgid "Logical value " -msgstr "ค่าทางตรรกะ " +msgstr "ค่าตรรกะ " #. f9SWZ #: sc/inc/scfuncs.hrc:921 -#, fuzzy msgctxt "SC_OPCODE_AND" msgid "Logical value 1, logical value 2;...are conditions to be tested and each returns either TRUE or FALSE." -msgstr "ค่าทางตรรกะ 1, ค่าทางตรรกะ 2;...เป็นเงื่อนไขตั้งแต่ 1 ถึง 30 ที่จะถูกทดสอบและแต่ละเงื่อนไขจะส่งกลับ ไม่ TRUE ก็ FALSE" +msgstr "ค่าตรรกะ 1, ค่าตรรกะ 2,... เป็นเงื่อนไขที่จะทดสอบโดยให้ผลลัพธ์เป็น TRUE หรือ FALSE" #. EXiAr #: sc/inc/scfuncs.hrc:927 @@ -6578,13 +6505,13 @@ #: sc/inc/scfuncs.hrc:929 msgctxt "SC_OPCODE_ABS" msgid "The number whose absolute value is to be returned." -msgstr "ตัวเลขที่ค่าสัมบูรณ์ของมันถูกส่งกลับ" +msgstr "ตัวเลขที่จะหาค่าสัมบูรณ์" #. c2x4N #: sc/inc/scfuncs.hrc:935 msgctxt "SC_OPCODE_POWER" msgid "Returns a^b, base a raised to the power of exponent b." -msgstr "ส่งกลับ a^b ค่าของฐาน a ยกกำลังด้วยตัวชี้กำลัง b" +msgstr "คืนค่า a^b คือค่าของฐาน a ยกกำลังด้วยเลขชี้กำลัง b" #. 3FCiX #: sc/inc/scfuncs.hrc:936 @@ -6614,7 +6541,7 @@ #: sc/inc/scfuncs.hrc:945 msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS" msgid "Counts the blank cells in a specified range." -msgstr "นับช่องที่ว่างในช่วงที่ระบุ" +msgstr "นับเซลล์ที่ว่างในช่วงที่ระบุ" #. bCPHA #: sc/inc/scfuncs.hrc:946 @@ -6626,19 +6553,19 @@ #: sc/inc/scfuncs.hrc:947 msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS" msgid "The range in which empty cells are to be counted." -msgstr "ช่วงในช่องที่ว่างที่ถูกนับ" +msgstr "ช่วงที่จะนับเซลล์ว่าง" #. NRYYy #: sc/inc/scfuncs.hrc:953 msgctxt "SC_OPCODE_PI" msgid "Returns the value of the number Pi." -msgstr "ส่งกลับค่าของตัวเลข Pi." +msgstr "คืนค่าของจำนวน Pi" #. oGC5R #: sc/inc/scfuncs.hrc:959 msgctxt "SC_OPCODE_SUM" msgid "Returns the sum of all arguments." -msgstr "ส่งกลับผลรวมของอาร์กิวเม้นท์ทั้งหมด" +msgstr "คืนค่าผลรวมของอาร์กิวเมนต์ทั้งหมด" #. zRWmY #: sc/inc/scfuncs.hrc:960 @@ -6648,16 +6575,15 @@ #. a5m6D #: sc/inc/scfuncs.hrc:961 -#, fuzzy msgctxt "SC_OPCODE_SUM" msgid "Number 1, number 2, ... are arguments whose total is to be calculated." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์ตั้งแต่ 1 ถึง 30 ของการคำนวณผลรวมทั้งหมด" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ที่จะหาผลรวม" #. G3hS7 #: sc/inc/scfuncs.hrc:967 msgctxt "SC_OPCODE_SUM_SQ" msgid "Returns the sum of the squares of the arguments." -msgstr "ส่งกลับผลรวมกำลังสองของอาร์กิวเม้นท์" +msgstr "คืนค่าผลรวมของกำลังสองของอาร์กิวเมนต์" #. BwCAS #: sc/inc/scfuncs.hrc:968 @@ -6667,16 +6593,15 @@ #. RqFJB #: sc/inc/scfuncs.hrc:969 -#, fuzzy msgctxt "SC_OPCODE_SUM_SQ" msgid "Number 1, number 2,... are arguments for which the sum of the squares is to be calculated." -msgstr "เลข 1, เลข 2,... คืออาร์กิวเม้นท์ตั้งแต่ 1 ถึง 30 ตัวสำหรับคำนวณผลรวมของกำลังสอง" +msgstr "ตัวเลข 1, ตัวเลข 2,... คืออาร์กิวเมนต์ที่จะคำนวณผลรวมของกำลังสอง" #. CAYq3 #: sc/inc/scfuncs.hrc:975 msgctxt "SC_OPCODE_PRODUCT" msgid "Multiplies the arguments." -msgstr "ตัวคูณอาร์กิวเม้นท์" +msgstr "หาผลคูณของอาร์กิวเมนต์" #. nh4bQ #: sc/inc/scfuncs.hrc:976 @@ -6686,17 +6611,15 @@ #. RffwE #: sc/inc/scfuncs.hrc:977 -#, fuzzy msgctxt "SC_OPCODE_PRODUCT" msgid "Number 1, number 2, ... are arguments to be multiplied and a result returned." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์ตั้งแต่ 1 ถึง 30 ที่ถูกคูณและส่งกลับผลลัพธ์" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเม้นท์ที่จะคำนวณผลคูณ" #. FATwX #: sc/inc/scfuncs.hrc:983 -#, fuzzy msgctxt "SC_OPCODE_SUM_IF" msgid "Totals the arguments that meet the condition." -msgstr "หาค่าเฉลี่ยของอาร์กิวเม้นต์ทั้งหมดที่เป็นไปตามเงื่อนไข" +msgstr "หาผลรวมของอาร์กิวเมนต์ทั้งหมดที่เป็นไปตามเงื่อนไข" #. NCqD7 #: sc/inc/scfuncs.hrc:984 @@ -6708,11 +6631,10 @@ #: sc/inc/scfuncs.hrc:985 msgctxt "SC_OPCODE_SUM_IF" msgid "The range to be evaluated by the criteria given." -msgstr "ช่วงที่จะถูกประเมินค่าโดยเกณฑ์ที่ให้มา" +msgstr "ช่วงที่จะประเมินค่าด้วยเกณฑ์ที่กำหนด" #. miDfc #: sc/inc/scfuncs.hrc:986 -#, fuzzy msgctxt "SC_OPCODE_SUM_IF" msgid "Criteria" msgstr "เกณฑ์" @@ -6721,26 +6643,25 @@ #: sc/inc/scfuncs.hrc:987 msgctxt "SC_OPCODE_SUM_IF" msgid "The criteria to be applied to the range." -msgstr "" +msgstr "เกณฑ์ที่จะใช้ประเมินช่วงที่กำหนด" #. tj6UM #: sc/inc/scfuncs.hrc:988 -#, fuzzy msgctxt "SC_OPCODE_SUM_IF" msgid "Sum range" -msgstr "ช่วง_ผลรวม" +msgstr "ช่วงที่หาผลรวม" #. TE6jW #: sc/inc/scfuncs.hrc:989 msgctxt "SC_OPCODE_SUM_IF" msgid "The range from which the values are to be totalled." -msgstr "ช่วงที่จะนำค่ามารวม" +msgstr "ช่วงที่จะนำค่ามาหาผลรวม" #. 6CEv7 #: sc/inc/scfuncs.hrc:995 msgctxt "SC_OPCODE_AVERAGE_IF" msgid "Averages the arguments that meet the conditions." -msgstr "หาค่าเฉลี่ยของอาร์กิวเม้นต์ทั้งหมดที่เป็นไปตามเงื่อนไข" +msgstr "หาค่าเฉลี่ยของอาร์กิวเมนต์ทั้งหมดที่เป็นไปตามเงื่อนไข" #. kkYzh #: sc/inc/scfuncs.hrc:996 @@ -6752,11 +6673,10 @@ #: sc/inc/scfuncs.hrc:997 msgctxt "SC_OPCODE_AVERAGE_IF" msgid "The range to be evaluated by the criteria given." -msgstr "ช่วงที่จะถูกประเมินค่าโดยเกณฑ์ที่ให้มา" +msgstr "ช่วงที่จะประเมินค่าด้วยเกณฑ์ที่ให้มา" #. aV2bj #: sc/inc/scfuncs.hrc:998 -#, fuzzy msgctxt "SC_OPCODE_AVERAGE_IF" msgid "Criteria" msgstr "เกณฑ์" @@ -6765,148 +6685,139 @@ #: sc/inc/scfuncs.hrc:999 msgctxt "SC_OPCODE_AVERAGE_IF" msgid "The criteria to be applied to the range." -msgstr "" +msgstr "เกณฑ์ที่จะใช้กับช่วง" #. SisUL #: sc/inc/scfuncs.hrc:1000 -#, fuzzy msgctxt "SC_OPCODE_AVERAGE_IF" msgid "Average range" -msgstr "ช่วง_ค่าเฉลี่ย" +msgstr "ช่วงที่หาค่าเฉลี่ย" #. dRAB6 #: sc/inc/scfuncs.hrc:1001 msgctxt "SC_OPCODE_AVERAGE_IF" msgid "The range from which the values are to be averaged." -msgstr "ช่วงที่จะนำค่ามาเฉลี่ย" +msgstr "ช่วงที่จะนำค่ามาหาค่าเฉลี่ย" #. RqVYL #: sc/inc/scfuncs.hrc:1006 msgctxt "SC_OPCODE_SUM_IFS" msgid "Totals the values of cells in a range that meet multiple criteria in multiple ranges." -msgstr "รวมค่าของเซลล์ในช่วงหนึ่งที่เป็นไปตามหลายเกณฑ์ในหลายช่วง" +msgstr "หาผลรวมของค่าของเซลล์ในช่วงช่วงหนึ่งที่เป็นไปตามเกณฑ์หลายเกณฑ์ที่ตรวจสอบช่วงหลายช่วง" #. 4M6MT #: sc/inc/scfuncs.hrc:1007 -#, fuzzy msgctxt "SC_OPCODE_SUM_IFS" msgid "Sum range" -msgstr "ช่วง_ผลรวม" +msgstr "ช่วงที่หาผลรวม" #. qS2sr #: sc/inc/scfuncs.hrc:1008 msgctxt "SC_OPCODE_SUM_IFS" msgid "The range from which the values are to be totalled." -msgstr "ช่วงที่จะนำค่ามารวม" +msgstr "ช่วงที่จะนำค่ามาหาผลรวม" #. wcHBn #: sc/inc/scfuncs.hrc:1009 -#, fuzzy msgctxt "SC_OPCODE_SUM_IFS" msgid "Range " -msgstr "ช่วง" +msgstr "ช่วง " #. 9qDvh #: sc/inc/scfuncs.hrc:1010 msgctxt "SC_OPCODE_SUM_IFS" msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given." -msgstr "ช่วง 1, ช่วง 2,... คือช่วงที่จะถูกประเมินโดยเกณฑ์ที่ให้มา" +msgstr "ช่วง 1, ช่วง 2,... คือช่วงที่จะประเมินด้วยเกณฑ์ที่กำหนด" #. YCewT #: sc/inc/scfuncs.hrc:1011 -#, fuzzy msgctxt "SC_OPCODE_SUM_IFS" msgid "Criteria " -msgstr "เกณฑ์" +msgstr "เกณฑ์ " #. 4QoCb #: sc/inc/scfuncs.hrc:1012 msgctxt "SC_OPCODE_SUM_IFS" msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given." -msgstr "" +msgstr "เกณฑ์ 1, เกณฑ์ 2,... คือเกณฑ์ที่จะใช้ประเมินช่วงต่างๆ ที่กำหนด" #. AoDCe #: sc/inc/scfuncs.hrc:1018 msgctxt "SC_OPCODE_AVERAGE_IFS" msgid "Averages the value of the cells that meet multiple criteria in multiple ranges." -msgstr "เฉลี่ยค่าในเซลล์ที่เป็นไปตามหลายๆ เงื่อนไขในหลายๆ ช่วง" +msgstr "หาค่าเฉลี่ยของค่าของเซลล์ที่เป็นไปตามเกณฑ์หลายเกณฑ์ที่ตรวจสอบช่วงหลายช่วง" #. QERne #: sc/inc/scfuncs.hrc:1019 -#, fuzzy msgctxt "SC_OPCODE_AVERAGE_IFS" msgid "Average range" -msgstr "ช่วง_ค่าเฉลี่ย" +msgstr "ช่วงที่หาค่าเฉลี่ย" #. o52rT #: sc/inc/scfuncs.hrc:1020 msgctxt "SC_OPCODE_AVERAGE_IFS" msgid "The range from which the values are to be averaged." -msgstr "ช่วงที่จะนำค่ามาเฉลี่ย" +msgstr "ช่วงที่จะนำค่ามาหาค่าเฉลี่ย" #. a99iD #: sc/inc/scfuncs.hrc:1021 -#, fuzzy msgctxt "SC_OPCODE_AVERAGE_IFS" msgid "Range " -msgstr "ช่วง" +msgstr "ช่วง " #. wvbDq #: sc/inc/scfuncs.hrc:1022 msgctxt "SC_OPCODE_AVERAGE_IFS" msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given." -msgstr "ช่วง 1, ช่วง 2,... คือช่วงที่จะถูกประเมินโดยเกณฑ์ที่ให้มา" +msgstr "ช่วง 1, ช่วง 2,... คือช่วงที่จะประเมินด้วยเกณฑ์ที่กำหนด" #. SDUKW #: sc/inc/scfuncs.hrc:1023 -#, fuzzy msgctxt "SC_OPCODE_AVERAGE_IFS" msgid "Criteria " -msgstr "เกณฑ์" +msgstr "เกณฑ์ " #. RTV4C #: sc/inc/scfuncs.hrc:1024 msgctxt "SC_OPCODE_AVERAGE_IFS" msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given." -msgstr "" +msgstr "เกณฑ์ 1, เกณฑ์ 2,... คือเกณฑ์ที่จะใช้ประเมินช่วงต่างๆ ที่กำหนด" #. 8NmPC #: sc/inc/scfuncs.hrc:1030 msgctxt "SC_OPCODE_COUNT_IFS" msgid "Counts the cells that meet multiple criteria in multiple ranges." -msgstr "นับจำนวนเซลล์ที่เป็นไปตามหลายๆ เงื่อนไขในหลายๆ ช่วง" +msgstr "นับจำนวนเซลล์ที่เป็นไปตามเกณฑ์หลายเกณฑ์ที่ตรวจสอบช่วงหลายช่วง" #. BDv5j #: sc/inc/scfuncs.hrc:1031 -#, fuzzy msgctxt "SC_OPCODE_COUNT_IFS" msgid "Range " -msgstr "ช่วง" +msgstr "ช่วง " #. 8GRAv #: sc/inc/scfuncs.hrc:1032 msgctxt "SC_OPCODE_COUNT_IFS" msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given." -msgstr "ช่วง 1, ช่วง 2,... คือช่วงที่จะถูกประเมินโดยเกณฑ์ที่ให้มา" +msgstr "ช่วง 1, ช่วง 2,... คือช่วงที่จะประเมินด้วยเกณฑ์ที่กำหนด" #. dK3Bn #: sc/inc/scfuncs.hrc:1033 -#, fuzzy msgctxt "SC_OPCODE_COUNT_IFS" msgid "Criteria " -msgstr "เกณฑ์" +msgstr "เกณฑ์ " #. CBZSu #: sc/inc/scfuncs.hrc:1034 msgctxt "SC_OPCODE_COUNT_IFS" msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given." -msgstr "" +msgstr "เกณฑ์ 1, เกณฑ์ 2,... คือเกณฑ์ที่จะใช้ประเมินช่วงต่างๆ ที่กำหนด" #. wKWDz #: sc/inc/scfuncs.hrc:1040 msgctxt "SC_OPCODE_COUNT_IF" msgid "Counts the arguments which meet the set conditions." -msgstr "นับอาร์กิวเม้นท์ที่พบเงื่อนไขของเซต" +msgstr "นับจำนวนอาร์กิวเมนต์ทั้งหมดที่เป็นไปตามเงื่อนไขที่กำหนด" #. wqHJk #: sc/inc/scfuncs.hrc:1041 @@ -6916,14 +6827,12 @@ #. KXd5A #: sc/inc/scfuncs.hrc:1042 -#, fuzzy msgctxt "SC_OPCODE_COUNT_IF" msgid "The range of cells to be evaluated by the criteria given." -msgstr "ช่วงที่จะถูกประเมินค่าโดยเกณฑ์ที่ให้มา" +msgstr "ช่วงที่จะประเมินค่าด้วยเกณฑ์ที่กำหนด" #. pGUfg #: sc/inc/scfuncs.hrc:1043 -#, fuzzy msgctxt "SC_OPCODE_COUNT_IF" msgid "Criteria" msgstr "เกณฑ์" @@ -6932,17 +6841,16 @@ #: sc/inc/scfuncs.hrc:1044 msgctxt "SC_OPCODE_COUNT_IF" msgid "The criteria to be applied to the range." -msgstr "" +msgstr "เกณฑ์ที่จะใช้ประเมินช่วงที่กำหนด" #. hUVL8 #: sc/inc/scfuncs.hrc:1050 msgctxt "SC_OPCODE_SQRT" msgid "Returns the square root of a number." -msgstr "ส่งกลับรากที่สองของตัวเลข" +msgstr "คืนค่ารากที่สองของตัวเลข" #. Cr4oc #: sc/inc/scfuncs.hrc:1051 -#, fuzzy msgctxt "SC_OPCODE_SQRT" msgid "Number" msgstr "ตัวเลข" @@ -6951,13 +6859,13 @@ #: sc/inc/scfuncs.hrc:1052 msgctxt "SC_OPCODE_SQRT" msgid "A positive value for which the square root is to be calculated." -msgstr "ค่าบวกสำหรับรากที่สองที่ถูกคำนวณ" +msgstr "ค่าบวกที่ต้องการหารากที่สอง" #. KJ7e9 #: sc/inc/scfuncs.hrc:1058 msgctxt "SC_OPCODE_RANDOM" msgid "Returns a random number between 0 and 1." -msgstr "ส่งกลับตัวเลขสุ่มระหว่าง 0 และ 1" +msgstr "คืนค่าตัวเลขสุ่มระหว่าง 0 และ 1" #. QugqG #: sc/inc/scfuncs.hrc:1064 @@ -6975,7 +6883,7 @@ #: sc/inc/scfuncs.hrc:1066 msgctxt "SC_OPCODE_IS_EVEN" msgid "The value to be tested." -msgstr "ค่าถูกทดสอบ" +msgstr "ค่าที่จะทดสอบ" #. M8AAF #: sc/inc/scfuncs.hrc:1072 @@ -6993,77 +6901,73 @@ #: sc/inc/scfuncs.hrc:1074 msgctxt "SC_OPCODE_IS_ODD" msgid "The value to be tested." -msgstr "ค่าถูกทดสอบ" +msgstr "ค่าที่จะทดสอบ" #. ACNEb #: sc/inc/scfuncs.hrc:1080 msgctxt "SC_OPCODE_COMBIN" msgid "Calculates the number of combinations for elements without repetition." -msgstr "คำนวณจำนวนของการรวมกันสำหรับองค์ประกอบที่ไม่มีการทำซ้ำ" +msgstr "คำนวณจำนวนวิธีในการเลือกสิ่งของโดยไม่มีการเลือกซ้ำ" #. xQEvM #: sc/inc/scfuncs.hrc:1081 -#, fuzzy msgctxt "SC_OPCODE_COMBIN" msgid "Number 1" -msgstr "ตัวเลข " +msgstr "ตัวเลข 1" #. ACGaC #: sc/inc/scfuncs.hrc:1082 msgctxt "SC_OPCODE_COMBIN" msgid "The total number of elements." -msgstr "รวมจำนวนองค์ประกอบทั้งหมด" +msgstr "จำนวนชิ้นทั้งหมด" #. WJTxU #: sc/inc/scfuncs.hrc:1083 -#, fuzzy msgctxt "SC_OPCODE_COMBIN" msgid "Number 2" -msgstr "ตัวเลข " +msgstr "ตัวเลข 2" #. JKD75 #: sc/inc/scfuncs.hrc:1084 msgctxt "SC_OPCODE_COMBIN" msgid "The number of elements selected." -msgstr "จำนวนองค์ประกอบที่เลือก" +msgstr "จำนวนชิ้นที่เลือก" #. ct5pJ #: sc/inc/scfuncs.hrc:1090 msgctxt "SC_OPCODE_COMBIN_A" msgid "Calculates the number of combinations of elements including repetition." -msgstr "คำนวณจำนวนการรวมองค์ประกอบรวมทั้งการทำซ้ำ" +msgstr "คำนวณจำนวนวิธีในการเลือกสิ่งของโดยรวมวิธีที่เลือกสิ่งของซ้ำหลายชิ้นด้วย" #. YEVJh #: sc/inc/scfuncs.hrc:1091 -#, fuzzy msgctxt "SC_OPCODE_COMBIN_A" msgid "Number 1" -msgstr "ตัวเลข " +msgstr "ตัวเลข 1" #. smqPP #: sc/inc/scfuncs.hrc:1092 msgctxt "SC_OPCODE_COMBIN_A" msgid "The total number of elements." -msgstr "รวมจำนวนองค์ประกอบทั้งหมด" +msgstr "จำนวนชิ้นทั้งหมด" #. vCGLG #: sc/inc/scfuncs.hrc:1093 -#, fuzzy msgctxt "SC_OPCODE_COMBIN_A" msgid "Number 2" -msgstr "ตัวเลข " +msgstr "ตัวเลข 2" #. F9A6f #: sc/inc/scfuncs.hrc:1094 msgctxt "SC_OPCODE_COMBIN_A" msgid "The number of elements selected." -msgstr "จำนวนองค์ประกอบที่เลือก" +msgstr "จำนวนชิ้นที่เลือก" #. QPAG9 #: sc/inc/scfuncs.hrc:1100 msgctxt "SC_OPCODE_ARC_COS" msgid "Returns the arccosine of a number." -msgstr "ส่งกลับค่า arccosine ของตัวเลข" +msgstr "คืนค่าอาร์กโคไซน์ของตัวเลข" #. HRPpD #: sc/inc/scfuncs.hrc:1101 @@ -7075,13 +6979,13 @@ #: sc/inc/scfuncs.hrc:1102 msgctxt "SC_OPCODE_ARC_COS" msgid "A value between -1 and 1 for which the arccosine is to be returned." -msgstr "ค่าระหว่าง -1 ถึง 1 ที่อาร์คโคไซน์ของมันถูกส่งกลับ" +msgstr "ค่าระหว่าง -1 ถึง 1 ที่จะคำนวณหาค่าอาร์กโคไซน์" #. tAK2r #: sc/inc/scfuncs.hrc:1108 msgctxt "SC_OPCODE_ARC_SIN" msgid "Returns the arcsine of a number." -msgstr "ส่งกลับค่า arcsine ของตัวเลข" +msgstr "คืนค่าอาร์กไซน์ของตัวเลข" #. hEinR #: sc/inc/scfuncs.hrc:1109 @@ -7093,13 +6997,13 @@ #: sc/inc/scfuncs.hrc:1110 msgctxt "SC_OPCODE_ARC_SIN" msgid "A value between -1 and 1 for which the arcsine is to be returned." -msgstr "ค่าระหว่าง -1 ถึง 1 ที่อาร์คไซน์ของมันถูกส่งกลับ" +msgstr "ค่าระหว่าง -1 ถึง 1 ที่จะคำนวณหาค่าอาร์กไซน์" #. zEn7k #: sc/inc/scfuncs.hrc:1116 msgctxt "SC_OPCODE_ARC_COS_HYP" msgid "Returns the inverse hyperbolic cosine of a number." -msgstr "ส่งกลับค่า inverse hyperbolic cosine ของตัวเลข" +msgstr "คืนค่าไฮเพอร์โบลิกโคไซน์ผกผันของตัวเลข" #. jMBBc #: sc/inc/scfuncs.hrc:1117 @@ -7111,13 +7015,13 @@ #: sc/inc/scfuncs.hrc:1118 msgctxt "SC_OPCODE_ARC_COS_HYP" msgid "A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned." -msgstr "ค่ามากกว่าหรือเท่ากับ 1 ที่ไฮเปอร์โบลิกโคไซน์ของมันถูกส่งกลับ" +msgstr "ค่าที่มากกว่าหรือเท่ากับ 1 ที่จะคำนวณหาค่าไฮเพอร์โบลิกโคไซน์ผกผัน" #. 6Soyt #: sc/inc/scfuncs.hrc:1124 msgctxt "SC_OPCODE_ARC_SIN_HYP" msgid "Returns the inverse hyperbolic sine of a number." -msgstr "ส่งกลับอินเวิร์สตัวเลข sine แบบไฮเปอร์โบลา" +msgstr "คืนค่าไฮเพอร์โบลิกไซน์ผกผันของตัวเลข" #. C6BAQ #: sc/inc/scfuncs.hrc:1125 @@ -7129,13 +7033,13 @@ #: sc/inc/scfuncs.hrc:1126 msgctxt "SC_OPCODE_ARC_SIN_HYP" msgid "The value for which the inverse hyperbolic sine is to be returned." -msgstr "ค่าที่ไฮเปอร์โบลิกไซน์ผกผันของมันถูกส่งกลับ" +msgstr "ค่าที่จะคำนวณหาค่าไฮเพอร์โบลิกไซน์ผกผัน" #. XB4s8 #: sc/inc/scfuncs.hrc:1132 msgctxt "SC_OPCODE_ARC_COT" msgid "Returns the inverse cotangent of a number." -msgstr "ส่งกลับอินเวิร์ส cotangent ชองตัวเลข" +msgstr "คืนค่าโคแทนเจนต์ผกผันชองตัวเลข" #. gufZ7 #: sc/inc/scfuncs.hrc:1133 @@ -7147,13 +7051,13 @@ #: sc/inc/scfuncs.hrc:1134 msgctxt "SC_OPCODE_ARC_COT" msgid "The value for which the inverse cotangent is to be returned." -msgstr "ค่าที่โคแทนเจนต์ผกผันของมันถูกส่งกลับ" +msgstr "ค่าที่จะคำนวณหาค่าโคแทนเจนต์ผกผัน" #. EmMe7 #: sc/inc/scfuncs.hrc:1140 msgctxt "SC_OPCODE_ARC_TAN" msgid "Returns the arctangent of a number." -msgstr "ส่งกลับอาร์คแทนเจนต์ของตัวเลขที่ให้มา" +msgstr "คืนค่าอาร์กแทนเจนต์ของตัวเลข" #. FauoY #: sc/inc/scfuncs.hrc:1141 @@ -7165,13 +7069,13 @@ #: sc/inc/scfuncs.hrc:1142 msgctxt "SC_OPCODE_ARC_TAN" msgid "The value for which the arctangent is to be returned." -msgstr "ค่าที่อาร์คแทนเจนต์ของมันถูกส่งกลับ" +msgstr "ค่าที่จะคำนวณหาค่าอาร์กแทนเจนต์" #. Fak4u #: sc/inc/scfuncs.hrc:1148 msgctxt "SC_OPCODE_ARC_COT_HYP" msgid "Returns the inverse hyperbolic cotangent of a number." -msgstr "ส่งกลับอินเวิร์สตัวเลขของ cotangent แบบไฮเปอร์โบลา" +msgstr "คืนค่าไฮเพอร์โบลิกโคแทนเจนต์ผกผันของตัวเลข" #. xw5qx #: sc/inc/scfuncs.hrc:1149 @@ -7183,13 +7087,13 @@ #: sc/inc/scfuncs.hrc:1150 msgctxt "SC_OPCODE_ARC_COT_HYP" msgid "A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned." -msgstr "ค่าน้อยกว่า -1 หรือมากกว่า 1 ที่ไฮเปอร์โบลิกโคแทนเจนต์ผกผันของมันถูกส่งกลับ" +msgstr "ค่าที่น้อยกว่า -1 หรือมากกว่า 1 ที่จะคำนวณหาค่าไฮเพอร์โบลิกโคแทนเจนต์ผกผัน" #. rHP2u #: sc/inc/scfuncs.hrc:1156 msgctxt "SC_OPCODE_ARC_TAN_HYP" msgid "Returns the inverse hyperbolic tangent of a number." -msgstr "ส่งกลับอินเวิร์สตัวเลขของ tangent แบบไฮเปอร์โบลา" +msgstr "คืนค่าไฮเพอร์โบลิกแทนเจนต์ผกผันของตัวเลข" #. yVfL2 #: sc/inc/scfuncs.hrc:1157 @@ -7201,13 +7105,13 @@ #: sc/inc/scfuncs.hrc:1158 msgctxt "SC_OPCODE_ARC_TAN_HYP" msgid "A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned." -msgstr "ค่าระหว่าง -1 กับ 1 ที่ไฮเปอร์โบลิกแทนเจนต์ผกผันของมันถูกส่งกลับ" +msgstr "ค่าระหว่าง -1 กับ 1 ที่จะคำนวณหาค่าไฮเพอร์โบลิกแทนเจนต์ผกผัน" #. Vj2jZ #: sc/inc/scfuncs.hrc:1164 msgctxt "SC_OPCODE_COS" msgid "Returns the cosine of a number." -msgstr "ส่งกลับโคไซน์ของตัวเลขที่ให้มา" +msgstr "คืนค่าโคไซน์ชองตัวเลข" #. UTGDD #: sc/inc/scfuncs.hrc:1165 @@ -7219,17 +7123,16 @@ #: sc/inc/scfuncs.hrc:1166 msgctxt "SC_OPCODE_COS" msgid "The angle in the radians for which the cosine is to be returned." -msgstr "มุมในหน่วยเรเดียนที่ที่โคไซน์ของมันถูกส่งกลับ" +msgstr "มุมในหน่วยเรเดียนที่จะคำนวณหาค่าโคไซน์" #. sqQxE #: sc/inc/scfuncs.hrc:1172 msgctxt "SC_OPCODE_SIN" msgid "Returns the sine of a number." -msgstr "ส่งกลับไซน์ของตัวเลขที่ให้มา" +msgstr "คืนค่าไซน์ชองตัวเลข" #. LmuFR #: sc/inc/scfuncs.hrc:1173 -#, fuzzy msgctxt "SC_OPCODE_SIN" msgid "Number" msgstr "ตัวเลข" @@ -7238,13 +7141,13 @@ #: sc/inc/scfuncs.hrc:1174 msgctxt "SC_OPCODE_SIN" msgid "The angle in radians for which the sine is to be calculated." -msgstr "มุมในหน่วยเรเดียนที่นำมาคำนวณค่าไซน์" +msgstr "มุมในหน่วยเรเดียนที่จะคำนวณหาค่าไซน์" #. kSc7G #: sc/inc/scfuncs.hrc:1180 msgctxt "SC_OPCODE_COT" msgid "Returns the cotangent of a number." -msgstr "ส่งกลับโคแทนเจนต์ของตัวเลข" +msgstr "คืนค่าโคแทนเจนต์ชองตัวเลข" #. M6YP7 #: sc/inc/scfuncs.hrc:1181 @@ -7256,17 +7159,16 @@ #: sc/inc/scfuncs.hrc:1182 msgctxt "SC_OPCODE_COT" msgid "The angle in radians whose cotangent value is to be returned." -msgstr "มุมในหน่วยเรเดียนที่โคแทนเจนต์ของมันถูกส่งกลับ" +msgstr "มุมในหน่วยเรเดียนที่จะคำนวณหาค่าโคแทนเจนต์" #. LRJoG #: sc/inc/scfuncs.hrc:1188 msgctxt "SC_OPCODE_TAN" msgid "Returns the tangent of a number." -msgstr "ส่งกลับแทนเจนต์ของตัวเลข" +msgstr "คืนค่าแทนเจนต์ชองตัวเลข" #. uGiGY #: sc/inc/scfuncs.hrc:1189 -#, fuzzy msgctxt "SC_OPCODE_TAN" msgid "Number" msgstr "ตัวเลข" @@ -7275,13 +7177,13 @@ #: sc/inc/scfuncs.hrc:1190 msgctxt "SC_OPCODE_TAN" msgid "The angle in radians for which the tangent is to be calculated." -msgstr "มุมในหน่วยเรเดียนที่นำมาคำนวณค่าแทนเจนต์" +msgstr "มุมในหน่วยเรเดียนที่จะคำนวณหาค่าแทนเจนต์" #. 6mhty #: sc/inc/scfuncs.hrc:1196 msgctxt "SC_OPCODE_COS_HYP" msgid "Returns the hyperbolic cosine of a number." -msgstr "ส่งกลับตัวเลข cosine แบบไฮเปอร์โบลา" +msgstr "คืนค่าไฮเพอร์โบลิกโคไซน์ชองตัวเลข" #. fyReM #: sc/inc/scfuncs.hrc:1197 @@ -7293,17 +7195,16 @@ #: sc/inc/scfuncs.hrc:1198 msgctxt "SC_OPCODE_COS_HYP" msgid "The value for which the hyperbolic cosine is to be returned." -msgstr "ค่าที่ไฮเปอร์โบลิกโคไซน์ของมันถูกส่งกลับ" +msgstr "ค่าที่จะคำนวณหาค่าไฮเพอร์โบลิกโคไซน์" #. oGJMo #: sc/inc/scfuncs.hrc:1204 msgctxt "SC_OPCODE_SIN_HYP" msgid "Returns the hyperbolic sine of a number." -msgstr "ส่งกลับตัวเลข sine แบบไฮเปอร์โบลา" +msgstr "คืนค่าไฮเพอร์โบลิกไซน์ชองตัวเลข" #. FTRnh #: sc/inc/scfuncs.hrc:1205 -#, fuzzy msgctxt "SC_OPCODE_SIN_HYP" msgid "Number" msgstr "ตัวเลข" @@ -7312,13 +7213,13 @@ #: sc/inc/scfuncs.hrc:1206 msgctxt "SC_OPCODE_SIN_HYP" msgid "The value for which the hyperbolic sine is to be calculated." -msgstr "ค่าสำหรับคำนวณ sine แบบไฮเปอร์โบลา" +msgstr "ค่าที่จะคำนวณหาค่าไฮเพอร์โบลิกไซน์" #. 9j9Hg #: sc/inc/scfuncs.hrc:1212 msgctxt "SC_OPCODE_COT_HYP" msgid "Returns the hyperbolic cotangent of a number." -msgstr "ส่งกลับตัวเลข cotangent แบบไฮเปอร์โบลา" +msgstr "คืนค่าไฮเพอร์โบลิกโคแทนเจนต์ชองตัวเลข" #. UKBBG #: sc/inc/scfuncs.hrc:1213 @@ -7330,17 +7231,16 @@ #: sc/inc/scfuncs.hrc:1214 msgctxt "SC_OPCODE_COT_HYP" msgid "A value not equal to 0 for which the hyperbolic cotangent is to be returned." -msgstr "ค่าไม่เท่ากับ 0 ที่ไฮเปอร์โบลิกโคแทนเจนต์ของมันถูกส่งกลับ" +msgstr "ค่าที่ไม่เท่ากับ 0 ที่จะคำนวณหาค่าไฮเพอร์โบลิกโคแทนเจนต์" #. epvJu #: sc/inc/scfuncs.hrc:1220 msgctxt "SC_OPCODE_TAN_HYP" msgid "Returns the hyperbolic tangent of a number." -msgstr "ส่งกลับตัวเลข tangent แบบไฮเปอร์โบลา" +msgstr "คืนค่าไฮเพอร์โบลิกแทนเจนต์ชองตัวเลข" #. V8rZi #: sc/inc/scfuncs.hrc:1221 -#, fuzzy msgctxt "SC_OPCODE_TAN_HYP" msgid "Number" msgstr "ตัวเลข" @@ -7349,51 +7249,46 @@ #: sc/inc/scfuncs.hrc:1222 msgctxt "SC_OPCODE_TAN_HYP" msgid "The value for which the hyperbolic tangent is to be calculated." -msgstr "ค่าสำหรับคำนวณ tangent แบบไฮเปอร์โบลา" +msgstr "ค่าที่จะคำนวณหาค่าไฮเพอร์โบลิกแทนเจนต์" #. 8U6yM #: sc/inc/scfuncs.hrc:1228 msgctxt "SC_OPCODE_ARC_TAN_2" msgid "Returns the arctangent for the specified coordinates." -msgstr "ส่งกลับ arctangent สำหรับพิกัดที่ระบุ" +msgstr "คืนค่าอาร์กแทนเจนต์ชองพิกัดที่กำหนด" #. dYtW9 #: sc/inc/scfuncs.hrc:1229 -#, fuzzy msgctxt "SC_OPCODE_ARC_TAN_2" msgid "Number X" -msgstr "ตัวเลข " +msgstr "ตัวเลข X" #. WsSq4 #: sc/inc/scfuncs.hrc:1230 -#, fuzzy msgctxt "SC_OPCODE_ARC_TAN_2" msgid "The value for the X coordinate." -msgstr "ค่าสำหรับพิกัด x " +msgstr "ค่าพิกัด X" #. PWbXR #: sc/inc/scfuncs.hrc:1231 -#, fuzzy msgctxt "SC_OPCODE_ARC_TAN_2" msgid "Number Y" -msgstr "ตัวเลข " +msgstr "ตัวเลข Y" #. TRECx #: sc/inc/scfuncs.hrc:1232 -#, fuzzy msgctxt "SC_OPCODE_ARC_TAN_2" msgid "The value for the Y coordinate." -msgstr "ค่าสำหรับพิกัด x " +msgstr "ค่าพิกัด Y" #. ZFTPM #: sc/inc/scfuncs.hrc:1238 msgctxt "SC_OPCODE_COSECANT" msgid "Return the cosecant of an angle. CSC(x)=1/SIN(x)" -msgstr "ส่งกลับโคซีแคนต์ (cosecant) ของมุม CSC(x)=1/SIN(x)" +msgstr "คืนค่าโคเซแคนต์ของมุม โดยที่ CSC(x)=1/SIN(x)" #. FQv4p #: sc/inc/scfuncs.hrc:1239 -#, fuzzy msgctxt "SC_OPCODE_COSECANT" msgid "Angle" msgstr "มุม" @@ -7402,17 +7297,16 @@ #: sc/inc/scfuncs.hrc:1240 msgctxt "SC_OPCODE_COSECANT" msgid "The angle in radians for which the cosecant is to be calculated." -msgstr "มุมในหน่วยเรเดียนที่จะนำมาคำนวณโคซีแคนต์" +msgstr "มุมในหน่วยเรเดียนที่จะคำนวณหาค่าโคเซแคนต์" #. hw7ij #: sc/inc/scfuncs.hrc:1246 msgctxt "SC_OPCODE_SECANT" msgid "Return the secant of an angle. SEC(x)=1/COS(x)" -msgstr "ส่งกลับซีแคนต์ (secant) ของมุม SEC(x)=1/COS(x)" +msgstr "คืนค่าเซแคนต์ของมุม โดยที่ SEC(x)=1/COS(x)" #. scavM #: sc/inc/scfuncs.hrc:1247 -#, fuzzy msgctxt "SC_OPCODE_SECANT" msgid "Angle" msgstr "มุม" @@ -7421,17 +7315,16 @@ #: sc/inc/scfuncs.hrc:1248 msgctxt "SC_OPCODE_SECANT" msgid "The angle in radians for which the secant is to be calculated." -msgstr "มุมในหน่วยเรเดียนที่จะใช้คำนวนค่าซีแคนต์ (secant)" +msgstr "มุมในหน่วยเรเดียนที่จะคำนวนหาค่าเซแคนต์" #. yRkbY #: sc/inc/scfuncs.hrc:1254 msgctxt "SC_OPCODE_COSECANT_HYP" msgid "Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)" -msgstr "ส่งกลับไฮเพอร์โบลิกโคซีแคนต์ (hyperbolic cosecant) ของมุมไฮเพอร์โบลิก CSCH(x)=1/SINH(x)" +msgstr "คืนค่าไฮเพอร์โบลิกโคเซแคนต์ของมุมไฮเพอร์โบลิก โดยที่ CSCH(x)=1/SINH(x)" #. qeU9p #: sc/inc/scfuncs.hrc:1255 -#, fuzzy msgctxt "SC_OPCODE_COSECANT_HYP" msgid "Angle" msgstr "มุม" @@ -7440,17 +7333,16 @@ #: sc/inc/scfuncs.hrc:1256 msgctxt "SC_OPCODE_COSECANT_HYP" msgid "The hyperbolic angle in radians for which the hyperbolic cosecant is to be calculated." -msgstr "มุมเชิงไฮเพอร์โบลาในหน่วยเรเดียนที่จะนำมาคำนวณไฮเพอร์โบลิกโคซีแคนต์" +msgstr "มุมไฮเพอร์โบลิกในหน่วยเรเดียนที่จะคำนวณหาค่าไฮเพอร์โบลิกโคเซแคนต์" #. P8KDD #: sc/inc/scfuncs.hrc:1262 msgctxt "SC_OPCODE_SECANT_HYP" msgid "Return the hyperbolic secant of a hyperbolic angle. SECH(x)=1/COSH(x)" -msgstr "ส่งกลับไฮเพอร์โบลิกซีแคนต์ (hyperbolic secant) ของมุมไฮเพอร์โบลิก SECH(x)=1/COSH(x)" +msgstr "คืนค่าไฮเพอร์โบลิกเซแคนต์ของมุมไฮเพอร์โบลิก โดยที่ SECH(x)=1/COSH(x)" #. 7PJUN #: sc/inc/scfuncs.hrc:1263 -#, fuzzy msgctxt "SC_OPCODE_SECANT_HYP" msgid "Angle" msgstr "มุม" @@ -7459,13 +7351,13 @@ #: sc/inc/scfuncs.hrc:1264 msgctxt "SC_OPCODE_SECANT_HYP" msgid "The hyperbolic angle in radians for which the hyperbolic secant is to be calculated." -msgstr "มุมเชิงไฮเพอร์โบลาในหน่วยเรเดียนที่จะนำมาคำนวณไฮเพอร์โบลิกซีแคนต์" +msgstr "มุมไฮเพอร์โบลิกในหน่วยเรเดียนที่จะคำนวณหาค่าไฮเพอร์โบลิกเซแคนต์" #. dnE9t #: sc/inc/scfuncs.hrc:1270 msgctxt "SC_OPCODE_DEG" msgid "Converts a radian to degrees" -msgstr "แปลงเรเดียนเป็นองศา" +msgstr "แปลงหน่วยเรเดียนเป็นองศา" #. nsDD4 #: sc/inc/scfuncs.hrc:1271 @@ -7477,13 +7369,13 @@ #: sc/inc/scfuncs.hrc:1272 msgctxt "SC_OPCODE_DEG" msgid "The angle in a radian" -msgstr "มุมเรเดียน" +msgstr "มุมในหน่วยเรเดียน" #. RGeKe #: sc/inc/scfuncs.hrc:1278 msgctxt "SC_OPCODE_RAD" msgid "Converts degrees to radians" -msgstr "แปลงองศาเป็นเรเดียน" +msgstr "แปลงหน่วยองศาเป็นเรเดียน" #. n5GJL #: sc/inc/scfuncs.hrc:1279 @@ -7519,7 +7411,7 @@ #: sc/inc/scfuncs.hrc:1294 msgctxt "SC_OPCODE_LOG" msgid "Calculates the logarithm to any specified base." -msgstr "คำนวณลอการิทึมของฐานที่ระบุ" +msgstr "คำนวณลอการิทึมของฐานที่กำหนด" #. QAiC6 #: sc/inc/scfuncs.hrc:1295 @@ -7531,7 +7423,7 @@ #: sc/inc/scfuncs.hrc:1296 msgctxt "SC_OPCODE_LOG" msgid "A value greater than 0 for which the logarithm is to be calculated." -msgstr "ค่ามากกว่า 0 สำหรับคำนวณลอการิทึม" +msgstr "ค่าที่มากกว่า 0 ที่จะคำนวณหาค่าลอการิทึม" #. otWNB #: sc/inc/scfuncs.hrc:1297 @@ -7543,13 +7435,13 @@ #: sc/inc/scfuncs.hrc:1298 msgctxt "SC_OPCODE_LOG" msgid "The base of the logarithm. If omitted, the base is regarded as 10." -msgstr "ฐานของลอการิทึม ถ้าเว้นว่างจะคิดเป็นฐาน 10" +msgstr "ฐานของลอการิทึม ถ้าเว้นว่างจะถือว่าเป็นฐาน 10" #. iqpsE #: sc/inc/scfuncs.hrc:1304 msgctxt "SC_OPCODE_LN" msgid "Calculates the natural logarithm of a number." -msgstr "คำนวณลอการิทึมฐานธรรมชาติของตัวเลข" +msgstr "คำนวณลอการิทึมธรรมชาติของตัวเลข" #. K2PSj #: sc/inc/scfuncs.hrc:1305 @@ -7561,13 +7453,13 @@ #: sc/inc/scfuncs.hrc:1306 msgctxt "SC_OPCODE_LN" msgid "A value greater than 0 for which the natural logarithm is to be calculated." -msgstr "ค่ามากกว่า 0 สำหรับคำนวณลอการิธึมธรรมชาติ" +msgstr "ค่าที่มากกว่า 0 ที่จะคำนวณหาค่าลอการิทึมธรรมชาติ" #. r8TBm #: sc/inc/scfuncs.hrc:1312 msgctxt "SC_OPCODE_LOG10" msgid "Calculates the base-10 logarithm of a number." -msgstr "คำนวณตัวเลขลอการิธึมฐาน 10 ของตัวเลข" +msgstr "คำนวณลอการิทึมฐาน 10 ของตัวเลข" #. EAwMz #: sc/inc/scfuncs.hrc:1313 @@ -7579,13 +7471,13 @@ #: sc/inc/scfuncs.hrc:1314 msgctxt "SC_OPCODE_LOG10" msgid "A value greater than 0 for which the logarithm is to be calculated." -msgstr "ค่ามากกว่า 0 สำหรับลอการิธึมที่ใช้ในการคำนวณ" +msgstr "ค่าที่มากกว่า 0 ที่จะคำนวณหาค่าลอการิทึม" #. kBynB #: sc/inc/scfuncs.hrc:1320 msgctxt "SC_OPCODE_FACT" msgid "Calculates the factorial of a number." -msgstr "คำนวณตัวเลขแฟคตอเรียล" +msgstr "คำนวณค่าแฟกทอเรียลของตัวเลข" #. TX9Jb #: sc/inc/scfuncs.hrc:1321 @@ -7597,7 +7489,7 @@ #: sc/inc/scfuncs.hrc:1322 msgctxt "SC_OPCODE_FACT" msgid "The number for which the factorial is to be calculated." -msgstr "ตัวเลขสำหรับคำนวณแฟคตอเรียล" +msgstr "ตัวเลขที่จะคำนวณหาค่าแฟกทอเรียล" #. DAGMD #: sc/inc/scfuncs.hrc:1328 @@ -7609,13 +7501,13 @@ #: sc/inc/scfuncs.hrc:1329 msgctxt "SC_OPCODE_MOD" msgid "Dividend" -msgstr "ตัวตั้งหาร" +msgstr "ตัวตั้ง" #. XG8Ef #: sc/inc/scfuncs.hrc:1330 msgctxt "SC_OPCODE_MOD" msgid "The number to be divided." -msgstr "ตัวเลขที่ถูกหาร" +msgstr "ตัวตั้งของการหาร" #. ETV6E #: sc/inc/scfuncs.hrc:1331 @@ -7627,13 +7519,13 @@ #: sc/inc/scfuncs.hrc:1332 msgctxt "SC_OPCODE_MOD" msgid "The number by which the dividend is divided." -msgstr "ตัวเลขหารจำนวนที่ถูกหาร" +msgstr "ตัวเลขที่ไปหารตัวตั้ง" #. DrEgm #: sc/inc/scfuncs.hrc:1338 msgctxt "SC_OPCODE_PLUS_MINUS" msgid "Returns the algebraic sign of a number." -msgstr "ส่งกลับตัวเลขเครื่องหมายพีชคณิต" +msgstr "คืนค่าเครื่องหมายบวกลบของตัวเลข" #. V9Zjk #: sc/inc/scfuncs.hrc:1339 @@ -7645,13 +7537,13 @@ #: sc/inc/scfuncs.hrc:1340 msgctxt "SC_OPCODE_PLUS_MINUS" msgid "The number for which the algebraic sign is to be determined." -msgstr "ตัวเลขสำหรับกำหนดเครื่องหมายพีชคณิต" +msgstr "ตัวเลขที่จะพิจารณาเครื่องหมายบวกลบ" #. fektj #: sc/inc/scfuncs.hrc:1346 msgctxt "SC_OPCODE_SUB_TOTAL" msgid "Calculates subtotals in a spreadsheet." -msgstr "คำนวณผลรวมย่อยในตารางคำนวณ" +msgstr "คำนวณยอดย่อยในตารางคำนวณ" #. CcwkE #: sc/inc/scfuncs.hrc:1347 @@ -7663,7 +7555,7 @@ #: sc/inc/scfuncs.hrc:1348 msgctxt "SC_OPCODE_SUB_TOTAL" msgid "Function index. Is an index of the possible functions Total, Max, ..." -msgstr "ดัชนีฟังก์ชัน เป็นดัชนีของฟังก์ชันที่เป็นไปได้ รวมทั้งหมด, มากที่สุด, ..." +msgstr "ดัชนีฟังก์ชัน: เป็นดัชนีของฟังก์ชันที่เรียกใช้ได้ เช่น ผลรวม, ค่ามากสุด ฯลฯ" #. BxfCA #: sc/inc/scfuncs.hrc:1349 @@ -7675,13 +7567,13 @@ #: sc/inc/scfuncs.hrc:1350 msgctxt "SC_OPCODE_SUB_TOTAL" msgid "The cells of the range which are to be taken into account." -msgstr "ช่องของช่วงที่คำนึงถึง" +msgstr "ช่วงที่จะประมวลผล" #. us3F9 #: sc/inc/scfuncs.hrc:1356 msgctxt "SC_OPCODE_AGGREGATE" msgid "Calculates an aggregate in a spreadsheet." -msgstr "" +msgstr "ประมวลผลยอดสะสมในตารางคำนวณ" #. jBsfF #: sc/inc/scfuncs.hrc:1357 @@ -7693,7 +7585,7 @@ #: sc/inc/scfuncs.hrc:1358 msgctxt "SC_OPCODE_AGGREGATE" msgid "Function index. Is an index of the possible functions Total, Max, ..." -msgstr "ดัชนีฟังก์ชัน เป็นดัชนีของฟังก์ชันที่เป็นไปได้ รวมทั้งหมด, มากที่สุด, ..." +msgstr "ดัชนีฟังก์ชัน: เป็นดัชนีของฟังก์ชันที่เรียกใช้ได้ เช่น ผลรวม, ค่ามากสุด ฯลฯ" #. 2FmK3 #: sc/inc/scfuncs.hrc:1359 @@ -7705,32 +7597,31 @@ #: sc/inc/scfuncs.hrc:1360 msgctxt "SC_OPCODE_AGGREGATE" msgid "Option index. Is an index of the possible ignore options." -msgstr "" +msgstr "ดัชนีตัวเลือก: เป็นดัชนีของตัวเลือกในการละเว้นข้อมูลบางส่วน" #. XTTuA #: sc/inc/scfuncs.hrc:1361 msgctxt "SC_OPCODE_AGGREGATE" msgid "Reference 1 or array" -msgstr "" +msgstr "การอ้างอิง 1 หรืออาร์เรย์" #. Zv6Z4 #: sc/inc/scfuncs.hrc:1362 -#, fuzzy msgctxt "SC_OPCODE_AGGREGATE" msgid "The cell(s) of the range which are to be taken into account." -msgstr "ช่องของช่วงที่คำนึงถึง" +msgstr "ช่วงที่จะประมวลผล" #. rXSSg #: sc/inc/scfuncs.hrc:1363 msgctxt "SC_OPCODE_AGGREGATE" msgid "Reference 2..n or k " -msgstr "" +msgstr "การอ้างอิง 2..n หรือ k " #. WRZtk #: sc/inc/scfuncs.hrc:1364 msgctxt "SC_OPCODE_AGGREGATE" msgid "The cells of the range which are to be taken into account or mandatory 2nd argument for certain functions." -msgstr "" +msgstr "ช่วงที่จะประมวลผล หรืออาร์กิวเมนต์ที่สองที่จำเป็นสำหรับบางฟังก์ชัน" #. qUPdR #: sc/inc/scfuncs.hrc:1370 @@ -7754,11 +7645,10 @@ #: sc/inc/scfuncs.hrc:1378 msgctxt "SC_OPCODE_TRUNC" msgid "Truncates the decimal places of a number." -msgstr "ตัดจุดทศนิยมของตัวเลข" +msgstr "ตัดจุดทศนิยมของตัวเลขทิ้ง" #. Toi22 #: sc/inc/scfuncs.hrc:1379 -#, fuzzy msgctxt "SC_OPCODE_TRUNC" msgid "Number" msgstr "ตัวเลข" @@ -7767,29 +7657,28 @@ #: sc/inc/scfuncs.hrc:1380 msgctxt "SC_OPCODE_TRUNC" msgid "The number to be truncated." -msgstr "ตัวเลขที่ถูกตัด" +msgstr "ตัวเลขที่จะตัดจุดทศนิยม" #. VvxmT #: sc/inc/scfuncs.hrc:1381 msgctxt "SC_OPCODE_TRUNC" msgid "Count" -msgstr "นับ" +msgstr "จำนวนตำแหน่ง" #. SQUuq #: sc/inc/scfuncs.hrc:1382 msgctxt "SC_OPCODE_TRUNC" msgid "The number of places after the decimal point that are not to be truncated." -msgstr "ตำแหน่งตัวเลขหลังจุดทศนิยมที่ไม่ถูกตัด" +msgstr "จำนวนตำแหน่งหลังจุดทศนิยมที่จะคงไว้" #. E6J66 #: sc/inc/scfuncs.hrc:1388 msgctxt "SC_OPCODE_ROUND" msgid "Rounds a number to a predefined accuracy." -msgstr "ปัดเศษตัวเลขเพื่อความเที่ยงตรงที่กำหนดไว้ล่วงหน้า" +msgstr "ปัดเศษตัวเลขให้ได้ความละเอียดที่กำหนด" #. n2CZ2 #: sc/inc/scfuncs.hrc:1389 -#, fuzzy msgctxt "SC_OPCODE_ROUND" msgid "Number" msgstr "ตัวเลข" @@ -7798,29 +7687,28 @@ #: sc/inc/scfuncs.hrc:1390 msgctxt "SC_OPCODE_ROUND" msgid "The number to be rounded." -msgstr "ตัวเลขที่ถูกปัดเศษ" +msgstr "ตัวเลขที่จะปัดเศษ" #. GYB4x #: sc/inc/scfuncs.hrc:1391 msgctxt "SC_OPCODE_ROUND" msgid "Count" -msgstr "นับ" +msgstr "จำนวนตำแหน่ง" #. sYkZY #: sc/inc/scfuncs.hrc:1392 msgctxt "SC_OPCODE_ROUND" msgid "The number of places to which a number is to be rounded." -msgstr "จำนวนตำแหน่งที่จะปัดเศษ" +msgstr "จำนวนตำแหน่งทศนิยมที่จะปัดเศษ" #. iBJsA #: sc/inc/scfuncs.hrc:1398 msgctxt "SC_OPCODE_ROUND_UP" msgid "Rounds a number up to the predefined accuracy." -msgstr "ปัดเศษตัวเลขขึ้นเพื่อความเที่ยงตรงที่กำหนดไว้ล่วงหน้า" +msgstr "ปัดเศษตัวเลขขึ้นตามความละเอียดที่กำหนด" #. mafon #: sc/inc/scfuncs.hrc:1399 -#, fuzzy msgctxt "SC_OPCODE_ROUND_UP" msgid "Number" msgstr "ตัวเลข" @@ -7829,29 +7717,28 @@ #: sc/inc/scfuncs.hrc:1400 msgctxt "SC_OPCODE_ROUND_UP" msgid "The number to be rounded up." -msgstr "ตัวเลขที่ปัดเศษขึ้น" +msgstr "ตัวเลขที่จะปัดเศษขึ้น" #. ncCfH #: sc/inc/scfuncs.hrc:1401 msgctxt "SC_OPCODE_ROUND_UP" msgid "Count" -msgstr "นับ" +msgstr "จำนวนตำแหน่ง" #. S8Kef #: sc/inc/scfuncs.hrc:1402 msgctxt "SC_OPCODE_ROUND_UP" msgid "The number of places to which a number is to be rounded." -msgstr "จำนวนตำแหน่งที่จะปัดเศษตัวเลข" +msgstr "จำนวนตำแหน่งทศนิยมที่จะปัดเศษ" #. B3zfB #: sc/inc/scfuncs.hrc:1408 msgctxt "SC_OPCODE_ROUND_DOWN" msgid "Rounds a number down to a predefined accuracy." -msgstr "ปัดเศษลงเพื่อความเที่ยงตรงที่กำหนดไว้ล่วงหน้า" +msgstr "ปัดเศษตัวเลขลงตามความละเอียดที่กำหนด" #. Qbo3S #: sc/inc/scfuncs.hrc:1409 -#, fuzzy msgctxt "SC_OPCODE_ROUND_DOWN" msgid "Number" msgstr "ตัวเลข" @@ -7866,19 +7753,19 @@ #: sc/inc/scfuncs.hrc:1411 msgctxt "SC_OPCODE_ROUND_DOWN" msgid "Count" -msgstr "นับ" +msgstr "จำนวนตำแหน่ง" #. mYjqF #: sc/inc/scfuncs.hrc:1412 msgctxt "SC_OPCODE_ROUND_DOWN" msgid "The number of places down to which a number is to be rounded." -msgstr "จำนวนตำแหน่งตัวเลขที่ปัดเศษลง" +msgstr "จำนวนตำแหน่งทศนิยมที่จะปัดเศษ" #. HA6AT #: sc/inc/scfuncs.hrc:1418 msgctxt "SC_OPCODE_EVEN" msgid "Rounds a positive number up and negative number down to the nearest even integer." -msgstr "ปัดเศษตัวเลขขึ้นเป็นจำนวนเต็มคู่ที่ใกล้ที่สุด" +msgstr "ปัดตัวเลขบวกขึ้นและตัวเลขลบลงเป็นจำนวนเต็มคู่ที่ใกล้ที่สุด" #. r7k5d #: sc/inc/scfuncs.hrc:1419 @@ -7890,13 +7777,13 @@ #: sc/inc/scfuncs.hrc:1420 msgctxt "SC_OPCODE_EVEN" msgid "The number to be rounded up." -msgstr "ตัวเลขที่ปัดเศษขึ้น" +msgstr "ตัวเลขที่จะปัดขึ้น" #. ViufC #: sc/inc/scfuncs.hrc:1426 msgctxt "SC_OPCODE_ODD" msgid "Rounds a positive number up and negative number down to the nearest odd integer." -msgstr "ปัดเศษตัวเลขขึ้นเป็นจำนวนเต็มคี่ที่ใกล้ที่สุด" +msgstr "ปัดตัวเลขบวกขึ้นและตัวเลขลบลงเป็นจำนวนเต็มคี่ที่ใกล้ที่สุด" #. 4J3AU #: sc/inc/scfuncs.hrc:1427 @@ -7908,7 +7795,7 @@ #: sc/inc/scfuncs.hrc:1428 msgctxt "SC_OPCODE_ODD" msgid "The number to be rounded up." -msgstr "ตัวเลขที่ปัดเศษขึ้น" +msgstr "ตัวเลขที่จะปัดขึ้น" #. Ab3DG #: sc/inc/scfuncs.hrc:1434 @@ -7917,6 +7804,8 @@ "Rounds a number away from zero to the nearest multiple of significance.\n" "This function exists for interoperability with Microsoft Excel 2007 or older versions." msgstr "" +"ปัดเศษตัวเลขขึ้นให้เป็นค่าที่ใกล้ที่สุดที่เป็นจำนวนเท่าของเลขนัยสำคัญที่กำหนด\n" +"ฟังก์ชันนี้มีไว้เพื่อความเข้ากันได้กับ Microsoft Excel 2007 หรือรุ่นก่อนนั้น" #. mUd2c #: sc/inc/scfuncs.hrc:1435 @@ -7928,7 +7817,7 @@ #: sc/inc/scfuncs.hrc:1436 msgctxt "SC_OPCODE_CEIL_MS" msgid "The number to be rounded up." -msgstr "ตัวเลขที่ปัดเศษขึ้น" +msgstr "ตัวเลขที่จะปัดเศษขึ้น" #. EZCfu #: sc/inc/scfuncs.hrc:1437 @@ -7940,13 +7829,13 @@ #: sc/inc/scfuncs.hrc:1438 msgctxt "SC_OPCODE_CEIL_MS" msgid "The number to whose multiple the value is rounded." -msgstr "ตัวเลขผลคูณที่ถูกปัดเศษ" +msgstr "ค่าที่กำหนดความละเอียดของการปัดเศษ โดยจะปัดขึ้นให้เป็นจำนวนเท่าของค่านี้" #. 5vQRv #: sc/inc/scfuncs.hrc:1444 msgctxt "SC_OPCODE_CEIL_PRECISE" msgid "Rounds a number up to the nearest multiple of significance, regardless of sign of significance." -msgstr "" +msgstr "ปัดเศษตัวเลขขึ้นให้เป็นค่าที่ใกล้ที่สุดที่เป็นจำนวนเท่าของเลขนัยสำคัญที่กำหนด โดยไม่ขึ้นกับเครื่องหมายของเลขนัยสำคัญ" #. vKknK #: sc/inc/scfuncs.hrc:1445 @@ -7958,7 +7847,7 @@ #: sc/inc/scfuncs.hrc:1446 msgctxt "SC_OPCODE_CEIL_PRECISE" msgid "The number to be rounded up." -msgstr "ตัวเลขที่ปัดเศษขึ้น" +msgstr "ตัวเลขที่จะปัดเศษขึ้น" #. q4Ruw #: sc/inc/scfuncs.hrc:1447 @@ -7970,13 +7859,13 @@ #: sc/inc/scfuncs.hrc:1448 msgctxt "SC_OPCODE_CEIL_PRECISE" msgid "The number to whose multiple the value is rounded." -msgstr "ตัวเลขผลคูณที่ถูกปัดเศษ" +msgstr "ค่าที่กำหนดความละเอียดของการปัดเศษ โดยจะปัดขึ้นให้เป็นจำนวนเท่าของค่านี้" #. edDBP #: sc/inc/scfuncs.hrc:1454 msgctxt "SC_OPCODE_CEIL_ISO" msgid "Rounds a number up to the nearest multiple of significance, regardless of sign of significance." -msgstr "" +msgstr "ปัดเศษตัวเลขขึ้นให้เป็นค่าที่ใกล้ที่สุดที่เป็นจำนวนเท่าของเลขนัยสำคัญที่กำหนด โดยไม่ขึ้นกับเครื่องหมายของเลขนัยสำคัญ" #. NG3Y9 #: sc/inc/scfuncs.hrc:1455 @@ -7988,7 +7877,7 @@ #: sc/inc/scfuncs.hrc:1456 msgctxt "SC_OPCODE_CEIL_ISO" msgid "The number to be rounded up." -msgstr "ตัวเลขที่ปัดเศษขึ้น" +msgstr "ตัวเลขที่จะปัดเศษขึ้น" #. gAmRk #: sc/inc/scfuncs.hrc:1457 @@ -8000,13 +7889,13 @@ #: sc/inc/scfuncs.hrc:1458 msgctxt "SC_OPCODE_CEIL_ISO" msgid "The number to whose multiple the value is rounded." -msgstr "ตัวเลขผลคูณที่ถูกปัดเศษ" +msgstr "ค่าที่กำหนดความละเอียดของการปัดเศษ โดยจะปัดให้เป็นจำนวนเท่าของค่านี้" #. SMSMv #: sc/inc/scfuncs.hrc:1464 msgctxt "SC_OPCODE_CEIL" msgid "Rounds a number up to the nearest multiple of significance." -msgstr "ปัดเศษตัวเลขขึ้นผลคูณที่ใกล้ที่สุดของเลขนัยสำคัญ" +msgstr "ปัดเศษตัวเลขขึ้นให้เป็นค่าที่ใกล้ที่สุดที่เป็นจำนวนเท่าของเลขนัยสำคัญที่กำหนด" #. so3Cd #: sc/inc/scfuncs.hrc:1465 @@ -8018,7 +7907,7 @@ #: sc/inc/scfuncs.hrc:1466 msgctxt "SC_OPCODE_CEIL" msgid "The number to be rounded up." -msgstr "ตัวเลขที่ปัดเศษขึ้น" +msgstr "ตัวเลขที่จะปัดเศษขึ้น" #. cNoTN #: sc/inc/scfuncs.hrc:1467 @@ -8030,7 +7919,7 @@ #: sc/inc/scfuncs.hrc:1468 msgctxt "SC_OPCODE_CEIL" msgid "If given the number to whose multiple the value is rounded, else -1 or 1 depending on sign of Number." -msgstr "" +msgstr "ถ้ากำหนด จะเป็นค่าที่กำหนดความละเอียดของการปัดเศษ โดยจะปัดให้เป็นจำนวนเท่าของค่านี้ ถ้าไม่กำหนด ก็จะถือว่าเป็น -1 หรือ 1 ขึ้นอยู่กับเครื่องหมายของตัวเลขที่ปัดเศษ" #. tBvNu #: sc/inc/scfuncs.hrc:1469 @@ -8042,13 +7931,13 @@ #: sc/inc/scfuncs.hrc:1470 msgctxt "SC_OPCODE_CEIL" msgid "If given and not equal to zero then rounded up according to amount when a negative number and significance." -msgstr "ถ้าให้มาและไม่เท่ากับศูนย์ให้ปัดเศษขึ้นตามจำนวนลบและเลขนัยสำคัญ" +msgstr "ถ้ากำหนดและเป็นค่าไม่เท่ากับศูนย์ ก็จะปัดเศษลงเมื่อทั้งตัวเลขที่ปัดเศษและเลขนัยสำคัญเป็นค่าลบ" #. 6M8Fz #: sc/inc/scfuncs.hrc:1476 msgctxt "SC_OPCODE_CEIL_MATH" msgid "Rounds a number up to the nearest multiple of significance." -msgstr "ปัดเศษตัวเลขขึ้นผลคูณที่ใกล้ที่สุดของเลขนัยสำคัญ" +msgstr "ปัดเศษตัวเลขขึ้นให้เป็นค่าที่ใกล้ที่สุดที่เป็นจำนวนเท่าของเลขนัยสำคัญที่กำหนด" #. aZfnw #: sc/inc/scfuncs.hrc:1477 @@ -8060,7 +7949,7 @@ #: sc/inc/scfuncs.hrc:1478 msgctxt "SC_OPCODE_CEIL_MATH" msgid "The number to be rounded up." -msgstr "ตัวเลขที่ปัดเศษขึ้น" +msgstr "ตัวเลขที่จะปัดเศษขึ้น" #. d8QkM #: sc/inc/scfuncs.hrc:1479 @@ -8072,7 +7961,7 @@ #: sc/inc/scfuncs.hrc:1480 msgctxt "SC_OPCODE_CEIL_MATH" msgid "If given the number to whose multiple the value is rounded, else 1." -msgstr "" +msgstr "ถ้ากำหนด จะเป็นค่าที่กำหนดความละเอียดของการปัดเศษ โดยจะปัดให้เป็นจำนวนเท่าของค่านี้ ถ้าไม่กำหนด ก็จะถือว่าเป็น 1" #. K3ya2 #: sc/inc/scfuncs.hrc:1481 @@ -8084,13 +7973,13 @@ #: sc/inc/scfuncs.hrc:1482 msgctxt "SC_OPCODE_CEIL_MATH" msgid "For negative numbers; if given and not equal to zero then rounds away from zero, else rounds towards zero." -msgstr "" +msgstr "ถ้ากำหนดและไม่เท่ากับศูนย์ จะปัดเศษเลขลบออกจากศูนย์ มิฉะนั้นจะปัดเศษเลขลบเข้าหาศูนย์" #. zGxYF #: sc/inc/scfuncs.hrc:1488 msgctxt "SC_OPCODE_FLOOR" msgid "Rounds number down to the nearest multiple of significance." -msgstr "ปัดเศษตัวเลขลงให้ใกล้ผลคูณของเลขนัยสำคัญที่สุด" +msgstr "ปัดเศษตัวเลขลงให้เป็นค่าที่ใกล้ที่สุดที่เป็นจำนวนเท่าของเลขนัยสำคัญที่กำหนด" #. rEBiB #: sc/inc/scfuncs.hrc:1489 @@ -8114,7 +8003,7 @@ #: sc/inc/scfuncs.hrc:1492 msgctxt "SC_OPCODE_FLOOR" msgid "The number to whose multiple the value is to be rounded down." -msgstr "ตัวเลขของผลคูณที่ปัดเศษลง" +msgstr "ค่าที่กำหนดความละเอียดของการปัดเศษ โดยจะปัดลงให้เป็นจำนวนเท่าของค่านี้" #. CAUCc #: sc/inc/scfuncs.hrc:1493 @@ -8124,10 +8013,9 @@ #. QQWo6 #: sc/inc/scfuncs.hrc:1494 -#, fuzzy msgctxt "SC_OPCODE_FLOOR" msgid "If given and not equal to zero then rounded towards zero with negative number and significance." -msgstr "ถ้าให้มาและไม่เท่ากับศูนย์ให้ปัดเศษลงตามจำนวนลบและเลขนัยสำคัญ" +msgstr "ถ้ากำหนดและเป็นค่าไม่เท่ากับศูนย์ ก็จะปัดเศษเข้าหาศูนย์เมื่อทั้งตัวเลขที่ปัดเศษและเลขนัยสำคัญเป็นค่าลบ" #. 2oGdX #: sc/inc/scfuncs.hrc:1500 @@ -8136,6 +8024,8 @@ "Rounds number towards zero to the nearest multiple of absolute value of significance.\n" "This function exists for interoperability with Microsoft Excel 2007 or older versions." msgstr "" +"ปัดเศษตัวเลขลงให้เป็นค่าที่ใกล้ที่สุดที่เป็นจำนวนเท่าของเลขนัยสำคัญที่กำหนด\n" +"ฟังก์ชันนี้มีไว้เพื่อความเข้ากันได้กับ Microsoft Excel 2007 หรือรุ่นก่อนนั้น" #. F27ze #: sc/inc/scfuncs.hrc:1501 @@ -8159,17 +8049,16 @@ #: sc/inc/scfuncs.hrc:1504 msgctxt "SC_OPCODE_FLOOR_MS" msgid "The number to whose multiple the value is to be rounded down." -msgstr "ตัวเลขของผลคูณที่ปัดเศษลง" +msgstr "ค่าที่กำหนดความละเอียดของการปัดเศษ โดยจะปัดลงให้เป็นจำนวนเท่าของค่านี้" #. uT8wa #: sc/inc/scfuncs.hrc:1510 msgctxt "SC_OPCODE_FLOOR_MATH" msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance." -msgstr "" +msgstr "ปัดเศษตัวเลขลงให้เป็นค่าที่ใกล้ที่สุดที่เป็นจำนวนเท่าของเลขนัยสำคัญที่กำหนด โดยไม่ขึ้นกับเครื่องหมายของเลขนัยสำคัญ" #. U6Tyw #: sc/inc/scfuncs.hrc:1511 -#, fuzzy msgctxt "SC_OPCODE_FLOOR_MATH" msgid "Number" msgstr "ตัวเลข" @@ -8190,7 +8079,7 @@ #: sc/inc/scfuncs.hrc:1514 msgctxt "SC_OPCODE_FLOOR_MATH" msgid "The number to whose multiple the value is to be rounded down." -msgstr "ตัวเลขของผลคูณที่ปัดเศษลง" +msgstr "ค่าที่กำหนดความละเอียดของการปัดเศษ โดยจะปัดลงให้เป็นจำนวนเท่าของค่านี้" #. yTCb8 #: sc/inc/scfuncs.hrc:1515 @@ -8202,18 +8091,16 @@ #: sc/inc/scfuncs.hrc:1516 msgctxt "SC_OPCODE_FLOOR_MATH" msgid "For negative numbers; if given and not equal to or less than zero rounds towards zero." -msgstr "" +msgstr "ถ้ากำหนดและไม่เท่ากับศูนย์ จะปัดเศษเลขลบเข้าหาศูนย์" #. GHb43 #: sc/inc/scfuncs.hrc:1522 -#, fuzzy msgctxt "SC_OPCODE_FLOOR_PRECISE" msgid "Rounds number down (towards -∞) to the nearest multiple of significance." -msgstr "ปัดเศษตัวเลขลงให้ใกล้ผลคูณของเลขนัยสำคัญที่สุด" +msgstr "ปัดเศษตัวเลขลง (เข้าหา -∞) ให้เป็นค่าที่ใกล้ที่สุดที่เป็นจำนวนเท่าของเลขนัยสำคัญที่กำหนด" #. h593W #: sc/inc/scfuncs.hrc:1523 -#, fuzzy msgctxt "SC_OPCODE_FLOOR_PRECISE" msgid "Number" msgstr "ตัวเลข" @@ -8234,7 +8121,7 @@ #: sc/inc/scfuncs.hrc:1526 msgctxt "SC_OPCODE_FLOOR_PRECISE" msgid "The number to whose multiple the value is to be rounded down. Sign has no meaning." -msgstr "" +msgstr "ค่าที่กำหนดความละเอียดของการปัดเศษ โดยจะปัดลงให้เป็นจำนวนเท่าของค่านี้ เครื่องหมายของค่านี้ไม่มีความหมายต่อการทำงาน" #. 3WD9m #: sc/inc/scfuncs.hrc:1532 @@ -8252,7 +8139,7 @@ #: sc/inc/scfuncs.hrc:1534 msgctxt "SC_OPCODE_GCD" msgid "Integer 1; integer 2,... are integers for which the greatest common divisor is to be calculated." -msgstr "จำนวนเต็ม 1; จำนวนเต็ม 2,... เป็นจำนวนเต็มสำหรับคำนวณตัวหารร่วมมาก" +msgstr "จำนวนเต็ม 1; จำนวนเต็ม 2,... คือจำนวนเต็มที่จะคำนวณหาตัวหารร่วมมาก" #. 8Bp3W #: sc/inc/scfuncs.hrc:1540 @@ -8270,102 +8157,97 @@ #: sc/inc/scfuncs.hrc:1542 msgctxt "SC_OPCODE_LCM" msgid "Integer 1; integer 2,... are integers whose smallest common multiple is to be calculated." -msgstr "จำนวนเต็ม 1; จำนวนเต็ม 2,... เป็นจำนวนเต็มของตัวคูณร่วมน้อยที่ใช้ในการคำนวณ" +msgstr "จำนวนเต็ม 1; จำนวนเต็ม 2,... คือจำนวนเต็มที่จะคำนวณหาตัวคูณร่วมน้อย" #. DHxNC #: sc/inc/scfuncs.hrc:1548 msgctxt "SC_OPCODE_MAT_TRANS" msgid "Array transposition. Exchanges the rows and columns of an array." -msgstr "การทรานสโพสอาเรย์ เป็นการสลับระหว่างแถวกับคอลัมน์ของอาเรย์" +msgstr "การทรานสโพสอาร์เรย์: สลับแถวกับคอลัมน์ของอาร์เรย์" #. aHw86 #: sc/inc/scfuncs.hrc:1549 -#, fuzzy msgctxt "SC_OPCODE_MAT_TRANS" msgid "Array" -msgstr "อาเรย์ " +msgstr "อาร์เรย์" #. RpAQz #: sc/inc/scfuncs.hrc:1550 msgctxt "SC_OPCODE_MAT_TRANS" msgid "The array in which the rows and columns have been transposed." -msgstr "อาเรย์ซึ่งแถวและคอลัมน์ภายในนั้นถูกทรานสโพส" +msgstr "อาร์เรย์ที่จะสลับเปลี่ยนแถวและคอลัมน์" #. jc4zS #: sc/inc/scfuncs.hrc:1556 msgctxt "SC_OPCODE_MAT_MULT" msgid "Array multiplication. Returns the product of two arrays." -msgstr "การคูณอาเรย์ ส่งกลับผลคูณของสองอาเรย์" +msgstr "การคูณอาร์เรย์: คืนค่าผลคูณของสองอาร์เรย์" #. FhD6y #: sc/inc/scfuncs.hrc:1557 -#, fuzzy msgctxt "SC_OPCODE_MAT_MULT" msgid "Array 1" -msgstr "อาเรย์ " +msgstr "อาร์เรย์ 1" #. FdTzG #: sc/inc/scfuncs.hrc:1558 msgctxt "SC_OPCODE_MAT_MULT" msgid "The first array for the array product." -msgstr "อาเรย์แรกสำหรับการคูณอาเรย์" +msgstr "อาร์เรย์แรกสำหรับการคูณอาร์เรย์" #. Ebs87 #: sc/inc/scfuncs.hrc:1559 -#, fuzzy msgctxt "SC_OPCODE_MAT_MULT" msgid "Array 2" -msgstr "อาเรย์ " +msgstr "อาร์เรย์ 2" #. 3xEDC #: sc/inc/scfuncs.hrc:1560 msgctxt "SC_OPCODE_MAT_MULT" msgid "The second array having the same number of rows as the first array has columns." -msgstr "อาเรย์ที่สองมีจำนวนแถวเท่ากับจำนวนคอลัมน์ของอาเรย์แรก" +msgstr "อาร์เรย์ที่สอง ซึ่งมีจำนวนแถวเท่ากับจำนวนคอลัมน์ของอาร์เรย์แรก" #. FEfgL #: sc/inc/scfuncs.hrc:1566 msgctxt "SC_OPCODE_MAT_DET" msgid "Returns the array determinant." -msgstr "ส่งกลับค่าดีเทอร์มิแนนต์ของอาเรย์" +msgstr "คืนค่าดีเทอร์มิแนนต์ของอาร์เรย์" #. DFRHS #: sc/inc/scfuncs.hrc:1567 -#, fuzzy msgctxt "SC_OPCODE_MAT_DET" msgid "Array" -msgstr "อาเรย์ " +msgstr "อาร์เรย์" #. Aa8fB #: sc/inc/scfuncs.hrc:1568 msgctxt "SC_OPCODE_MAT_DET" msgid "The array for which the determinant is to be determined." -msgstr "อาเรย์ที่ต้องการหาค่าดีเทอร์มิแนนต์" +msgstr "อาร์เรย์ที่ต้องการหาค่าดีเทอร์มิแนนต์" #. QkN5Q #: sc/inc/scfuncs.hrc:1574 msgctxt "SC_OPCODE_MAT_INV" msgid "Returns the inverse of an array." -msgstr "ส่งกลับอินเวิร์สของอาเรย์" +msgstr "คืนค่าตัวผกผันของอาร์เรย์" #. Wwjsu #: sc/inc/scfuncs.hrc:1575 -#, fuzzy msgctxt "SC_OPCODE_MAT_INV" msgid "Array" -msgstr "อาเรย์ " +msgstr "อาร์เรย์" #. TWy2P #: sc/inc/scfuncs.hrc:1576 msgctxt "SC_OPCODE_MAT_INV" msgid "The array to be inverted." -msgstr "อาเรย์ที่ต้องการหาอินเวิร์ส" +msgstr "อาร์เรย์ที่ต้องการหาตัวผกผัน" #. 6FfMG #: sc/inc/scfuncs.hrc:1582 msgctxt "SC_OPCODE_MATRIX_UNIT" msgid "Returns the unitary square array of a certain size." -msgstr "ส่งกลับอาเรย์จตุรัสยูนิแทรีขนาดใดขนาดหนึ่ง" +msgstr "คืนค่าอาร์เรย์เอกลักษณ์ตามขนาดที่กำหนด" #. LjQFC #: sc/inc/scfuncs.hrc:1583 @@ -8377,128 +8259,121 @@ #: sc/inc/scfuncs.hrc:1584 msgctxt "SC_OPCODE_MATRIX_UNIT" msgid "The size of the unitary array." -msgstr "ขนาดของอาเรย์ยูนิแทรี" +msgstr "ขนาดของอาร์เรย์เอกลักษณ์" #. dg4DZ #: sc/inc/scfuncs.hrc:1590 msgctxt "SC_OPCODE_SUM_PRODUCT" msgid "(Inner products) Returns the sum of the products of array arguments." -msgstr "(การคูณภายใน) ส่งกลับผลรวมของการคูณของอาร์กิวเมนต์ที่เป็นอาเรย์" +msgstr "(ผลคูณภายใน) คืนค่าผลรวมของผลคูณระหว่างสมาชิกของอาร์เรย์ต่างๆ" #. pZTDb #: sc/inc/scfuncs.hrc:1591 msgctxt "SC_OPCODE_SUM_PRODUCT" msgid "Array " -msgstr "อาเรย์ " +msgstr "อาร์เรย์ " #. WCRTE #: sc/inc/scfuncs.hrc:1592 -#, fuzzy msgctxt "SC_OPCODE_SUM_PRODUCT" msgid "Array 1, array 2, ... are arrays whose arguments are to be multiplied." -msgstr "อาเรย์ 1, อาเรย์ 2, ... จนถึงมากที่สุด 30 อาเรย์ ที่จะนำอาร์กิวเม้นต์มาคูณ" +msgstr "อาร์เรย์ 1, อาร์เรย์ 2, ... คืออาร์เรย์ต่างๆ ที่จะคูณสมาชิก" #. uPVf6 #: sc/inc/scfuncs.hrc:1598 msgctxt "SC_OPCODE_SUM_X2MY2" msgid "Returns the sum of the difference of squares of two arrays." -msgstr "ส่งกลับผลรวมของผลต่างของกำลังสองของสองอาเรย์" +msgstr "คืนค่าผลรวมของผลต่างของกำลังสองของสมาชิกอาร์เรย์สองแถว" #. AUFNs #: sc/inc/scfuncs.hrc:1599 -#, fuzzy msgctxt "SC_OPCODE_SUM_X2MY2" msgid "Array X" -msgstr "อาเรย์ " +msgstr "อาร์เรย์ X" #. 9vSGo #: sc/inc/scfuncs.hrc:1600 msgctxt "SC_OPCODE_SUM_X2MY2" msgid "First array where the square of the arguments are totalled." -msgstr "อาเรย์แรกที่จะนำกำลังสองของอาร์กิวเม้นต์มาหาผลรวม" +msgstr "อาร์เรย์แรกที่จะนำกำลังสองของสมาชิกมาหาผลรวม" #. YSPPg #: sc/inc/scfuncs.hrc:1601 -#, fuzzy msgctxt "SC_OPCODE_SUM_X2MY2" msgid "Array Y" -msgstr "อาเรย์ " +msgstr "อาร์เรย์ Y" #. 9T4Rr #: sc/inc/scfuncs.hrc:1602 msgctxt "SC_OPCODE_SUM_X2MY2" msgid "Second array where the square of the arguments is to be subtracted." -msgstr "อาเรย์ที่สองที่จะนำกำลังสองของอาร์กิวเม้นต์ไปลบ" +msgstr "อาร์เรย์ที่สองที่จะนำกำลังสองของสมาชิกไปลบ" #. hMGY3 #: sc/inc/scfuncs.hrc:1608 msgctxt "SC_OPCODE_SUM_X2DY2" msgid "Returns the total of the square sum of two arrays." -msgstr "ส่งกลับผลรวมของผลบวกกำลังสองของสองอาเรย์" +msgstr "คืนค่าผลรวมของผลบวกของกำลังสองของสมาชิกอาร์เรย์สองแถว" #. FrwhU #: sc/inc/scfuncs.hrc:1609 -#, fuzzy msgctxt "SC_OPCODE_SUM_X2DY2" msgid "Array X" -msgstr "อาเรย์ " +msgstr "อาร์เรย์ X" #. H8mTf #: sc/inc/scfuncs.hrc:1610 msgctxt "SC_OPCODE_SUM_X2DY2" msgid "First array where the square of the arguments are totalled." -msgstr "อาเรย์แรกที่จะนำกำลังสองของอาร์กิวเม้นต์มาหาผลรวม" +msgstr "อาร์เรย์แรกที่จะนำกำลังสองของสมาชิกมาหาผลรวม" #. Vtggo #: sc/inc/scfuncs.hrc:1611 -#, fuzzy msgctxt "SC_OPCODE_SUM_X2DY2" msgid "Array Y" -msgstr "อาเรย์ " +msgstr "อาร์เรย์ Y" #. reqfP #: sc/inc/scfuncs.hrc:1612 msgctxt "SC_OPCODE_SUM_X2DY2" msgid "Second array where the square of the arguments is to be totalled." -msgstr "อาเรย์ที่สองที่จะนำกำลังสองของอาร์กิวเม้นต์มาหาผลรวม" +msgstr "อาร์เรย์ที่สองที่จะนำกำลังสองของสมาชิกมาหาผลรวม" #. 2Z63V #: sc/inc/scfuncs.hrc:1618 msgctxt "SC_OPCODE_SUM_XMY2" msgid "Returns the sum of squares of differences of two arrays." -msgstr "ส่งกลับผลรวมของกำลังสองของผลต่างของสองอาเรย์" +msgstr "คืนค่าผลรวมของกำลังสองของผลต่างของสมาชิกอาร์เรย์สองแถว" #. ZMxo6 #: sc/inc/scfuncs.hrc:1619 -#, fuzzy msgctxt "SC_OPCODE_SUM_XMY2" msgid "Array X" -msgstr "อาเรย์ " +msgstr "อาร์เรย์ X" #. 53FNi #: sc/inc/scfuncs.hrc:1620 msgctxt "SC_OPCODE_SUM_XMY2" msgid "First array for forming argument differences." -msgstr "อาเรย์แรกสำหรับการจัดผลต่างของอาร์กิวเม้นท์" +msgstr "อาร์เรย์แรกที่เป็นตัวตั้งในการหาผลต่าง" #. BKfnC #: sc/inc/scfuncs.hrc:1621 -#, fuzzy msgctxt "SC_OPCODE_SUM_XMY2" msgid "Array Y" -msgstr "อาเรย์ " +msgstr "อาร์เรย์ Y" #. 2mWCE #: sc/inc/scfuncs.hrc:1622 msgctxt "SC_OPCODE_SUM_XMY2" msgid "Second array for forming the argument differences." -msgstr "อาเรย์ที่สองสำหรับการจัดผลต่างของอาร์กิวเม้นท์" +msgstr "อาร์เรย์ที่สองที่เป็นตัวลบในการหาผลต่าง" #. DQZg5 #: sc/inc/scfuncs.hrc:1628 msgctxt "SC_OPCODE_FREQUENCY" msgid "Returns a frequency distribution as a vertical array." -msgstr "ส่งกลับการแจกแจงความถี่เป็นอาเรย์แนวตั้ง" +msgstr "คืนค่าการแจกแจงความถี่เป็นอาร์เรย์แนวตั้ง" #. iHT4A #: sc/inc/scfuncs.hrc:1629 @@ -8510,290 +8385,277 @@ #: sc/inc/scfuncs.hrc:1630 msgctxt "SC_OPCODE_FREQUENCY" msgid "The array of the data." -msgstr "อาเรย์ของข้อมูล" +msgstr "อาร์เรย์ของข้อมูล" #. Pe6wN #: sc/inc/scfuncs.hrc:1631 -#, fuzzy msgctxt "SC_OPCODE_FREQUENCY" msgid "Classes" -msgstr "คลาส" +msgstr "ระดับชั้น" #. mtdmt #: sc/inc/scfuncs.hrc:1632 msgctxt "SC_OPCODE_FREQUENCY" msgid "The array for forming classes." -msgstr "อาเรย์สำหรับการจัดคลาส" +msgstr "อาร์เรย์ที่กำหนดระดับชั้นของข้อมูล" #. BDaQC #: sc/inc/scfuncs.hrc:1638 msgctxt "SC_OPCODE_LINEST" msgid "Calculates parameters of the linear regression as an array." -msgstr "คำนวณพารามิเตอร์ของการถดถอยแบบเส้นตรงเป็นอาเรย์" +msgstr "คำนวณพารามิเตอร์ต่างๆ ของการถดถอยเชิงเส้นโดยให้ผลลัพธ์เป็นอาร์เรย์" #. kziZ4 #: sc/inc/scfuncs.hrc:1639 msgctxt "SC_OPCODE_LINEST" msgid "Data Y" -msgstr "" +msgstr "ข้อมูล Y" #. fyrtU #: sc/inc/scfuncs.hrc:1640 msgctxt "SC_OPCODE_LINEST" msgid "The Y data array." -msgstr "อาเรย์ข้อมูล Y " +msgstr "อาร์เรย์ข้อมูล Y" #. 53VYE #: sc/inc/scfuncs.hrc:1641 msgctxt "SC_OPCODE_LINEST" msgid "Data X" -msgstr "" +msgstr "ข้อมูล X" #. aKFRR #: sc/inc/scfuncs.hrc:1642 msgctxt "SC_OPCODE_LINEST" msgid "The X data array." -msgstr "อาเรย์ข้อมูล X " +msgstr "อาร์เรย์ข้อมูล X" #. mdXQk #: sc/inc/scfuncs.hrc:1643 -#, fuzzy msgctxt "SC_OPCODE_LINEST" msgid "Linear type" -msgstr "เส้นตรง_ชนิด" +msgstr "ชนิดของเส้นตรง" #. P3b7m #: sc/inc/scfuncs.hrc:1644 msgctxt "SC_OPCODE_LINEST" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "ถ้าชนิด = 0 เส้นตรงจะถูกคำนวณผ่านจุดศูนย์, หรือถ้าเป็นอย่างอื่นให้ย้ายเส้นตรง" +msgstr "ถ้าชนิด = 0 จะคำนวณหาเส้นตรงที่ผ่านจุดกำเนิด มิฉะนั้นก็จะคำนวณหาเส้นตรงที่ไม่จำเป็นต้องผ่านจุดกำเนิด" #. GrdVq #: sc/inc/scfuncs.hrc:1645 -#, fuzzy msgctxt "SC_OPCODE_LINEST" msgid "Stats" -msgstr "สถานะ" +msgstr "สถิติ" #. GeEDo #: sc/inc/scfuncs.hrc:1646 msgctxt "SC_OPCODE_LINEST" msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." -msgstr "ถ้าพารามิเตอร์ = 0 ให้คำนวณสัมประสิทธิ์การถดถอยอย่างเดียว, ค่าอื่นๆ ก็เหมือนกัน" +msgstr "ถ้าพารามิเตอร์ = 0 จะคำนวณเฉพาะสัมประสิทธิ์การถดถอยเท่านั้น มิฉะนั้นก็จะคำนวณค่าอื่นด้วย" #. TjhxE #: sc/inc/scfuncs.hrc:1652 msgctxt "SC_OPCODE_LOGEST" msgid "Calculates the parameters of the exponential regression curve as an array." -msgstr "คำนวณพารามิเตอร์ของเส้นโค้งการถดถอยแบบเอ็กซ์โปเนนเชียลเป็นอาเรย์" +msgstr "คำนวณพารามิเตอร์ต่างๆ ของการถดถอยแบบเอ็กซ์โพเนนเชียลโดยให้ผลลัพธ์เป็นอาร์เรย์" #. HfsMq #: sc/inc/scfuncs.hrc:1653 msgctxt "SC_OPCODE_LOGEST" msgid "Data Y" -msgstr "" +msgstr "ข้อมูล Y" #. qwCCT #: sc/inc/scfuncs.hrc:1654 msgctxt "SC_OPCODE_LOGEST" msgid "The Y data array." -msgstr "อาเรย์ข้อมูล Y " +msgstr "อาร์เรย์ข้อมูล Y" #. ThcLS #: sc/inc/scfuncs.hrc:1655 msgctxt "SC_OPCODE_LOGEST" msgid "Data X" -msgstr "" +msgstr "ข้อมูล X" #. kMYqN #: sc/inc/scfuncs.hrc:1656 msgctxt "SC_OPCODE_LOGEST" msgid "The X data array." -msgstr "อาเรย์ข้อมูล X " +msgstr "อาร์เรย์ข้อมูล X" #. DNNRH #: sc/inc/scfuncs.hrc:1657 -#, fuzzy msgctxt "SC_OPCODE_LOGEST" msgid "Function type" -msgstr "ฟังก์ชัน_ชนิด" +msgstr "ชนิดของฟังก์ชัน" #. ksiif #: sc/inc/scfuncs.hrc:1658 msgctxt "SC_OPCODE_LOGEST" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "ถ้าชนิด = 0 จากนั้นให้คำนวณฟังก์ชันในรูปแบบของ y=m^x, หรือฟังก์ชัน y=b*m^x ด้วย" +msgstr "ถ้าชนิด = 0 จะคำนวณฟังก์ชันในรูป y=m^x มิฉะนั้นก็จะคำนวณฟังก์ชันในรูป y=b*m^x ด้วย" #. RxXC4 #: sc/inc/scfuncs.hrc:1659 -#, fuzzy msgctxt "SC_OPCODE_LOGEST" msgid "Stats" -msgstr "สถานะ" +msgstr "สถิติ" #. Epsjr #: sc/inc/scfuncs.hrc:1660 msgctxt "SC_OPCODE_LOGEST" msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." -msgstr "ถ้าพารามิเตอร์ = 0 จากนั้นให้คำนวณค่าสัมประสิทธิ์แบบถดถอยเท่านั้น, ค่าอื่นๆ ก็เหมือนกัน" +msgstr "ถ้าพารามิเตอร์ = 0 จะคำนวณเฉพาะสัมประสิทธิ์การถดถอยเท่านั้น มิฉะนั้นก็จะคำนวณค่าอื่นด้วย" #. FABFr #: sc/inc/scfuncs.hrc:1666 msgctxt "SC_OPCODE_TREND" msgid "Calculates points along a regression line." -msgstr "คำนวณจุดตามเส้นถดถอย" +msgstr "คำนวณจุดต่างๆ บนเส้นถดถอย" #. Jh8vp #: sc/inc/scfuncs.hrc:1667 msgctxt "SC_OPCODE_TREND" msgid "Data Y" -msgstr "" +msgstr "ข้อมูล Y" #. XBTHe #: sc/inc/scfuncs.hrc:1668 msgctxt "SC_OPCODE_TREND" msgid "The Y data array." -msgstr "อาเรย์ข้อมูล Y " +msgstr "อาร์เรย์ข้อมูล Y" #. gfEwT #: sc/inc/scfuncs.hrc:1669 msgctxt "SC_OPCODE_TREND" msgid "Data X" -msgstr "" +msgstr "ข้อมูล X" #. LhqAb #: sc/inc/scfuncs.hrc:1670 msgctxt "SC_OPCODE_TREND" msgid "The X data array as the basis for the regression." -msgstr "อาเรย์ข้อมูล X เป็นฐานสำหรับการถดถอย" +msgstr "อาร์เรย์ข้อมูล X ซึ่งเป็นฐานของการถดถอย" #. rVGjP #: sc/inc/scfuncs.hrc:1671 -#, fuzzy msgctxt "SC_OPCODE_TREND" msgid "New data X" -msgstr "ข้อมูล_X ใหม่" +msgstr "ข้อมูล X ใหม่" #. JedWB #: sc/inc/scfuncs.hrc:1672 msgctxt "SC_OPCODE_TREND" msgid "The array of X data for recalculating the values." -msgstr "อาเรย์ของข้อมูล X สำหรับคำนวณค่าซ้ำ" +msgstr "อาร์เรย์ของข้อมูล X ที่จะคำนวณค่าใหม่" #. s3wFj #: sc/inc/scfuncs.hrc:1673 -#, fuzzy msgctxt "SC_OPCODE_TREND" msgid "Linear type" -msgstr "เส้นตรง_ชนิด" +msgstr "ชนิดของเส้นตรง" #. PzJhE #: sc/inc/scfuncs.hrc:1674 msgctxt "SC_OPCODE_TREND" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "ถ้าชนิด = 0 เส้นตรงจะถูกคำนวณผ่านจุดศูนย์, หรือถ้าเป็นอย่างอื่นให้ย้ายเส้นตรง" +msgstr "ถ้าชนิด = 0 จะคำนวณหาเส้นตรงที่ผ่านจุดกำเนิด มิฉะนั้นก็จะคำนวณหาเส้นตรงที่ไม่จำเป็นต้องผ่านจุดกำเนิด" #. Qadzq #: sc/inc/scfuncs.hrc:1680 msgctxt "SC_OPCODE_GROWTH" msgid "Calculates points on the exponential regression function." -msgstr "คำนวณจุดบนฟังก์ชันการถดถอยแบบเอ็กซ์โปเนนเชียล" +msgstr "คำนวณจุดต่างๆ บนกราฟของฟังก์ชันถดถอยแบบเอ็กซ์โพเนนเชียล" #. M8VyE #: sc/inc/scfuncs.hrc:1681 msgctxt "SC_OPCODE_GROWTH" msgid "Data Y" -msgstr "" +msgstr "ข้อมูล Y" #. 4kBWF #: sc/inc/scfuncs.hrc:1682 msgctxt "SC_OPCODE_GROWTH" msgid "The Y data array." -msgstr "อาเรย์ข้อมูล Y " +msgstr "อาร์เรย์ข้อมูล Y" #. f6ix4 #: sc/inc/scfuncs.hrc:1683 msgctxt "SC_OPCODE_GROWTH" msgid "Data X" -msgstr "" +msgstr "ข้อมูล X" #. iGU4n #: sc/inc/scfuncs.hrc:1684 msgctxt "SC_OPCODE_GROWTH" msgid "The X data array as the basis for the regression." -msgstr "อาเรย์ข้อมูล X เป็นฐานสำหรับการถดถอย" +msgstr "อาร์เรย์ข้อมูล X ซึ่งเป็นฐานของการถดถอย" #. L8Rx3 #: sc/inc/scfuncs.hrc:1685 -#, fuzzy msgctxt "SC_OPCODE_GROWTH" msgid "New data X" -msgstr "ข้อมูล_X ใหม่" +msgstr "ข้อมูล X ใหม่" #. kFxgD #: sc/inc/scfuncs.hrc:1686 msgctxt "SC_OPCODE_GROWTH" msgid "The array of X data for recalculating the values." -msgstr "อาเรย์ของข้อมูล X สำหรับคำนวณค่าซ้ำ" +msgstr "อาร์เรย์ของข้อมูล X ที่จะคำนวณค่าใหม่" #. brbfA #: sc/inc/scfuncs.hrc:1687 -#, fuzzy msgctxt "SC_OPCODE_GROWTH" msgid "Function type" -msgstr "ฟังก์ชัน_ชนิด" +msgstr "ชนิดของฟังก์ชัน" #. JCsCQ #: sc/inc/scfuncs.hrc:1688 msgctxt "SC_OPCODE_GROWTH" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "ถ้าชนิด = 0 จากนั้นให้คำนวณฟังก์ชันในรูปแบบของ y=m^x, หรือฟังก์ชัน y=b*m^x ด้วย" +msgstr "ถ้าชนิด = 0 จะคำนวณฟังก์ชันในรูป y=m^x มิฉะนั้นก็จะคำนวณฟังก์ชันในรูป y=b*m^x ด้วย" #. kgGDC #: sc/inc/scfuncs.hrc:1694 msgctxt "SC_OPCODE_COUNT" msgid "Counts how many numbers are in the list of arguments." -msgstr "นับจำนวนตัวเลขที่อยู่ในรายการของอาร์กิวเม้นท์" +msgstr "นับจำนวนข้อมูลตัวเลขที่อยู่ในรายการอาร์กิวเมนต์" #. iDFDE #: sc/inc/scfuncs.hrc:1695 -#, fuzzy msgctxt "SC_OPCODE_COUNT" msgid "Value " -msgstr "ค่า" +msgstr "ค่า " #. 54dLB #: sc/inc/scfuncs.hrc:1696 -#, fuzzy msgctxt "SC_OPCODE_COUNT" msgid "Value 1, value 2, ... are arguments containing different data types but where only numbers are counted." -msgstr "ค่า 1, ค่า 2, ... อยู่ในอาร์กิวเม้นท์ 1 ถึง 30 มีชนิดข้อมูลต่างกันแต่ตัวเลขเท่านั้นที่ถูกนับ" +msgstr "ค่า 1, ค่า 2, ... คืออาร์กิวเมนต์ที่มีข้อมูลชนิดต่างๆ กัน แต่จะนับเฉพาะจำนวนข้อมูลที่เป็นตัวเลขเท่านั้น" #. NoX9E #: sc/inc/scfuncs.hrc:1702 msgctxt "SC_OPCODE_COUNT_2" msgid "Counts how many values are in the list of arguments." -msgstr "นับจำนวนค่าในรายการของอาร์กิวเม้นท์" +msgstr "นับจำนวนข้อมูลในรายการอาร์กิวเมนต์" #. iqtKK #: sc/inc/scfuncs.hrc:1703 -#, fuzzy msgctxt "SC_OPCODE_COUNT_2" msgid "Value " -msgstr "ค่า" +msgstr "ค่า " #. sDGzy #: sc/inc/scfuncs.hrc:1704 -#, fuzzy msgctxt "SC_OPCODE_COUNT_2" msgid "Value 1, value 2, ... are arguments representing the values to be counted." -msgstr "ค่า 1, ค่า 2, ... อยู่ในอาร์กิวเม้นท์ 1 ถึง 30 แสดงถึงค่าที่ถูกนับ" +msgstr "ค่า 1, ค่า 2, ... คืออาร์กิวเมนต์ที่จะนับจำนวนข้อมูล" #. qEEma #: sc/inc/scfuncs.hrc:1710 msgctxt "SC_OPCODE_MAX" msgid "Returns the maximum value in a list of arguments." -msgstr "ส่งกลับค่ามากที่สุดในรายการของอาร์กิวเม้นท์" +msgstr "คืนค่าที่มากที่สุดในรายการอาร์กิวเมนต์" #. Tt9Hk #: sc/inc/scfuncs.hrc:1711 @@ -8803,36 +8665,33 @@ #. XowNY #: sc/inc/scfuncs.hrc:1712 -#, fuzzy msgctxt "SC_OPCODE_MAX" msgid "Number 1, number 2, ... are numerical arguments for which the largest number is to be determined." -msgstr "เลข 1, เลข 2, ... คืออาร์กิวเม้นท์ที่เป็นตัวเลข 1 ถึง 30 ตัวสำหรับหาตัวเลขที่มากที่สุด" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่จะหาค่ามากที่สุด" #. vAvc6 #: sc/inc/scfuncs.hrc:1718 msgctxt "SC_OPCODE_MAX_A" msgid "Returns the maximum value in a list of arguments. Text is evaluated as Zero." -msgstr "ส่งกลับค่ามากที่สุดในรายการของอาร์กิวเม้นท์ ข้อความถูกประเมินค่าเป็นศูนย์" +msgstr "คืนค่าที่มากที่สุดในรายการอาร์กิวเมนต์ โดยถือว่าข้อความมีค่าเป็นศูนย์" #. 6ZyXF #: sc/inc/scfuncs.hrc:1719 -#, fuzzy msgctxt "SC_OPCODE_MAX_A" msgid "Value " -msgstr "ค่า" +msgstr "ค่า " #. 5XaxK #: sc/inc/scfuncs.hrc:1720 -#, fuzzy msgctxt "SC_OPCODE_MAX_A" msgid "Value 1, value 2, are arguments whose largest value is to be determined." -msgstr "ค่า 1, ค่า 2, อยู่ในอาร์กิวเม้นท์ 1 ถึง 30 ของค่ามากที่สุดที่ถูกกำหนด" +msgstr "ค่า 1, ค่า 2,... คืออาร์กิวเมนต์ที่จะหาค่าตัวเลขที่มากที่สุด" #. KCSbZ #: sc/inc/scfuncs.hrc:1726 msgctxt "SC_OPCODE_MIN" msgid "Returns the minimum value in a list of arguments." -msgstr "ส่งกลับค่าน้อยที่สุดในรายการของอาร์กิวเม้นท์" +msgstr "คืนค่าที่น้อยที่สุดในรายการอาร์กิวเมนต์" #. gGyEx #: sc/inc/scfuncs.hrc:1727 @@ -8842,36 +8701,33 @@ #. JkEom #: sc/inc/scfuncs.hrc:1728 -#, fuzzy msgctxt "SC_OPCODE_MIN" msgid "Number 1, number 2, ... are numerical arguments for which the smallest number is to be determined." -msgstr "เลข 1, เลข 2, ... คืออาร์กิวเม้นท์ที่เป็นตัวเลข 1 ถึง 30 ตัวสำหรับหาตัวเลขที่น้อยที่สุด" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่จะหาค่าน้อยที่สุด" #. DYsAS #: sc/inc/scfuncs.hrc:1734 msgctxt "SC_OPCODE_MIN_A" msgid "Returns the smallest value in a list of arguments. Text is evaluated as zero." -msgstr "ส่งกลับค่าน้อยที่สุดในรายการของอาร์กิวเม้นท์ ข้อความถูกประเมินค่าเป็นศูนย์" +msgstr "คืนค่าที่น้อยที่สุดในรายการอาร์กิวเมนต์ โดยถือว่าข้อความมีค่าเป็นศูนย์" #. hWgKX #: sc/inc/scfuncs.hrc:1735 -#, fuzzy msgctxt "SC_OPCODE_MIN_A" msgid "Value " -msgstr "ค่า" +msgstr "ค่า " #. vUbLY #: sc/inc/scfuncs.hrc:1736 -#, fuzzy msgctxt "SC_OPCODE_MIN_A" msgid "Value 1; value 2;... are arguments whose smallest number is to be determined." -msgstr "ค่า 1; ค่า 2;... คืออาร์กิวเม้นท์ 1 ถึง 30 ตัวสำหรับหาตัวเลขที่น้อยที่สุด" +msgstr "ค่า 1; ค่า 2;... คืออาร์กิวเมนต์ที่จะหาค่าตัวเลขที่น้อยที่สุด" #. wGyMr #: sc/inc/scfuncs.hrc:1742 msgctxt "SC_OPCODE_VAR" msgid "Calculates the variance based on a sample." -msgstr "คำนวณการแปรผันบนพื้นฐานกลุ่มตัวอย่าง" +msgstr "คำนวณความแปรปรวนจากกลุ่มตัวอย่าง" #. AQnAB #: sc/inc/scfuncs.hrc:1743 @@ -8881,16 +8737,15 @@ #. dGfyD #: sc/inc/scfuncs.hrc:1744 -#, fuzzy msgctxt "SC_OPCODE_VAR" msgid "Number 1, number 2, ... are numerical arguments which portray a sample of a population." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่างของประชากร" #. nWiPN #: sc/inc/scfuncs.hrc:1750 msgctxt "SC_OPCODE_VAR_S" msgid "Calculates the variance based on a sample." -msgstr "คำนวณการแปรผันบนพื้นฐานกลุ่มตัวอย่าง" +msgstr "คำนวณความแปรปรวนจากกลุ่มตัวอย่าง" #. PEFGm #: sc/inc/scfuncs.hrc:1751 @@ -8900,36 +8755,33 @@ #. DQp4X #: sc/inc/scfuncs.hrc:1752 -#, fuzzy msgctxt "SC_OPCODE_VAR_S" msgid "Number 1, number 2, ... are numerical arguments which portray a sample of a population." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่างของประชากร" #. RLBWa #: sc/inc/scfuncs.hrc:1758 msgctxt "SC_OPCODE_VAR_A" msgid "Returns the variance based on a sample. Text is evaluated as zero." -msgstr "ส่งกลับการแปรผันบนพื้นฐานกลุ่มตัวอย่าง ข้อความถูกประเมินค่าเป็นศูนย์" +msgstr "คืนค่าความแปรปรวนจากกลุ่มตัวอย่าง โดยถือว่าข้อความมีค่าเป็นศูนย์" #. Q4kGy #: sc/inc/scfuncs.hrc:1759 -#, fuzzy msgctxt "SC_OPCODE_VAR_A" msgid "Value " -msgstr "ค่า" +msgstr "ค่า " #. QDDDd #: sc/inc/scfuncs.hrc:1760 -#, fuzzy msgctxt "SC_OPCODE_VAR_A" msgid "Value 1; value 2; ... are arguments representing a sample taken from a basic total population." -msgstr "ค่า 1; ค่า 2;.. .คืออาร์กิวเม้นท์ 1 ถึง 30 ตัวที่เป็นกลุ่มตัวอย่างที่สุ่มจากประชากรทั้งหมดโดยพื้นฐาน" +msgstr "ค่า 1; ค่า 2;... คืออาร์กิวเมนต์ที่แทนกลุ่มตัวอย่างที่สุ่มจากประชากรทั้งหมด" #. gB6db #: sc/inc/scfuncs.hrc:1766 msgctxt "SC_OPCODE_VAR_P" msgid "Calculates variance based on the entire population." -msgstr "คำนวณการแปรผันบนพื้นฐานทั้งประชากร" +msgstr "คำนวณความแปรปรวนจากประชากรทั้งหมด" #. JQYec #: sc/inc/scfuncs.hrc:1767 @@ -8939,16 +8791,15 @@ #. QL7dC #: sc/inc/scfuncs.hrc:1768 -#, fuzzy msgctxt "SC_OPCODE_VAR_P" msgid "Number 1, number 2, ... are numerical arguments which represent a population." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนประชากร" #. AFynp #: sc/inc/scfuncs.hrc:1774 msgctxt "SC_OPCODE_VAR_P_MS" msgid "Calculates variance based on the entire population." -msgstr "คำนวณการแปรผันบนพื้นฐานทั้งประชากร" +msgstr "คำนวณความแปรปรวนจากประชากรทั้งหมด" #. YH9GD #: sc/inc/scfuncs.hrc:1775 @@ -8958,36 +8809,33 @@ #. JZjgr #: sc/inc/scfuncs.hrc:1776 -#, fuzzy msgctxt "SC_OPCODE_VAR_P_MS" msgid "Number 1, number 2, ... are numerical arguments which represent a population." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนประชากร" #. 7BF8p #: sc/inc/scfuncs.hrc:1782 msgctxt "SC_OPCODE_VAR_P_A" msgid "Returns the variance based on the entire population. Text is evaluated as zero." -msgstr "ส่งกลับการแปรผันบนพื้นฐานของทั้งประชากร ข้อความถูกประเมินค่าเป็นศูนย์" +msgstr "คืนค่าความแปรปรวนจากประชากรทั้งหมด โดยถือว่าข้อความมีค่าเป็นศูนย์" #. eRVBj #: sc/inc/scfuncs.hrc:1783 -#, fuzzy msgctxt "SC_OPCODE_VAR_P_A" msgid "Value " -msgstr "ค่า" +msgstr "ค่า " #. yZFuZ #: sc/inc/scfuncs.hrc:1784 -#, fuzzy msgctxt "SC_OPCODE_VAR_P_A" msgid "Value 1; value 2;... are arguments representing a population." -msgstr "ค่า 1; ค่า 2;... อยู่ในอาร์กิวเม้นท์ 1 ถึง 30 แสดงถึงประชากร" +msgstr "ค่า 1; ค่า 2;... คืออาร์กิวเมนต์ที่แทนประชากร" #. krvZ6 #: sc/inc/scfuncs.hrc:1790 msgctxt "SC_OPCODE_ST_DEV" msgid "Calculates the standard deviation based on a sample." -msgstr "คำนวณส่วนเบี่ยงเบนมาตรฐานบนพื้นฐานกลุ่มตัวอย่าง" +msgstr "คำนวณส่วนเบี่ยงเบนมาตรฐานจากกลุ่มตัวอย่าง" #. 6ANXx #: sc/inc/scfuncs.hrc:1791 @@ -8997,16 +8845,15 @@ #. LD8Xt #: sc/inc/scfuncs.hrc:1792 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV" msgid "Number 1, number 2, ... are numerical arguments which portray a sample of a population." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่างของประชากร" #. hkvjB #: sc/inc/scfuncs.hrc:1798 msgctxt "SC_OPCODE_ST_DEV_S" msgid "Calculates the standard deviation based on a sample." -msgstr "คำนวณส่วนเบี่ยงเบนมาตรฐานบนพื้นฐานกลุ่มตัวอย่าง" +msgstr "คำนวณส่วนเบี่ยงเบนมาตรฐานจากกลุ่มตัวอย่าง" #. cGxRb #: sc/inc/scfuncs.hrc:1799 @@ -9016,36 +8863,33 @@ #. kDrFN #: sc/inc/scfuncs.hrc:1800 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_S" msgid "Number 1, number 2, ... are numerical arguments which portray a sample of a population." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่างของประชากร" #. BV6Gb #: sc/inc/scfuncs.hrc:1806 msgctxt "SC_OPCODE_ST_DEV_A" msgid "Returns the standard deviation based on a sample. Text is evaluated as zero." -msgstr "ส่งกลับส่วนเบี่ยงเบนมาตรฐานบนพื้นฐานกลุ่มตัวอย่าง ข้อความถูกประเมินค่าเป็นศูนย์" +msgstr "คืนค่าส่วนเบี่ยงเบนมาตรฐานจากกลุ่มตัวอย่าง โดยถือว่าข้อความมีค่าเป็นศูนย์" #. Smbhk #: sc/inc/scfuncs.hrc:1807 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_A" msgid "Value " -msgstr "ค่า" +msgstr "ค่า " #. pXYdc #: sc/inc/scfuncs.hrc:1808 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_A" msgid "Value 1; value 2; ... are arguments representing a sample taken from a basic total population." -msgstr "ค่า 1; ค่า 2;.. .คืออาร์กิวเม้นท์ 1 ถึง 30 ตัวที่เป็นกลุ่มตัวอย่างที่สุ่มจากประชากรทั้งหมดโดยพื้นฐาน" +msgstr "ค่า 1; ค่า 2;... คืออาร์กิวเมนต์ที่แทนกลุ่มตัวอย่างที่สุ่มจากประชากรทั้งหมด" #. 4gTUB #: sc/inc/scfuncs.hrc:1814 msgctxt "SC_OPCODE_ST_DEV_P" msgid "Calculates the standard deviation based on the entire population." -msgstr "คำนวณส่วนเบี่ยงเบนมาตรฐานบนพื้นฐานทั้งประชากร" +msgstr "คำนวณส่วนเบี่ยงเบนมาตรฐานจากประชากรทั้งหมด" #. h6Evi #: sc/inc/scfuncs.hrc:1815 @@ -9055,16 +8899,15 @@ #. RkhC2 #: sc/inc/scfuncs.hrc:1816 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_P" msgid "Number 1, number 2, ... are numerical arguments which portray a population." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนประชากร" #. MH6d3 #: sc/inc/scfuncs.hrc:1822 msgctxt "SC_OPCODE_ST_DEV_P_MS" msgid "Calculates the standard deviation based on the entire population." -msgstr "คำนวณส่วนเบี่ยงเบนมาตรฐานบนพื้นฐานทั้งประชากร" +msgstr "คำนวณส่วนเบี่ยงเบนมาตรฐานจากประชากรทั้งหมด" #. 4JaDC #: sc/inc/scfuncs.hrc:1823 @@ -9074,36 +8917,33 @@ #. Cp8hZ #: sc/inc/scfuncs.hrc:1824 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_P_MS" msgid "Number 1, number 2, ... are numerical arguments which portray a population." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนประชากร" #. mLDRD #: sc/inc/scfuncs.hrc:1830 msgctxt "SC_OPCODE_ST_DEV_P_A" msgid "Returns the standard deviation based on the entire population. Text is evaluated as zero." -msgstr "ส่งกลับส่วนเบี่ยงเบนมาตรฐานบนพื้นฐานทั้งประชากร ข้อความถูกประเมินค่าเป็นศูนย์" +msgstr "คืนค่าส่วนเบี่ยงเบนมาตรฐานจากประชากรทั้งหมด โดยถือว่าข้อความมีค่าเป็นศูนย์" #. XaMUA #: sc/inc/scfuncs.hrc:1831 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_P_A" msgid "Value " -msgstr "ค่า" +msgstr "ค่า " #. GGkKW #: sc/inc/scfuncs.hrc:1832 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_P_A" msgid "Value 1; value 2;... are arguments corresponding to a population." -msgstr "ค่า 1; ค่า 2;... อยู่ในอาร์กิวเม้นท์ 1 ถึง 30 สอดคล้องกับประชากร" +msgstr "ค่า 1; ค่า 2;... คืออาร์กิวเมนต์ที่แทนประชากร" #. GGXRy #: sc/inc/scfuncs.hrc:1838 msgctxt "SC_OPCODE_AVERAGE" msgid "Returns the average of a sample." -msgstr "ส่งกลับค่าเฉลี่ยของกลุ่มตัวอย่าง" +msgstr "คืนค่าค่าเฉลี่ยของกลุ่มตัวอย่าง" #. mPAXh #: sc/inc/scfuncs.hrc:1839 @@ -9113,36 +8953,33 @@ #. yFo3s #: sc/inc/scfuncs.hrc:1840 -#, fuzzy msgctxt "SC_OPCODE_AVERAGE" msgid "Number 1, number 2;...are numeric arguments representing a population sample." -msgstr "เลข 1, เลข 2;...คืออาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ตัวที่เป็นกลุ่มตัวอย่างของประชากร" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่างของประชากร" #. UZBe5 #: sc/inc/scfuncs.hrc:1846 msgctxt "SC_OPCODE_AVERAGE_A" msgid "Returns the average value for a sample. Text is evaluated as zero." -msgstr "ส่งกลับค่าเฉลี่ยสำหรับกลุ่มตัวอย่าง ข้อความถูกประเมินค่าเป็นศูนย์" +msgstr "คืนค่าค่าเฉลี่ยของกลุ่มตัวอย่าง โดยถือว่าข้อความมีค่าเป็นศูนย์" #. eCCGY #: sc/inc/scfuncs.hrc:1847 -#, fuzzy msgctxt "SC_OPCODE_AVERAGE_A" msgid "Value " -msgstr "ค่า" +msgstr "ค่า " #. NxVLD #: sc/inc/scfuncs.hrc:1848 -#, fuzzy msgctxt "SC_OPCODE_AVERAGE_A" msgid "Value 1; value 2; ... are arguments representing a sample taken from a basic total population." -msgstr "ค่า 1; ค่า 2;.. .คืออาร์กิวเม้นท์ 1 ถึง 30 ตัวที่เป็นกลุ่มตัวอย่างที่สุ่มจากประชากรทั้งหมดโดยพื้นฐาน" +msgstr "ค่า 1; ค่า 2;... คืออาร์กิวเมนต์ที่แทนกลุ่มตัวอย่างที่สุ่มจากประชากรทั้งหมด" #. H6DCB #: sc/inc/scfuncs.hrc:1854 msgctxt "SC_OPCODE_DEV_SQ" msgid "Returns the sum of squares of deviations from the sample mean value" -msgstr "ส่งกลับผลรวมของกำลังสองของการเบี่ยงเบนของกลุ่มตัวอย่างจากค่าเฉลี่ย" +msgstr "คืนค่าผลรวมของกำลังสองของส่วนเบี่ยงเบนจากค่าเฉลี่ยของกลุ่มตัวอย่าง" #. FMeFc #: sc/inc/scfuncs.hrc:1855 @@ -9152,16 +8989,15 @@ #. 9t9WZ #: sc/inc/scfuncs.hrc:1856 -#, fuzzy msgctxt "SC_OPCODE_DEV_SQ" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่าง" #. zhbqF #: sc/inc/scfuncs.hrc:1862 msgctxt "SC_OPCODE_AVE_DEV" msgid "Returns the average of the absolute deviations of a sample from the mean." -msgstr "ส่งกลับค่าเฉลี่ยของค่าสัมบูรณ์ของส่วนเบี่ยงเบนของกลุ่มตัวอย่างจากค่าเฉลี่ย" +msgstr "คืนค่าค่าเฉลี่ยของค่าสัมบูรณ์ของส่วนเบี่ยงเบนจากค่าเฉลี่ยของกลุ่มตัวอย่าง" #. GBAFj #: sc/inc/scfuncs.hrc:1863 @@ -9171,16 +9007,15 @@ #. AhF2a #: sc/inc/scfuncs.hrc:1864 -#, fuzzy msgctxt "SC_OPCODE_AVE_DEV" msgid "Number 1, number 2;...are numerical arguments representing a sample." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่าง" #. d8XUA #: sc/inc/scfuncs.hrc:1870 msgctxt "SC_OPCODE_SKEW" msgid "Returns the skewness of a distribution." -msgstr "ส่งกลับการลาดเอียงของการแจกแจง" +msgstr "คืนค่าความเบ้ของการแจกแจง" #. JPi88 #: sc/inc/scfuncs.hrc:1871 @@ -9190,16 +9025,15 @@ #. iCXiA #: sc/inc/scfuncs.hrc:1872 -#, fuzzy msgctxt "SC_OPCODE_SKEW" msgid "Number 1, number 2, ... are numerical arguments portraying a sample of the distribution." -msgstr "เลข 1, เลข 2, ... คืออาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ตัวที่แสดงกลุ่มตัวอย่างของการแจกแจง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่างของการแจกแจง" #. wCDBj #: sc/inc/scfuncs.hrc:1878 msgctxt "SC_OPCODE_SKEWP" msgid "Returns the skewness of a distribution using the population of a random variable." -msgstr "" +msgstr "คืนค่าความเบ้ของการแจกแจง โดยใช้ประชากรของตัวแปรสุ่ม" #. GoBeA #: sc/inc/scfuncs.hrc:1879 @@ -9209,16 +9043,15 @@ #. U3E53 #: sc/inc/scfuncs.hrc:1880 -#, fuzzy msgctxt "SC_OPCODE_SKEWP" msgid "Number 1, number 2, ... are numerical arguments portraying the population." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนประชากร" #. wwgFL #: sc/inc/scfuncs.hrc:1886 msgctxt "SC_OPCODE_KURT" msgid "Returns the kurtosis of a distribution." -msgstr "ส่งกลับความชันของการแจกแจง" +msgstr "คืนค่าความโด่งของการแจกแจง" #. VHfwE #: sc/inc/scfuncs.hrc:1887 @@ -9228,16 +9061,15 @@ #. 3Qsuk #: sc/inc/scfuncs.hrc:1888 -#, fuzzy msgctxt "SC_OPCODE_KURT" msgid "Number 1, number 2, ... are numerical arguments, representing a sample of the distribution." -msgstr "เลข 1, เลข 2, ... คืออาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ตัวที่แสดงถึงกลุ่มตัวอย่างของการแจกแจง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่างของการแจกแจง" #. KkCFM #: sc/inc/scfuncs.hrc:1894 msgctxt "SC_OPCODE_GEO_MEAN" msgid "Returns the geometric mean of a sample." -msgstr "ส่งกลับค่าเฉลี่ยทางเรขาคณิตของกลุ่มตัวอย่าง" +msgstr "คืนค่าค่าเฉลี่ยเรขาคณิตของกลุ่มตัวอย่าง" #. 9KVR7 #: sc/inc/scfuncs.hrc:1895 @@ -9247,16 +9079,15 @@ #. 2yJ7U #: sc/inc/scfuncs.hrc:1896 -#, fuzzy msgctxt "SC_OPCODE_GEO_MEAN" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่าง" #. X8KCZ #: sc/inc/scfuncs.hrc:1902 msgctxt "SC_OPCODE_HAR_MEAN" msgid "Returns the harmonic mean of a sample." -msgstr "ส่งกลับค่าเฉลี่ยที่ประสานกันของกลุ่มตัวอย่าง" +msgstr "คืนค่าค่าเฉลี่ยฮาร์โมนิกของกลุ่มตัวอย่าง" #. Yz89m #: sc/inc/scfuncs.hrc:1903 @@ -9266,16 +9097,15 @@ #. 2SFZ5 #: sc/inc/scfuncs.hrc:1904 -#, fuzzy msgctxt "SC_OPCODE_HAR_MEAN" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่าง" #. RpbdF #: sc/inc/scfuncs.hrc:1910 msgctxt "SC_OPCODE_MODAL_VALUE" msgid "Returns the most common value in a sample." -msgstr "ส่งกลับค่าร่วมมากในกลุ่มตัวอย่าง" +msgstr "คืนค่าข้อมูลที่มีความถี่สูงที่สุดในกลุ่มตัวอย่าง" #. TyDim #: sc/inc/scfuncs.hrc:1911 @@ -9285,16 +9115,15 @@ #. Y4bDG #: sc/inc/scfuncs.hrc:1912 -#, fuzzy msgctxt "SC_OPCODE_MODAL_VALUE" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่าง" #. P78Ym #: sc/inc/scfuncs.hrc:1918 msgctxt "SC_OPCODE_MODAL_VALUE_MS" msgid "Returns the most common value in a sample." -msgstr "ส่งกลับค่าร่วมมากในกลุ่มตัวอย่าง" +msgstr "คืนค่าข้อมูลที่มีความถี่สูงที่สุดในกลุ่มตัวอย่าง" #. BH4Gt #: sc/inc/scfuncs.hrc:1919 @@ -9304,16 +9133,15 @@ #. eE4FY #: sc/inc/scfuncs.hrc:1920 -#, fuzzy msgctxt "SC_OPCODE_MODAL_VALUE_MS" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่าง" #. CkE7G #: sc/inc/scfuncs.hrc:1926 msgctxt "SC_OPCODE_MODAL_VALUE_MULTI" msgid "Returns the most common value in a sample." -msgstr "ส่งกลับค่าร่วมมากในกลุ่มตัวอย่าง" +msgstr "คืนค่าข้อมูลที่มีความถี่สูงที่สุดในกลุ่มตัวอย่าง" #. gXx2e #: sc/inc/scfuncs.hrc:1927 @@ -9323,16 +9151,15 @@ #. h2KJC #: sc/inc/scfuncs.hrc:1928 -#, fuzzy msgctxt "SC_OPCODE_MODAL_VALUE_MULTI" msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขตั้งแต่ 1 ถึง 254 ตัวที่แทนกลุ่มตัวอย่าง" #. WohRf #: sc/inc/scfuncs.hrc:1934 msgctxt "SC_OPCODE_MEDIAN" msgid "Returns the median of a given sample." -msgstr "ส่งกลับค่ากลางของกลุ่มตัวอย่างที่ให้มา" +msgstr "คืนค่ามัธยฐานของกลุ่มตัวอย่าง" #. izbAC #: sc/inc/scfuncs.hrc:1935 @@ -9342,16 +9169,15 @@ #. QjvgB #: sc/inc/scfuncs.hrc:1936 -#, fuzzy msgctxt "SC_OPCODE_MEDIAN" msgid "Number 1, number 2, ... are numerical arguments which portray a sample." -msgstr "เลข 1, เลข 2, ... อยู่ในอาร์กิวเม้นท์แบบตัวเลข 1 ถึง 30 ที่อธิบายกลุ่มตัวอย่าง" +msgstr "ตัวเลข 1, ตัวเลข 2, ... คืออาร์กิวเมนต์ชนิดตัวเลขที่แทนกลุ่มตัวอย่าง" #. zLWCs #: sc/inc/scfuncs.hrc:1942 msgctxt "SC_OPCODE_PERCENTILE" msgid "Returns the alpha percentile of a sample." -msgstr "" +msgstr "คืนค่าเปอร์เซ็นไทล์ของกลุ่มตัวอย่าง" #. KruQH #: sc/inc/scfuncs.hrc:1943 @@ -9363,26 +9189,25 @@ #: sc/inc/scfuncs.hrc:1944 msgctxt "SC_OPCODE_PERCENTILE" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. ojZCE #: sc/inc/scfuncs.hrc:1945 msgctxt "SC_OPCODE_PERCENTILE" msgid "Alpha" -msgstr "อัลฟ่า" +msgstr "แอลฟา" #. unE9E #: sc/inc/scfuncs.hrc:1946 msgctxt "SC_OPCODE_PERCENTILE" msgid "The percentile value between 0 and 1, inclusive." -msgstr "" +msgstr "ค่าเปอร์เซ็นไทล์โดยอยู่ในช่วงตั้งแต่ 0 ถึง 1 (รวม 0 กับ 1 ด้วย)" #. pEFyv #: sc/inc/scfuncs.hrc:1952 -#, fuzzy msgctxt "SC_OPCODE_PERCENTILE_EXC" msgid "Returns the alpha percentile of a sample." -msgstr "ส่งกลับ alpha quantile ของกลุ่มตัวอย่าง" +msgstr "คืนค่าเปอร์เซ็นไทล์ของกลุ่มตัวอย่าง" #. nvEkV #: sc/inc/scfuncs.hrc:1953 @@ -9394,26 +9219,25 @@ #: sc/inc/scfuncs.hrc:1954 msgctxt "SC_OPCODE_PERCENTILE_EXC" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. 2Xss9 #: sc/inc/scfuncs.hrc:1955 msgctxt "SC_OPCODE_PERCENTILE_EXC" msgid "Alpha" -msgstr "อัลฟ่า" +msgstr "แอลฟา" #. b82AQ #: sc/inc/scfuncs.hrc:1956 msgctxt "SC_OPCODE_PERCENTILE_EXC" msgid "The percentile value, range 0...1, exclusive." -msgstr "" +msgstr "ค่าเปอร์เซ็นไทล์โดยอยู่ในช่วงระหว่าง 0 ถึง 1 (ไม่รวม 0 กับ 1)" #. fdiei #: sc/inc/scfuncs.hrc:1962 -#, fuzzy msgctxt "SC_OPCODE_PERCENTILE_INC" msgid "Returns the alpha percentile of a sample." -msgstr "ส่งกลับ alpha quantile ของกลุ่มตัวอย่าง" +msgstr "คืนค่าเปอร์เซ็นไทล์ของกลุ่มตัวอย่าง" #. hgpLA #: sc/inc/scfuncs.hrc:1963 @@ -9425,25 +9249,25 @@ #: sc/inc/scfuncs.hrc:1964 msgctxt "SC_OPCODE_PERCENTILE_INC" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. KCoTn #: sc/inc/scfuncs.hrc:1965 msgctxt "SC_OPCODE_PERCENTILE_INC" msgid "Alpha" -msgstr "อัลฟ่า" +msgstr "แอลฟา" #. 8cdtc #: sc/inc/scfuncs.hrc:1966 msgctxt "SC_OPCODE_PERCENTILE_INC" msgid "The percentile value, range 0...1, inclusive." -msgstr "" +msgstr "ค่าเปอร์เซ็นไทล์โดยอยู่ในช่วงตั้งแต่ 0 ถึง 1 (รวม 0 กับ 1 ด้วย)" #. TDZ7r #: sc/inc/scfuncs.hrc:1972 msgctxt "SC_OPCODE_QUARTILE" msgid "Returns the quartile of a sample." -msgstr "ส่งกลับค่าควอร์ไทล์ของกลุ่มตัวอย่าง" +msgstr "คืนค่าควอร์ไทล์ของกลุ่มตัวอย่าง" #. 5ACij #: sc/inc/scfuncs.hrc:1973 @@ -9455,7 +9279,7 @@ #: sc/inc/scfuncs.hrc:1974 msgctxt "SC_OPCODE_QUARTILE" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. FTjuA #: sc/inc/scfuncs.hrc:1975 @@ -9467,13 +9291,13 @@ #: sc/inc/scfuncs.hrc:1976 msgctxt "SC_OPCODE_QUARTILE" msgid "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)." -msgstr "" +msgstr "ชนิดของควอร์ไทล์ (0 = น้อยที่สุด, 1 = 25%, 2 = 50%, 3 = 75%, 4 = มากที่สุด)" #. URenM #: sc/inc/scfuncs.hrc:1982 msgctxt "SC_OPCODE_QUARTILE_EXC" msgid "Returns the quartile of a sample." -msgstr "ส่งกลับค่าควอร์ไทล์ของกลุ่มตัวอย่าง" +msgstr "คืนค่าควอร์ไทล์ของกลุ่มตัวอย่าง" #. UDBkP #: sc/inc/scfuncs.hrc:1983 @@ -9485,7 +9309,7 @@ #: sc/inc/scfuncs.hrc:1984 msgctxt "SC_OPCODE_QUARTILE_EXC" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. awisv #: sc/inc/scfuncs.hrc:1985 @@ -9497,13 +9321,13 @@ #: sc/inc/scfuncs.hrc:1986 msgctxt "SC_OPCODE_QUARTILE_EXC" msgid "The type of the quartile (1 = 25%, 2 = 50%, 3 = 75%)." -msgstr "" +msgstr "ชนิดของควอร์ไทล์ (1 = 25%, 2 = 50%, 3 = 75%)" #. 47cAT #: sc/inc/scfuncs.hrc:1992 msgctxt "SC_OPCODE_QUARTILE_INC" msgid "Returns the quartile of a sample." -msgstr "ส่งกลับค่าควอร์ไทล์ของกลุ่มตัวอย่าง" +msgstr "คืนค่าควอร์ไทล์ของกลุ่มตัวอย่าง" #. sQjLg #: sc/inc/scfuncs.hrc:1993 @@ -9515,7 +9339,7 @@ #: sc/inc/scfuncs.hrc:1994 msgctxt "SC_OPCODE_QUARTILE_INC" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. mhCBG #: sc/inc/scfuncs.hrc:1995 @@ -9527,13 +9351,13 @@ #: sc/inc/scfuncs.hrc:1996 msgctxt "SC_OPCODE_QUARTILE_INC" msgid "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)." -msgstr "" +msgstr "ชนิดของควอร์ไทล์ (0 = น้อยที่สุด, 1 = 25%, 2 = 50%, 3 = 75%, 4 = มากที่สุด)" #. DraGu #: sc/inc/scfuncs.hrc:2002 msgctxt "SC_OPCODE_LARGE" msgid "Returns the k-th largest value of a sample." -msgstr "ส่งกลับค่ามากที่สุดของ k-th ของกลุ่มตัวอย่าง" +msgstr "คืนค่าที่มากที่สุดอันดับที่ k ของกลุ่มตัวอย่าง" #. tyCQN #: sc/inc/scfuncs.hrc:2003 @@ -9545,26 +9369,25 @@ #: sc/inc/scfuncs.hrc:2004 msgctxt "SC_OPCODE_LARGE" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. PjGgh #: sc/inc/scfuncs.hrc:2005 -#, fuzzy msgctxt "SC_OPCODE_LARGE" msgid "Rank c" -msgstr "ชั้นที่_c" +msgstr "อันดับ c" #. wE8Uv #: sc/inc/scfuncs.hrc:2006 msgctxt "SC_OPCODE_LARGE" msgid "The ranking of the value." -msgstr "จัดค่าอยู่ในชั้น" +msgstr "อันดับของค่าที่ต้องการ" #. HCszB #: sc/inc/scfuncs.hrc:2012 msgctxt "SC_OPCODE_SMALL" msgid "Returns the k-th smallest value of a sample." -msgstr "ส่งกลับค่าน้อยที่สุดของ k-th ของกลุ่มตัวอย่าง" +msgstr "คืนค่าที่น้อยที่สุดอันดับที่ k ของกลุ่มตัวอย่าง" #. jFtou #: sc/inc/scfuncs.hrc:2013 @@ -9576,26 +9399,25 @@ #: sc/inc/scfuncs.hrc:2014 msgctxt "SC_OPCODE_SMALL" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. ceVdB #: sc/inc/scfuncs.hrc:2015 -#, fuzzy msgctxt "SC_OPCODE_SMALL" msgid "Rank c" -msgstr "ชั้นที่_c" +msgstr "อันดับ c" #. Qd8EW #: sc/inc/scfuncs.hrc:2016 msgctxt "SC_OPCODE_SMALL" msgid "The ranking of the value." -msgstr "จัดค่าอยู่ในชั้น" +msgstr "อันดับของค่าที่ต้องการ" #. tfvUj #: sc/inc/scfuncs.hrc:2022 msgctxt "SC_OPCODE_PERCENT_RANK" msgid "Returns the percentage rank of a value in a sample." -msgstr "ส่งกลับช่วงร้อยละของค่าในกลุ่มตัวอย่าง" +msgstr "คืนค่าอันดับร้อยละของค่าค่าหนึ่งในกลุ่มตัวอย่าง" #. rLBSp #: sc/inc/scfuncs.hrc:2023 @@ -9607,7 +9429,7 @@ #: sc/inc/scfuncs.hrc:2024 msgctxt "SC_OPCODE_PERCENT_RANK" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. wDy3T #: sc/inc/scfuncs.hrc:2025 @@ -9619,25 +9441,25 @@ #: sc/inc/scfuncs.hrc:2026 msgctxt "SC_OPCODE_PERCENT_RANK" msgid "The value for which percentage ranking is to be determined." -msgstr "ค่าสำหรับกำหนดการจัดช่วงร้อยละ" +msgstr "ค่าที่ต้องการหาอันดับร้อยละ" #. gTAAs #: sc/inc/scfuncs.hrc:2027 msgctxt "SC_OPCODE_PERCENT_RANK" msgid "Significance" -msgstr "เลขนัยสำคัญ" +msgstr "นัยสำคัญ" #. w9GhY #: sc/inc/scfuncs.hrc:2028 msgctxt "SC_OPCODE_PERCENT_RANK" msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used." -msgstr "" +msgstr "จำนวนจุดทศนิยมสำหรับค่าร้อยละที่จะให้คืนค่า ถ้าละไว้ ก็จะใช้ค่า 3" #. DyyD5 #: sc/inc/scfuncs.hrc:2034 msgctxt "SC_OPCODE_PERCENT_RANK_EXC" msgid "Returns the percentage rank (0..1, exclusive) of a value in a sample." -msgstr "" +msgstr "คืนค่าอันดับร้อยละ (ระหว่าง 0 ถึง 1 ไม่รวม 0 กับ 1) ของค่าค่าหนึ่งในกลุ่มตัวอย่าง" #. xnpWg #: sc/inc/scfuncs.hrc:2035 @@ -9649,7 +9471,7 @@ #: sc/inc/scfuncs.hrc:2036 msgctxt "SC_OPCODE_PERCENT_RANK_EXC" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. DUeLX #: sc/inc/scfuncs.hrc:2037 @@ -9661,25 +9483,25 @@ #: sc/inc/scfuncs.hrc:2038 msgctxt "SC_OPCODE_PERCENT_RANK_EXC" msgid "The value for which percentage ranking is to be determined." -msgstr "ค่าสำหรับกำหนดการจัดช่วงร้อยละ" +msgstr "ค่าที่ต้องการหาอันดับร้อยละ" #. FzDnP #: sc/inc/scfuncs.hrc:2039 msgctxt "SC_OPCODE_PERCENT_RANK_EXC" msgid "Significance" -msgstr "เลขนัยสำคัญ" +msgstr "นัยสำคัญ" #. fvDSA #: sc/inc/scfuncs.hrc:2040 msgctxt "SC_OPCODE_PERCENT_RANK_EXC" msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used." -msgstr "" +msgstr "จำนวนจุดทศนิยมสำหรับค่าร้อยละที่จะให้คืนค่า ถ้าละไว้ ก็จะใช้ค่า 3" #. 8F33F #: sc/inc/scfuncs.hrc:2046 msgctxt "SC_OPCODE_PERCENT_RANK_INC" msgid "Returns the percentage rank (0..1, inclusive) of a value in a sample." -msgstr "" +msgstr "คืนค่าอันดับร้อยละ (ตั้งแต่ 0 ถึง 1 รวม 0 กับ 1 ด้วย) ของค่าค่าหนึ่งในกลุ่มตัวอย่าง" #. XYEDP #: sc/inc/scfuncs.hrc:2047 @@ -9691,7 +9513,7 @@ #: sc/inc/scfuncs.hrc:2048 msgctxt "SC_OPCODE_PERCENT_RANK_INC" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. CDS3K #: sc/inc/scfuncs.hrc:2049 @@ -9703,25 +9525,25 @@ #: sc/inc/scfuncs.hrc:2050 msgctxt "SC_OPCODE_PERCENT_RANK_INC" msgid "The value for which percentage ranking is to be determined." -msgstr "ค่าสำหรับกำหนดการจัดช่วงร้อยละ" +msgstr "ค่าที่ต้องการหาอันดับร้อยละ" #. zTXLN #: sc/inc/scfuncs.hrc:2051 msgctxt "SC_OPCODE_PERCENT_RANK_INC" msgid "Significance" -msgstr "เลขนัยสำคัญ" +msgstr "นัยสำคัญ" #. FSg7m #: sc/inc/scfuncs.hrc:2052 msgctxt "SC_OPCODE_PERCENT_RANK_INC" msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used." -msgstr "" +msgstr "จำนวนจุดทศนิยมสำหรับค่าร้อยละที่จะให้คืนค่า ถ้าละไว้ ก็จะใช้ค่า 3" #. whrMs #: sc/inc/scfuncs.hrc:2058 msgctxt "SC_OPCODE_RANK" msgid "Returns the ranking of a value in a sample." -msgstr "ส่งกลับการจัดค่าอยู่ในชั้นในกลุ่มตัวอย่าง" +msgstr "คืนค่าตำแหน่งอันดับของค่าค่าหนึ่งในกลุ่มตัวอย่าง" #. p2juz #: sc/inc/scfuncs.hrc:2059 @@ -9733,7 +9555,7 @@ #: sc/inc/scfuncs.hrc:2060 msgctxt "SC_OPCODE_RANK" msgid "The value for which the rank is to be determined." -msgstr "ค่าสำหรับกำหนดช่วง" +msgstr "ค่าที่ต้องการหาตำแหน่งอันดับ" #. e3CY7 #: sc/inc/scfuncs.hrc:2061 @@ -9745,7 +9567,7 @@ #: sc/inc/scfuncs.hrc:2062 msgctxt "SC_OPCODE_RANK" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. YmafZ #: sc/inc/scfuncs.hrc:2063 @@ -9757,13 +9579,13 @@ #: sc/inc/scfuncs.hrc:2064 msgctxt "SC_OPCODE_RANK" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "เรียงลำดับ: 0 หรือเว้นว่างหมายถึงจากมากไปน้อย, ค่าอื่นนอกจาก 0 หมายถึงจากน้อยไปมาก" +msgstr "วิธีเรียงลำดับ: 0 หรือเว้นว่างหมายถึงเรียงจากมากไปน้อย, ค่าอื่นนอกจาก 0 หมายถึงเรียงจากน้อยไปมาก" #. 5sAFj #: sc/inc/scfuncs.hrc:2070 msgctxt "SC_OPCODE_RANK_EQ" msgid "Returns the ranking of a value in a sample; if more than one value has the same rank, the top rank of that set of values is returned." -msgstr "" +msgstr "คืนค่าตำแหน่งอันดับของค่าค่าหนึ่งในกลุ่มตัวอย่าง ถ้ามีค่ามากกว่าหนึ่งค่าที่มีอันดับเท่ากัน ก็จะคืนค่าอันดับสูงสุดของกลุ่มนั้น" #. GuZrj #: sc/inc/scfuncs.hrc:2071 @@ -9775,7 +9597,7 @@ #: sc/inc/scfuncs.hrc:2072 msgctxt "SC_OPCODE_RANK_EQ" msgid "The value for which the rank is to be determined." -msgstr "ค่าสำหรับกำหนดช่วง" +msgstr "ค่าที่ต้องการหาตำแหน่งอันดับ" #. UyjWf #: sc/inc/scfuncs.hrc:2073 @@ -9787,7 +9609,7 @@ #: sc/inc/scfuncs.hrc:2074 msgctxt "SC_OPCODE_RANK_EQ" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. aFChD #: sc/inc/scfuncs.hrc:2075 @@ -9799,13 +9621,13 @@ #: sc/inc/scfuncs.hrc:2076 msgctxt "SC_OPCODE_RANK_EQ" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "เรียงลำดับ: 0 หรือเว้นว่างหมายถึงจากมากไปน้อย, ค่าอื่นนอกจาก 0 หมายถึงจากน้อยไปมาก" +msgstr "วิธีเรียงลำดับ: 0 หรือเว้นว่างหมายถึงเรียงจากมากไปน้อย, ค่าอื่นนอกจาก 0 หมายถึงเรียงจากน้อยไปมาก" #. 6VJyB #: sc/inc/scfuncs.hrc:2082 msgctxt "SC_OPCODE_RANK_AVG" msgid "Returns the ranking of a value in a sample; if more than one value has the same rank, the average rank is returned." -msgstr "" +msgstr "คืนค่าตำแหน่งอันดับของค่าค่าหนึ่งในกลุ่มตัวอย่าง ถ้ามีค่ามากกว่าหนึ่งค่าที่มีอันดับเท่ากัน ก็จะคืนค่าอันดับเฉลี่ยของกลุ่มนั้น" #. wYAYF #: sc/inc/scfuncs.hrc:2083 @@ -9817,7 +9639,7 @@ #: sc/inc/scfuncs.hrc:2084 msgctxt "SC_OPCODE_RANK_AVG" msgid "The value for which the rank is to be determined." -msgstr "ค่าสำหรับกำหนดช่วง" +msgstr "ค่าที่ต้องการหาตำแหน่งอันดับ" #. FPuzE #: sc/inc/scfuncs.hrc:2085 @@ -9829,7 +9651,7 @@ #: sc/inc/scfuncs.hrc:2086 msgctxt "SC_OPCODE_RANK_AVG" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. 5e2Co #: sc/inc/scfuncs.hrc:2087 @@ -9841,13 +9663,13 @@ #: sc/inc/scfuncs.hrc:2088 msgctxt "SC_OPCODE_RANK_AVG" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "เรียงลำดับ: 0 หรือเว้นว่างหมายถึงจากมากไปน้อย, ค่าอื่นนอกจาก 0 หมายถึงจากน้อยไปมาก" +msgstr "วิธีเรียงลำดับ: 0 หรือเว้นว่างหมายถึงเรียงจากมากไปน้อย, ค่าอื่นนอกจาก 0 หมายถึงเรียงจากน้อยไปมาก" #. i5gm7 #: sc/inc/scfuncs.hrc:2094 msgctxt "SC_OPCODE_TRIM_MEAN" msgid "Returns the mean of a sample without including the marginal values." -msgstr "ส่งกลับค่าเฉลี่ยของตัวอย่างโดยไม่นำค่าขอบบนและล่างมาคำนวณ" +msgstr "คืนค่าค่าเฉลี่ยของกลุ่มตัวอย่างโดยตัดค่าขอบบนและขอบล่างออก" #. jDGLq #: sc/inc/scfuncs.hrc:2095 @@ -9859,25 +9681,25 @@ #: sc/inc/scfuncs.hrc:2096 msgctxt "SC_OPCODE_TRIM_MEAN" msgid "The array of the data in the sample." -msgstr "อาเรย์ของข้อมูลในกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. cHNxJ #: sc/inc/scfuncs.hrc:2097 msgctxt "SC_OPCODE_TRIM_MEAN" msgid "Alpha" -msgstr "อัลฟ่า" +msgstr "แอลฟา" #. pBS9z #: sc/inc/scfuncs.hrc:2098 msgctxt "SC_OPCODE_TRIM_MEAN" msgid "The percentage of marginal data that is not to be taken into account." -msgstr "ร้อยละของข้อมูลจำกัดที่ไม่ถูกคำนึงถึง" +msgstr "ร้อยละของข้อมูลขอบบนและขอบล่างที่จะไม่นำมาคำนวณ" #. PMiis #: sc/inc/scfuncs.hrc:2104 msgctxt "SC_OPCODE_PROB" msgid "Returns the discrete probability of an interval." -msgstr "ส่งกลับความน่าจะเป็นเชิงวิยุตหรือความน่าจะเป็นไม่ต่อเนื่องของช่วง" +msgstr "คืนค่าความน่าจะเป็นแบบดิสครีตของช่วง" #. xkp9u #: sc/inc/scfuncs.hrc:2105 @@ -9889,7 +9711,7 @@ #: sc/inc/scfuncs.hrc:2106 msgctxt "SC_OPCODE_PROB" msgid "The sample data array." -msgstr "อาเรย์ข้อมูลของกลุ่มตัวอย่าง" +msgstr "อาร์เรย์ของข้อมูลกลุ่มตัวอย่าง" #. XF3fT #: sc/inc/scfuncs.hrc:2107 @@ -9901,50 +9723,49 @@ #: sc/inc/scfuncs.hrc:2108 msgctxt "SC_OPCODE_PROB" msgid "The array of the associated probabilities." -msgstr "อาเรย์ของความน่าจะเป็นที่สัมพันธ์กัน" +msgstr "อาร์เรย์ของความน่าจะเป็นที่พ่วงอยู่กับข้อมูล" #. bryLB #: sc/inc/scfuncs.hrc:2109 msgctxt "SC_OPCODE_PROB" msgid "Start" -msgstr "เริ่มต้น" +msgstr "ค่าเริ่มต้น" #. EAFpQ #: sc/inc/scfuncs.hrc:2110 msgctxt "SC_OPCODE_PROB" msgid "The start of the value interval whose probabilities is to be totalled." -msgstr "การเริ่มต้นของช่วงของค่าของความน่าจะเป็นที่ถูกรวมทั้งหมด" +msgstr "ค่าเริ่มต้นของช่วงที่จะหาผลรวมความน่าจะเป็น" #. jsUwC #: sc/inc/scfuncs.hrc:2111 msgctxt "SC_OPCODE_PROB" msgid "End" -msgstr "สิ้นสุด" +msgstr "ค่าสิ้นสุด" #. HFi7t #: sc/inc/scfuncs.hrc:2112 msgctxt "SC_OPCODE_PROB" msgid "The end of the value interval where the probabilities are to be totalled." -msgstr "การสิ้นสุดของช่วงของค่าที่ความน่าจะเป็นที่ถูกรวมทั้งหมด" +msgstr "ค่าสิ้นสุดของช่วงที่จะหาผลรวมความน่าจะเป็น" #. K7rEA #: sc/inc/scfuncs.hrc:2118 msgctxt "SC_OPCODE_B" msgid "Returns the probability of a trial result using binomial distribution." -msgstr "ส่งกลับความน่าจะเป็นของการใช้ผลลัพธ์ทดลองการแจกแจงแบบทวินาม" +msgstr "คืนค่าความน่าจะเป็นของผลการทดลองโดยใช้การแจกแจงแบบทวินาม" #. DuCGC #: sc/inc/scfuncs.hrc:2119 -#, fuzzy msgctxt "SC_OPCODE_B" msgid "Trials" -msgstr "ทดลอง" +msgstr "จำนวนครั้งที่ทดลอง" #. HmRqv #: sc/inc/scfuncs.hrc:2120 msgctxt "SC_OPCODE_B" msgid "The number of trials." -msgstr "จำนวนของการทดลอง" +msgstr "จำนวนครั้งของการทดลอง" #. 6exAv #: sc/inc/scfuncs.hrc:2121 @@ -9956,31 +9777,31 @@ #: sc/inc/scfuncs.hrc:2122 msgctxt "SC_OPCODE_B" msgid "The individual probability of a trial result." -msgstr "ความน่าจะเป็นเฉพาะของผลลัพธ์ที่ทดลอง" +msgstr "ความน่าจะเป็นของผลการทดลองแต่ละครั้ง" #. AJBDG #: sc/inc/scfuncs.hrc:2123 msgctxt "SC_OPCODE_B" msgid "T 1" -msgstr "" +msgstr "T 1" #. iJngC #: sc/inc/scfuncs.hrc:2124 msgctxt "SC_OPCODE_B" msgid "Lower limit for the number of trials." -msgstr "ขีดจำกัดล่างสำหรับจำนวนของการทดลอง" +msgstr "ขีดจำกัดล่างของจำนวนครั้งที่ทดลอง" #. BQyFp #: sc/inc/scfuncs.hrc:2125 msgctxt "SC_OPCODE_B" msgid "T 2" -msgstr "" +msgstr "T 2" #. eoDC3 #: sc/inc/scfuncs.hrc:2126 msgctxt "SC_OPCODE_B" msgid "Upper limit for the number of trials." -msgstr "ขีดจำกัดบนของจำนวนการทดลอง" +msgstr "ขีดจำกัดบนของจำนวนครั้งที่ทดลอง" #. Zidgx #: sc/inc/scfuncs.hrc:2132 @@ -9990,7 +9811,6 @@ #. VB2eA #: sc/inc/scfuncs.hrc:2133 -#, fuzzy msgctxt "SC_OPCODE_PHI" msgid "Number" msgstr "ตัวเลข" @@ -9999,13 +9819,13 @@ #: sc/inc/scfuncs.hrc:2134 msgctxt "SC_OPCODE_PHI" msgid "The value for which the standard normal distribution is to be calculated." -msgstr "ค่าสำหรับคำนวณการแจกแจงปกติมาตรฐาน" +msgstr "ค่าที่จะคำนวณการแจกแจงปกติมาตรฐาน" #. WsS4w #: sc/inc/scfuncs.hrc:2140 msgctxt "SC_OPCODE_GAUSS" msgid "Returns the integral values of the standard normal cumulative distribution." -msgstr "ส่งกลับค่าอินทิเกรตของการแจกแจงสะสมปกติมาตรฐาน" +msgstr "คืนค่าอินทิกรัลของการแจกแจงปกติมาตรฐาน" #. cCAae #: sc/inc/scfuncs.hrc:2141 @@ -10017,13 +9837,13 @@ #: sc/inc/scfuncs.hrc:2142 msgctxt "SC_OPCODE_GAUSS" msgid "The value for which the integral value of the standard normal distribution is to be calculated." -msgstr "ค่าสำหรับคำนวณค่าอินทิเกรตของการแจกแจงปกติมาตรฐาน" +msgstr "ค่าที่จะคำนวณอินทิกรัลของการแจกแจงปกติมาตรฐาน" #. kv48J #: sc/inc/scfuncs.hrc:2148 msgctxt "SC_OPCODE_FISHER" msgid "Returns the Fisher transformation." -msgstr "ส่งกลับการแปลง Fisher" +msgstr "คืนค่าการแปลงฟิชเชอร์" #. v2tPB #: sc/inc/scfuncs.hrc:2149 @@ -10035,13 +9855,13 @@ #: sc/inc/scfuncs.hrc:2150 msgctxt "SC_OPCODE_FISHER" msgid "The value to be transformed (-1 < VALUE < 1)." -msgstr "ค่าที่ถูกสับเปลี่ยน (-1 < ค่า < 1)" +msgstr "ค่าที่จะแปลง (-1 < ค่า < 1)" #. Jk2Wx #: sc/inc/scfuncs.hrc:2156 msgctxt "SC_OPCODE_FISHER_INV" msgid "Returns the inverse of the Fisher transformation." -msgstr "ส่งกลับการแปลง Fisher ผกผัน" +msgstr "คืนค่าผกผันของการแปลงฟิชเชอร์" #. Mw3ET #: sc/inc/scfuncs.hrc:2157 @@ -10053,7 +9873,7 @@ #: sc/inc/scfuncs.hrc:2158 msgctxt "SC_OPCODE_FISHER_INV" msgid "The value that is to be transformed back." -msgstr "ค่าที่ถูกสับเปลี่ยนกลับ" +msgstr "ค่าที่จะแปลงกลับ" #. T4nhz #: sc/inc/scfuncs.hrc:2164 @@ -10065,26 +9885,25 @@ #: sc/inc/scfuncs.hrc:2165 msgctxt "SC_OPCODE_BINOM_DIST" msgid "X" -msgstr "ตัวเลข" +msgstr "X" #. aNu4Z #: sc/inc/scfuncs.hrc:2166 msgctxt "SC_OPCODE_BINOM_DIST" msgid "The number of successes in a series of trials." -msgstr "จำนวนความสำเร็จในลำดับของการทดลอง" +msgstr "จำนวนครั้งที่สำเร็จในชุดการทดลอง" #. vf3AU #: sc/inc/scfuncs.hrc:2167 -#, fuzzy msgctxt "SC_OPCODE_BINOM_DIST" msgid "Trials" -msgstr "ทดลอง" +msgstr "จำนวนครั้งที่ทดลอง" #. tByhD #: sc/inc/scfuncs.hrc:2168 msgctxt "SC_OPCODE_BINOM_DIST" msgid "The total number of trials." -msgstr "จำนวนทั้งหมดของการทดลอง" +msgstr "จำนวนครั้งทั้งหมดของการทดลอง" #. ywzAU #: sc/inc/scfuncs.hrc:2169 @@ -10096,7 +9915,7 @@ #: sc/inc/scfuncs.hrc:2170 msgctxt "SC_OPCODE_BINOM_DIST" msgid "The success probability of a trial." -msgstr "ความน่าจะเป็นในความสำเร็จของการทดลอง" +msgstr "ความน่าจะเป็นของความสำเร็จของการทดลองแต่ละครั้ง" #. gVKYD #: sc/inc/scfuncs.hrc:2171 @@ -10108,7 +9927,7 @@ #: sc/inc/scfuncs.hrc:2172 msgctxt "SC_OPCODE_BINOM_DIST" msgid "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." -msgstr "สะสม C=0 คำนวณความน่าจะเป็นเฉพาะ, C=1 ความน่าจะเป็นแบบสะสม" +msgstr "สะสมหรือไม่ ถ้า C=0 จะคำนวณความน่าจะเป็นเฉพาะกรณี, ถ้า C=1 จะความน่าจะเป็นสะสม" #. yqqv9 #: sc/inc/scfuncs.hrc:2178 @@ -10120,26 +9939,25 @@ #: sc/inc/scfuncs.hrc:2179 msgctxt "SC_OPCODE_BINOM_DIST_MS" msgid "X" -msgstr "" +msgstr "X" #. mMqrV #: sc/inc/scfuncs.hrc:2180 msgctxt "SC_OPCODE_BINOM_DIST_MS" msgid "The number of successes in a series of trials." -msgstr "จำนวนความสำเร็จในลำดับของการทดลอง" +msgstr "จำนวนครั้งที่สำเร็จในชุดการทดลอง" #. GiV9n #: sc/inc/scfuncs.hrc:2181 -#, fuzzy msgctxt "SC_OPCODE_BINOM_DIST_MS" msgid "Trials" -msgstr "ทดลอง" +msgstr "จำนวนครั้งที่ทดลอง" #. ASbAp #: sc/inc/scfuncs.hrc:2182 msgctxt "SC_OPCODE_BINOM_DIST_MS" msgid "The total number of trials." -msgstr "จำนวนทั้งหมดของการทดลอง" +msgstr "จำนวนครั้งทั้งหมดของการทดลอง" #. xJQhw #: sc/inc/scfuncs.hrc:2183 @@ -10151,37 +9969,37 @@ #: sc/inc/scfuncs.hrc:2184 msgctxt "SC_OPCODE_BINOM_DIST_MS" msgid "The success probability of a trial." -msgstr "ความน่าจะเป็นในความสำเร็จของการทดลอง" +msgstr "ความน่าจะเป็นของความสำเร็จของการทดลองแต่ละครั้ง" #. wRN5v #: sc/inc/scfuncs.hrc:2185 msgctxt "SC_OPCODE_BINOM_DIST_MS" msgid "C" -msgstr "" +msgstr "C" #. DvwzR #: sc/inc/scfuncs.hrc:2186 msgctxt "SC_OPCODE_BINOM_DIST_MS" msgid "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." -msgstr "สะสม C=0 คำนวณความน่าจะเป็นเฉพาะ, C=1 ความน่าจะเป็นแบบสะสม" +msgstr "สะสมหรือไม่ ถ้า C=0 จะคำนวณความน่าจะเป็นเฉพาะกรณี, ถ้า C=1 จะความน่าจะเป็นสะสม" #. zGzDq #: sc/inc/scfuncs.hrc:2192 msgctxt "SC_OPCODE_NEG_BINOM_VERT" msgid "Values of the negative binomial distribution." -msgstr "ค่าลบของการแจกแจงแบบทวินาม" +msgstr "ค่าของการแจกแจงทวินามเชิงลบ" #. tUTgu #: sc/inc/scfuncs.hrc:2193 msgctxt "SC_OPCODE_NEG_BINOM_VERT" msgid "X" -msgstr "ตัวเลข" +msgstr "X" #. iGgRs #: sc/inc/scfuncs.hrc:2194 msgctxt "SC_OPCODE_NEG_BINOM_VERT" msgid "The number of failures in the trial range." -msgstr "ตัวเลขของความล้มเหลวในช่วงการทดลอง" +msgstr "จำนวนครั้งที่ล้มเหลวในช่วงที่ทดลอง" #. 57RuM #: sc/inc/scfuncs.hrc:2195 @@ -10193,7 +10011,7 @@ #: sc/inc/scfuncs.hrc:2196 msgctxt "SC_OPCODE_NEG_BINOM_VERT" msgid "The number of successes in the trial sequence." -msgstr "จำนวนของความสำเร็จในลำดับการทดลอง" +msgstr "จำนวนครั้งที่ต้องสำเร็จในลำดับการทดลอง" #. STXEv #: sc/inc/scfuncs.hrc:2197 @@ -10205,37 +10023,37 @@ #: sc/inc/scfuncs.hrc:2198 msgctxt "SC_OPCODE_NEG_BINOM_VERT" msgid "The success probability of a trial." -msgstr "ความน่าจะเป็นของความสำเร็จของการทดลอง" +msgstr "ความน่าจะเป็นของความสำเร็จของการทดลองแต่ละครั้ง" #. bZRUF #: sc/inc/scfuncs.hrc:2204 msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS" msgid "Values of the negative binomial distribution." -msgstr "ค่าลบของการแจกแจงแบบทวินาม" +msgstr "ค่าของการแจกแจงทวินามเชิงลบ" #. kcgW7 #: sc/inc/scfuncs.hrc:2205 msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS" msgid "X" -msgstr "" +msgstr "X" #. vDsaA #: sc/inc/scfuncs.hrc:2206 msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS" msgid "The number of failures in the trial range." -msgstr "ตัวเลขของความล้มเหลวในช่วงการทดลอง" +msgstr "จำนวนครั้งที่ล้มเหลวในช่วงที่ทดลอง" #. DFAjY #: sc/inc/scfuncs.hrc:2207 msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS" msgid "R" -msgstr "" +msgstr "R" #. krw9Y #: sc/inc/scfuncs.hrc:2208 msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS" msgid "The number of successes in the trial sequence." -msgstr "จำนวนของความสำเร็จในลำดับการทดลอง" +msgstr "จำนวนครั้งที่ต้องสำเร็จในลำดับการทดลอง" #. SUGek #: sc/inc/scfuncs.hrc:2209 @@ -10247,7 +10065,7 @@ #: sc/inc/scfuncs.hrc:2210 msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS" msgid "The success probability of a trial." -msgstr "ความน่าจะเป็นในความสำเร็จของการทดลอง" +msgstr "ความน่าจะเป็นของความสำเร็จของการทดลองแต่ละครั้ง" #. wG4JU #: sc/inc/scfuncs.hrc:2211 @@ -10259,26 +10077,25 @@ #: sc/inc/scfuncs.hrc:2212 msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "0 หรือ FALSE คำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE หรือ ละไว้ คำนวณฟังก์ชันการแจกแจงสะสม" +msgstr "0 หรือ FALSE จะคำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE จะคำนวณฟังก์ชันการแจกแจงสะสม" #. ehpkD #: sc/inc/scfuncs.hrc:2218 msgctxt "SC_OPCODE_CRIT_BINOM" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "" +msgstr "คืนค่าจำนวนครั้งที่น้อยที่สุดของการทดลองที่ทำให้การแจกแจงทวินามสะสมมีค่ามากกว่าหรือเท่ากับค่าวิกฤติ" #. RNvff #: sc/inc/scfuncs.hrc:2219 -#, fuzzy msgctxt "SC_OPCODE_CRIT_BINOM" msgid "Trials" -msgstr "ทดลอง" +msgstr "จำนวนครั้งที่ทดลอง" #. PEFmL #: sc/inc/scfuncs.hrc:2220 msgctxt "SC_OPCODE_CRIT_BINOM" msgid "The total number of trials." -msgstr "จำนวนการทดลองทั้งหมด" +msgstr "จำนวนครั้งทั้งหมดของการทดลอง" #. qoaNX #: sc/inc/scfuncs.hrc:2221 @@ -10290,38 +10107,37 @@ #: sc/inc/scfuncs.hrc:2222 msgctxt "SC_OPCODE_CRIT_BINOM" msgid "The success probability of a trial." -msgstr "ความน่าจะเป็นของความสำเร็จของการทดลอง" +msgstr "ความน่าจะเป็นของความสำเร็จของการทดลองแต่ละครั้ง" #. Sz8Ft #: sc/inc/scfuncs.hrc:2223 msgctxt "SC_OPCODE_CRIT_BINOM" msgid "Alpha" -msgstr "อัลฟ่า" +msgstr "แอลฟา" #. x9QPt #: sc/inc/scfuncs.hrc:2224 msgctxt "SC_OPCODE_CRIT_BINOM" msgid "The border probability that is attained or exceeded." -msgstr "ความน่าจะเป็นของเส้นขอบที่ได้รับหรือเกิน" +msgstr "ความน่าจะเป็นขั้นต่ำที่ต้องการ" #. uHvfK #: sc/inc/scfuncs.hrc:2230 msgctxt "SC_OPCODE_BINOM_INV" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "" +msgstr "คืนค่าจำนวนครั้งที่น้อยที่สุดของการทดลองที่ทำให้การแจกแจงทวินามสะสมมีค่ามากกว่าหรือเท่ากับค่าวิกฤติ" #. 5HwPz #: sc/inc/scfuncs.hrc:2231 -#, fuzzy msgctxt "SC_OPCODE_BINOM_INV" msgid "Trials" -msgstr "ทดลอง" +msgstr "จำนวนครั้งที่ทดลอง" #. nx8DH #: sc/inc/scfuncs.hrc:2232 msgctxt "SC_OPCODE_BINOM_INV" msgid "The total number of trials." -msgstr "จำนวนทั้งหมดของการทดลอง" +msgstr "จำนวนครั้งทั้งหมดของการทดลอง" #. KZN2c #: sc/inc/scfuncs.hrc:2233 @@ -10333,25 +10149,25 @@ #: sc/inc/scfuncs.hrc:2234 msgctxt "SC_OPCODE_BINOM_INV" msgid "The success probability of a trial." -msgstr "ความน่าจะเป็นในความสำเร็จของการทดลอง" +msgstr "ความน่าจะเป็นของความสำเร็จของการทดลองแต่ละครั้ง" #. yuiBr #: sc/inc/scfuncs.hrc:2235 msgctxt "SC_OPCODE_BINOM_INV" msgid "Alpha" -msgstr "อัลฟ่า" +msgstr "แอลฟา" #. STnLG #: sc/inc/scfuncs.hrc:2236 msgctxt "SC_OPCODE_BINOM_INV" msgid "The border probability that is attained or exceeded." -msgstr "ความน่าจะเป็นของเส้นขอบที่ได้รับหรือเกิน" +msgstr "ความน่าจะเป็นขั้นต่ำที่ต้องการ" #. qpmzB #: sc/inc/scfuncs.hrc:2242 msgctxt "SC_OPCODE_POISSON_DIST" msgid "Returns the Poisson distribution." -msgstr "ส่งกลับการแจกแจงปัวซง" +msgstr "คืนค่าการแจกแจงปัวซง" #. SzTsq #: sc/inc/scfuncs.hrc:2243 @@ -10363,7 +10179,7 @@ #: sc/inc/scfuncs.hrc:2244 msgctxt "SC_OPCODE_POISSON_DIST" msgid "The value for which the Poisson distribution is to be calculated." -msgstr "ค่าสำหรับคำนวณการแจกแจงปัวซง" +msgstr "ค่าที่จะคำนวณการแจกแจงปัวซง" #. mYHfJ #: sc/inc/scfuncs.hrc:2245 @@ -10375,7 +10191,7 @@ #: sc/inc/scfuncs.hrc:2246 msgctxt "SC_OPCODE_POISSON_DIST" msgid "Mean. The mean value of the Poisson distribution." -msgstr "ค่าเฉลี่ย ค่าเฉลี่ยของการแจกแจงปัวซง" +msgstr "ค่าเฉลี่ยของการแจกแจงปัวซง" #. KThWA #: sc/inc/scfuncs.hrc:2247 @@ -10387,13 +10203,13 @@ #: sc/inc/scfuncs.hrc:2248 msgctxt "SC_OPCODE_POISSON_DIST" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." -msgstr "0 หรือ FALSE คำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE หรือ ละไว้ คำนวณฟังก์ชันการแจกแจงสะสม" +msgstr "0 หรือ FALSE จะคำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE หรือละไว้ จะคำนวณฟังก์ชันการแจกแจงสะสม" #. XEzR8 #: sc/inc/scfuncs.hrc:2254 msgctxt "SC_OPCODE_POISSON_DIST_MS" msgid "Returns the Poisson distribution." -msgstr "ส่งกลับการแจกแจงปัวซง" +msgstr "คืนค่าการแจกแจงปัวซง" #. 97a86 #: sc/inc/scfuncs.hrc:2255 @@ -10405,7 +10221,7 @@ #: sc/inc/scfuncs.hrc:2256 msgctxt "SC_OPCODE_POISSON_DIST_MS" msgid "The value for which the Poisson distribution is to be calculated." -msgstr "ค่าสำหรับคำนวณการแจกแจงปัวซง" +msgstr "ค่าที่จะคำนวณการแจกแจงปัวซง" #. jEvi7 #: sc/inc/scfuncs.hrc:2257 @@ -10417,7 +10233,7 @@ #: sc/inc/scfuncs.hrc:2258 msgctxt "SC_OPCODE_POISSON_DIST_MS" msgid "Mean. The mean value of the Poisson distribution." -msgstr "ค่าเฉลี่ย ค่าเฉลี่ยของการแจกแจงปัวซง" +msgstr "ค่าเฉลี่ยของการแจกแจงปัวซง" #. kfFbC #: sc/inc/scfuncs.hrc:2259 @@ -10429,13 +10245,13 @@ #: sc/inc/scfuncs.hrc:2260 msgctxt "SC_OPCODE_POISSON_DIST_MS" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." -msgstr "0 หรือ FALSE คำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE หรือ ละไว้ คำนวณฟังก์ชันการแจกแจงสะสม" +msgstr "0 หรือ FALSE จะคำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE หรือละไว้ จะคำนวณฟังก์ชันการแจกแจงสะสม" #. m4pDe #: sc/inc/scfuncs.hrc:2266 msgctxt "SC_OPCODE_NORM_DIST" msgid "Values of the normal distribution." -msgstr "ค่าการกระจายปกติ" +msgstr "ค่าของการแจกแจงปกติ" #. RPzKS #: sc/inc/scfuncs.hrc:2267 @@ -10447,7 +10263,7 @@ #: sc/inc/scfuncs.hrc:2268 msgctxt "SC_OPCODE_NORM_DIST" msgid "The value for which the normal distribution is to be calculated." -msgstr "ค่าสำหรับคำนวณการกระจายปกติ" +msgstr "ค่าที่จะคำนวณการแจกแจงปกติ" #. fXJBs #: sc/inc/scfuncs.hrc:2269 @@ -10459,19 +10275,19 @@ #: sc/inc/scfuncs.hrc:2270 msgctxt "SC_OPCODE_NORM_DIST" msgid "The mean value. The mean value of the normal distribution." -msgstr "ค่าเฉลี่ย ค่าเฉลี่ยของการกระจายปกติ" +msgstr "ค่าเฉลี่ยของการแจกแจงปกติ" #. F8RCc #: sc/inc/scfuncs.hrc:2271 msgctxt "SC_OPCODE_NORM_DIST" msgid "STDEV" -msgstr "ส่วนเบี่ยงเบนมาตรฐาน " +msgstr "STDEV" #. Di2pF #: sc/inc/scfuncs.hrc:2272 msgctxt "SC_OPCODE_NORM_DIST" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "ส่วนเบี่ยงเบนมาตรฐาน ส่วนเบี่ยงเบนมาตรฐานของการกระจายปกติ" +msgstr "ส่วนเบี่ยงเบนมาตรฐานของการแจกแจงปกติ" #. qMewn #: sc/inc/scfuncs.hrc:2273 @@ -10483,13 +10299,13 @@ #: sc/inc/scfuncs.hrc:2274 msgctxt "SC_OPCODE_NORM_DIST" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." -msgstr "0 หรือ FALSE คำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE หรือ ละไว้ คำนวณฟังก์ชันการแจกแจงสะสม" +msgstr "0 หรือ FALSE จะคำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE หรือละไว้ จะคำนวณฟังก์ชันการแจกแจงสะสม" #. rGWSr #: sc/inc/scfuncs.hrc:2280 msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "Values of the normal distribution." -msgstr "ค่าการกระจายปกติ" +msgstr "ค่าของการแจกแจงปกติ" #. SkS5e #: sc/inc/scfuncs.hrc:2281 @@ -10501,7 +10317,7 @@ #: sc/inc/scfuncs.hrc:2282 msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "The value for which the normal distribution is to be calculated." -msgstr "ค่าสำหรับคำนวณการกระจายปกติ" +msgstr "ค่าที่จะคำนวณการแจกแจงปกติ" #. dESaP #: sc/inc/scfuncs.hrc:2283 @@ -10513,11 +10329,10 @@ #: sc/inc/scfuncs.hrc:2284 msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "The mean value. The mean value of the normal distribution." -msgstr "ค่าเฉลี่ย ค่าเฉลี่ยของการกระจายปกติ" +msgstr "ค่าเฉลี่ยของการแจกแจงปกติ" #. n48EF #: sc/inc/scfuncs.hrc:2285 -#, fuzzy msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "STDEV" msgstr "STDEV" @@ -10526,29 +10341,28 @@ #: sc/inc/scfuncs.hrc:2286 msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "ส่วนเบี่ยงเบนมาตรฐาน ส่วนเบี่ยงเบนมาตรฐานของการกระจายปกติ" +msgstr "ส่วนเบี่ยงเบนมาตรฐานของการแจกแจงปกติ" #. CqHN6 #: sc/inc/scfuncs.hrc:2287 msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "C" -msgstr "" +msgstr "C" #. b8GNG #: sc/inc/scfuncs.hrc:2288 msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "0 หรือ FALSE คำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE หรือ ละไว้ คำนวณฟังก์ชันการแจกแจงสะสม" +msgstr "0 หรือ FALSE จะคำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE จะคำนวณฟังก์ชันการแจกแจงสะสม" #. 66pXD #: sc/inc/scfuncs.hrc:2294 msgctxt "SC_OPCODE_NORM_INV" msgid "Values of the inverse normal distribution." -msgstr "ค่าอินเวิร์สของการกระจายปกติ" +msgstr "ค่าผกผันของการแจกแจงปกติ" #. uNoei #: sc/inc/scfuncs.hrc:2295 -#, fuzzy msgctxt "SC_OPCODE_NORM_INV" msgid "Number" msgstr "ตัวเลข" @@ -10557,7 +10371,7 @@ #: sc/inc/scfuncs.hrc:2296 msgctxt "SC_OPCODE_NORM_INV" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "ค่าความน่าจะเป็นสำหรับคำนวณอินเวิร์สของการกระจายปกติ" +msgstr "ค่าความน่าจะเป็นที่จะคำนวณหาค่าผกผันของการแจกแจงปกติ" #. C8XB9 #: sc/inc/scfuncs.hrc:2297 @@ -10569,29 +10383,28 @@ #: sc/inc/scfuncs.hrc:2298 msgctxt "SC_OPCODE_NORM_INV" msgid "The mean value. The mean value of the normal distribution." -msgstr "ค่าเฉลี่ย ค่าเฉลี่ยของการกระจายปกติ" +msgstr "ค่าเฉลี่ยของการแจกแจงปกติ" #. AdBuo #: sc/inc/scfuncs.hrc:2299 msgctxt "SC_OPCODE_NORM_INV" msgid "STDEV" -msgstr "ส่วนเบี่ยงเบนมาตรฐาน " +msgstr "STDEV" #. QKHxf #: sc/inc/scfuncs.hrc:2300 msgctxt "SC_OPCODE_NORM_INV" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "ส่วนเบี่ยงเบนมาตรฐาน ส่วนเบี่ยงเบนมาตรฐานของการกระจายปกติ" +msgstr "ส่วนเบี่ยงเบนมาตรฐานของการแจกแจงปกติ" #. wodEb #: sc/inc/scfuncs.hrc:2306 msgctxt "SC_OPCODE_NORM_INV_MS" msgid "Values of the inverse normal distribution." -msgstr "ค่าอินเวิร์สของการกระจายปกติ" +msgstr "ค่าผกผันของการแจกแจงปกติ" #. 4Nbw3 #: sc/inc/scfuncs.hrc:2307 -#, fuzzy msgctxt "SC_OPCODE_NORM_INV_MS" msgid "Number" msgstr "ตัวเลข" @@ -10600,7 +10413,7 @@ #: sc/inc/scfuncs.hrc:2308 msgctxt "SC_OPCODE_NORM_INV_MS" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "ค่าความน่าจะเป็นสำหรับคำนวณอินเวิร์สของการกระจายปกติ" +msgstr "ค่าความน่าจะเป็นที่จะคำนวณหาค่าผกผันของการแจกแจงปกติ" #. LEy4H #: sc/inc/scfuncs.hrc:2309 @@ -10612,11 +10425,10 @@ #: sc/inc/scfuncs.hrc:2310 msgctxt "SC_OPCODE_NORM_INV_MS" msgid "The mean value. The mean value of the normal distribution." -msgstr "ค่าเฉลี่ย ค่าเฉลี่ยของการกระจายปกติ" +msgstr "ค่าเฉลี่ยของการแจกแจงปกติ" #. pRhBy #: sc/inc/scfuncs.hrc:2311 -#, fuzzy msgctxt "SC_OPCODE_NORM_INV_MS" msgid "STDEV" msgstr "STDEV" @@ -10625,13 +10437,13 @@ #: sc/inc/scfuncs.hrc:2312 msgctxt "SC_OPCODE_NORM_INV_MS" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "ส่วนเบี่ยงเบนมาตรฐาน ส่วนเบี่ยงเบนมาตรฐานของการกระจายปกติ" +msgstr "ส่วนเบี่ยงเบนมาตรฐานของการแจกแจงปกติ" #. yX9mS #: sc/inc/scfuncs.hrc:2318 msgctxt "SC_OPCODE_STD_NORM_DIST" msgid "The values of the standard normal cumulative distribution." -msgstr "ค่าการกระจายสะสมปกติแบบมาตรฐาน" +msgstr "ค่าของการแจกแจงปกติมาตรฐานสะสม" #. KAfpq #: sc/inc/scfuncs.hrc:2319 @@ -10643,14 +10455,13 @@ #: sc/inc/scfuncs.hrc:2320 msgctxt "SC_OPCODE_STD_NORM_DIST" msgid "The value for which the standard normal distribution is to be calculated." -msgstr "ค่าสำหรับคำนวณการกระจายปกติแบบมาตรฐาน" +msgstr "ค่าที่จะคำนวณการแจกแจงปกติมาตรฐาน" #. zuSQk #: sc/inc/scfuncs.hrc:2326 -#, fuzzy msgctxt "SC_OPCODE_STD_NORM_DIST_MS" msgid "The values of the standard normal distribution." -msgstr "ค่าการกระจายสะสมปกติแบบมาตรฐาน" +msgstr "ค่าของการแจกแจงปกติมาตรฐาน" #. NH6EA #: sc/inc/scfuncs.hrc:2327 @@ -10660,10 +10471,9 @@ #. BjLDt #: sc/inc/scfuncs.hrc:2328 -#, fuzzy msgctxt "SC_OPCODE_STD_NORM_DIST_MS" msgid "The value for which the standard normal distribution is to be calculated." -msgstr "ค่าสำหรับคำนวณการกระจายปกติแบบล็อก" +msgstr "ค่าที่จะคำนวณการแจกแจงปกติมาตรฐาน" #. FEB7N #: sc/inc/scfuncs.hrc:2329 @@ -10675,17 +10485,16 @@ #: sc/inc/scfuncs.hrc:2330 msgctxt "SC_OPCODE_STD_NORM_DIST_MS" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "0 หรือ FALSE คำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE หรือ ละไว้ คำนวณฟังก์ชันการแจกแจงสะสม" +msgstr "0 หรือ FALSE จะคำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE จะคำนวณฟังก์ชันการแจกแจงสะสม" #. NzGrF #: sc/inc/scfuncs.hrc:2336 msgctxt "SC_OPCODE_S_NORM_INV" msgid "Values of the inverse standard normal distribution." -msgstr "ค่าอินเวิร์สของการกระจายปกติแบบมาตรฐาน" +msgstr "ค่าผกผันของการแจกแจงปกติมาตรฐาน" #. N2AAw #: sc/inc/scfuncs.hrc:2337 -#, fuzzy msgctxt "SC_OPCODE_S_NORM_INV" msgid "Number" msgstr "ตัวเลข" @@ -10694,17 +10503,16 @@ #: sc/inc/scfuncs.hrc:2338 msgctxt "SC_OPCODE_S_NORM_INV" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "ค่าความน่าจะเป็นสำหรับคำนวณอินเวิร์สของการกระจายปกติแบบมาตรฐาน" +msgstr "ค่าความน่าจะเป็นที่จะคำนวณหาค่าผกผันของการแจกแจงปกติมาตรฐาน" #. Cd7DU #: sc/inc/scfuncs.hrc:2344 msgctxt "SC_OPCODE_S_NORM_INV_MS" msgid "Values of the inverse standard normal distribution." -msgstr "ค่าอินเวิร์สของการกระจายปกติแบบมาตรฐาน" +msgstr "ค่าผกผันของการแจกแจงปกติมาตรฐาน" #. TKxL4 #: sc/inc/scfuncs.hrc:2345 -#, fuzzy msgctxt "SC_OPCODE_S_NORM_INV_MS" msgid "Number" msgstr "ตัวเลข" @@ -10713,13 +10521,13 @@ #: sc/inc/scfuncs.hrc:2346 msgctxt "SC_OPCODE_S_NORM_INV_MS" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "ค่าความน่าจะเป็นสำหรับคำนวณอินเวิร์สของการกระจายปกติแบบมาตรฐาน" +msgstr "ค่าความน่าจะเป็นที่จะคำนวณหาค่าผกผันของการแจกแจงปกติมาตรฐาน" #. iDXnR #: sc/inc/scfuncs.hrc:2352 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "Values of the log normal distribution." -msgstr "ค่าการกระจายปกติแบบล็อก" +msgstr "ค่าของการแจกแจงล็อกนอร์มอล" #. Ki8Dr #: sc/inc/scfuncs.hrc:2353 @@ -10731,7 +10539,7 @@ #: sc/inc/scfuncs.hrc:2354 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "The value for which the log normal distribution is to be calculated." -msgstr "ค่าสำหรับคำนวณการกระจายปกติแบบล็อก" +msgstr "ค่าที่จะคำนวณการแจกแจงล็อกนอร์มอล" #. kXpBc #: sc/inc/scfuncs.hrc:2355 @@ -10743,19 +10551,19 @@ #: sc/inc/scfuncs.hrc:2356 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "The mean value of the log normal distribution. It is set to 0 if omitted." -msgstr "ค่าเฉลี่ยของการแจกแจงล็อกปรกติ มีค่าเป็น 0 ถ้าเว้นว่าง" +msgstr "ค่าเฉลี่ยของการแจกแจงล็อกนอร์มอล ถ้าละไว้จะถือว่ามีค่าเป็น 0" #. aJf8v #: sc/inc/scfuncs.hrc:2357 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "STDEV" -msgstr "ส่วนเบี่ยงเบนมาตรฐาน" +msgstr "STDEV" #. JvuRB #: sc/inc/scfuncs.hrc:2358 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "The standard deviation of the log normal distribution. It is set to 1 if omitted." -msgstr "ค่าเบี่ยงเบนมาตรฐานของการแจกแจงล็อกปรกติ มีค่าเป็น 1 ถ้าเว้นว่าง" +msgstr "ส่วนเบี่ยงเบนมาตรฐานของการแจกแจงล็อกนอร์มอล ถ้าละไว้จะถือว่ามีค่าเป็น 1" #. VsLsD #: sc/inc/scfuncs.hrc:2359 @@ -10767,13 +10575,13 @@ #: sc/inc/scfuncs.hrc:2360 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." -msgstr "0 หรือ FALSE คำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE หรือ ละไว้ คำนวณฟังก์ชันการแจกแจงสะสม" +msgstr "0 หรือ FALSE จะคำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE หรือละไว้ จะคำนวณฟังก์ชันการแจกแจงสะสม" #. ZgdzP #: sc/inc/scfuncs.hrc:2366 msgctxt "SC_OPCODE_LOG_NORM_DIST_MS" msgid "Values of the log normal distribution." -msgstr "ค่าการกระจายปกติแบบล็อก" +msgstr "ค่าของการแจกแจงล็อกนอร์มอล" #. tG5vo #: sc/inc/scfuncs.hrc:2367 @@ -10785,7 +10593,7 @@ #: sc/inc/scfuncs.hrc:2368 msgctxt "SC_OPCODE_LOG_NORM_DIST_MS" msgid "The value for which the log normal distribution is to be calculated." -msgstr "ค่าสำหรับคำนวณการกระจายปกติแบบล็อก" +msgstr "ค่าที่จะคำนวณการแจกแจงล็อกนอร์มอล" #. FHmKU #: sc/inc/scfuncs.hrc:2369 @@ -10795,24 +10603,21 @@ #. qNMyM #: sc/inc/scfuncs.hrc:2370 -#, fuzzy msgctxt "SC_OPCODE_LOG_NORM_DIST_MS" msgid "The mean value of the log normal distribution." -msgstr "ค่าเฉลี่ย ค่าเฉลี่ยของการกระจายปกติแบบล็อก" +msgstr "ค่าเฉลี่ยของการแจกแจงล็อกนอร์มอล" #. HSDAn #: sc/inc/scfuncs.hrc:2371 -#, fuzzy msgctxt "SC_OPCODE_LOG_NORM_DIST_MS" msgid "STDEV" msgstr "STDEV" #. DkbJX #: sc/inc/scfuncs.hrc:2372 -#, fuzzy msgctxt "SC_OPCODE_LOG_NORM_DIST_MS" msgid "The standard deviation of the log normal distribution." -msgstr "ค่าเฉลี่ย ค่าเฉลี่ยของการกระจายปกติแบบล็อก" +msgstr "ส่วนเบี่ยงเบนมาตรฐานของการแจกแจงล็อกนอร์มอล" #. JeiQB #: sc/inc/scfuncs.hrc:2373 @@ -10824,17 +10629,16 @@ #: sc/inc/scfuncs.hrc:2374 msgctxt "SC_OPCODE_LOG_NORM_DIST_MS" msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." -msgstr "0 หรือ FALSE คำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE หรือ ละไว้ คำนวณฟังก์ชันการแจกแจงสะสม" +msgstr "0 หรือ FALSE จะคำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ส่วนค่าอื่นหรือ TRUE จะคำนวณฟังก์ชันการแจกแจงสะสม" #. vGkMb #: sc/inc/scfuncs.hrc:2380 msgctxt "SC_OPCODE_LOG_INV" msgid "Values of the inverse of the lognormal distribution." -msgstr "ค่าอินเวิร์สของการกระจายปกติแบบล็อก" +msgstr "ค่าผกผันของการแจกแจงล็อกนอร์มอล" #. sUwE4 #: sc/inc/scfuncs.hrc:2381 -#, fuzzy msgctxt "SC_OPCODE_LOG_INV" msgid "Number" msgstr "ตัวเลข" @@ -10843,7 +10647,7 @@ #: sc/inc/scfuncs.hrc:2382 msgctxt "SC_OPCODE_LOG_INV" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "ค่าความน่าจะเป็นสำหรับคำนวณอินเวิร์สของการกระจายปกติแบบล็อก" +msgstr "ค่าความน่าจะเป็นที่จะคำนวณหาค่าผกผันของการแจกแจงล็อกนอร์มอล" #. DcZBh #: sc/inc/scfuncs.hrc:2383 @@ -10855,29 +10659,28 @@ #: sc/inc/scfuncs.hrc:2384 msgctxt "SC_OPCODE_LOG_INV" msgid "Mean value. The mean value of the log normal distribution." -msgstr "ค่าเฉลี่ย ค่าเฉลี่ยของการแจกแจงปกติแบบล็อก" +msgstr "ค่าเฉลี่ยของการแจกแจงล็อกนอร์มอล" #. aMDvP #: sc/inc/scfuncs.hrc:2385 msgctxt "SC_OPCODE_LOG_INV" msgid "STDEV" -msgstr "ส่วนเบี่ยงเบนมาตรฐาน" +msgstr "STDEV" #. 2GWhL #: sc/inc/scfuncs.hrc:2386 msgctxt "SC_OPCODE_LOG_INV" msgid "Standard deviation. The standard deviation of the log normal distribution." -msgstr "ส่วนเบี่ยงเบนมาตรฐาน ส่วนเบี่ยงเบนมาตรฐานของการกระจายปกติแบบล็อก" +msgstr "ส่วนเบี่ยงเบนมาตรฐานของการแจกแจงล็อกนอร์มอล" #. T4N5D #: sc/inc/scfuncs.hrc:2392 msgctxt "SC_OPCODE_LOG_INV_MS" msgid "Values of the inverse of the lognormal distribution." -msgstr "ค่าอินเวิร์สของการกระจายปกติแบบล็อก" +msgstr "ค่าผกผันของการแจกแจงล็อกนอร์มอล" #. CX2EQ #: sc/inc/scfuncs.hrc:2393 -#, fuzzy msgctxt "SC_OPCODE_LOG_INV_MS" msgid "Number" msgstr "ตัวเลข" @@ -10886,7 +10689,7 @@ #: sc/inc/scfuncs.hrc:2394 msgctxt "SC_OPCODE_LOG_INV_MS" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "ค่าความน่าจะเป็นสำหรับคำนวณอินเวิร์สของการกระจายปกติแบบล็อก" +msgstr "ค่าความน่าจะเป็นที่จะคำนวณหาค่าผกผันของการแจกแจงล็อกนอร์มอล" #. BgAcE #: sc/inc/scfuncs.hrc:2395 @@ -10898,27 +10701,25 @@ #: sc/inc/scfuncs.hrc:2396 msgctxt "SC_OPCODE_LOG_INV_MS" msgid "Mean value. The mean value of the log normal distribution." -msgstr "ค่าเฉลี่ย ค่าเฉลี่ยของการแจกแจงปกติแบบล็อก" +msgstr "ค่าเฉลี่ยของการแจกแจงล็อกนอร์มอล" #. rzAiX #: sc/inc/scfuncs.hrc:2397 -#, fuzzy msgctxt "SC_OPCODE_LOG_INV_MS" msgid "STDEV" msgstr "STDEV" #. ae6FC #: sc/inc/scfuncs.hrc:2398 -#, fuzzy msgctxt "SC_OPCODE_LOG_INV_MS" msgid "Standard deviation. The standard deviation of the log normal distribution." -msgstr "ส่วนเบี่ยงเบนมาตรฐาน ส่วนเบี่ยงเบนมาตรฐานของการกระจายปกติ" +msgstr "ส่วนเบี่ยงเบนมาตรฐานของการแจกแจงล็อกนอร์มอล" #. 8wWP2 #: sc/inc/scfuncs.hrc:2404 msgctxt "SC_OPCODE_EXP_DIST" msgid "Values of the exponential distribution." -msgstr "ค่าการกระจายแบบเอ็กซ์โปเนนเชียล" +msgstr "ค่าของการแจกแจงแบบเอ็กซ์โพเนนเชียล" #. FU5Fy #: sc/inc/scfuncs.hrc:2405 @@ -10930,20 +10731,19 @@ #: sc/inc/scfuncs.hrc:2406 msgctxt "SC_OPCODE_EXP_DIST" msgid "The value to which the exponential distribution is to be calculated." -msgstr "ค่าเพื่อคำนวณการกระจายแบบเอ็กซ์โปเนนเชียล" +msgstr "ค่าที่จะคำนวณการแจกแจงแบบเอ็กโพเนนเชียล" #. VTtEt #: sc/inc/scfuncs.hrc:2407 -#, fuzzy msgctxt "SC_OPCODE_EXP_DIST" msgid "Lambda" -msgstr "แลมบ์ด้า" +msgstr "แลมบ์ดา" #. i7v6W #: sc/inc/scfuncs.hrc:2408 msgctxt "SC_OPCODE_EXP_DIST" msgid "The parameters of the exponential distribution." -msgstr "พารามิเตอร์ของการกระจายแบบเอ็กซ์โปเนนเชียล" +msgstr "พารามิเตอร์ของการแจกแจงแบบเอ็กซ์โพเนนเชียล" #. DaEE7 #: sc/inc/scfuncs.hrc:2409 @@ -10955,13 +10755,13 @@ #: sc/inc/scfuncs.hrc:2410 msgctxt "SC_OPCODE_EXP_DIST" msgid "Cumulated. C=0 calculates the density function, C=1 the distribution." -msgstr "สะสม C=0 คำนวณฟังก์ชันความหนาแน่น, C=1 การกระจาย" +msgstr "สะสม ถ้า C=0 จะคำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ถ้า C=1 จะคำนวณการแจกแจงสะสม" #. 7i2aN #: sc/inc/scfuncs.hrc:2416 msgctxt "SC_OPCODE_EXP_DIST_MS" msgid "Values of the exponential distribution." -msgstr "ค่าการกระจายแบบเอ็กซ์โปเนนเชียล" +msgstr "ค่าของการแจกแจงแบบเอ็กซ์โพเนนเชียล" #. E3Fwz #: sc/inc/scfuncs.hrc:2417 @@ -10973,32 +10773,31 @@ #: sc/inc/scfuncs.hrc:2418 msgctxt "SC_OPCODE_EXP_DIST_MS" msgid "The value to which the exponential distribution is to be calculated." -msgstr "ค่าเพื่อคำนวณการกระจายแบบเอ็กซ์โปเนนเชียล" +msgstr "ค่าที่จะคำนวณการแจกแจงแบบเอ็กโพเนนเชียล" #. U2dx6 #: sc/inc/scfuncs.hrc:2419 -#, fuzzy msgctxt "SC_OPCODE_EXP_DIST_MS" msgid "Lambda" -msgstr "แลมบ์ด้า" +msgstr "แลมบ์ดา" #. wPVU9 #: sc/inc/scfuncs.hrc:2420 msgctxt "SC_OPCODE_EXP_DIST_MS" msgid "The parameters of the exponential distribution." -msgstr "พารามิเตอร์ของการกระจายแบบเอ็กซ์โปเนนเชียล" +msgstr "พารามิเตอร์ของการแจกแจงแบบเอ็กซ์โพเนนเชียล" #. KJ8Eo #: sc/inc/scfuncs.hrc:2421 msgctxt "SC_OPCODE_EXP_DIST_MS" msgid "C" -msgstr "" +msgstr "C" #. CHL5y #: sc/inc/scfuncs.hrc:2422 msgctxt "SC_OPCODE_EXP_DIST_MS" msgid "Cumulated. C=0 calculates the density function, C=1 the distribution." -msgstr "สะสม C=0 คำนวณฟังก์ชันความหนาแน่น, C=1 การกระจาย" +msgstr "สะสม ถ้า C=0 จะคำนวณฟังก์ชันความหนาแน่นของความน่าจะเป็น ถ้า C=1 จะคำนวณการแจกแจงสะสม" #. QJrVu #: sc/inc/scfuncs.hrc:2428 @@ -22519,23 +22318,21 @@ #. 6EGaz #: sc/uiconfig/scalc/ui/definename.ui:96 -#, fuzzy msgctxt "definename|label2" msgid "Name:" -msgstr "_ชื่อ:" +msgstr "ชื่อ:" #. EPtbZ #: sc/uiconfig/scalc/ui/definename.ui:110 msgctxt "definename|label3" msgid "Range or formula expression:" -msgstr "" +msgstr "ช่วงหรือนิพจน์ของสูตร:" #. cPZDB #: sc/uiconfig/scalc/ui/definename.ui:124 -#, fuzzy msgctxt "definename|label4" msgid "Scope:" -msgstr "ขอบข่าย" +msgstr "ขอบเขต:" #. 8LBjA #: sc/uiconfig/scalc/ui/definename.ui:142 @@ -24730,19 +24527,19 @@ #: sc/uiconfig/scalc/ui/insertname.ui:137 msgctxt "insertname|STR_HEADER_NAME" msgid "Name" -msgstr "" +msgstr "ชื่อ" #. 28fLF #: sc/uiconfig/scalc/ui/insertname.ui:150 msgctxt "insertname|STR_HEADER_RANGE_OR_EXPR" msgid "Range or formula expression" -msgstr "" +msgstr "ช่วงหรือนิพจน์ของสูตร" #. kSc7p #: sc/uiconfig/scalc/ui/insertname.ui:163 msgctxt "insertname|STR_HEADER_SCOPE" msgid "Scope" -msgstr "" +msgstr "ขอบเขต" #. XCYdx #: sc/uiconfig/scalc/ui/insertname.ui:174 @@ -24957,19 +24754,19 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:133 msgctxt "managenamesdialog|name" msgid "Name" -msgstr "" +msgstr "ชื่อ" #. qwCzn #: sc/uiconfig/scalc/ui/managenamesdialog.ui:146 msgctxt "managenamesdialog|expression" msgid "Range or formula expression" -msgstr "" +msgstr "ช่วงหรือนิพจน์ของสูตร" #. nFCoR #: sc/uiconfig/scalc/ui/managenamesdialog.ui:159 msgctxt "managenamesdialog|scope" msgid "Scope" -msgstr "" +msgstr "ขอบเขต" #. oGG5j #: sc/uiconfig/scalc/ui/managenamesdialog.ui:170 @@ -24985,17 +24782,15 @@ #. WCnsd #: sc/uiconfig/scalc/ui/managenamesdialog.ui:215 -#, fuzzy msgctxt "managenamesdialog|label2" msgid "Name:" -msgstr "_ชื่อ:" +msgstr "ชื่อ:" #. XY33d #: sc/uiconfig/scalc/ui/managenamesdialog.ui:229 -#, fuzzy msgctxt "managenamesdialog|label4" msgid "Scope:" -msgstr "ขอบข่าย" +msgstr "ขอบเขต:" #. oXFBG #: sc/uiconfig/scalc/ui/managenamesdialog.ui:246 @@ -25019,7 +24814,7 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:309 msgctxt "managenamesdialog|label3" msgid "Range or formula expression:" -msgstr "" +msgstr "ช่วงหรือนิพจน์ของสูตร:" #. CEMJp #: sc/uiconfig/scalc/ui/managenamesdialog.ui:328 @@ -30684,7 +30479,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:644 msgctxt "sheetprintpage|comboLB_SCALEMODE" msgid "Reduce/enlarge printout" -msgstr "Reduce/enlarge printout" +msgstr "พิมพ์ย่อ/ขยาย" #. GxZyi #: sc/uiconfig/scalc/ui/sheetprintpage.ui:645 diff -Nru libreoffice-7.4.6/translations/source/th/sd/messages.po libreoffice-7.4.7/translations/source/th/sd/messages.po --- libreoffice-7.4.6/translations/source/th/sd/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/th/sd/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-03-31 22:30+0000\n" +"PO-Revision-Date: 2023-03-24 12:36+0000\n" "Last-Translator: Theppitak Karoonboonyanan \n" -"Language-Team: Thai \n" +"Language-Team: Thai \n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542025150.000000\n" #. WDjkB @@ -26,13 +26,13 @@ #: sd/inc/DocumentRenderer.hrc:29 msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES" msgid "Handouts" -msgstr "เอกสารประกอบคำบรรยาย" +msgstr "เอกสารแจก" #. Fg5nZ #: sd/inc/DocumentRenderer.hrc:30 msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES" msgid "Notes" -msgstr "บันทึก" +msgstr "บันทึกเสริม" #. L8LvB #: sd/inc/DocumentRenderer.hrc:31 @@ -44,64 +44,61 @@ #: sd/inc/DocumentRenderer.hrc:36 msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES" msgid "According to layout" -msgstr "" +msgstr "ตามผัง" #. FBUYC #: sd/inc/DocumentRenderer.hrc:37 msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES" msgid "1" -msgstr "" +msgstr "1" #. EHHWd #: sd/inc/DocumentRenderer.hrc:38 msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES" msgid "2" -msgstr "" +msgstr "2" #. UF5Xv #: sd/inc/DocumentRenderer.hrc:39 msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES" msgid "3" -msgstr "" +msgstr "3" #. 2VEN3 #: sd/inc/DocumentRenderer.hrc:40 msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES" msgid "4" -msgstr "" +msgstr "4" #. fZdRe #: sd/inc/DocumentRenderer.hrc:41 msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES" msgid "6" -msgstr "" +msgstr "6" #. NjtiN #: sd/inc/DocumentRenderer.hrc:42 msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES" msgid "9" -msgstr "" +msgstr "9" #. rEFBA #: sd/inc/DocumentRenderer.hrc:47 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES" msgid "Left to right, then down" -msgstr "ซ้ายไปขวา จากนั้นลง" +msgstr "ซ้ายไปขวา แล้วเรียงลง" #. 2ZwsC #: sd/inc/DocumentRenderer.hrc:48 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES" msgid "Top to bottom, then right" -msgstr "บนลงล่าง จากนั้นไปขวา" +msgstr "บนลงล่าง แล้วเรียงไปทางขวา" #. peBEn #: sd/inc/DocumentRenderer.hrc:53 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES" msgid "Original colors" -msgstr "สีเดิมแต่แรก" +msgstr "สีเดิม" #. hoEiK #: sd/inc/DocumentRenderer.hrc:54 @@ -111,10 +108,9 @@ #. 9aSXC #: sd/inc/DocumentRenderer.hrc:55 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES" msgid "Black & white" -msgstr "ดำและ~ขาว" +msgstr "ขาวดำ" #. v8qMM #: sd/inc/DocumentRenderer.hrc:60 @@ -138,7 +134,7 @@ #: sd/inc/DocumentRenderer.hrc:63 msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES" msgid "Tile sheet of paper with repeated slides" -msgstr "เรียงภาพนิ่งซ้ำลงบนแผ่นกระดาษแบบปูกระเบื้อง" +msgstr "เรียงภาพนิ่งซ้ำแบบปูกระเบื้องลงบนแผ่นกระดาษ" #. 3Gp62 #: sd/inc/DocumentRenderer.hrc:68 @@ -162,7 +158,7 @@ #: sd/inc/DocumentRenderer.hrc:71 msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW" msgid "Tile sheet of paper with repeated pages" -msgstr "เรียงหน้าซ้ำลงบนแผ่นกระดาษแบบปูกระเบื้อง" +msgstr "เรียงหน้าซ้ำแบบปูกระเบื้องลงบนแผ่นกระดาษ" #. zRbyF #: sd/inc/DocumentRenderer.hrc:76 @@ -172,14 +168,12 @@ #. Dv7rf #: sd/inc/DocumentRenderer.hrc:77 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST" msgid "Front sides / right pages" msgstr "ด้านหน้า / หน้าขวา" #. y4PeC #: sd/inc/DocumentRenderer.hrc:78 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST" msgid "Back sides / left pages" msgstr "ด้านหลัง / หน้าซ้าย" @@ -188,37 +182,37 @@ #: sd/inc/DocumentRenderer.hrc:83 msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE" msgid "All ~Slides" -msgstr "" +msgstr "ภาพนิ่ง~ทั้งหมด" #. X6qd7 #: sd/inc/DocumentRenderer.hrc:84 msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE" msgid "S~lides:" -msgstr "" +msgstr "ภาพ~นิ่ง:" #. C2UoV #: sd/inc/DocumentRenderer.hrc:85 msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE" msgid "~Selection" -msgstr "" +msgstr "ส่วนที่เ~ลือก" #. HfsBP #: sd/inc/DocumentRenderer.hrc:90 msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE" msgid "All ~Pages" -msgstr "" +msgstr "ทุ~กหน้า" #. 7nrMB #: sd/inc/DocumentRenderer.hrc:91 msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE" msgid "~Pages:" -msgstr "" +msgstr "ห~น้า:" #. wvqvC #: sd/inc/DocumentRenderer.hrc:92 msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE" msgid "~Selection" -msgstr "" +msgstr "ส่วนที่เ~ลือก" #. wH3TZ msgctxt "stock" @@ -287,56 +281,48 @@ #. uvDNG #: sd/inc/errhdl.hrc:30 -#, fuzzy msgctxt "RID_SD_ERRHDL" msgid "File format error found at $(ARG1)(row,col)." -msgstr "File format error found at $(ARG1)(row,col)" +msgstr "พบข้อมูลแฟ้มผิดรูปแบบที่ $(ARG1)(แถว,คอลัมน์)" #. cXzDt #: sd/inc/errhdl.hrc:32 sd/inc/errhdl.hrc:34 -#, fuzzy msgctxt "RID_SD_ERRHDL" msgid "Format error discovered in the file in sub-document $(ARG1) at position $(ARG2)(row,col)." -msgstr "พบรูปแบบผิดพลาดในแฟ้มในเอกสารย่อย $(ARG1) ที่ $(ARG2)(แถว,คอลัมน์)" +msgstr "พบข้อมูลผิดรูปแบบในแฟ้มในเอกสารย่อย $(ARG1) ที่ตำแหน่ง $(ARG2)(แถว,คอลัมน์)" #. BA5TS #: sd/inc/family.hrc:29 -#, fuzzy msgctxt "RID_GRAPHICSTYLEFAMILY" msgid "All Styles" -msgstr "ลักษณะเซลล์" +msgstr "กระบวนแบบทั้งหมด" #. LgxjD #: sd/inc/family.hrc:30 -#, fuzzy msgctxt "RID_GRAPHICSTYLEFAMILY" msgid "Hidden Styles" msgstr "กระบวนแบบที่ซ่อนไว้" #. gfQvA #: sd/inc/family.hrc:31 -#, fuzzy msgctxt "RID_GRAPHICSTYLEFAMILY" msgid "Applied Styles" msgstr "กระบวนแบบที่ใช้" #. KY3qY #: sd/inc/family.hrc:32 -#, fuzzy msgctxt "RID_GRAPHICSTYLEFAMILY" msgid "Custom Styles" -msgstr "รูปแบบกำหนดเอง" +msgstr "กระบวนแบบกำหนดเอง" #. FcnEj #: sd/inc/family.hrc:38 -#, fuzzy msgctxt "RID_PRESENTATIONSTYLEFAMILY" msgid "All Styles" -msgstr "ลักษณะเซลล์" +msgstr "กระบวนแบบทั้งหมด" #. 6DEqj #: sd/inc/family.hrc:39 -#, fuzzy msgctxt "RID_PRESENTATIONSTYLEFAMILY" msgid "Hidden Styles" msgstr "กระบวนแบบที่ซ่อนไว้" @@ -345,19 +331,19 @@ #: sd/inc/pageformatpanel.hrc:24 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "None" -msgstr "" +msgstr "ไม่มี" #. eNMWm #: sd/inc/pageformatpanel.hrc:25 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "Narrow" -msgstr "" +msgstr "แคบ" #. MHtci #: sd/inc/pageformatpanel.hrc:26 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "Moderate" -msgstr "" +msgstr "ปานกลาง" #. BTaNb #. Normal (0.75") @@ -367,31 +353,31 @@ #: sd/inc/pageformatpanel.hrc:32 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "Normal (%1)" -msgstr "" +msgstr "ปกติ (%1)" #. DjCNK #: sd/inc/pageformatpanel.hrc:33 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "Wide" -msgstr "" +msgstr "กว้าง" #. J9o3y #: sd/inc/pageformatpanel.hrc:39 msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM" msgid "None" -msgstr "" +msgstr "ไม่มี" #. LxZSX #: sd/inc/pageformatpanel.hrc:40 msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM" msgid "Narrow" -msgstr "" +msgstr "แคบ" #. EDy4U #: sd/inc/pageformatpanel.hrc:41 msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM" msgid "Moderate" -msgstr "" +msgstr "ปานกลาง" #. tivfi #. Normal (1.9 cm) @@ -401,13 +387,13 @@ #: sd/inc/pageformatpanel.hrc:47 msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM" msgid "Normal (%1)" -msgstr "" +msgstr "ปกติ (%1)" #. oJfxD #: sd/inc/pageformatpanel.hrc:48 msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM" msgid "Wide" -msgstr "" +msgstr "กว้าง" #. ij5Ag #: sd/inc/strings.hrc:25 @@ -425,13 +411,13 @@ #: sd/inc/strings.hrc:27 msgctxt "STR_INSERTLAYER" msgid "Insert Layer" -msgstr "แทรกชั้น" +msgstr "แทรกชั้นงาน" #. 5GmYw #: sd/inc/strings.hrc:28 msgctxt "STR_MODIFYLAYER" msgid "Modify Layer" -msgstr "เปลี่นแปลงชั้น" +msgstr "เปลี่ยนแปลงชั้นงาน" #. aDABw #: sd/inc/strings.hrc:29 @@ -461,13 +447,13 @@ #: sd/inc/strings.hrc:33 msgctxt "STR_INSERTGRAPHIC" msgid "Insert Image" -msgstr "แทรกรูป" +msgstr "แทรกรูปภาพ" #. 47BGD #: sd/inc/strings.hrc:34 msgctxt "STR_UNDO_BEZCLOSE" msgid "Close Polygon" -msgstr "ปิดรูปหลายเหลี่ยม" +msgstr "ลากเส้นปิดรูปหลายเหลี่ยม" #. ARAxt #: sd/inc/strings.hrc:35 @@ -485,7 +471,7 @@ #: sd/inc/strings.hrc:37 msgctxt "STR_SLIDE_MASTER_MODE" msgid "Master Slide" -msgstr "" +msgstr "แม่แบบภาพนิ่ง" #. qBuHh #: sd/inc/strings.hrc:38 @@ -497,20 +483,19 @@ #: sd/inc/strings.hrc:39 msgctxt "STR_NOTES_MODE" msgid "Notes" -msgstr "บันทึก" +msgstr "บันทึกเสริม" #. NJEio #: sd/inc/strings.hrc:40 -#, fuzzy msgctxt "STR_NOTES_MASTER_MODE" msgid "Master Notes" -msgstr "หน้าต้นแบบ" +msgstr "แม่แบบบันทึกเสริม" #. tGt9g #: sd/inc/strings.hrc:41 msgctxt "STR_HANDOUT_MASTER_MODE" msgid "Master Handout" -msgstr "" +msgstr "แม่แบบเอกสารแจก" #. GtVe6 #: sd/inc/strings.hrc:42 @@ -534,125 +519,124 @@ #: sd/inc/strings.hrc:45 msgctxt "STR_AUTOLAYOUT_TITLE" msgid "Title Slide" -msgstr "ชื่อภาพนิ่ง" +msgstr "ภาพนิ่งนำเรื่อง" #. CZCWE #: sd/inc/strings.hrc:46 msgctxt "STR_AUTOLAYOUT_CONTENT" msgid "Title, Content" -msgstr "หัวเรื่อง, เนื้อหา" +msgstr "ชื่อเรื่อง, เนื้อหา" #. D2n4r #: sd/inc/strings.hrc:47 msgctxt "STR_AUTOLAYOUT_2CONTENT" msgid "Title and 2 Content" -msgstr "หัวเรื่องและ 2 เนื้อหา" +msgstr "ชื่อเรื่องและเนื้อหา 2 คอลัมน์" #. gJvEw #: sd/inc/strings.hrc:48 msgctxt "STR_AUTOLAYOUT_CONTENT_2CONTENT" msgid "Title, Content and 2 Content" -msgstr "หัวเรื่อง, เนื้อหาและ 2 เนื้อหา" +msgstr "ชื่อเรื่อง, เนื้อหา และเนื้อหา 2 แถว" #. BygEm #: sd/inc/strings.hrc:49 msgctxt "STR_AUTOLAYOUT_2CONTENT_CONTENT" msgid "Title, 2 Content and Content" -msgstr "หัวเรื่อง, 2 เนื้อหาและเนื้อหา" +msgstr "ชื่อเรื่อง, เนื้อหา 2 แถว และเนื้อหา" #. e3iAd #: sd/inc/strings.hrc:50 msgctxt "STR_AUTOLAYOUT_2CONTENT_OVER_CONTENT" msgid "Title, 2 Content over Content" -msgstr "หัวเรื่อง, 2 เนื้อหาเหนือเนื้อหา" +msgstr "ชื่อเรื่อง, เนื้อหา 2 คอลัมน์ บนเนื้อหา" #. D9Ra9 #: sd/inc/strings.hrc:51 msgctxt "STR_AUTOLAYOUT_CONTENT_OVER_CONTENT" msgid "Title, Content over Content" -msgstr "หัวเรื่อง, เนื้อหาเหนือเนื้อหา" +msgstr "ชื่อเรื่อง, เนื้อหา 2 แถว" #. jnnLj #: sd/inc/strings.hrc:52 msgctxt "STR_AUTOLAYOUT_4CONTENT" msgid "Title, 4 Content" -msgstr "หัวเรื่อง, 4 เนื้อหา" +msgstr "ชื่อเรื่อง, เนื้อหา 4 ช่อง" #. Bhnxh #: sd/inc/strings.hrc:53 msgctxt "STR_AUTOLAYOUT_6CONTENT" msgid "Title, 6 Content" -msgstr "หัวเรื่อง, 6 เนื้อหา" +msgstr "ชื่อเรื่อง, เนื้อหา 6 ช่อง" #. G9mLN #: sd/inc/strings.hrc:54 msgctxt "STR_AL_TITLE_VERT_OUTLINE" msgid "Title, Vertical Text" -msgstr "ชื่อ, ข้อความแนวตั้ง" +msgstr "ชื่อเรื่อง, ข้อความแนวตั้ง" #. GsGaq #: sd/inc/strings.hrc:55 msgctxt "STR_AL_TITLE_VERT_OUTLINE_CLIPART" msgid "Title, Vertical Text, Clipart" -msgstr "ชื่อ, ข้อความแนวตั้ง, คลิปอาร์ต" +msgstr "ชื่อเรื่อง, ข้อความแนวตั้ง, คลิปอาร์ต" #. QvDtk #: sd/inc/strings.hrc:56 msgctxt "STR_AL_VERT_TITLE_TEXT_CHART" msgid "Vertical Title, Text, Chart" -msgstr "ชื่อแนวตั้ง, ข้อความ, แผนภูมิ" +msgstr "ชื่อเรื่องแนวตั้ง, ข้อความ, แผนภูมิ" #. bEiKk #: sd/inc/strings.hrc:57 msgctxt "STR_AL_VERT_TITLE_VERT_OUTLINE" msgid "Vertical Title, Vertical Text" -msgstr "ชื่อแนวตั้ง, ข้อความแนวตั้ง" +msgstr "ชื่อเรื่องแนวตั้ง, ข้อความแนวตั้ง" #. CAeFA #: sd/inc/strings.hrc:58 msgctxt "STR_AUTOLAYOUT_HANDOUT1" msgid "One Slide" -msgstr "หนึ่งภาพนิ่ง" +msgstr "ภาพนิ่งเดียว" #. kGsfV #: sd/inc/strings.hrc:59 msgctxt "STR_AUTOLAYOUT_HANDOUT2" msgid "Two Slides" -msgstr "สองภาพนิ่ง" +msgstr "ภาพนิ่งสองหน้า" #. P3K6D #: sd/inc/strings.hrc:60 msgctxt "STR_AUTOLAYOUT_HANDOUT3" msgid "Three Slides" -msgstr "สามภาพนิ่ง" +msgstr "ภาพนิ่งสามหน้า" #. eMsDY #: sd/inc/strings.hrc:61 msgctxt "STR_AUTOLAYOUT_HANDOUT4" msgid "Four Slides" -msgstr "สี่ภาพนิ่ง" +msgstr "ภาพนิ่งสี่หน้า" #. 69B5i #: sd/inc/strings.hrc:62 msgctxt "STR_AUTOLAYOUT_HANDOUT6" msgid "Six Slides" -msgstr "หกภาพนิ่ง" +msgstr "ภาพนิ่งหกหน้า" #. FeJFF #: sd/inc/strings.hrc:63 msgctxt "STR_AUTOLAYOUT_HANDOUT9" msgid "Nine Slides" -msgstr "เก้าภาพนิ่ง" +msgstr "ภาพนิ่งเก้าหน้า" #. khJZE #: sd/inc/strings.hrc:64 msgctxt "STR_AUTOLAYOUT_NOTES" msgid "Notes" -msgstr "บันทึก" +msgstr "บันทึกเสริม" #. 4sRi2 #: sd/inc/strings.hrc:65 -#, fuzzy msgctxt "STR_TRANSFORM" msgid "Transform" msgstr "แปลง" @@ -667,7 +651,7 @@ #: sd/inc/strings.hrc:67 msgctxt "STR_DESC_LINEEND" msgid "Please enter a name for the new arrow style:" -msgstr "" +msgstr "กรุณาป้อนชื่อของหัวลูกศรรูปแบบใหม่:" #. 7y2Si #: sd/inc/strings.hrc:68 @@ -676,8 +660,8 @@ "The name chosen already exists. \n" "Please enter another name." msgstr "" -"มีชื่อที่เลือกอยู่แล้ว \n" -"กรุณาใส่ชื่ออื่น" +"ชื่อที่ตั้งมีการใช้อยู่ก่อนแล้ว\n" +"กรุณาป้อนชื่ออื่น" #. arAaK #: sd/inc/strings.hrc:69 @@ -689,13 +673,13 @@ #: sd/inc/strings.hrc:70 msgctxt "STR_UNDO_COPYOBJECTS" msgid "Duplicate" -msgstr "ทำำสำเนา" +msgstr "ทำสำเนา" #. NaQdx #: sd/inc/strings.hrc:71 msgctxt "STR_TITLE_NAMEGROUP" msgid "Name Object" -msgstr "ชื่อวัตถุ" +msgstr "ตั้งชื่อวัตถุ" #. hBgQg #: sd/inc/strings.hrc:72 @@ -707,49 +691,49 @@ #: sd/inc/strings.hrc:73 msgctxt "STR_WARN_PAGE_EXISTS" msgid "The slide name already exists or is invalid. Please enter another name." -msgstr "มีชื่อภาพนิ่งอยู่แล้วหรือชื่อไม่ถูกต้อง กรุณาใส่ชื่ออื่น" +msgstr "ชื่อภาพนิ่งมีการใช้อยู่ก่อนแล้วหรือชื่ออาจไม่ถูกต้อง กรุณาป้อนชื่ออื่น" #. P4bHX #: sd/inc/strings.hrc:74 msgctxt "STR_WARN_PAGE_EXISTS_DRAW" msgid "The page name already exists or is invalid. Please enter another name." -msgstr "" +msgstr "ชื่อหน้ามีการใช้อยู่ก่อนแล้วหรือชื่ออาจไม่ถูกต้อง กรุณาป้อนชื่ออื่น" #. ryfEt #: sd/inc/strings.hrc:75 msgctxt "STR_SNAPDLG_SETLINE" msgid "Edit Snap Line" -msgstr "แก้ไขเส้นประกบ" +msgstr "แก้ไขเส้นดูดติด" #. 3c3Hh #: sd/inc/strings.hrc:76 msgctxt "STR_SNAPDLG_SETPOINT" msgid "Edit Snap Point" -msgstr "แก้ไขจุดประกบ" +msgstr "แก้ไขจุดดูดติด" #. FWWHm #: sd/inc/strings.hrc:77 msgctxt "STR_POPUP_EDIT_SNAPLINE" msgid "Edit Snap Line..." -msgstr "แก้ไขเส้นประกบ..." +msgstr "แก้ไขเส้นดูดติด..." #. njFAd #: sd/inc/strings.hrc:78 msgctxt "STR_POPUP_EDIT_SNAPPOINT" msgid "Edit Snap Point..." -msgstr "แก้ไขจุดประกบ..." +msgstr "แก้ไขจุดดูดติด..." #. UwBFu #: sd/inc/strings.hrc:79 msgctxt "STR_POPUP_DELETE_SNAPLINE" msgid "Delete Snap Line" -msgstr "ลบเส้นประกบ" +msgstr "ลบเส้นดูดติด" #. BBU6u #: sd/inc/strings.hrc:80 msgctxt "STR_POPUP_DELETE_SNAPPOINT" msgid "Delete Snap Point" -msgstr "ลบจุดประกบ" +msgstr "ลบจุดดูดติด" #. BmRfY #: sd/inc/strings.hrc:81 @@ -761,7 +745,7 @@ #: sd/inc/strings.hrc:82 msgctxt "STR_LAYER" msgid "Layer" -msgstr "ชั้น" +msgstr "ชั้นงาน" #. Lwrnm #: sd/inc/strings.hrc:83 @@ -773,7 +757,7 @@ #: sd/inc/strings.hrc:84 msgctxt "STR_UNDO_DELETEPAGES_DRAW" msgid "Delete pages" -msgstr "" +msgstr "ลบหน้า" #. EQUBZ #: sd/inc/strings.hrc:85 @@ -788,24 +772,26 @@ "Are you sure you want to delete the layer \"$\"?\n" "Note: All objects on this layer will be deleted!" msgstr "" +"ยืนยันหรือไม่ว่าจะลบชั้นงาน \"$\"?\n" +"หมายเหตุ: วัตถุในชั้นงานนี้จะถูกลบทิ้งทั้งหมด!" #. EcYBg #: sd/inc/strings.hrc:87 msgctxt "STR_ASK_DELETE_ALL_PICTURES" msgid "Do you really want to delete all images?" -msgstr "คุณต้องการลบภาพทั้งหมดหรือไม่?" +msgstr "คุณต้องการลบรูปภาพทั้งหมดจริงๆ ใช่ไหม?" #. 43diA #: sd/inc/strings.hrc:88 msgctxt "STR_UNDO_CHANGE_TITLE_AND_LAYOUT" msgid "Modify title and outline" -msgstr "เปลี่ยนแปลงชื่อและเค้าโครง" +msgstr "เปลี่ยนแปลงชื่อเรื่องและเค้าโครง" #. 6zCeF #: sd/inc/strings.hrc:89 msgctxt "STR_WAV_FILE" msgid "Audio" -msgstr "" +msgstr "เสียง" #. EtkBb #: sd/inc/strings.hrc:90 @@ -817,25 +803,25 @@ #: sd/inc/strings.hrc:91 msgctxt "STR_AU_FILE" msgid "Sun/NeXT Audio" -msgstr "Sun/NeXT Audio" +msgstr "เสียงแบบ Sun/NeXT" #. BySwC #: sd/inc/strings.hrc:92 msgctxt "STR_VOC_FILE" msgid "Creative Labs Audio" -msgstr "Creative Labs Audio" +msgstr "เสียงแบบ Creative Labs" #. CVtFB #: sd/inc/strings.hrc:93 msgctxt "STR_AIFF_FILE" msgid "Apple/SGI Audio" -msgstr "Apple/SGI Audio" +msgstr "เสียงแบบ Apple/SGI" #. qBF5W #: sd/inc/strings.hrc:94 msgctxt "STR_SVX_FILE" msgid "Amiga SVX Audio" -msgstr "Amiga SVX Audio" +msgstr "เสียงแบบ Amiga SVX" #. x7GnC #: sd/inc/strings.hrc:95 @@ -847,25 +833,25 @@ #: sd/inc/strings.hrc:96 msgctxt "STR_SD_PAGE_COUNT" msgid "Slide %1 of %2" -msgstr "" +msgstr "ภาพนิ่ง %1 จาก %2" #. NakLD #: sd/inc/strings.hrc:97 msgctxt "STR_SD_PAGE_COUNT_CUSTOM" msgid "Slide %1 of %2 (%3)" -msgstr "" +msgstr "ภาพนิ่ง %1 จาก %2 (%3)" #. WsRvh #: sd/inc/strings.hrc:98 msgctxt "STR_ALL_SUPPORTED_FORMATS" msgid "All supported formats" -msgstr "" +msgstr "รูปแบบทั้งหมดที่รองรับ" #. F8m2G #: sd/inc/strings.hrc:99 msgctxt "STR_ALL_FILES" msgid "All files" -msgstr "แฟ้มทั้งหมด" +msgstr "ทุกแฟ้ม" #. jgmq4 #: sd/inc/strings.hrc:100 @@ -880,7 +866,7 @@ "This function cannot be run \n" "with the selected objects." msgstr "" -"ไม่สามารถเรียกใช้งานฟังก์ชันนี้ได้ \n" +"ไม่สามารถเรียกทำงานฟังก์ชันนี้ได้\n" "ด้วยวัตถุที่เลือก" #. Sfjvn @@ -893,7 +879,7 @@ #: sd/inc/strings.hrc:103 msgctxt "STR_READ_DATA_ERROR" msgid "The file could not be loaded!" -msgstr "ไม่สามารถเรียกแฟ้มได้!" +msgstr "ไม่สามารถโหลดแฟ้มได้!" #. 8CYyq #: sd/inc/strings.hrc:104 @@ -903,16 +889,18 @@ "\n" "Do you want to scale the copied objects to fit the new page size?" msgstr "" +"ขนาดของหน้าของเอกสารปลายทางต่างจากเอกสารต้นทาง\n" +"\n" +"คุณต้องการย่อ/ขยายวัตถุที่คัดลอกให้พอดีกับขนาดของหน้าใหม่หรือไม่??" #. YC4AD #: sd/inc/strings.hrc:105 msgctxt "STR_SCALE_TOOLTIP" msgid "Scaling factor of the document; right-click to change." -msgstr "" +msgstr "อัตราการย่อ/ขยายของเอกสาร; คลิกขวาเพื่อเปลี่ยน" #. NzFb7 #: sd/inc/strings.hrc:106 -#, fuzzy msgctxt "STR_CREATE_PAGES" msgid "Create Slides" msgstr "สร้างภาพนิ่ง" @@ -921,24 +909,22 @@ #: sd/inc/strings.hrc:107 msgctxt "STR_UNDO_CHANGE_PAGEFORMAT" msgid "Modify page format" -msgstr "เปลี่ยนแปลงรูปแบบหน้ากระดาษ" +msgstr "เปลี่ยนแปลงรูปแบบหน้า" #. FDTtA #: sd/inc/strings.hrc:108 msgctxt "STR_UNDO_CHANGE_PAGEBORDER" msgid "Modify page margins" -msgstr "เปลี่ยนแปลงระยะขอบหน้ากระดาษ" +msgstr "เปลี่ยนแปลงระยะขอบของหน้า" #. H6ceS #: sd/inc/strings.hrc:109 -#, fuzzy msgctxt "STR_EDIT_OBJ" msgid "~Edit" msgstr "แ~ก้ไข" #. 3ikze #: sd/inc/strings.hrc:110 -#, fuzzy msgctxt "STR_DELETE_PAGES" msgid "Delete Slides" msgstr "ลบภาพนิ่ง" @@ -947,47 +933,43 @@ #: sd/inc/strings.hrc:111 msgctxt "STR_WARN_PRINTFORMAT_FAILURE" msgid "The document format could not be set on the specified printer." -msgstr "ไม่สามารถกำหนดรูปแบบเอกสารในการระบุเครื่องพิมพ์ได้" +msgstr "ไม่สามารถกำหนดรูปแบบเอกสารในเครื่องพิมพ์ที่ระบุได้" #. s6Pco #: sd/inc/strings.hrc:112 -#, fuzzy msgctxt "STR_IMPORT_GRFILTER_OPENERROR" msgid "Image file cannot be opened" -msgstr "ไม่สามารถเปิดแฟ้มกราฟิกส์ได้" +msgstr "ไม่สามารถเปิดแฟ้มรูปภาพได้" #. PKXVG #: sd/inc/strings.hrc:113 -#, fuzzy msgctxt "STR_IMPORT_GRFILTER_IOERROR" msgid "Image file cannot be read" -msgstr "ไม่สามารถอ่านแฟ้มกราฟิกส์ได้" +msgstr "ไม่สามารถอ่านแฟ้มรูปภาพได้" #. Wnx5i #: sd/inc/strings.hrc:114 msgctxt "STR_IMPORT_GRFILTER_FORMATERROR" msgid "Unknown image format" -msgstr "" +msgstr "ไม่รู้จักรูปแบบของรูปภาพ" #. GH2S7 #: sd/inc/strings.hrc:115 -#, fuzzy msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR" msgid "This image file version is not supported" -msgstr "ไม่สนับสนุนรุ่นของแฟ้มรูปนี้" +msgstr "ไม่รองรับแฟ้มรูปภาพรุ่นนี้" #. uqpAS #: sd/inc/strings.hrc:116 msgctxt "STR_IMPORT_GRFILTER_FILTERERROR" msgid "Image filter not found" -msgstr "" +msgstr "ไม่พบตัวกรองรูปภาพ" #. qdeHG #: sd/inc/strings.hrc:117 -#, fuzzy msgctxt "STR_IMPORT_GRFILTER_TOOBIG" msgid "Not enough memory to import image" -msgstr "หน่วยความจำไม่เพียงพอสำหรับการนำเข้ากราฟิกส์" +msgstr "หน่วยความจำไม่พอสำหรับนำเข้ารูปภาพ" #. BdsAg #: sd/inc/strings.hrc:118 @@ -999,25 +981,25 @@ #: sd/inc/strings.hrc:119 msgctxt "STR_END_SPELLING" msgid "Spellcheck of entire document has been completed." -msgstr "ตรวจตัวสะกดเอกสารทั้งหมดสมบูรณ์แล้ว" +msgstr "ตรวจการสะกดคำทั้งเอกสารเสร็จสมบูรณ์แล้ว" #. gefTJ #: sd/inc/strings.hrc:120 msgctxt "STR_END_SPELLING_OBJ" msgid "The spellcheck for the selected objects has been completed." -msgstr "ตรวจตัวสะกดสำหรับวัตถุที่เลือกสมบูรณ์แล้ว" +msgstr "ตรวจการสะกดคำสำหรับวัตถุที่เลือกเสร็จสมบูรณ์แล้ว" #. aeQeS #: sd/inc/strings.hrc:121 msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER" msgid "Convert selected object to curve?" -msgstr "แปลงวัตถุที่เลือกเป็นเส้นโค้งหรือไม่?" +msgstr "แปลงรูปแบบวัตถุที่เลือกเป็นเส้นโค้งหรือไม่?" #. wLsLp #: sd/inc/strings.hrc:122 msgctxt "STR_UNDO_CHANGE_PRES_OBJECT" msgid "Modify presentation object '$'" -msgstr "เปลี่ยนแปลงวัตถุการนำเสนอ '$'" +msgstr "เปลี่ยนแปลงวัตถุงานนำเสนอ '$'" #. s8VC9 #: sd/inc/strings.hrc:123 @@ -1029,7 +1011,7 @@ #: sd/inc/strings.hrc:124 msgctxt "STR_UNDO_MODIFY_PAGE_DRAW" msgid "Page layout" -msgstr "" +msgstr "เค้าโครงหน้า" #. BFzyf #: sd/inc/strings.hrc:125 @@ -1074,8 +1056,8 @@ "The specified scale is invalid.\n" "Do you want to enter a new one?" msgstr "" -"สัดส่วนที่ระบุไม่ถูกต้อง\n" -"คุณต้องการใส่สัดส่วนใหม่หรือไม่?" +"อัตราย่อ/ขยายที่ระบุไม่ถูกต้อง\n" +"คุณต้องการป้อนค่าใหม่หรือไม่?" #. aZBvQ #: sd/inc/strings.hrc:132 @@ -1087,43 +1069,43 @@ #: sd/inc/strings.hrc:133 msgctxt "STR_CLICK_ACTION_PREVPAGE" msgid "Go to previous slide" -msgstr "ไปยังภาพนิ่งก่อนหน้า" +msgstr "ไปที่ภาพนิ่งที่แล้ว" #. MafdG #: sd/inc/strings.hrc:134 msgctxt "STR_CLICK_ACTION_NEXTPAGE" msgid "Go to next slide" -msgstr "ไปยังภาพนิ่งถัดไป" +msgstr "ไปที่ภาพนิ่งถัดไป" #. s5NSC #: sd/inc/strings.hrc:135 msgctxt "STR_CLICK_ACTION_FIRSTPAGE" msgid "Go to first slide" -msgstr "ไปยังภาพนิ่งแรก" +msgstr "ไปที่ภาพนิ่งแรก" #. 6orJ5 #: sd/inc/strings.hrc:136 msgctxt "STR_CLICK_ACTION_LASTPAGE" msgid "Go to last slide" -msgstr "ไปยังภาพนิ่งสุดท้าย" +msgstr "ไปที่ภาพนิ่งสุดท้าย" #. ddBWz #: sd/inc/strings.hrc:137 msgctxt "STR_CLICK_ACTION_BOOKMARK" msgid "Go to page or object" -msgstr "ไปยังหน้าหรือวัตถุ" +msgstr "ไปที่หน้าหรือวัตถุ" #. TMn3K #: sd/inc/strings.hrc:138 msgctxt "STR_CLICK_ACTION_DOCUMENT" msgid "Go to document" -msgstr "ไปยังเอกสาร" +msgstr "ไปที่เอกสาร" #. 3h9F4 #: sd/inc/strings.hrc:139 msgctxt "STR_CLICK_ACTION_SOUND" msgid "Play audio" -msgstr "" +msgstr "เล่นเสียง" #. FtLYt #: sd/inc/strings.hrc:140 @@ -1135,13 +1117,13 @@ #: sd/inc/strings.hrc:141 msgctxt "STR_CLICK_ACTION_PROGRAM" msgid "Run program" -msgstr "เรียกใช้งานโปรแกรม" +msgstr "เรียกทำงานโปรแกรม" #. CZRYF #: sd/inc/strings.hrc:142 msgctxt "STR_CLICK_ACTION_MACRO" msgid "Run macro" -msgstr "เรียกใช้งานแมโคร" +msgstr "เรียกทำงานแมโคร" #. HqCxG #: sd/inc/strings.hrc:143 @@ -1153,7 +1135,7 @@ #: sd/inc/strings.hrc:144 msgctxt "STR_EFFECTDLG_JUMP" msgid "Target" -msgstr "เป้าหมาย" +msgstr "ปลายทาง" #. TCCEB #: sd/inc/strings.hrc:145 @@ -1165,7 +1147,7 @@ #: sd/inc/strings.hrc:146 msgctxt "STR_EFFECTDLG_SOUND" msgid "Audio" -msgstr "" +msgstr "เสียง" #. QPjoC #: sd/inc/strings.hrc:147 @@ -1195,7 +1177,7 @@ #: sd/inc/strings.hrc:151 msgctxt "STR_FULLSCREEN_SLIDESHOW" msgid "Presenting: %s" -msgstr "" +msgstr "กำลังนำเสนอ: %s" #. uo4o3 #. To translators: this is the spinbutton in the slidesorter toolbar to set the number of slides to show per row @@ -1203,7 +1185,7 @@ msgctxt "STR_SLIDES" msgid "%1 slide" msgid_plural "%1 slides" -msgstr[0] "" +msgstr[0] "%1 หน้า" #. DhF9g #. Strings for animation effects @@ -1216,13 +1198,13 @@ #: sd/inc/strings.hrc:158 msgctxt "STR_LOAD_PRESENTATION_LAYOUT" msgid "Load Master Slide" -msgstr "" +msgstr "โหลดแม่แบบภาพนิ่ง" #. HxEp8 #: sd/inc/strings.hrc:159 msgctxt "STR_GLUE_ESCDIR_SMART" msgid "Smart" -msgstr "สมาร์ท" +msgstr "รู้เอง" #. XUxUz #: sd/inc/strings.hrc:160 @@ -1252,25 +1234,25 @@ #: sd/inc/strings.hrc:164 msgctxt "STR_GLUE_ESCDIR_LO" msgid "Top Left?" -msgstr "ด้านบนซ้าย?" +msgstr "บนซ้าย?" #. vc2Yo #: sd/inc/strings.hrc:165 msgctxt "STR_GLUE_ESCDIR_LU" msgid "Bottom Left?" -msgstr "ด้านล่างซ้าย?" +msgstr "ล่างซ้าย?" #. MMimZ #: sd/inc/strings.hrc:166 msgctxt "STR_GLUE_ESCDIR_RO" msgid "Top Right?" -msgstr "ด้านบนขวา?" +msgstr "บนขวา?" #. FvbbG #: sd/inc/strings.hrc:167 msgctxt "STR_GLUE_ESCDIR_RU" msgid "Bottom Right?" -msgstr "ด้านล่างขวา?" +msgstr "ล่างขวา?" #. G6VnG #: sd/inc/strings.hrc:168 @@ -1294,19 +1276,19 @@ #: sd/inc/strings.hrc:171 msgctxt "STR_CANT_PERFORM_IN_LIVEMODE" msgid "This action can't be run in the live mode." -msgstr "ไม่สามารถเรียกใช้การกระทำนี้ในโหมดที่ใช้อยู่" +msgstr "การกระทำนี้ไม่สามารถทำงานได้ในโหมดเล่นสด" #. oLTpq #: sd/inc/strings.hrc:172 msgctxt "STR_PUBLISH_BACK" msgid "Back" -msgstr "กลับ" +msgstr "ถอยกลับ" #. tDRYt #: sd/inc/strings.hrc:173 msgctxt "STR_PUBLISH_NEXT" msgid "Continue" -msgstr "ทำต่อ" +msgstr "ต่อไป" #. zh6Ad #: sd/inc/strings.hrc:174 @@ -1324,19 +1306,19 @@ #: sd/inc/strings.hrc:176 msgctxt "STR_UNDO_MORPHING" msgid "Cross-fading" -msgstr "ลู่ขวาง" +msgstr "กลายรูปร่าง" #. PaTdN #: sd/inc/strings.hrc:177 msgctxt "STR_UNDO_EXPAND_PAGE" msgid "Expand Slide" -msgstr "ขยายภาพนิ่ง" +msgstr "กระจายหัวข้อภาพนิ่ง" #. kmkAp #: sd/inc/strings.hrc:178 msgctxt "STR_UNDO_SUMMARY_PAGE" msgid "Table of Contents Slide" -msgstr "ภาพนิ่งเนื้อหาตาราง" +msgstr "ภาพนิ่งสารบัญ" #. m5tvp #: sd/inc/strings.hrc:179 @@ -1360,7 +1342,7 @@ #: sd/inc/strings.hrc:182 msgctxt "STR_VAR" msgid "Variable" -msgstr "ตัวแปร" +msgstr "ไม่คงที่" #. eDfmL #: sd/inc/strings.hrc:183 @@ -1390,13 +1372,13 @@ #: sd/inc/strings.hrc:187 msgctxt "STR_FILEFORMAT_FULLPATH" msgid "Path/File name" -msgstr "ชื่อเส้นทางที่เก็บไฟล์/ไฟล์" +msgstr "ชื่อพาธ/แฟ้ม" #. cZzcW #: sd/inc/strings.hrc:188 msgctxt "STR_FILEFORMAT_PATH" msgid "Path" -msgstr "เส้นทางที่เก็บไฟล์" +msgstr "พาธ" #. spGHx #: sd/inc/strings.hrc:189 @@ -1408,7 +1390,7 @@ #: sd/inc/strings.hrc:190 msgctxt "STR_NEW_CUSTOMSHOW" msgid "New Custom Slide Show" -msgstr "การแสดงภาพนิ่งกำหนดเองใหม่" +msgstr "รายการแสดงภาพนิ่งใหม่แบบกำหนดเอง" #. FDwKp #: sd/inc/strings.hrc:191 @@ -1420,37 +1402,37 @@ #: sd/inc/strings.hrc:192 msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60" msgid "%PRODUCTNAME Presentation format (Impress 6)" -msgstr "" +msgstr "รูปแบบงานนำเสนอของ %PRODUCTNAME (Impress 6)" #. rxDQB #: sd/inc/strings.hrc:193 msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60" msgid "%PRODUCTNAME Drawing format (Draw 6)" -msgstr "" +msgstr "รูปแบบงานวาดของ %PRODUCTNAME (Draw 6)" #. 9G2Ea #: sd/inc/strings.hrc:194 msgctxt "STR_BREAK_METAFILE" msgid "Ungroup Metafile(s)..." -msgstr "ไม่จัดกลุ่มเมตาไฟล์..." +msgstr "แยกกลุ่มเมตาไฟล์..." #. hACxz #: sd/inc/strings.hrc:195 msgctxt "STR_BREAK_FAIL" msgid "It was not possible to ungroup all drawing objects." -msgstr "มันเป็นไปไม่ได้ที่จะจัดกลุ่มวัตถุวาดรูปทั้งหมด" +msgstr "เป็นไปไม่ได้ที่จะแยกกลุ่มวัตถุงานวาดทั้งหมด" #. zjsSM #: sd/inc/strings.hrc:196 msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80" msgid "%PRODUCTNAME %PRODUCTVERSION Presentation" -msgstr "" +msgstr "งานนำเสนอของ %PRODUCTNAME %PRODUCTVERSION" #. BJiWE #: sd/inc/strings.hrc:197 msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_80" msgid "%PRODUCTNAME %PRODUCTVERSION Drawing" -msgstr "" +msgstr "งานวาดของ %PRODUCTNAME %PRODUCTVERSION" #. GhvSg #. HtmlExport @@ -1460,7 +1442,7 @@ "A design already exists with this name.\n" "Do you want to replace it?" msgstr "" -"ชื่อการออกแบบมีอยู่แล้ว\n" +"มีงานออกแบบที่ใช้ชื่อนี้อยู่ก่อนแล้ว\n" "คุณต้องการแทนที่หรือไม่?" #. bnA2v @@ -1473,25 +1455,25 @@ #: sd/inc/strings.hrc:202 msgctxt "STR_HTMLATTR_LINK" msgid "Hyperlink" -msgstr "เชื่อมโยงพิเศษ" +msgstr "ไฮเพอร์ลิงก์" #. GAFdD #: sd/inc/strings.hrc:203 msgctxt "STR_HTMLATTR_VLINK" msgid "Visited link" -msgstr "เยี่ยมชมการเชื่อมโยง" +msgstr "ลิงก์ที่ชมแล้ว" #. TceZ2 #: sd/inc/strings.hrc:204 msgctxt "STR_HTMLATTR_ALINK" msgid "Active link" -msgstr "การเชื่อมโยงที่ใช้งานอยู่" +msgstr "ลิงก์ที่คลิกได้" #. XULM8 #: sd/inc/strings.hrc:205 msgctxt "STR_HTMLEXP_NOTES" msgid "Notes" -msgstr "บันทึก" +msgstr "บันทึกเสริม" #. XFffn #: sd/inc/strings.hrc:206 @@ -1515,7 +1497,7 @@ #: sd/inc/strings.hrc:209 msgctxt "STR_HTMLEXP_EMAIL" msgid "Email" -msgstr "" +msgstr "อีเมล" #. pArSC #: sd/inc/strings.hrc:210 @@ -1533,13 +1515,13 @@ #: sd/inc/strings.hrc:212 msgctxt "STR_HTMLEXP_DOWNLOAD" msgid "Download presentation" -msgstr "ดาวน์โหลดการนำเสนอ" +msgstr "ดาวน์โหลดงานนำเสนอ" #. 22D9n #: sd/inc/strings.hrc:213 msgctxt "STR_HTMLEXP_NOFRAMES" msgid "Unfortunately your browser does not support floating frames." -msgstr "โชคไม่ดีที่เบร้าเซอร์ของคุณไม่สนับสนุนกรอบลอย" +msgstr "น่าเสียดายที่เบราว์เซอร์ของคุณไม่รองรับกรอบลอย" #. x7CBF #: sd/inc/strings.hrc:214 @@ -1569,25 +1551,25 @@ #: sd/inc/strings.hrc:218 msgctxt "STR_HTMLEXP_OUTLINE" msgid "With contents" -msgstr "ด้วยเนื้อหา" +msgstr "พร้อมสารบัญ" #. 6bNhQ #: sd/inc/strings.hrc:219 msgctxt "STR_HTMLEXP_NOOUTLINE" msgid "Without contents" -msgstr "ไม่มีเนื้อหา" +msgstr "ไม่มีสารบัญ" #. cWcCG #: sd/inc/strings.hrc:220 msgctxt "STR_WEBVIEW_SAVE" msgid "To given page" -msgstr "หน้าที่ให้มา" +msgstr "ไปหน้าที่กำหนด" #. xG6qd #: sd/inc/strings.hrc:221 msgctxt "STR_UNDO_VECTORIZE" msgid "Convert bitmap to polygon" -msgstr "แปลงบิตแมปไปเป็นรูปหลายเหลี่ยม" +msgstr "แปลงบิตแมปเป็นรูปหลายเหลี่ยม" #. ENANv #: sd/inc/strings.hrc:222 @@ -1599,30 +1581,29 @@ #: sd/inc/strings.hrc:223 msgctxt "STR_PRES_PAUSE" msgid "Pause..." -msgstr "หยุดชั่วคราว..." +msgstr "พัก..." #. wXCu2 #: sd/inc/strings.hrc:224 msgctxt "STR_UNDO_APPLY_3D_FAVOURITE" msgid "Apply 3D favorite" -msgstr "ใช้ 3 มิติ ที่ชื่นชอบ" +msgstr "ใช้ลูกเล่น 3 มิติที่เลือก" #. bACAt #: sd/inc/strings.hrc:225 msgctxt "STR_UNDO_GRAFFILTER" msgid "Image filter" -msgstr "" +msgstr "ใช้ตัวกรองรูปภาพ" #. AGE8e #: sd/inc/strings.hrc:226 -#, fuzzy msgctxt "STR_WARNING_NOSOUNDFILE" msgid "" "The file %\n" "is not a valid audio file !" msgstr "" "แฟ้ม %\n" -"เป็นแฟ้มเสียงที่ใช้ไม่ได้" +"ไม่ใช่แฟ้มเสียงที่ใช้การได้!" #. SRWpo #: sd/inc/strings.hrc:227 @@ -1658,7 +1639,7 @@ #: sd/inc/strings.hrc:232 msgctxt "STR_STATUSBAR_MASTERPAGE" msgid "Slide Master name. Right-click for list or click for dialog." -msgstr "" +msgstr "ชื่อแม่แบบภาพนิ่ง คลิกขวาเพื่อดูรายชื่อ หรือคลิกเพื่อใช้กล่องโต้ตอบ" #. HcDvJ #: sd/inc/strings.hrc:233 @@ -1670,13 +1651,13 @@ #: sd/inc/strings.hrc:234 msgctxt "STR_TITLE_RENAMEPAGE" msgid "Rename Page" -msgstr "" +msgstr "เปลี่ยนชื่อหน้า" #. rBmcL #: sd/inc/strings.hrc:235 msgctxt "STR_TOOLTIP_RENAME" msgid "Duplicate or empty names are not possible" -msgstr "" +msgstr "ห้ามใช้ชื่อซ้ำหรือชื่อว่างเปล่า" #. FUm5F #: sd/inc/strings.hrc:236 @@ -1688,19 +1669,19 @@ #: sd/inc/strings.hrc:237 msgctxt "STR_TITLE_RENAMEMASTER" msgid "Rename Master Slide" -msgstr "" +msgstr "เปลี่ยนชื่อแม่แบบภาพนิ่ง" #. rWiXQ #: sd/inc/strings.hrc:238 msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE" msgid "Title Area for AutoLayouts" -msgstr "พื้นทีของชื่อเรื่องสำหรับการจัดโครงร่างโดยอัตโนมัติหรือ AutoLayouts" +msgstr "พื้นที่ของชื่อเรื่องสำหรับการจัดผังวางอัตโนมัติ" #. i4T9w #: sd/inc/strings.hrc:239 msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE" msgid "Object Area for AutoLayouts" -msgstr "Object Area for AutoLayouts" +msgstr "พื้นที่ของวัตถุสำหรับการจัดผังวางอัตโนมัติ" #. vS6wi #: sd/inc/strings.hrc:240 @@ -1718,19 +1699,19 @@ #: sd/inc/strings.hrc:242 msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME" msgid "Date Area" -msgstr "Date Area" +msgstr "พื้นที่วันที่" #. oNFN3 #: sd/inc/strings.hrc:243 msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE" msgid "Slide Number Area" -msgstr "Slide Number Area" +msgstr "พื้นที่หมายเลขภาพนิ่ง" #. GisCz #: sd/inc/strings.hrc:244 msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER" msgid "Page Number Area" -msgstr "Page Number Area" +msgstr "พื้นที่หมายเลขหน้า" #. rvtjX #: sd/inc/strings.hrc:245 @@ -1754,31 +1735,31 @@ #: sd/inc/strings.hrc:248 msgctxt "STR_FIELD_PLACEHOLDER_NUMBER" msgid "" -msgstr "<ตัวเลข>" +msgstr "<หมายเลข>" #. CCuCb #: sd/inc/strings.hrc:249 msgctxt "STR_FIELD_PLACEHOLDER_COUNT" msgid "" -msgstr "<นับ>" +msgstr "<จำนวน>" #. TDgFU #: sd/inc/strings.hrc:250 msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME" msgid "" -msgstr "" +msgstr "<ชื่อภาพนิ่ง>" #. j8btB #: sd/inc/strings.hrc:251 msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME" msgid "" -msgstr "" +msgstr "<ชื่อหน้า>" #. ao6iR #: sd/inc/strings.hrc:252 msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES" msgid "Notes Area" -msgstr "พื้นที่บันทึก" +msgstr "พื้นที่บันทึกเสริม" #. EEf4k #: sd/inc/strings.hrc:253 @@ -1820,32 +1801,31 @@ #: sd/inc/strings.hrc:259 msgctxt "STR_GRAPHICS_STYLE_FAMILY" msgid "Drawing Styles" -msgstr "" +msgstr "กระบวนแบบงานวาด" #. tR4CL #: sd/inc/strings.hrc:260 -#, fuzzy msgctxt "STR_PRESENTATIONS_STYLE_FAMILY" msgid "Presentation Styles" -msgstr "PresentationTitle" +msgstr "กระบวนแบบงานนำเสนอ" #. oyUYa #: sd/inc/strings.hrc:261 msgctxt "STR_CELL_STYLE_FAMILY" msgid "Cell Styles" -msgstr "ลักษณะเซลล์" +msgstr "กระบวนแบบเซลล์" #. BQmNo #: sd/inc/strings.hrc:262 msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME" msgid "Shape %1" -msgstr "รูปทรง %1" +msgstr "รูปร่าง %1" #. 94JFw #: sd/inc/strings.hrc:263 msgctxt "STR_SET_BACKGROUND_PICTURE" msgid "Set Background Image" -msgstr "" +msgstr "กำหนดภาพพื้นหลัง" #. ibpDR #: sd/inc/strings.hrc:264 @@ -1857,13 +1837,13 @@ #: sd/inc/strings.hrc:265 msgctxt "STR_RESET_LAYOUT" msgid "Reset Slide Layout" -msgstr "ตั้งค่ากลับเค้าโครงภาพนิ่ง" +msgstr "ล้างค่าเค้าโครงภาพนิ่ง" #. EB6XY #: sd/inc/strings.hrc:266 msgctxt "STR_INSERT_TABLE" msgid "Insert Table" -msgstr "แทรกแฟ้ม" +msgstr "แทรกตาราง" #. koDfS #: sd/inc/strings.hrc:267 @@ -1875,7 +1855,7 @@ #: sd/inc/strings.hrc:268 msgctxt "STR_INSERT_PICTURE" msgid "Insert Image" -msgstr "แทรกรูป" +msgstr "แทรกรูปภาพ" #. iBBLh #: sd/inc/strings.hrc:269 @@ -1899,21 +1879,19 @@ #: sd/inc/strings.hrc:272 msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING" msgid "Please add Images to the Album." -msgstr "" +msgstr "กรุณาเพิ่มรูปภาพลงในอัลบั้ม" #. jbPEH #: sd/inc/strings.hrc:273 -#, fuzzy msgctxt "STR_PHOTO_ALBUM_TEXTBOX" msgid "Text Slide" -msgstr "ภาพนิ่งถัดไป" +msgstr "ภาพนิ่งข้อความ" #. 5FSEq #: sd/inc/strings.hrc:274 -#, fuzzy msgctxt "STR_OVERWRITE_WARNING" msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?" -msgstr " '%FILENAME' ไดเรกทอรีเป้าหมายในเครื่อง มีข้อมูลอยู่ บางแฟ้มอาจถูกเขียนทับได้ คุณต้องการทำต่อไปหรือไม่ ?" +msgstr "ไดเรกทอรีเป้าหมาย '%FILENAME' ในเครื่องมีข้อมูลอยู่ แฟ้มบางแฟ้มในนั้นอาจถูกเขียนทับได้ คุณต้องการทำต่อไปหรือไม่?" #. DKw6n #: sd/inc/strings.hrc:276 @@ -1925,13 +1903,13 @@ #: sd/inc/strings.hrc:277 msgctxt "STR_LAYER_BCKGRNDOBJ" msgid "Background objects" -msgstr "วัตถุของพื้นหลัง" +msgstr "วัตถุพื้นหลัง" #. j9GG4 #: sd/inc/strings.hrc:278 msgctxt "STR_LAYER_LAYOUT" msgid "Layout" -msgstr "เค้าโครง" +msgstr "ผังวาง" #. nU2g2 #: sd/inc/strings.hrc:279 @@ -1943,7 +1921,7 @@ #: sd/inc/strings.hrc:280 msgctxt "STR_LAYER_MEASURELINES" msgid "Dimension Lines" -msgstr "เส้นมิติ" +msgstr "เส้นบอกขนาด" #. z4wq5 #: sd/inc/strings.hrc:281 @@ -1955,50 +1933,49 @@ #: sd/inc/strings.hrc:282 msgctxt "STR_PAGE_NAME" msgid "Page" -msgstr "Page" +msgstr "หน้า" #. p8GEE #: sd/inc/strings.hrc:283 msgctxt "STR_SLIDE_NAME" msgid "Slide" -msgstr "Slide" +msgstr "ภาพนิ่ง" #. r3w8y #: sd/inc/strings.hrc:284 msgctxt "STR_MASTERSLIDE_NAME" msgid "Master Slide" -msgstr "" +msgstr "แม่แบบภาพนิ่ง" #. 8WvYc #: sd/inc/strings.hrc:285 msgctxt "STR_MASTERSLIDE_LABEL" msgid "Master Slide:" -msgstr "" +msgstr "แม่แบบภาพนิ่ง:" #. C3zZM #: sd/inc/strings.hrc:286 -#, fuzzy msgctxt "STR_MASTERPAGE_NAME" msgid "Master Page" -msgstr "หน้าต้นแบบ" +msgstr "แม่แบบหน้า" #. nTgKn #: sd/inc/strings.hrc:287 msgctxt "STR_MASTERPAGE_LABEL" msgid "Master Page:" -msgstr "" +msgstr "แม่แบบหน้า:" #. PacSi #: sd/inc/strings.hrc:288 msgctxt "STR_NOTES" msgid "(Notes)" -msgstr "(บันทึก)" +msgstr "(บันทึกเสริม)" #. hBB6T #: sd/inc/strings.hrc:289 msgctxt "STR_HANDOUT" msgid "Handouts" -msgstr "เอกสารประกอบคำบรรยาย" +msgstr "เอกสารแจก" #. ZC2XQ #: sd/inc/strings.hrc:290 @@ -2010,79 +1987,79 @@ #: sd/inc/strings.hrc:291 msgctxt "STR_PRESOBJ_MPOUTLINE" msgid "Click to edit the outline text format" -msgstr "คลิกเพื่อแก้ไขรูปแบบโครงร่างข้อความ" +msgstr "คลิกเพื่อแก้ไขรูปแบบเค้าโครงข้อความ" #. MhEh8 #: sd/inc/strings.hrc:292 msgctxt "STR_PRESOBJ_MPTITLE_MOBILE" msgid "Double-tap to edit the title text format" -msgstr "" +msgstr "แตะซ้อนสองครั้งเพื่อแก้ไขรูปแบบข้อความชื่อเรื่อง" #. eMDBG #: sd/inc/strings.hrc:293 msgctxt "STR_PRESOBJ_MPOUTLINE_MOBILE" msgid "Double-tap to edit the outline text format" -msgstr "" +msgstr "แตะซ้อนสองครั้งเพื่อแก้ไขรูปแบบเค้าโครงข้อความ" #. QHBwE #: sd/inc/strings.hrc:294 msgctxt "STR_PRESOBJ_MPOUTLLAYER2" msgid "Second Outline Level" -msgstr "โครงร่างระดับที่สอง" +msgstr "เค้าโครงระดับที่สอง" #. Lf8oo #: sd/inc/strings.hrc:295 msgctxt "STR_PRESOBJ_MPOUTLLAYER3" msgid "Third Outline Level" -msgstr "โครงร่างระดับที่สาม" +msgstr "เค้าโครงระดับที่สาม" #. n3fVM #: sd/inc/strings.hrc:296 msgctxt "STR_PRESOBJ_MPOUTLLAYER4" msgid "Fourth Outline Level" -msgstr "โครงร่างระดับที่สี่" +msgstr "เค้าโครงระดับที่สี่" #. DsABM #: sd/inc/strings.hrc:297 msgctxt "STR_PRESOBJ_MPOUTLLAYER5" msgid "Fifth Outline Level" -msgstr "โครงร่างระดับที่ห้า" +msgstr "เค้าโครงระดับที่ห้า" #. CG6UM #: sd/inc/strings.hrc:298 msgctxt "STR_PRESOBJ_MPOUTLLAYER6" msgid "Sixth Outline Level" -msgstr "โครงร่างระดับที่หก" +msgstr "เค้าโครงระดับที่หก" #. 45DF3 #: sd/inc/strings.hrc:299 msgctxt "STR_PRESOBJ_MPOUTLLAYER7" msgid "Seventh Outline Level" -msgstr "โครงร่างระดับที่เจ็ด" +msgstr "เค้าโครงระดับที่เจ็ด" #. msbUt #: sd/inc/strings.hrc:300 msgctxt "STR_PRESOBJ_MPNOTESTITLE" msgid "Click to move the slide" -msgstr "คลิกเพื่อย้ายภาพนิ่ง" +msgstr "คลิกเพื่อเคลื่อนย้ายภาพนิ่ง" #. CuXWS #: sd/inc/strings.hrc:301 msgctxt "STR_PRESOBJ_MPNOTESTEXT" msgid "Click to edit the notes format" -msgstr "คลิกเพื่อแก้ไขรูปแบบบันทึก" +msgstr "คลิกเพื่อแก้ไขรูปแบบบันทึกเสริม" #. Qxj2R #: sd/inc/strings.hrc:302 msgctxt "STR_PRESOBJ_MPNOTESTITLE_MOBILE" msgid "Double-tap to move the slide" -msgstr "" +msgstr "แตะซ้อนสองครั้งเพื่อเคลื่อนย้ายภาพนิ่ง" #. iibds #: sd/inc/strings.hrc:303 msgctxt "STR_PRESOBJ_MPNOTESTEXT_MOBILE" msgid "Double-tap to edit the notes format" -msgstr "" +msgstr "แตะซ้อนสองครั้งเพื่อแก้ไขรูปแบบบันทึกเสริม" #. oBXBx #: sd/inc/strings.hrc:304 @@ -2092,84 +2069,81 @@ #. HVQNr #: sd/inc/strings.hrc:305 -#, fuzzy msgctxt "STR_PRESOBJ_OUTLINE" msgid "Click to add Text" -msgstr "คลิกเพื่อเพิ่มชื่อเรื่อง" +msgstr "คลิกเพื่อเพิ่มข้อความ" #. NUirL #: sd/inc/strings.hrc:306 -#, fuzzy msgctxt "STR_PRESOBJ_TEXT" msgid "Click to add Text" -msgstr "คลิกเพื่อเพิ่มชื่อเรื่อง" +msgstr "คลิกเพื่อเพิ่มข้อความ" #. 2u7FR #: sd/inc/strings.hrc:307 -#, fuzzy msgctxt "STR_PRESOBJ_NOTESTEXT" msgid "Click to add Notes" -msgstr "คลิกเพื่อเพิ่มชื่อเรื่อง" +msgstr "คลิกเพื่อเพิ่มบันทึกเสริม" #. js2X9 #: sd/inc/strings.hrc:308 msgctxt "STR_PRESOBJ_TITLE_MOBILE" msgid "Double-tap to add Title" -msgstr "" +msgstr "แตะซ้อนสองครั้งเพื่อเพิ่มชื่อเรื่อง" #. jLtyS #: sd/inc/strings.hrc:309 msgctxt "STR_PRESOBJ_OUTLINE_MOBILE" msgid "Double-tap to add Text" -msgstr "" +msgstr "แตะซ้อนสองครั้งเพื่อเพิ่มข้อความ" #. KAFJh #: sd/inc/strings.hrc:310 msgctxt "STR_PRESOBJ_TEXT_MOBILE" msgid "Double-tap to add Text" -msgstr "" +msgstr "แตะซ้อนสองครั้งเพื่อเพิ่มข้อความ" #. ksTwQ #: sd/inc/strings.hrc:311 msgctxt "STR_PRESOBJ_TEXT_MOBILE" msgid "Tap to edit text" -msgstr "" +msgstr "แตะเพื่อแก้ไขข้อความ" #. bRhRR #: sd/inc/strings.hrc:312 msgctxt "STR_PRESOBJ_NOTESTEXT_MOBILE" msgid "Double-tap to add Notes" -msgstr "" +msgstr "แตะซ้อนสองครั้งเพื่อเพิ่มบันทึกเสริม" #. ZqPtT #: sd/inc/strings.hrc:313 msgctxt "STR_PRESOBJ_GRAPHIC" msgid "Double-click to add an Image" -msgstr "" +msgstr "ดับเบิลคลิกเพื่อเพิ่มรูปภาพ" #. HGVA3 #: sd/inc/strings.hrc:314 msgctxt "STR_PRESOBJ_OBJECT" msgid "Double-click to add an Object" -msgstr "" +msgstr "ดับเบิลคลิกเพื่อเพิ่มวัตถุ" #. XjW6w #: sd/inc/strings.hrc:315 msgctxt "STR_PRESOBJ_CHART" msgid "Double-click to add a Chart" -msgstr "" +msgstr "ดับเบิลคลิกเพื่อเพิ่มแผนภูมิ" #. eKgCA #: sd/inc/strings.hrc:316 msgctxt "STR_PRESOBJ_ORGCHART" msgid "Double-click to add an Organization Chart" -msgstr "" +msgstr "ดับเบิลคลิกเพื่อเพิ่มแผนผังองค์กร" #. wW4E4 #: sd/inc/strings.hrc:317 msgctxt "STR_PRESOBJ_TABLE" msgid "Double-click to add a Spreadsheet" -msgstr "" +msgstr "ดับเบิลคลิกเพื่อเพิ่มตารางคำนวณ" #. nBtJo #: sd/inc/strings.hrc:318 @@ -2187,7 +2161,7 @@ #: sd/inc/strings.hrc:320 msgctxt "STR_STANDARD_STYLESHEET_NAME" msgid "Default Drawing Style" -msgstr "" +msgstr "กระบวนแบบงานวาดปริยาย" #. pxfDw #: sd/inc/strings.hrc:321 @@ -2199,31 +2173,31 @@ #: sd/inc/strings.hrc:322 msgctxt "STR_INSERT_PAGES" msgid "Insert Pages" -msgstr "" +msgstr "แทรกหน้า" #. 7Z6kC #: sd/inc/strings.hrc:323 msgctxt "STR_INSERT_PAGE_DRAW" msgid "Insert Page" -msgstr "" +msgstr "แทรกหน้า" #. CMhGm #: sd/inc/strings.hrc:324 msgctxt "STR_SLIDE_SETUP_TITLE" msgid "Slide Properties" -msgstr "" +msgstr "คุณสมบัติของภาพนิ่ง" #. pA7rP #: sd/inc/strings.hrc:326 msgctxt "STR_POOLSHEET_OBJWITHOUTFILL" msgid "Object without fill" -msgstr "วัตถุไม่มีการเติม" +msgstr "วัตถุไม่มีพื้นที่ระบายสี" #. btJeg #: sd/inc/strings.hrc:327 msgctxt "STR_POOLSHEET_OBJNOLINENOFILL" msgid "Object with no fill and no line" -msgstr "วัตถุที่ไม่เติมสีและไม่มีเส้น" +msgstr "วัตถุที่ไม่มีพื้นที่ระบายสีและไม่มีเส้น" #. YCmiq #: sd/inc/strings.hrc:328 @@ -2235,139 +2209,139 @@ #: sd/inc/strings.hrc:329 msgctxt "STR_POOLSHEET_A4" msgid "A4" -msgstr "" +msgstr "A4" #. EEK5c #: sd/inc/strings.hrc:330 msgctxt "STR_POOLSHEET_A4_TITLE" msgid "Title A4" -msgstr "" +msgstr "A4 ชื่อเรื่อง" #. ZCLYo #: sd/inc/strings.hrc:331 msgctxt "STR_POOLSHEET_A4_HEADLINE" msgid "Heading A4" -msgstr "" +msgstr "A4 หัวข้อ" #. epKM4 #: sd/inc/strings.hrc:332 msgctxt "STR_POOLSHEET_A4_TEXT" msgid "Text A4" -msgstr "" +msgstr "A4 ข้อความ" #. kCg3k #: sd/inc/strings.hrc:333 msgctxt "STR_POOLSHEET_A0" msgid "A0" -msgstr "" +msgstr "A0" #. mhBmK #: sd/inc/strings.hrc:334 msgctxt "STR_POOLSHEET_A0_TITLE" msgid "Title A0" -msgstr "" +msgstr "A0 ชื่อเรื่อง" #. 6AG4z #: sd/inc/strings.hrc:335 msgctxt "STR_POOLSHEET_A0_HEADLINE" msgid "Heading A0" -msgstr "" +msgstr "A0 หัวข้อ" #. gLfCw #: sd/inc/strings.hrc:336 msgctxt "STR_POOLSHEET_A0_TEXT" msgid "Text A0" -msgstr "" +msgstr "A0 ข้อความ" #. eDG7h #: sd/inc/strings.hrc:337 msgctxt "STR_POOLSHEET_GRAPHIC" msgid "Graphic" -msgstr "" +msgstr "กราฟิก" #. o4g3u #: sd/inc/strings.hrc:338 msgctxt "STR_POOLSHEET_GRAPHIC" msgid "Shapes" -msgstr "" +msgstr "รูปร่าง" #. i6AnZ #: sd/inc/strings.hrc:339 msgctxt "STR_POOLSHEET_LINES" msgid "Lines" -msgstr "" +msgstr "เส้น" #. 2ohzZ #: sd/inc/strings.hrc:340 msgctxt "STR_POOLSHEET_MEASURE" msgid "Arrow Line" -msgstr "" +msgstr "เส้นหัวลูกศร" #. mLCYV #: sd/inc/strings.hrc:341 msgctxt "STR_POOLSHEET_LINES_DASHED" msgid "Dashed Line" -msgstr "" +msgstr "เส้นประ" #. xtD8b #: sd/inc/strings.hrc:343 msgctxt "STR_POOLSHEET_FILLED" msgid "Filled" -msgstr "" +msgstr "ระบายสี" #. BGGf5 #: sd/inc/strings.hrc:344 msgctxt "STR_POOLSHEET_FILLED_BLUE" msgid "Filled Blue" -msgstr "" +msgstr "ระบายสีน้ำเงิน" #. sGCBw #: sd/inc/strings.hrc:345 msgctxt "STR_POOLSHEET_FILLED_GREEN" msgid "Filled Green" -msgstr "" +msgstr "ระบายสีเขียว" #. xfoEY #: sd/inc/strings.hrc:346 msgctxt "STR_POOLSHEET_FILLED_YELLOW" msgid "Filled Yellow" -msgstr "" +msgstr "ระบายสีเหลือง" #. eEKGF #: sd/inc/strings.hrc:347 msgctxt "STR_POOLSHEET_FILLED_RED" msgid "Filled Red" -msgstr "" +msgstr "ระบายสีแดง" #. uHgQH #: sd/inc/strings.hrc:349 msgctxt "STR_POOLSHEET_OUTLINE" msgid "Outlined" -msgstr "" +msgstr "ตีขอบ" #. 2eHMC #: sd/inc/strings.hrc:350 msgctxt "STR_POOLSHEET_OUTLINE_BLUE" msgid "Outlined Blue" -msgstr "" +msgstr "ตีขอบสีน้ำเงิน" #. 8FRxG #: sd/inc/strings.hrc:351 msgctxt "STR_POOLSHEET_OUTLINE_GREEN" msgid "Outlined Green" -msgstr "" +msgstr "ตีขอบสีเขียว" #. CEJ3Z #: sd/inc/strings.hrc:352 msgctxt "STR_POOLSHEET_OUTLINE_YELLOW" msgid "Outlined Yellow" -msgstr "" +msgstr "ตีขอบสีเหลือง" #. LARUM #: sd/inc/strings.hrc:353 msgctxt "STR_POOLSHEET_OUTLINE_RED" msgid "Outlined Red" -msgstr "" +msgstr "ตีขอบสีแดง" #. 5dvZu #: sd/inc/strings.hrc:355 @@ -2391,7 +2365,7 @@ #: sd/inc/strings.hrc:358 msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS" msgid "Background objects" -msgstr "วัตถุของพื้นหลัง" +msgstr "วัตถุพื้นหลัง" #. EEEk3 #: sd/inc/strings.hrc:359 @@ -2403,7 +2377,7 @@ #: sd/inc/strings.hrc:360 msgctxt "STR_PSEUDOSHEET_NOTES" msgid "Notes" -msgstr "บันทึก" +msgstr "บันทึกเสริม" #. FQqif #: sd/inc/strings.hrc:361 @@ -2451,13 +2425,13 @@ #: sd/inc/strings.hrc:368 msgctxt "STR_SHRINK_FONT_SIZE" msgid "Shrink font size" -msgstr "" +msgstr "ลดขนาดตัวอักษร" #. 7uDfu #: sd/inc/strings.hrc:369 msgctxt "STR_GROW_FONT_SIZE" msgid "Grow font size" -msgstr "" +msgstr "ขยายขนาดตัวอักษร" #. E9zvq #. Names and descriptions of the Draw/Impress accessibility views @@ -2465,19 +2439,19 @@ #: sd/inc/strings.hrc:374 msgctxt "SID_SD_A11Y_D_DRAWVIEW_N" msgid "Drawing View" -msgstr "มุมมองรูปวาด" +msgstr "มุมมองงานวาด" #. GfnmX #: sd/inc/strings.hrc:375 msgctxt "SID_SD_A11Y_I_DRAWVIEW_N" msgid "Drawing View" -msgstr "มุมมองรูปวาด" +msgstr "มุมมองงานวาด" #. YCVqM #: sd/inc/strings.hrc:376 msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N" msgid "Outline View" -msgstr "มุมมองโครงร่าง" +msgstr "มุมมองเค้าโครง" #. k2hXi #: sd/inc/strings.hrc:377 @@ -2495,79 +2469,79 @@ #: sd/inc/strings.hrc:379 msgctxt "SID_SD_A11Y_I_NOTESVIEW_N" msgid "Notes View" -msgstr "มุมมองบันทึก" +msgstr "มุมมองบันทึกเสริม" #. qr5ov #: sd/inc/strings.hrc:380 msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N" msgid "Handout View" -msgstr "มุมมองเอกสารประกอบคำบรรยาย" +msgstr "มุมมองเอกสารแจก" #. Ycpb4 #: sd/inc/strings.hrc:381 msgctxt "SID_SD_A11Y_P_TITLE_N" msgid "PresentationTitle" -msgstr "PresentationTitle" +msgstr "ชื่อเรื่องงานนำเสนอ" #. 4WCzf #: sd/inc/strings.hrc:382 msgctxt "SID_SD_A11Y_P_OUTLINER_N" msgid "PresentationOutliner" -msgstr "PresentationOutliner" +msgstr "ตัววางเค้าโครงงานนำเสนอ" #. cBoMF #: sd/inc/strings.hrc:383 msgctxt "SID_SD_A11Y_P_SUBTITLE_N" msgid "PresentationSubtitle" -msgstr "PresentationSubtitle" +msgstr "ชื่อเรื่องย่อยงานนำเสนอ" #. 8KV99 #: sd/inc/strings.hrc:384 msgctxt "SID_SD_A11Y_P_PAGE_N" msgid "PresentationPage" -msgstr "PresentationPage" +msgstr "หน้างานนำเสนอ" #. R6kyg #: sd/inc/strings.hrc:385 msgctxt "SID_SD_A11Y_P_NOTES_N" msgid "PresentationNotes" -msgstr "PresentationNotes" +msgstr "บันทึกเสริมงานนำเสนอ" #. X8c9Z #: sd/inc/strings.hrc:386 msgctxt "SID_SD_A11Y_P_HANDOUT_N" msgid "Handout" -msgstr "เอกสารประกอบคำบรรยาย" +msgstr "เอกสารแจก" #. FeAdu #: sd/inc/strings.hrc:387 msgctxt "SID_SD_A11Y_P_UNKNOWN_N" msgid "UnknownAccessiblePresentationShape" -msgstr "UnknownAccessiblePresentationShape" +msgstr "รูปร่างงานนำเสนอที่ไม่รู้จักที่มีสิ่งอำนวยความสะดวก" #. sA8of #: sd/inc/strings.hrc:388 msgctxt "SID_SD_A11Y_P_FOOTER_N" msgid "PresentationFooter" -msgstr "PresentationFooter" +msgstr "ท้ายกระดาษงานนำเสนอ" #. KAC6Z #: sd/inc/strings.hrc:389 msgctxt "SID_SD_A11Y_P_HEADER_N" msgid "PresentationHeader" -msgstr "PresentationHeader" +msgstr "หัวกระดาษงานนำเสนอ" #. EfHeH #: sd/inc/strings.hrc:390 msgctxt "SID_SD_A11Y_P_DATE_N" msgid "PresentationDateAndTime" -msgstr "PresentationDateAndTime" +msgstr "วันที่และเวลางานนำเสนอ" #. WosPZ #: sd/inc/strings.hrc:391 msgctxt "SID_SD_A11Y_P_NUMBER_N" msgid "PresentationPageNumber" -msgstr "PresentationPageNumber" +msgstr "หมายเลขหน้างานนำเสนอ" #. kCGsH #: sd/inc/strings.hrc:392 @@ -2591,31 +2565,31 @@ #: sd/inc/strings.hrc:395 msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE" msgid "Subtitle" -msgstr "หัวเรื่องย่อย" +msgstr "ชื่อเรื่องย่อย" #. eSBEi #: sd/inc/strings.hrc:396 msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE" msgid "Page" -msgstr "Page" +msgstr "หน้า" #. WEaeZ #: sd/inc/strings.hrc:397 msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE" msgid "Notes" -msgstr "บันทึก" +msgstr "บันทึกเสริม" #. buhox #: sd/inc/strings.hrc:398 msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE" msgid "Handout" -msgstr "เอกสารประกอบคำบรรยาย" +msgstr "เอกสารแจก" #. 4xBQg #: sd/inc/strings.hrc:399 msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE" msgid "Unknown Accessible Presentation Shape" -msgstr "ไม่รู้จักรูปร่างงานนำเสนอที่เข้าถึงได้" +msgstr "รูปร่างงานนำเสนอที่ไม่รู้จักที่มีสิ่งอำนวยความสะดวก" #. CGegB #: sd/inc/strings.hrc:400 @@ -2631,17 +2605,15 @@ #. CCwKy #: sd/inc/strings.hrc:402 -#, fuzzy msgctxt "SID_SD_A11Y_P_DATE_N_STYLE" msgid "Date" -msgstr "วัน" +msgstr "วันที่" #. EFmn4 #: sd/inc/strings.hrc:403 -#, fuzzy msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE" msgid "Number" -msgstr "ตัวเลข" +msgstr "หมายเลข" #. wFpMQ #: sd/inc/strings.hrc:404 @@ -2653,7 +2625,7 @@ #: sd/inc/strings.hrc:406 msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE" msgid "none" -msgstr "ไม่มี" +msgstr "ไม่เล่นซ้ำ" #. 9izAz #: sd/inc/strings.hrc:407 @@ -2665,49 +2637,43 @@ #: sd/inc/strings.hrc:408 msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE" msgid "Until end of slide" -msgstr "จนกว่าจะสิ้นสุดภาพนิ่ง" +msgstr "จนกว่าจะจบภาพนิ่ง" #. Lf9gB #: sd/inc/strings.hrc:409 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY" msgid "Direction:" -msgstr "_ทิศทาง:" +msgstr "ทิศทาง:" #. xxDXG #: sd/inc/strings.hrc:410 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY" msgid "Zoom:" -msgstr "ซูม" +msgstr "ซูม:" #. SvBeK #: sd/inc/strings.hrc:411 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY" msgid "Spokes:" -msgstr "Spokes" +msgstr "จำนวนซี่กงล้อ:" #. eJ4qZ #: sd/inc/strings.hrc:412 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY" msgid "First color:" -msgstr "คอลัมน์แรก" +msgstr "สีแรก:" #. CSbCE #: sd/inc/strings.hrc:413 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY" msgid "Second color:" -msgstr "สีที่สอง" +msgstr "สีที่สอง:" #. cZUiD #: sd/inc/strings.hrc:414 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY" msgid "Fill color:" -msgstr "คอลัมน์แรก" +msgstr "สีระบาย:" #. U5ZDL #: sd/inc/strings.hrc:415 @@ -2717,17 +2683,15 @@ #. vKLER #: sd/inc/strings.hrc:416 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY" msgid "Font:" -msgstr "แบบอักษร" +msgstr "แบบอักษร:" #. Fdsks #: sd/inc/strings.hrc:417 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY" msgid "Font color:" -msgstr "คอลัมน์แรก" +msgstr "สีตัวอักษร:" #. nT7dm #: sd/inc/strings.hrc:418 @@ -2737,45 +2701,39 @@ #. q24Fe #: sd/inc/strings.hrc:419 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY" msgid "Typeface:" -msgstr "แบบตัวพิมพ์" +msgstr "แบบตัวพิมพ์:" #. nAqeR #: sd/inc/strings.hrc:420 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY" msgid "Line color:" -msgstr "สีเส้น" +msgstr "สีเส้น:" #. w7G4Q #: sd/inc/strings.hrc:421 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY" msgid "Font size:" -msgstr "ขนาดตัวอักษร" +msgstr "ขนาดตัวอักษร:" #. R3GgU #: sd/inc/strings.hrc:422 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY" msgid "Size:" -msgstr "ขนาด" +msgstr "ขนาด:" #. YEwoz #: sd/inc/strings.hrc:423 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY" msgid "Amount:" -msgstr "Amount" +msgstr "ปริมาณ:" #. wiQPZ #: sd/inc/strings.hrc:424 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY" msgid "Color:" -msgstr "สี" +msgstr "สี:" #. f5u6C #: sd/inc/strings.hrc:425 @@ -2805,44 +2763,43 @@ #: sd/inc/strings.hrc:429 msgctxt "STR_CUSTOMANIMATION_TRIGGER" msgid "Trigger" -msgstr "ตัวกระตุ้น" +msgstr "การกระตุ้น" #. Evkrq #: sd/inc/strings.hrc:430 msgctxt "STR_CUSTOMANIMATION_USERPATH" msgid "User paths" -msgstr "เส้นทางตำแหน่งที่ผู้ใช้ระบุ" +msgstr "เส้นทางที่ผู้ใช้ระบุ" #. EcciE #: sd/inc/strings.hrc:431 msgctxt "STR_CUSTOMANIMATION_ENTRANCE" msgid "Entrance: %1" -msgstr "" +msgstr "เข้า: %1" #. Zydrz #: sd/inc/strings.hrc:432 msgctxt "STR_CUSTOMANIMATION_EMPHASIS" msgid "Emphasis: %1" -msgstr "" +msgstr "เน้น: %1" #. kW2DL #: sd/inc/strings.hrc:433 msgctxt "STR_CUSTOMANIMATION_EXIT" msgid "Exit: %1" -msgstr "" +msgstr "ออก: %1" #. iKFbF #: sd/inc/strings.hrc:434 -#, fuzzy msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS" msgid "Motion Paths: %1" -msgstr "เส้นทางการเคลื่อนที่" +msgstr "เส้นทางการเคลื่อนที่: %1" #. kg9Yv #: sd/inc/strings.hrc:435 msgctxt "STR_CUSTOMANIMATION_MISC" msgid "Misc: %1" -msgstr "" +msgstr "เบ็ดเตล็ด: %1" #. Ep4QY #: sd/inc/strings.hrc:436 @@ -2854,7 +2811,7 @@ #: sd/inc/strings.hrc:438 msgctxt "STR_ANNOTATION_TODAY" msgid "Today," -msgstr "วันนี้" +msgstr "วันนี้," #. DEYnN #: sd/inc/strings.hrc:439 @@ -2872,34 +2829,31 @@ #: sd/inc/strings.hrc:441 msgctxt "STR_ANNOTATION_WRAP_FORWARD" msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?" -msgstr "%PRODUCTNAME Impress มาถึงท้ายการนำเสนอ คุณต้องการทำต่อที่จุดเริ่มต้นหรือไม่?" +msgstr "%PRODUCTNAME Impress มาถึงท้ายงานนำเสนอแล้ว คุณต้องการทำต่อโดยเริ่มใหม่แต่ต้นหรือไม่?" #. P5gKe #: sd/inc/strings.hrc:442 -#, fuzzy msgctxt "STR_ANNOTATION_WRAP_BACKWARD" msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?" -msgstr "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?%PRODUCTNAME Impress ได้ค้นหาไปที่จุดเริ่มต้นของงานนำเสนอ คุณต้องการค้นหาไปจนถึงจุดสิ้นสุดหรือไม่?" +msgstr "%PRODUCTNAME Impress มาถึงต้นงานนำเสนอแล้ว คุณต้องการทำต่อโดยเริ่มจากท้ายหรือไม่?" #. KGmdL #: sd/inc/strings.hrc:443 -#, fuzzy msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW" msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?" -msgstr "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?%PRODUCTNAME Draw ได้ค้นหาไปถึงจุดสิ้นสุดของเอกสาร คุณต้องการค้นหาต่อไปโดย ไปที่จุดเริ่มต้นหรือไม่?" +msgstr "%PRODUCTNAME Draw มาถึงท้ายเอกสารแล้ว คุณต้องการทำต่อโดยเริ่มใหม่แต่ต้นหรือไม่?" #. oEn6r #: sd/inc/strings.hrc:444 -#, fuzzy msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW" msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?" -msgstr "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?%PRODUCTNAME Draw ได้ค้นหาไปที่จุดเริ่มต้นของเอกสารคุณต้องการค้นหาไปจนถึงจุดสิ้นสุดหรือไม่?" +msgstr "%PRODUCTNAME Draw มาถึงต้นเอกสารแล้ว คุณต้องการทำต่อโดยเริ่มจากท้ายหรือไม่?" #. eP7Vm #: sd/inc/strings.hrc:445 msgctxt "STR_ANNOTATION_UNDO_INSERT" msgid "Insert Comment" -msgstr "ใส่ความคิดเห็น" +msgstr "แทรกความคิดเห็น" #. s4c9W #: sd/inc/strings.hrc:446 @@ -2909,10 +2863,9 @@ #. bxiPE #: sd/inc/strings.hrc:447 -#, fuzzy msgctxt "STR_ANNOTATION_UNDO_MOVE" msgid "Move Comment" -msgstr "ซ่อนความคิดเห็น" +msgstr "ย้ายความคิดเห็น" #. hQbpd #: sd/inc/strings.hrc:448 @@ -2930,7 +2883,7 @@ #: sd/inc/strings.hrc:451 msgctxt "RID_DRAW_MEDIA_TOOLBOX" msgid "Media Playback" -msgstr "Media Playback" +msgstr "เล่นสื่อ" #. Q76cw #: sd/inc/strings.hrc:452 @@ -2940,7 +2893,6 @@ #. xCRmu #: sd/inc/strings.hrc:454 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME" msgid "%PRODUCTNAME %s" msgstr "%PRODUCTNAME %s" @@ -2955,41 +2907,37 @@ #: sd/inc/strings.hrc:456 msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE" msgid "Slides per page:" -msgstr "" +msgstr "จำนวนภาพนิ่งต่อหน้า:" #. EPBUK #: sd/inc/strings.hrc:457 msgctxt "STR_IMPRESS_PRINT_UI_ORDER" msgid "Order:" -msgstr "" +msgstr "การเรียงลำดับ:" #. BFEFJ #: sd/inc/strings.hrc:458 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT" msgid "~Contents" -msgstr "เนื้อหา" +msgstr "เ~นื้อหา" #. AdWKp #: sd/inc/strings.hrc:459 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME" msgid "~Slide name" -msgstr "ชื่อภาพนิ่ง" +msgstr "~ชื่อภาพนิ่ง" #. GkLky #: sd/inc/strings.hrc:460 -#, fuzzy msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME" msgid "P~age name" -msgstr "ชื่อห~น้า" +msgstr "ชื่อของห~น้า" #. EFkVE #: sd/inc/strings.hrc:461 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE" msgid "~Date and time" -msgstr "วันที่และเวลา" +msgstr "วัน~ที่และเวลา" #. ZcDFL #: sd/inc/strings.hrc:462 @@ -3005,21 +2953,18 @@ #. WmYKp #: sd/inc/strings.hrc:464 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS" msgid "~Size" -msgstr "ขนาด" +msgstr "~ขนาด" #. qDGVE #: sd/inc/strings.hrc:465 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE" msgid "Brochure" msgstr "แผ่นพับ" #. K7m8L #: sd/inc/strings.hrc:466 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES" msgid "Page sides" msgstr "ด้านของหน้า" @@ -3032,115 +2977,111 @@ #. AEeCf #: sd/inc/strings.hrc:468 -#, fuzzy msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY" msgid "~Use only paper tray from printer preferences" -msgstr "ใ~ช้เฉพาะถาดกระดาษจากที่เลือกไว้ในเครื่องพิมพ์เท่านั้น" +msgstr "ใ~ช้เฉพาะถาดกระดาษจากที่เลือกไว้ในค่าปรับแต่งเครื่องพิมพ์เท่านั้น" #. jBxbU #: sd/inc/strings.hrc:469 msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE" msgid "Pages:" -msgstr "" +msgstr "หน้า:" #. a3tSp #: sd/inc/strings.hrc:470 msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE" msgid "Slides:" -msgstr "" +msgstr "ภาพนิ่ง:" #. pPiWM #: sd/inc/strings.hrc:472 -#, fuzzy msgctxt "STR_SAR_WRAP_FORWARD" msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?" -msgstr "%PRODUCTNAME Impress ได้ค้นหาถึงจุดสิ้นสุดของงานนำเสนอแล้ว คุณต้องการดำเนินการต่อที่จุดเริ่มต้นหรือไม่?" +msgstr "%PRODUCTNAME Impress ได้ค้นหาถึงท้ายงานนำเสนอแล้ว คุณต้องการดำเนินการต่อที่ต้นงานนำเสนอหรือไม่?" #. buKAC #: sd/inc/strings.hrc:473 msgctxt "STR_SAR_WRAP_BACKWARD" msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?" -msgstr "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?%PRODUCTNAME Impress ได้ค้นหาไปที่จุดเริ่มต้นของงานนำเสนอ คุณต้องการค้นหาไปจนถึงจุดสิ้นสุดหรือไม่?" +msgstr "%PRODUCTNAME Impress ได้ค้นหาถึงต้นงานนำเสนอแล้ว คุณต้องการดำเนินการต่อที่ท้ายหรือไม่?" #. iiE2i #: sd/inc/strings.hrc:474 msgctxt "STR_SAR_WRAP_FORWARD_DRAW" msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?" -msgstr "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?%PRODUCTNAME Draw ได้ค้นหาไปถึงจุดสิ้นสุดของเอกสาร คุณต้องการค้นหาต่อไปโดย ไปที่จุดเริ่มต้นหรือไม่?" +msgstr "%PRODUCTNAME Draw ได้ค้นหาถึงท้ายเอกสารแล้ว คุณต้องการดำเนินการต่อที่ต้นเอกสารหรือไม่?" #. RAhiP #: sd/inc/strings.hrc:475 msgctxt "STR_SAR_WRAP_BACKWARD_DRAW" msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?" -msgstr "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?%PRODUCTNAME Draw ได้ค้นหาไปที่จุดเริ่มต้นของเอกสารคุณต้องการค้นหาไปจนถึงจุดสิ้นสุดหรือไม่?" +msgstr "%PRODUCTNAME Draw ได้ค้นหาถึงต้นเอกสารแล้ว คุณต้องการดำเนินการต่อที่ท้ายหรือไม่?" #. 6GhtE #: sd/inc/strings.hrc:477 msgctxt "STR_ANIMATION_DIALOG_TITLE" msgid "Animation" -msgstr "" +msgstr "การเคลื่อนไหว" #. X9CWA #: sd/inc/strings.hrc:479 msgctxt "RID_SVXSTR_EDIT_GRAPHIC" msgid "Link" -msgstr "" +msgstr "ลิงก์" #. yYhnC #: sd/inc/strings.hrc:481 msgctxt "RID_SVXSTR_MENU_NEXT" msgid "~Next" -msgstr "" +msgstr "~ถัดไป" #. YG7NQ #: sd/inc/strings.hrc:482 msgctxt "RID_SVXSTR_MENU_NEXT" msgid "~Previous" -msgstr "" +msgstr "~ก่อนหน้า" #. A9eJu #: sd/inc/strings.hrc:483 msgctxt "RID_SVXSTR_MENU_FIRST" msgid "~First Slide" -msgstr "" +msgstr "ภาพนิ่งแ~รก" #. CVatA #: sd/inc/strings.hrc:484 msgctxt "RID_SVXSTR_MENU_LAST" msgid "~Last Slide" -msgstr "" +msgstr "ภาพนิ่งสุด~ท้าย" #. Wkvpi #: sd/inc/strings.hrc:486 msgctxt "STR_CLOSE_PANE" msgid "Close Pane" -msgstr "" +msgstr "ปิดช่อง" #. xNozF #: sd/uiconfig/sdraw/ui/breakdialog.ui:8 -#, fuzzy msgctxt "breakdialog|BreakDialog" msgid "Break" -msgstr "แ_บ่ง" +msgstr "แยกชิ้น" #. reFAv #: sd/uiconfig/sdraw/ui/breakdialog.ui:56 msgctxt "breakdialog|label1" msgid "Processing metafile:" -msgstr "" +msgstr "กำลังจัดการเมตาไฟล์:" #. 4SJMQ #: sd/uiconfig/sdraw/ui/breakdialog.ui:68 msgctxt "breakdialog|label2" msgid "Broken down metaobjects:" -msgstr "" +msgstr "วัตถุเมตาที่แยกชิ้นออกมา:" #. FAC8K #: sd/uiconfig/sdraw/ui/breakdialog.ui:80 -#, fuzzy msgctxt "breakdialog|label3" msgid "Inserted drawing objects:" -msgstr "ลบวัตถุงานวาด" +msgstr "วัตถุงานวาดที่แทรก:" #. 7gBGN #: sd/uiconfig/sdraw/ui/bulletsandnumbering.ui:8 @@ -3152,7 +3093,7 @@ #: sd/uiconfig/sdraw/ui/bulletsandnumbering.ui:26 msgctxt "bulletsandnumbering|reset" msgid "Reset" -msgstr "ตั้งค่าใหม่" +msgstr "ล้างค่า" #. zVTFe #: sd/uiconfig/sdraw/ui/bulletsandnumbering.ui:139 @@ -3170,45 +3111,43 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:26 msgctxt "copydlg|DuplicateDialog" msgid "Duplicate" -msgstr "ทำำสำเนา" +msgstr "ทำสำเนา" #. FuEEG #: sd/uiconfig/sdraw/ui/copydlg.ui:42 -#, fuzzy msgctxt "copydlg|default" msgid "_Default" -msgstr "ค่าปริยาย" +msgstr "ค่า_ปริยาย" #. BCDCG #: sd/uiconfig/sdraw/ui/copydlg.ui:49 msgctxt "copydlg|extended_tip|default" msgid "Resets the values visible in the dialog back to the default installation values." -msgstr "" +msgstr "ล้างค่าที่ปรากฏในกล่องโต้ตอบกลับสู่ค่าปริยายตามที่กำหนดขณะติดตั้ง" #. ELfL6 #: sd/uiconfig/sdraw/ui/copydlg.ui:70 msgctxt "copydlg|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "บันทึกการเปลี่ยนแปลงทั้งหมดแล้วปิดกล่องโต้ตอบ" #. AiFRo #: sd/uiconfig/sdraw/ui/copydlg.ui:89 msgctxt "copydlg|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "ปิดกล่องโต้ตอบโดยละทิ้งการเปลี่ยนแปลงทั้งหมด" #. HhrrQ #: sd/uiconfig/sdraw/ui/copydlg.ui:139 -#, fuzzy msgctxt "copydlg|label4" msgid "Number of _copies:" -msgstr "จำนวนสำเนา" +msgstr "_จำนวนสำเนา:" #. qgJLc #: sd/uiconfig/sdraw/ui/copydlg.ui:160 msgctxt "copydlg|extended_tip|copies" msgid "Enter the number of copies you want to make." -msgstr "" +msgstr "ป้อนจำนวนสำเนาที่คุณต้องการสร้าง" #. 3fqDJ #: sd/uiconfig/sdraw/ui/copydlg.ui:175 @@ -3232,99 +3171,94 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:232 msgctxt "copydlg|label6" msgid "_Y axis:" -msgstr "แกน _Y" +msgstr "แกน _Y:" #. gHkmD #: sd/uiconfig/sdraw/ui/copydlg.ui:246 msgctxt "copydlg|label7" msgid "_Angle:" -msgstr "" +msgstr "มุ_ม:" #. a63ej #: sd/uiconfig/sdraw/ui/copydlg.ui:266 msgctxt "copydlg|extended_tip|x" msgid "Enter the horizontal distance between the centers of the selected object and the duplicate object. Positive values shift the duplicate object to the right and negative values shift the duplicate object to the left." -msgstr "" +msgstr "ป้อนระยะตามแนวนอนระหว่างศูนย์กลางของวัตถุที่เลือกกับวัตถุสำเนา ค่าบวกจะเลื่อนวัตถุสำเนาไปทางขวา และค่าลบจะเลื่อนวัตถุสำเนาไปทางซ้าย" #. qPCGk #: sd/uiconfig/sdraw/ui/copydlg.ui:285 msgctxt "copydlg|extended_tip|y" msgid "Enter the vertical distance between the centers of the selected object and the duplicate object. Positive values shift the duplicate object down and negative values shift the duplicate object up." -msgstr "" +msgstr "ป้อนระยะตามแนวตั้งระหว่างศูนย์กลางของวัตถุที่เลือกกับวัตถุสำเนา ค่าบวกจะเลื่อนวัตถุสำเนาลง และค่าลบจะเลื่อนวัตถุสำเนาขึ้น" #. uyLiW #: sd/uiconfig/sdraw/ui/copydlg.ui:305 msgctxt "copydlg|extended_tip|angle" msgid "Enter the angle (0 to 359 degrees) by which you want to rotate the duplicate object. Positive values rotate the duplicate object in a clockwise direction and negative values in a counterclockwise direction." -msgstr "" +msgstr "ป้อนมุม (0 ถึง 359 องศา) ที่คุณต้องการหมุนวัตถุสำเนา ค่าบวกจะหมุนวัตถุสำเนาตามเข็มนาฬิกา และค่าลบจะหมุนทวนเข็มนาฬิกา" #. Mb9Gs #: sd/uiconfig/sdraw/ui/copydlg.ui:320 -#, fuzzy msgctxt "copydlg|label1" msgid "Placement" -msgstr "การจัด_วาง" +msgstr "การจัดวาง" #. 3Dyw2 #: sd/uiconfig/sdraw/ui/copydlg.ui:354 -#, fuzzy msgctxt "copydlg|label8" msgid "_Width:" -msgstr "ความกว้าง:" +msgstr "ความ_กว้าง:" #. YuAHc #: sd/uiconfig/sdraw/ui/copydlg.ui:368 -#, fuzzy msgctxt "copydlg|label9" msgid "_Height:" -msgstr "ความสูง:" +msgstr "ความสู_ง:" #. pLxaH #: sd/uiconfig/sdraw/ui/copydlg.ui:388 msgctxt "copydlg|extended_tip|width" msgid "Enter the amount by which you want to enlarge or reduce the width of the duplicate object." -msgstr "" +msgstr "ป้อนระยะที่คุณต้องการขยายหรือหดความกว้างของวัตถุสำเนา" #. LP58A #: sd/uiconfig/sdraw/ui/copydlg.ui:407 msgctxt "copydlg|extended_tip|height" msgid "Enter the amount by which you want to enlarge or reduce the height of the duplicate object." -msgstr "" +msgstr "ป้อนระยะที่คุณต้องการขยายหรือหดความสูงของวัตถุสำเนา" #. Jvt8m #: sd/uiconfig/sdraw/ui/copydlg.ui:422 msgctxt "copydlg|label2" msgid "Enlargement" -msgstr "" +msgstr "การเพิ่มลดขนาด" #. ENMbc #: sd/uiconfig/sdraw/ui/copydlg.ui:456 -#, fuzzy msgctxt "copydlg|label10" msgid "_Start:" -msgstr "เ_ริ่มต้น" +msgstr "เริ่ม_ต้น:" #. Z6aqk #: sd/uiconfig/sdraw/ui/copydlg.ui:470 msgctxt "copydlg|endlabel" msgid "_End:" -msgstr "" +msgstr "สุด_ท้าย:" #. ULShA #: sd/uiconfig/sdraw/ui/copydlg.ui:494 msgctxt "copydlg|extended_tip|start" msgid "Choose a color for the selected object." -msgstr "" +msgstr "เลือกสีสำหรับระบายวัตถุที่เลือก" #. AAoBa #: sd/uiconfig/sdraw/ui/copydlg.ui:517 msgctxt "copydlg|extended_tip|end" msgid "Choose a color for the duplicate object. If you are making more than one copy, this color is applied to the last copy." -msgstr "" +msgstr "เลือกสีสำหรับระบายวัตถุสำเนา ถ้าคุณทำสำเนามากกว่าหนึ่งชุด สีนี้จะใช้กับชุดสุดท้าย" #. F3A93 #: sd/uiconfig/sdraw/ui/copydlg.ui:532 -#, fuzzy msgctxt "copydlg|label3" msgid "Colors" msgstr "สี" @@ -3333,50 +3267,49 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:565 msgctxt "copydlg|extended_tip|DuplicateDialog" msgid "Makes one or more copies of a selected object." -msgstr "" +msgstr "ทำสำเนาวัตถุที่เลือกตั้งแต่หนึ่งชุดขึ้นไป" #. Y4vXd #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:15 msgctxt "crossfadedialog|CrossFadeDialog" msgid "Cross-fading" -msgstr "ลู่ขวาง" +msgstr "กลายรูปร่าง" #. FXGbk #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:102 msgctxt "crossfadedialog|orientation" msgid "Same orientation" -msgstr "การกำหนดทิศทางเดียวกัน" +msgstr "ใช้แนววางเดียวกัน" #. PAGv2 #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:110 msgctxt "crossfadedialog|extended_tip|orientation" msgid "Applies a smooth transition between the selected objects." -msgstr "" +msgstr "ใช้การกลายรูปร่างแบบต่อเนื่องระหว่างวัตถุที่เลือก" #. SmBMK #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:122 msgctxt "crossfadedialog|attributes" msgid "Cross-fade attributes" -msgstr "" +msgstr "กลายคุณลักษณะต่างๆ ด้วย" #. zb4pb #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:130 msgctxt "crossfadedialog|extended_tip|attributes" msgid "Applies cross-fading to the line and fill properties of the selected objects." -msgstr "" +msgstr "ใช้การกลายกับเส้นและสีระบายระหว่างวัตถุที่เลือกด้วย" #. CehQE #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:144 -#, fuzzy msgctxt "crossfadedialog|label2" msgid "Increments:" -msgstr "เพิ่มขึ้น" +msgstr "จำนวนขั้น:" #. d2wBc #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:163 msgctxt "crossfadedialog|extended_tip|increments" msgid "Enter the number of shapes you want between the two selected objects." -msgstr "" +msgstr "ป้อนจำนวนรูปร่างที่คุณต้องการแทรกระหว่างวัตถุสองชิ้นที่เลือก" #. MnqQG #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:178 @@ -3388,43 +3321,43 @@ #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:203 msgctxt "crossfadedialog|extended_tip|CrossFadeDialog" msgid "Creates shapes and distributes them by uniform increments between two drawing objects." -msgstr "" +msgstr "สร้างรูปร่างที่กลายร่างทีละขั้นอย่างสม่ำเสมอแทรกกระจายระหว่างวัตถุงานวาดสองชิ้น" #. 9Ga7E #: sd/uiconfig/sdraw/ui/dlgsnap.ui:8 msgctxt "dlgsnap|SnapObjectDialog" msgid "New Snap Object" -msgstr "สร้างวัตถุประกบใหม่" +msgstr "สร้างวัตถุดูดติดใหม่" #. Qg8Yb #: sd/uiconfig/sdraw/ui/dlgsnap.ui:31 msgctxt "dlgsnap|extended_tip|delete" msgid "Deletes the selected snap point or snap line." -msgstr "" +msgstr "ลบหลุมหรือร่องดูดติด" #. zJQtH #: sd/uiconfig/sdraw/ui/dlgsnap.ui:124 msgctxt "dlgsnap|extended_tip|x" msgid "Enter the amount of space you want between the snap point or line and the left edge of the page." -msgstr "" +msgstr "ป้อนระยะจากขอบซ้ายของหน้าเพื่อเป็นตำแหน่งทำหลุมหรือร่องดูดติดที่คุณต้องการ" #. iBvKZ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:142 msgctxt "dlgsnap|extended_tip|y" msgid "Enter the amount of space you want between the snap point or line and the top edge of the page." -msgstr "" +msgstr "ป้อนระยะจากขอบบนของหน้าเพื่อเป็นตำแหน่งทำหลุมหรือร่องดูดติดที่คุณต้องการ" #. GSJeV #: sd/uiconfig/sdraw/ui/dlgsnap.ui:155 msgctxt "dlgsnap|xlabel" msgid "_X:" -msgstr "" +msgstr "_X:" #. AAfto #: sd/uiconfig/sdraw/ui/dlgsnap.ui:168 msgctxt "dlgsnap|ylabel" msgid "_Y:" -msgstr "" +msgstr "_Y:" #. pMnkL #: sd/uiconfig/sdraw/ui/dlgsnap.ui:183 @@ -3434,46 +3367,42 @@ #. i4QCv #: sd/uiconfig/sdraw/ui/dlgsnap.ui:246 -#, fuzzy msgctxt "dlgsnap|point" msgid "_Point" -msgstr "จุด" +msgstr "_หลุม" #. jQ34q #: sd/uiconfig/sdraw/ui/dlgsnap.ui:255 msgctxt "dlgsnap|extended_tip|point" msgid "Inserts a snap point." -msgstr "" +msgstr "ทำหลุมดูดติด" #. k2rmV #: sd/uiconfig/sdraw/ui/dlgsnap.ui:266 -#, fuzzy msgctxt "dlgsnap|vert" msgid "_Vertical" -msgstr "แนวตั้ง" +msgstr "แนว_ตั้ง" #. 7bAB7 #: sd/uiconfig/sdraw/ui/dlgsnap.ui:275 msgctxt "dlgsnap|extended_tip|vert" msgid "Inserts a vertical snap line." -msgstr "" +msgstr "ทำร่องดูดติดแนวตั้ง" #. tHFwv #: sd/uiconfig/sdraw/ui/dlgsnap.ui:286 -#, fuzzy msgctxt "dlgsnap|horz" msgid "Hori_zontal" -msgstr "แนวนอน" +msgstr "แนว_นอน" #. GMavs #: sd/uiconfig/sdraw/ui/dlgsnap.ui:295 msgctxt "dlgsnap|extended_tip|horz" msgid "Inserts a horizontal snap line." -msgstr "" +msgstr "ทำร่องดูดติดแนวนอน" #. Dd9fb #: sd/uiconfig/sdraw/ui/dlgsnap.ui:310 -#, fuzzy msgctxt "dlgsnap|label2" msgid "Type" msgstr "ชนิด" @@ -3482,7 +3411,7 @@ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:340 msgctxt "dlgsnap|extended_tip|SnapObjectDialog" msgid "Inserts a snap point or snap line (also known as guide) that you can use to quickly align objects." -msgstr "" +msgstr "ทำหลุมหรือร่องดูดติด (หรือที่เรียกว่าจุดช่วยหรือเส้นช่วย) ที่คุณสามารถใช้ในการจัดแนววัตถุได้อย่างรวดเร็ว" #. MuBBG #: sd/uiconfig/sdraw/ui/drawchardialog.ui:8 @@ -3512,19 +3441,19 @@ #: sd/uiconfig/sdraw/ui/drawchardialog.ui:279 msgctxt "drawchardialog|RID_SVXPAGE_BKG" msgid "Highlighting" -msgstr "" +msgstr "การเน้น" #. 7FuBt #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:8 msgctxt "drawpagedialog|DrawPageDialog" msgid "Page Properties" -msgstr "" +msgstr "คุณสมบัติของหน้า" #. Py4db #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:136 msgctxt "drawpagedialog|RID_SVXPAGE_PAGE" msgid "Page" -msgstr "Page" +msgstr "หน้า" #. sn2YQ #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:183 @@ -3542,7 +3471,7 @@ #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:279 msgctxt "drawpagedialog|RID_SVXPAGE_THEME" msgid "Theme" -msgstr "" +msgstr "ชุดตกแต่ง" #. cKCg3 #: sd/uiconfig/sdraw/ui/drawparadialog.ui:8 @@ -3554,7 +3483,7 @@ #: sd/uiconfig/sdraw/ui/drawparadialog.ui:136 msgctxt "drawparadialog|labelTP_PARA_STD" msgid "Indents & Spacing" -msgstr "ระยะเยื้องและระยะห่าง" +msgstr "ระยะร่นและระยะห่าง" #. xDCfw #: sd/uiconfig/sdraw/ui/drawparadialog.ui:183 @@ -3572,7 +3501,7 @@ #: sd/uiconfig/sdraw/ui/drawparadialog.ui:279 msgctxt "drawparadialog|labelTP_PARA_ALIGN" msgid "Alignment" -msgstr "การปรับแนว" +msgstr "การจัดแนว" #. 7Ccny #: sd/uiconfig/sdraw/ui/drawparadialog.ui:328 @@ -3584,13 +3513,13 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:28 msgctxt "drawprinteroptions|printname" msgid "Page name" -msgstr "ชื่อห~น้า" +msgstr "ชื่อของห~น้า" #. FmQfj #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:36 msgctxt "drawprinteroptions|extended_tip|printname" msgid "Specifies whether to print the page name of a document." -msgstr "" +msgstr "ระบุว่าจะพิมพ์ชื่อของหน้าของเอกสารด้วยหรือไม่" #. ENmG2 #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:48 @@ -3602,7 +3531,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:56 msgctxt "drawprinteroptions|extended_tip|printdatetime" msgid "Specifies whether to print the current date and time." -msgstr "" +msgstr "ระบุว่าจะพิมพ์วันที่และเวลาปัจจุบันด้วยหรือไม่" #. oFCsx #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:72 @@ -3614,13 +3543,13 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:101 msgctxt "drawprinteroptions|originalcolors" msgid "Original colors" -msgstr "" +msgstr "สีเดิม" #. 4hoE9 #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:110 msgctxt "drawprinteroptions|extended_tip|originalcolors" msgid "Specifies to print in original colors." -msgstr "" +msgstr "ระบุให้พิมพ์โดยใช้สีเดิมในเอกสาร" #. 5FsHB #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:122 @@ -3632,20 +3561,19 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:131 msgctxt "drawprinteroptions|extended_tip|grayscale" msgid "Specifies to print colors as grayscale." -msgstr "" +msgstr "ระบุให้พิมพ์สีต่างๆ ด้วยสเกลสีเทา" #. oFnFq #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:143 -#, fuzzy msgctxt "drawprinteroptions|blackandwhite" msgid "Black & white" -msgstr "ดำและ~ขาว" +msgstr "ขาวดำ" #. Et9Qj #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:152 msgctxt "drawprinteroptions|extended_tip|blackandwhite" msgid "Specifies to print colors as black and white." -msgstr "" +msgstr "ระบุให้พิมพ์สีต่างๆ แบบขาวดำ" #. MGAFs #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:168 @@ -3663,7 +3591,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:206 msgctxt "drawprinteroptions|extended_tip|originalsize" msgid "Specifies that you do not want to further scale pages when printing." -msgstr "" +msgstr "ระบุว่าคุณไม่ต้องการย่อ-ขยายหน้าอีกแล้วในการพิมพ์" #. drvLN #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:218 @@ -3675,7 +3603,7 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:227 msgctxt "drawprinteroptions|extended_tip|fittoprinttable" msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer." -msgstr "" +msgstr "ระบุว่าจะย่อขนาดวัตถุต่างๆ ที่ตกขอบกระดาษเพื่อให้พอดีกับกระดาษในเครื่องพิมพ์หรือไม่" #. snSFu #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:239 @@ -3687,13 +3615,13 @@ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:248 msgctxt "drawprinteroptions|extended_tip|distributeonmultiple" msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets." -msgstr "" +msgstr "พิมพ์เอกสารขนาดใหญ่ เช่น โปสเตอร์หรือป้าย โดยกระจายหน้าของเอกสารลงบนกระดาษหลายแผ่น ตัวเลือกการกระจายหน้านี้จะคำนวณจำนวนแผ่นกระดาษที่ต้องใช้เอง จากนั้นคุณสามารถนำแผ่นกระดาษที่พิมพ์มาเรียงต่อกันได้" #. kAHyQ #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:260 msgctxt "drawprinteroptions|tilesheet" msgid "Tile sheet of paper with repeated pages" -msgstr "เรียงหน้าซ้ำลงบนแผ่นกระดาษแบบปูกระเบื้อง" +msgstr "เรียงหน้าซ้ำแบบปูกระเบื้องลงบนแผ่นกระดาษ" #. T6HHy #: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:269 @@ -3753,7 +3681,7 @@ #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:425 msgctxt "drawprtldialog|RID_SVXPAGE_STD_PARAGRAPH" msgid "Indents & Spacing" -msgstr "ระยะเยื้องและระยะห่าง" +msgstr "ระยะร่นและระยะห่าง" #. hQgNU #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:473 @@ -3789,7 +3717,7 @@ #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:713 msgctxt "drawprtldialog|RID_SVXPAGE_ALIGN_PARAGRAPH" msgid "Alignment" -msgstr "การปรับแนว" +msgstr "การจัดแนว" #. 9DBTB #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:761 @@ -3807,44 +3735,43 @@ #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:857 msgctxt "drawprtldialog|RID_SVXPAGE_BKG" msgid "Highlighting" -msgstr "" +msgstr "การเน้น" #. w9EdD #: sd/uiconfig/sdraw/ui/insertlayer.ui:8 msgctxt "insertlayer|InsertLayerDialog" msgid "Insert Layer" -msgstr "แทรกชั้น" +msgstr "แทรกชั้นงาน" #. FFtqd #: sd/uiconfig/sdraw/ui/insertlayer.ui:100 msgctxt "insertlayer|extended_tip|name" msgid "Enter a name for the new layer." -msgstr "" +msgstr "ป้อนชื่อของชั้นงานใหม่" #. kWarA #: sd/uiconfig/sdraw/ui/insertlayer.ui:109 -#, fuzzy msgctxt "insertlayer|label4" msgid "_Name" -msgstr "ชื่อ" +msgstr "_ชื่อ" #. FbChP #: sd/uiconfig/sdraw/ui/insertlayer.ui:140 msgctxt "insertlayer|extended_tip|title" msgid "Enter the title of the layer." -msgstr "" +msgstr "ป้อนชื่อเรื่องของชั้นงาน" #. hCTSd #: sd/uiconfig/sdraw/ui/insertlayer.ui:149 msgctxt "insertlayer|label5" msgid "_Title" -msgstr "_ชื่อเรื่อง" +msgstr "ชื่อเ_รื่อง" #. KKC7D #: sd/uiconfig/sdraw/ui/insertlayer.ui:188 msgctxt "insertlayer|extended_tip|textview" msgid "Enter a description of the layer." -msgstr "" +msgstr "ป้อนคำบรรยายของชั้นงาน" #. g2K4k #: sd/uiconfig/sdraw/ui/insertlayer.ui:199 @@ -3854,191 +3781,189 @@ #. DTUy2 #: sd/uiconfig/sdraw/ui/insertlayer.ui:215 -#, fuzzy msgctxt "insertlayer|visible" msgid "_Visible" -msgstr "มองเห็นได้" +msgstr "มองเ_ห็น" #. oXY4U #: sd/uiconfig/sdraw/ui/insertlayer.ui:223 msgctxt "insertlayer|extended_tip|visible" msgid "Show or hide the layer." -msgstr "" +msgstr "แสดงหรือซ่อนชั้นงาน" #. BtGRo #: sd/uiconfig/sdraw/ui/insertlayer.ui:235 msgctxt "insertlayer|printable" msgid "_Printable" -msgstr "" +msgstr "_พิมพ์ได้" #. VASG2 #: sd/uiconfig/sdraw/ui/insertlayer.ui:243 msgctxt "insertlayer|extended_tip|printable" msgid "When printing, print or ignore this particular layer." -msgstr "" +msgstr "เมื่อจัดพิมพ์ จะพิมพ์หรือข้ามชั้นงานนี้" #. E6EKN #: sd/uiconfig/sdraw/ui/insertlayer.ui:255 msgctxt "insertlayer|locked" msgid "_Locked" -msgstr "" +msgstr "_ล็อค" #. uaSTH #: sd/uiconfig/sdraw/ui/insertlayer.ui:263 msgctxt "insertlayer|extended_tip|locked" msgid "Prevent elements on the layer from being edited." -msgstr "" +msgstr "ป้องกันการแก้ไขส่วนประกอบต่างๆ ในชั้นงานนี้" #. ogtGC #: sd/uiconfig/sdraw/ui/insertlayer.ui:292 msgctxt "insertlayer|extended_tip|InsertLayerDialog" msgid "Inserts a new layer in the document. Layers are only available in Draw, not in Impress." -msgstr "" +msgstr "แทรกชั้นงานใหม่ในเอกสาร ชั้นงานใช้ได้เฉพาะใน Draw เท่านั้น ไม่มีใน Impress" #. dCRtD #: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:18 msgctxt "insertslidesdialog|InsertSlidesDialog" msgid "Insert Slides/Objects" -msgstr "" +msgstr "แทรกภาพนิ่ง/วัตถุ" #. FsBqJ #: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:94 msgctxt "insertslidesdialog|backgrounds" msgid "Delete unused backg_rounds" -msgstr "" +msgstr "ลบ_พื้นหลังที่ไม่ได้ใช้" #. gZErD #: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:102 msgctxt "insertslidesdialog|extended_tip|backgrounds" msgid "Unused master pages are not inserted." -msgstr "" +msgstr "ไม่แทรกหน้าแม่แบบที่ไม่ได้ใช้" #. ixGB4 #: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:113 -#, fuzzy msgctxt "insertslidesdialog|links" msgid "_Link" -msgstr "เชื่อมโยง" +msgstr "เ_ชื่อมโยง" #. c7yDj #: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:121 msgctxt "insertslidesdialog|extended_tip|links" msgid "Inserts a file or some file elements as a link that is automatically updated when the source file is modified." -msgstr "" +msgstr "แทรกแฟ้มหรือส่วนประกอบของแฟ้มแบบเชื่อมโยง ซึ่งเนื้อหาจะปรับโดยอัตโนมัติเมื่อแฟ้มต้นทางมีการเปลี่ยนแปลง" #. 4X9cK #: sd/uiconfig/sdraw/ui/namedesign.ui:8 msgctxt "namedesign|NameDesignDialog" msgid "Name HTML Design" -msgstr "" +msgstr "ตั้งชื่อแบบของเอกสาร HTML" #. V3FWt #: sd/uiconfig/sdraw/ui/notebookbar.ui:3162 msgctxt "drawnotebookbar|FileLabel" msgid "_File" -msgstr "" +msgstr "แ_ฟ้ม" #. exwEC #: sd/uiconfig/sdraw/ui/notebookbar.ui:3181 msgctxt "drawnotebookbar|HelpMenuButton" msgid "_Help" -msgstr "" +msgstr "ความ_ช่วยเหลือ" #. qrXDY #: sd/uiconfig/sdraw/ui/notebookbar.ui:3237 msgctxt "drawnotebookbar|FileLabel" msgid "~File" -msgstr "" +msgstr "แ~ฟ้ม" #. EQ6HL #: sd/uiconfig/sdraw/ui/notebookbar.ui:4606 msgctxt "drawnotebookbar|HomeMenuButton" msgid "_Home" -msgstr "" +msgstr "_บ้าน" #. jtFqm #: sd/uiconfig/sdraw/ui/notebookbar.ui:4705 msgctxt "drawnotebookbar|HomeLabel" msgid "~Home" -msgstr "" +msgstr "~บ้าน" #. zoUaS #: sd/uiconfig/sdraw/ui/notebookbar.ui:5436 msgctxt "drawnotebookbar|FieldMenuButton" msgid "Fiel_d" -msgstr "" +msgstr "ช่อ_งข้อมูล" #. S5FkE #: sd/uiconfig/sdraw/ui/notebookbar.ui:5619 msgctxt "drawnotebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "แ_ทรก" #. Z3UCg #: sd/uiconfig/sdraw/ui/notebookbar.ui:5723 msgctxt "drawnotebookbar|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "แ~ทรก" #. TVDXM #: sd/uiconfig/sdraw/ui/notebookbar.ui:6423 msgctxt "drawnotebookbar|PageMenuButton" msgid "_Layout" -msgstr "" +msgstr "_ผังวาง" #. Rv7x4 #: sd/uiconfig/sdraw/ui/notebookbar.ui:6508 msgctxt "drawnotebookbar|PageLabel" msgid "~Layout" -msgstr "" +msgstr "~ผังวาง" #. BQcfo #: sd/uiconfig/sdraw/ui/notebookbar.ui:7046 msgctxt "drawnotebookbar|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "_ตรวจทาน" #. prpcY #: sd/uiconfig/sdraw/ui/notebookbar.ui:7129 msgctxt "drawnotebookbar|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "~ตรวจทาน" #. EiuB6 #: sd/uiconfig/sdraw/ui/notebookbar.ui:8158 msgctxt "drawnotebookbar|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "มุ_มมอง" #. EF3TH #: sd/uiconfig/sdraw/ui/notebookbar.ui:8243 msgctxt "drawnotebookbar|ViewLabel" msgid "~View" -msgstr "" +msgstr "มุ~มมอง" #. 94L75 #: sd/uiconfig/sdraw/ui/notebookbar.ui:9588 msgctxt "drawnotebookbar|TextMenuButton" msgid "T_ext" -msgstr "" +msgstr "_ข้อความ" #. PQtWE #: sd/uiconfig/sdraw/ui/notebookbar.ui:9683 msgctxt "drawnotebookbar|ReferencesLabel" msgid "T~ext" -msgstr "" +msgstr "~ข้อความ" #. tNq7H #: sd/uiconfig/sdraw/ui/notebookbar.ui:10585 msgctxt "drawnotebookbar|TableMenuButton" msgid "_Table" -msgstr "" +msgstr "ตา_ราง" #. 9pJGh #: sd/uiconfig/sdraw/ui/notebookbar.ui:10669 msgctxt "drawnotebookbar|TableLabel" msgid "~Table" -msgstr "" +msgstr "ตา~ราง" #. ECD4J #: sd/uiconfig/sdraw/ui/notebookbar.ui:11196 @@ -4046,349 +3971,349 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:14307 msgctxt "drawnotebookbar|ConvertMenuButton" msgid "Convert" -msgstr "" +msgstr "แปลง" #. 4Z6aZ #: sd/uiconfig/sdraw/ui/notebookbar.ui:11864 msgctxt "drawnotebookbar|GraphicMenuButton" msgid "Ima_ge" -msgstr "" +msgstr "รูป_ภาพ" #. 7FoFi #: sd/uiconfig/sdraw/ui/notebookbar.ui:11973 msgctxt "drawnotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "รูป~ภาพ" #. 6SADm #: sd/uiconfig/sdraw/ui/notebookbar.ui:13724 msgctxt "drawnotebookbar|DrawMenuButton" msgid "_Draw" -msgstr "" +msgstr "วา_ด" #. 6S8qN #: sd/uiconfig/sdraw/ui/notebookbar.ui:13830 msgctxt "drawnotebookbar|DrawLabel" msgid "~Draw" -msgstr "" +msgstr "วา~ด" #. QAEDd #: sd/uiconfig/sdraw/ui/notebookbar.ui:14663 msgctxt "drawnotebookbar|ObjectMenuButton" msgid "_Object" -msgstr "" +msgstr "_วัตถุ" #. SL4NA #: sd/uiconfig/sdraw/ui/notebookbar.ui:14770 msgctxt "drawnotebookbar|ObjectLabel" msgid "~Object" -msgstr "" +msgstr "~วัตถุ" #. 4aAxG #: sd/uiconfig/sdraw/ui/notebookbar.ui:15271 msgctxt "drawnotebookbar|MediaMenuButton" msgid "_Media" -msgstr "" +msgstr "_สื่อ" #. ed3LH #: sd/uiconfig/sdraw/ui/notebookbar.ui:15375 msgctxt "drawnotebookbar|MediaLabel" msgid "~Media" -msgstr "" +msgstr "~สื่อ" #. FAL6c #: sd/uiconfig/sdraw/ui/notebookbar.ui:16183 msgctxt "drawnotebookbar|FormMenuButton" msgid "Fo_rm" -msgstr "" +msgstr "แบบฟอ_ร์ม" #. oaAJU #: sd/uiconfig/sdraw/ui/notebookbar.ui:16267 msgctxt "DrawNotebookbar|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "แบบฟอ~ร์ม" #. ZBVGA #: sd/uiconfig/sdraw/ui/notebookbar.ui:17054 msgctxt "DrawNotebookbar|FormMenuButton" msgid "3_d" -msgstr "" +msgstr "_3 มิติ" #. fEyRX #: sd/uiconfig/sdraw/ui/notebookbar.ui:17161 msgctxt "DrawNotebookbar|FormLabel" msgid "3~d" -msgstr "" +msgstr "~3 มิติ" #. 7ZLQw #: sd/uiconfig/sdraw/ui/notebookbar.ui:17685 msgctxt "DrawNotebookbar|FormMenuButton" msgid "_Master" -msgstr "" +msgstr "แ_ม่แบบ" #. oiXVg #: sd/uiconfig/sdraw/ui/notebookbar.ui:17769 msgctxt "DrawNotebookbar|MasterLabel" msgid "~Master" -msgstr "" +msgstr "แ~ม่แบบ" #. yzvja #: sd/uiconfig/sdraw/ui/notebookbar.ui:17826 msgctxt "drawnotebookbar|FormMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ส่วนข_ยาย" #. L3eG5 #: sd/uiconfig/sdraw/ui/notebookbar.ui:17900 msgctxt "drawnotebookbar|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ส่วนข~ยาย" #. dkNUg #: sd/uiconfig/sdraw/ui/notebookbar.ui:18812 msgctxt "drawnotebookbar|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "เ_ครื่องมือ" #. Je8XQ #: sd/uiconfig/sdraw/ui/notebookbar.ui:18896 msgctxt "drawnotebookbar|DevLabel" msgid "~Tools" -msgstr "" +msgstr "เ~ครื่องมือ" #. uuFFm #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2953 msgctxt "notebookbar_draw_compact|FileMenuButton" msgid "_File" -msgstr "" +msgstr "แ_ฟ้ม" #. oum9B #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:3002 msgctxt "notebookbar_draw_compact|FileLabel" msgid "~File" -msgstr "" +msgstr "แ~ฟ้ม" #. FcC26 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4395 msgctxt "notebookbar_draw_compact|HomeMenuButton" msgid "_Home" -msgstr "" +msgstr "_บ้าน" #. msJmR #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4447 msgctxt "notebookbar_draw_compact|HomeLabel" msgid "~Home" -msgstr "" +msgstr "~บ้าน" #. j6zsX #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5006 msgctxt "notebookbar_draw_compact|FieldMenuButton" msgid "Fiel_d" -msgstr "" +msgstr "ช่อ_งข้อมูล" #. ZDsWu #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5546 msgctxt "notebookbar_draw_compact|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "แ_ทรก" #. d8cey #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5597 msgctxt "notebookbar_draw_compact|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "แ~ทรก" #. kkPza #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6296 msgctxt "notebookbar_draw_compact|LayoutMenuButton" msgid "Layout" -msgstr "" +msgstr "ผังวาง" #. 2wBCF #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6348 msgctxt "notebookbar_draw_compact|LayoutLabel" msgid "~Layout" -msgstr "" +msgstr "~ผังวาง" #. GG7uL #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6863 msgctxt "notebookbar_draw_compact|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "_ตรวจทาน" #. twxEq #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6915 msgctxt "notebookbar_draw_compact|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "~ตรวจทาน" #. H5eNL #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7610 msgctxt "notebookbar_draw_compact|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "มุ_มมอง" #. GGEXu #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7662 msgctxt "notebookbar_draw_compact|ViewLabel" msgid "~View" -msgstr "" +msgstr "มุ~มมอง" #. CqEAM #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9144 msgctxt "notebookbar_draw_compact|TextMenuButton" msgid "T_ext" -msgstr "" +msgstr "_ข้อความ" #. LFcJC #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9198 msgctxt "notebookbar_draw_compact|ReferencesLabel" msgid "T~ext" -msgstr "" +msgstr "~ข้อความ" #. sdACh #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10891 msgctxt "notebookbar_draw_compact|TableMenuButton" msgid "T_able" -msgstr "" +msgstr "ตา_ราง" #. GEmbu #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10942 msgctxt "notebookbar_draw_compact|TableLabel" msgid "~Table" -msgstr "" +msgstr "ตา~ราง" #. EGCcN #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291 msgctxt "notebookbar_draw_compact|ImageMenuButton" msgid "Image" -msgstr "" +msgstr "รูป_ภาพ" #. 2eQcW #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343 msgctxt "notebookbar_draw_compact|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "รูป~ภาพ" #. CezAN #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177 msgctxt "notebookbar_draw_compact|DrawMenuButton" msgid "D_raw" -msgstr "" +msgstr "วา_ด" #. tAMd5 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232 msgctxt "notebookbar_draw_compact|ShapeLabel" msgid "~Draw" -msgstr "" +msgstr "วา~ด" #. A49xv #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231 msgctxt "notebookbar_draw_compact|ObjectMenuButton" msgid "Object" -msgstr "" +msgstr "วัตถุ" #. 3gubF #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287 msgctxt "notebookbar_draw_compact|FrameLabel" msgid "~Object" -msgstr "" +msgstr "~วัตถุ" #. fDRf9 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432 msgctxt "notebookbar_draw_compact|MediaButton" msgid "_Media" -msgstr "" +msgstr "_สื่อ" #. dAbX4 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486 msgctxt "notebookbar_draw_compact|MediaLabel" msgid "~Media" -msgstr "" +msgstr "~สื่อ" #. SCSH8 #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723 msgctxt "notebookbar_draw_compact|FormButton" msgid "Fo_rm" -msgstr "" +msgstr "แบบฟอ_ร์ม" #. vzdXF #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778 msgctxt "notebookbar_draw_compact|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "แบบฟอ~ร์ม" #. zEK2o #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299 msgctxt "notebookbar_draw_compact|PrintPreviewButton" msgid "_Master" -msgstr "" +msgstr "แ_ม่แบบ" #. S3huE #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351 msgctxt "notebookbar_draw_compact|FormLabel" msgid "~Master" -msgstr "" +msgstr "แ~ม่แบบ" #. T3Z8R #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313 msgctxt "notebookbar_draw_compact|FormButton" msgid "3_d" -msgstr "" +msgstr "_3 มิติ" #. ZCuDe #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368 msgctxt "notebookbar_draw_compact|FormLabel" msgid "3~d" -msgstr "" +msgstr "~3 มิติ" #. YpLRj #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447 msgctxt "notebookbar_draw_compact|ExtensionMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ส่วนข_ยาย" #. uRrEt #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505 msgctxt "notebookbar_draw_compact|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ส่วนข~ยาย" #. L3xmd #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506 msgctxt "notebookbar_draw_compact|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "เ_ครื่องมือ" #. LhBTk #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558 msgctxt "notebookbar_draw_compact|DevLabel" msgid "~Tools" -msgstr "" +msgstr "เ~ครื่องมือ" #. BN8VW #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2322 msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction" msgid "Menubar" -msgstr "" +msgstr "แถบเมนู" #. gf8PA #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2454 msgctxt "draw_notebookbar_groupedbar_compact|MenubarView" msgid "Menubar" -msgstr "" +msgstr "แถบเมนู" #. ELBq3 #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3054 msgctxt "draw_notebookbar_groupedbar_compact|fileb" msgid "_File" -msgstr "" +msgstr "แ_ฟ้ม" #. DRGus #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3162 msgctxt "draw_notebookbar_groupedbar_compact|editb" msgid "_Edit" -msgstr "" +msgstr "แ_ก้ไข" #. vbFke #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3288 @@ -4396,14 +4321,14 @@ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12853 msgctxt "draw_notebookbar_groupedbar_compact|insertText" msgid "_Insert" -msgstr "" +msgstr "แ_ทรก" #. 4p9DA #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3444 #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12468 msgctxt "draw_notebookbar_groupedbar_compact|draw" msgid "D_raw" -msgstr "" +msgstr "ว_าด" #. DsE2d #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3872 @@ -4415,14 +4340,14 @@ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12984 msgctxt "draw_notebookbar_groupedbar_compact|insertText" msgid "_Snap" -msgstr "" +msgstr "ดู_ดติด" #. Dsr5A #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4008 #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13120 msgctxt "draw_notebookbar_groupedbar_compact|reviewb" msgid "_Review" -msgstr "" +msgstr "_ตรวจทาน" #. Pxoj8 #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4119 @@ -4430,53 +4355,53 @@ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13231 msgctxt "draw_notebookbar_groupedbar_compact|viewT" msgid "_View" -msgstr "" +msgstr "มุ_มมอง" #. cjxQa #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4228 #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13363 msgctxt "draw_notebookbar_groupedbar_compact|FormButton" msgid "Fo_rm" -msgstr "" +msgstr "แบบฟอ_ร์ม" #. eAioD #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4320 msgctxt "draw_notebookbar_groupedbar_compact|ExtensionMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ส่วนข_ยาย" #. c3M8j #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4479 #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5490 msgctxt "draw_notebookbar_groupedbar_compact|formatt" msgid "F_ont" -msgstr "" +msgstr "แบบ_อักษร" #. pUqDJ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4793 #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5719 msgctxt "draw_notebookbar_groupedbar_compact|paragrapht" msgid "_Paragraph" -msgstr "" +msgstr "ย่อ_หน้า" #. MRg9E #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5976 msgctxt "draw_notebookbar_groupedbar_compact|rowscolumnst" msgid "_Table" -msgstr "" +msgstr "ตา_ราง" #. QzCG4 #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6641 msgctxt "draw_notebookbar_groupedbar_compact|calculatet" msgid "_Calc" -msgstr "" +msgstr "_Calc" #. 5GKtj #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6907 #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11370 msgctxt "draw_notebookbar_groupedbar_compact|editdrawb" msgid "D_raw" -msgstr "" +msgstr "D_raw" #. dc5qG #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7332 @@ -4486,86 +4411,86 @@ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11795 msgctxt "draw_notebookbar_groupedbar_compact|ArrangeButton" msgid "_Arrange" -msgstr "" +msgstr "_จัดเรียง" #. ApB4j #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7783 msgctxt "draw_notebookbar_groupedbar_compact|draw" msgid "_Shape" -msgstr "" +msgstr "รู_ปร่าง" #. R5YZh #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8049 #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12198 msgctxt "draw_notebookbar_groupedbar_compact|viewDrawb" msgid "Grou_p" -msgstr "" +msgstr "กลุ่_ม" #. TCPHC #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8285 msgctxt "draw_notebookbar_groupedbar_compact|3Db" msgid "3_D" -msgstr "" +msgstr "_3 มิติ" #. hgFay #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8512 msgctxt "draw_notebookbar_groupedbar_compact|GridButton" msgid "_Fontwork" -msgstr "" +msgstr "อักษรศิ_ลป์" #. Q6ELJ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8623 msgctxt "draw_notebookbar_groupedbar_compact|GridButton" msgid "_Grid" -msgstr "" +msgstr "_กริด" #. fQJRZ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8759 msgctxt "draw_notebookbar_groupedbar_compact|graphicB" msgid "_Image" -msgstr "" +msgstr "รูป_ภาพ" #. xudwE #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9570 msgctxt "draw_notebookbar_groupedbar_compact|GridB" msgid "Fi_lter" -msgstr "" +msgstr "ตั_วกรอง" #. 8qSXf #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9851 msgctxt "draw_notebookbar_groupedbar_compact|graphicB" msgid "_Object" -msgstr "" +msgstr "_วัตถุ" #. QdUM9 #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10703 msgctxt "draw_notebookbar_groupedbar_compact|graphicB" msgid "_Media" -msgstr "" +msgstr "_สื่อ" #. kwxYr #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12332 msgctxt "draw_notebookbar_groupedbar_compact|oleB" msgid "_Master" -msgstr "" +msgstr "แ_ม่แบบ" #. bBpXr #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:14098 msgctxt "draw_notebookbar_groupedbar_compact|menub" msgid "_Menu" -msgstr "" +msgstr "_เมนู" #. n8Ekd #: sd/uiconfig/sdraw/ui/paranumberingtab.ui:27 msgctxt "paranumberingtab|checkbuttonCB_NEW_START" msgid "R_estart at this paragraph" -msgstr "" +msgstr "เริ่ม_นับใหม่ที่ย่อหน้านี้" #. bEHD3 #: sd/uiconfig/sdraw/ui/paranumberingtab.ui:56 msgctxt "paranumberingtab|checkbuttonCB_NUMBER_NEW_START" msgid "S_tart with:" -msgstr "" +msgstr "เ_ริ่มด้วย:" #. ADSMk #: sd/uiconfig/sdraw/ui/paranumberingtab.ui:78 @@ -4577,26 +4502,25 @@ #: sd/uiconfig/sdraw/ui/queryunlinkimagedialog.ui:7 msgctxt "queryunlinkimagedialog|QueryUnlinkImageDialog" msgid "Release image's link?" -msgstr "" +msgstr "ตัดลิงก์ในรูปภาพหรือไม่?" #. AwuFo #: sd/uiconfig/sdraw/ui/queryunlinkimagedialog.ui:14 msgctxt "queryunlinkimagedialog|QueryUnlinkImageDialog" msgid "This image is linked to a document." -msgstr "" +msgstr "รูปภาพนี้มีลิงก์เชื่อมโยงไปยังเอกสาร" #. E9tAG #: sd/uiconfig/sdraw/ui/queryunlinkimagedialog.ui:15 msgctxt "queryunlinkimagedialog|QueryUnlinkImageDialog" msgid "Do you want to unlink the image in order to edit it?" -msgstr "" +msgstr "คุณต้องการตัดลิงก์ในรูปภาพเพื่อแก้ไขรูปภาพหรือไม่?" #. wEVvC #: sd/uiconfig/sdraw/ui/vectorize.ui:27 -#, fuzzy msgctxt "vectorize|VectorizeDialog" msgid "Convert to Polygon" -msgstr "แปลง %1 เป็นรูปหลายเหลี่ยม" +msgstr "แปลงเป็นรูปหลายเหลี่ยม" #. GjSvT #: sd/uiconfig/sdraw/ui/vectorize.ui:45 @@ -4608,32 +4532,31 @@ #: sd/uiconfig/sdraw/ui/vectorize.ui:52 msgctxt "vectorize|extended_tip|preview" msgid "Previews the converted image without applying the changes." -msgstr "" +msgstr "แสดงตัวอย่างรูปภาพที่แปลงแล้วโดยยังไม่ต้องเปลี่ยนแปลงจริง" #. 4LBUQ #: sd/uiconfig/sdraw/ui/vectorize.ui:126 -#, fuzzy msgctxt "vectorize|label2" msgid "Number of colors:" -msgstr "จำนวนสำเนา" +msgstr "จำนวนสี:" #. KBsVD #: sd/uiconfig/sdraw/ui/vectorize.ui:145 msgctxt "vectorize|extended_tip|colors" msgid "Enter the number of colors to be displayed in the converted image. A polygon is generated for each occurrence of a color in the image." -msgstr "" +msgstr "ป้อนจำนวนสีที่จะแสดงในรูปภาพที่แปลงแล้ว การแปลงจะสร้างรูปหลายเหลี่ยมหนึ่งรูปสำหรับแต่ละบริเวณที่สีหนึ่งปรากฏในรูปภาพ" #. Fzf9L #: sd/uiconfig/sdraw/ui/vectorize.ui:158 msgctxt "vectorize|label3" msgid "Point reduction:" -msgstr "" +msgstr "หย่อมจุดที่ตัดออก:" #. enFzr #: sd/uiconfig/sdraw/ui/vectorize.ui:177 msgctxt "vectorize|extended_tip|points" msgid "Removes color polygons that are smaller than the pixel value you enter." -msgstr "" +msgstr "ลบรูปหลายเหลี่ยมสีที่มีขนาดเล็กกว่าจำนวนจุดที่คุณป้อน" #. 2xaFF #: sd/uiconfig/sdraw/ui/vectorize.ui:191 @@ -4645,147 +4568,133 @@ #: sd/uiconfig/sdraw/ui/vectorize.ui:210 msgctxt "vectorize|extended_tip|tiles" msgid "Enter the size of the rectangle for the background fill." -msgstr "" +msgstr "ป้อนขนาดของรูปสี่เหลี่ยมผืนผ้าย่อยๆ สำหรับการระบายพื้นหลัง" #. 2jDqG #: sd/uiconfig/sdraw/ui/vectorize.ui:221 msgctxt "vectorize|fillholes" msgid "_Fill holes" -msgstr "" +msgstr "เ_ติมช่องโหว่" #. AF6Bf #: sd/uiconfig/sdraw/ui/vectorize.ui:229 msgctxt "vectorize|extended_tip|fillholes" msgid "Fills the color gaps caused by applying a point reduction." -msgstr "" +msgstr "เติมช่องว่างของสีที่เกิดจากการตัดหย่อมจุดสี" #. ZmPtn #: sd/uiconfig/sdraw/ui/vectorize.ui:259 msgctxt "vectorize|label5" msgid "Source image:" -msgstr "" +msgstr "รูปภาพต้นทาง:" #. HYpvA #: sd/uiconfig/sdraw/ui/vectorize.ui:273 msgctxt "vectorize|label6" msgid "Vectorized image:" -msgstr "" +msgstr "รูปภาพที่แปลงเป็นเวกเตอร์:" #. 8hJxb #: sd/uiconfig/sdraw/ui/vectorize.ui:372 msgctxt "vectorize|extended_tip|VectorizeDialog" msgid "Converts the selected object to a polygon (a closed object bounded by straight lines)." -msgstr "" +msgstr "แปลงวัตถุที่เลือกเป็นรูปหลายเหลี่ยม (วัตถุขอบปิดที่ล้อมด้วยเส้นตรงหลายเส้น)" #. oQWMw #: sd/uiconfig/simpress/ui/annotation.ui:12 -#, fuzzy msgctxt "annotationmenu|reply" msgid "_Reply" -msgstr "~ตอบ" +msgstr "_ตอบ" #. rtez6 #: sd/uiconfig/simpress/ui/annotation.ui:26 -#, fuzzy msgctxt "annotationmenu|delete" msgid "_Delete Comment" -msgstr "ลบความคิดเห็น" +msgstr "_ลบความคิดเห็น" #. gAzBF #: sd/uiconfig/simpress/ui/annotation.ui:34 -#, fuzzy msgctxt "annotationmenu|deleteby" msgid "Delete All Comments b_y %1" -msgstr "ลบความคิดเห็นทั้งหมดโ~ดย %1" +msgstr "ลบความคิดเห็นทั้งหมดโ_ดย %1" #. VUb8r #: sd/uiconfig/simpress/ui/annotation.ui:42 -#, fuzzy msgctxt "annotationmenu|deleteall" msgid "Delete _All Comments" -msgstr "ลบความคิดเห็นทั้งหมด" +msgstr "ลบความคิดเห็น_ทั้งหมด" #. vGSve #: sd/uiconfig/simpress/ui/annotationtagmenu.ui:12 -#, fuzzy msgctxt "annotationtagmenu|reply" msgid "_Reply" -msgstr "~ตอบ" +msgstr "_ตอบ" #. z4GFf #: sd/uiconfig/simpress/ui/annotationtagmenu.ui:26 -#, fuzzy msgctxt "annotationtagmenu|delete" msgid "_Delete Comment" -msgstr "ลบความคิดเห็น" +msgstr "_ลบความคิดเห็น" #. qtvyS #: sd/uiconfig/simpress/ui/annotationtagmenu.ui:34 -#, fuzzy msgctxt "annotationtagmenu|deleteby" msgid "Delete All Comments b_y %1" -msgstr "ลบความคิดเห็นทั้งหมดโ~ดย %1" +msgstr "ลบความคิดเห็นทั้งหมดโ_ดย %1" #. fByWA #: sd/uiconfig/simpress/ui/annotationtagmenu.ui:42 -#, fuzzy msgctxt "annotationtagmenu|deleteall" msgid "Delete _All Comments" -msgstr "ลบความคิดเห็นทั้งหมด" +msgstr "ลบความคิดเห็น_ทั้งหมด" #. bCCCX #: sd/uiconfig/simpress/ui/clientboxfragment.ui:13 msgctxt "clientboxfragment|STR_DEAUTHORISE_CLIENT" msgid "Remove Client Authorization" -msgstr "" +msgstr "ลบการยืนยันสิทธิ์ของลูกข่าย" #. 9UB3T #: sd/uiconfig/simpress/ui/clientboxfragment.ui:43 msgctxt "clientboxfragment|STR_ENTER_PIN" msgid "Enter PIN:" -msgstr "" +msgstr "ป้อน PIN:" #. 8BrX8 #: sd/uiconfig/simpress/ui/currentmastermenu.ui:12 -#, fuzzy msgctxt "currentmastermenu|applyall" msgid "_Apply to All Slides" -msgstr "ใช้กับทุกภาพนิ่ง" +msgstr "ใช้กับภาพนิ่ง_ทั้งหมด" #. 3sqfF #: sd/uiconfig/simpress/ui/currentmastermenu.ui:20 -#, fuzzy msgctxt "currentmastermenu|applyselect" msgid "Apply to _Selected Slides" -msgstr "ใช้~กับภาพนิ่งที่เลือก" +msgstr "ใช้กับภาพนิ่งที่เ_ลือก" #. hxmNR #: sd/uiconfig/simpress/ui/currentmastermenu.ui:34 -#, fuzzy msgctxt "currentmastermenu|edit" msgid "_Edit Master..." -msgstr "แ~ก้ไขหน้าหลัก..." +msgstr "แ_ก้ไขหน้าแม่แบบ..." #. cwNbj #: sd/uiconfig/simpress/ui/currentmastermenu.ui:42 -#, fuzzy msgctxt "currentmastermenu|delete" msgid "D_elete Master" -msgstr "ลบเค้าโครงหลัก" +msgstr "ล_บหน้าแม่แบบ" #. 6nNHe #: sd/uiconfig/simpress/ui/currentmastermenu.ui:56 -#, fuzzy msgctxt "currentmastermenu|large" msgid "Show _Large Preview" -msgstr "แสดงตัวอย่างขนาดใ~หญ่" +msgstr "แสดงตัวอย่างขนาดใ_หญ่" #. kUpxX #: sd/uiconfig/simpress/ui/currentmastermenu.ui:64 -#, fuzzy msgctxt "currentmastermenu|small" msgid "Show S_mall Preview" -msgstr "แสดงตัวอย่างขนาดเ~ล็ก" +msgstr "แสดงตัวอย่างขนาดเล็_ก" #. PbBwr #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:45 @@ -4797,25 +4706,25 @@ #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:110 msgctxt "customanimationeffecttab|smooth_start" msgid "Accelerated start" -msgstr "" +msgstr "เร่งตอนเริ่ม" #. cNVdS #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:117 msgctxt "customanimationeffecttab|extended_tip|smooth_start" msgid "Enable this option to assign a gradually increasing speed to the start of the effect." -msgstr "" +msgstr "เปิดใช้ตัวเลือกนี้เพื่อให้ค่อยๆ เพิ่มความเร็วขณะเริ่มของลูกเล่น" #. C7CRJ #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:129 msgctxt "customanimationeffecttab|smooth_end" msgid "Decelerated end" -msgstr "" +msgstr "หน่วงตอนท้าย" #. 9yomv #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:136 msgctxt "customanimationeffecttab|extended_tip|smooth_end" msgid "Enable this option to assign a gradually decreasing speed to the end of the effect." -msgstr "" +msgstr "เปิดใช้ตัวเลือกนี้เพื่อให้ค่อยๆ ลดความเร็วในช่วงท้ายของลูกเล่น" #. n6GjH #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:159 @@ -4827,222 +4736,221 @@ #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:193 msgctxt "customanimationeffecttab|aeffect_label" msgid "A_fter animation:" -msgstr "" +msgstr "ห_ลังการเคลื่อนไหว:" #. uMyFB #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:207 msgctxt "customanimationeffecttab|sound_label" msgid "_Sound:" -msgstr "" +msgstr "เ_สียง:" #. zeE4a #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:221 -#, fuzzy msgctxt "customanimationeffecttab|text_animation_label" msgid "_Text animation:" -msgstr "ข้อความเคลื่อนไหว" +msgstr "การเคลื่อนไหว_ข้อความ:" #. DUrNg #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:235 msgctxt "customanimationeffecttab|dim_color_label" msgid "Di_m color:" -msgstr "" +msgstr "สีห_รี่:" #. KrjQe #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:258 msgctxt "customanimationeffecttab|extended_tip|sound_list" msgid "Select a sound from the Gallery or select one of the special entries." -msgstr "" +msgstr "เลือกเสียงจากคลังเสียงหรือเลือกจากรายการพิเศษ" #. XcRTu #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:278 msgctxt "customanimationeffecttab|extended_tip|sound_preview" msgid "Plays the selected sound file." -msgstr "" +msgstr "เล่นแฟ้มเสียงที่เลือก" #. EwZ9F #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:309 msgctxt "customanimationeffecttab|extended_tip|dim_color_list" msgid "Select the dim color." -msgstr "" +msgstr "เลือกสีที่ใช้หรี่" #. qAefu #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:327 msgctxt "customanimationeffecttab|text_delay_label" msgid "Delay between characters" -msgstr "" +msgstr "หน่วงเวลาระหว่างตัวอักษร" #. DQV2T #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:348 msgctxt "customanimationeffecttab|extended_tip|text_delay" msgid "Specifies the percentage of delay between animations of words or letters." -msgstr "" +msgstr "ระบุเปอร์เซ็นต์ของเวลาหน่วงระหว่างการเคลื่อนไหวคำหรือตัวอักษร" #. mimJe #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:372 msgctxt "customanimationeffecttab|aeffect_list" msgid "Don't dim" -msgstr "" +msgstr "ไม่หรี่" #. Aj8J7 #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:373 msgctxt "customanimationeffecttab|aeffect_list" msgid "Dim with color" -msgstr "" +msgstr "หรี่ด้วยสี" #. RiGMP #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:374 msgctxt "customanimationeffecttab|aeffect_list" msgid "Hide after animation" -msgstr "" +msgstr "ซ่อนหลังจากเคลื่อนไหว" #. ephP9 #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:375 msgctxt "customanimationeffecttab|aeffect_list" msgid "Hide on next animation" -msgstr "" +msgstr "ซ่อนเมื่อเล่นการเคลื่อนไหวถัดไป" #. PZg2D #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:379 msgctxt "customanimationeffecttab|extended_tip|aeffect_list" msgid "Select a color to be shown after the animation ends, or select another after-effect from the list" -msgstr "" +msgstr "เลือกสีที่จะแสดงหลังจากจบการเคลื่อนไหว หรือเลือกวิธีจบลูกเล่นจากรายชื่อ" #. 7k6dN #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:395 msgctxt "customanimationeffecttab|text_animation_list" msgid "All at once" -msgstr "" +msgstr "ทั้งหมดพร้อมกัน" #. qcpqM #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:396 msgctxt "customanimationeffecttab|text_animation_list" msgid "Word by word" -msgstr "" +msgstr "ทีละคำ" #. DUoYo #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:397 msgctxt "customanimationeffecttab|text_animation_list" msgid "Letter by letter" -msgstr "" +msgstr "ทีละตัวอักษร" #. CFDW6 #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:401 msgctxt "customanimationeffecttab|extended_tip|text_animation_list" msgid "Select the animation mode for the text of the current shape" -msgstr "" +msgstr "เลือกวิธีเคลื่อนไหวข้อความของรูปร่างปัจจุบัน" #. vF4Wp #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:416 msgctxt "customanimationeffecttab|label4" msgid "Enhancement" -msgstr "" +msgstr "สิ่งเพิ่มพิเศษ" #. GKUGV #: sd/uiconfig/simpress/ui/customanimationfragment.ui:33 #: sd/uiconfig/simpress/ui/customanimationfragment.ui:131 msgctxt "customanimationfragment|25" msgid "Tiny" -msgstr "" +msgstr "จิ๋ว" #. KFKEz #: sd/uiconfig/simpress/ui/customanimationfragment.ui:41 #: sd/uiconfig/simpress/ui/customanimationfragment.ui:139 msgctxt "customanimationfragment|50" msgid "Smaller" -msgstr "" +msgstr "เล็ก" #. 6PRME #: sd/uiconfig/simpress/ui/customanimationfragment.ui:49 #: sd/uiconfig/simpress/ui/customanimationfragment.ui:147 msgctxt "customanimationfragment|150" msgid "Larger" -msgstr "" +msgstr "ใหญ่" #. kt7nE #: sd/uiconfig/simpress/ui/customanimationfragment.ui:57 #: sd/uiconfig/simpress/ui/customanimationfragment.ui:155 msgctxt "customanimationfragment|400" msgid "Extra Large" -msgstr "" +msgstr "ใหญ่พิเศษ" #. BzHuh #: sd/uiconfig/simpress/ui/customanimationfragment.ui:69 msgctxt "customanimationfragment|90" msgid "Quarter Spin" -msgstr "" +msgstr "หนึ่งในสี่รอบ" #. qJUof #: sd/uiconfig/simpress/ui/customanimationfragment.ui:77 msgctxt "customanimationfragment|180" msgid "Half Spin" -msgstr "" +msgstr "ครึ่งรอบ" #. ZPJWF #: sd/uiconfig/simpress/ui/customanimationfragment.ui:85 msgctxt "customanimationfragment|360" msgid "Full Spin" -msgstr "" +msgstr "เต็มรอบ" #. SgA3D #: sd/uiconfig/simpress/ui/customanimationfragment.ui:93 msgctxt "customanimationfragment|720" msgid "Two Spins" -msgstr "" +msgstr "สองรอบ" #. esALs #: sd/uiconfig/simpress/ui/customanimationfragment.ui:107 msgctxt "customanimationfragment|clockwise" msgid "Clockwise" -msgstr "" +msgstr "ตามเข็มนาฬิกา" #. eoS4e #: sd/uiconfig/simpress/ui/customanimationfragment.ui:115 msgctxt "customanimationfragment|counterclock" msgid "Counter-clockwise" -msgstr "" +msgstr "ทวนเข็มนาฬิกา" #. BCJxz #: sd/uiconfig/simpress/ui/customanimationfragment.ui:169 msgctxt "customanimationfragment|hori" msgid "Horizontal" -msgstr "" +msgstr "แนวนอน" #. MhEEA #: sd/uiconfig/simpress/ui/customanimationfragment.ui:177 msgctxt "customanimationfragment|vert" msgid "Vertical" -msgstr "" +msgstr "แนวตั้ง" #. 9AEka #: sd/uiconfig/simpress/ui/customanimationfragment.ui:185 msgctxt "customanimationfragment|both" msgid "Both" -msgstr "" +msgstr "ทั้งสองแนว" #. acr6z #: sd/uiconfig/simpress/ui/customanimationfragment.ui:197 msgctxt "customanimationfragment|bold" msgid "Bold" -msgstr "" +msgstr "ตัวหนา" #. FsHZh #: sd/uiconfig/simpress/ui/customanimationfragment.ui:205 msgctxt "customanimationfragment|italic" msgid "Italic" -msgstr "" +msgstr "ตัวเอียง" #. PGZnG #: sd/uiconfig/simpress/ui/customanimationfragment.ui:213 msgctxt "customanimationfragment|underline" msgid "Underlined" -msgstr "" +msgstr "ขีดเส้นใต้" #. icBD4 #: sd/uiconfig/simpress/ui/customanimationproperties.ui:8 msgctxt "customanimationproperties|CustomAnimationProperties" msgid "Effect Options" -msgstr "ตัวเลือกลูกเล่น" +msgstr "ตัวเลือกของลูกเล่น" #. ECVxK #: sd/uiconfig/simpress/ui/customanimationproperties.ui:124 @@ -5054,37 +4962,37 @@ #: sd/uiconfig/simpress/ui/customanimationproperties.ui:171 msgctxt "customanimationproperties|timing" msgid "Timing" -msgstr "" +msgstr "ลำดับเวลา" #. JSeoo #: sd/uiconfig/simpress/ui/customanimationproperties.ui:219 msgctxt "customanimationproperties|textanim" msgid "Text Animation" -msgstr "ข้อความเคลื่อนไหว" +msgstr "การเคลื่อนไหวข้อความ" #. FcztB #: sd/uiconfig/simpress/ui/customanimationspanel.ui:140 msgctxt "customanimationspanel|extended_tip|custom_animation_list" msgid "The animation list displays all animations for the current slide." -msgstr "" +msgstr "รายชื่อการเคลื่อนไหวนี้แสดงการเคลื่อนไหวทั้งหมดในภาพนิ่งปัจจุบัน" #. VBxbo #: sd/uiconfig/simpress/ui/customanimationspanel.ui:171 msgctxt "customanimationspanel|STR_CUSTOMANIMATION_LIST_HELPTEXT" msgid "First select the slide element and then click 'Add' to add an animation effect." -msgstr "" +msgstr "เลือกส่วนประกอบของภาพนิ่งก่อน แล้วคลิก 'เพิ่ม' เพื่อเพิ่มลูกเล่นการเคลื่อนไหว" #. wWeBD #: sd/uiconfig/simpress/ui/customanimationspanel.ui:215 msgctxt "customanimationspanel|lbEffect" msgid "Effects" -msgstr "" +msgstr "ลูกเล่น" #. WGWNA #: sd/uiconfig/simpress/ui/customanimationspanel.ui:236 msgctxt "customanimationspanel|add" msgid "_Add" -msgstr "" +msgstr "เ_พิ่ม" #. nRqGR #: sd/uiconfig/simpress/ui/customanimationspanel.ui:240 @@ -5096,7 +5004,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:246 msgctxt "customanimationspanel|extended_tip|add_effect" msgid "Adds another animation effect for the selected object on the slide." -msgstr "" +msgstr "เพิ่มลูกเล่นการเคลื่อนไหวสำหรับวัตถุที่เลือกในภาพนิ่ง" #. vitMM #: sd/uiconfig/simpress/ui/customanimationspanel.ui:261 @@ -5108,7 +5016,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:267 msgctxt "customanimationspanel|extended_tip|remove_effect" msgid "Removes the selected animation effects from the animation list." -msgstr "" +msgstr "เอาลูกเล่นการเคลื่อนไหวที่เลือกออกจากรายชื่อการเคลื่อนไหว" #. 3wHRp #: sd/uiconfig/simpress/ui/customanimationspanel.ui:282 @@ -5120,7 +5028,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:288 msgctxt "customanimationspanel|extended_tip|move_up" msgid "Click one of the buttons to move the selected animation effect up or down in the list." -msgstr "" +msgstr "คลิกเพื่อเลื่อนลูกเล่นการเคลื่อนไหวที่เลือกขึ้นในรายชื่อ" #. jEksa #: sd/uiconfig/simpress/ui/customanimationspanel.ui:303 @@ -5132,20 +5040,19 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:309 msgctxt "customanimationspanel|extended_tip|move_down" msgid "Click one of the buttons to move the selected animation effect up or down in the list." -msgstr "" +msgstr "คลิกเพื่อเลื่อนลูกเล่นการเคลื่อนไหวที่เลือกลงในรายชื่อ" #. wCc89 #: sd/uiconfig/simpress/ui/customanimationspanel.ui:331 -#, fuzzy msgctxt "customanimationspanel|categorylabel" msgid "Category:" -msgstr "~ประเภท:" +msgstr "ประเภท:" #. jQcZZ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:345 msgctxt "customanimationspanel|categorylb" msgid "Entrance" -msgstr "" +msgstr "เข้า" #. 2qTvP #: sd/uiconfig/simpress/ui/customanimationspanel.ui:346 @@ -5155,21 +5062,18 @@ #. TZeh8 #: sd/uiconfig/simpress/ui/customanimationspanel.ui:347 -#, fuzzy msgctxt "customanimationspanel|categorylb" msgid "Exit" msgstr "ออก" #. N8Xvu #: sd/uiconfig/simpress/ui/customanimationspanel.ui:348 -#, fuzzy msgctxt "customanimationspanel|categorylb" msgid "Motion Paths" msgstr "เส้นทางการเคลื่อนที่" #. qDYCQ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:349 -#, fuzzy msgctxt "customanimationspanel|categorylb" msgid "Misc Effects" msgstr "ลูกเล่นเบ็ดเตล็ด" @@ -5178,26 +5082,25 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:353 msgctxt "customanimationspanel|extended_tip|categorylb" msgid "Select an animation effect category." -msgstr "" +msgstr "เลือกประเภทของลูกเล่นการเคลื่อนไหว" #. EHRAp #: sd/uiconfig/simpress/ui/customanimationspanel.ui:370 -#, fuzzy msgctxt "customanimationspanel|effectlabel" msgid "Effect:" -msgstr "ลูกเล่น" +msgstr "ลูกเล่น:" #. MEJrn #: sd/uiconfig/simpress/ui/customanimationspanel.ui:419 msgctxt "customanimationspanel|extended_tip|effect_list" msgid "Select an animation effect." -msgstr "" +msgstr "เลือกลูกเล่นการเคลื่อนไหว" #. LGuGy #: sd/uiconfig/simpress/ui/customanimationspanel.ui:435 msgctxt "customanimationspanel|effect_label" msgid "Options" -msgstr "" +msgstr "ตัวเลือก" #. GDYfC #: sd/uiconfig/simpress/ui/customanimationspanel.ui:452 @@ -5209,25 +5112,25 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:466 msgctxt "customanimationspanel|start_effect_list" msgid "On click" -msgstr "" +msgstr "เมื่อคลิก" #. FNFGr #: sd/uiconfig/simpress/ui/customanimationspanel.ui:467 msgctxt "customanimationspanel|start_effect_list" msgid "With previous" -msgstr "" +msgstr "พร้อมอันก่อน" #. dCfj4 #: sd/uiconfig/simpress/ui/customanimationspanel.ui:468 msgctxt "customanimationspanel|start_effect_list" msgid "After previous" -msgstr "" +msgstr "ต่อจากอันก่อน" #. iboET #: sd/uiconfig/simpress/ui/customanimationspanel.ui:472 msgctxt "customanimationspanel|extended_tip|start_effect_list" msgid "Displays when the selected animation effect should be started." -msgstr "" +msgstr "ระบุว่าลูกเล่นการเคลื่อนไหวที่เลือกจะเริ่มเมื่อใด" #. 8AUq9 #: sd/uiconfig/simpress/ui/customanimationspanel.ui:486 @@ -5245,20 +5148,19 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:504 msgctxt "customanimationspanel|extended_tip|more_properties" msgid "Specifies additional properties for the selected element in the Custom Animations pane." -msgstr "" +msgstr "ระบุค่าเพิ่มเติมสำหรับส่วนประกอบที่เลือกในช่องกำหนดการเคลื่อนไหว" #. QWndb #: sd/uiconfig/simpress/ui/customanimationspanel.ui:518 -#, fuzzy msgctxt "customanimationspanel|effect_duration" msgid "D_uration:" -msgstr "ระยะเวลา" +msgstr "ระยะเ_วลา:" #. Ewipq #: sd/uiconfig/simpress/ui/customanimationspanel.ui:536 msgctxt "customanimationspanel|extended_tip|anim_duration" msgid "Specifies the duration of the selected animation effect." -msgstr "" +msgstr "ระบุระยะเวลาของการเล่นลูกเล่นการเคลื่อนไหวที่เลือก" #. 2cGAb #: sd/uiconfig/simpress/ui/customanimationspanel.ui:550 @@ -5270,11 +5172,10 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:568 msgctxt "customanimationspanel|extended_tip|delay_value" msgid "The animation starts delayed by this amount of time." -msgstr "" +msgstr "การเคลื่อนไหวจะเริ่มหลังจากหน่วงเวลาเป็นระยะเวลานี้" #. J2bC5 #: sd/uiconfig/simpress/ui/customanimationspanel.ui:590 -#, fuzzy msgctxt "customanimationspanel|auto_preview" msgid "Automatic Preview" msgstr "แสดงตัวอย่างอัตโนมัติ" @@ -5283,141 +5184,139 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:598 msgctxt "customanimationspanel|extended_tip|auto_preview" msgid "Select to preview new or edited effects on the slide while you assign them." -msgstr "" +msgstr "เลือกเพื่อให้แสดงตัวอย่างลูกเล่นที่เพิ่มใหม่หรือแก้ไขในภาพนิ่งขณะที่คุณกำหนดค่า" #. KP8UC #: sd/uiconfig/simpress/ui/customanimationspanel.ui:610 -#, fuzzy msgctxt "customanimationspanel|play" msgid "Play" -msgstr "เ~ล่น" +msgstr "เล่น" #. Bn67v #: sd/uiconfig/simpress/ui/customanimationspanel.ui:614 -#, fuzzy msgctxt "customanimationspanel|play|tooltip_text" msgid "Preview Effect" -msgstr "แสดงตัวอย่างวัตถุ" +msgstr "แสดงตัวอย่างลูกเล่น" #. sUTTG #: sd/uiconfig/simpress/ui/customanimationspanel.ui:621 msgctxt "customanimationspanel|extended_tip|play" msgid "Plays the selected animation effect in the preview." -msgstr "" +msgstr "เล่นลูกเล่นการเคลื่อนไหวที่เลือกในภาพตัวอย่าง" #. LBEzG #: sd/uiconfig/simpress/ui/customanimationspanel.ui:633 msgctxt "customanimationspanel|box1_label" msgid "Animation Deck" -msgstr "" +msgstr "ช่องเครื่องมือภาพเคลื่อนไหว" #. bUvjt #: sd/uiconfig/simpress/ui/customanimationspanel.ui:645 msgctxt "customanimationspanel|custom_animation_list_label" msgid "Animation List" -msgstr "" +msgstr "รายชื่อการเคลื่อนไหว" #. F7AZL #: sd/uiconfig/simpress/ui/customanimationspanel.ui:701 msgctxt "customanimationspanel|extended_tip|CustomAnimationsPanel" msgid "Assigns effects to selected objects." -msgstr "" +msgstr "กำหนดลูกเล่นให้กับวัตถุที่เลือก" #. rYtTX #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:30 msgctxt "customanimationtexttab|group_text_label" msgid "_Group text:" -msgstr "" +msgstr "จัด_กลุ่มข้อความ:" #. 2eY3z #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:51 msgctxt "customanimationtexttab|extended_tip|auto_after_value" msgid "Enter an additional delay in seconds to animate subsequent paragraphs." -msgstr "" +msgstr "ป้อนเวลาหน่วงเป็นวินาทีที่จะแทรกระหว่างการเคลื่อนไหวย่อหน้าลำดับถัดกัน" #. ujWxH #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:62 msgctxt "customanimationtexttab|auto_after" msgid "_Automatically after:" -msgstr "โดย_อัตโนมัติหลังจาก" +msgstr "โดย_อัตโนมัติหลังจาก:" #. DLeHn #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:70 msgctxt "customanimationtexttab|extended_tip|auto_after" msgid "If \"Group text - By 1st level paragraphs\" is selected, the paragraphs are animated one after the other." -msgstr "" +msgstr "ถ้าเลือก \"จัดกลุ่มข้อความ - ตามย่อหน้าระดับแรก\" ก็จะเคลื่อนไหวย่อหน้าทีละย่อหน้าตามลำดับ" #. KEqJZ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:84 msgctxt "customanimationtexttab|group_text_list" msgid "As one object" -msgstr "" +msgstr "เป็นวัตถุชิ้นเดียว" #. BAUhG #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:85 msgctxt "customanimationtexttab|group_text_list" msgid "All paragraphs at once" -msgstr "" +msgstr "ทุกย่อหน้าพร้อมกัน" #. A64BF #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:86 msgctxt "customanimationtexttab|group_text_list" msgid "By 1st level paragraphs" -msgstr "" +msgstr "ตามย่อหน้าระดับแรก" #. ggJkd #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:87 msgctxt "customanimationtexttab|group_text_list" msgid "By 2nd level paragraphs" -msgstr "" +msgstr "ตามย่อหน้าระดับที่สอง" #. 6gKbP #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:88 msgctxt "customanimationtexttab|group_text_list" msgid "By 3rd level paragraphs" -msgstr "" +msgstr "ตามย่อหน้าระดับที่สาม" #. GNWBw #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:89 msgctxt "customanimationtexttab|group_text_list" msgid "By 4th level paragraphs" -msgstr "" +msgstr "ตามย่อหน้าระดับที่สี่" #. AjqaJ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:90 msgctxt "customanimationtexttab|group_text_list" msgid "By 5th level paragraphs" -msgstr "" +msgstr "ตามย่อหน้าระดับที่ห้า" #. HDHBz #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:94 msgctxt "customanimationtexttab|extended_tip|group_text_list" msgid "Specifies how multiple paragraphs are animated" -msgstr "" +msgstr "ระบุวิธีเคลื่อนไหวย่อหน้าหลายย่อหน้า" #. LDD3y #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:112 msgctxt "customanimationtexttab|animate_shape" msgid "Animate attached _shape" -msgstr "" +msgstr "เคลื่อนไหวรูป_ร่างที่ข้อความแนบอยู่" #. T6S58 #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:120 msgctxt "customanimationtexttab|extended_tip|animate_shape" msgid "Deselect this box to animate only the text, not the shape." -msgstr "" +msgstr "ตัดการเลือกกล่องกานี้เพื่อเคลื่อนไหวเฉพาะข้อความ ไม่ต้องเคลื่อนไหวตัวรูปร่าง" #. ir4kZ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:132 msgctxt "customanimationtexttab|reverse_order" msgid "_In reverse order" -msgstr "" +msgstr "ในลำดับย้อ_นกลับ" #. LK7yC #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:140 msgctxt "customanimationtexttab|extended_tip|reverse_order" msgid "Animates the paragraphs in reverse order." -msgstr "" +msgstr "เคลื่อนไหวย่อหน้าต่างๆ ในลำดับย้อนกลับ" #. QGBar #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:44 @@ -5433,313 +5332,303 @@ #. 4nFBf #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:72 -#, fuzzy msgctxt "customanimationtimingtab|duration_label" msgid "D_uration:" -msgstr "ระยะเวลา" +msgstr "ระยะเ_วลา:" #. LaaB7 #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:86 -#, fuzzy msgctxt "customanimationtimingtab|repeat_label" msgid "_Repeat:" -msgstr "~ซ้ำ: " +msgstr "เ_ล่นซ้ำ:" #. jYfdE #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:103 msgctxt "customanimationtimingtab|start_list" msgid "On click" -msgstr "" +msgstr "เมื่อคลิก" #. b2hFe #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:104 msgctxt "customanimationtimingtab|start_list" msgid "With previous" -msgstr "" +msgstr "พร้อมอันก่อน" #. uDNCT #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:105 msgctxt "customanimationtimingtab|start_list" msgid "After previous" -msgstr "" +msgstr "ต่อจากอันก่อน" #. SXXYo #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:133 msgctxt "customanimationtimingtab|anim_duration|tooltip_text" msgid "Select the speed of the Animation." -msgstr "" +msgstr "กำหนดความเร็วของการเคลื่อนไหว" #. rvdMd #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:160 msgctxt "customanimationtimingtab|rewind" msgid "Rewind _when done playing" -msgstr "" +msgstr "_กรอกลับเมื่อเล่นจบ" #. jkPKA #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:179 msgctxt "customanimationtimingtab|label11" msgid "Timing" -msgstr "" +msgstr "ลำดับเวลา" #. CwXRW #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:208 msgctxt "customanimationtimingtab|rb_click_sequence" msgid "_Animate as part of click sequence" -msgstr "" +msgstr "เ_คลื่อนไหวเป็นส่วนหนึ่งของลำดับการคลิก" #. CQiDM #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:229 msgctxt "customanimationtimingtab|rb_interactive" msgid "Start _effect on click of:" -msgstr "" +msgstr "เริ่มลูกเล่_นเมื่อคลิก:" #. fLVeN #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:269 msgctxt "customanimationtimingtab|label11" msgid "Trigger" -msgstr "ตัวกระตุ้น" +msgstr "การกระตุ้น" #. noDNw #: sd/uiconfig/simpress/ui/customslideshows.ui:16 msgctxt "customslideshows|CustomSlideShows" msgid "Custom Slide Shows" -msgstr "การนำเสนอภาพนิ่งแบบกำหนดเอง" +msgstr "การแสดงภาพนิ่งแบบกำหนดเอง" #. URCgE #: sd/uiconfig/simpress/ui/customslideshows.ui:47 msgctxt "customslideshows|startshow" msgid "_Start" -msgstr "เ_ริ่มต้น" +msgstr "เ_ริ่ม" #. JZ8B7 #: sd/uiconfig/simpress/ui/customslideshows.ui:54 msgctxt "customslideshows|extended_tip|startshow" msgid "Runs the slide show. Ensure that a custom slide show is selected if you want to run a custom presentation." -msgstr "" +msgstr "เริ่มนำเสนอ คุณต้องเลือกการแสดงภาพนิ่งแบบกำหนดเองก่อนที่จะนำเสนอ" #. jiFoQ #: sd/uiconfig/simpress/ui/customslideshows.ui:73 msgctxt "customslideshows|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "บันทึกการเปลี่ยนแปลงทั้งหมดแล้วปิดกล่องโต้ตอบ" #. BvVBK #: sd/uiconfig/simpress/ui/customslideshows.ui:137 msgctxt "customslideshows|extended_tip|customshowlist" msgid "Lists the custom slide shows that are available." -msgstr "" +msgstr "แสดงรายชื่อการแสดงภาพนิ่งแบบกำหนดเองที่มี" #. 3qYYK #: sd/uiconfig/simpress/ui/customslideshows.ui:174 msgctxt "customslideshows|extended_tip|new" msgid "Add, remove or reorder slides as well as change the name of the selected custom slide show." -msgstr "" +msgstr "สร้างการแสดงภาพนิ่งแบบกำหนดเองรายการใหม่ พร้อมกับเพิ่ม ลบ หรือเปลี่ยนลำดับภาพนิ่งที่แสดง รวมทั้งตั้งชื่อการแสดงภาพนิ่งแบบกำหนดเอง" #. C9B9D #: sd/uiconfig/simpress/ui/customslideshows.ui:193 msgctxt "customslideshows|extended_tip|edit" msgid "Add, remove or reorder slides as well as change the name of the selected custom slide show." -msgstr "" +msgstr "เพิ่ม ลบ หรือเปลี่ยนลำดับภาพนิ่งที่แสดง รวมทั้งเปลี่ยนชื่อการแสดงภาพนิ่งแบบกำหนดเอง" #. yaQvx #: sd/uiconfig/simpress/ui/customslideshows.ui:205 -#, fuzzy msgctxt "customslideshows|copy" msgid "Cop_y" -msgstr "คัดลอก" +msgstr "_สำเนา" #. Vv8GG #: sd/uiconfig/simpress/ui/customslideshows.ui:212 msgctxt "customslideshows|extended_tip|copy" msgid "Creates a copy of the selected custom slide show. You can modify the name of the show by clicking Edit." -msgstr "" +msgstr "สร้างสำเนาของการแสดงภาพนิ่งแบบกำหนดเองที่เลือก คุณสามารถเปลี่ยนชื่อของสำเนาที่สร้างได้โดยคลิกปุ่ม \"แก้ไข\"" #. Vr7vj #: sd/uiconfig/simpress/ui/customslideshows.ui:231 msgctxt "customslideshows|extended_tip|delete" msgid "Deletes the selected element or elements without requiring confirmation." -msgstr "" +msgstr "ลบการแสดงภาพนิ่งแบบกำหนดเองที่เลือกโดยไม่มีการถามยืนยัน" #. 8Cf3C #: sd/uiconfig/simpress/ui/customslideshows.ui:267 msgctxt "customslideshows|extended_tip|CustomSlideShows" msgid "Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want." -msgstr "" +msgstr "กำหนดการแสดงภาพนิ่งเองโดยใช้ภาพนิ่งจากงานนำเสนอปัจจุบัน คุณสามารถเลือกเฉพาะภาพนิ่งบางส่วนที่เหมาะกับผู้ฟังของคุณได้ คุณสามารถสร้างการแสดงแบบต่างๆ ได้หลายแบบตามที่คุณต้องการ" #. KmamJ #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:24 msgctxt "definecustomslideshow|DefineCustomSlideShow" msgid "Define Custom Slide Show" -msgstr "กำหนดการแสดงภาพนิ่งที่ผู้ใช้กำหนดเอง" +msgstr "กำหนดการแสดงภาพนิ่งเอง" #. mhsyF #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:109 -#, fuzzy msgctxt "definecustomslideshow|label1" msgid "_Name:" -msgstr "ชื่อ" +msgstr "_ชื่อ:" #. sCCvq #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:128 msgctxt "definecustomslideshow|extended_tip|customname" msgid "Displays the name of the custom slide show. If you want, you can enter a new name." -msgstr "" +msgstr "แสดงชื่อของการแสดงภาพนิ่งแบบกำหนดเอง คุณสามารถป้อนชื่อใหม่ได้ถ้าต้องการ" #. HB63C #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:159 msgctxt "definecustomslideshow|label2" msgid "_Existing slides:" -msgstr "" +msgstr "ภาพนิ่งที่_มี:" #. BhVRw #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:173 msgctxt "definecustomslideshow|label3" msgid "_Selected slides:" -msgstr "" +msgstr "ภาพนิ่งที่เ_ลือก:" #. epikC #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:215 msgctxt "definecustomslideshow|extended_tip|pages" msgid "Lists all of the slides in the order in which they appear in the current document." -msgstr "" +msgstr "แสดงรายชื่อภาพนิ่งทั้งหมดที่มีตามลำดับที่ปรากฏในเอกสารปัจจุบัน" #. ybvk2 #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:260 msgctxt "definecustomslideshow|extended_tip|custompages" msgid "Lists all of the slides in the custom slide show. If you want, you can change the order of the list by dragging the slides up or down." -msgstr "" +msgstr "แสดงรายชื่อภาพนิ่งทั้งหมดที่อยู่ในการแสดงภาพนิ่งแบบกำหนดเอง คุณสามารถเปลี่ยนลำดับในรายชื่อได้ถ้าต้องการ โดยลากภาพนิ่งขึ้นลง" #. Xfj8D #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:280 msgctxt "definecustomslideshow|add" msgid ">>" -msgstr "" +msgstr ">>" #. Z6yNA #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:286 msgctxt "definecustomslideshow|extended_tip|add" msgid "Adds an existing slide to the bottom of the Selected slides list. You need to select a slide in the Existing slides list before you can use this button." -msgstr "" +msgstr "เพิ่มภาพนิ่งที่มีอยู่ลงในท้ายรายชื่อภาพนิ่งที่เลือก คุณต้องเลือกภาพนิ่งในรายชื่อภาพนิ่งที่มีก่อนที่คุณจะสามารถใช้ปุ่มนี้ได้" #. nrzGP #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:298 msgctxt "definecustomslideshow|remove" msgid "<<" -msgstr "" +msgstr "<<" #. TDYwh #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:304 msgctxt "definecustomslideshow|extended_tip|remove" msgid "Removes a slide from the Selected slides list. You need to choose a slide in the Selected slides list before you can use this button." -msgstr "" +msgstr "ลบภาพนิ่งออกจากรายชื่อภาพนิ่งที่เลือก คุณต้องเลือกภาพนิ่งในรายชื่อภาพนิ่งที่เลือกก่อนที่คุณจะสามารถใช้ปุ่มนี้ได้" #. SdCjm #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:349 msgctxt "definecustomslideshow|extended_tip|DefineCustomSlideShow" msgid "Creates a custom slide show." -msgstr "" +msgstr "สร้างการแสดงภาพนิ่งแบบกำหนดเอง" #. PsSmN #: sd/uiconfig/simpress/ui/displaywindow.ui:55 msgctxt "displaywindow|STR_DISPLAYMODE_EDITMODES" msgid "Edit Modes" -msgstr "" +msgstr "โหมดแก้ไข" #. 2ruat #: sd/uiconfig/simpress/ui/displaywindow.ui:107 msgctxt "displaywindow|STR_DISPLAYMODE_MASTERMODES" msgid "Master Modes" -msgstr "" +msgstr "โหมดแม่แบบ" #. jRSBW #: sd/uiconfig/simpress/ui/dlgfield.ui:8 -#, fuzzy msgctxt "dlgfield|EditFieldsDialog" msgid "Edit Field" -msgstr "แก้ไขแฟ้ม" +msgstr "แก้ไขช่องข้อมูล" #. pRhTV #: sd/uiconfig/simpress/ui/dlgfield.ui:99 -#, fuzzy msgctxt "dlgfield|fixedRB" msgid "_Fixed" -msgstr "คงที่" +msgstr "_คงที่" #. 6zpWe #: sd/uiconfig/simpress/ui/dlgfield.ui:108 msgctxt "dlgfield|extended_tip|fixedRB" msgid "Displays the content of the field when the field was inserted." -msgstr "" +msgstr "แสดงเนื้อหาของช่องข้อมูลตามที่เป็นอยู่ขณะแทรกช่องข้อมูล" #. VKhAG #: sd/uiconfig/simpress/ui/dlgfield.ui:120 -#, fuzzy msgctxt "dlgfield|varRB" msgid "_Variable" -msgstr "ตัวแปร" +msgstr "ไ_ม่คงที่" #. 3aENC #: sd/uiconfig/simpress/ui/dlgfield.ui:129 msgctxt "dlgfield|extended_tip|varRB" msgid "Displays the current value of the field." -msgstr "" +msgstr "แสดงค่าปัจจุบันของช่องข้อมูล" #. RAGYv #: sd/uiconfig/simpress/ui/dlgfield.ui:145 msgctxt "dlgfield|label1" msgid "Field Type" -msgstr "ประเภทเขตข้อมูล" +msgstr "ชนิดของช่องข้อมูล" #. yAfjz #: sd/uiconfig/simpress/ui/dlgfield.ui:167 -#, fuzzy msgctxt "dlgfield|label2" msgid "_Language:" -msgstr "_ภาษา" +msgstr "_ภาษา:" #. yPQhg #: sd/uiconfig/simpress/ui/dlgfield.ui:191 msgctxt "dlgfield|extended_tip|languageLB" msgid "Select the language for the field." -msgstr "" +msgstr "เลือกภาษาของช่องข้อมูล" #. WTcEe #: sd/uiconfig/simpress/ui/dlgfield.ui:222 msgctxt "dlgfield|extended_tip|formatLB" msgid "Select a display format for the field." -msgstr "" +msgstr "เลือกรูปแบบการแสดงเนื้อหาของช่องข้อมูล" #. fmuQT #: sd/uiconfig/simpress/ui/dlgfield.ui:231 -#, fuzzy msgctxt "dlgfield|label3" msgid "F_ormat" -msgstr "รูปแบบ" +msgstr "รูปแ_บบ" #. 4HTWi #: sd/uiconfig/simpress/ui/dlgfield.ui:264 msgctxt "dlgfield|extended_tip|EditFieldsDialog" msgid "Edits the properties of an inserted field." -msgstr "" +msgstr "แก้ไขคุณสมบัติของช่องข้อมูลที่แทรก" #. daSn5 #: sd/uiconfig/simpress/ui/dockinganimation.ui:96 msgctxt "dockinganimation|loopcount|tooltip_text" msgid "Loop Count" -msgstr "" +msgstr "จำนวนรอบการวนซ้ำ" #. FHA4N #: sd/uiconfig/simpress/ui/dockinganimation.ui:116 -#, fuzzy msgctxt "dockinganimation|loopcount" msgid "Max." -msgstr "มากที่สุด" +msgstr "สูงสุด" #. iNGHA #: sd/uiconfig/simpress/ui/dockinganimation.ui:120 msgctxt "dockinganimation|extended_tip|loopcount" msgid "Sets the number of times that the animation is played." -msgstr "" +msgstr "กำหนดจำนวนรอบที่จะเล่นภาพเคลื่อนไหว" #. SqcwJ #: sd/uiconfig/simpress/ui/dockinganimation.ui:133 @@ -5751,121 +5640,115 @@ #: sd/uiconfig/simpress/ui/dockinganimation.ui:139 msgctxt "dockinganimation|extended_tip|duration" msgid "Enter the number of seconds to display the current image. This option is only available if you select the Bitmap object option in the Animation group field." -msgstr "" +msgstr "ป้อนจำนวนวินาทีที่จะแสดงรูปภาพปัจจุบัน ตัวเลือกนี้จะเลือกได้ก็ต่อเมื่อคุณเลือกตัวเลือก \"วัตถุบิตแมป\" ในหัวข้อ \"กลุ่มสิ่งเคลื่อนไหว\"" #. B5sxX #: sd/uiconfig/simpress/ui/dockinganimation.ui:152 -#, fuzzy msgctxt "dockinganimation|numbitmap|tooltip_text" msgid "Image Number" -msgstr "หมายเ_ลขหน้า" +msgstr "หมายเลขรูปภาพ" #. Sv3Uq #: sd/uiconfig/simpress/ui/dockinganimation.ui:159 msgctxt "dockinganimation|extended_tip|numbitmap" msgid "Indicates the position of the current image in the animation sequence." -msgstr "" +msgstr "ระบุตำแหน่งของรูปภาพปัจจุบันในลำดับภาพเคลื่อนไหว" #. ACaXa #: sd/uiconfig/simpress/ui/dockinganimation.ui:180 -#, fuzzy msgctxt "dockinganimation|first|tooltip_text" msgid "First Image" -msgstr "หน้าแรก" +msgstr "รูปภาพแรก" #. EeVE4 #: sd/uiconfig/simpress/ui/dockinganimation.ui:185 msgctxt "dockinganimation|extended_tip|first" msgid "Jumps to the first image in the animation sequence." -msgstr "" +msgstr "กระโดดไปที่รูปภาพแรกในลำดับภาพเคลื่อนไหว" #. UBvzL #: sd/uiconfig/simpress/ui/dockinganimation.ui:199 msgctxt "dockinganimation|prev|tooltip_text" msgid "Backwards" -msgstr "" +msgstr "ย้อนกลับ" #. T3DHK #: sd/uiconfig/simpress/ui/dockinganimation.ui:204 msgctxt "dockinganimation|extended_tip|prev" msgid "Plays the animation backwards." -msgstr "" +msgstr "เล่นภาพเคลื่อนไหวย้อนกลับ" #. TcVGb #: sd/uiconfig/simpress/ui/dockinganimation.ui:218 -#, fuzzy msgctxt "dockinganimation|stop|tooltip_text" msgid "Stop" -msgstr "หยุ~ด" +msgstr "หยุด" #. cwD9G #: sd/uiconfig/simpress/ui/dockinganimation.ui:223 msgctxt "dockinganimation|extended_tip|stop" msgid "Stops playing the animation." -msgstr "" +msgstr "หยุดเล่นภาพเคลื่อนไหว" #. BSGMb #: sd/uiconfig/simpress/ui/dockinganimation.ui:237 -#, fuzzy msgctxt "dockinganimation|next|tooltip_text" msgid "Play" -msgstr "เ~ล่น" +msgstr "เล่น" #. ETZMZ #: sd/uiconfig/simpress/ui/dockinganimation.ui:242 msgctxt "dockinganimation|extended_tip|next" msgid "Plays the animation." -msgstr "" +msgstr "เล่นภาพเคลื่อนไหว" #. QBaGj #: sd/uiconfig/simpress/ui/dockinganimation.ui:256 -#, fuzzy msgctxt "dockinganimation|last|tooltip_text" msgid "Last Image" -msgstr "หน้าสุดท้าย" +msgstr "รูปภาพสุดท้าย" #. bX8rg #: sd/uiconfig/simpress/ui/dockinganimation.ui:261 msgctxt "dockinganimation|extended_tip|last" msgid "Jumps to the last image in the animation sequence." -msgstr "" +msgstr "กระโดดไปที่รูปภาพสุดท้ายในลำดับภาพเคลื่อนไหว" #. 963iG #: sd/uiconfig/simpress/ui/dockinganimation.ui:316 msgctxt "dockinganimation|group" msgid "Group object" -msgstr "" +msgstr "กลุ่มวัตถุ" #. 96C42 #: sd/uiconfig/simpress/ui/dockinganimation.ui:325 msgctxt "dockinganimation|extended_tip|group" msgid "Assembles images into a single object so that they can be moved as a group. You can still edit individual objects by double-clicking the group in the slide." -msgstr "" +msgstr "รวมรูปภาพทั้งหมดเป็นวัตถุเดียวเพื่อให้สามารถเคลื่อนไหวเป็นกลุ่มได้ คุณยังสามารถแก้ไขวัตถุรายชิ้นได้โดยดับเบิลคลิกที่กลุ่มในภาพนิ่ง" #. Cn8go #: sd/uiconfig/simpress/ui/dockinganimation.ui:336 msgctxt "dockinganimation|bitmap" msgid "Bitmap object" -msgstr "" +msgstr "วัตถุบิตแมป" #. WszFg #: sd/uiconfig/simpress/ui/dockinganimation.ui:345 msgctxt "dockinganimation|extended_tip|bitmap" msgid "Combines images into a single image." -msgstr "" +msgstr "รวมรูปภาพทั้งหมดเข้าด้วยกันเป็นวัตถุรูปภาพชิ้นเดียว" #. TjdBX #: sd/uiconfig/simpress/ui/dockinganimation.ui:363 msgctxt "dockinganimation|alignmentft" msgid "Alignment" -msgstr "การปรับแนว" +msgstr "การจัดแนว" #. Njtua #: sd/uiconfig/simpress/ui/dockinganimation.ui:376 -#, fuzzy msgctxt "dockinganimation|alignment" msgid "Top Left" -msgstr "ด้านบนซ้าย?" +msgstr "บนซ้าย" #. sPkEs #: sd/uiconfig/simpress/ui/dockinganimation.ui:377 @@ -5875,10 +5758,9 @@ #. ew2UB #: sd/uiconfig/simpress/ui/dockinganimation.ui:378 -#, fuzzy msgctxt "dockinganimation|alignment" msgid "Bottom Left" -msgstr "ด้านล่างซ้าย?" +msgstr "ล่างซ้าย" #. wYgBb #: sd/uiconfig/simpress/ui/dockinganimation.ui:379 @@ -5888,10 +5770,9 @@ #. 7NwKN #: sd/uiconfig/simpress/ui/dockinganimation.ui:380 -#, fuzzy msgctxt "dockinganimation|alignment" msgid "Centered" -msgstr "ตรงกลาง" +msgstr "กึ่งกลาง" #. fdbVN #: sd/uiconfig/simpress/ui/dockinganimation.ui:381 @@ -5901,10 +5782,9 @@ #. Lk6BJ #: sd/uiconfig/simpress/ui/dockinganimation.ui:382 -#, fuzzy msgctxt "dockinganimation|alignment" msgid "Top Right" -msgstr "ด้านบนขวา?" +msgstr "บนขวา" #. GTwHD #: sd/uiconfig/simpress/ui/dockinganimation.ui:383 @@ -5914,79 +5794,75 @@ #. f6c2X #: sd/uiconfig/simpress/ui/dockinganimation.ui:384 -#, fuzzy msgctxt "dockinganimation|alignment" msgid "Bottom Right" -msgstr "ด้านล่างขวา?" +msgstr "ล่างขวา" #. xSSDW #: sd/uiconfig/simpress/ui/dockinganimation.ui:388 msgctxt "dockinganimation|extended_tip|alignment" msgid "Aligns the images in your animation." -msgstr "" +msgstr "จัดแนวรูปภาพในภาพเคลื่อนไหวของคุณ" #. EFWzn #: sd/uiconfig/simpress/ui/dockinganimation.ui:409 msgctxt "dockinganimation|label1" msgid "Animation Group" -msgstr "" +msgstr "กลุ่มสิ่งเคลื่อนไหว" #. Bu3De #: sd/uiconfig/simpress/ui/dockinganimation.ui:449 -#, fuzzy msgctxt "dockinganimation|getone|tooltip_text" msgid "Apply Object" -msgstr "วัตถุแอปเพล็ต " +msgstr "แทรกวัตถุ" #. 9tgAf #: sd/uiconfig/simpress/ui/dockinganimation.ui:454 msgctxt "dockinganimation|extended_tip|getone" msgid "Adds selected object(s) as a single image." -msgstr "" +msgstr "เพิ่มวัตถุที่เลือกเป็นรูปภาพเดียว" #. f6tL5 #: sd/uiconfig/simpress/ui/dockinganimation.ui:468 msgctxt "dockinganimation|getall|tooltip_text" msgid "Apply Objects Individually" -msgstr "" +msgstr "แทรกวัตถุแยกชิ้น" #. ECmGc #: sd/uiconfig/simpress/ui/dockinganimation.ui:473 msgctxt "dockinganimation|extended_tip|getall" msgid "Adds an image for each selected object." -msgstr "" +msgstr "เพิ่มวัตถุที่เลือกเป็นรูปภาพแยกชิ้นกัน" #. VGN4f #: sd/uiconfig/simpress/ui/dockinganimation.ui:500 -#, fuzzy msgctxt "dockinganimation|label3" msgid "Number" -msgstr "ตัวเลข" +msgstr "จำนวน" #. 8kUXo #: sd/uiconfig/simpress/ui/dockinganimation.ui:539 -#, fuzzy msgctxt "dockinganimation|delone|tooltip_text" msgid "Delete Current Image" -msgstr "ลบดัชนีปัจจุบัน" +msgstr "ลบรูปภาพปัจจุบัน" #. 4JHCu #: sd/uiconfig/simpress/ui/dockinganimation.ui:544 msgctxt "dockinganimation|extended_tip|delone" msgid "Deletes current image from the animation sequence." -msgstr "" +msgstr "ลบรูปภาพปัจจุบันออกจากลำดับภาพเคลื่อนไหว" #. riYDF #: sd/uiconfig/simpress/ui/dockinganimation.ui:558 msgctxt "dockinganimation|delall|tooltip_text" msgid "Delete All Images" -msgstr "" +msgstr "ลบรูปภาพทั้งหมด" #. aCMF2 #: sd/uiconfig/simpress/ui/dockinganimation.ui:563 msgctxt "dockinganimation|extended_tip|delall" msgid "Deletes all of the images in the animation." -msgstr "" +msgstr "ลบรูปภาพทั้งหมดออกจากภาพเคลื่อนไหว" #. QGvVC #: sd/uiconfig/simpress/ui/dockinganimation.ui:584 @@ -5996,57 +5872,51 @@ #. WYZGD #: sd/uiconfig/simpress/ui/dockinganimation.ui:625 -#, fuzzy msgctxt "dockinganimation|create" msgid "Create" -msgstr "~สร้าง" +msgstr "สร้าง" #. bDPPc #: sd/uiconfig/simpress/ui/dockinganimation.ui:633 msgctxt "dockinganimation|extended_tip|create" msgid "Inserts the animation into the current slide." -msgstr "" +msgstr "แทรกภาพเคลื่อนไหวลงในภาพนิ่งปัจจุบัน" #. RbsTq #: sd/uiconfig/simpress/ui/dockinganimation.ui:653 msgctxt "dockinganimation|extended_tip|DockingAnimation" msgid "Creates a custom animation on the current slide." -msgstr "" +msgstr "สร้างภาพเคลื่อนไหวแบบกำหนดเองลงในภาพนิ่งปัจจุบัน" #. VYjBF #: sd/uiconfig/simpress/ui/effectmenu.ui:12 -#, fuzzy msgctxt "effectmenu|onclick" msgid "Start On _Click" -msgstr "เริ่มเมื่อ~คลิก" +msgstr "เริ่มเมื่อ_คลิก" #. 65V7C #: sd/uiconfig/simpress/ui/effectmenu.ui:22 -#, fuzzy msgctxt "effectmenu|withprev" msgid "Start _With Previous" -msgstr "เริ่ม~ด้วยก่อนหน้านี้" +msgstr "เริ่ม_พร้อมอันก่อน" #. 6CACD #: sd/uiconfig/simpress/ui/effectmenu.ui:32 -#, fuzzy msgctxt "effectmenu|afterprev" msgid "Start _After Previous" -msgstr "เริ่มห~ลังจากก่อนหน้านี้" +msgstr "เริ่ม_ต่อจากอันก่อน" #. CY3rG #: sd/uiconfig/simpress/ui/effectmenu.ui:48 -#, fuzzy msgctxt "effectmenu|options" msgid "_Effect Options..." -msgstr "ตัวเลือกลูกเล่น" +msgstr "ตัวเลือ_กของลูกเล่น..." #. FeJyb #: sd/uiconfig/simpress/ui/effectmenu.ui:56 -#, fuzzy msgctxt "effectmenu|timing" msgid "_Timing..." -msgstr "~กำหนดเวลา..." +msgstr "ลำดับเ_วลา..." #. CpukX #: sd/uiconfig/simpress/ui/effectmenu.ui:64 @@ -6056,42 +5926,36 @@ #. DXV9V #: sd/uiconfig/simpress/ui/fontsizemenu.ui:12 -#, fuzzy msgctxt "fontsizemenu|25" msgid "Tiny" -msgstr "Tiny" +msgstr "จิ๋ว" #. KeRNm #: sd/uiconfig/simpress/ui/fontsizemenu.ui:20 -#, fuzzy msgctxt "fontsizemenu|50" msgid "Smaller" -msgstr "เล็กกว่า" +msgstr "เล็ก" #. 6WKBZ #: sd/uiconfig/simpress/ui/fontsizemenu.ui:28 -#, fuzzy msgctxt "fontsizemenu|150" msgid "Larger" -msgstr "ใหญ่กว่า" +msgstr "ใหญ่" #. BWQbN #: sd/uiconfig/simpress/ui/fontsizemenu.ui:36 -#, fuzzy msgctxt "fontsizemenu|400" msgid "Extra Large" msgstr "ใหญ่พิเศษ" #. dgg5q #: sd/uiconfig/simpress/ui/fontstylemenu.ui:12 -#, fuzzy msgctxt "fontstylemenu|bold" msgid "Bold" msgstr "หนา" #. HgpdJ #: sd/uiconfig/simpress/ui/fontstylemenu.ui:20 -#, fuzzy msgctxt "fontstylemenu|italic" msgid "Italic" msgstr "เอียง" @@ -6112,19 +5976,19 @@ #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:24 msgctxt "headerfooterdialog|apply_all" msgid "Appl_y to All" -msgstr "" +msgstr "เริ่มใช้กับ_ทั้งหมด" #. X6wby #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:33 msgctxt "headerfooterdialog|extended_tip|apply_all" msgid "Applies the settings to all the slides in your presentation, including the corresponding master slides." -msgstr "" +msgstr "เริ่มใช้ค่าตั้งนี้กับภาพนิ่งทั้งหมดในงานนำเสนอของคุณ รวมถึงแม่แบบภาพนิ่งที่ใช้" #. eaqgU #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:52 msgctxt "headerfooterdialog|extended_tip|apply" msgid "Applies the current settings to the selected slides." -msgstr "" +msgstr "เริ่มใช้ค่าตั้งนี้กับภาพนิ่งที่เลือก" #. WcG5C #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:145 @@ -6136,217 +6000,211 @@ #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:192 msgctxt "headerfooterdialog|notes" msgid "Notes and Handouts" -msgstr "บันทึกและเอกสารประกอบคำบรรยาย" +msgstr "บันทึกเสริมและเอกสารแจก" #. jAdBZ #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:219 msgctxt "headerfooterdialog|extended_tip|HeaderFooterDialog" msgid "Adds or changes text in placeholders at the top and the bottom of slides and master slides." -msgstr "" +msgstr "เพิ่มหรือเปลี่ยนข้อความที่จุดยึดตำแหน่งที่ส่วนหัวและส่วนท้ายของภาพนิ่งและแม่แบบภาพนิ่ง" #. BgFsS #: sd/uiconfig/simpress/ui/headerfootertab.ui:35 -#, fuzzy msgctxt "headerfootertab|header_cb" msgid "Heade_r" -msgstr "หัวกระดาษ" +msgstr "_หัวกระดาษ" #. 7qH6R #: sd/uiconfig/simpress/ui/headerfootertab.ui:44 msgctxt "headerfootertab|extended_tip|header_cb" msgid "Adds the text that you enter in the Header text box to the top of the slide." -msgstr "" +msgstr "เพิ่มข้อความที่คุณป้อนในกล่อง \"ข้อความหัวกระดาษ\" ลงในส่วนหัวของภาพนิ่ง" #. Qktzq #: sd/uiconfig/simpress/ui/headerfootertab.ui:64 msgctxt "headerfootertab|header_label" msgid "Header _text:" -msgstr "_ข้อความส่วนหัว:" +msgstr "_ข้อความหัวกระดาษ:" #. uNdGZ #: sd/uiconfig/simpress/ui/headerfootertab.ui:83 msgctxt "headerfootertab|extended_tip|header_text" msgid "Adds the text that you enter to the top of the slide." -msgstr "" +msgstr "เพิ่มข้อความที่คุณป้อนลงในส่วนหัวของภาพนิ่ง" #. ruQCk #: sd/uiconfig/simpress/ui/headerfootertab.ui:105 -#, fuzzy msgctxt "headerfootertab|datetime_cb" msgid "_Date and time" -msgstr "วันที่และเวลา" +msgstr "วันที่และเว_ลา" #. tUcmE #: sd/uiconfig/simpress/ui/headerfootertab.ui:113 msgctxt "headerfootertab|extended_tip|datetime_cb" msgid "Adds the date and time to the slide." -msgstr "" +msgstr "เพิ่มวันที่และเวลาลงในภาพนิ่ง" #. LDq83 #: sd/uiconfig/simpress/ui/headerfootertab.ui:137 -#, fuzzy msgctxt "headerfootertab|rb_fixed" msgid "Fi_xed" -msgstr "คงที่" +msgstr "_คงที่" #. RrPiS #: sd/uiconfig/simpress/ui/headerfootertab.ui:149 msgctxt "headerfootertab|extended_tip|rb_fixed" msgid "Displays the date and time that you enter in the text box." -msgstr "" +msgstr "แสดงวันที่และเวลาที่คุณป้อนในกล่องข้อความ" #. Nycig #: sd/uiconfig/simpress/ui/headerfootertab.ui:170 msgctxt "headerfootertab|extended_tip|datetime_value" msgid "Displays the date and time that you enter in the text box." -msgstr "" +msgstr "แสดงวันที่และเวลาที่คุณป้อนในกล่องข้อความ" #. Zch2Q #: sd/uiconfig/simpress/ui/headerfootertab.ui:195 -#, fuzzy msgctxt "headerfootertab|rb_auto" msgid "_Variable" -msgstr "ตัวแปร" +msgstr "ไ_ม่คงที่" #. CA8yX #: sd/uiconfig/simpress/ui/headerfootertab.ui:207 msgctxt "headerfootertab|extended_tip|rb_auto" msgid "Displays the date and time that the slide was created. Select a date format from the list." -msgstr "" +msgstr "แสดงวันที่และเวลาที่สร้างภาพนิ่ง เลือกรูปแบบวันที่ได้จากรายชื่อ" #. fXSJq #: sd/uiconfig/simpress/ui/headerfootertab.ui:229 msgctxt "headerfootertab|extended_tip|language_list" msgid "Select the language for the date and time format." -msgstr "" +msgstr "เลือกภาษาสำหรับรูปแบบวันที่และเวลา" #. iDwM5 #: sd/uiconfig/simpress/ui/headerfootertab.ui:242 -#, fuzzy msgctxt "headerfootertab|language_label" msgid "_Language:" -msgstr "_ภาษา" +msgstr "_ภาษา:" #. BCGcC #: sd/uiconfig/simpress/ui/headerfootertab.ui:258 msgctxt "headerfootertab|extended_tip|datetime_format_list" msgid "Displays the date and time that the slide was created. Select a date format from the list." -msgstr "" +msgstr "แสดงวันที่และเวลาที่สร้างภาพนิ่ง เลือกรูปแบบวันที่ได้จากรายชื่อ" #. mDMwW #: sd/uiconfig/simpress/ui/headerfootertab.ui:271 msgctxt "headerfootertab|language_label1" msgid "_Format:" -msgstr "_รูปแบบ:" +msgstr "รูปแ_บบ:" #. htD4f #: sd/uiconfig/simpress/ui/headerfootertab.ui:315 -#, fuzzy msgctxt "headerfootertab|footer_cb" msgid "_Footer" -msgstr "ท้ายกระดาษ" +msgstr "ท้าย_กระดาษ" #. 8m2Zk #: sd/uiconfig/simpress/ui/headerfootertab.ui:323 msgctxt "headerfootertab|extended_tip|footer_cb" msgid "Adds the text that you enter in the Footer text box to the bottom of the slide." -msgstr "" +msgstr "เพิ่มข้อความที่คุณป้อนในกล่อง \"ข้อความท้ายกระดาษ\" ลงในส่วนท้ายของภาพนิ่ง" #. oA3mG #: sd/uiconfig/simpress/ui/headerfootertab.ui:343 msgctxt "headerfootertab|footer_label" msgid "F_ooter text:" -msgstr "" +msgstr "ข้_อความท้ายกระดาษ:" #. g74zG #: sd/uiconfig/simpress/ui/headerfootertab.ui:362 msgctxt "headerfootertab|extended_tip|footer_text" msgid "Adds the text that you enter to the bottom of the slide." -msgstr "" +msgstr "เพิ่มข้อความที่คุณป้อนลงในส่วนท้ายของภาพนิ่ง" #. UERZK #: sd/uiconfig/simpress/ui/headerfootertab.ui:391 msgctxt "headerfootertab|slide_number" msgid "_Slide number" -msgstr "" +msgstr "หมายเล_ขภาพนิ่ง" #. ijGuK #: sd/uiconfig/simpress/ui/headerfootertab.ui:399 msgctxt "headerfootertab|extended_tip|slide_number" msgid "Adds the slide number or the page number." -msgstr "" +msgstr "เพิ่มหมายเลขภาพนิ่งหรือเลขหน้า" #. ZmRZp #: sd/uiconfig/simpress/ui/headerfootertab.ui:415 msgctxt "headerfootertab|include_label" msgid "Include on Slide" -msgstr "" +msgstr "เพิ่มในภาพนิ่ง" #. QNb8r #: sd/uiconfig/simpress/ui/headerfootertab.ui:430 msgctxt "headerfootertab|not_on_title" msgid "Do _not show on the first slide" -msgstr "" +msgstr "ไม่ต้อ_งแสดงในภาพนิ่งแรก" #. TmZpE #: sd/uiconfig/simpress/ui/headerfootertab.ui:439 msgctxt "headerfootertab|extended_tip|not_on_title" msgid "Does not display your specified information on the first slide of your presentation." -msgstr "" +msgstr "ไม่ต้องแสดงข้อมูลที่ระบุข้างต้นในภาพนิ่งแรกของงานนำเสนอของคุณ" #. jjanG #: sd/uiconfig/simpress/ui/headerfootertab.ui:453 msgctxt "headerfootertab|replacement_a" msgid "_Page Number" -msgstr "หมายเ_ลขหน้า" +msgstr "หมายเล_ขหน้า" #. x4Ffp #: sd/uiconfig/simpress/ui/headerfootertab.ui:467 msgctxt "headerfootertab|replacement_b" msgid "Include on page" -msgstr "" +msgstr "เพิ่มในหน้า" #. euuqV #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:33 msgctxt "impressprinteroptions|label2" msgid "Type:" -msgstr "" +msgstr "ชนิด:" #. 2uCnf #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:47 msgctxt "impressprinteroptions|label7" msgid "Slides per page:" -msgstr "" +msgstr "จำนวนภาพนิ่งต่อหน้า:" #. XehMv #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:61 msgctxt "impressprinteroptions|label1" msgid "Order:" -msgstr "" +msgstr "ลำดับ:" #. Bx8SG #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:76 msgctxt "impressprinteroptions|extended_tip|impressdocument" msgid "Select which parts of the document should be printed." -msgstr "" +msgstr "เลือกว่าจะพิมพ์ส่วนใดของเอกสาร" #. nPeoT #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:91 msgctxt "impressprinteroptions|extended_tip|slidesperpage" msgid "Select how many slides to print per page." -msgstr "" +msgstr "เลือกว่าจะพิมพ์ภาพนิ่งกี่แผ่นต่อหน้า" #. B3gRG #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:106 msgctxt "impressprinteroptions|extended_tip|slideperpageorder" msgid "Specify how to arrange slides on the printed page." -msgstr "" +msgstr "ระบุว่าจะเรียงภาพนิ่งอย่างไรบนหน้ากระดาษที่พิมพ์" #. xTmU5 #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:121 msgctxt "impressprinteroptions|label3" msgid "Document" -msgstr "" +msgstr "เอกสาร" #. r9xjv #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:150 @@ -6358,7 +6216,7 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:158 msgctxt "impressprinteroptions|extended_tip|printname" msgid "Specifies whether to print the page name of a document." -msgstr "" +msgstr "ระบุว่าจะพิมพ์ชื่อภาพนิ่งของเอกสารด้วยหรือไม่" #. PYhD6 #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:170 @@ -6370,7 +6228,7 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:178 msgctxt "impressprinteroptions|extended_tip|printdatetime" msgid "Specifies whether to print the current date and time." -msgstr "" +msgstr "ระบุว่าจะพิมพ์วันที่และเวลาปัจจุบันด้วยหรือไม่" #. URBvB #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:190 @@ -6382,7 +6240,7 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:198 msgctxt "impressprinteroptions|extended_tip|printhidden" msgid "Specifies whether to print the pages that are currently hidden." -msgstr "" +msgstr "ระบุว่าจะพิมพ์หน้าที่กำลังซ่อนไว้ด้วยหรือไม่" #. YSdBB #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:214 @@ -6394,13 +6252,13 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:243 msgctxt "impressprinteroptions|originalcolors" msgid "Original colors" -msgstr "" +msgstr "สีเดิม" #. XqwZg #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:252 msgctxt "impressprinteroptions|extended_tip|originalcolors" msgid "Specifies to print in original colors." -msgstr "" +msgstr "ระบุให้พิมพ์โดยใช้สีเดิมในเอกสาร" #. Hp6An #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:264 @@ -6412,20 +6270,19 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:273 msgctxt "impressprinteroptions|extended_tip|grayscale" msgid "Specifies to print colors as grayscale." -msgstr "" +msgstr "ระบุให้พิมพ์สีต่างๆ ด้วยสเกลสีเทา" #. vnaCm #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:285 -#, fuzzy msgctxt "impressprinteroptions|blackandwhite" msgid "Black & white" -msgstr "ดำและ~ขาว" +msgstr "ขาวดำ" #. fKqNu #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:294 msgctxt "impressprinteroptions|extended_tip|blackandwhite" msgid "Specifies to print colors as black and white." -msgstr "" +msgstr "ระบุให้พิมพ์สีต่างๆ แบบขาวดำ" #. G3CZp #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:310 @@ -6443,7 +6300,7 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:348 msgctxt "impressprinteroptions|extended_tip|originalsize" msgid "Specifies that you do not want to further scale pages when printing." -msgstr "" +msgstr "ระบุว่าคุณไม่ต้องการย่อ-ขยายหน้าอีกแล้วในการพิมพ์" #. f2eFU #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:360 @@ -6455,7 +6312,7 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:369 msgctxt "impressprinteroptions|extended_tip|fittoprintable" msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer." -msgstr "" +msgstr "ระบุว่าจะย่อขนาดวัตถุต่างๆ ที่ตกขอบกระดาษเพื่อให้พอดีกับกระดาษในเครื่องพิมพ์หรือไม่" #. wCDEw #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:381 @@ -6467,13 +6324,13 @@ #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:390 msgctxt "impressprinteroptions|extended_tip|distributeonmultiple" msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets." -msgstr "" +msgstr "พิมพ์เอกสารขนาดใหญ่ เช่น โปสเตอร์หรือป้าย โดยกระจายหน้าของเอกสารลงบนกระดาษหลายแผ่น ตัวเลือกการกระจายหน้านี้จะคำนวณจำนวนแผ่นกระดาษที่ต้องใช้เอง จากนั้นคุณสามารถนำแผ่นกระดาษที่พิมพ์มาเรียงต่อกันได้" #. gCjUa #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:402 msgctxt "impressprinteroptions|tilesheet" msgid "Tile sheet of paper with repeated slides" -msgstr "เรียงภาพนิ่งซ้ำลงบนแผ่นกระดาษแบบปูกระเบื้อง" +msgstr "เรียงภาพนิ่งซ้ำแบบปูกระเบื้องลงบนแผ่นกระดาษ" #. BkFHA #: sd/uiconfig/simpress/ui/impressprinteroptions.ui:411 @@ -6489,23 +6346,21 @@ #. JxDBz #: sd/uiconfig/simpress/ui/insertslides.ui:8 -#, fuzzy msgctxt "insertslides|InsertSlidesDialog" msgid "Insert Slides" msgstr "แทรกภาพนิ่ง" #. UmNCb #: sd/uiconfig/simpress/ui/insertslides.ui:92 -#, fuzzy msgctxt "insertslides|before" msgid "_Before" -msgstr "ก่อน" +msgstr "_ก่อน" #. DBp4R #: sd/uiconfig/simpress/ui/insertslides.ui:109 msgctxt "insertslides|after" msgid "A_fter" -msgstr "" +msgstr "_หลัง" #. p39eR #: sd/uiconfig/simpress/ui/insertslides.ui:130 @@ -6523,32 +6378,31 @@ #: sd/uiconfig/simpress/ui/interactionpage.ui:62 msgctxt "interactionpage|label2" msgid "Action at mouse click:" -msgstr "" +msgstr "การกระทำเมื่อคลิกเมาส์:" #. wf6o2 #: sd/uiconfig/simpress/ui/interactionpage.ui:78 msgctxt "interactionpage|extended_tip|listbox" msgid "Specifies the action that will run when you click the selected object during a slide show." -msgstr "" +msgstr "ระบุการกระทำที่จะทำเมื่อคุณคลิกที่วัตถุที่เลือกระหว่างการแสดงภาพนิ่ง" #. ECoVa #: sd/uiconfig/simpress/ui/interactionpage.ui:91 -#, fuzzy msgctxt "interactionpage|fttree" msgid "Target:" -msgstr "เป้าหมาย" +msgstr "ปลายทาง:" #. tFofb #: sd/uiconfig/simpress/ui/interactionpage.ui:150 msgctxt "interactionpage|extended_tip|tree" msgid "Lists the slides and the objects that you can target." -msgstr "" +msgstr "แสดงรายชื่อภาพนิ่งและวัตถุที่คุณสามารถมุ่งไปหาได้" #. TLECB #: sd/uiconfig/simpress/ui/interactionpage.ui:203 msgctxt "interactionpage|extended_tip|treedoc" msgid "Opens and displays a file during a slide show. If you select an ODF file as the target document, you can also specify the page that will open." -msgstr "" +msgstr "เปิดและแสดงแฟ้มระหว่างการแสดงภาพนิ่ง ถ้าคุณเลือกแฟ้ม ODF เป็นเอกสารปลายทาง คุณจะสามารถระบุหน้าที่จะเปิดได้ด้วย" #. MZvua #: sd/uiconfig/simpress/ui/interactionpage.ui:268 @@ -6566,94 +6420,91 @@ #: sd/uiconfig/simpress/ui/interactionpage.ui:311 msgctxt "interactionpage|extended_tip|browse" msgid "Locate the file you want to open." -msgstr "" +msgstr "ท่องหาแฟ้มที่คุณต้องการเปิด" #. xDPqu #: sd/uiconfig/simpress/ui/interactionpage.ui:323 -#, fuzzy msgctxt "interactionpage|find" msgid "_Find" -msgstr "ค้นหา" +msgstr "_หา" #. AMQ6d #: sd/uiconfig/simpress/ui/interactionpage.ui:330 msgctxt "interactionpage|extended_tip|find" msgid "Searches for the specified slide or object." -msgstr "" +msgstr "ค้นหาภาพนิ่งหรือวัตถุที่ระบุ" #. WCrdD #: sd/uiconfig/simpress/ui/interactionpage.ui:361 msgctxt "interactionpage|sound-atkobject" msgid "Path Name" -msgstr "ชื่อเส้นทางที่เก็บไฟล์" +msgstr "ชื่อพาธ" #. wZE8A #: sd/uiconfig/simpress/ui/interactionpage.ui:362 msgctxt "interactionpage|extended_tip|sound" msgid "Enter a path to the audio file you want to open, or click Browse to locate the file." -msgstr "" +msgstr "ป้อนพาธของแฟ้มเสียงที่คุณต้องการเปิด หรือคลิก \"เรียกดู\" เพื่อท่องหาแฟ้ม" #. bnuz3 #: sd/uiconfig/simpress/ui/interactionpage.ui:381 msgctxt "interactionpage|extended_tip|bookmark" msgid "Enter the name of the slide or the object that you want to look for." -msgstr "" +msgstr "ป้อนชื่อของภาพนิ่งหรือวัตถุที่คุณต้องการหา" #. aFqHG #: sd/uiconfig/simpress/ui/interactionpage.ui:400 msgctxt "interactionpage|extended_tip|document" msgid "Enter a path to the file you want to open, or click Browse to locate the file." -msgstr "" +msgstr "ป้อนพาธของแฟ้มที่คุณต้องการเปิด หรือคลิก \"เรียกดู\" เพื่อท่องหาแฟ้ม" #. ZTeCG #: sd/uiconfig/simpress/ui/interactionpage.ui:419 msgctxt "interactionpage|extended_tip|program" msgid "Enter a path to the program you want to start, or click Browse to locate the program." -msgstr "" +msgstr "ป้อนพาธของโปรแกรมที่คุณต้องการเรียกทำงาน หรือคลิก \"เรียกดู\" เพื่อท่องหาโปรแกรม" #. Mocvx #: sd/uiconfig/simpress/ui/interactionpage.ui:438 msgctxt "interactionpage|extended_tip|macro" msgid "Enter a path to the macro you want to run, or click Browse to locate the macro." -msgstr "" +msgstr "ป้อนพาธของแมโครที่คุณต้องการเรียกทำงาน หรือคลิก \"เรียกดู\" เพื่อท่องหาแมโคร" #. UwxJE #: sd/uiconfig/simpress/ui/interactionpage.ui:473 msgctxt "interactionpage|extended_tip|InteractionPage" msgid "Defines how the selected object behaves when you click on it during a slide show." -msgstr "" +msgstr "กำหนดพฤติกรรมของวัตถุที่เลือกเมื่อคุณคลิกที่ตัววัตถุระหว่างการแสดงภาพนิ่ง" #. Ed2VQ #: sd/uiconfig/simpress/ui/layoutmenu.ui:12 -#, fuzzy msgctxt "layoutmenu|apply" msgid "Apply to _Selected Slides" -msgstr "ใช้~กับภาพนิ่งที่เลือก" +msgstr "ใช้กับภาพนิ่งที่เ_ลือก" #. r6oAh #: sd/uiconfig/simpress/ui/layoutmenu.ui:26 -#, fuzzy msgctxt "layoutmenu|insert" msgid "_Insert Slide" -msgstr "แทรกภาพนิ่ง" +msgstr "แ_ทรกภาพนิ่ง" #. e84v4 #: sd/uiconfig/simpress/ui/layoutwindow.ui:55 msgctxt "layoutwindow|label5" msgid "Horizontal" -msgstr "" +msgstr "แนวนอน" #. usUqJ #: sd/uiconfig/simpress/ui/layoutwindow.ui:107 msgctxt "layoutwindow|label6" msgid "Vertical" -msgstr "" +msgstr "แนวตั้ง" #. uydrR #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:8 msgctxt "masterlayoutdlg|MasterLayoutDialog" msgid "Master Elements" -msgstr "กลุ่มองค์ประกอบหลัก" +msgstr "ส่วนประกอบของแม่แบบ" #. 2kiHn #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:92 @@ -6665,110 +6516,103 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:100 msgctxt "masterlayoutdlg|extended_tip|header" msgid "Adds a header placeholder to the master slide for notes." -msgstr "" +msgstr "เพิ่มจุดยึดตำแหน่งของหัวกระดาษลงในแม่แบบภาพนิ่งสำหรับบันทึกเสริม" #. iccus #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:112 msgctxt "masterlayoutdlg|datetime" msgid "_Date/time" -msgstr "" +msgstr "วันที่/เว_ลา" #. LcYxF #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:120 msgctxt "masterlayoutdlg|extended_tip|datetime" msgid "Adds a date/time placeholder to the master slide." -msgstr "" +msgstr "เพิ่มจุดยึดตำแหน่งของวันที่/เวลาลงในแม่แบบภาพนิ่ง" #. SFrZg #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:132 -#, fuzzy msgctxt "masterlayoutdlg|footer" msgid "_Footer" -msgstr "ท้ายกระดาษ" +msgstr "_ท้ายกระดาษ" #. SFDjB #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:140 msgctxt "masterlayoutdlg|extended_tip|footer" msgid "Adds a footer placeholder to the master slide." -msgstr "" +msgstr "เพิ่มจุดยึดตำแหน่งของท้ายกระดาษลงในแม่แบบภาพนิ่ง" #. AyWZh #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:152 -#, fuzzy msgctxt "masterlayoutdlg|pagenumber" msgid "_Page number" -msgstr "หมายเ_ลขหน้า" +msgstr "หมายเลขห_น้า" #. y3BDS #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:160 msgctxt "masterlayoutdlg|extended_tip|pagenumber" msgid "Adds a slide number placeholder to the master slide." -msgstr "" +msgstr "เพิ่มจุดยึดตำแหน่งของหมายเลขภาพนิ่งลงในแม่แบบภาพนิ่ง" #. DEikC #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:172 msgctxt "masterlayoutdlg|slidenumber" msgid "_Slide number" -msgstr "" +msgstr "หมายเลขภาพ_นิ่ง" #. StLxB #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:191 -#, fuzzy msgctxt "masterlayoutdlg|Placeholders" msgid "Placeholders" -msgstr "ตัวยึดตำแหน่ง" +msgstr "จุดยึดตำแหน่ง" #. 2iPYT #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:216 msgctxt "masterlayoutdlg|extended_tip|MasterLayoutDialog" msgid "Adds or removes header, footer, date, and slide number placeholders to the layout of the master slide." -msgstr "" +msgstr "เพิ่มหรือลบจุดยึดตำแหน่งของหัวกระดาษ, ท้ายกระดาาษ, วันที่, และหมายเลขภาพนิ่ง ลงในผังของแม่แบบภาพนิ่ง" #. 69Akr #: sd/uiconfig/simpress/ui/mastermenu.ui:12 -#, fuzzy msgctxt "mastermenu|applyall" msgid "_Apply to All Slides" -msgstr "ใช้กับทุกภาพนิ่ง" +msgstr "ใช้กับภาพนิ่ง_ทั้งหมด" #. VRgjP #: sd/uiconfig/simpress/ui/mastermenu.ui:20 -#, fuzzy msgctxt "mastermenu|applyselect" msgid "Apply to _Selected Slides" -msgstr "ใช้~กับภาพนิ่งที่เลือก" +msgstr "ใช้กับภาพนิ่งที่เ_ลือก" #. JqkU5 #: sd/uiconfig/simpress/ui/mastermenu.ui:34 -#, fuzzy msgctxt "mastermenu|large" msgid "Show _Large Preview" -msgstr "แสดงตัวอย่างขนาดใ~หญ่" +msgstr "แสดงตัวอย่างขนาดใ_หญ่" #. hTJCE #: sd/uiconfig/simpress/ui/mastermenu.ui:42 -#, fuzzy msgctxt "mastermenu|small" msgid "Show S_mall Preview" -msgstr "แสดงตัวอย่างขนาดเ~ล็ก" +msgstr "แสดงตัวอย่างขนาดเล็_ก" #. qF7zf #: sd/uiconfig/simpress/ui/navigatorpanel.ui:12 msgctxt "navigatorpanelSTR_DRAGTYPE_URL" msgid "Insert as Hyperlink" -msgstr "" +msgstr "แทรกเป็นไฮเพอร์ลิงก์" #. ptpuN #: sd/uiconfig/simpress/ui/navigatorpanel.ui:20 msgctxt "navigatorpanel|STR_DRAGTYPE_LINK" msgid "Insert as Link" -msgstr "" +msgstr "แทรกเป็นลิงก์" #. z7JSR #: sd/uiconfig/simpress/ui/navigatorpanel.ui:29 msgctxt "navigatorpanel|STR_DRAGTYPE_EMBEDDED" msgid "Insert as Copy" -msgstr "" +msgstr "แทรกเป็นสำเนา" #. 3rY8r #: sd/uiconfig/simpress/ui/navigatorpanel.ui:65 @@ -6778,7 +6622,6 @@ #. wavgT #: sd/uiconfig/simpress/ui/navigatorpanel.ui:68 -#, fuzzy msgctxt "navigatorpanel|documents-atkobject" msgid "Active Window" msgstr "หน้าต่างที่ใช้งานอยู่" @@ -6787,23 +6630,22 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:69 msgctxt "navigatorpanel|extended_tip|documents" msgid "Lists currently open documents." -msgstr "" +msgstr "แสดงรายชื่อเอกสารที่เปิดอยู่" #. D6ag8 #: sd/uiconfig/simpress/ui/navigatorpanel.ui:120 msgctxt "navigatorpanel|STR_OBJECTS_TREE" msgid "Page Tree" -msgstr "" +msgstr "โครงสร้างต้นไม้ของหน้า" #. e6gMq #: sd/uiconfig/simpress/ui/navigatorpanel.ui:121 msgctxt "navigatorpanel|extended_tip|tree" msgid "Lists available slides. Double-click a slide to make it the active slide." -msgstr "" +msgstr "แสดงรายชื่อภาพนิ่งที่มี ดับเบิลคลิกที่ภาพนิ่งเพื่อทำให้เป็นภาพนิ่งที่จะทำงาน" #. LKqE8 #: sd/uiconfig/simpress/ui/navigatorpanel.ui:142 -#, fuzzy msgctxt "navigatorpanel|first|tooltip_text" msgid "First Slide" msgstr "ภาพนิ่งแรก" @@ -6812,19 +6654,19 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:146 msgctxt "navigatorpanel|extended_tip|first" msgid "Jumps to the first page." -msgstr "" +msgstr "กระโดดไปที่หน้าแรก" #. NWPFk #: sd/uiconfig/simpress/ui/navigatorpanel.ui:158 msgctxt "navigatorpanel|previous|tooltip_text" msgid "Previous Slide" -msgstr "" +msgstr "ภาพนิ่งที่แล้ว" #. PJUma #: sd/uiconfig/simpress/ui/navigatorpanel.ui:162 msgctxt "navigatorpanel|extended_tip|previous" msgid "Moves back one page." -msgstr "" +msgstr "เลื่อนกลับไปหนึ่งหน้า" #. bkvQE #: sd/uiconfig/simpress/ui/navigatorpanel.ui:174 @@ -6836,11 +6678,10 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:178 msgctxt "navigatorpanel|extended_tip|next" msgid "Move forward one page." -msgstr "" +msgstr "เลื่อนไปข้างหน้าหนึ่งหน้า" #. FVSHF #: sd/uiconfig/simpress/ui/navigatorpanel.ui:190 -#, fuzzy msgctxt "navigatorpanel|last|tooltip_text" msgid "Last Slide" msgstr "ภาพนิ่งสุดท้าย" @@ -6849,11 +6690,10 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:194 msgctxt "navigatorpanel|extended_tip|last" msgid "Jumps to the last page." -msgstr "" +msgstr "กระโดดไปที่หน้าสุดท้าย" #. mHVom #: sd/uiconfig/simpress/ui/navigatorpanel.ui:218 -#, fuzzy msgctxt "navigatorpanel|dragmode|tooltip_text" msgid "Drag Mode" msgstr "โหมดลาก" @@ -6862,145 +6702,145 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:222 msgctxt "navigatorpanel|extended_tip|dragmode" msgid "Drag and drop slides and named objects into the active slide." -msgstr "" +msgstr "ลากวางภาพนิ่งและวัตถุมีชื่อลงในภาพนิ่งที่ทำงานอยู่" #. Qb5a9 #: sd/uiconfig/simpress/ui/navigatorpanel.ui:234 msgctxt "navigatorpanel|shapes|tooltip_text" msgid "Show Shapes" -msgstr "" +msgstr "แสดงรูปร่างต่างๆ" #. EUeae #: sd/uiconfig/simpress/ui/navigatorpanel.ui:238 msgctxt "navigatorpanel|extended_tip|shapes" msgid "In the submenu you can choose to display a list of all shapes or only the named shapes. Use drag-and-drop in the list to reorder the shapes. When you set the focus to a slide and press the Tab key, the next shape in the defined order is selected." -msgstr "" +msgstr "ในเมนูย่อย คุณสามารถเลือกที่จะแสดงรายชื่อของรูปร่างทั้งหมดหรือแสดงเฉพาะรูปร่างที่มีชื่อ ใช้การลากวางในรายชื่อเพื่อจัดลำดับของรูปร่าง เมื่อคุณกำหนดโฟกัสไปที่ภาพนิ่งแล้วกดปุ่ม Tab ก็จะเลือกรูปร่างถัดไปในลำดับที่กำหนด" #. DzQZC #: sd/uiconfig/simpress/ui/navigatorpanel.ui:261 msgctxt "navigatorpanel|extended_tip|NavigatorPanel" msgid "Opens the Navigator, where you can quickly jump to other slides or move between open files." -msgstr "" +msgstr "เปิดตัวนำทาง ซึ่งคุณสามารถใช้กระโดดไปยังภาพนิ่งอื่นหรือกระโดดไปมาระหว่างแฟ้มที่เปิดอยู่ได้อย่างรวดเร็ว" #. pzb3K #: sd/uiconfig/simpress/ui/navigatorpanel.ui:272 msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_NAMED_SHAPES" msgid "Named shapes" -msgstr "" +msgstr "รูปร่างที่มีชื่อ" #. dLEPF #: sd/uiconfig/simpress/ui/navigatorpanel.ui:281 msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_ALL_SHAPES" msgid "All shapes" -msgstr "" +msgstr "รูปร่างทั้งหมด" #. qGFEo #: sd/uiconfig/simpress/ui/notebookbar.ui:3196 msgctxt "impressnotebookbar|FileLabel" msgid "_File" -msgstr "" +msgstr "แ_ฟ้ม" #. PyC4c #: sd/uiconfig/simpress/ui/notebookbar.ui:3215 msgctxt "impressnotebookbar|HelpMenuButton" msgid "_Help" -msgstr "" +msgstr "ความ_ช่วยเหลือ" #. VoxXb #: sd/uiconfig/simpress/ui/notebookbar.ui:3271 msgctxt "impressnotebookbar|FileLabel" msgid "~File" -msgstr "" +msgstr "แ~ฟ้ม" #. XRcKU #: sd/uiconfig/simpress/ui/notebookbar.ui:4791 msgctxt "impressnotebookbar|HomeMenuButton" msgid "_Home" -msgstr "" +msgstr "_บ้าน" #. XqFQv #: sd/uiconfig/simpress/ui/notebookbar.ui:4891 msgctxt "impressnotebookbar|HomeLabel" msgid "~Home" -msgstr "" +msgstr "~บ้าน" #. DEQhQ #: sd/uiconfig/simpress/ui/notebookbar.ui:5493 msgctxt "impressnotebookbar|FieldMenuButton" msgid "Fiel_d" -msgstr "" +msgstr "ช่อ_งข้อมูล" #. 9GEAC #: sd/uiconfig/simpress/ui/notebookbar.ui:6031 msgctxt "impressnotebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "แ_ทรก" #. t3YwN #: sd/uiconfig/simpress/ui/notebookbar.ui:6134 msgctxt "impressnotebookbar|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "แ~ทรก" #. 58fjG #: sd/uiconfig/simpress/ui/notebookbar.ui:6909 msgctxt "impressnotebookbar|SlideMenuButton" msgid "_Layout" -msgstr "" +msgstr "_ผังวาง" #. ArPLp #: sd/uiconfig/simpress/ui/notebookbar.ui:6994 msgctxt "impressnotebookbar|LayoutLabel" msgid "~Layout" -msgstr "" +msgstr "~ผังวาง" #. vRtjP #: sd/uiconfig/simpress/ui/notebookbar.ui:7458 msgctxt "impressnotebookbar|SlideShowMenuButton" msgid "_Slide Show" -msgstr "" +msgstr "_นำเสนอภาพนิ่ง" #. nV5FC #: sd/uiconfig/simpress/ui/notebookbar.ui:7542 msgctxt "impressnotebookbar|ReferencesLabel" msgid "~Slide Show" -msgstr "" +msgstr "~นำเสนอภาพนิ่ง" #. sDdGm #: sd/uiconfig/simpress/ui/notebookbar.ui:8078 msgctxt "impressnotebookbar|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "_ตรวจทาน" #. drk6E #: sd/uiconfig/simpress/ui/notebookbar.ui:8161 msgctxt "impressnotebookbar|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "~ตรวจทาน" #. vjE5w #: sd/uiconfig/simpress/ui/notebookbar.ui:9380 msgctxt "impressnotebookbar|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "มุ_มมอง" #. KJK9J #: sd/uiconfig/simpress/ui/notebookbar.ui:9465 msgctxt "impressnotebookbar|ViewLabel" msgid "~View" -msgstr "" +msgstr "มุ~มมอง" #. bWC2b #: sd/uiconfig/simpress/ui/notebookbar.ui:10359 msgctxt "impressnotebookbar|TableMenuButton" msgid "_Table" -msgstr "" +msgstr "ตา_ราง" #. dmEJG #: sd/uiconfig/simpress/ui/notebookbar.ui:10443 msgctxt "impressnotebookbar|TableLabel" msgid "~Table" -msgstr "" +msgstr "ตา~ราง" #. Cn8TS #: sd/uiconfig/simpress/ui/notebookbar.ui:10968 @@ -7008,377 +6848,375 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:14034 msgctxt "impressnotebookbar|ConvertMenuButton" msgid "Convert" -msgstr "" +msgstr "แปลง" #. do5DT #: sd/uiconfig/simpress/ui/notebookbar.ui:11638 msgctxt "impressnotebookbar|GraphicMenuButton" msgid "Ima_ge" -msgstr "" +msgstr "รูป_ภาพ" #. XCSMA #: sd/uiconfig/simpress/ui/notebookbar.ui:11747 msgctxt "impressnotebookbar|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "รูป~ภาพ" #. nTy3C #: sd/uiconfig/simpress/ui/notebookbar.ui:13449 msgctxt "impressnotebookbar|DrawMenuButton" msgid "_Draw" -msgstr "" +msgstr "วา_ด" #. BfNQD #: sd/uiconfig/simpress/ui/notebookbar.ui:13556 msgctxt "impressnotebookbar|DrawLabel" msgid "~Draw" -msgstr "" +msgstr "วา~ด" #. p3Faf #: sd/uiconfig/simpress/ui/notebookbar.ui:14390 msgctxt "impressnotebookbar|ObjectMenuButton" msgid "_Object" -msgstr "" +msgstr "_วัตถุ" #. wL8mu #: sd/uiconfig/simpress/ui/notebookbar.ui:14497 msgctxt "impressnotebookbar|ObjectLabel" msgid "~Object" -msgstr "" +msgstr "~วัตถุ" #. AAosj #: sd/uiconfig/simpress/ui/notebookbar.ui:14998 msgctxt "impressnotebookbar|MediaMenuButton" msgid "_Media" -msgstr "" +msgstr "_สื่อ" #. GgHEg #: sd/uiconfig/simpress/ui/notebookbar.ui:15102 msgctxt "impressnotebookbar|MediaLabel" msgid "~Media" -msgstr "" +msgstr "~สื่อ" #. W9oCC #: sd/uiconfig/simpress/ui/notebookbar.ui:15910 msgctxt "impressnotebookbar|FormMenuButton" msgid "Fo_rm" -msgstr "" +msgstr "แบบฟอ_ร์ม" #. 7sAbT #: sd/uiconfig/simpress/ui/notebookbar.ui:15994 msgctxt "ImpressNotebookbar|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "แบบฟอ~ร์ม" #. aAdZJ #: sd/uiconfig/simpress/ui/notebookbar.ui:16789 msgctxt "impressnotebookbar|FormMenuButton" msgid "_Master" -msgstr "" +msgstr "แ_ม่แบบ" #. XAZEm #: sd/uiconfig/simpress/ui/notebookbar.ui:16873 msgctxt "ImpressNotebookbar|MasterLabel" msgid "~Master" -msgstr "" +msgstr "แ~ม่แบบ" #. DyZAq #: sd/uiconfig/simpress/ui/notebookbar.ui:17683 msgctxt "ImpressNotebookbar|FormMenuButton" msgid "_View" -msgstr "" +msgstr "มุ_มมอง" #. rUJFu #: sd/uiconfig/simpress/ui/notebookbar.ui:17767 msgctxt "ImpressNotebookbar|View2Label" msgid "~Outline" -msgstr "" +msgstr "เ~ค้าโครง" #. pA8DH #: sd/uiconfig/simpress/ui/notebookbar.ui:18554 msgctxt "impressnotebookbar|FormMenuButton" msgid "3_d" -msgstr "" +msgstr "_3 มิติ" #. xwrog #: sd/uiconfig/simpress/ui/notebookbar.ui:18661 msgctxt "impressnotebookbar|FormLabel" msgid "3~d" -msgstr "" +msgstr "~3 มิติ" #. syaDA #: sd/uiconfig/simpress/ui/notebookbar.ui:18718 msgctxt "impressnotebookbar|FormMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ส่วนข_ยาย" #. Nwrnv #: sd/uiconfig/simpress/ui/notebookbar.ui:18792 msgctxt "impressnotebookbar|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ส่วนข~ยาย" #. rBSXA #: sd/uiconfig/simpress/ui/notebookbar.ui:19755 msgctxt "impressnotebookbar|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "เ_ครื่องมือ" #. DTNDB #: sd/uiconfig/simpress/ui/notebookbar.ui:19839 msgctxt "impressnotebookbar|DevLabel" msgid "~Tools" -msgstr "" +msgstr "เ~ครื่องมือ" #. FSDrH #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:3260 msgctxt "notebookbar_impress_compact|FileMenuButton" msgid "_File" -msgstr "" +msgstr "แ_ฟ้ม" #. LEEM5 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:3309 msgctxt "notebookbar_impress_compact|FileLabel" msgid "~File" -msgstr "" +msgstr "แ~ฟ้ม" #. ujGqT #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:4678 msgctxt "notebookbar_impress_compact|HomeMenuButton" msgid "_Home" -msgstr "" +msgstr "_บ้าน" #. NGYSB #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:4730 msgctxt "notebookbar_impress_compact|HomeLabel" msgid "~Home" -msgstr "" +msgstr "~บ้าน" #. 4g3iJ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5292 msgctxt "notebookbar_impress_compact|FieldMenuButton" msgid "Fiel_d" -msgstr "" +msgstr "ช่อ_งข้อมูล" #. 927AD #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5832 msgctxt "notebookbar_impress_compact|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "แ_ทรก" #. ZPHaB #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5883 msgctxt "notebookbar_impress_compact|InsertLabel" msgid "~Insert" -msgstr "" +msgstr "แ~ทรก" #. zEEiz #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6669 msgctxt "notebookbar_impress_compact|LayoutMenuButton" msgid "Layout" -msgstr "" +msgstr "ผังวาง" #. EZeGS #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6721 msgctxt "notebookbar_impress_compact|LayoutLabel" msgid "~Layout" -msgstr "" +msgstr "~ผังวาง" #. sMsGk #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7236 msgctxt "notebookbar_impress_compact|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "_ตรวจทาน" #. pZ4A3 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7288 msgctxt "notebookbar_impress_compact|ReviewLabel" msgid "~Review" -msgstr "" +msgstr "~ตรวจทาน" #. cRSR3 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7825 msgctxt "notebookbar_impress_compact|LayoutMenuButton" msgid "_Slide Show" -msgstr "" +msgstr "_นำเสนอภาพนิ่ง" #. KAo9c #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7877 msgctxt "notebookbar_impress_compact|LayoutLabel" msgid "~Slide Show" -msgstr "" +msgstr "~นำเสนอภาพนิ่ง" #. URjcx #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8709 msgctxt "notebookbar_impress_compact|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "มุ_มมอง" #. SScpo #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8761 msgctxt "notebookbar_impress_compact|ViewLabel" msgid "~View" -msgstr "" +msgstr "มุ~มมอง" #. CzCMC #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10445 msgctxt "notebookbar_impress_compact|TableMenuButton" msgid "T_able" -msgstr "" +msgstr "ตา_ราง" #. mnepU #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10496 msgctxt "notebookbar_impress_compact|TableLabel" msgid "~Table" -msgstr "" +msgstr "ตา~ราง" #. BzXPB #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843 msgctxt "notebookbar_impress_compact|ImageMenuButton" msgid "Image" -msgstr "" +msgstr "รูปภาพ" #. wD2ow #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898 msgctxt "notebookbar_impress_compact|ImageLabel" msgid "Ima~ge" -msgstr "" +msgstr "รูป~ภาพ" #. ZqPYr #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673 msgctxt "notebookbar_impress_compact|DrawMenuButton" msgid "D_raw" -msgstr "" +msgstr "วา_ด" #. 78DU3 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725 msgctxt "notebookbar_impress_compact|ShapeLabel" msgid "~Draw" -msgstr "" +msgstr "วา~ด" #. uv2FE #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722 msgctxt "notebookbar_impress_compact|ObjectMenuButton" msgid "Object" -msgstr "" +msgstr "วัตถุ" #. FSjqt #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774 msgctxt "notebookbar_impress_compact|FrameLabel" msgid "~Object" -msgstr "" +msgstr "~วัตถุ" #. t3Fmv #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917 msgctxt "notebookbar_impress_compact|MediaButton" msgid "_Media" -msgstr "" +msgstr "_สื่อ" #. HbptL #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968 msgctxt "notebookbar_impress_compact|MediaLabel" msgid "~Media" -msgstr "" +msgstr "~สื่อ" #. NNqQ2 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205 msgctxt "notebookbar_impress_compact|FormButton" msgid "Fo_rm" -msgstr "" +msgstr "แบบฟอ_ร์ม" #. DpFpM #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257 msgctxt "notebookbar_impress_compact|FormLabel" msgid "Fo~rm" -msgstr "" +msgstr "แบบฟอ~ร์ม" #. MNUFm #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009 msgctxt "notebookbar_impress_compact|PrintPreviewButton" msgid "_Master" -msgstr "" +msgstr "แ_ม่แบบ" #. NUiWE #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061 msgctxt "notebookbar_impress_compact|FormLabel" msgid "~Master" -msgstr "" +msgstr "แ~ม่แบบ" #. 4f9xG #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021 msgctxt "notebookbar_impress_compact|FormButton" msgid "3_d" -msgstr "" +msgstr "_3 มิติ" #. ntfL7 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073 msgctxt "notebookbar_impress_compact|FormLabel" msgid "3~d" -msgstr "" +msgstr "~3 มิติ" #. ntjaC #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152 msgctxt "notebookbar_impress_compact|ExtensionMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ส่วนข_ยาย" #. Tu5f8 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210 msgctxt "notebookbar_impress_compact|ExtensionLabel" msgid "E~xtension" -msgstr "" +msgstr "ส่วนข~ยาย" #. abvtG #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211 msgctxt "notebookbar_impress_compact|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "เ_ครื่องมือ" #. oKhkv #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263 msgctxt "notebookbar_impress_compact|DevLabel" msgid "~Tools" -msgstr "" +msgstr "เ~ครื่องมือ" #. JC7Dd #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2308 msgctxt "impress_notebookbar_groupedbar_compact|MenubarAction" msgid "Menubar" -msgstr "" +msgstr "แถบเมนู" #. aEHCg #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2481 msgctxt "impress_notebookbar_groupedbar_compact|MenubarView" msgid "Menubar" -msgstr "" +msgstr "แถบเมนู" #. LL2dj #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3094 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|fileb" msgid "_File" -msgstr "แฟ้ม" +msgstr "แ_ฟ้ม" #. MR7ZB #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3202 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|editb" msgid "_Edit" -msgstr "แ~ก้ไข" +msgstr "แ_ก้ไข" #. 26rGJ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3328 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4511 msgctxt "notebookbar_groupedbar_compact|reviewb" msgid "S_lide" -msgstr "" +msgstr "_ภาพนิ่ง" #. WZ5Fe #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3485 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12450 msgctxt "notebookbar_groupedbar_compact|draw" msgid "D_raw" -msgstr "" +msgstr "วา_ด" #. GYqWX #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3913 @@ -7390,73 +7228,69 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12956 msgctxt "notebookbar_groupedbar_compact|insertText" msgid "_Snap" -msgstr "" +msgstr "ดู_ดติด" #. LFnQL #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4049 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6726 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12825 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|insertText" msgid "_Insert" -msgstr "แทรก" +msgstr "แ_ทรก" #. 5wZbP #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4160 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13092 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|reviewb" msgid "_Review" -msgstr "Review" +msgstr "_ตรวจทาน" #. BxXfn #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4281 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5317 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13213 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|viewT" msgid "_View" -msgstr "มุมมอง" +msgstr "มุ_มมอง" #. 5fAr4 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4379 msgctxt "notebookbar_groupedbar_compact|ExtensionMenuButton" msgid "E_xtension" -msgstr "" +msgstr "ส่วน_ขยาย" #. fED72 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4663 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5482 msgctxt "notebookbar_groupedbar_compact|formatt" msgid "F_ont" -msgstr "" +msgstr "แบบ_อักษร" #. YgxCs #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4890 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5686 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|paragrapht" msgid "_Paragraph" -msgstr "ย่อหน้า" +msgstr "ย่อ_หน้า" #. Tgwxy #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5953 msgctxt "notebookbar_groupedbar_compact|rowscolumnst" msgid "_Table" -msgstr "" +msgstr "ตา_ราง" #. PRamE #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6605 msgctxt "notebookbar_groupedbar_compact|calculatet" msgid "_Calc" -msgstr "" +msgstr "_Calc" #. DC7Hv #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6871 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11332 msgctxt "notebookbar_groupedbar_compact|editdrawb" msgid "D_raw" -msgstr "" +msgstr "วา_ด" #. ncAKi #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7296 @@ -7466,156 +7300,146 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11757 msgctxt "notebookbar_groupedbar_compact|ArrangeButton" msgid "_Arrange" -msgstr "" +msgstr "_จัดเรียง" #. 8pLR3 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7747 msgctxt "notebookbar_groupedbar_compact|draw" msgid "_Shape" -msgstr "" +msgstr "รูป_ร่าง" #. NM63T #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8011 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12160 -#, fuzzy msgctxt "notebookbar_groupedbar_compact|viewDrawb" msgid "Grou_p" -msgstr "จัดกลุ่ม" +msgstr "จัด_กลุ่ม" #. cbMTW #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8247 msgctxt "notebookbar_groupedbar_compact|3Db" msgid "3_D" -msgstr "" +msgstr "_3 มิติ" #. BTzDn #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8474 msgctxt "notebookbar_groupedbar_compact|GridButton" msgid "_Fontwork" -msgstr "" +msgstr "อักษรศิ_ลป์" #. PLqyG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8585 msgctxt "notebookbar_groupedbar_compact|GridButton" msgid "_Grid" -msgstr "" +msgstr "_กริด" #. XL8kc #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8721 msgctxt "notebookbar_groupedbar_compact|graphicB" msgid "_Image" -msgstr "" +msgstr "รูป_ภาพ" #. snvvw #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9532 msgctxt "notebookbar_groupedbar_compact|GridB" msgid "Fi_lter" -msgstr "" +msgstr "ตัวกรอ_ง" #. 5a4zV #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9813 msgctxt "notebookbar_groupedbar_compact|graphicB" msgid "_Object" -msgstr "" +msgstr "_วัตถุ" #. Ghwp6 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10665 msgctxt "notebookbar_groupedbar_compact|graphicB" msgid "_Media" -msgstr "" +msgstr "_สื่อ" #. w6MPS #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12294 msgctxt "notebookbar_groupedbar_compact|oleB" msgid "_Master" -msgstr "" +msgstr "แ_ม่แบบ" #. MGQxe #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13347 msgctxt "impress_notebookbar_groupedbar_compact|FormButton" msgid "Fo_rm" -msgstr "" +msgstr "แบบฟอ_ร์ม" #. xBYsC #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:14082 msgctxt "notebookbar_groupedbar_compact|menub" msgid "_Menu" -msgstr "" +msgstr "เ_มนู" #. EsADr #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2976 msgctxt "notebookbar_groupedbar_full|menub" msgid "_Menu" -msgstr "" +msgstr "เ_มนู" #. Ch63h #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3028 -#, fuzzy msgctxt "notebookbar_groupedbar_full|toolsb" msgid "_Tools" -msgstr "เครื่องมือ" +msgstr "เ_ครื่องมือ" #. kdH4L #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3081 -#, fuzzy msgctxt "notebookbar_groupedbar_full|helpb" msgid "_Help" -msgstr "ช่วยเหลือ" +msgstr "ความ_ช่วยเหลือ" #. bkg23 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3187 -#, fuzzy msgctxt "notebookbar_groupedbar_full|fileb" msgid "_File" -msgstr "แฟ้ม" +msgstr "แ_ฟ้ม" #. aqbEs #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3420 -#, fuzzy msgctxt "notebookbar_groupedbar_full|editb" msgid "_Edit" -msgstr "แ~ก้ไข" +msgstr "แ_ก้ไข" #. S4ZPU #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3577 -#, fuzzy msgctxt "notebookbar_groupedbar_full|slideshowb" msgid "_Slide Show" -msgstr "การนำเสนอภาพนิ่ง" +msgstr "_นำเสนอภาพนิ่ง" #. ZShaH #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3770 -#, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphstylet" msgid "S_lide" -msgstr "ภาพนิ่ง" +msgstr "_ภาพนิ่ง" #. dS4bE #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3919 -#, fuzzy msgctxt "notebookbar_groupedbar_full|insertText" msgid "_Insert" -msgstr "แทรก" +msgstr "แ_ทรก" #. bwvGG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4255 msgctxt "notebookbar_groupedbar_full|draw" msgid "D_raw" -msgstr "" +msgstr "วา_ด" #. gQQfL #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4439 -#, fuzzy msgctxt "notebookbar_groupedbar_full|reviewb" msgid "_Review" -msgstr "Review" +msgstr "_ตรวจทาน" #. BHDdD #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4585 -#, fuzzy msgctxt "notebookbar_groupedbar_full|viewb" msgid "_View" -msgstr "มุมมอง" +msgstr "มุ_มมอง" #. MECyG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4867 @@ -7623,210 +7447,187 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9631 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11022 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12254 -#, fuzzy msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" -msgstr "จัดเรียง" +msgstr "_จัดเรียง" #. ZZz6G #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5024 -#, fuzzy msgctxt "notebookbar_groupedbar_full|slideshowt" msgid "_Slide Show" -msgstr "การนำเสนอภาพนิ่ง" +msgstr "_นำเสนอภาพนิ่ง" #. etFeN #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5267 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6510 -#, fuzzy msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ormat" -msgstr "รูปแบบ" +msgstr "รูปแ_บบ" #. sdehG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5578 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6821 -#, fuzzy msgctxt "notebookbar_groupedbar_full|paragraphTextb" msgid "_Paragraph" -msgstr "ย่อหน้า" +msgstr "ย่อ_หน้า" #. ncg2G #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5818 -#, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextt" msgid "_Insert" -msgstr "แทรก" +msgstr "แ_ทรก" #. 6isa9 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5980 -#, fuzzy msgctxt "notebookbar_groupedbar_full|viewt" msgid "_View" -msgstr "มุมมอง" +msgstr "มุ_มมอง" #. sorSJ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6128 msgctxt "notebookbar_groupedbar_full|reviewp" msgid "_Review" -msgstr "" +msgstr "_ตรวจทาน" #. jHLaW #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6267 -#, fuzzy msgctxt "notebookbar_groupedbar_full|slideshowtt" msgid "_Slide Show" -msgstr "การนำเสนอภาพนิ่ง" +msgstr "_นำเสนอภาพนิ่ง" #. Ew7Ho #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6996 -#, fuzzy msgctxt "notebookbar_groupedbar_full|tabled" msgid "T_able" -msgstr "ตาราง" +msgstr "ตา_ราง" #. i8XUZ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7256 -#, fuzzy msgctxt "notebookbar_groupedbar_full|rowscolumnst" msgid "R_ows" -msgstr "แถว" +msgstr "แ_ถว" #. 4nboE #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7378 msgctxt "notebookbar_groupedbar_full|calculatet" msgid "_Calc" -msgstr "" +msgstr "_Calc" #. WfzeY #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7704 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" -msgstr "" +msgstr "วา_ด" #. QNg9L #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7989 -#, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "_Edit" -msgstr "แ~ก้ไข" +msgstr "แ_ก้ไข" #. BfnGg #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8541 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9783 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11174 -#, fuzzy msgctxt "notebookbar_groupedbar_full|GridDrawB" msgid "_Grid" -msgstr "กริด" +msgstr "ก_ริด" #. 3i55T #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8683 -#, fuzzy msgctxt "notebookbar_groupedbar_full|viewDrawb" msgid "Grou_p" -msgstr "จัดกลุ่ม" +msgstr "จัด_กลุ่ม" #. fNGFB #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8822 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" -msgstr "" +msgstr "_3 มิติ" #. SbHmx #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9078 -#, fuzzy msgctxt "notebookbar_groupedbar_full|graphicB" msgid "_Graphic" -msgstr "กราฟิก" +msgstr "กรา_ฟิก" #. DDTxx #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9243 -#, fuzzy msgctxt "notebookbar_groupedbar_full|colorb" msgid "C_olor" -msgstr "สี" +msgstr "_สี" #. eLnnF #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10172 -#, fuzzy msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" -msgstr "สื่อ" +msgstr "สื่_อ" #. duFFM #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10347 -#, fuzzy msgctxt "notebookbar_groupedbar_full|slideshowOLE" msgid "_Slide Show" -msgstr "การนำเสนอภาพนิ่ง" +msgstr "_นำเสนอภาพนิ่ง" #. wrKzp #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10622 -#, fuzzy msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "F_rame" -msgstr "กรอบ" +msgstr "_ช่องกรอบ" #. EMvnF #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11320 -#, fuzzy msgctxt "notebookbar_groupedbar_full|viewtOLE" msgid "_View" -msgstr "มุมมอง" +msgstr "มุ_มมอง" #. DQLzy #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11480 -#, fuzzy msgctxt "notebookbar_groupedbar_full|oleB" msgid "_Master Page" -msgstr "หน้าต้นแบบ" +msgstr "แ_ม่แบบหน้า" #. QLjsG #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11711 -#, fuzzy msgctxt "notebookbar_groupedbar_full|insertTextm" msgid "_Insert" -msgstr "แทรก" +msgstr "แ_ทรก" #. Eg8Qi #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11936 msgctxt "notebookbar_groupedbar_full|drawm" msgid "D_raw" -msgstr "" +msgstr "วา_ด" #. tcCdm #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12416 -#, fuzzy msgctxt "notebookbar_groupedbar_full|masterviewm" msgid "_View" -msgstr "มุมมอง" +msgstr "มุ_มมอง" #. TRHHB #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:49 -#, fuzzy msgctxt "notebookbar_groups|layout01" msgid "Blank" -msgstr "ช่องว่าง" +msgstr "ภาพนิ่งเปล่า" #. 8fsnY #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:57 msgctxt "notebookbar_groups|layout02" msgid "Title Slide" -msgstr "ชื่อภาพนิ่ง" +msgstr "ภาพนิ่งนำเรื่อง" #. VAnE3 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:65 -#, fuzzy msgctxt "notebookbar_groups|layout03" msgid "Title, Text" -msgstr "ชื่อข้อความ" +msgstr "ชื่อเรื่อง, ข้อความ" #. V64P7 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:73 msgctxt "notebookbar_groups|layout04" msgid "Title, Content" -msgstr "หัวเรื่อง, เนื้อหา" +msgstr "ชื่อเรื่อง, เนื้อหา" #. PAqPF #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:81 @@ -7838,19 +7639,19 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:104 msgctxt "notebookbar_groups|hyperlink" msgid "Hyperlink" -msgstr "เชื่อมโยงพิเศษ" +msgstr "ไฮเพอร์ลิงก์" #. LbUtj #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:118 msgctxt "notebookbar_groups|footnote" msgid "Footnote" -msgstr "เชิงอรรถ" +msgstr "เชิงอรรถท้ายหน้า" #. BkhhA #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:127 msgctxt "notebookbar_groups|endnote" msgid "Endnote" -msgstr "อ้างอิงท้ายเรื่อง" +msgstr "เชิงอรรถท้ายเรื่อง" #. 4uDNR #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:142 @@ -7860,7 +7661,6 @@ #. JE3bf #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:151 -#, fuzzy msgctxt "notebookbar_groups|crossreference" msgid "Cross-Reference" msgstr "อ้างอิงไขว้" @@ -7869,13 +7669,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:168 msgctxt "notebookbar_groups|master01" msgid "Master 1" -msgstr "" +msgstr "แม่แบบ 1" #. 4j2fv #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:177 msgctxt "notebookbar_groups|master02" msgid "Master 2" -msgstr "" +msgstr "แม่แบบ 2" #. Dz9y9 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:257 @@ -7885,27 +7685,24 @@ #. 7YLfF #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:265 -#, fuzzy msgctxt "notebookbar_groups|shapestylenofill" msgid "No Fill" -msgstr "ไม่เติม" +msgstr "ไม่ระบาย" #. ZvUBh #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:273 msgctxt "notebookbar_groups|shapestyleshadow" msgid "With Shadow" -msgstr "" +msgstr "มีเงา" #. F32mr #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:287 -#, fuzzy msgctxt "notebookbar_groups|shapestyletitle1" msgid "Title 1" msgstr "ชื่อเรื่อง 1" #. BH8CJ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:295 -#, fuzzy msgctxt "notebookbar_groups|shapestyletitle2" msgid "Title 2" msgstr "ชื่อเรื่อง 2" @@ -7918,14 +7715,12 @@ #. FHC5q #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:651 -#, fuzzy msgctxt "notebookbar_groups|clipboardgrouplabel" msgid "Clipboard" msgstr "คลิปบอร์ด" #. ffHa2 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:697 -#, fuzzy msgctxt "notebookbar_groups|shapestyleb" msgid "Style" msgstr "ลักษณะ" @@ -7934,13 +7729,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:829 msgctxt "notebookbar_groups|growb" msgid " " -msgstr "" +msgstr " " #. K4uCY #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:852 msgctxt "notebookbar_groups|shrinkb" msgid " " -msgstr "" +msgstr " " #. nyg3m #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1190 @@ -7950,41 +7745,36 @@ #. cCSaA #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1240 -#, fuzzy msgctxt "notebookbar_groups|startshowb" msgid "Start" -msgstr "เ_ริ่มต้น" +msgstr "เริ่ม" #. vgG6B #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1266 -#, fuzzy msgctxt "notebookbar_groups|masterb" msgid "Master" -msgstr "เ~ค้าโครงหลัก" +msgstr "แม่แบบ" #. k69y9 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1286 msgctxt "notebookbar_groups|layoutb" msgid "Layout" -msgstr "เค้าโครง" +msgstr "ผังวาง" #. mfi7o #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1318 -#, fuzzy msgctxt "notebookbar_groups|animationb" msgid "Animation" -msgstr "ภาพเคลื่อนไหว" +msgstr "การเคลื่อนไหว" #. Dxvi5 #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1336 -#, fuzzy msgctxt "notebookbar_groups|transitionb" msgid "Transition" -msgstr "การเปลี่ยนผ่าน" +msgstr "การเปลี่ยนภาพนิ่ง" #. rGCbA #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1383 -#, fuzzy msgctxt "notebookbar_groups|slidegrouplabel" msgid "Slide" msgstr "ภาพนิ่ง" @@ -7997,10 +7787,9 @@ #. geGED #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1471 -#, fuzzy msgctxt "notebookbar_groups|linksb" msgid "Links" -msgstr "~ลิงก์" +msgstr "ลิงก์" #. txpNZ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1585 @@ -8010,7 +7799,6 @@ #. Du8Qw #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1621 -#, fuzzy msgctxt "notebookbar_groups|imagestyleb" msgid "Style" msgstr "ลักษณะ" @@ -8019,17 +7807,16 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1663 msgctxt "notebookbar_groups|resetb" msgid "Reset" -msgstr "ตั้งค่าใหม่" +msgstr "ล้างค่า" #. w6XXT #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1709 msgctxt "notebookbar_groups|wrapb" msgid "Wrap" -msgstr "ตัดคำและวางข้อความ" +msgstr "ไหลข้อความรอบๆ" #. QdS8h #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1725 -#, fuzzy msgctxt "notebookbar_groups|lockb" msgid "Lock" msgstr "ตรึง" @@ -8044,7 +7831,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1826 msgctxt "notebookbar_groups|wrapoff" msgid "None" -msgstr "ไม่มี" +msgstr "ไม่ไหล" #. MCMXX #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1835 @@ -8056,7 +7843,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1844 msgctxt "notebookbar_groups|wrapon" msgid "Parallel" -msgstr "ขนาน" +msgstr "ขนาบข้าง" #. fAfKA #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1853 @@ -8068,43 +7855,40 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1862 msgctxt "notebookbar_groups|wrapright" msgid "After" -msgstr "" +msgstr "หลัง" #. PGXfq #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1871 msgctxt "notebookbar_groups|wrapthrough" msgid "Through" -msgstr "ผ่าน" +msgstr "ทะลุผ่าน" #. WEBWT #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1886 -#, fuzzy msgctxt "notebookbar_groups|wrapcontour" msgid "Contour" -msgstr "เส้นชั้นความสูง" +msgstr "โค้งเขตข้อความ" #. d7AtT #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1895 -#, fuzzy msgctxt "notebookbar_groups|contourdialog" msgid "Edit Contour" -msgstr "เส้นแสดงรูปร่างข้อความ" +msgstr "แก้ไขโค้งเขตข้อความ" #. 7k6fG #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:57 msgctxt "optimpressgeneralpage|startwithwizard" msgid "Start with _Template Selection" -msgstr "" +msgstr "เริ่มด้วยการเลือกแ_ม่แบบ" #. L97gv #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:65 msgctxt "extended_tip|startwithwizard" msgid "Specifies whether to activate the Select a Template window when opening a presentation with File - New - Presentation." -msgstr "" +msgstr "ระบุว่าจะเปิดหน้าต่าง \"เลือกแม่แบบ\" เมื่อสร้างงานนำเสนอใหม่ด้วยเมนู \"แฟ้ม - ใหม่ - งานนำเสนอ\" หรือไม่" #. 5DjoQ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:80 -#, fuzzy msgctxt "optimpressgeneralpage|newdoclbl" msgid "New Document" msgstr "เอกสารใหม่" @@ -8113,25 +7897,25 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:110 msgctxt "optimpressgeneralpage|enprsntcons" msgid "Enable Presenter Console" -msgstr "" +msgstr "เปิดใช้หน้าจอเฝ้าคุมการนำเสนอ" #. dAFGz #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:118 msgctxt "extended_tip|enprsntcons" msgid "Specifies that you want to enable the Presenter Console during slideshows." -msgstr "" +msgstr "ระบุว่าคุณจะเปิดใช้หน้าจอเฝ้าคุมการนำเสนอระหว่างนำเสนอภาพนิ่งหรือไม่" #. qimBE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:129 msgctxt "optimpressgeneralpage|enremotcont" msgid "Enable remote control" -msgstr "" +msgstr "เปิดใช้รีโมตคอนโทรล" #. 7iTJt #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:138 msgctxt "extended_tip|enremotcont" msgid "Specifies that you want to enable Bluetooth remote control while Impress is running." -msgstr "" +msgstr "ระบุว่าคุณต้องการเปิดใช้รีโมตคอนโทรลผ่านบลูทูทขณะที่ Impress ทำงานอยู่หรือไม่" #. txHfw #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:153 @@ -8156,17 +7940,16 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:201 msgctxt "optimpressgeneralpage|cbCompatibility" msgid "Add _spacing between paragraphs and tables" -msgstr "" +msgstr "เพิ่มช่องไฟระหว่างย่อหน้าและตาราง" #. 4dCoV #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:209 msgctxt "extended_tip|cbCompatibility" msgid "Specifies that Impress calculates the paragraph spacing exactly like Microsoft PowerPoint." -msgstr "" +msgstr "ระบุว่าจะให้ Impress คำนวณช่องไฟระหว่างย่อหน้าให้เหมือน Microsoft PowerPoint ทุกประการหรือไม่" #. PaYjQ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:224 -#, fuzzy msgctxt "optimpressgeneralpage|label1" msgid "Compatibility" msgstr "ความเข้ากันได้" @@ -8175,68 +7958,67 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:258 msgctxt "optimpressgeneralpage|copywhenmove" msgid "Copy when moving" -msgstr "" +msgstr "ทำสำเนาเมื่อย้าย" #. a92dE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:267 msgctxt "extended_tip|copywhenmove" msgid "If enabled, a copy is created when you move an object while holding down the Ctrl key." -msgstr "" +msgstr "ถ้าเปิดใช้ ก็จะสร้างสำเนาวัตถุเมื่อคุณย้ายวัตถุพร้อมกับกดปุ่ม Ctrl ร่วมด้วย" #. QdHNF #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:286 msgctxt "optimpressgeneralpage|label6" msgid "Unit of _measurement:" -msgstr "" +msgstr "ห_น่วยวัด:" #. vhiR2 #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:302 msgctxt "extended_tip|units" msgid "Determines the Unit of measurement for presentations." -msgstr "" +msgstr "ระบุหน่วยวัดที่จะใช้ในงานนำเสนอ" #. S8VMD #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:327 -#, fuzzy msgctxt "optimpressgeneralpage|tapstoplabel" msgid "Ta_b stops:" -msgstr "จุดตั้งระยะ" +msgstr "จุดตั้ง_ระยะ:" #. WQBqF #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:350 msgctxt "extended_tip|metricFields" msgid "Defines the spacing between tab stops." -msgstr "" +msgstr "กำหนดระยะห่างระหว่างจุดตั้งระยะ" #. oSmuC #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:367 msgctxt "optimpressgeneralpage|objalwymov" msgid "Objects always moveable" -msgstr "" +msgstr "วัตถุสามารถย้ายได้ตลอดเวลา" #. tgZUG #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:376 msgctxt "extended_tip|objalwymov" msgid "Specifies that you want to move an object with the Rotate tool enabled. If Objects always moveable is not marked, the Rotate tool can only be used to rotate an object." -msgstr "" +msgstr "ระบุว่าคุณต้องการย้ายวัตถุขณะใช้เครื่องมือหมุนวัตถุด้วย ถ้าไม่เลือกตัวเลือกนี้ เครื่องมือหมุนวัตถุก็จะใช้หมุนได้เพียงอย่างเดียว" #. 8cyDE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:387 msgctxt "optimpressgeneralpage|distortcb" msgid "Do not distort objects in curve" -msgstr "" +msgstr "ไม่บิดรูปร่างวัตถุไปตามเส้นโค้ง" #. TDrpy #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:402 msgctxt "optimpressgeneralpage|backgroundback" msgid "Use background cache" -msgstr "" +msgstr "ใช้แคชพื้นหลัง" #. Di3Vo #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:411 msgctxt "extended_tip|backgroundback" msgid "Specifies whether to use the cache for displaying objects on the master slide." -msgstr "" +msgstr "ระบุว่าจะใช้แคชสำหรับแสดงวัตถุต่างๆ ที่มาจากแม่แบบภาพนิ่งหรือไม่" #. psubE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:427 @@ -8246,32 +8028,30 @@ #. JGppH #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:458 -#, fuzzy msgctxt "optimpressgeneralpage|qickedit" msgid "Allow quick editing" -msgstr "ยอมให้แก้ไขอย่างรวดเร็ว" +msgstr "ยอมให้แก้ไขอย่างเร็ว" #. vmsrU #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:467 msgctxt "extended_tip|qickedit" msgid "If on, you can edit text immediately after clicking a text object. If off, you must double-click to edit text." -msgstr "" +msgstr "ถ้าเปิดใช้ คุณจะสามารถแก้ไขข้อความได้ทันทีหลังจากคลิกที่วัตถุข้อความ ถ้าปิด คุณก็จะต้องดับเบิลคลิกเพื่อแก้ไขข้อความ" #. dn7AQ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:478 msgctxt "optimpressgeneralpage|textselected" msgid "Only text area selectable" -msgstr "" +msgstr "เลือกได้เฉพาะในพื้นที่ข้อความเท่านั้น" #. EQqRZ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:486 msgctxt "extended_tip|textselected" msgid "Specifies whether to select a text box by clicking the text." -msgstr "" +msgstr "ระบุว่าจะให้เลือกกล่องข้อความด้วยการคลิกที่ข้อความเท่านั้นหรือไม่" #. 9SB2g #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:501 -#, fuzzy msgctxt "optimpressgeneralpage|label2" msgid "Text Objects" msgstr "วัตถุข้อความ" @@ -8280,26 +8060,25 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:533 msgctxt "optimpressgeneralpage|label8" msgid "_Drawing scale:" -msgstr "" +msgstr "มา_ตราส่วนของการวาด:" #. j7n3M #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:547 -#, fuzzy msgctxt "optimpressgeneralpage|widthlbl" msgid "Page _width:" -msgstr "ความกว้างของหน้า" +msgstr "ความ_กว้างของหน้า:" #. Aay7y #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:561 msgctxt "optimpressgeneralpage|heightlbl" msgid "Page _height:" -msgstr "" +msgstr "ความสู_งของหน้า:" #. g2KSM #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:670 msgctxt "extended_tip|scaleBox" msgid "Determines the drawing scale on the status bar." -msgstr "" +msgstr "กำหนดอัตราย่อขยายของการวาดที่แถบสถานะ" #. E2cEn #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:691 @@ -8311,7 +8090,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:705 msgctxt "extended_tip|OptSavePage" msgid "Defines the general options for drawing or presentation documents." -msgstr "" +msgstr "กำหนดค่าตัวเลือกทั่วไปสำหรับเอกสารงานวาดหรืองานนำเสนอ" #. sGCUC #: sd/uiconfig/simpress/ui/photoalbum.ui:16 @@ -8321,7 +8100,6 @@ #. 2PDAX #: sd/uiconfig/simpress/ui/photoalbum.ui:48 -#, fuzzy msgctxt "photoalbum|create_btn" msgid "Insert Slides" msgstr "แทรกภาพนิ่ง" @@ -8330,31 +8108,31 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:164 msgctxt "photoalbum|rem_btn|tooltip_text" msgid "Remove Image from List" -msgstr "" +msgstr "ตัดรูปภาพออกจากรายชื่อ" #. GLHeM #: sd/uiconfig/simpress/ui/photoalbum.ui:175 msgctxt "photoalbum|up_btn" msgid "_Up" -msgstr "" +msgstr "_ขึ้น" #. Xzv9L #: sd/uiconfig/simpress/ui/photoalbum.ui:179 msgctxt "photoalbum|up_btn|tooltip_text" msgid "Move Image Up" -msgstr "" +msgstr "เลื่อนรูปภาพขึ้น" #. BHQEj #: sd/uiconfig/simpress/ui/photoalbum.ui:190 msgctxt "photoalbum|down_btn" msgid "Do_wn" -msgstr "" +msgstr "_ลง" #. ANTjq #: sd/uiconfig/simpress/ui/photoalbum.ui:194 msgctxt "photoalbum|down_btn|tooltip_text" msgid "Move Image Down" -msgstr "" +msgstr "เลื่อนรูปภาพลง" #. 98Y7U #: sd/uiconfig/simpress/ui/photoalbum.ui:261 @@ -8364,47 +8142,42 @@ #. XC4DZ #: sd/uiconfig/simpress/ui/photoalbum.ui:290 -#, fuzzy msgctxt "photoalbum|label7" msgid "Slide layout:" -msgstr "เค้าโครงภาพนิ่ง" +msgstr "ผังภาพนิ่ง:" #. AnpSF #: sd/uiconfig/simpress/ui/photoalbum.ui:306 msgctxt "photoalbum|liststore2" msgid "1 Image" -msgstr "" +msgstr "1 รูป" #. KLSzL #: sd/uiconfig/simpress/ui/photoalbum.ui:307 -#, fuzzy msgctxt "photoalbum|liststore2" msgid "2 Images" -msgstr "รูปภาพ" +msgstr "2 รูป" #. QviuN #: sd/uiconfig/simpress/ui/photoalbum.ui:308 -#, fuzzy msgctxt "photoalbum|liststore2" msgid "4 Images" -msgstr "รูปภาพ" +msgstr "4 รูป" #. sEcMd #: sd/uiconfig/simpress/ui/photoalbum.ui:326 msgctxt "photoalbum|cap_check" msgid "Add caption to each slide" -msgstr "" +msgstr "เพิ่มคำบรรยายภาพลงในภาพนิ่งแต่ละแผ่น" #. qD3jg #: sd/uiconfig/simpress/ui/photoalbum.ui:341 -#, fuzzy msgctxt "photoalbum|asr_check" msgid "Keep aspect ratio" -msgstr "คงอัตราส่วนยาวต่อกว้าง" +msgstr "คงอัตราส่วนภาพ" #. bBevM #: sd/uiconfig/simpress/ui/photoalbum.ui:357 -#, fuzzy msgctxt "photoalbum|asr_check_crop" msgid "Fill Screen" msgstr "เต็มจอ" @@ -8413,70 +8186,67 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:372 msgctxt "photoalbum|insert_as_link_check" msgid "Link images" -msgstr "" +msgstr "สร้างลิงก์ไปยังรูปภาพ" #. LAEo2 #: sd/uiconfig/simpress/ui/presentationdialog.ui:13 -#, fuzzy msgctxt "presentationdialog|PresentationDialog" msgid "Slide Show Settings" -msgstr "~การตั้งค่าการแสดงภาพนิ่ง..." +msgstr "การตั้งค่าการแสดงภาพนิ่ง" #. acmHw #: sd/uiconfig/simpress/ui/presentationdialog.ui:114 -#, fuzzy msgctxt "presentationdialog|from" msgid "_From:" -msgstr "จาก:" +msgstr "_จาก:" #. yfqmc #: sd/uiconfig/simpress/ui/presentationdialog.ui:126 msgctxt "presentationdialog|extended_tip|from" msgid "Enter the number of the start slide." -msgstr "" +msgstr "ป้อนชื่อภาพนิ่งเริ่มต้น" #. tc75b #: sd/uiconfig/simpress/ui/presentationdialog.ui:145 msgctxt "presentationdialog|from_cb-atkobject" msgid "Starting slide" -msgstr "" +msgstr "ภาพนิ่งเริ่มต้น" #. wwhvu #: sd/uiconfig/simpress/ui/presentationdialog.ui:146 msgctxt "presentationdialog|extended_tip|from_cb" msgid "Enter the number of the start slide." -msgstr "" +msgstr "ป้อนชื่อภาพนิ่งเริ่มต้น" #. FLsDP #: sd/uiconfig/simpress/ui/presentationdialog.ui:163 -#, fuzzy msgctxt "presentationdialog|allslides" msgid "All _slides" -msgstr "ภาพนิ่ง~ทั้งหมด" +msgstr "ภาพนิ่ง_ทั้งหมด" #. 6xRAA #: sd/uiconfig/simpress/ui/presentationdialog.ui:172 msgctxt "presentationdialog|extended_tip|allslides" msgid "Includes all of the slides in your slide show." -msgstr "" +msgstr "แสดงภาพนิ่งทุกหน้าในการแสดงภาพนิ่งของคุณ" #. h3FfX #: sd/uiconfig/simpress/ui/presentationdialog.ui:189 msgctxt "presentationdialog|customslideshow" msgid "_Custom slide show:" -msgstr "การแสดงภาพนิ่ง_กำหนดเอง:" +msgstr "การแสดงภาพนิ่งที่_กำหนดเอง:" #. AcANY #: sd/uiconfig/simpress/ui/presentationdialog.ui:201 msgctxt "presentationdialog|extended_tip|customslideshow" msgid "Runs a custom slide show in the order that you defined in Slide Show - Custom Slide Show." -msgstr "" +msgstr "ดำเนินการแสดงภาพนิ่งที่กำหนดเองตามลำดับที่คุณกำหนดด้วยเมนู \"นำเสนอภาพนิ่ง - แสดงภาพนิ่งโดยกำหนดเอง" #. PG83u #: sd/uiconfig/simpress/ui/presentationdialog.ui:220 msgctxt "presentationdialog|extended_tip|customslideshow_cb" msgid "Runs a custom slide show in the order that you defined in Slide Show - Custom Slide Show." -msgstr "" +msgstr "ดำเนินการแสดงภาพนิ่งที่กำหนดเองตามลำดับที่คุณกำหนดด้วยเมนู \"นำเสนอภาพนิ่ง - แสดงภาพนิ่งโดยกำหนดเอง" #. 7vRFv #: sd/uiconfig/simpress/ui/presentationdialog.ui:241 @@ -8488,154 +8258,151 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:285 msgctxt "presentationdialog|extended_tip|presdisplay_cb" msgid "Select a display to use for full screen slide show mode." -msgstr "" +msgstr "เลือกจอแสดงผลที่จะใช้แสดงภาพนิ่งในโหมดเต็มจอ" #. xo7EX #: sd/uiconfig/simpress/ui/presentationdialog.ui:298 msgctxt "presentationdialog|presdisplay_label" msgid "P_resentation display:" -msgstr "" +msgstr "จอนำเ_สนอ:" #. ECzT8 #: sd/uiconfig/simpress/ui/presentationdialog.ui:321 msgctxt "presentationdialog|externalmonitor_str" msgid "Display %1 (external)" -msgstr "" +msgstr "จอ %1 (ภายนอก)" #. xDUjL #: sd/uiconfig/simpress/ui/presentationdialog.ui:331 msgctxt "presentationdialog|monitor_str" msgid "Display %1" -msgstr "" +msgstr "จอ %1" #. DZ2HG #: sd/uiconfig/simpress/ui/presentationdialog.ui:341 msgctxt "presentationdialog|allmonitors_str" msgid "All displays" -msgstr "ทุกจอแสดงผล" +msgstr "ทุกจอ" #. 65GqG #: sd/uiconfig/simpress/ui/presentationdialog.ui:351 msgctxt "presentationdialog|external_str" msgid "Auto External (Display %1)" -msgstr "" +msgstr "จอภายนอกโดยอัตโนมัติ (จอ %1)" #. m9FjZ #: sd/uiconfig/simpress/ui/presentationdialog.ui:370 -#, fuzzy msgctxt "presentationdialog|label3" msgid "Multiple Displays" -msgstr "แสดงผลหลายจอ" +msgstr "การแสดงผลหลายจอ" #. bvPPh #: sd/uiconfig/simpress/ui/presentationdialog.ui:408 -#, fuzzy msgctxt "presentationdialog|default" msgid "F_ull screen" -msgstr "เต็มจอ" +msgstr "เต็มจ_อ" #. 5Pdcc #: sd/uiconfig/simpress/ui/presentationdialog.ui:417 msgctxt "presentationdialog|extended_tip|default" msgid "A full screen slide is shown." -msgstr "" +msgstr "แสดงภาพนิ่งแบบเต็มจอ" #. ESNR9 #: sd/uiconfig/simpress/ui/presentationdialog.ui:428 msgctxt "presentationdialog|window" msgid "In a _window" -msgstr "" +msgstr "ใน_หน้าต่าง" #. mGQKG #: sd/uiconfig/simpress/ui/presentationdialog.ui:437 msgctxt "presentationdialog|extended_tip|window" msgid "Slide show runs in the Impress program window." -msgstr "" +msgstr "แสดงภาพนิ่งในหน้าต่าง Impress" #. DAKWY #: sd/uiconfig/simpress/ui/presentationdialog.ui:448 msgctxt "presentationdialog|auto" msgid "_Loop and repeat after:" -msgstr "" +msgstr "ว_นซ้ำหลังจาก:" #. ewuNo #: sd/uiconfig/simpress/ui/presentationdialog.ui:460 msgctxt "presentationdialog|extended_tip|auto" msgid "Restarts the slide show after the pause interval you specify. A pause slide is displayed between the final slide and the start slide. Press the Esc key to stop the show." -msgstr "" +msgstr "เริ่มการแสดงภาพนิ่งใหม่หลังจากหยุดพักเป็นเวลาตามที่คุณกำหนด โดยจะแสดงภาพนิ่งพักคอยคั่นระหว่างภาพนิ่งสุดท้ายกับภาพนิ่งแรก คุณสามารถกด Esc เพื่อหยุดการแสดงได้" #. FPAvh #: sd/uiconfig/simpress/ui/presentationdialog.ui:471 msgctxt "presentationdialog|showlogo" msgid "Show _logo" -msgstr "" +msgstr "แสดงโ_ลโก้" #. jCenX #: sd/uiconfig/simpress/ui/presentationdialog.ui:480 msgctxt "presentationdialog|extended_tip|showlogo" msgid "Displays the application logo on the pause slide." -msgstr "" +msgstr "แสดงโลโก้ของแอปพลิเคชันในภาพนิ่งพักคอย" #. vJ9Ns #: sd/uiconfig/simpress/ui/presentationdialog.ui:494 msgctxt "presentationdialog|pauseduration|tooltip_text" msgid "Duration of pause" -msgstr "ช่วงเวลาที่หยุดชั่วคราว" +msgstr "ระยะเวลาที่หยุดพัก" #. K3LHh #: sd/uiconfig/simpress/ui/presentationdialog.ui:504 msgctxt "presentationdialog|pauseduration-atkobject" msgid "Pause Duration" -msgstr "ช่วงเวลาที่หยุดชั่วคราว" +msgstr "ระยะเวลาที่หยุดพัก" #. Bjmck #: sd/uiconfig/simpress/ui/presentationdialog.ui:505 msgctxt "presentationdialog|extended_tip|pauseduration" msgid "Enter the duration of the pause before the slide show is repeated. If you enter zero, the show restarts immediately without showing a pause slide." -msgstr "" +msgstr "ป้อนระยะเวลาที่จะหยุดพักก่อนที่จะวนซ้ำการแสดงภาพนิ่งใหม่ ถ้าคุณป้อนค่าศูนย์ ก็จะเริ่มแสดงใหม่ทันทีโดยไม่มีภาพนิ่งพักคอย" #. 7PBdA #: sd/uiconfig/simpress/ui/presentationdialog.ui:520 -#, fuzzy msgctxt "presentationdialog|label2" msgid "Presentation Mode" -msgstr "PresentationFooter" +msgstr "โหมดการนำเสนอ" #. J9PFv #: sd/uiconfig/simpress/ui/presentationdialog.ui:552 msgctxt "presentationdialog|manualslides" msgid "Change slides _manually" -msgstr "" +msgstr "เปลี่ยนภาพนิ่งด้วย_มือ" #. 2PEAj #: sd/uiconfig/simpress/ui/presentationdialog.ui:560 msgctxt "presentationdialog|extended_tip|manualslides" msgid "Slides never change automatically when this box is selected." -msgstr "" +msgstr "จะไม่มีการเปลี่ยนภาพนิ่งโดยอัตโนมัติถ้ากากล่องกานี้" #. e4tCG #: sd/uiconfig/simpress/ui/presentationdialog.ui:571 msgctxt "presentationdialog|pointervisible" msgid "Mouse pointer _visible" -msgstr "" +msgstr "แสดงตัว_ชี้เมาส์" #. pDBLN #: sd/uiconfig/simpress/ui/presentationdialog.ui:579 msgctxt "presentationdialog|extended_tip|pointervisible" msgid "Shows the mouse pointer during a slide show." -msgstr "" +msgstr "แสดงตัวชี้เมาส์ระหว่างนำเสนอภาพนิ่ง" #. seTuX #: sd/uiconfig/simpress/ui/presentationdialog.ui:590 msgctxt "presentationdialog|pointeraspen" msgid "Mouse pointer as _pen" -msgstr "" +msgstr "ใช้ตัวชี้เมาส์เป็น_ปากกา" #. QLvoH #: sd/uiconfig/simpress/ui/presentationdialog.ui:598 msgctxt "presentationdialog|extended_tip|pointeraspen" msgid "Changes the mouse pointer to a pen which you can use to draw on slides during the presentation." -msgstr "" +msgstr "เปลี่ยนตัวชี้เมาส์เป็นปากกา ซึ่งคุณสามารถใช้วาดบนภาพนิ่งได้ระหว่างนำเสนอ" #. YqoxU #: sd/uiconfig/simpress/ui/presentationdialog.ui:609 @@ -8647,31 +8414,31 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:617 msgctxt "presentationdialog|extended_tip|animationsallowed" msgid "Displays all frames of animated GIF files during the slide show." -msgstr "" +msgstr "แสดงเฟรมภาพทั้งหมดของภาพ GIF เคลื่อนไหวระหว่างแสดงภาพนิ่ง" #. ZvDVF #: sd/uiconfig/simpress/ui/presentationdialog.ui:628 msgctxt "presentationdialog|changeslidesbyclick" msgid "Change slides by clic_king on background" -msgstr "" +msgstr "เปลี่ยนภาพนิ่งด้วยการคลิกที่_พื้นหลัง" #. tzMEC #: sd/uiconfig/simpress/ui/presentationdialog.ui:636 msgctxt "presentationdialog|extended_tip|changeslidesbyclick" msgid "Advances to the next slide when you click on the background of a slide." -msgstr "" +msgstr "ขยับไปภาพนิ่งถัดไปเมื่อคุณคลักที่พื้นหลังภาพนิ่ง" #. tA4uX #: sd/uiconfig/simpress/ui/presentationdialog.ui:647 msgctxt "presentationdialog|alwaysontop" msgid "Presentation always _on top" -msgstr "" +msgstr "งานนำเสนออยู่_บนสุดเสมอ" #. 49nwd #: sd/uiconfig/simpress/ui/presentationdialog.ui:655 msgctxt "presentationdialog|extended_tip|alwaysontop" msgid "The Impress window remains on top during the presentation. No other program will show its window in front of your presentation." -msgstr "" +msgstr "หน้าต่าง Impress จะอยู่บนสุดเสมอระหว่างนำเสนอ โปรแกรมอื่นจะไม่สามารถแสดงหน้าต่างทับบนงานนำเสนอของคุณได้" #. zdH6V #: sd/uiconfig/simpress/ui/presentationdialog.ui:673 @@ -8683,7 +8450,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:710 msgctxt "presentationdialog|extended_tip|PresentationDialog" msgid "Defines settings for your slide show, including which slide to start from, the way you advance the slides, the type of presentation, and pointer options." -msgstr "" +msgstr "ตั้งค่าการแสดงภาพนิ่งของคุณ ซึ่งรวมถึงภาพนิ่งที่จะเริ่มต้น, วิธีเปลี่ยนภาพนิ่ง, ชนิดของการนำเสนอ, และตัวเลือกสำหรับตัวชี้เมาส์" #. Byo4C #: sd/uiconfig/simpress/ui/prntopts.ui:33 @@ -8695,141 +8462,133 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:43 msgctxt "extended_tip|pagedefaultrb" msgid "Specifies that you do not want to further scale pages when printing." -msgstr "" +msgstr "ระบุว่าคุณไม่ต้องการย่อ-ขยายหน้าอีกแล้วในการพิมพ์" #. Azbxx #: sd/uiconfig/simpress/ui/prntopts.ui:54 -#, fuzzy msgctxt "prntopts|fittopgrb" msgid "_Fit to page" -msgstr "จัดพอดีกับหน้า" +msgstr "_พอดีกับหน้า" #. BY9Lo #: sd/uiconfig/simpress/ui/prntopts.ui:64 msgctxt "extended_tip|fittopgrb" msgid "Specifies whether to scale down objects that are beyond the margins of the current printer, so that they fit on the paper in the printer." -msgstr "" +msgstr "ระบุว่าจะย่อขนาดวัตถุต่างๆ ที่ตกขอบกระดาษเพื่อให้พอดีกับกระดาษในเครื่องพิมพ์หรือไม่" #. 7Jqsg #: sd/uiconfig/simpress/ui/prntopts.ui:75 msgctxt "prntopts|tilepgrb" msgid "_Tile pages" -msgstr "เรียงหน้าแบบ_กระเบื้อง" +msgstr "เรียงหน้าแบบปู_กระเบื้อง" #. XVA4W #: sd/uiconfig/simpress/ui/prntopts.ui:85 msgctxt "extended_tip|tilepgrb" msgid "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, several pages or slides will be printed on one page of paper." -msgstr "" +msgstr "ระบุให้พิมพ์หน้าต่างๆ แบบปูกระเบื้อง ถ้าหน้าหรือภาพนิ่งมีขนาดเล้กกว่ากระดาษ ก็จะซ้ำหน้าหรือภาพนิ่งนั้นหลายๆ ชุดในกระดาษแผ่นเดียว" #. DRu9w #: sd/uiconfig/simpress/ui/prntopts.ui:96 msgctxt "prntopts|papertryfrmprntrcb" msgid "Paper tray from printer s_ettings" -msgstr "" +msgstr "ใช้_ถาดกระดาษตามที่ตั้งค่าเครื่องพิมพ์ไว้" #. KFsSk #: sd/uiconfig/simpress/ui/prntopts.ui:104 msgctxt "extended_tip|papertryfrmprntrcb" msgid "Determines that the paper tray to be used is the one defined in the printer setup." -msgstr "" +msgstr "ระบุว่าถาดกระดาษที่จะใช้คือถาดที่กำหนดไว้ในค่าตั้งของเครื่องพิมพ์" #. LXUhA #: sd/uiconfig/simpress/ui/prntopts.ui:115 -#, fuzzy msgctxt "prntopts|brouchrb" msgid "B_rochure" -msgstr "แผ่นพับ" +msgstr "แ_ผ่นพับ" #. 96Suw #: sd/uiconfig/simpress/ui/prntopts.ui:125 msgctxt "extended_tip|brouchrb" msgid "Select the Brochure option to print the document in brochure format." -msgstr "" +msgstr "พิมพ์เอกสารในรูปแบบแผ่นพับ" #. QiBFz #: sd/uiconfig/simpress/ui/prntopts.ui:143 msgctxt "prntopts|frontcb" msgid "Fr_ont" -msgstr "" +msgstr "ด้านห_น้า" #. afFiH #: sd/uiconfig/simpress/ui/prntopts.ui:155 msgctxt "extended_tip|frontcb" msgid "Select Front to print the front of a brochure." -msgstr "" +msgstr "พิมพ์ด้านหน้าของแผ่นพับ" #. RmDFe #: sd/uiconfig/simpress/ui/prntopts.ui:167 -#, fuzzy msgctxt "prntopts|backcb" msgid "Ba_ck" -msgstr "กลับ" +msgstr "ด้านหลั_ง" #. B3z27 #: sd/uiconfig/simpress/ui/prntopts.ui:179 msgctxt "extended_tip|backcb" msgid "Select Back to print the back of a brochure." -msgstr "" +msgstr "พิมพ์ด้านหลังของแผ่นพับ" #. NsWL6 #: sd/uiconfig/simpress/ui/prntopts.ui:201 -#, fuzzy msgctxt "prntopts|label3" msgid "Page Options" -msgstr "ตัวเลือกรูปภาพ" +msgstr "ตัวเลือกของหน้าเอกสาร" #. Cwizr #: sd/uiconfig/simpress/ui/prntopts.ui:231 -#, fuzzy msgctxt "prntopts|pagenmcb" msgid "_Page name" -msgstr "หมายเ_ลขหน้า" +msgstr "_ชื่อของหน้า" #. tFJRe #: sd/uiconfig/simpress/ui/prntopts.ui:240 msgctxt "extended_tip|pagenmcb" msgid "Specifies whether to print the page name." -msgstr "" +msgstr "ระบุว่าจะพิมพ์ชื่อของหน้าหรือไม่" #. XeD9w #: sd/uiconfig/simpress/ui/prntopts.ui:251 -#, fuzzy msgctxt "prntopts|datecb" msgid "D_ate" -msgstr "วัน" +msgstr "วัน_ที่" #. RFT4B #: sd/uiconfig/simpress/ui/prntopts.ui:260 msgctxt "extended_tip|datecb" msgid "Specifies whether to print the current date." -msgstr "" +msgstr "ระบุว่าจะพิมพ์วันที่ปัจจุบันหรือไม่" #. 4Dm6A #: sd/uiconfig/simpress/ui/prntopts.ui:271 -#, fuzzy msgctxt "prntopts|timecb" msgid "Ti_me" -msgstr "เวลา" +msgstr "_เวลา" #. aPHPX #: sd/uiconfig/simpress/ui/prntopts.ui:280 msgctxt "extended_tip|timecb" msgid "Specifies whether to print the current time." -msgstr "" +msgstr "ระบุว่าจะพิมพ์เวลาปัจจุบันหรือไม่" #. dBXeA #: sd/uiconfig/simpress/ui/prntopts.ui:291 -#, fuzzy msgctxt "prntopts|hiddenpgcb" msgid "H_idden pages" -msgstr "หน้าที่ซ่อน" +msgstr "หน้าที่ซ่_อนไว้" #. CZxYk #: sd/uiconfig/simpress/ui/prntopts.ui:300 msgctxt "extended_tip|hiddenpgcb" msgid "Specifies whether to print the pages that are hidden from the presentation." -msgstr "" +msgstr "ระบุว่าจะพิมพ์หน้าที่ซ่อนไว้จากการนำเสนอหรือไม่" #. XuHA2 #: sd/uiconfig/simpress/ui/prntopts.ui:315 @@ -8847,33 +8606,31 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:366 msgctxt "extended_tip|defaultrb" msgid "Specifies that you want to print in original colors." -msgstr "" +msgstr "ระบุว่าคุณต้องการพิมพ์ด้วยสีเดิมในเอกสาร" #. sFK9C #: sd/uiconfig/simpress/ui/prntopts.ui:377 -#, fuzzy msgctxt "prntopts|grayscalerb" msgid "Gra_yscale" -msgstr "สเกลสีเทา" +msgstr "_สเกลสีเทา" #. 85Da5 #: sd/uiconfig/simpress/ui/prntopts.ui:387 msgctxt "extended_tip|grayscalerb" msgid "Specifies that you want to print colors as grayscale." -msgstr "" +msgstr "ระบุคุณต้องการพิมพ์สีต่างๆ ด้วยสเกลสีเทา" #. ibjkX #: sd/uiconfig/simpress/ui/prntopts.ui:398 -#, fuzzy msgctxt "prntopts|blackwhiterb" msgid "Black & _white" -msgstr "ดำและ~ขาว" +msgstr "_ขาวดำ" #. CcezY #: sd/uiconfig/simpress/ui/prntopts.ui:408 msgctxt "extended_tip|blackwhiterb" msgid "Specifies that you want to print the document in black and white." -msgstr "" +msgstr "ระบุว่าคุณต้องการพิมพ์เอกสารในแบบขาวดำ" #. PUgsP #: sd/uiconfig/simpress/ui/prntopts.ui:423 @@ -8891,13 +8648,13 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:468 msgctxt "prntopts|notecb" msgid "Notes" -msgstr "บันทึก" +msgstr "บันทึกเสริม" #. CvxXM #: sd/uiconfig/simpress/ui/prntopts.ui:483 msgctxt "prntopts|handoutcb" msgid "Handouts" -msgstr "เอกสารประกอบคำบรรยาย" +msgstr "เอกสารแจก" #. sGvpE #: sd/uiconfig/simpress/ui/prntopts.ui:498 @@ -8915,243 +8672,241 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:539 msgctxt "extended_tip|prntopts" msgid "Specifies print settings within a drawing or presentation document." -msgstr "" +msgstr "ระบุค่าตั้งสำหรับการพิมพ์เอกสารงานวาดหรืองานนำเสนอ" #. QRYoE #: sd/uiconfig/simpress/ui/publishingdialog.ui:21 msgctxt "publishingdialog|PublishingDialog" msgid "HTML Export" -msgstr "" +msgstr "ส่งออกเป็น HTML" #. tDwdY #: sd/uiconfig/simpress/ui/publishingdialog.ui:61 -#, fuzzy msgctxt "publishingdialog|lastPageButton" msgid "< Back" -msgstr "< ~ย้อนกลับ" +msgstr "< ย้อนกลับ" #. HWaiE #: sd/uiconfig/simpress/ui/publishingdialog.ui:74 msgctxt "publishingdialog|finishButton" msgid "_Create" -msgstr "" +msgstr "_สร้าง" #. xFoJm #: sd/uiconfig/simpress/ui/publishingdialog.ui:81 msgctxt "publishingdialog|extended_tip|finishButton" msgid "Creates new documents according to your selections and saves the documents." -msgstr "" +msgstr "สร้างเอกสารใหม่ตามที่คุณเลือกและบันทึกเอกสาร" #. VNyoG #: sd/uiconfig/simpress/ui/publishingdialog.ui:93 -#, fuzzy msgctxt "publishingdialog|nextPageButton" msgid "Ne_xt >" -msgstr "~ถัดไป >>" +msgstr "_ถัดไป >" #. hKYBh #: sd/uiconfig/simpress/ui/publishingdialog.ui:135 msgctxt "publishingdialog|newDesignRadiobutton" msgid "New _design" -msgstr "" +msgstr "แบบให_ม่" #. 4HYDP #: sd/uiconfig/simpress/ui/publishingdialog.ui:144 msgctxt "publishingdialog|extended_tip|newDesignRadiobutton" msgid "Creates a new design in the next pages of the Wizard." -msgstr "" +msgstr "ออกแบบใหม่ในหน้าถัดไปของเครื่องมือช่วยสร้างนี้" #. SrGoC #: sd/uiconfig/simpress/ui/publishingdialog.ui:156 msgctxt "publishingdialog|oldDesignRadiobutton" msgid "Existing design" -msgstr "" +msgstr "แบบที่มี_อยู่" #. SQUhj #: sd/uiconfig/simpress/ui/publishingdialog.ui:165 msgctxt "publishingdialog|extended_tip|oldDesignRadiobutton" msgid "Loads an existing design from the design list to use as a starting point for the steps to follow on the next pages of the Wizard." -msgstr "" +msgstr "โหลดแบบที่มีอยู่จากรายชื่อแบบ เพื่อใช้เป็นแบบตั้งต้นสำหรับขั้นถัดไปในหน้าต่อไปของเครื่องมือช่วยสร้างนี้" #. CTCLg #: sd/uiconfig/simpress/ui/publishingdialog.ui:216 msgctxt "publishingdialog|extended_tip|designsTreeview" msgid "Displays all existing designs." -msgstr "" +msgstr "แสดงแบบที่มีอยู่ทั้งหมด" #. mEc7e #: sd/uiconfig/simpress/ui/publishingdialog.ui:245 msgctxt "publishingdialog|descLabel" msgid "Select an existing design or create a new one" -msgstr "" +msgstr "เลือกแบบที่มีอยู่หรือออกแบบใหม่" #. DTYoF #: sd/uiconfig/simpress/ui/publishingdialog.ui:257 msgctxt "publishingdialog|delDesingButton" msgid "Delete Selected Design" -msgstr "" +msgstr "ลบแบบที่เลือก" #. TMauF #: sd/uiconfig/simpress/ui/publishingdialog.ui:266 msgctxt "publishingdialog|extended_tip|delDesingButton" msgid "Deletes the selected design from the design list." -msgstr "" +msgstr "ลบแบบที่เลือกออกจากรายชื่อแบบ" #. cQEWT #: sd/uiconfig/simpress/ui/publishingdialog.ui:289 msgctxt "publishingdialog|assignLabel" msgid "Assign Design" -msgstr "" +msgstr "การออกแบบ" #. zD3NQ #: sd/uiconfig/simpress/ui/publishingdialog.ui:298 msgctxt "publishingdialog|extended_tip|page1" msgid "Determines the settings for publishing Draw or Impress documents in HTML format." -msgstr "" +msgstr "กำหนดค่าสำหรับการเผยแพร่เอกสาร Draw หรือ Impress ในรูปแบบ HTML" #. 9Wotv #: sd/uiconfig/simpress/ui/publishingdialog.ui:335 msgctxt "publishingdialog|ASPRadiobutton" msgid "_Active Server Pages (ASP)" -msgstr "" +msgstr "_Active Server Pages (ASP)" #. D4oV4 #: sd/uiconfig/simpress/ui/publishingdialog.ui:344 msgctxt "publishingdialog|extended_tip|ASPRadiobutton" msgid "When you select the ASP option, the WebCast export creates ASP pages. Note that the HTML presentation can only be offered by a web server supporting ASP." -msgstr "" +msgstr "เมื่อคุณเลือก ASP การส่งออกเว็บคาสต์จะสร้างหน้า ASP ให้ และพึงระลึกว่างานนำเสนอ HTML ที่ได้จะสามารถทำงานได้บนเว็บเซิร์ฟเวอร์ที่รองรับ ASP เท่านั้น" #. 62rNz #: sd/uiconfig/simpress/ui/publishingdialog.ui:356 msgctxt "publishingdialog|perlRadiobutton" msgid "Perl" -msgstr "" +msgstr "Perl" #. UBiAa #: sd/uiconfig/simpress/ui/publishingdialog.ui:365 msgctxt "publishingdialog|extended_tip|perlRadiobutton" msgid "Used by WebCast export to create HTML pages and Perl scripts." -msgstr "" +msgstr "ใช้โดยการส่งออกเว็บคาสต์ในการสร้างหน้า HTML ที่ใช้สคริปต์ Perl" #. 5tjnv #: sd/uiconfig/simpress/ui/publishingdialog.ui:387 msgctxt "publishingdialog|indexTxtLabel" msgid "_URL for listeners:" -msgstr "" +msgstr "_URL สำหรับผู้ฟัง:" #. YgFn6 #: sd/uiconfig/simpress/ui/publishingdialog.ui:406 msgctxt "publishingdialog|extended_tip|indexEntry" msgid "Specifies the URL (absolute or relative) to be entered by the viewer in order to see the presentation." -msgstr "" +msgstr "ระบุ URL (สัมบูรณ์หรือสัมพัทธ์) ที่จะให้ผู้ชมเปิดเพื่อดูงานนำเสนอ" #. Z4rnL #: sd/uiconfig/simpress/ui/publishingdialog.ui:421 msgctxt "publishingdialog|URLTxtLabel" msgid "URL for _presentation:" -msgstr "" +msgstr "URL สำหรับงาน_นำเสนอ:" #. V5ADs #: sd/uiconfig/simpress/ui/publishingdialog.ui:439 msgctxt "publishingdialog|extended_tip|URLEntry" msgid "Specifies the URL (absolute or relative), where the created HTML presentation on the web server has been saved." -msgstr "" +msgstr "ระบุ URL (สัมบูรณ์หรือสัมพัทธ์) ที่เก็บบันทึกงานนำเสนอ HTML ที่สร้างขึ้นในเว็บเซิร์ฟเวอร์" #. LNk9W #: sd/uiconfig/simpress/ui/publishingdialog.ui:454 msgctxt "publishingdialog|CGITxtLabel" msgid "URL for _Perl scripts:" -msgstr "" +msgstr "URL สำหรับสคริปต์ _Perl:" #. h5jnr #: sd/uiconfig/simpress/ui/publishingdialog.ui:472 msgctxt "publishingdialog|extended_tip|CGIEntry" msgid "Specifies the URL (absolute or relative) for the generated Perl scripts." -msgstr "" +msgstr "ระบุ URL (สัมบูรณ์หรือสัมพัทธ์) สำหรับสคริปต์ Perl ที่ผลิตขึ้น" #. yEtQi #: sd/uiconfig/simpress/ui/publishingdialog.ui:495 msgctxt "publishingdialog|webCastLabel" msgid "Webcast" -msgstr "" +msgstr "เว็บคาสต์" #. qmfBA #: sd/uiconfig/simpress/ui/publishingdialog.ui:527 msgctxt "publishingdialog|chgDefaultRadiobutton" msgid "_As stated in document" -msgstr "" +msgstr "ตามที่_ระบุในเอกสาร" #. 5C9U8 #: sd/uiconfig/simpress/ui/publishingdialog.ui:536 msgctxt "publishingdialog|extended_tip|chgDefaultRadiobutton" msgid "The slide transition depends on the timing that you set for each slide in the presentation. If you set a manual page transition, the HTML presentation introduces a new page by pressing any key from your keyboard." -msgstr "" +msgstr "การเปลี่ยนภาพนิ่งจะขึ้นอยู่กับกำหนดเวลาที่คุณตั้งไว้สำหรับภาพนิ่งแต่ละหน้าในงานนำเสนอ ถ้าคุณกำหนดให้เปลี่ยนภาพนิ่งด้วยมือ งานนำเสนอ HTML ที่สร้างก็จะเปลี่ยนหน้าด้วยการกดปุ่มใดๆ บนแป้นพิมพ์" #. vuFBo #: sd/uiconfig/simpress/ui/publishingdialog.ui:548 msgctxt "publishingdialog|chgAutoRadiobutton" msgid "_Automatic" -msgstr "_อัตโนมัติ" +msgstr "อัตโ_นมัติ" #. 3Wi7b #: sd/uiconfig/simpress/ui/publishingdialog.ui:557 msgctxt "publishingdialog|extended_tip|chgAutoRadiobutton" msgid "The page transition takes place automatically after the specified period of time elapses and does not depend on the presentation's contents" -msgstr "" +msgstr "เปลี่ยนหน้าโดยอัตโนมัติหลังจากระยะเวลาที่กำหนดโดยไม่ขึ้นกับเนื้อหาที่กำหนดไว้ในงานนำเสนอ" #. 4YUzC #: sd/uiconfig/simpress/ui/publishingdialog.ui:583 msgctxt "publishingdialog|durationTxtLabel" msgid "_Slide view time:" -msgstr "" +msgstr "เวลาแสดง_ภาพนิ่ง:" #. ACdZC #: sd/uiconfig/simpress/ui/publishingdialog.ui:603 msgctxt "publishingdialog|extended_tip|durationSpinbutton" msgid "Defines the amount of time for each slide display." -msgstr "" +msgstr "กำหนดระยะเวลาแสดงภาพนิ่งแต่ละหน้า" #. jMsf2 #: sd/uiconfig/simpress/ui/publishingdialog.ui:622 msgctxt "publishingdialog|endlessCheckbutton" msgid "_Endless" -msgstr "" +msgstr "แสดงไปเ_รื่อยๆ" #. AM5ni #: sd/uiconfig/simpress/ui/publishingdialog.ui:631 msgctxt "publishingdialog|extended_tip|endlessCheckbutton" msgid "Automatically restarts the HTML presentation after the last slide has been displayed." -msgstr "" +msgstr "เริ่มต้นแสดงงานนำเสนอ HTML ใหม่โดยอัตโนมัติ หลังจากแสดงภาพนิ่งหน้าสุดท้ายเสร็จ" #. NFmGJ #: sd/uiconfig/simpress/ui/publishingdialog.ui:654 msgctxt "publishingdialog|kioskLabel" msgid "Advance Slides" -msgstr "" +msgstr "การเปลี่ยนภาพนิ่ง" #. ucqzo #: sd/uiconfig/simpress/ui/publishingdialog.ui:686 msgctxt "publishingdialog|contentCheckbutton" msgid "Create title page" -msgstr "" +msgstr "สร้างหน้าชื่อเรื่อง" #. QkCAN #: sd/uiconfig/simpress/ui/publishingdialog.ui:695 msgctxt "publishingdialog|extended_tip|contentCheckbutton" msgid "Creates a title page for your document." -msgstr "" +msgstr "สร้างหน้าชื่อเรื่องสำหรับเอกสารของคุณ" #. fuS2d #: sd/uiconfig/simpress/ui/publishingdialog.ui:707 msgctxt "publishingdialog|notesCheckbutton" msgid "Show notes" -msgstr "" +msgstr "แสดงบันทึกเสริม" #. XTGC6 #: sd/uiconfig/simpress/ui/publishingdialog.ui:716 msgctxt "publishingdialog|extended_tip|notesCheckbutton" msgid "Specifies that your notes are also displayed." -msgstr "" +msgstr "ระบุให้แสดงบันทึกเสริมของคุณด้วย" #. GNRxU #: sd/uiconfig/simpress/ui/publishingdialog.ui:732 @@ -9163,13 +8918,13 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:820 msgctxt "publishingdialog|webCastRadiobutton" msgid "_WebCast" -msgstr "" +msgstr "เว็_บคาสต์" #. 7aTUk #: sd/uiconfig/simpress/ui/publishingdialog.ui:829 msgctxt "publishingdialog|extended_tip|webCastRadiobutton" msgid "In a WebCast export, automatic scripts will be generated with Perl or ASP support." -msgstr "" +msgstr "ในการส่งออกเว็บคาสต์ จะผลิตสคริปต์อัตโนมัติโดยรองรับ Perl หรือ ASP" #. CgTG4 #: sd/uiconfig/simpress/ui/publishingdialog.ui:840 @@ -9181,147 +8936,145 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:849 msgctxt "publishingdialog|extended_tip|kioskRadiobutton" msgid "Creates a default HTML presentation as a kiosk export, in which the slides are automatically advanced after a specified amount of time." -msgstr "" +msgstr "สร้างงานนำเสนอ HTML แบบปริยายสำหรับตู้อัตโนมัติ ซึ่งภาพนิ่งจะเปลี่ยนโดยอัตโนมัติตามระยะเวลาที่กำหนด" #. PSGFr #: sd/uiconfig/simpress/ui/publishingdialog.ui:860 msgctxt "publishingdialog|singleDocumentRadiobutton" msgid "_Single-document HTML" -msgstr "" +msgstr "HTML แฟ้มเ_ดียว" #. iH77N #: sd/uiconfig/simpress/ui/publishingdialog.ui:875 msgctxt "publishingdialog|framesRadiobutton" msgid "Standard HTML with _frames" -msgstr "" +msgstr "HTML มาตรฐานโดยใช้_ช่องกรอบ" #. RhzLR #: sd/uiconfig/simpress/ui/publishingdialog.ui:884 msgctxt "publishingdialog|extended_tip|framesRadiobutton" msgid "Creates standard HTML pages with frames. The exported page will be placed in the main frame, and the frame to the left will display a table of contents in the form of hyperlinks." -msgstr "" +msgstr "สร้างหน้า HTML มาตรฐานที่ใช้ช่องกรอบ หน้าที่ส่งออกจะวางในช่องกรอบหลัก และมีช่องกรอบทางซ้ายแสดงสารบัญในรูปไฮเพอร์ลิงก์" #. CA35b #: sd/uiconfig/simpress/ui/publishingdialog.ui:895 msgctxt "publishingdialog|standardRadiobutton" msgid "Standard H_TML format" -msgstr "" +msgstr "รูปแบบ HTML _มาตรฐาน" #. dqJ8k #: sd/uiconfig/simpress/ui/publishingdialog.ui:904 msgctxt "publishingdialog|extended_tip|standardRadiobutton" msgid "Creates standard HTML pages from export pages." -msgstr "" +msgstr "สร้างหน้า HTML มาตรฐาน" #. 2D85A #: sd/uiconfig/simpress/ui/publishingdialog.ui:919 -#, fuzzy msgctxt "publishingdialog|publicationLabel" msgid "Publication Type" -msgstr "ชนิ~ดสิ่งตีพิมพ์" +msgstr "ชนิดของการเผยแพร่" #. GuHwY #: sd/uiconfig/simpress/ui/publishingdialog.ui:972 msgctxt "publishingdialog|pngRadiobutton" msgid "_PNG" -msgstr "" +msgstr "_PNG" #. tBByA #: sd/uiconfig/simpress/ui/publishingdialog.ui:981 msgctxt "publishingdialog|extended_tip|pngRadiobutton" msgid "The files are exported as PNG files. PNG files are compressed without loss of data, and can contain more than 256 colors." -msgstr "" +msgstr "แฟ้มรูปภาพจะส่งออกเป็น PNG แฟ้ม PNG จะบีบอัดโดยไม่เสียรายละเอียดของข้อมูล และสามารถแทนสีได้มากกว่า 256 สี" #. Ei2dJ #: sd/uiconfig/simpress/ui/publishingdialog.ui:993 msgctxt "publishingdialog|gifRadiobutton" msgid "_GIF" -msgstr "" +msgstr "_GIF" #. CjCTt #: sd/uiconfig/simpress/ui/publishingdialog.ui:1002 msgctxt "publishingdialog|extended_tip|gifRadiobutton" msgid "The files are exported as GIF files. GIF files are compressed without loss of data, and have a maximum of 256 colors." -msgstr "" +msgstr "แฟ้มรูปภาพจะส่งออกเป็น GIF แฟ้ม GIF จะบีบอัดโดยไม่เสียรายละเอียดของข้อมูล และสามารถใช้สีได้สูงสุด 256 สี" #. s6SqL #: sd/uiconfig/simpress/ui/publishingdialog.ui:1014 msgctxt "publishingdialog|jpgRadiobutton" msgid "_JPG" -msgstr "" +msgstr "_JPG" #. bEwzb #: sd/uiconfig/simpress/ui/publishingdialog.ui:1023 msgctxt "publishingdialog|extended_tip|jpgRadiobutton" msgid "The files are exported as JPEG files. JPEG files are compressed, with adjustable compression and can contain more than 256 colors." -msgstr "" +msgstr "แฟ้มรูปภาพจะส่งออกเป็น JPEG แฟ้ม JPEG จะบีบอัดด้วยอัตราที่ปรับได้ และสามารถใช้สีได้มากกว่า 256 สี" #. Sahg3 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1044 -#, fuzzy msgctxt "publishingdialog|qualityTxtLabel" msgid "_Quality:" -msgstr "คุณภาพ" +msgstr "คุณภา_พ:" #. oYcCy #: sd/uiconfig/simpress/ui/publishingdialog.ui:1069 msgctxt "publishingdialog|extended_tip|qualityCombobox" msgid "Specifies the compression factor of the JPEG graphic. A 100% value offers the best quality for a large data range. The 25% factor indicates small files with inferior image quality." -msgstr "" +msgstr "ระบุอัตราการบีบอัดของรูปภาพ JPEG ค่า 100% จะให้คุณภาพสูงสุดสำหรับข้อมูลที่มีช่วงกว้าง ค่า 25% จะได้แฟ้มที่มีขนาดเล็กและรูปภาพมีคุณภาพต่ำกว่า" #. WZbqb #: sd/uiconfig/simpress/ui/publishingdialog.ui:1092 msgctxt "publishingdialog|saveImgAsLabel" msgid "Save Images As" -msgstr "" +msgstr "บันทึกรูปภาพเป็น" #. VP9BP #: sd/uiconfig/simpress/ui/publishingdialog.ui:1123 msgctxt "publishingdialog|resolution1Radiobutton" msgid "Low (_640 × 480 pixels)" -msgstr "" +msgstr "ต่ำ (_640 × 480 จุด)" #. 4RadV #: sd/uiconfig/simpress/ui/publishingdialog.ui:1132 msgctxt "publishingdialog|extended_tip|resolution1Radiobutton" msgid "Select the low resolution to keep the file size small, even for presentations with many slides." -msgstr "" +msgstr "เลือกความละเอียดต่ำเพื่อให้แฟ้มมีขนาดเล็ก แม้กับงานนำเสนอที่มีภาพนิ่งจำนวนมาก" #. U7WAx #: sd/uiconfig/simpress/ui/publishingdialog.ui:1144 msgctxt "publishingdialog|resolution2Radiobutton" msgid "Medium (_800 × 600 pixels)" -msgstr "" +msgstr "ปานกลาง (_800 × 600 จุด)" #. XxGDu #: sd/uiconfig/simpress/ui/publishingdialog.ui:1153 msgctxt "publishingdialog|extended_tip|resolution2Radiobutton" msgid "Select the medium resolution for a medium-sized presentation." -msgstr "" +msgstr "เลือกความละเอียดปานกลางสำหรับงานนำเสนอขนาดปานกลาง" #. irmFn #: sd/uiconfig/simpress/ui/publishingdialog.ui:1165 msgctxt "publishingdialog|resolution3Radiobutton" msgid "High (_1024 × 768 pixels)" -msgstr "" +msgstr "สูง (_1024 × 768 จุด)" #. aBZEV #: sd/uiconfig/simpress/ui/publishingdialog.ui:1174 msgctxt "publishingdialog|extended_tip|resolution3Radiobutton" msgid "Select a high resolution for a high quality slide display." -msgstr "" +msgstr "เลือกความละเอียดสูงสำหรับการแสดงผลภาพนิ่งด้วยคุณภาพสูง" #. d6ACJ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1186 msgctxt "publishingdialog|resolution4Radiobutton" msgid "Full HD (1_920 × 1080 pixels)" -msgstr "" +msgstr "Full HD (1_920 × 1080 จุด)" #. CA9F9 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1195 msgctxt "publishingdialog|extended_tip|resolution4Radiobutton" msgid "Select a full HD resolution for a very high-quality slide display." -msgstr "" +msgstr "เลือกความละเอียด Full HD สำหรับการแสดงผลภาพนิ่งด้วยคุณภาพสูงมาก" #. zsvW6 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1211 @@ -9333,19 +9086,19 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1247 msgctxt "publishingdialog|sldSoundCheckbutton" msgid "_Export sounds when slide advances" -msgstr "" +msgstr "ส่งออกเสีย_งเปลี่ยนภาพนิ่ง" #. h7rJh #: sd/uiconfig/simpress/ui/publishingdialog.ui:1256 msgctxt "publishingdialog|extended_tip|sldSoundCheckbutton" msgid "Specifies that the sound files that are defined as an effect for slide transitions are exported." -msgstr "" +msgstr "ระบุให้ส่งออกแฟ้มเสียงที่กำหนดไว้ให้เป็นลูกเล่นขณะเปลี่ยนภาพนิ่ง" #. itaEE #: sd/uiconfig/simpress/ui/publishingdialog.ui:1268 msgctxt "publishingdialog|hiddenSlidesCheckbutton" msgid "Export _hidden slides" -msgstr "" +msgstr "ส่งออกภาพนิ่งที่ซ่อ_นไว้" #. EnRtp #: sd/uiconfig/simpress/ui/publishingdialog.ui:1287 @@ -9355,129 +9108,123 @@ #. 6QQcx #: sd/uiconfig/simpress/ui/publishingdialog.ui:1330 -#, fuzzy msgctxt "publishingdialog|authorTxtLabel" msgid "_Author:" -msgstr "ผู้เขียน" +msgstr "ผู้เ_ขียน:" #. FuMMH #: sd/uiconfig/simpress/ui/publishingdialog.ui:1348 msgctxt "publishingdialog|extended_tip|authorEntry" msgid "Specifies the name of the publication's author." -msgstr "" +msgstr "ระบุชื่อของผู้เขียนงานเผยแพร่นี้" #. qkWFY #: sd/uiconfig/simpress/ui/publishingdialog.ui:1362 -#, fuzzy msgctxt "publishingdialog|emailTxtLabel" msgid "E-_mail address:" -msgstr "ที่อยู่อีเมล" +msgstr "ที่อยู่อีเ_มล:" #. wvFSd #: sd/uiconfig/simpress/ui/publishingdialog.ui:1376 msgctxt "publishingdialog|wwwTxtLabel" msgid "Your hom_epage:" -msgstr "" +msgstr "โฮมเ_พจของคุณ:" #. rWtUU #: sd/uiconfig/simpress/ui/publishingdialog.ui:1391 -#, fuzzy msgctxt "publishingdialog|addInformLabel" msgid "Additional _information:" -msgstr "ข้อมูลเพิ่มเติม" +msgstr "ข้_อมูลเพิ่มเติม:" #. svqza #: sd/uiconfig/simpress/ui/publishingdialog.ui:1409 msgctxt "publishingdialog|extended_tip|emailEntry" msgid "Specifies the email address." -msgstr "" +msgstr "ระบุที่อยู่อีเมล" #. kXEhW #: sd/uiconfig/simpress/ui/publishingdialog.ui:1427 msgctxt "publishingdialog|extended_tip|wwwEntry" msgid "Specifies your homepage. A hyperlink will be inserted in the publication." -msgstr "" +msgstr "ระบุโฮมเพจของคุณ โดยจะแทรกไฮเพอร์ลิงก์ในงานที่เผยแพร่" #. 4XPKu #: sd/uiconfig/simpress/ui/publishingdialog.ui:1438 msgctxt "publishingdialog|downloadCheckbutton" msgid "Link to a copy of the _original presentation" -msgstr "" +msgstr "ลิงก์ไปยังสำเนาของงานนำเสนอต้นฉ_บับ" #. rvjoB #: sd/uiconfig/simpress/ui/publishingdialog.ui:1446 msgctxt "publishingdialog|extended_tip|downloadCheckbutton" msgid "Inserts a hyperlink to download a copy of the presentation file." -msgstr "" +msgstr "แทรกไฮเพอร์ลิงก์สำหรับดาวน์โหลดสำเนาของแฟ้มงานนำเสนอ" #. zyAyC #: sd/uiconfig/simpress/ui/publishingdialog.ui:1471 msgctxt "publishingdialog|extended_tip|miscTextview" msgid "Specifies additional text to appear on the title page." -msgstr "" +msgstr "ระบุข้อความเพิ่มเติมที่จะปรากฏในหน้าชื่อเรื่อง" #. SGhW4 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1488 msgctxt "publishingdialog|infTitlePageLabel" msgid "Information for the Title Page" -msgstr "ข้อมูลสำหรับหน้าปกใน" +msgstr "ข้อมูลสำหรับหน้าชื่อเรื่อง" #. fN2Qw #: sd/uiconfig/simpress/ui/publishingdialog.ui:1520 msgctxt "publishingdialog|textOnlyCheckbutton" msgid "_Text only" -msgstr "" +msgstr "_ข้อความเท่านั้น" #. F9Ysk #: sd/uiconfig/simpress/ui/publishingdialog.ui:1529 msgctxt "publishingdialog|extended_tip|textOnlyCheckbutton" msgid "Inserts only text hyperlinks instead of buttons." -msgstr "" +msgstr "แทรกเฉพาะไฮเพอร์ลิงก์แบบข้อความแทนรูปปุ่ม" #. hJCd8 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1575 msgctxt "publishingdialog|buttonStyleLabel" msgid "Select Button Style" -msgstr "" +msgstr "เลือกแบบปุ่ม" #. ExziF #: sd/uiconfig/simpress/ui/publishingdialog.ui:1608 msgctxt "publishingdialog|docColorsRadiobutton" msgid "_Apply color scheme from document" -msgstr "" +msgstr "ใช้แนวการใช้สีจากตัวเ_อกสาร" #. fsTQM #: sd/uiconfig/simpress/ui/publishingdialog.ui:1624 msgctxt "publishingdialog|defaultRadiobutton" msgid "Use _browser colors" -msgstr "" +msgstr "ใช้สีของเ_บราว์เซอร์" #. FtkC2 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1640 msgctxt "publishingdialog|userRadiobutton" msgid "_Use custom color scheme" -msgstr "" +msgstr "ใช้แนวการใช้สีที่_กำหนดเอง" #. 6CoBA #: sd/uiconfig/simpress/ui/publishingdialog.ui:1670 -#, fuzzy msgctxt "publishingdialog|vLinkButton" msgid "_Visited Link" -msgstr "เยี่ยมชมการเชื่อมโยง" +msgstr "ลิงก์ที่_ชมแล้ว" #. EWurf #: sd/uiconfig/simpress/ui/publishingdialog.ui:1683 -#, fuzzy msgctxt "publishingdialog|aLinkButton" msgid "Active Li_nk" -msgstr "การเชื่อมโยงที่ใช้งานอยู่" +msgstr "ลิงก์ที่_คลืกได้" #. f5NJa #: sd/uiconfig/simpress/ui/publishingdialog.ui:1696 -#, fuzzy msgctxt "publishingdialog|linkButton" msgid "Hyper_link" -msgstr "เชื่อมโยงพิเศษ" +msgstr "ไฮเพอร์_ลิงก์" #. DZCug #: sd/uiconfig/simpress/ui/publishingdialog.ui:1709 @@ -9487,32 +9234,30 @@ #. vDEFA #: sd/uiconfig/simpress/ui/publishingdialog.ui:1759 -#, fuzzy msgctxt "publishingdialog|backButton" msgid "Bac_kground" -msgstr "พื้นหลัง" +msgstr "_พื้นหลัง" #. 3mrfM #: sd/uiconfig/simpress/ui/publishingdialog.ui:1785 msgctxt "publishingdialog|selectColorLabel" msgid "Select Color Scheme" -msgstr "" +msgstr "เลือกแนวการใช้สี" #. CAzyf #: sd/uiconfig/simpress/ui/remotedialog.ui:8 msgctxt "remotedialog|RemoteDialog" msgid "Impress Remote" -msgstr "" +msgstr "รีโมตสำหรับ Impress" #. hZKA2 #: sd/uiconfig/simpress/ui/remotedialog.ui:25 msgctxt "remotedialog|ok" msgid "C_onnect" -msgstr "" +msgstr "เ_ชื่อมต่อ" #. pEkbh #: sd/uiconfig/simpress/ui/remotedialog.ui:138 -#, fuzzy msgctxt "remotedialog|label1" msgid "Connections" msgstr "การเชื่อมต่อ" @@ -9521,35 +9266,31 @@ #: sd/uiconfig/simpress/ui/remotedialog.ui:163 msgctxt "remotedialog|extended_tip|RemoteDialog" msgid "List all Impress Remote available connections." -msgstr "" +msgstr "แสดงรายชื่อของการเชื่อมต่อกับรีโมตสำหรับ Impress ที่มีอยู่ทั้งหมด" #. oe6tG #: sd/uiconfig/simpress/ui/rotatemenu.ui:12 -#, fuzzy msgctxt "rotatemenu|90" msgid "Quarter Spin" -msgstr "หมุน 1/4 รอบ" +msgstr "หนึ่งในสี่รอบ" #. w3RpA #: sd/uiconfig/simpress/ui/rotatemenu.ui:20 -#, fuzzy msgctxt "rotatemenu|180" msgid "Half Spin" -msgstr "หมุนครึ่งรอบ" +msgstr "ครึ่งรอบ" #. f8XZj #: sd/uiconfig/simpress/ui/rotatemenu.ui:28 -#, fuzzy msgctxt "rotatemenu|360" msgid "Full Spin" -msgstr "หมุนครบรอบ" +msgstr "เต็มรอบ" #. cnn2a #: sd/uiconfig/simpress/ui/rotatemenu.ui:36 -#, fuzzy msgctxt "rotatemenu|720" msgid "Two Spins" -msgstr "หมุน 2 รอบ" +msgstr "สองรอบ" #. CGf8N #: sd/uiconfig/simpress/ui/rotatemenu.ui:50 @@ -9565,28 +9306,24 @@ #. q5TTG #: sd/uiconfig/simpress/ui/scalemenu.ui:12 -#, fuzzy msgctxt "scalemenu|25" msgid "Tiny" -msgstr "Tiny" +msgstr "จิ๋ว" #. yDGRR #: sd/uiconfig/simpress/ui/scalemenu.ui:20 -#, fuzzy msgctxt "scalemenu|50" msgid "Smaller" -msgstr "เล็กกว่า" +msgstr "เล็ก" #. V5AAC #: sd/uiconfig/simpress/ui/scalemenu.ui:28 -#, fuzzy msgctxt "scalemenu|150" msgid "Larger" -msgstr "ใหญ่กว่า" +msgstr "ใหญ่" #. v3x2F #: sd/uiconfig/simpress/ui/scalemenu.ui:36 -#, fuzzy msgctxt "scalemenu|400" msgid "Extra Large" msgstr "ใหญ่พิเศษ" @@ -9605,84 +9342,81 @@ #. jdFme #: sd/uiconfig/simpress/ui/scalemenu.ui:66 -#, fuzzy msgctxt "scalemenu|both" msgid "Both" -msgstr "ทั้งคู่" +msgstr "ทั้งสองแนว" #. S5xWe #: sd/uiconfig/simpress/ui/sdviewpage.ui:22 msgctxt "sdviewpage|ruler" msgid "_Rulers visible" -msgstr "" +msgstr "แสดงไม้_บรรทัด" #. mUwRB #: sd/uiconfig/simpress/ui/sdviewpage.ui:30 msgctxt "extended_tip|ruler" msgid "Specifies whether to display the rulers at the top and to the left of the work area." -msgstr "" +msgstr "ระบุว่าจะแสดงไม้บรรทัดที่ขอบบนและขอบซ้ายของพื้นที่ทำงานหรือไม่" #. RPDaD #: sd/uiconfig/simpress/ui/sdviewpage.ui:42 msgctxt "sdviewpage|dragstripes" msgid "_Helplines while moving" -msgstr "" +msgstr "แสดงเส้น_ช่วยขณะเคลื่อนย้าย" #. B2eHZ #: sd/uiconfig/simpress/ui/sdviewpage.ui:50 msgctxt "extended_tip|dragstripes" msgid "Specifies whether to display guides when moving an object." -msgstr "" +msgstr "ระบุว่าจะแสดงเส้นนำแนวขณะเคลื่อนย้ายวัตถุหรือไม่" #. Grues #: sd/uiconfig/simpress/ui/sdviewpage.ui:62 msgctxt "sdviewpage|handlesbezier" msgid "_All control points in Bézier editor" -msgstr "" +msgstr "แสดงจุดควบคุม_ทั้งหมดในเครื่องมือแก้ไขโค้งเบซิเยร์" #. rRDtR #: sd/uiconfig/simpress/ui/sdviewpage.ui:70 msgctxt "extended_tip|handlesbezier" msgid "Displays the control points of all Bézier points if you have previously selected a Bézier curve. If the All control points in Bézier editor option is not marked, only the control points of the selected Bézier points will be visible." -msgstr "" +msgstr "แสดงจุดควบคุมของทุกจุดในโค้งเบซิเยร์เมื่อคุณเลือกโค้งเบซิเยร์ ถ้าคุณไม่เลือกตัวเลือกนี้ ก็จะแสดงจุดควบคุมเฉพาะของจุดที่เลือกอยู่เท่านั้น" #. hz6x7 #: sd/uiconfig/simpress/ui/sdviewpage.ui:82 msgctxt "sdviewpage|moveoutline" msgid "_Contour of each individual object" -msgstr "" +msgstr "เส้น_ขอบของวัตถุแต่ละชิ้น" #. CqfUG #: sd/uiconfig/simpress/ui/sdviewpage.ui:90 msgctxt "extended_tip|moveoutline" msgid "The contour line of each individual object is displayed when moving this object." -msgstr "" +msgstr "แสดงเส้นขอบของวัตถุแต่ละชิ้นขณะเคลื่อนย้ายวัตถุ" #. kJGzf #: sd/uiconfig/simpress/ui/sdviewpage.ui:106 -#, fuzzy msgctxt "sdviewpage|label1" msgid "Display" -msgstr "แสดงผล" +msgstr "แสดง" #. peBce #: sd/uiconfig/simpress/ui/sdviewpage.ui:114 msgctxt "extended_tip|SdViewPage" msgid "Specifies the available display modes." -msgstr "" +msgstr "ระบุโหมดการแสดง" #. 7DgNY #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:38 msgctxt "sidebarslidebackground|label2" msgid "_Format:" -msgstr "_รูปแบบ:" +msgstr "รูปแ_บบ:" #. 497k8 #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:52 -#, fuzzy msgctxt "sidebarslidebackground|label3" msgid "Background:" -msgstr "พื้นหลัง" +msgstr "พื้นหลัง:" #. bHhJV #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:67 @@ -9700,43 +9434,43 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:108 msgctxt "sidebarslidebackground|displaymasterobjects" msgid "Master Objects" -msgstr "" +msgstr "วัตถุจากแม่แบบ" #. iFFSD #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:146 msgctxt "sidebarslidebackground|button2" msgid "Insert Image..." -msgstr "" +msgstr "แทรกรูปภาพ..." #. NH6zN #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:223 msgctxt "sidebarslidebackground|displaymasterbackground" msgid "Master Background" -msgstr "" +msgstr "พื้นหลังจากแม่แบบ" #. jeCZN #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:252 msgctxt "sidebarslidebackground|label4" msgid "Orientation:" -msgstr "" +msgstr "แนววาง:" #. Kx5yk #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:269 msgctxt "sidebarslidebackground|masterslidebutton" msgid "Master View" -msgstr "" +msgstr "มุมมองแม่แบบ" #. EVfaj #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:282 msgctxt "sidebarslidebackground|closemasterslide" msgid "Close Master View" -msgstr "ปิดมุมมองเค้าโครงหลัก" +msgstr "ปิดมุมมองแม่แบบ" #. SzLMK #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:313 msgctxt "sidebarslidebackground|labelmargin" msgid "Margin:" -msgstr "" +msgstr "ระยะขอบ:" #. anufD #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:326 @@ -9748,195 +9482,187 @@ #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:12 msgctxt "slidecontextmenu|goto" msgid "_Go to Slide" -msgstr "" +msgstr "ไป_ที่ภาพนิ่ง" #. rCXNj #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:38 msgctxt "slidecontextmenu|pen" msgid "Mouse Pointer as _Pen" -msgstr "" +msgstr "ใช้ตัวชี้เมาส์เป็น_ปากกา" #. TXPqW #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:46 msgctxt "slidecontextmenu|width" msgid "_Pen Width" -msgstr "" +msgstr "ความ_หนาปากกา" #. 4QNpS #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:56 msgctxt "slidecontextmenu|4" msgid "_Very Thin" -msgstr "" +msgstr "บาง_มาก" #. otGpz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:64 msgctxt "slidecontextmenu|100" msgid "_Thin" -msgstr "" +msgstr "_บาง" #. 76rP5 #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:72 -#, fuzzy msgctxt "slidecontextmenu|150" msgid "_Normal" -msgstr "ปกติ" +msgstr "_ปกติ" #. g56Pz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:80 msgctxt "slidecontextmenu|200" msgid "_Thick" -msgstr "" +msgstr "ห_นา" #. hrkGo #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:88 msgctxt "slidecontextmenu|400" msgid "_Very Thick" -msgstr "" +msgstr "หนามา_ก" #. 222Gq #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:100 msgctxt "slidecontextmenu|color" msgid "_Change Pen Color..." -msgstr "" +msgstr "เปลี่ยน_สีปากกา..." #. zfWFz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:108 msgctxt "slidecontextmenu|erase" msgid "_Erase All Ink on Slide" -msgstr "" +msgstr "_ลบหมึกทั้งหมดบนภาพนิ่ง" #. ufabH #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:122 msgctxt "slidecontextmenu|screen" msgid "_Screen" -msgstr "" +msgstr "จ_อภาพ" #. yNb49 #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:132 -#, fuzzy msgctxt "slidecontextmenu|black" msgid "_Black" -msgstr "ดำ" +msgstr "_ดำ" #. 4CZGb #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:140 -#, fuzzy msgctxt "slidecontextmenu|white" msgid "_White" -msgstr "ขาว" +msgstr "_ขาว" #. 4F6dy #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:152 -#, fuzzy msgctxt "slidecontextmenu|edit" msgid "E_dit Presentation" -msgstr "ออกจากการนำเสนอ" +msgstr "แ_ก้ไขงานนำเสนอ" #. Byk6a #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:160 msgctxt "slidecontextmenu|end" msgid "_End Show" -msgstr "" +msgstr "_จบการนำเสนอ" #. DBgNQ #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:8 msgctxt "slidedesigndialog|SlideDesignDialog" msgid "Available Master Slides" -msgstr "" +msgstr "แม่แบบภาพนิ่งที่มี" #. rivGM #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:26 msgctxt "slidedesigndialog|load" msgid "_Load..." -msgstr "" +msgstr "โ_หลด..." #. KDCjh #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:33 msgctxt "slidedesigndialog|extended_tip|load" msgid "Displays the Load Master Slide dialog, where you can select additional slide designs." -msgstr "" +msgstr "แสดงกล่องโต้ตอบโหลดแม่แบบภาพนิ่ง ซึ่งคุณสามารถใช้เลือกแบบภาพนิ่งเพิ่มเติมได้" #. RQGwn #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:114 msgctxt "slidedesigndialog|masterpage" msgid "_Exchange background page" -msgstr "" +msgstr "สับเ_ปลี่ยนพื้นหลัง" #. Ndm5j #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:122 msgctxt "slidedesigndialog|extended_tip|masterpage" msgid "Applies the background of the selected slide design to all of the slides in your document." -msgstr "" +msgstr "ใช้พื้นหลังของแบบภาพนิ่งที่เลือกกับภาพนิ่งทั้งหมดในเอกสารของคุณ" #. bVkvr #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:133 msgctxt "slidedesigndialog|checkmasters" msgid "_Delete unused backgrounds" -msgstr "" +msgstr "_ลบพื้นหลังที่ไม่ได้ใช้" #. 7gazj #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:141 msgctxt "slidedesigndialog|extended_tip|checkmasters" msgid "Deletes unreferenced background slides and presentation layouts from your document." -msgstr "" +msgstr "ลบภาพนิ่งพื้นหลังและผังจัดวางของงานนำเสนอที่ไม่มีการอ้างถึงออกจากเอกสารของคุณ" #. zBuXF #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:186 msgctxt "slidedesigndialog|label1" msgid "Select a Slide Design" -msgstr "" +msgstr "เลือกแบบภาพนิ่ง" #. SRRvK #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:212 msgctxt "slidedesigndialog|extended_tip|SlideDesignDialog" msgid "Displays the Available Master Slides dialog, where you can select a layout scheme for the current slide. Any objects in the slide design are inserted behind objects in the current slide." -msgstr "" +msgstr "เลือกแนวของผังวางสำหรับภาพนิ่งปัจจุบัน วัตถุต่างๆ จากแบบภาพนิ่งจะถูกแทรกลงข้างหลังวัตถุต่างๆ ในภาพนิ่งปัจจุบัน" #. Zr5wz #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:59 msgctxt "slidetransitionspanel|extended_tip|transitions_icons" msgid "Select the slide transition you want to use for the selected slides." -msgstr "" +msgstr "เลือกวิธีเปลี่ยนภาพนิ่งที่คุณต้องการใช้กับภาพนิ่งปัจจุบัน" #. VYdF2 #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:100 -#, fuzzy msgctxt "slidetransitionspanel|duration_label" msgid "Duration:" -msgstr "ระยะเวลา" +msgstr "ระยะเวลา:" #. mAJ52 #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:114 msgctxt "slidetransitionspanel|transition_duration|tooltip_text" msgid "Select the speed of Slide Transition." -msgstr "" +msgstr "กำหนดความเร็วของการเปลี่ยนภาพนิ่ง" #. ZYD78 #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:121 msgctxt "slidetransitionspanel|extended_tip|transition_duration" msgid "Sets the duration of the slide transition." -msgstr "" +msgstr "กำหนดระยะเวลาของการเปลี่ยนภาพนิ่ง" #. VrA9B #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:135 -#, fuzzy msgctxt "slidetransitionspanel|sound_label" msgid "Sound:" -msgstr "เสียง" +msgstr "เสียง:" #. H9Dt4 #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151 -#, fuzzy msgctxt "slidetransitionspanel|sound_list" msgid "No sound" -msgstr "(ไม่มีเสียง)" +msgstr "ไม่มีเสียง" #. KqCFJ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152 -#, fuzzy msgctxt "slidetransitionspanel|sound_list" msgid "Stop previous sound" -msgstr "(หยุดเสียงก่อนหน้า)" +msgstr "หยุดเสียงก่อนหน้า" #. HriFB #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153 @@ -9948,91 +9674,88 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:157 msgctxt "slidetransitionspanel|extended_tip|sound_list" msgid "Lists sounds that can played during the slide transition." -msgstr "" +msgstr "แสดงรายชื่อของเสียงที่คุณสามารถเล่นได้ระหว่างการเปลี่ยนภาพนิ่ง" #. YUk3y #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:168 msgctxt "slidetransitionspanel|loop_sound" msgid "Loop until next sound" -msgstr "" +msgstr "วนซ้ำจนกว่าจะเล่นเสียงถัดไป" #. HYGMp #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:176 msgctxt "slidetransitionspanel|extended_tip|loop_sound" msgid "Select to play the sound repeatedly until another sound starts." -msgstr "" +msgstr "เลือกเพื่อให้เล่นเสียงซ้ำจนกว่าจะเสียงอื่นจะเริ่มเล่น" #. ja7Bv #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:190 -#, fuzzy msgctxt "slidetransitionspanel|variant_label" msgid "Variant:" -msgstr "ความแปรปรวน" +msgstr "แบบย่อย:" #. ECukd #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:206 msgctxt "slidetransitionspanel|extended_tip|variant_list" msgid "Select a variation of the transition." -msgstr "" +msgstr "เลือกแบบย่อยของการเปลี่ยนภาพนิ่ง" #. F6RuQ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:224 -#, fuzzy msgctxt "slidetransitionspanel|label1" msgid "Modify Transition" -msgstr "เปลี่ยนแปลงการเปลี่ยนภาพนิ่ง" +msgstr "ปรับเปลี่ยนวิธีเปลี่ยนภาพนิ่ง" #. Hm6kN #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:254 msgctxt "slidetransitionspanel|rb_mouse_click" msgid "On mouse click" -msgstr "" +msgstr "เมื่อคลิกเมาส์" #. txqWa #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:263 msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click" msgid "Select to advance to the next slide on a mouse click." -msgstr "" +msgstr "เลือกเพื่อให้ขยับไปภาพนิ่งถัดไปเมื่อคลิกเมาส์" #. bFejF #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275 msgctxt "slidetransitionspanel|rb_auto_after" msgid "After:" -msgstr "" +msgstr "หลังจาก:" #. rJJQy #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287 msgctxt "slidetransitionspanel|extended_tip|rb_auto_after" msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button." -msgstr "" +msgstr "เลือกเพื่อให้ขยับไปภาพนิ่งถัดไปหลังจากรอเวลาเป็นจำนวนวินาทีที่กำหนด ป้อนจำนวนวินาทีในช่องตัวเลขที่อยู่ติดกับปุ่มปรับเลข หรือจะคลิกที่ปุ่มปรับเลขก็ได้" #. YctZb #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:309 msgctxt "slidetransitionspanel|extended_tip|auto_after_value" msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button." -msgstr "" +msgstr "เลือกเพื่อให้ขยับไปภาพนิ่งถัดไปหลังจากรอเวลาเป็นจำนวนวินาทีที่กำหนด ป้อนจำนวนวินาทีในช่องตัวเลขที่อยู่ติดกับปุ่มปรับเลข หรือจะคลิกที่ปุ่มปรับเลขก็ได้" #. Bzsj7 #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324 msgctxt "slidetransitionspanel|label2" msgid "Advance Slide" -msgstr "" +msgstr "ขยับไปภาพนิ่งถัดไป" #. czZBc #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350 msgctxt "slidetransitionspanel|apply_to_all" msgid "Apply Transition to All Slides" -msgstr "" +msgstr "ใช้วิธีเปลี่ยนภาพนิ่งกับภาพนิ่งทั้งหมด" #. hoaV2 #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357 msgctxt "slidetransitionspanel|extended_tip|apply_to_all" msgid "Applies the selected slide transition to all slides in the current presentation document." -msgstr "" +msgstr "ใช้วิธีเปลี่ยนภาพนิ่งที่เลือกนี้กับภาพนิ่งทั้งหมดในเอกสารงานนำเสนอปัจจุบัน" #. K7BfA #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:392 -#, fuzzy msgctxt "slidetransitionspanel|auto_preview" msgid "Automatic Preview" msgstr "แสดงตัวอย่างอัตโนมัติ" @@ -10041,32 +9764,31 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400 msgctxt "slidetransitionspanel|extended_tip|auto_preview" msgid "Select to see the slide transitions automatically in the document." -msgstr "" +msgstr "เลือกเพื่อดูการเปลี่ยนภาพนิ่งโดยอัตโนมัติในเอกสาร" #. dqjov #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412 -#, fuzzy msgctxt "slidetransitionspanel|play" msgid "Play" -msgstr "เ~ล่น" +msgstr "เล่น" #. jEejn #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416 msgctxt "slidetransitionspanel|play|tooltip_text" msgid "Preview Effect" -msgstr "" +msgstr "ดูตัวอย่างลูกเล่น" #. HddiF #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423 msgctxt "slidetransitionspanel|extended_tip|play" msgid "Shows the current slide transition as a preview." -msgstr "" +msgstr "แสดงตัวอย่างการเปลี่ยนภาพนิ่งปัจจุบัน" #. E9Xpn #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456 msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel" msgid "Defines the special effect that plays when you display a slide during a slide show." -msgstr "" +msgstr "กำหนดลูกเล่นพิเศษที่จะเล่นเมื่อคุณแสดงภาพนิ่งในการนำเสนอ" #. T99jN #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:24 @@ -10078,54 +9800,49 @@ #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:38 msgctxt "tabledesignpanel|UseLastRowStyle" msgid "Tot_al row" -msgstr "" +msgstr "แถว_ผลรวม" #. CQgfk #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:52 msgctxt "tabledesignpanel|UseBandingRowStyle" msgid "_Banded rows" -msgstr "" +msgstr "แถว_สลับสี" #. 3KfJE #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:66 -#, fuzzy msgctxt "tabledesignpanel|UseFirstColumnStyle" msgid "Fi_rst column" -msgstr "คอลัมน์แรก" +msgstr "คอลัมน์แ_รก" #. HLRSH #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:80 -#, fuzzy msgctxt "tabledesignpanel|UseLastColumnStyle" msgid "_Last column" -msgstr "คอลัมน์สุดท้าย" +msgstr "คอลัมน์สุด_ท้าย" #. z5zRG #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:94 msgctxt "tabledesignpanel|UseBandingColumnStyle" msgid "Ba_nded columns" -msgstr "" +msgstr "คอลัมน์ส_ลับสี" #. FvyKu #: sd/uiconfig/simpress/ui/templatedialog.ui:8 -#, fuzzy msgctxt "templatedialog|TemplateDialog" msgid "Graphic Styles" -msgstr "แฟ้มกราฟิก" +msgstr "กระบวนแบบของกราฟิก" #. 38ZeG #: sd/uiconfig/simpress/ui/templatedialog.ui:41 -#, fuzzy msgctxt "templatedialog|standard" msgid "_Standard" -msgstr "มาตรฐาน" +msgstr "_มาตรฐาน" #. HsXnQ #: sd/uiconfig/simpress/ui/templatedialog.ui:152 -#, fuzzy msgctxt "templatedialog|organizer" msgid "Organizer" -msgstr "~ตัวจัดการ..." +msgstr "ผังลำดับชั้น" #. 5d7Zo #: sd/uiconfig/simpress/ui/templatedialog.ui:199 @@ -10141,7 +9858,6 @@ #. xeCAp #: sd/uiconfig/simpress/ui/templatedialog.ui:295 -#, fuzzy msgctxt "templatedialog|shadowing" msgid "Shadowing" msgstr "แสงเงา" @@ -10168,7 +9884,7 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:487 msgctxt "templatedialog|indents" msgid "Indents & Spacing" -msgstr "ระยะเยื้องและระยะห่าง" +msgstr "ระยะร่นและระยะห่าง" #. siGDD #: sd/uiconfig/simpress/ui/templatedialog.ui:535 @@ -10180,25 +9896,25 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:583 msgctxt "templatedialog|animation" msgid "Text Animation" -msgstr "ข้อความเคลื่อนไหว" +msgstr "การเคลื่อนไหวข้อความ" #. dyjNi #: sd/uiconfig/simpress/ui/templatedialog.ui:631 msgctxt "templatedialog|dimensioning" msgid "Dimensioning" -msgstr "การบอกระยะ" +msgstr "เส้นบอกขนาด" #. fcsTP #: sd/uiconfig/simpress/ui/templatedialog.ui:679 msgctxt "templatedialog|connector" msgid "Connector" -msgstr "ตัวเชื่อมต่อ" +msgstr "เส้นเชื่อม" #. nBYNb #: sd/uiconfig/simpress/ui/templatedialog.ui:727 msgctxt "templatedialog|alignment" msgid "Alignment" -msgstr "การปรับแนว" +msgstr "การจัดแนว" #. CdaX3 #: sd/uiconfig/simpress/ui/templatedialog.ui:775 @@ -10210,11 +9926,10 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:823 msgctxt "templatedialog|tabs" msgid "Tabs" -msgstr "แท็บ" +msgstr "จุดตั้งระยะ" #. WtrUB #: sd/uiconfig/simpress/ui/templatedialog.ui:871 -#, fuzzy msgctxt "templatedialog|background" msgid "Highlighting" msgstr "การเน้น" diff -Nru libreoffice-7.4.6/translations/source/tr/cui/messages.po libreoffice-7.4.7/translations/source/tr/cui/messages.po --- libreoffice-7.4.6/translations/source/tr/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-28 18:05+0000\n" +"PO-Revision-Date: 2023-03-20 09:33+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -7983,7 +7983,7 @@ #: cui/uiconfig/ui/cuiimapdlg.ui:197 msgctxt "cuiimapdlg|label3" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. GcFws #: cui/uiconfig/ui/cuiimapdlg.ui:217 @@ -9964,13 +9964,13 @@ #: cui/uiconfig/ui/hangulhanjaadddialog.ui:95 msgctxt "hangulhanjaadddialog|label2" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. haBfA #: cui/uiconfig/ui/hangulhanjaadddialog.ui:115 msgctxt "hangulhanjaadddialog|extended_tip|entry" msgid "Enter a name for the dictionary." -msgstr "Sözlük için bir isim girin." +msgstr "Sözlük için bir ad girin." #. S2WpP #: cui/uiconfig/ui/hangulhanjaadddialog.ui:131 @@ -15750,7 +15750,7 @@ #: cui/uiconfig/ui/optnewdictionarydialog.ui:115 msgctxt "optnewdictionarydialog|name_label" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. ypeEr #: cui/uiconfig/ui/optnewdictionarydialog.ui:129 @@ -19622,7 +19622,7 @@ #: cui/uiconfig/ui/signatureline.ui:151 msgctxt "signatureline|extended_tip|edit_email" msgid "Enter the email of the signer. The email is not displayed in the signature line graphic box, but is used for the digital signature." -msgstr "İmzalayanın e-postasını girin. E-posta, imza satırı grafik kutusunda görüntülenmez, ancak dijital imza için kullanılır." +msgstr "İmzalayanın e-postasını girin. E-posta, imza satırı grafik kutusunda görüntülenmez, ancak sayısal imza için kullanılır." #. As8u6 #. Suggested Signer Name @@ -19741,7 +19741,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:157 msgctxt "signsignatureline|extended_tip|btn_select_certificate" msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document." -msgstr "Sertifikalarınızın listelendiği Sertifika Seç iletişim penceresini açmak için Sertifika Seç düğmesine tıklayın. Belgeyi imzalamak için uygun sertifikayı seçin." +msgstr "Sertifikalarınızın listelendiği Sertifika Seç iletişim penceresini açmak için Sertifika Seç düğmesine tıklayın. Belgeyi imzalamak için uygun sertifikayı seçin." #. 3vSAS #. Name of the signer diff -Nru libreoffice-7.4.6/translations/source/tr/dbaccess/messages.po libreoffice-7.4.7/translations/source/tr/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/tr/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/dbaccess/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-02-28 18:04+0000\n" +"PO-Revision-Date: 2023-03-20 09:33+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -824,7 +824,7 @@ #: dbaccess/inc/strings.hrc:148 msgctxt "RID_STR_UNDO_MODIFY_RECORD" msgid "Undo: Data Input" -msgstr "Geri al: Veri Girişi" +msgstr "Geri Al: Veri Girişi" #. NeA2w #: dbaccess/inc/strings.hrc:149 diff -Nru libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/sbasic/shared/03.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/sbasic/shared/03.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-03-31 22:25+0000\n" +"PO-Revision-Date: 2023-03-22 12:34+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1531406216.000000\n" #. ViEWM @@ -32,7 +32,7 @@ "not_BasMeth\n" "help.text" msgid "This method is not available in Basic." -msgstr "Bu yöntem Basic'te mevcut değildir." +msgstr "Bu metod Basic'te mevcut değil." #. LDXQx #: avail_release.xhp @@ -41,7 +41,7 @@ "not_BasProp\n" "help.text" msgid "This property is not available in Basic." -msgstr "Bu özellik Basic'te mevcut değildir." +msgstr "Bu özellik Basic'te mevcut değil." #. 4GDXo #: avail_release.xhp @@ -50,7 +50,7 @@ "not_PycMeth\n" "help.text" msgid "This method is not available in Python." -msgstr "Bu yöntem Python'da mevcut değildir." +msgstr "Bu metod Python'da mevcut değil." #. 3ZUdq #: avail_release.xhp @@ -68,7 +68,7 @@ "par_id811631775671311\n" "help.text" msgid "This service is available from %PRODUCTNAME 7.3 onwards." -msgstr "Bu hizmet %PRODUCTNAME 7.3 'den itibaren geçerlidir." +msgstr "Bu hizmet %PRODUCTNAME 7.3 'den itibaren mevcuttur." #. J3r7B #: avail_release.xhp @@ -167,7 +167,7 @@ "bm_id491529070339774\n" "help.text" msgid "BASIC ScriptForge library Python scriptforge module" -msgstr "" +msgstr "BASIC ScriptForge kütüphanesi Python scriptforge modulü" #. BtMUU #: lib_ScriptForge.xhp @@ -203,7 +203,7 @@ "hd_id781637256119733\n" "help.text" msgid "Invoking ScriptForge services" -msgstr "" +msgstr "ScriptForge hizmetlerini çağırma" #. SaBEy #: lib_ScriptForge.xhp @@ -212,7 +212,7 @@ "par_id781606153472028\n" "help.text" msgid "The described modules and classes are invoked from user scripts as \"Services\". A generic constructor of those services has been designed for that purpose for each language." -msgstr "" +msgstr "Tanımlanan modüller ve sınıflar kullanıcı betiklerinden \"Hizmetler\" olarak çağrılır. Bu amaçla her dil için bu hizmetlerin genel bir kurucusu tasarlanmıştır." #. xhj84 #: lib_ScriptForge.xhp @@ -842,7 +842,7 @@ "par_id441529064369519\n" "help.text" msgid "Functions and subroutines for debugging Basic macros." -msgstr "" +msgstr "Basic makrolarında hata ayıklama için işlevler ve alt yordamlar." #. 7khGi #: lib_tools.xhp diff -Nru libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/scalc/02.po libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/scalc/02.po --- libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/scalc/02.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/scalc/02.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-06-29 13:08+0200\n" -"PO-Revision-Date: 2021-11-13 08:45+0000\n" -"Last-Translator: Deleted User \n" -"Language-Team: Turkish \n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" +"Last-Translator: Ayhan YALÇINSOY \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542197495.000000\n" #. aSE5T @@ -320,7 +320,7 @@ "tit\n" "help.text" msgid "Name Box" -msgstr "" +msgstr "İsim Kutusu" #. JJA9o #: 06010000.xhp @@ -428,7 +428,7 @@ "par_id3152577\n" "help.text" msgid "Select Function" -msgstr "" +msgstr "İşlevi Seç" #. SpBhw #: 06030000.xhp @@ -473,7 +473,7 @@ "par_id481592663499228\n" "help.text" msgid "Accept" -msgstr "" +msgstr "Kabul Et" #. VFj6u #: 06030000.xhp @@ -482,7 +482,7 @@ "par_id311592663828848\n" "help.text" msgid "Icon Cancel" -msgstr "" +msgstr "İptal Simgesi" #. 7xGcL #: 06030000.xhp @@ -491,7 +491,7 @@ "par_id431592663828848\n" "help.text" msgid "Cancel" -msgstr "" +msgstr "İptal" #. GPtKR #: 06030000.xhp @@ -500,7 +500,7 @@ "hd_id261592658395518\n" "help.text" msgid "Select Function applied on a selected range" -msgstr "" +msgstr "Seçilen bir aralıkta uygulanan İşlevi seç" #. JPrPQ #: 06030000.xhp @@ -671,7 +671,7 @@ "tit\n" "help.text" msgid "Accept" -msgstr "Onayla" +msgstr "Kabul Et" #. EG7Fb #: 06070000.xhp @@ -716,7 +716,7 @@ "par_id3125864\n" "help.text" msgid "Accept" -msgstr "Onayla" +msgstr "Kabul Et" #. c7dbD #: 06080000.xhp diff -Nru libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/sdraw/guide.po libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/sdraw/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/sdraw/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-10 23:11+0200\n" -"PO-Revision-Date: 2021-11-13 08:45+0000\n" -"Last-Translator: Deleted User \n" -"Language-Team: Turkish \n" +"PO-Revision-Date: 2023-03-24 09:33+0000\n" +"Last-Translator: Zeki Bildirici \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1524087142.000000\n" #. cZbDh @@ -257,7 +257,7 @@ "par_idN108D2\n" "help.text" msgid "Choose Shape - Distribution." -msgstr "" +msgstr "Şekil - Dağılım'ı seçin." #. faA9D #: align_arrange.xhp diff -Nru libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/sdraw.po libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/sdraw.po --- libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/sdraw.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/sdraw.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2021-11-14 09:37+0000\n" -"Last-Translator: Ayhan YALÇINSOY \n" -"Language-Team: Turkish \n" +"PO-Revision-Date: 2023-03-31 20:34+0000\n" +"Last-Translator: Muhammet Kara \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1525276502.000000\n" #. dHbww @@ -455,7 +455,7 @@ "par_idN106C8\n" "help.text" msgid "Gluepoints" -msgstr "" +msgstr "Yapıştırma noktaları" #. kz8Fw #: main0210.xhp @@ -464,7 +464,7 @@ "par_idN106D7\n" "help.text" msgid "Enables you to edit gluepoints on your drawing." -msgstr "" +msgstr "Çiziminizdeki yapıştırma noktalarını düzenlemenizi sağlar." #. 3Cwi3 #: main0210.xhp @@ -491,7 +491,7 @@ "par_idN1074B\n" "help.text" msgid "Extrusion On/Off" -msgstr "" +msgstr "Ekstrüzyon Açık / Kapalı" #. 4zUFD #: main0210.xhp @@ -788,7 +788,7 @@ "par_id3146974\n" "help.text" msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)." -msgstr "" +msgstr "Bu menüdeki komutlar, Draw belgelerini düzenlemek için kullanılır (örneğin, kopyalama ve yapıştırma)." #. dCFBH #: main_edit.xhp @@ -797,7 +797,7 @@ "hd_id3149400\n" "help.text" msgid "Find & Replace" -msgstr "" +msgstr "Bul ve Değiştir" #. EDbMF #: main_edit.xhp @@ -815,7 +815,7 @@ "par_id3147340\n" "help.text" msgid "Enables you to edit points on your drawing." -msgstr "" +msgstr "Çiziminizdeki noktaları düzenlemenizi sağlar." #. PwD6E #: main_edit.xhp diff -Nru libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/shared/00.po libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/shared/00.po --- libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/shared/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/shared/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2021-11-06 17:37+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1549479562.000000\n" #. 3B8ZN @@ -437,7 +437,7 @@ "par_id3145070\n" "help.text" msgid "Cancel" -msgstr "İptal et" +msgstr "İptal" #. DRgMc #: 00000001.xhp diff -Nru libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/shared/autopi.po libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/shared/autopi.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/shared/autopi.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-01-31 18:19+0100\n" -"PO-Revision-Date: 2021-09-10 12:22+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1524600240.000000\n" #. hCAzG @@ -6179,7 +6179,7 @@ "hd_id3155805\n" "help.text" msgid "Accept" -msgstr "Kabul" +msgstr "Kabul Et" #. 7XPNw #: 01120100.xhp @@ -7745,7 +7745,7 @@ "par_id3143281\n" "help.text" msgid "Allows you to enter additional settings for other external data sources." -msgstr "" +msgstr "Diğer harici veri kaynakları için ek ayarlar girmenizi sağlar." #. zrAAW #: 01170200.xhp diff -Nru libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/shared/guide.po libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/shared/guide.po --- libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/shared/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/shared/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2021-11-13 08:45+0000\n" -"Last-Translator: Deleted User \n" -"Language-Team: Turkish \n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" +"Last-Translator: Ayhan YALÇINSOY \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542197507.000000\n" #. iharT @@ -4190,7 +4190,7 @@ "FilterName_Rich_Text_Format\n" "help.text" msgid "Rich Text" -msgstr "" +msgstr "Zengin Metin" #. pDv4t #: convertfilters.xhp diff -Nru libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/smath/00.po libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/smath/00.po --- libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/smath/00.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/smath/00.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-02-09 16:46+0100\n" -"PO-Revision-Date: 2021-09-10 12:22+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1505507269.000000\n" #. E9tti @@ -122,7 +122,7 @@ "par_id3154653\n" "help.text" msgid "Icon Zoom 100%" -msgstr "" +msgstr "Yakınlaştır 100% Simgesi" #. ZGH5E #: 00000004.xhp @@ -158,7 +158,7 @@ "par_id3150743\n" "help.text" msgid "Icon Zoom In" -msgstr "" +msgstr "Yakınlaştır Simgesi" #. t3FPw #: 00000004.xhp @@ -194,7 +194,7 @@ "par_id3150934\n" "help.text" msgid "Icon Zoom Out" -msgstr "" +msgstr "Uzaklaştır Simgesi" #. FwGWc #: 00000004.xhp @@ -230,7 +230,7 @@ "par_id3151265\n" "help.text" msgid "Icon Show All" -msgstr "" +msgstr "Hepsini Göster Simgesi" #. 2bHgE #: 00000004.xhp @@ -275,7 +275,7 @@ "par_id3147260\n" "help.text" msgid "Icon Update" -msgstr "" +msgstr "Güncelle Simgesi" #. 9BewG #: 00000004.xhp @@ -527,7 +527,7 @@ "par_id3153258\n" "help.text" msgid "Icon Symbols" -msgstr "" +msgstr "Semboller Simgesi" #. gNanN #: 00000004.xhp @@ -599,7 +599,7 @@ "par_id3145626\n" "help.text" msgid "Icon Formula Cursor" -msgstr "" +msgstr "Formül İmleci Simgesi" #. vtF4A #: 00000004.xhp diff -Nru libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/swriter/librelogo.po libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-7.4.6/translations/source/tr/helpcontent2/source/text/swriter/librelogo.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/helpcontent2/source/text/swriter/librelogo.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2022-01-25 11:37+0000\n" +"PO-Revision-Date: 2023-03-13 17:33+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1496746637.000000\n" #. kypzs @@ -536,7 +536,7 @@ "par_750\n" "help.text" msgid "Lines of a LibreLogo program are paragraphs in the Writer document. A program line can contain multiple commands:" -msgstr "" +msgstr "Bir LibreLogo programının satırları Writer belgesindeki paragraflardır. Bir program satırı birden fazla komut içerebilir:" #. BPLNJ #: LibreLogo.xhp @@ -1400,7 +1400,7 @@ "par_1580\n" "help.text" msgid "See also “Group” in %PRODUCTNAME Writer Help." -msgstr "" +msgstr "Ayrıca %PRODUCTNAME Writer Yardım bölümündeki \"Grup\" başlığına bakın." #. zjatC #: LibreLogo.xhp diff -Nru libreoffice-7.4.6/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2023-02-28 18:05+0000\n" +"PO-Revision-Date: 2023-03-20 09:33+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -2184,7 +2184,7 @@ "Label\n" "value.text" msgid "~Headers and Footers..." -msgstr "~Üst bilgi ve Alt bilgi..." +msgstr "~Üst Bilgi ve Alt Bilgi..." #. 9wsip #: CalcCommands.xcu @@ -2264,7 +2264,7 @@ "TooltipLabel\n" "value.text" msgid "Show Track Changes" -msgstr "Değişiklikleri İzlemeyi Göster" +msgstr "Değişiklikleri Göster" #. Cs6vq #: CalcCommands.xcu @@ -10594,7 +10594,7 @@ "Label\n" "value.text" msgid "Sli~de Sorter" -msgstr "Sla~yt Sıralayıcı" +msgstr "Slay~t Sıralayıcı" #. mSBB5 #: DrawImpressCommands.xcu @@ -10604,7 +10604,7 @@ "Label\n" "value.text" msgid "Slide ~Pane" -msgstr "Slayt ~Panosu" +msgstr "Slayt ~Bölmesi" #. SLFEA #: DrawImpressCommands.xcu @@ -10614,7 +10614,7 @@ "Label\n" "value.text" msgid "~Page Pane" -msgstr "Sayfa ~Penceresi" +msgstr "~Sayfa Bölmesi" #. 9W9yh #: DrawImpressCommands.xcu @@ -10624,7 +10624,7 @@ "Label\n" "value.text" msgid "Tas~k Pane" -msgstr "Gö~rev Penceresi" +msgstr "Gö~rev Bölmesi" #. Bvk8Q #: DrawImpressCommands.xcu @@ -24556,7 +24556,7 @@ "Label\n" "value.text" msgid "Redraw" -msgstr "Yeniden çiz" +msgstr "Yeniden Çiz" #. NFKrC #: GenericCommands.xcu @@ -30740,7 +30740,7 @@ "Label\n" "value.text" msgid "Bookmar~k..." -msgstr "~Yer imi..." +msgstr "~Yer İmi..." #. BBqAd #: WriterCommands.xcu @@ -35500,7 +35500,7 @@ "Label\n" "value.text" msgid "~Strong Emphasis" -msgstr "~Kuvvetli Vurgulama" +msgstr "~Kuvvetli Vurgu" #. 7Xm9y #: WriterCommands.xcu @@ -35510,7 +35510,7 @@ "TooltipLabel\n" "value.text" msgid "Strong Emphasis Character Style" -msgstr "Kuvvetli Vurgulama Karakter Biçemi" +msgstr "Kuvvetli Vurgu Karakter Biçemi" #. gVtiB #: WriterCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/tr/sfx2/messages.po libreoffice-7.4.7/translations/source/tr/sfx2/messages.po --- libreoffice-7.4.6/translations/source/tr/sfx2/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/sfx2/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-09-21 11:43+0200\n" -"PO-Revision-Date: 2023-02-28 18:05+0000\n" +"PO-Revision-Date: 2023-03-13 11:34+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -3989,7 +3989,7 @@ #: sfx2/uiconfig/ui/managestylepage.ui:33 msgctxt "managestylepage|nameft" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. VroAG #: sfx2/uiconfig/ui/managestylepage.ui:47 diff -Nru libreoffice-7.4.6/translations/source/tr/svtools/messages.po libreoffice-7.4.7/translations/source/tr/svtools/messages.po --- libreoffice-7.4.6/translations/source/tr/svtools/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/svtools/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-28 18:05+0000\n" +"PO-Revision-Date: 2023-03-20 09:33+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -5736,7 +5736,7 @@ #: svtools/uiconfig/ui/restartdialog.ui:41 msgctxt "restartdialog|no" msgid "Restart Later" -msgstr "Sonra yeniden başlat" +msgstr "Sonra Yeniden Başlat" #. LBUvc #: svtools/uiconfig/ui/restartdialog.ui:70 diff -Nru libreoffice-7.4.6/translations/source/tr/svx/messages.po libreoffice-7.4.7/translations/source/tr/svx/messages.po --- libreoffice-7.4.6/translations/source/tr/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2023-02-28 18:05+0000\n" +"PO-Revision-Date: 2023-03-20 09:33+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1554880641.000000\n" #. 3GkZj @@ -4400,13 +4400,13 @@ #: include/svx/strings.hrc:775 msgctxt "RID_SVXSTR_GRDT60" msgid "Yellow Gradient" -msgstr "Sarı Geçişi" +msgstr "Sarı Geçişli" #. amMze #: include/svx/strings.hrc:776 msgctxt "RID_SVXSTR_GRDT61" msgid "Orange Gradient" -msgstr "Turuncu Geçişi" +msgstr "Turuncu Geçişli" #. bodAW #: include/svx/strings.hrc:777 @@ -4479,7 +4479,7 @@ #: include/svx/strings.hrc:789 msgctxt "RID_SVXSTR_GRDT73" msgid "Blank with Gray" -msgstr "Gri ile boş" +msgstr "Gri ile Boş" #. CJqu3 #: include/svx/strings.hrc:790 @@ -4491,7 +4491,7 @@ #: include/svx/strings.hrc:791 msgctxt "RID_SVXSTR_GRDT75" msgid "London Mist" -msgstr "Londra Misti" +msgstr "Londra Sisi" #. nk99S #: include/svx/strings.hrc:792 @@ -4545,7 +4545,7 @@ #: include/svx/strings.hrc:800 msgctxt "RID_SVXSTR_GRDT84" msgid "Mahogany" -msgstr "Kızıl kahverengi" +msgstr "Kızıl Kahverengi" #. Z8RH9 #. /gradients @@ -4708,31 +4708,31 @@ #: include/svx/strings.hrc:828 msgctxt "RID_SVXSTR_BMP10" msgid "Colorful Pebbles" -msgstr "Renkli çakıl taşları" +msgstr "Renkli Çakıl Taşları" #. nqBbP #: include/svx/strings.hrc:829 msgctxt "RID_SVXSTR_BMP11" msgid "Coffee Beans" -msgstr "Kahve çekirdekleri" +msgstr "Kahve Çekirdekleri" #. CQS6y #: include/svx/strings.hrc:830 msgctxt "RID_SVXSTR_BMP12" msgid "Little Clouds" -msgstr "Küçük bulutlar" +msgstr "Küçük Bulutlar" #. 2hE6A #: include/svx/strings.hrc:831 msgctxt "RID_SVXSTR_BMP13" msgid "Bathroom Tiles" -msgstr "Banyo karoları" +msgstr "Banyo Karoları" #. KZeGr #: include/svx/strings.hrc:832 msgctxt "RID_SVXSTR_BMP14" msgid "Wall of Rock" -msgstr "Taş duvar" +msgstr "Taş Duvar" #. wAELs #: include/svx/strings.hrc:833 @@ -4762,7 +4762,7 @@ #: include/svx/strings.hrc:837 msgctxt "RID_SVXSTR_BMP19" msgid "Night Sky" -msgstr "Gece gökyüzü" +msgstr "Gece Gökyüzü" #. NkYV3 #: include/svx/strings.hrc:838 @@ -5427,7 +5427,7 @@ #: include/svx/strings.hrc:953 msgctxt "RID_SVXSTR_LEND4" msgid "Double Arrow" -msgstr "İki uçlu ok" +msgstr "İki Uçlu Ok" #. o38zt #. To translators: this is an arrow head style @@ -5532,7 +5532,7 @@ #: include/svx/strings.hrc:983 msgctxt "RID_SVXSTR_LEND19" msgid "Half Circle unfilled" -msgstr "Yarım daire doldururlmamış" +msgstr "Yarım Daire doldurulmamış" #. mfGCE #. To translators: this is an arrow head style @@ -5560,7 +5560,7 @@ #: include/svx/strings.hrc:991 msgctxt "RID_SVXSTR_LEND23" msgid "Half Arrow left" -msgstr "Yarım ok sol" +msgstr "Yarım Ok sol" #. EVYD7 #. To translators: this is an arrow head style @@ -5574,7 +5574,7 @@ #: include/svx/strings.hrc:995 msgctxt "RID_SVXSTR_LEND25" msgid "Reversed Arrow" -msgstr "Ters çevrilmiş Ok" +msgstr "Ters Çevrilmiş Ok" #. yTXvH #. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation @@ -7379,7 +7379,7 @@ #: include/svx/strings.hrc:1324 msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK" msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document." -msgstr "Dijital İmza: Belge imzası belge içeriği ile uyuşmuyor. Şiddetle bu belgeye güvenmemenizi tavsiye ediyoruz." +msgstr "Sayısal İmza: Belge imzası belge içeriği ile uyuşmuyor. Şiddetle bu belgeye güvenmemenizi tavsiye ediyoruz." #. X7CjP #: include/svx/strings.hrc:1325 @@ -10110,7 +10110,7 @@ #: include/svx/strings.hrc:1801 msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY" msgid "Digitally signed by:" -msgstr "Dijital olarak imzalayan:" +msgstr "Sayısal olarak imzalayan:" #. NyP2E #: include/svx/strings.hrc:1802 @@ -13058,7 +13058,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:114 msgctxt "adddataitemdialog|nameft" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. C2HJB #: svx/uiconfig/ui/adddataitemdialog.ui:128 @@ -13238,7 +13238,7 @@ #: svx/uiconfig/ui/addinstancedialog.ui:104 msgctxt "addinstancedialog|label2" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. SyBuY #: svx/uiconfig/ui/addinstancedialog.ui:118 @@ -13292,7 +13292,7 @@ #: svx/uiconfig/ui/addmodeldialog.ui:125 msgctxt "addmodeldialog|label2" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. BCjAN #: svx/uiconfig/ui/addmodeldialog.ui:139 @@ -13334,7 +13334,7 @@ #: svx/uiconfig/ui/addsubmissiondialog.ui:105 msgctxt "addsubmissiondialog|label2" msgid "_Name:" -msgstr "_İsim:" +msgstr "_Adı:" #. uHEpR #: svx/uiconfig/ui/addsubmissiondialog.ui:119 @@ -13970,7 +13970,7 @@ #: svx/uiconfig/ui/classificationdialog.ui:345 msgctxt "classificationdialog|extended_tip|signButton" msgid "Opens the Select Certificate dialog to select a digital certificate for paragraph signature." -msgstr "Paragraf imzası için dijital bir sertifika seçmek üzere Sertifika Seç iletişim penceresini açar." +msgstr "Paragraf imzası için sayısal bir sertifika seçmek üzere Sertifika Seç iletişim penceresini açar." #. xjChP #: svx/uiconfig/ui/classificationdialog.ui:382 @@ -18786,7 +18786,7 @@ #: svx/uiconfig/ui/redlineviewpage.ui:260 msgctxt "acceptrejectchangesdialog|accept" msgid "_Accept" -msgstr "K_abul" +msgstr "K_abul Et" #. vxNLK #: svx/uiconfig/ui/redlineviewpage.ui:267 @@ -18834,7 +18834,7 @@ #: svx/uiconfig/ui/redlineviewpage.ui:336 msgctxt "acceptrejectchangesdialog|undo" msgid "_Undo" -msgstr "_Geri al" +msgstr "_Geri Al" #. phEJs #: svx/uiconfig/ui/redlineviewpage.ui:343 @@ -18864,7 +18864,7 @@ #: svx/uiconfig/ui/rowsmenu.ui:28 msgctxt "rowsmenu|undo" msgid "Undo: Data entry" -msgstr "Geri Al: Veri girişi" +msgstr "Geri Al: Veri Girişi" #. xHAu7 #: svx/uiconfig/ui/rulermenu.ui:12 diff -Nru libreoffice-7.4.6/translations/source/tr/sw/messages.po libreoffice-7.4.7/translations/source/tr/sw/messages.po --- libreoffice-7.4.6/translations/source/tr/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-28 18:05+0000\n" +"PO-Revision-Date: 2023-03-13 11:34+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -11673,7 +11673,7 @@ #: sw/uiconfig/swriter/ui/captionoptions.ui:239 msgctxt "captionoptions|extended_tip|border_and_shadow" msgid "Applies the border and shadow of the object to the caption frame." -msgstr "Nesneye, resim yazısı çerçevesine kadar kenarlık ve gölge uygular." +msgstr "Nesnenin kenarlığını ve gölgesini resim yazısı çerçevesine uygular." #. 2Fy5S #: sw/uiconfig/swriter/ui/captionoptions.ui:255 diff -Nru libreoffice-7.4.6/translations/source/tr/vcl/messages.po libreoffice-7.4.7/translations/source/tr/vcl/messages.po --- libreoffice-7.4.6/translations/source/tr/vcl/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/tr/vcl/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-08-24 12:29+0200\n" -"PO-Revision-Date: 2023-02-28 18:04+0000\n" +"PO-Revision-Date: 2023-03-20 09:33+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -1762,7 +1762,7 @@ #: vcl/uiconfig/ui/editmenu.ui:12 msgctxt "editmenu|undo" msgid "_Undo" -msgstr "_Geri al" +msgstr "_Geri Al" #. wVVXn #: vcl/uiconfig/ui/editmenu.ui:26 diff -Nru libreoffice-7.4.6/translations/source/ug/cui/messages.po libreoffice-7.4.7/translations/source/ug/cui/messages.po --- libreoffice-7.4.6/translations/source/ug/cui/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/ug/cui/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:12+0100\n" -"PO-Revision-Date: 2023-01-30 09:57+0000\n" +"PO-Revision-Date: 2023-04-05 18:34+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1542196050.000000\n" #. GyY9M @@ -2183,7 +2183,7 @@ #: cui/inc/tipoftheday.hrc:52 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To print the notes of your slides go to File ▸ Print ▸ %PRODUCTNAME Impress tab and select Notes under Document ▸ Type." -msgstr "" +msgstr "سىيرىلمىڭىزنىڭ ئىزاھاتىنى بېسىش ئۈچۈن ھۆججەت ◂ باس ◂ %PRODUCTNAME Impress بەتكۈچتىن پۈتۈك ◂ تىپى ئاستىدىكى ئىزاھنى تاللاڭ." #. TWjA5 #: cui/inc/tipoftheday.hrc:53 diff -Nru libreoffice-7.4.6/translations/source/uk/dictionaries/en/dialog.po libreoffice-7.4.7/translations/source/uk/dictionaries/en/dialog.po --- libreoffice-7.4.6/translations/source/uk/dictionaries/en/dialog.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/uk/dictionaries/en/dialog.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-09-26 19:35+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" -"Language-Team: Ukrainian \n" +"PO-Revision-Date: 2023-04-20 18:33+0000\n" +"Last-Translator: Євген Кондратюк \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1493014979.000000\n" #. fyB4s @@ -284,7 +284,7 @@ "ellipsis\n" "property.text" msgid "Ellipsis" -msgstr "Три крапки" +msgstr "Трикрапка" #. hiSvX #: en_en_US.properties diff -Nru libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/scalc/01.po libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/scalc/01.po --- libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/scalc/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/scalc/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-03-08 11:39+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" -"Language-Team: Ukrainian \n" +"PO-Revision-Date: 2023-03-12 04:33+0000\n" +"Last-Translator: Євген Кондратюк \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1558990114.000000\n" #. sZfWF @@ -194,7 +194,7 @@ "par_id3159264\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. NpEWf #: 02110000.xhp @@ -230,7 +230,7 @@ "par_id3152994\n" "help.text" msgid "Icon Start" -msgstr "" +msgstr "Піктограма Початок" #. JRnuj #: 02110000.xhp @@ -266,7 +266,7 @@ "par_id3159170\n" "help.text" msgid "Icon End" -msgstr "" +msgstr "Піктограма Кінець" #. t3E2x #: 02110000.xhp @@ -293,7 +293,7 @@ "par_id3159098\n" "help.text" msgid "Toggles the content view. Only the selected Navigator element and its subelements are displayed. Click the icon again to restore all elements for viewing." -msgstr "" +msgstr "Перемикає перегляд вмісту. Буде показано лише вибраний елемент Навігатора та його піделементи. Натисніть на піктограму ще раз, щоб відновити всі елементи для перегляду." #. F7cyn #: 02110000.xhp @@ -302,7 +302,7 @@ "par_id3152869\n" "help.text" msgid "Icon Toggle" -msgstr "" +msgstr "Піктограма Перемикач" #. neyie #: 02110000.xhp @@ -338,7 +338,7 @@ "par_id3148745\n" "help.text" msgid "Icon Scenarios" -msgstr "" +msgstr "Піктограма Сценарії" #. 4ANZj #: 02110000.xhp @@ -419,7 +419,7 @@ "par_id3149947\n" "help.text" msgid "Icon Drag Mode" -msgstr "" +msgstr "Піктограма Режим перетягування" #. 4gSwR #: 02110000.xhp diff -Nru libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/sdatabase.po libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/sdatabase.po --- libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/sdatabase.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/sdatabase.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2022-03-08 11:39+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" -"Language-Team: Ukrainian \n" +"PO-Revision-Date: 2023-04-16 05:33+0000\n" +"Last-Translator: Євген Кондратюк \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" #. ugSgG #: 02000000.xhp @@ -2758,7 +2758,7 @@ "tit\n" "help.text" msgid "Forms" -msgstr "" +msgstr "Форми" #. AXYAE #: 04000000.xhp @@ -2776,7 +2776,7 @@ "bm_id3156136\n" "help.text" msgid "forms; general information (Base)" -msgstr "" +msgstr "форми; загальна інформація (Base)" #. d9y84 #: 04000000.xhp @@ -2785,7 +2785,7 @@ "par_id3156136\n" "help.text" msgid "Forms can be used to enter or to edit existing database contents easily." -msgstr "" +msgstr "Форми можна використовувати для легкого введення або редагування існуючого вмісту бази даних." #. pjGfo #: 04000000.xhp @@ -3298,7 +3298,7 @@ "hd_id3159177\n" "help.text" msgid "Copy" -msgstr "" +msgstr "Копіювати" #. ZAjhE #: 05010000.xhp @@ -3307,7 +3307,7 @@ "par_id3148685\n" "help.text" msgid "Copies the selected row to the clipboard." -msgstr "" +msgstr "Копіює вибраний рядок у буфер обміну." #. Q8awG #: 05010000.xhp @@ -3316,7 +3316,7 @@ "hd_id3156327\n" "help.text" msgid "Paste" -msgstr "" +msgstr "Вставити" #. 5AQBL #: 05010000.xhp @@ -3325,7 +3325,7 @@ "par_id3152472\n" "help.text" msgid "Pastes the content of the clipboard." -msgstr "" +msgstr "Вставляє вміст буфера обміну." #. aQCGh #: 05010000.xhp @@ -3334,7 +3334,7 @@ "hd_id3144511\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Видалити" #. fbZPb #: 05010000.xhp @@ -3343,7 +3343,7 @@ "par_id3148550\n" "help.text" msgid "Deletes the selected row." -msgstr "" +msgstr "Видаляє виділений рядок." #. pD5B3 #: 05010000.xhp @@ -3352,7 +3352,7 @@ "hd_id3147303\n" "help.text" msgid "Insert Rows" -msgstr "" +msgstr "Вставити рядки" #. kfUXp #: 05010000.xhp @@ -3361,7 +3361,7 @@ "par_id3149456\n" "help.text" msgid "Inserts an empty row above the current row, if the table has not been saved. Inserts an empty row at the end of the table if the table has already been saved." -msgstr "" +msgstr "Вставляє порожній рядок над поточним рядком, якщо таблицю не було збережено. Вставляє порожній рядок у кінець таблиці, якщо таблицю вже збережено." #. XMDuJ #: 05010000.xhp @@ -3370,7 +3370,7 @@ "hd_id3153524\n" "help.text" msgid "Primary Key" -msgstr "" +msgstr "Первинний ключ" #. mmwbs #: 05010000.xhp @@ -9751,7 +9751,7 @@ "par_idN10560\n" "help.text" msgid "Copy" -msgstr "" +msgstr "Копіювати" #. foKkC #: menuedit.xhp @@ -9760,7 +9760,7 @@ "par_idN10564\n" "help.text" msgid "Copies the selected object to the clipboard." -msgstr "" +msgstr "Копіює виділений об’єкт у буфер обміну." #. rEEsQ #: menuedit.xhp @@ -9769,7 +9769,7 @@ "par_idN10567\n" "help.text" msgid "Paste" -msgstr "" +msgstr "Вставити" #. Go5ji #: menuedit.xhp @@ -9778,7 +9778,7 @@ "par_idN1056B\n" "help.text" msgid "Inserts an item from the clipboard. If you want, you can insert forms and reports, including subfolders, from one database file to another." -msgstr "" +msgstr "Вставляє вміст буфера обміну. Ви можете вставляти форми та звіти, включаючи підтеки, з одного файлу бази даних до іншого." #. CU3BC #: menuedit.xhp @@ -9787,7 +9787,7 @@ "par_idN1056E\n" "help.text" msgid "Paste Special" -msgstr "" +msgstr "Вставити як" #. AxkJA #: menuedit.xhp @@ -9823,7 +9823,7 @@ "hd_id3153683\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Зміни" #. MnMPd #: menuedit.xhp @@ -9832,7 +9832,7 @@ "par_id3147209\n" "help.text" msgid "Opens a window where you can edit the selected table, query, form, or report." -msgstr "" +msgstr "Відкриває вікно, у якому можна редагувати вибрану таблицю, запит, форму чи звіт." #. NCnUw #: menuedit.xhp @@ -9841,7 +9841,7 @@ "hd_id3145315\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Видалити" #. TmCdC #: menuedit.xhp @@ -9850,7 +9850,7 @@ "par_id3153666\n" "help.text" msgid "Deletes the selected table, query, form, or report." -msgstr "" +msgstr "Видаляє вибрану таблицю, запит, форму чи звіт." #. uuDM2 #: menuedit.xhp @@ -9859,7 +9859,7 @@ "par_idN1057C\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Перейменувати" #. 7W5uU #: menuedit.xhp @@ -10579,7 +10579,7 @@ "tit\n" "help.text" msgid "View" -msgstr "" +msgstr "Перегляд" #. hK2VC #: menuview.xhp @@ -10588,7 +10588,7 @@ "par_idN1054D\n" "help.text" msgid "View" -msgstr "" +msgstr "Перегляд" #. 3Z8JA #: menuview.xhp @@ -10597,7 +10597,7 @@ "par_idN1055D\n" "help.text" msgid "The View menu of a database window." -msgstr "" +msgstr "Меню «Перегляд» вікна бази даних." #. 2AidF #: menuview.xhp @@ -10606,7 +10606,7 @@ "par_idN10560\n" "help.text" msgid "Database Objects" -msgstr "" +msgstr "Об'єкти бази даних" #. 8Bvnx #: menuview.xhp @@ -10615,7 +10615,7 @@ "par_idN10564\n" "help.text" msgid "Opens a submenu." -msgstr "" +msgstr "Відкриває підменю." #. ayFXZ #: menuview.xhp @@ -10624,7 +10624,7 @@ "par_idN10567\n" "help.text" msgid "Forms" -msgstr "" +msgstr "Форми" #. uByBf #: menuview.xhp @@ -10633,7 +10633,7 @@ "par_idN1056B\n" "help.text" msgid "Selects the forms container and shows all forms in the detail view." -msgstr "" +msgstr "Вибирає контейнер форм і показує всі форми в детальному поданні." #. 8i64Y #: menuview.xhp @@ -10642,7 +10642,7 @@ "par_idN1056E\n" "help.text" msgid "Reports" -msgstr "" +msgstr "Звіти" #. oBrpX #: menuview.xhp @@ -10651,7 +10651,7 @@ "par_idN10572\n" "help.text" msgid "Selects the reports container and shows all reports in the detail view." -msgstr "" +msgstr "Виділяє контейнер звітів і показує всі звіти в детальному поданні." #. 2BQEW #: menuview.xhp @@ -10660,7 +10660,7 @@ "par_idN10575\n" "help.text" msgid "Queries" -msgstr "" +msgstr "Запити" #. eyZ6P #: menuview.xhp @@ -14611,7 +14611,7 @@ "par_idN1066A\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Видалити" #. AfDGM #: toolbar_form.xhp @@ -14620,7 +14620,7 @@ "par_id941642794399538\n" "help.text" msgid "Icon Delete Form" -msgstr "" +msgstr "Піктограма \"Видалити форму\"" #. 969sF #: toolbar_form.xhp @@ -14629,7 +14629,7 @@ "par_idN1066E\n" "help.text" msgid "Deletes the selected form." -msgstr "" +msgstr "Видаляє вибрану форму." #. E8FTE #: toolbar_form.xhp @@ -14638,7 +14638,7 @@ "par_idN10685\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Перейменувати" #. pE8qg #: toolbar_form.xhp @@ -14647,7 +14647,7 @@ "par_id601642794481349\n" "help.text" msgid "Icon Rename Form" -msgstr "" +msgstr "Піктограма \"Перейменувати форму\"" #. eMzAD #: toolbar_form.xhp @@ -14656,7 +14656,7 @@ "par_idN10689\n" "help.text" msgid "Renames the selected form." -msgstr "" +msgstr "Перейменовує вибрану форму." #. Ej7Bx #: toolbar_query.xhp @@ -14764,7 +14764,7 @@ "par_idN105DF\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Зміни" #. peDGL #: toolbar_query.xhp @@ -14818,7 +14818,7 @@ "par_idN10615\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Перейменувати" #. H78Bh #: toolbar_query.xhp @@ -14827,7 +14827,7 @@ "par_id561642792121799\n" "help.text" msgid "Icon Rename Query" -msgstr "" +msgstr "Піктограма \"Перейменувати запит\"" #. xXWqz #: toolbar_query.xhp @@ -14836,7 +14836,7 @@ "par_idN10619\n" "help.text" msgid "Renames the selected query." -msgstr "" +msgstr "Перейменовує вибраний запит." #. aqUue #: toolbar_report.xhp @@ -14845,7 +14845,7 @@ "tit\n" "help.text" msgid "Database Report Toolbar" -msgstr "" +msgstr "Панель інструментів Звіт бази даних" #. N5Spv #: toolbar_report.xhp @@ -14863,7 +14863,7 @@ "hd_id231642796157552\n" "help.text" msgid "New database report" -msgstr "" +msgstr "Новий звіт бази даних" #. hxRbm #: toolbar_report.xhp @@ -14872,7 +14872,7 @@ "par_id431642796165270\n" "help.text" msgid "Icon New Database Report" -msgstr "" +msgstr "Піктограма Новий звіт бази даних" #. FzBiP #: toolbar_report.xhp @@ -14881,7 +14881,7 @@ "par_id321642796165273\n" "help.text" msgid "Creates a new database report." -msgstr "" +msgstr "Створює новий звіт бази даних." #. DASFx #: toolbar_report.xhp @@ -14890,7 +14890,7 @@ "hd_id261642796491626\n" "help.text" msgid "Database report wizard" -msgstr "" +msgstr "Майстер звітів бази даних" #. wRJAg #: toolbar_report.xhp @@ -14971,7 +14971,7 @@ "par_idN106DA\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Видалити" #. frjJR #: toolbar_report.xhp @@ -14980,7 +14980,7 @@ "par_id51642795131634\n" "help.text" msgid "Icon Delete Report" -msgstr "" +msgstr "Піктограма Видалити звіт" #. rrRCi #: toolbar_report.xhp @@ -14989,7 +14989,7 @@ "par_idN106DE\n" "help.text" msgid "Deletes the selected report." -msgstr "" +msgstr "Видаляє вибраний звіт." #. ftpNL #: toolbar_report.xhp @@ -14998,7 +14998,7 @@ "par_idN106F5\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Перейменувати" #. cNjbm #: toolbar_report.xhp @@ -15007,7 +15007,7 @@ "par_id551642795211226\n" "help.text" msgid "Icon Rename Report" -msgstr "" +msgstr "Піктограма \"Перейменувати звіт\"" #. EYSpz #: toolbar_report.xhp @@ -15016,7 +15016,7 @@ "par_idN106F9\n" "help.text" msgid "Renames the selected report." -msgstr "" +msgstr "Перейменовує вибраний звіт." #. ezZJj #: toolbar_table.xhp @@ -15025,7 +15025,7 @@ "tit\n" "help.text" msgid "Database Table Toolbar" -msgstr "" +msgstr "Панель інструментів Таблиця бази даних" #. 6DNGE #: toolbar_table.xhp @@ -15043,7 +15043,7 @@ "hd_id461642852368590\n" "help.text" msgid "Open document" -msgstr "" +msgstr "Відкрити документ" #. pRvid #: toolbar_table.xhp @@ -15052,7 +15052,7 @@ "par_id601642852258016\n" "help.text" msgid "Icon Open Document" -msgstr "" +msgstr "Піктограма \"Відкрити документ\"" #. DAEuG #: toolbar_table.xhp @@ -15061,7 +15061,7 @@ "par_id981642852258019\n" "help.text" msgid "Opens a %PRODUCTNAME document." -msgstr "" +msgstr "Відкриває документ %PRODUCTNAME." #. Z4JdE #: toolbar_table.xhp @@ -15070,7 +15070,7 @@ "hd_id981642852403610\n" "help.text" msgid "Save document" -msgstr "" +msgstr "Зберегти документ" #. EoGU4 #: toolbar_table.xhp @@ -15079,7 +15079,7 @@ "par_id731642852435520\n" "help.text" msgid "Icon Save database file" -msgstr "" +msgstr "Піктограма Зберегти файл бази даних" #. AgrRB #: toolbar_table.xhp @@ -15088,7 +15088,7 @@ "par_id481642852435523\n" "help.text" msgid "Saves current database file." -msgstr "" +msgstr "Зберігає поточний файл бази даних." #. mLNRZ #: toolbar_table.xhp @@ -15097,7 +15097,7 @@ "hd_id131642852596290\n" "help.text" msgid "Copy" -msgstr "" +msgstr "Копіювати" #. xVmGj #: toolbar_table.xhp @@ -15106,7 +15106,7 @@ "par_id381642853541654\n" "help.text" msgid "Icon copy" -msgstr "" +msgstr "Піктограма Копіювати" #. MSHcj #: toolbar_table.xhp @@ -15115,7 +15115,7 @@ "par_id601642853541657\n" "help.text" msgid "Copies the selection to the clipboard." -msgstr "" +msgstr "Копіює виділення в буфер обміну." #. C9Ezf #: toolbar_table.xhp @@ -15124,7 +15124,7 @@ "hd_id941642852602272\n" "help.text" msgid "Paste" -msgstr "" +msgstr "Вставити" #. JDAZJ #: toolbar_table.xhp @@ -15133,7 +15133,7 @@ "par_id761642853673909\n" "help.text" msgid "Icon Paste" -msgstr "" +msgstr "Піктограма Вставити" #. nEsTe #: toolbar_table.xhp @@ -15142,7 +15142,7 @@ "par_id321642853673912\n" "help.text" msgid "Inserts the contents of the clipboard at the location of the cursor, and replaces any selected text or objects." -msgstr "" +msgstr "Вставляє вміст буфера обміну в місце розташування курсора та замінює будь-який виділений текст або об’єкти." #. Ct5XD #: toolbar_table.xhp @@ -15151,7 +15151,7 @@ "hd_id1001642852606113\n" "help.text" msgid "Sort ascending" -msgstr "" +msgstr "Сортувати за зростанням" #. WDeBp #: toolbar_table.xhp @@ -15169,7 +15169,7 @@ "par_id621642853830977\n" "help.text" msgid "Sorts the entries in the detail view in ascending order." -msgstr "" +msgstr "Сортує записи в детальному перегляді в порядку зростання." #. 542jo #: toolbar_table.xhp @@ -15178,7 +15178,7 @@ "hd_id441642852616281\n" "help.text" msgid "Sort descending" -msgstr "" +msgstr "Сортувати за спаданням" #. iL4by #: toolbar_table.xhp @@ -15187,7 +15187,7 @@ "par_id511642854313007\n" "help.text" msgid "Icon Sort descending" -msgstr "" +msgstr "Піктограма Сортувати за спаданням" #. e2A2e #: toolbar_table.xhp @@ -15196,7 +15196,7 @@ "par_id81642854313011\n" "help.text" msgid "Sorts the entries in the detail view in descending order." -msgstr "" +msgstr "Сортує записи в детальному перегляді в порядку спадання." #. VTRY7 #: toolbar_table.xhp @@ -15205,7 +15205,7 @@ "hd_id231642796152552\n" "help.text" msgid "New database form" -msgstr "" +msgstr "Нова форма бази даних" #. 4C7Bi #: toolbar_table.xhp @@ -15214,7 +15214,7 @@ "par_id431643796165270\n" "help.text" msgid "Icon New Database Form" -msgstr "" +msgstr "Піктограма \"Нова форма бази даних\"" #. YAoeV #: toolbar_table.xhp @@ -15313,7 +15313,7 @@ "par_idN1058A\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Видалити" #. qsDuC #: toolbar_table.xhp @@ -15340,7 +15340,7 @@ "par_idN105A5\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Перейменувати" #. bkFMf #: toolbar_table.xhp @@ -15349,7 +15349,7 @@ "par_id501642788935574\n" "help.text" msgid "Icon Rename Table" -msgstr "" +msgstr "Піктограма \"Перейменувати таблицю\"" #. Bqa33 #: toolbar_table.xhp @@ -15358,7 +15358,7 @@ "par_idN105A9\n" "help.text" msgid "Renames the selected table." -msgstr "" +msgstr "Перейменовує вибрану таблицю." #. PAxTq #: toolbars.xhp @@ -15367,7 +15367,7 @@ "tit\n" "help.text" msgid "Toolbars" -msgstr "" +msgstr "Панелі інструментів" #. vYRDC #: toolbars.xhp @@ -15376,7 +15376,7 @@ "par_idN10541\n" "help.text" msgid "Database Toolbars " -msgstr "" +msgstr "Панелі інструментів бази даних " #. B3mEW #: toolbars.xhp diff -Nru libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/shared/01.po libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/shared/01.po --- libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/shared/01.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/shared/01.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-10-24 11:22+0000\n" +"PO-Revision-Date: 2023-04-16 05:33+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560361808.000000\n" #. 3u8hR @@ -27671,7 +27671,7 @@ "hd_id3156346\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Перейменувати" #. sQktA #: 05200300.xhp diff -Nru libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/shared/04.po libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/shared/04.po --- libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/shared/04.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/shared/04.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:31+0100\n" -"PO-Revision-Date: 2021-10-21 16:36+0000\n" +"PO-Revision-Date: 2023-03-18 18:32+0000\n" "Last-Translator: Євген Кондратюк \n" -"Language-Team: Ukrainian \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1547163946.000000\n" #. GEuoc @@ -113,7 +113,7 @@ "par_id1001591272531804\n" "help.text" msgid "The default Unicode conversion shortcut is Command+Option+XAlt+X and Command+Option+CAlt+C in some locales where the default Unicode shortcut interferes with the main menu shortcut. To reassign the shortcut, choose Tools - Customize - Keyboard and select Category:Options with Function:Toggle Unicode Notation." -msgstr "" +msgstr "Типове сполучення клавіш для перетворення в Unicode ‒ Command+Option+XAlt+X та Command+Option+CAlt+C у деяких локалях, де типове сполучення клавіш Unicode заважає системному сполученню клавіш. Щоб пере-призначити сполучення клавіш, перейдіть у меню Засоби - Налаштувати - Клавіатура та оберіть Категорія:Параметри і Функція:Перемкнути представлення Юнікод." #. cBDHp #: 01010000.xhp diff -Nru libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/shared/06.po libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/shared/06.po --- libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/shared/06.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/shared/06.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-01-23 12:18+0000\n" +"PO-Revision-Date: 2023-03-12 04:33+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1536497608.000000\n" #. EUcrc @@ -239,7 +239,7 @@ "par_id91572261220492\n" "help.text" msgid "Hyperlink Doc Page Dialog Image" -msgstr "" +msgstr "Зображення діалогового вікна сторінки документа з гіперпосиланням" #. q52zT #: shared_cui_screenshots.xhp @@ -248,7 +248,7 @@ "par_id321572273256466\n" "help.text" msgid "Hyperlink Internet Dialog Image" -msgstr "" +msgstr "Гіперпосилання в Інтернет" #. 7gbR6 #: shared_cui_screenshots.xhp @@ -257,7 +257,7 @@ "par_id681572278003926\n" "help.text" msgid "Hyperlink Mail Dialog Image" -msgstr "" +msgstr "Зображення діалогового вікна \"Гіперпосилання на e-mail\"" #. UZndE #: shared_cui_screenshots.xhp @@ -266,7 +266,7 @@ "par_id911572279106813\n" "help.text" msgid "Hyperlink New Document Dialog Image" -msgstr "" +msgstr "Гіперпосилання на новий документ" #. j7M36 #: shared_cui_screenshots.xhp diff -Nru libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/shared/guide.po libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/shared/guide.po --- libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/shared/guide.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/shared/guide.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:04+0200\n" -"PO-Revision-Date: 2022-10-24 11:22+0000\n" +"PO-Revision-Date: 2023-04-16 21:33+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1560361939.000000\n" #. iharT @@ -10544,7 +10544,7 @@ "par_id3147287\n" "help.text" msgid "Click the New icon on the Standard bar or choose File - New. This opens a document of the document type specified." -msgstr "" +msgstr "Клацніть на піктограмі Створити на панелі Стандартна, або виберіть у меню Файл - Створити. Відкриється документ вказаного типу." #. Rcfnt #: doc_open.xhp @@ -19112,7 +19112,7 @@ "par_id811608202662210\n" "help.text" msgid "The Default button resets User Path to the initial setting when %PRODUCTNAME was installed." -msgstr "" +msgstr "Кнопка Типово скидає шлях користувача до початкових налаштувань під час встановлення %PRODUCTNAME." #. yEKCp #: manage_templates.xhp @@ -19121,7 +19121,7 @@ "hd_id361607961401720\n" "help.text" msgid "Working with Categories" -msgstr "" +msgstr "Як працювати з Категоріями" #. LYVsB #: manage_templates.xhp @@ -19130,7 +19130,7 @@ "par_id711607961275200\n" "help.text" msgid "The names of subdirectories in the user-defined directories appear as Category names in the Template Manager. If you rename a category, the subdirectory continues to be used, with the new category name stored in groupuinames.xml in the selected Default Path." -msgstr "" +msgstr "Назви підтек у визначених користувачем теках відображаються як назви Категорій у Менеджері шаблонів. Якщо Ви перейменовуєте категорію, підтека залишається, а нова назва категорії зберігається у файлі groupuinames.xml у обраному Типовому шляху." #. cZrzf #: manage_templates.xhp @@ -19229,7 +19229,7 @@ "par_id3146957\n" "help.text" msgid "You can select separate measurement units for $[officename] Writer, $[officename] Writer/Web, $[officename] Calc, $[officename] Impress and $[officename] Draw documents." -msgstr "" +msgstr "Для документів модулів $[officename] Writer, $[officename] Writer/Web, $[officename] Calc, $[officename] Impress та $[officename] Draw можна вибрати різні одиниці виміру." #. pXuYU #: measurement_units.xhp @@ -19238,7 +19238,7 @@ "par_idN10674\n" "help.text" msgid "Open a document of the type for which you want to change the measurement units." -msgstr "" +msgstr "Відкрийте документ того типу, для якого потрібно змінити одиниці виміру." #. RxDxC #: measurement_units.xhp @@ -26843,7 +26843,7 @@ "hd_id041620170723508003\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Перейменувати" #. BLKaw #: template_manager.xhp @@ -26870,7 +26870,7 @@ "par_id61642158394220\n" "help.text" msgid "Rename" -msgstr "" +msgstr "Перейменувати" #. mSSwu #: template_manager.xhp @@ -26906,7 +26906,7 @@ "par_id831642158461235\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Видалити" #. QQQyx #: template_manager.xhp @@ -26915,7 +26915,7 @@ "par_id141607690272821\n" "help.text" msgid "Built-in templates cannot be edited, renamed or deleted." -msgstr "" +msgstr "Вбудовані шаблони не можна редагувати, перейменовувати чи видаляти." #. gWz9H #: template_manager.xhp @@ -26924,7 +26924,7 @@ "hd_id041620170723508845\n" "help.text" msgid "Move" -msgstr "" +msgstr "Перемістити" #. ZSxLZ #: template_manager.xhp diff -Nru libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/shared/menu.po libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/shared/menu.po --- libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/shared/menu.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/shared/menu.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-21 12:31+0100\n" -"PO-Revision-Date: 2020-09-12 09:35+0000\n" +"PO-Revision-Date: 2023-03-24 09:33+0000\n" "Last-Translator: Євген Кондратюк \n" -"Language-Team: Ukrainian \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1468606418.000000\n" #. rxCQJ @@ -23,7 +23,7 @@ "tit\n" "help.text" msgid "Forms submenu" -msgstr "" +msgstr "Підменю Форми" #. EHLP3 #: forms.xhp diff -Nru libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/swriter/librelogo.po libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-7.4.6/translations/source/uk/helpcontent2/source/text/swriter/librelogo.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/uk/helpcontent2/source/text/swriter/librelogo.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-04 18:05+0200\n" -"PO-Revision-Date: 2021-09-14 10:13+0000\n" +"PO-Revision-Date: 2023-04-09 03:34+0000\n" "Last-Translator: Євген Кондратюк \n" -"Language-Team: Ukrainian \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1512248607.000000\n" #. kypzs @@ -536,7 +536,7 @@ "par_750\n" "help.text" msgid "Lines of a LibreLogo program are paragraphs in the Writer document. A program line can contain multiple commands:" -msgstr "" +msgstr "Рядки програми LibreLogo є абзацами в документі Writer. Рядок програми може містити декілька команд:" #. BPLNJ #: LibreLogo.xhp @@ -1400,7 +1400,7 @@ "par_1580\n" "help.text" msgid "See also “Group” in %PRODUCTNAME Writer Help." -msgstr "" +msgstr "Дивіться також термін “Група” у довідці %PRODUCTNAME Writer." #. zjatC #: LibreLogo.xhp diff -Nru libreoffice-7.4.6/translations/source/uk/starmath/messages.po libreoffice-7.4.7/translations/source/uk/starmath/messages.po --- libreoffice-7.4.6/translations/source/uk/starmath/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/uk/starmath/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:51+0200\n" -"PO-Revision-Date: 2022-09-26 19:50+0000\n" +"PO-Revision-Date: 2023-03-06 11:32+0000\n" "Last-Translator: Євген Кондратюк \n" -"Language-Team: Ukrainian \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562230833.000000\n" #. GrDhX @@ -992,19 +992,19 @@ #: starmath/inc/strings.hrc:115 msgctxt "RID_OPER_FROMX_HELP" msgid "General operator Subscript Bottom" -msgstr "" +msgstr "Нижній індекс загального оператора" #. HaUqv #: starmath/inc/strings.hrc:116 msgctxt "RID_OPER_TOX_HELP" msgid "General operator Superscript Top" -msgstr "" +msgstr "Верхній індекс загального оператора" #. Pch4L #: starmath/inc/strings.hrc:117 msgctxt "RID_OPER_FROMTOX_HELP" msgid "General operator Sup/Sub script" -msgstr "" +msgstr "Індекси загального оператора" #. 4eGMf #: starmath/inc/strings.hrc:118 @@ -1754,25 +1754,25 @@ #: starmath/inc/strings.hrc:242 msgctxt "RID_EVALUATEX_HELP" msgid "Evaluate" -msgstr "" +msgstr "Оцінка" #. vfpuY #: starmath/inc/strings.hrc:243 msgctxt "RID_EVALUATE_FROMX_HELP" msgid "Evaluate Subscript Bottom" -msgstr "" +msgstr "Нижній індекс оцінки" #. Q6G2q #: starmath/inc/strings.hrc:244 msgctxt "RID_EVALUATE_TOX_HELP" msgid "Evaluate Superscript Top" -msgstr "" +msgstr "Верхній індекс оцінки" #. 6NGAj #: starmath/inc/strings.hrc:245 msgctxt "RID_EVALUATE_FROMTOX_HELP" msgid "Evaluate Sup/Sub script" -msgstr "" +msgstr "Індекси оцінки" #. wePDA #: starmath/inc/strings.hrc:246 diff -Nru libreoffice-7.4.6/translations/source/uk/sw/messages.po libreoffice-7.4.7/translations/source/uk/sw/messages.po --- libreoffice-7.4.6/translations/source/uk/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/uk/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2023-02-23 17:17+0000\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -1022,229 +1022,229 @@ #: sw/inc/inspectorproperties.hrc:90 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Kerning" -msgstr "" +msgstr "Символ: Kerning" #. CFpCB #: sw/inc/inspectorproperties.hrc:91 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Left Border" -msgstr "" +msgstr "Символ: Лівий край" #. ZZNYY #: sw/inc/inspectorproperties.hrc:92 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Left Border Distance" -msgstr "" +msgstr "Символ: Відстань лівого краю" #. ZAkB6 #: sw/inc/inspectorproperties.hrc:93 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Locale" -msgstr "" +msgstr "Символ: Локаль" #. Ju3fR #: sw/inc/inspectorproperties.hrc:94 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Locale Asian" -msgstr "" +msgstr "Символ: Азійська локаль" #. sA8Rk #: sw/inc/inspectorproperties.hrc:95 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Locale Complex" -msgstr "" +msgstr "Символ: Локаль Complex" #. AAvjB #: sw/inc/inspectorproperties.hrc:96 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char No Hyphenation" -msgstr "" +msgstr "Символ: Без переносів" #. ioDYE #: sw/inc/inspectorproperties.hrc:97 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Overline" -msgstr "" +msgstr "Символ: Overline" #. GBMFT #: sw/inc/inspectorproperties.hrc:98 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Overline Color" -msgstr "" +msgstr "Символ: Колір Overline" #. 5y7T3 #: sw/inc/inspectorproperties.hrc:99 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Overline Has Color" -msgstr "" +msgstr "Символ: Overline має колір" #. BEeWf #: sw/inc/inspectorproperties.hrc:100 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture" -msgstr "" +msgstr "Символ: Нахил" #. yTFRk #: sw/inc/inspectorproperties.hrc:101 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture Asian" -msgstr "" +msgstr "Символ: Нахил в азійських" #. 8WG25 #: sw/inc/inspectorproperties.hrc:102 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture Complex" -msgstr "" +msgstr "Символ: Нахил у Complex" #. yuK3c #: sw/inc/inspectorproperties.hrc:103 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height" -msgstr "" +msgstr "Символ: Властивість Висота" #. j4w85 #: sw/inc/inspectorproperties.hrc:104 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height Asian" -msgstr "" +msgstr "Символ: Властивість Висота в азійських" #. C5Ds3 #: sw/inc/inspectorproperties.hrc:105 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height Complex" -msgstr "" +msgstr "Символ: Властивість Висота в Complex" #. ABhRa #: sw/inc/inspectorproperties.hrc:106 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Relief" -msgstr "" +msgstr "Символ: Рельєф" #. BsxCo #: sw/inc/inspectorproperties.hrc:107 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Right Border" -msgstr "" +msgstr "Символ: Правий край" #. jrnRf #: sw/inc/inspectorproperties.hrc:108 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Right Border Distance" -msgstr "" +msgstr "Символ: Відстань правого краю" #. UEpDe #: sw/inc/inspectorproperties.hrc:109 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Rotation" -msgstr "" +msgstr "Символ: Обертання" #. jwSQF #: sw/inc/inspectorproperties.hrc:110 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Rotation is Fit To Line" -msgstr "" +msgstr "Символ: Обертання по лінії" #. cYG7T #: sw/inc/inspectorproperties.hrc:111 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Scale Width" -msgstr "" +msgstr "Символ: Шкала ширини" #. WFuSd #: sw/inc/inspectorproperties.hrc:112 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shading Value" -msgstr "" +msgstr "Символ: Величина затінення" #. 9sRCG #: sw/inc/inspectorproperties.hrc:113 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shadow Format" -msgstr "" +msgstr "Символ: Формат тіні" #. tKjaF #: sw/inc/inspectorproperties.hrc:114 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shadowed" -msgstr "" +msgstr "Символ: з тінню" #. H9st9 #: sw/inc/inspectorproperties.hrc:115 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Strikeout" -msgstr "" +msgstr "Символ: Strikeout" #. zrLCN #: sw/inc/inspectorproperties.hrc:116 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Style Name" -msgstr "" +msgstr "Символ: Назва стилю" #. PN2pE #: sw/inc/inspectorproperties.hrc:117 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Style Names" -msgstr "" +msgstr "Символ: Назви стилів" #. rq2fu #: sw/inc/inspectorproperties.hrc:118 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Top Border" -msgstr "" +msgstr "Символ: Верхня межа" #. SNLiC #: sw/inc/inspectorproperties.hrc:119 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Top Border Distance" -msgstr "" +msgstr "Символ: Відстань верхньої межі" #. ZoAde #: sw/inc/inspectorproperties.hrc:120 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Transparence" -msgstr "" +msgstr "Символ: Прозорість" #. CAJEC #: sw/inc/inspectorproperties.hrc:121 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline" -msgstr "" +msgstr "Символ: Підкреслення" #. yGPLz #: sw/inc/inspectorproperties.hrc:122 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline Color" -msgstr "" +msgstr "Символ: Колір підкреслення" #. HmfPF #: sw/inc/inspectorproperties.hrc:123 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline Has Color" -msgstr "" +msgstr "Символ: Підкреслення кольором" #. QRCs4 #: sw/inc/inspectorproperties.hrc:124 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight" -msgstr "" +msgstr "Символ: Weight" #. EwWk2 #: sw/inc/inspectorproperties.hrc:125 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight Asian" -msgstr "" +msgstr "Символ: Weight Asian" #. nxNQB #: sw/inc/inspectorproperties.hrc:126 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight Complex" -msgstr "" +msgstr "Символ: Weight Complex" #. D4T2M #: sw/inc/inspectorproperties.hrc:127 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Word Mode" -msgstr "" +msgstr "Символ: Word Mode" #. z8NA6 #: sw/inc/inspectorproperties.hrc:128 @@ -1274,19 +1274,19 @@ #: sw/inc/inspectorproperties.hrc:132 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Char Style Name" -msgstr "" +msgstr "Буквиця: Симв назва стилю" #. BtV5G #: sw/inc/inspectorproperties.hrc:133 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Format" -msgstr "" +msgstr "Буквиця: Формат" #. SnMZX #: sw/inc/inspectorproperties.hrc:134 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Whole Word" -msgstr "" +msgstr "Буквиця: Ціле слово" #. LXhoV #: sw/inc/inspectorproperties.hrc:135 @@ -1322,67 +1322,67 @@ #: sw/inc/inspectorproperties.hrc:140 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Name" -msgstr "" +msgstr "Заливка: Назва растру" #. C4jU5 #: sw/inc/inspectorproperties.hrc:141 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Offset X" -msgstr "" +msgstr "Заливка: Bitmap Offset X" #. w2UVD #: sw/inc/inspectorproperties.hrc:142 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Offset Y" -msgstr "" +msgstr "Заливка: Bitmap Offset Y" #. ZTKw7 #: sw/inc/inspectorproperties.hrc:143 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Position Offset X" -msgstr "" +msgstr "Заливка: Bitmap Position Offset X" #. BVBvB #: sw/inc/inspectorproperties.hrc:144 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Position Offset Y" -msgstr "" +msgstr "Заливка: Bitmap Position Offset Y" #. CzVxv #: sw/inc/inspectorproperties.hrc:145 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Rectangle Point" -msgstr "" +msgstr "Заливка: Прямокутна точка растру" #. GrmLm #: sw/inc/inspectorproperties.hrc:146 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size X" -msgstr "" +msgstr "Заливка: Розмір растру X" #. stSMW #: sw/inc/inspectorproperties.hrc:147 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size Y" -msgstr "" +msgstr "Заливка: Розмір растру Y" #. zJV5G #: sw/inc/inspectorproperties.hrc:148 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Stretch" -msgstr "" +msgstr "Заливка: Розтягнутий растр" #. HMq2D #: sw/inc/inspectorproperties.hrc:149 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Tile" -msgstr "" +msgstr "Заливка: Bitmap Tile" #. 6iSjs #: sw/inc/inspectorproperties.hrc:150 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap URL" -msgstr "" +msgstr "Заливка: Bitmap URL" #. Fd28G #: sw/inc/inspectorproperties.hrc:151 @@ -1400,61 +1400,61 @@ #: sw/inc/inspectorproperties.hrc:153 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient" -msgstr "" +msgstr "Заливка: Градієнт" #. uWcQT #: sw/inc/inspectorproperties.hrc:154 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient Name" -msgstr "" +msgstr "Заливка: Назва градієнту" #. uazQm #: sw/inc/inspectorproperties.hrc:155 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient Step Count" -msgstr "" +msgstr "Заливка: Gradient Step Count" #. bTjNu #: sw/inc/inspectorproperties.hrc:156 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Hatch" -msgstr "" +msgstr "Заливка: Штрих" #. YCBtr #: sw/inc/inspectorproperties.hrc:157 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Hatch Name" -msgstr "" +msgstr "Заливка: Назва штриха" #. GbQPt #: sw/inc/inspectorproperties.hrc:158 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Style" -msgstr "" +msgstr "Заливка: Стиль" #. tFYmZ #: sw/inc/inspectorproperties.hrc:159 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence" -msgstr "" +msgstr "Заливка: Прозорість" #. H9v5s #: sw/inc/inspectorproperties.hrc:160 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence Gradient" -msgstr "" +msgstr "Заливка: Градієнт прозорості" #. pZH4P #: sw/inc/inspectorproperties.hrc:161 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence Gradient Name" -msgstr "" +msgstr "Заливка: Назва градієнту прозорості" #. WqmBo #: sw/inc/inspectorproperties.hrc:162 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Follow Style" -msgstr "" +msgstr "Наступний стиль" #. 32Vgt #: sw/inc/inspectorproperties.hrc:163 @@ -1610,445 +1610,445 @@ #: sw/inc/inspectorproperties.hrc:188 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Rsid" -msgstr "" +msgstr "Абзац: Rsid" #. xqcEV #: sw/inc/inspectorproperties.hrc:189 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Adjust" -msgstr "" +msgstr "Абзац: Підігнати" #. SyTxG #: sw/inc/inspectorproperties.hrc:190 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Auto Style Name" -msgstr "" +msgstr "Абзац: Auto Style Name" #. WHaym #: sw/inc/inspectorproperties.hrc:191 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Color" -msgstr "" +msgstr "Абзац: Back Color" #. uKmB5 #: sw/inc/inspectorproperties.hrc:192 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic" -msgstr "" +msgstr "Абзац: Back Graphic" #. f6RGz #: sw/inc/inspectorproperties.hrc:193 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Filter" -msgstr "" +msgstr "Абзац: Back Graphic Filter" #. Yy5RY #: sw/inc/inspectorproperties.hrc:194 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Location" -msgstr "" +msgstr "Абзац: Back Graphic Location" #. MLDdK #: sw/inc/inspectorproperties.hrc:195 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic URL" -msgstr "" +msgstr "Абзац: Back Graphic URL" #. HkGF3 #: sw/inc/inspectorproperties.hrc:196 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Transparent" -msgstr "" +msgstr "Абзац: Back Transparent" #. TuYLo #: sw/inc/inspectorproperties.hrc:197 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Bottom Margin" -msgstr "" +msgstr "Абзац: Bottom Margin" #. r5BAb #: sw/inc/inspectorproperties.hrc:198 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Bottom Margin Relative" -msgstr "" +msgstr "Абзац: Bottom Margin Relative" #. rCWLX #: sw/inc/inspectorproperties.hrc:199 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Chapter Numbering Level" -msgstr "" +msgstr "Абзац: Chapter Numbering Level" #. GLxXC #: sw/inc/inspectorproperties.hrc:200 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Conditional Style Name" -msgstr "" +msgstr "Абзац: Conditional Style Name" #. AFGoP #: sw/inc/inspectorproperties.hrc:201 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Context Margin" -msgstr "" +msgstr "Абзац: Context Margin" #. dpsFJ #: sw/inc/inspectorproperties.hrc:202 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Expand Single Word" -msgstr "" +msgstr "Абзац: Expand Single Word" #. iD2DL #: sw/inc/inspectorproperties.hrc:203 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para First Line Indent" -msgstr "" +msgstr "Абзац: First Line Indent" #. wCMnF #: sw/inc/inspectorproperties.hrc:204 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para First Line Indent Relative" -msgstr "" +msgstr "Абзац: First Line Indent Relative" #. z47wS #: sw/inc/inspectorproperties.hrc:205 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Hyphens" -msgstr "" +msgstr "Абзац: Hyphenation Max Hyphens" #. nFxKY #: sw/inc/inspectorproperties.hrc:206 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Leading Chars" -msgstr "" +msgstr "Абзац: Hyphenation Max Leading Chars" #. agdzD #: sw/inc/inspectorproperties.hrc:207 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Trailing Chars" -msgstr "" +msgstr "Абзац: Hyphenation Max Trailing Chars" #. hj7Fp #: sw/inc/inspectorproperties.hrc:208 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation No Caps" -msgstr "" +msgstr "Абзац: Hyphenation No Caps" #. 8BFum #: sw/inc/inspectorproperties.hrc:209 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation No Last Word" -msgstr "" +msgstr "Абзац: Hyphenation No Last Word" #. 32PM5 #: sw/inc/inspectorproperties.hrc:210 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Min Word Length" -msgstr "" +msgstr "Абзац: Hyphenation Min Word Length" #. 4ZE3Y #: sw/inc/inspectorproperties.hrc:211 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Zone" -msgstr "" +msgstr "Абзац: Hyphenation Zone" #. 4bemD #: sw/inc/inspectorproperties.hrc:212 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Interop Grab Bag" -msgstr "" +msgstr "Абзац: Interop Grab Bag" #. fCGA4 #: sw/inc/inspectorproperties.hrc:213 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Auto First Line Indent" -msgstr "" +msgstr "Абзац: is Auto First Line Indent" #. Q68Bx #: sw/inc/inspectorproperties.hrc:214 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Character Distance" -msgstr "" +msgstr "Абзац: is Character Distance" #. FGVAd #: sw/inc/inspectorproperties.hrc:215 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Connect Border" -msgstr "" +msgstr "Абзац: is Connect Border" #. tBy9h #: sw/inc/inspectorproperties.hrc:216 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Forbidden Rules" -msgstr "" +msgstr "Абзац: is Forbidden Rules" #. yZZSA #: sw/inc/inspectorproperties.hrc:217 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hanging Punctuation" -msgstr "" +msgstr "Абзац: is Hanging Punctuation" #. dDgrE #: sw/inc/inspectorproperties.hrc:218 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hyphenation" -msgstr "" +msgstr "Абзац: is Hyphenation" #. mHDWE #: sw/inc/inspectorproperties.hrc:219 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Numbering Restart" -msgstr "" +msgstr "Абзац: is Numbering Restart" #. Mnm2C #: sw/inc/inspectorproperties.hrc:220 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Keep Together" -msgstr "" +msgstr "Абзац: Keep Together" #. 8Z5AP #: sw/inc/inspectorproperties.hrc:221 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Last Line Adjust" -msgstr "" +msgstr "Абзац: Last Line Adjust" #. 6CaHh #: sw/inc/inspectorproperties.hrc:222 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Left Margin" -msgstr "" +msgstr "Абзац: Left Margin" #. ZDnZk #: sw/inc/inspectorproperties.hrc:223 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Left Margin Relative" -msgstr "" +msgstr "Абзац: Left Margin Relative" #. G43XB #: sw/inc/inspectorproperties.hrc:224 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Number Count" -msgstr "" +msgstr "Абзац: Line Number Count" #. EjnTM #: sw/inc/inspectorproperties.hrc:225 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Number Start Value" -msgstr "" +msgstr "Абзац: Line Number Start Value" #. eo9RR #: sw/inc/inspectorproperties.hrc:226 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Spacing" -msgstr "" +msgstr "Абзац: Line Spacing" #. kczeF #: sw/inc/inspectorproperties.hrc:227 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Orphans" -msgstr "" +msgstr "Абзац: Orphans" #. FmuG6 #: sw/inc/inspectorproperties.hrc:228 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Register Mode Active" -msgstr "" +msgstr "Абзац: Register Mode Active" #. Kwp9H #: sw/inc/inspectorproperties.hrc:229 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Right Margin" -msgstr "" +msgstr "Абзац: Right Margin" #. r2ao2 #: sw/inc/inspectorproperties.hrc:230 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Right Margin Relative" -msgstr "" +msgstr "Абзац: Right Margin Relative" #. FC9mA #: sw/inc/inspectorproperties.hrc:231 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Shadow Format" -msgstr "" +msgstr "Абзац: Shadow Format" #. VXwD2 #: sw/inc/inspectorproperties.hrc:232 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Split" -msgstr "" +msgstr "Абзац: Split" #. gXoCF #: sw/inc/inspectorproperties.hrc:233 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Style Name" -msgstr "" +msgstr "Абзац: Назва стилю" #. sekLv #: sw/inc/inspectorproperties.hrc:234 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Tab Stops" -msgstr "" +msgstr "Абзац: Крок табуляції" #. reW9Y #: sw/inc/inspectorproperties.hrc:235 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Top Margin" -msgstr "" +msgstr "Абзац: Верхня межа" #. wHuj4 #: sw/inc/inspectorproperties.hrc:236 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Top Margin Relative" -msgstr "" +msgstr "Абзац: Відносно верхньої межі" #. pUjFj #: sw/inc/inspectorproperties.hrc:237 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para User Defined Attributes" -msgstr "" +msgstr "Абзац: Атрибути користувача" #. WvA9C #: sw/inc/inspectorproperties.hrc:238 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Vertical Alignment" -msgstr "" +msgstr "Абзац: Вертикальне вирівнювання" #. u8Jc6 #: sw/inc/inspectorproperties.hrc:239 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Widows" -msgstr "" +msgstr "Абзац: Widows" #. cdw2Q #: sw/inc/inspectorproperties.hrc:240 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Reference Mark" -msgstr "" +msgstr "Позначка посилання" #. NDEck #: sw/inc/inspectorproperties.hrc:241 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Right Border" -msgstr "" +msgstr "Лінія справа" #. 6rs9g #: sw/inc/inspectorproperties.hrc:242 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Right Border Distance" -msgstr "" +msgstr "До лінії справа" #. XYhSX #: sw/inc/inspectorproperties.hrc:243 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Rsid" -msgstr "" +msgstr "Rsid" #. Uoosp #: sw/inc/inspectorproperties.hrc:244 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Adjust" -msgstr "" +msgstr "Фуригана: Adjust" #. 3WwCU #: sw/inc/inspectorproperties.hrc:245 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Char Style Name" -msgstr "" +msgstr "Фуригана: Char Style Name" #. DqMAX #: sw/inc/inspectorproperties.hrc:246 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby is Above" -msgstr "" +msgstr "Фуригана: is Above" #. w8jgs #: sw/inc/inspectorproperties.hrc:247 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Position" -msgstr "" +msgstr "Фуригана: Позиція" #. ZREEa #: sw/inc/inspectorproperties.hrc:248 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Text" -msgstr "" +msgstr "Фуригана: Текст" #. tJEtt #: sw/inc/inspectorproperties.hrc:249 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Snap to Grid" -msgstr "" +msgstr "Прив'язка до сітки" #. oDk6s #: sw/inc/inspectorproperties.hrc:250 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Style Interop Grab Bag" -msgstr "" +msgstr "Style Interop Grab Bag" #. PV65u #: sw/inc/inspectorproperties.hrc:251 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Field" -msgstr "" +msgstr "Текст: Поле" #. a6k8F #: sw/inc/inspectorproperties.hrc:252 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Frame" -msgstr "" +msgstr "Текстова рамка" #. CNyuR #: sw/inc/inspectorproperties.hrc:253 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Paragraph" -msgstr "" +msgstr "Текст: Абзац" #. nTTEM #: sw/inc/inspectorproperties.hrc:254 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Section" -msgstr "" +msgstr "Текст: Розділ" #. VCADG #: sw/inc/inspectorproperties.hrc:255 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Table" -msgstr "" +msgstr "Текст: Таблиця" #. hDjMA #: sw/inc/inspectorproperties.hrc:256 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text User Defined Attributes" -msgstr "" +msgstr "Текст: Атрибути користувача" #. ZG6rS #: sw/inc/inspectorproperties.hrc:257 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Top Border" -msgstr "" +msgstr "Верхня межа" #. 6qBJD #: sw/inc/inspectorproperties.hrc:258 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Top Border Distance" -msgstr "" +msgstr "До межі зверху" #. RwtPi #: sw/inc/inspectorproperties.hrc:259 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Unvisited Char Style Name" -msgstr "" +msgstr "Не-відвідувана: Назва стилю символів" #. xcMEF #: sw/inc/inspectorproperties.hrc:260 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Visited Char Style Name" -msgstr "" +msgstr "Відвідувана: Назва стилю символів" #. YiBym #: sw/inc/inspectorproperties.hrc:261 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Writing Mode" -msgstr "" +msgstr "Режим запису" #. QBR3s #: sw/inc/mmaddressblockpage.hrc:29 @@ -2352,7 +2352,7 @@ #: sw/inc/strings.hrc:38 msgctxt "STR_POOLCHR_STANDARD" msgid "No Character Style" -msgstr "" +msgstr "Без стилю символу" #. iVg2a #: sw/inc/strings.hrc:39 @@ -4248,13 +4248,13 @@ #: sw/inc/strings.hrc:374 msgctxt "STR_CONTENT_TYPE_FOOTNOTE" msgid "Footnotes" -msgstr "" +msgstr "Виноски" #. FGDB7 #: sw/inc/strings.hrc:375 msgctxt "STR_CONTENT_TYPE_ENDNOTE" msgid "Endnotes" -msgstr "" +msgstr "Кінцеві виноски" #. KRE4o #: sw/inc/strings.hrc:376 @@ -4278,25 +4278,25 @@ #: sw/inc/strings.hrc:379 msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11" msgid "Heading 1.1" -msgstr "Заголовок 1" +msgstr "Заголовок 1.1" #. QDE2j #: sw/inc/strings.hrc:380 msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11" msgid "This is the content from subchapter 1.1. This is the entry for the table of contents." -msgstr "" +msgstr "Вміст із розділу 1.1. Це елемент для таблиці змісту." #. bymGA #: sw/inc/strings.hrc:381 msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12" msgid "Heading 1.2" -msgstr "Заголовок 1" +msgstr "Заголовок 1.2" #. vT3Xi #: sw/inc/strings.hrc:382 msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12" msgid "This is the content from subchapter 1.2. This keyword is a main entry." -msgstr "" +msgstr "Вміст розділу 1.2. Це ключове слово – основний елемент." #. mFDqo #: sw/inc/strings.hrc:383 @@ -24754,7 +24754,7 @@ #: sw/uiconfig/swriter/ui/paradialog.ui:305 msgctxt "paradialog|labelTP_PARA_ASIAN" msgid "Asian Typography" -msgstr "Азіатські правила набору" +msgstr "Азійські правила набору" #. hFkAh #: sw/uiconfig/swriter/ui/paradialog.ui:353 diff -Nru libreoffice-7.4.6/translations/source/vec/dictionaries/be_BY.po libreoffice-7.4.7/translations/source/vec/dictionaries/be_BY.po --- libreoffice-7.4.6/translations/source/vec/dictionaries/be_BY.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/vec/dictionaries/be_BY.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-09-27 19:08+0200\n" -"PO-Revision-Date: 2020-06-30 19:04+0000\n" -"Last-Translator: Còdaze Veneto \n" -"Language-Team: Venetian \n" +"PO-Revision-Date: 2023-03-23 11:32+0000\n" +"Last-Translator: VeC \n" +"Language-Team: Venetian \n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1435607748.000000\n" #. ASUni @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Belarusian spelling dictionary and hyphenation: official orthography 2008" -msgstr "" +msgstr "Coretor ortogràfego e règołe de siłabasion de'l Bełoruso (grafìa ofisiałe de'l 2008)" diff -Nru libreoffice-7.4.6/translations/source/vec/dictionaries/ckb.po libreoffice-7.4.7/translations/source/vec/dictionaries/ckb.po --- libreoffice-7.4.6/translations/source/vec/dictionaries/ckb.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/vec/dictionaries/ckb.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,14 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-02-18 12:38+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-23 11:32+0000\n" +"Last-Translator: VeC \n" +"Language-Team: Venetian \n" +"Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" #. UGHNx #: description.xml @@ -20,4 +22,4 @@ "dispname\n" "description.text" msgid "Central Kurdish (Sorani) spelling dictionary" -msgstr "" +msgstr "Coretor ortogràfego Curdo sentrałe (Sorani)" diff -Nru libreoffice-7.4.6/translations/source/vec/dictionaries/eo.po libreoffice-7.4.7/translations/source/vec/dictionaries/eo.po --- libreoffice-7.4.6/translations/source/vec/dictionaries/eo.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/vec/dictionaries/eo.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,14 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-04-12 12:05+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-23 11:32+0000\n" +"Last-Translator: VeC \n" +"Language-Team: Venetian \n" +"Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" #. 8TKYb #: description.xml @@ -20,4 +22,4 @@ "dispname\n" "description.text" msgid "Spelling dictionary, thesaurus, and hyphenator for Esperanto" -msgstr "" +msgstr "Coretor ortogràfego, règołe de siłabasion e disionaro de i sinònemi de l'Esperanto" diff -Nru libreoffice-7.4.6/translations/source/vec/dictionaries/mn_MN.po libreoffice-7.4.7/translations/source/vec/dictionaries/mn_MN.po --- libreoffice-7.4.6/translations/source/vec/dictionaries/mn_MN.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/vec/dictionaries/mn_MN.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,14 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-04-27 17:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-23 11:32+0000\n" +"Last-Translator: VeC \n" +"Language-Team: Venetian \n" +"Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" #. UsF8V #: description.xml @@ -20,4 +22,4 @@ "dispname\n" "description.text" msgid "Mongolian spelling and hyphenation dictionaries" -msgstr "" +msgstr "Coretor ortogràfego e règołe de siłabasion de'l Móngoło" diff -Nru libreoffice-7.4.6/translations/source/vec/dictionaries/pt_BR.po libreoffice-7.4.7/translations/source/vec/dictionaries/pt_BR.po --- libreoffice-7.4.6/translations/source/vec/dictionaries/pt_BR.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/vec/dictionaries/pt_BR.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-11-16 12:08+0100\n" -"PO-Revision-Date: 2018-01-03 17:33+0000\n" -"Last-Translator: projetolovec \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2023-03-23 11:32+0000\n" +"Last-Translator: VeC \n" +"Language-Team: Venetian \n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1515000821.000000\n" #. svvMk @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Spelling, thesaurus, hyphenation and grammar checking tools for Brazilian Portuguese" -msgstr "" +msgstr "Coretor ortogràfego e gramàtega, règołe de siłabasion e disionaro de i sinònemi de'l Portogheze braziłian" diff -Nru libreoffice-7.4.6/translations/source/zh-CN/dbaccess/messages.po libreoffice-7.4.7/translations/source/zh-CN/dbaccess/messages.po --- libreoffice-7.4.6/translations/source/zh-CN/dbaccess/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/zh-CN/dbaccess/messages.po 2023-05-03 15:22:13.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-12-14 12:12+0100\n" -"PO-Revision-Date: 2022-10-24 11:13+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2023-03-03 12:20+0000\n" +"Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1562192836.000000\n" #. BiN6g @@ -4816,7 +4816,7 @@ #: dbaccess/uiconfig/ui/specialsettingspage.ui:222 msgctxt "specialsettingspage|extended_tip|eol" msgid "Select to use the CR + LF code pair to end every text line (preferred for DOS and Windows operating systems)." -msgstr "" +msgstr "选择此项会在文本行末尾加上「CR + LF」(0D0A) 编码对(DOS 和 Windows 操作系统应该选择此项)" #. XFM7x #: dbaccess/uiconfig/ui/specialsettingspage.ui:233 diff -Nru libreoffice-7.4.6/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.4.7/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.4.6/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-06-09 11:50+0200\n" -"PO-Revision-Date: 2022-08-07 18:13+0000\n" +"PO-Revision-Date: 2023-04-13 17:32+0000\n" "Last-Translator: Ming Hua \n" -"Language-Team: Chinese (Simplified) \n" +"Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.12.2\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1564943151.000000\n" #. W5ukN @@ -26786,7 +26786,7 @@ "TooltipLabel\n" "value.text" msgid "Add descriptions of non-text content (for accessibility)" -msgstr "" +msgstr "为非文本内容添加描述(用于无障碍辅助)" #. YwMhY #: GenericCommands.xcu diff -Nru libreoffice-7.4.6/translations/source/zh-CN/scp2/source/base.po libreoffice-7.4.7/translations/source/zh-CN/scp2/source/base.po --- libreoffice-7.4.6/translations/source/zh-CN/scp2/source/base.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/zh-CN/scp2/source/base.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2015-03-11 08:57+0000\n" -"Last-Translator: ACTom \n" -"Language-Team: LANGUAGE \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" +"Last-Translator: Ming Hua \n" +"Language-Team: Chinese (Simplified) \n" +"Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1426064274.000000\n" #. cbtbu @@ -23,7 +23,7 @@ "STR_FI_TOOLTIP_BASE\n" "LngText.text" msgid "Manage databases, create queries and reports to track and manage your information by using Base." -msgstr "使用 Base 管理数据库并创建查询和报表以对信息进行跟踪和管理。" +msgstr "使用 Base 管理数据库,创建查询和报表以对信息进行跟踪和管理。" #. nSMds #: module_base.ulf diff -Nru libreoffice-7.4.6/translations/source/zh-CN/scp2/source/calc.po libreoffice-7.4.7/translations/source/zh-CN/scp2/source/calc.po --- libreoffice-7.4.6/translations/source/zh-CN/scp2/source/calc.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/zh-CN/scp2/source/calc.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-29 18:56+0000\n" -"Last-Translator: Voina i Mir \n" -"Language-Team: LANGUAGE \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" +"Last-Translator: Ming Hua \n" +"Language-Team: Chinese (Simplified) \n" +"Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1540839369.000000\n" #. rTGYE @@ -32,7 +32,7 @@ "STR_FI_TOOLTIP_CALC\n" "LngText.text" msgid "Perform calculations, analyze information and manage lists in spreadsheets by using Calc." -msgstr "使用 Calc 进行计算,并在电子表格中进行数据分析。" +msgstr "使用 Calc 在电子表格中进行计算、分析信息以及管理列表。" #. 2sEBu #: module_calc.ulf @@ -50,7 +50,7 @@ "STR_DESC_MODULE_PRG_CALC\n" "LngText.text" msgid "Perform calculations, analyze information and manage lists in spreadsheets by using %PRODUCTNAME Calc." -msgstr "使用 %PRODUCTNAME Calc 进行计算,并在电子表格中进行数据分析。" +msgstr "使用 %PRODUCTNAME Calc 在电子表格中进行计算、分析信息以及管理列表。" #. LAxSN #: module_calc.ulf diff -Nru libreoffice-7.4.6/translations/source/zh-CN/scp2/source/draw.po libreoffice-7.4.7/translations/source/zh-CN/scp2/source/draw.po --- libreoffice-7.4.6/translations/source/zh-CN/scp2/source/draw.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/zh-CN/scp2/source/draw.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2015-03-11 08:57+0000\n" -"Last-Translator: ACTom \n" -"Language-Team: LANGUAGE \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" +"Last-Translator: Ming Hua \n" +"Language-Team: Chinese (Simplified) \n" +"Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1426064246.000000\n" #. txsAG @@ -32,7 +32,7 @@ "STR_FI_TOOLTIP_DRAW\n" "LngText.text" msgid "Create and edit drawings, flow charts, and logos by using Draw." -msgstr "使用 Draw 创建并编辑图形、流程图和徽标。" +msgstr "使用 Draw 创建和编辑图形、流程图以及徽标。" #. w5oJE #: module_draw.ulf @@ -50,7 +50,7 @@ "STR_DESC_MODULE_PRG_DRAW\n" "LngText.text" msgid "Create and edit drawings, flow charts, and logos by using %PRODUCTNAME Draw." -msgstr "使用 %PRODUCTNAME Draw 创建并编辑图形、流程图和徽标。" +msgstr "使用 %PRODUCTNAME Draw 创建和编辑图形、流程图以及徽标。" #. 6iuU9 #: module_draw.ulf diff -Nru libreoffice-7.4.6/translations/source/zh-CN/scp2/source/impress.po libreoffice-7.4.7/translations/source/zh-CN/scp2/source/impress.po --- libreoffice-7.4.6/translations/source/zh-CN/scp2/source/impress.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/zh-CN/scp2/source/impress.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2015-04-25 20:17+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" +"Last-Translator: Ming Hua \n" +"Language-Team: Chinese (Simplified) \n" +"Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1429993076.000000\n" #. USjxN @@ -32,7 +32,7 @@ "STR_FI_TOOLTIP_IMPRESS\n" "LngText.text" msgid "Create and edit presentations for slideshows, meeting and Web pages by using Impress." -msgstr "使用 Impress 创建并编辑幻灯片、会议和网页中使用的演示文稿。" +msgstr "使用 Impress 创建和编辑幻灯片展示、会议以及网页使用的演示文稿。" #. 4XJxj #: module_impress.ulf @@ -50,7 +50,7 @@ "STR_DESC_MODULE_PRG_IMPRESS\n" "LngText.text" msgid "Create and edit presentations for slideshows, meeting and Web pages by using %PRODUCTNAME Impress." -msgstr "使用 %PRODUCTNAME Impress 创建并编辑幻灯片、会议和网页中使用的演示文稿。" +msgstr "使用 %PRODUCTNAME Impress 创建和编辑幻灯片展示、会议以及网页使用的演示文稿。" #. 33n88 #: module_impress.ulf diff -Nru libreoffice-7.4.6/translations/source/zh-CN/scp2/source/math.po libreoffice-7.4.7/translations/source/zh-CN/scp2/source/math.po --- libreoffice-7.4.6/translations/source/zh-CN/scp2/source/math.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/zh-CN/scp2/source/math.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2013-05-24 01:07+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" +"Last-Translator: Ming Hua \n" +"Language-Team: Chinese (Simplified) \n" +"Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1369357649.000000\n" #. hBjNe @@ -23,7 +23,7 @@ "STR_FI_TOOLTIP_MATH\n" "LngText.text" msgid "Create and edit scientific formulas and equations by using Math." -msgstr "使用 Math 创建并编辑科学公式和方程式。" +msgstr "使用 Math 创建和编辑科学公式及方程。" #. GhCeF #: module_math.ulf @@ -41,7 +41,7 @@ "STR_DESC_MODULE_PRG_MATH\n" "LngText.text" msgid "Create and edit scientific formulas and equations by using %PRODUCTNAME Math." -msgstr "使用 %PRODUCTNAME Math 创建和编辑科学公式与方程式。" +msgstr "使用 %PRODUCTNAME Math 创建和编辑科学公式及方程。" #. BUC7Z #: module_math.ulf diff -Nru libreoffice-7.4.6/translations/source/zh-CN/scp2/source/writer.po libreoffice-7.4.7/translations/source/zh-CN/scp2/source/writer.po --- libreoffice-7.4.6/translations/source/zh-CN/scp2/source/writer.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/zh-CN/scp2/source/writer.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2019-03-04 19:42+0000\n" -"Last-Translator: Dian LI \n" -"Language-Team: LANGUAGE \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2023-04-11 03:33+0000\n" +"Last-Translator: Ming Hua \n" +"Language-Team: Chinese (Simplified) \n" +"Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1551728574.000000\n" #. V3iDr @@ -41,7 +41,7 @@ "STR_FI_TOOLTIP_WRITER\n" "LngText.text" msgid "Create and edit text and images in letters, reports, documents and Web pages by using Writer." -msgstr "使用Writer建立和编辑信函、报表、文档以及网页中的文本和图像。" +msgstr "使用 Writer 创建和编辑信函、报表、文档以及网页中的文本和图像。" #. 3iX4u #: module_writer.ulf diff -Nru libreoffice-7.4.6/translations/source/zh-TW/extensions/messages.po libreoffice-7.4.7/translations/source/zh-TW/extensions/messages.po --- libreoffice-7.4.6/translations/source/zh-TW/extensions/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/zh-TW/extensions/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-05-25 12:36+0200\n" -"PO-Revision-Date: 2023-03-01 08:48+0000\n" +"PO-Revision-Date: 2023-03-03 12:20+0000\n" "Last-Translator: Po-Yen Huang \n" "Language-Team: Chinese (Traditional) \n" "Language: zh-TW\n" @@ -2277,7 +2277,7 @@ #: extensions/inc/strings.hrc:275 msgctxt "RID_STR_PROPTITLE_COMBOBOX" msgid "Combo Box" -msgstr "群組方塊" +msgstr "複合方塊" #. 5474w #: extensions/inc/strings.hrc:276 diff -Nru libreoffice-7.4.6/translations/source/zh-TW/sc/messages.po libreoffice-7.4.7/translations/source/zh-TW/sc/messages.po --- libreoffice-7.4.6/translations/source/zh-TW/sc/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/zh-TW/sc/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-07-08 10:43+0000\n" +"PO-Revision-Date: 2023-04-28 06:34+0000\n" "Last-Translator: Po-Yen Huang \n" -"Language-Team: Chinese (Traditional) \n" +"Language-Team: Chinese (Traditional) \n" "Language: zh-TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1557418135.000000\n" #. kBovX @@ -21339,7 +21339,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:297 msgctxt "datafieldoptionsdialog|extended_tip|layout" msgid "Select the layout mode for the field in the list box." -msgstr "在清單方塊中為欄位選取佈局模式。" +msgstr "在清單方塊中為欄位選取版面配置模式。" #. qSCvn #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:312 diff -Nru libreoffice-7.4.6/translations/source/zh-TW/svx/messages.po libreoffice-7.4.7/translations/source/zh-TW/svx/messages.po --- libreoffice-7.4.6/translations/source/zh-TW/svx/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/zh-TW/svx/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2023-03-02 16:55+0100\n" -"PO-Revision-Date: 2022-07-12 03:34+0000\n" +"PO-Revision-Date: 2023-03-03 12:20+0000\n" "Last-Translator: Po-Yen Huang \n" -"Language-Team: Chinese (Traditional) \n" +"Language-Team: Chinese (Traditional) \n" "Language: zh-TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1554781385.000000\n" #. 3GkZj @@ -6790,7 +6790,7 @@ #: include/svx/strings.hrc:1222 msgctxt "RID_STR_PROPTITLE_COMBOBOX" msgid "Combo Box" -msgstr "群組方塊" +msgstr "複合方塊" #. WiNUf #: include/svx/strings.hrc:1223 diff -Nru libreoffice-7.4.6/translations/source/zh-TW/sw/messages.po libreoffice-7.4.7/translations/source/zh-TW/sw/messages.po --- libreoffice-7.4.6/translations/source/zh-TW/sw/messages.po 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/translations/source/zh-TW/sw/messages.po 2023-05-03 15:22:13.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-12-14 12:13+0100\n" -"PO-Revision-Date: 2022-07-06 16:25+0000\n" -"Last-Translator: Po-Yen Huang \n" -"Language-Team: Chinese (Traditional) \n" +"PO-Revision-Date: 2023-03-08 23:34+0000\n" +"Last-Translator: Cheng-Chia Tseng \n" +"Language-Team: Chinese (Traditional) \n" "Language: zh-TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.15.2\n" "X-POOTLE-MTIME: 1557418140.000000\n" #. v3oJv @@ -6001,7 +6001,7 @@ #: sw/inc/strings.hrc:676 msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT" msgid "right-click to include sub levels" -msgstr "右鍵點擊以包含子層級" +msgstr "右鍵點按以包含子層級" #. oBH6y #: sw/inc/strings.hrc:677 @@ -9961,7 +9961,7 @@ #: sw/inc/strings.hrc:1432 msgctxt "STR_CONTENT_CONTROL_PLACEHOLDER" msgid "Click here to enter text" -msgstr "點擊此處以輸入文字" +msgstr "點按此處以輸入文字" #. N3ocz #: sw/inc/strings.hrc:1433 @@ -10557,7 +10557,7 @@ #: sw/uiconfig/swriter/ui/assignstylesdialog.ui:92 msgctxt "assignstylesdialog|AssignStylesDialog" msgid "Assign Styles" -msgstr "指派樣式" +msgstr "指定樣式" #. ADyBs #: sw/uiconfig/swriter/ui/assignstylesdialog.ui:197 @@ -11763,7 +11763,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:254 msgctxt "cardmediumpage|extended_tip|field" msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box." -msgstr "選取所需的資料庫欄位,然後點擊此框左側的箭頭將該欄位插入到標籤文字方塊中。" +msgstr "選取所需的資料庫欄位,然後點按此框左側的箭頭將該欄位插入到標籤文字方塊中。" #. VfLpb #: sw/uiconfig/swriter/ui/cardmediumpage.ui:280 @@ -11775,7 +11775,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:286 msgctxt "cardmediumpage|extended_tip|insert" msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box." -msgstr "選取所需的資料庫欄位,然後點擊此框左側的箭頭將該欄位插入到標籤文字方塊中。" +msgstr "選取所需的資料庫欄位,然後點按此框左側的箭頭將該欄位插入到標籤文字方塊中。" #. Y9YPN #: sw/uiconfig/swriter/ui/cardmediumpage.ui:301 @@ -11979,7 +11979,7 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:91 msgctxt "charurlpage|extended_tip|eventpb" msgid "Specify an event that triggers when you click the hyperlink." -msgstr "指定點擊超連結時觸發的事件。" +msgstr "指定點按超連結時觸發的事件。" #. MhJbE #: sw/uiconfig/swriter/ui/charurlpage.ui:109 @@ -12009,7 +12009,7 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:163 msgctxt "charurlpage|extended_tip|urlpb" msgid "Locate the file that you want to link to, and then click Open." -msgstr "找到要連結的檔案,然後點擊「開啟」。" +msgstr "找到要連結的檔案,然後點按「開啟」。" #. ha6rk #: sw/uiconfig/swriter/ui/charurlpage.ui:186 @@ -12039,13 +12039,13 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:278 msgctxt "charurlpage|extended_tip|visitedlb" msgid "Select a formatting style to use for visited links from the list. To add or modify a style in this list, close this dialog, and click the Styles icon on the Formatting toolbar." -msgstr "從列表中選取用於已造訪連結的格式樣式。要在此清單中新增或修改樣式,請關閉此對話方塊,然後點擊「格式」工具列上的「樣式」圖示。" +msgstr "從列表中選取用於已造訪連結的格式樣式。要在此清單中新增或修改樣式,請關閉此對話方塊,然後點按「格式」工具列上的「樣式」圖示。" #. w7Cdu #: sw/uiconfig/swriter/ui/charurlpage.ui:293 msgctxt "charurlpage|extended_tip|unvisitedlb" msgid "Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the Styles icon on the Formatting toolbar." -msgstr "從列表中選取用於未造訪連結的格式樣式。要在此清單中新增或修改樣式,請關閉此對話方塊,然後點擊「格式」工具列上的「樣式」圖示。" +msgstr "從列表中選取用於未造訪連結的格式樣式。要在此清單中新增或修改樣式,請關閉此對話方塊,然後點按「格式」工具列上的「樣式」圖示。" #. 43fvG #: sw/uiconfig/swriter/ui/charurlpage.ui:308 @@ -12375,7 +12375,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:148 msgctxt "conditionpage|extended_tip|apply" msgid "Click Apply to apply the selected Paragraph Style to the defined context." -msgstr "點擊「套用」以將選定的段落樣式到定義的上下文。" +msgstr "點按「套用」以將選定的段落樣式到定義的上下文。" #. xC6d7 #: sw/uiconfig/swriter/ui/conditionpage.ui:196 @@ -12789,7 +12789,7 @@ #: sw/uiconfig/swriter/ui/converttexttable.ui:299 msgctxt "converttexttable|extended_tip|repeatheading" msgid "Repeats the table header on each page that the table spans." -msgstr "在表格跨越的每一頁上重複標格標題。" +msgstr "在表格跨越的每一頁上重複表格標題。" #. URvME #: sw/uiconfig/swriter/ui/converttexttable.ui:310 @@ -13449,13 +13449,13 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:316 msgctxt "editsectiondialog|extended_tip|file" msgid "Locate the file that you want to insert as a link, and then click Insert." -msgstr "找到要作為連結插入的檔案,然後點擊「插入」。" +msgstr "找到要作為連結插入的檔案,然後點按「插入」。" #. KpDNG #: sw/uiconfig/swriter/ui/editsectiondialog.ui:334 msgctxt "editsectiondialog|extended_tip|filename" msgid "Enter the path and the filename for the file that you want to insert, or click the Browse button to locate the file." -msgstr "輸入要插入的檔案路徑與檔案名稱,或點擊「瀏覽」按鈕來尋找檔案。" +msgstr "輸入要插入的檔案路徑與檔案名稱,或點按「瀏覽」按鈕來尋找檔案。" #. Bc8Ga #: sw/uiconfig/swriter/ui/editsectiondialog.ui:347 @@ -17209,7 +17209,7 @@ #: sw/uiconfig/swriter/ui/insertbookmark.ui:355 msgctxt "insertbookmark|extended_tip|delete" msgid "To delete a bookmark, select the bookmark and click the Delete button. No confirmation dialog will follow." -msgstr "要刪除書籤,請選取書籤並點擊「刪除」按鈕。不會出現確認對話方塊。" +msgstr "要刪除書籤,請選取書籤並點按「刪除」按鈕。不會出現確認對話方塊。" #. hvWfd #: sw/uiconfig/swriter/ui/insertbookmark.ui:368 @@ -18079,7 +18079,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:528 msgctxt "inserttable|extended_tip|InsertTableDialog" msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell." -msgstr "在文件中插入表格。您也可以點擊箭頭,拖曳以選取要包含在表格中的列數與欄數,然後點擊最後一個儲存格。" +msgstr "在文件中插入表格。您也可以點按箭頭,拖曳以選取要包含在表格中的列數與欄數,然後點按最後一個儲存格。" #. b4mJy #: sw/uiconfig/swriter/ui/labeldialog.ui:8 @@ -18325,7 +18325,7 @@ #: sw/uiconfig/swriter/ui/labeloptionspage.ui:194 msgctxt "labeloptionspage|extended_tip|synchronize" msgid "Allows you to edit a single label or business card and updates the contents of the remaining labels or business cards on the page when you click the Synchronize Labels button." -msgstr "讓您可以編輯單個標籤或名片,並在點擊「同步標籤」按鈕時更新頁面上其餘標籤或名片的內容。" +msgstr "讓您可以編輯單個標籤或名片,並在點按「同步標籤」按鈕時更新頁面上其餘標籤或名片的內容。" #. 97jZe #: sw/uiconfig/swriter/ui/labeloptionspage.ui:210 @@ -19669,7 +19669,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:44 msgctxt "mmresultemaildialog|extended_tip|ok" msgid "Click to start sending emails." -msgstr "點擊以開始傳送電子郵件。" +msgstr "點按以開始傳送電子郵件。" #. cNmQk #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:119 @@ -20293,7 +20293,7 @@ #: sw/uiconfig/swriter/ui/mmselectpage.ui:156 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." -msgstr "定位您想要使用的 Writer 文件,接著點擊 開啟。" +msgstr "定位您想要使用的 Writer 文件,接著點按 開啟。" #. 3trwP #: sw/uiconfig/swriter/ui/mmselectpage.ui:167 @@ -20323,7 +20323,7 @@ #: sw/uiconfig/swriter/ui/mmselectpage.ui:208 msgctxt "mmselectpage|extended_tip|exchangedatabase" msgid "Click to exchange the databases of your mail merge." -msgstr "點擊以交換您郵件合併的資料庫。" +msgstr "點按以交換您郵件合併的資料庫。" #. 8ESAz #: sw/uiconfig/swriter/ui/mmselectpage.ui:223 @@ -20803,7 +20803,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:574 msgctxt "navigatorpanel|extended_tip|promote" msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon." -msgstr "將選定標題的大綱層級以及出現在該標題下方的標題增加一級。要僅增加選定標題的大綱層級,請按住 Ctrl,然後點擊此圖示。" +msgstr "將選定標題的大綱層級以及出現在該標題下方的標題增加一級。要僅增加選定標題的大綱層級,請按住 Ctrl,然後點按此圖示。" #. DoiCW #: sw/uiconfig/swriter/ui/navigatorpanel.ui:586 @@ -20815,7 +20815,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:590 msgctxt "navigatorpanel|extended_tip|demote" msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon." -msgstr "將選定標題的大綱層級以及出現在該標題下方的標題降低一級。要僅降低選定標題的大綱層級,請按住 Ctrl,然後點擊此圖示。" +msgstr "將選定標題的大綱層級以及出現在該標題下方的標題降低一級。要僅降低選定標題的大綱層級,請按住 Ctrl,然後點按此圖示。" #. Bbq3k #: sw/uiconfig/swriter/ui/navigatorpanel.ui:602 @@ -20827,7 +20827,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:606 msgctxt "navigatorpanel|extended_tip|chapterup" msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon." -msgstr "移動選定的標題與標題下的文字在助手與文件中向上移動一個標題位置。要僅移動選定的標題而不移動與其相關的文字,請按住 Ctrl,然後點擊此圖示。" +msgstr "移動選定的標題與標題下的文字在助手與文件中向上移動一個標題位置。要僅移動選定的標題而不移動與其相關的文字,請按住 Ctrl,然後點按此圖示。" #. fxY5W #: sw/uiconfig/swriter/ui/navigatorpanel.ui:618 @@ -20839,7 +20839,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:622 msgctxt "navigatorpanel|extended_tip|chapterdown" msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon." -msgstr "移動選定的標題與標題下的文字在助手與文件中向下移動一個標題位置。要僅移動選定的標題而不移動與其相關的文字,請按住 Ctrl,然後點擊此圖示。" +msgstr "移動選定的標題與標題下的文字在助手與文件中向下移動一個標題位置。要僅移動選定的標題而不移動與其相關的文字,請按住 Ctrl,然後點按此圖示。" #. mHVom #: sw/uiconfig/swriter/ui/navigatorpanel.ui:644 @@ -20851,7 +20851,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:648 msgctxt "navigatorpanel|extended_tip|dragmode" msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use." -msgstr "設定要將項目從助手插入到文件中的拖曳選項,例如作為超連結等。點擊此圖示,然後選擇要使用的選項。" +msgstr "設定要將項目從助手插入到文件中的拖曳選項,例如作為超連結等。點按此圖示,然後選擇要使用的選項。" #. 3rY8r #: sw/uiconfig/swriter/ui/navigatorpanel.ui:680 @@ -22884,7 +22884,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:258 msgctxt "extended_tip|default" msgid "Click to use the current settings on this tab page as the default for further sessions with Writer." -msgstr "點擊以使用此分頁上目前的設定作為 Writer 未來工作階段的預設值。" +msgstr "點按以使用此分頁上目前的設定作為 Writer 未來工作階段的預設值。" #. XAXU2 #: sw/uiconfig/swriter/ui/optcompatpage.ui:273 @@ -26208,13 +26208,13 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:252 msgctxt "sectionpage|extended_tip|selectfile" msgid "Locate the file that you want to insert as a link, and then click Insert." -msgstr "找到要作為連結插入的檔案,然後點擊「插入」。" +msgstr "找到要作為連結插入的檔案,然後點按「插入」。" #. ZFBBc #: sw/uiconfig/swriter/ui/sectionpage.ui:272 msgctxt "sectionpage|extended_tip|filename" msgid "Enter the path and the filename for the file that you want to insert, or click the Browse button to locate the file." -msgstr "輸入要插入的檔案路徑與檔案名稱,或點擊「瀏覽」按鈕來尋找檔案。" +msgstr "輸入要插入的檔案路徑與檔案名稱,或點按「瀏覽」按鈕來尋找檔案。" #. QCM5c #: sw/uiconfig/swriter/ui/sectionpage.ui:298 @@ -26424,7 +26424,7 @@ #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:340 msgctxt "selectaddressdialog|extended_tip|SelectAddressDialog" msgid "Select the address list that you want to use for mail merge, then click OK." -msgstr "選取要用於合併郵件的地址清單,然後點擊「確定」。" +msgstr "選取要用於合併郵件的地址清單,然後點按「確定」。" #. qEPZL #: sw/uiconfig/swriter/ui/selectautotextdialog.ui:16 @@ -27246,7 +27246,7 @@ #: sw/uiconfig/swriter/ui/stringinput.ui:96 msgctxt "stringinput|extended_tip|edit" msgid "Enter a name for the new AutoFormat, and then click OK." -msgstr "輸入新的自動格式名稱,然後點擊「確定」。" +msgstr "輸入新的自動格式名稱,然後點按「確定」。" #. oaeDs #: sw/uiconfig/swriter/ui/subjectdialog.ui:7 @@ -27306,7 +27306,7 @@ #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:146 msgctxt "tablecolumnpage|extended_tip|space" msgid "Displays the amount of space that is available for adjusting the width of the columns. To set the width of the table, click the Table tab." -msgstr "顯示可用於調整欄寬的空間。要設定表格的寬度,請點擊「表格」分頁。" +msgstr "顯示可用於調整欄寬的空間。要設定表格的寬度,請點按「表格」分頁。" #. GZ93v #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:191 @@ -28782,7 +28782,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:824 msgctxt "tocentriespage|extended_tip|mainstyle" msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry." -msgstr "指定字母索引中主條目的字元樣式。要將索引條目轉換為主條目,請點擊文件中的索引欄位前方,然後選擇「編輯」→「索引條目」。" +msgstr "指定字母索引中主條目的字元樣式。要將索引條目轉換為主條目,請點按文件中的索引欄位前方,然後選擇「編輯」→「索引條目」。" #. r33aA #: sw/uiconfig/swriter/ui/tocentriespage.ui:839 @@ -29178,7 +29178,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:506 msgctxt "tocindexpage|extended_tip|addstylescb" msgid "Includes the paragraph styles that you specify in the Assign Styles dialog as index entries. To select the paragraph styles that you want to include in the index, click the Assign Styles (...) button to the right of this box." -msgstr "包含您在「指派樣式」對話方塊中指定為索引條目的段落樣式。要選取欲包含在索引中的段落樣式,請點擊此方塊右側的指派樣式 (...) 按鈕。" +msgstr "包含您在「指派樣式」對話方塊中指定為索引條目的段落樣式。要選取欲包含在索引中的段落樣式,請點按此方塊右側的指派樣式 (...) 按鈕。" #. 46GwB #: sw/uiconfig/swriter/ui/tocindexpage.ui:518 diff -Nru libreoffice-7.4.6/ucb/source/ucp/webdav-curl/DAVTypes.cxx libreoffice-7.4.7/ucb/source/ucp/webdav-curl/DAVTypes.cxx --- libreoffice-7.4.6/ucb/source/ucp/webdav-curl/DAVTypes.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/ucb/source/ucp/webdav-curl/DAVTypes.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -164,6 +164,14 @@ { // already in cache, check LifeTime if ( (*it).second.getRequestedTimeLife() == nLifeTime ) return; // same lifetime, do nothing + + // tdf#153642 keep cached Class1 bit at aDAVOptionsException to avoid of + // losing the ability to resave the document within the lifetime because + // of disabled DAV detection in getResourceType() + if ((*it).second.isClass1()) + { + rDAVOptions.setClass1( (*it).second.isClass1() ); + } } // not in cache, add it TimeValue t1; diff -Nru libreoffice-7.4.6/vcl/inc/salvtables.hxx libreoffice-7.4.7/vcl/inc/salvtables.hxx --- libreoffice-7.4.6/vcl/inc/salvtables.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/vcl/inc/salvtables.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -1396,6 +1396,8 @@ DECL_LINK(CustomRenderHdl, svtree_render_args, void); DECL_LINK(CustomMeasureHdl, svtree_measure_args, Size); + bool ExpandRow(const SalInstanceTreeIter& rIter); + // Each row has a cell for the expander image, (and an optional cell for a // checkbutton if enable_toggle_buttons has been called) which precede // index 0 diff -Nru libreoffice-7.4.6/vcl/source/app/salvtables.cxx libreoffice-7.4.7/vcl/source/app/salvtables.cxx --- libreoffice-7.4.6/vcl/source/app/salvtables.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/vcl/source/app/salvtables.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -380,7 +380,7 @@ void SalInstanceWidget::set_margin_start(int nMargin) { m_xWidget->set_margin_start(nMargin); } -void SalInstanceWidget::set_margin_end(int nMargin) { m_xWidget->set_margin_bottom(nMargin); } +void SalInstanceWidget::set_margin_end(int nMargin) { m_xWidget->set_margin_end(nMargin); } int SalInstanceWidget::get_margin_top() const { return m_xWidget->get_margin_top(); } @@ -388,7 +388,7 @@ int SalInstanceWidget::get_margin_start() const { return m_xWidget->get_margin_start(); } -int SalInstanceWidget::get_margin_end() const { return m_xWidget->get_margin_bottom(); } +int SalInstanceWidget::get_margin_end() const { return m_xWidget->get_margin_end(); } void SalInstanceWidget::set_accessible_name(const OUString& rName) { @@ -4750,7 +4750,7 @@ { assert(m_xTreeView->IsUpdateMode() && "don't expand when frozen"); const SalInstanceTreeIter& rVclIter = static_cast(rIter); - if (!m_xTreeView->IsExpanded(rVclIter.iter) && signal_expanding(rIter)) + if (!m_xTreeView->IsExpanded(rVclIter.iter) && ExpandRow(rVclIter)) m_xTreeView->Expand(rVclIter.iter); } @@ -5278,7 +5278,12 @@ } // expanding + return ExpandRow(aIter); +} +bool SalInstanceTreeView::ExpandRow(const SalInstanceTreeIter& rIter) +{ + SvTreeListEntry* pEntry = rIter.iter; // if there's a preexisting placeholder child, required to make this // potentially expandable in the first place, now we remove it SvTreeListEntry* pPlaceHolder = GetPlaceHolderChild(pEntry); @@ -5288,7 +5293,7 @@ m_xTreeView->RemoveEntry(pPlaceHolder); } - bool bRet = signal_expanding(aIter); + bool bRet = signal_expanding(rIter); if (pPlaceHolder) { diff -Nru libreoffice-7.4.6/vcl/source/bitmap/BitmapFastScaleFilter.cxx libreoffice-7.4.7/vcl/source/bitmap/BitmapFastScaleFilter.cxx --- libreoffice-7.4.6/vcl/source/bitmap/BitmapFastScaleFilter.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/vcl/source/bitmap/BitmapFastScaleFilter.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -38,7 +38,7 @@ SAL_INFO("vcl.gdi", "New width: " << nNewWidth << "\nNew height: " << nNewHeight); - if (nNewWidth && nNewHeight) + if (nNewWidth > 0 && nNewHeight > 0) { Bitmap::ScopedReadAccess pReadAcc(aBitmap); diff -Nru libreoffice-7.4.6/vcl/source/control/field2.cxx libreoffice-7.4.7/vcl/source/control/field2.cxx --- libreoffice-7.4.6/vcl/source/control/field2.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/vcl/source/control/field2.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1618,7 +1618,7 @@ return !IsEnforceValidValue(); } -int DateFormatter::GetDateArea(ExtDateFieldFormat eFormat, std::u16string_view rText, int nCursor, const LocaleDataWrapper& rLocaleDataWrapper) +int DateFormatter::GetDateArea(ExtDateFieldFormat& eFormat, std::u16string_view rText, int nCursor, const LocaleDataWrapper& rLocaleDataWrapper) { sal_Int8 nDateArea = 0; diff -Nru libreoffice-7.4.6/vcl/source/control/tabctrl.cxx libreoffice-7.4.7/vcl/source/control/tabctrl.cxx --- libreoffice-7.4.6/vcl/source/control/tabctrl.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/vcl/source/control/tabctrl.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -2305,6 +2305,11 @@ if (!bHandled) bLastContextWasSupported = false; eLastContext = eContext; + + // tdf#152908 Tabbed compact toolbar does not repaint itself when tabs getting removed + // For unknown reason this is needed by the tabbed compact toolbar for other than gtk + // vcl backends. + Resize(); } void NotebookbarTabControlBase::dispose() diff -Nru libreoffice-7.4.6/vcl/source/treelist/svimpbox.cxx libreoffice-7.4.7/vcl/source/treelist/svimpbox.cxx --- libreoffice-7.4.6/vcl/source/treelist/svimpbox.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/vcl/source/treelist/svimpbox.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -402,10 +402,10 @@ m_pView->PaintImmediately(); m_pView->Scroll( 0, nScroll, aArea, ScrollFlags::NoChildren ); m_pView->PaintImmediately(); - m_pView->NotifyScrolled(); } ShowCursor( true ); + m_pView->NotifyScrolled(); } void SvImpLBox::PageUp( sal_uInt16 nDelta ) @@ -437,10 +437,10 @@ m_pView->PaintImmediately(); m_pView->Scroll( 0, nEntryHeight*nRealDelta, aArea, ScrollFlags::NoChildren ); m_pView->PaintImmediately(); - m_pView->NotifyScrolled(); } ShowCursor( true ); + m_pView->NotifyScrolled(); } void SvImpLBox::KeyUp( bool bPageUp ) @@ -946,6 +946,7 @@ FillView(); m_aVerSBar->SetThumbPos( static_cast(m_pView->GetVisiblePos( m_pStartEntry )) ); ShowCursor( true ); + m_pView->NotifyScrolled(); m_pView->Invalidate(); } diff -Nru libreoffice-7.4.6/vcl/unx/gtk3/gtkinst.cxx libreoffice-7.4.7/vcl/unx/gtk3/gtkinst.cxx --- libreoffice-7.4.6/vcl/unx/gtk3/gtkinst.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/vcl/unx/gtk3/gtkinst.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -2479,8 +2479,9 @@ void LocalizeDecimalSeparator(guint& keyval) { - // #i1820# use locale specific decimal separator - if (keyval == GDK_KEY_KP_Decimal && Application::GetSettings().GetMiscSettings().GetEnableLocalizedDecimalSep()) + const bool bDecimalKey = keyval == GDK_KEY_KP_Decimal || keyval == GDK_KEY_KP_Separator; + // #i1820# (and tdf#154623) use locale specific decimal separator + if (bDecimalKey && Application::GetSettings().GetMiscSettings().GetEnableLocalizedDecimalSep()) { GtkWindow* pFocusWin = get_active_window(); GtkWidget* pFocus = pFocusWin ? gtk_window_get_focus(pFocusWin) : nullptr; @@ -3120,12 +3121,12 @@ bool signal_motion(const GdkEventMotion* pEvent) { - GtkTargetList* pDragData = (m_eDragAction != 0 && m_nPressedButton != -1 && m_xDragSource.is()) ? gtk_drag_source_get_target_list(m_pWidget) : nullptr; + const bool bDragData = m_eDragAction != 0 && m_nPressedButton != -1 && m_xDragSource.is() && gtk_drag_source_get_target_list(m_pWidget); bool bUnsetDragIcon(false); - if (pDragData && gtk_drag_check_threshold(m_pWidget, m_nPressStartX, m_nPressStartY, pEvent->x, pEvent->y) && !do_signal_drag_begin(bUnsetDragIcon)) + if (bDragData && gtk_drag_check_threshold(m_pWidget, m_nPressStartX, m_nPressStartY, pEvent->x, pEvent->y) && !do_signal_drag_begin(bUnsetDragIcon)) { GdkDragContext* pContext = gtk_drag_begin_with_coordinates(m_pWidget, - pDragData, + gtk_drag_source_get_target_list(m_pWidget), m_eDragAction, m_nPressedButton, const_cast(reinterpret_cast(pEvent)), diff -Nru libreoffice-7.4.6/winaccessibility/source/UAccCOM/MAccessible.cxx libreoffice-7.4.7/winaccessibility/source/UAccCOM/MAccessible.cxx --- libreoffice-7.4.6/winaccessibility/source/UAccCOM/MAccessible.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/winaccessibility/source/UAccCOM/MAccessible.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -854,6 +854,7 @@ return S_FALSE; pvarChildren->vt = VT_DISPATCH; pvarChildren->pdispVal = varTmp[0].pdispVal; + pvarChildren->pdispVal->AddRef(); VariantClear(&varTmp[0]); m_pEnumVar->Reset(); break; diff -Nru libreoffice-7.4.6/writerfilter/source/dmapper/DomainMapper_Impl.cxx libreoffice-7.4.7/writerfilter/source/dmapper/DomainMapper_Impl.cxx --- libreoffice-7.4.6/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -3632,15 +3632,23 @@ static void lcl_convertToNoteIndices(std::deque& rNoteIds, sal_Int32& rFirstNoteIndex) { - // convert arbitrary footnote identifiers to 0, 1, 2... - // indices, keeping their possible random order + // rNoteIds contains XML footnote identifiers in the loaded order of the footnotes + // (the same order as in footnotes.xml), i.e. it maps temporary footnote positions to the + // identifiers. For example: Ids[0] = 100; Ids[1] = -1, Ids[2] = 5. + // To copy the footnotes in their final place, create an array, which map the (normalized) + // footnote identifiers to the temporary footnote positions. Using the previous example, + // Pos[0] = 1; Pos[1] = 2; Pos[2] = 0 (where [0], [1], [2] are the normalized + // -1, 5 and 100 identifiers). std::deque aSortedIds = rNoteIds; std::sort(aSortedIds.begin(), aSortedIds.end()); std::map aMapIds; + // normalize footnote identifiers to 0, 1, 2 ... for (size_t i = 0; i < aSortedIds.size(); ++i) aMapIds[aSortedIds[i]] = i; + // reusing rNoteIds, create the Pos array to map normalized identifiers to the loaded positions + std::deque aOrigNoteIds = rNoteIds; for (size_t i = 0; i < rNoteIds.size(); ++i) - rNoteIds[i] = aMapIds[rNoteIds[i]]; + rNoteIds[aMapIds[aOrigNoteIds[i]]] = i; rFirstNoteIndex = rNoteIds.front(); rNoteIds.pop_front(); } @@ -4898,6 +4906,15 @@ if (m_bIsInTextBox) return; + // tdf#154481: check for TOC creation with empty field stack, + // and close TOC, unless pages will lost. FIXME. + if (IsInTOC() && m_aFieldStack.size() == 0) + { + m_bStartTOC = false; + SAL_WARN("writerfilter.dmapper", + "broken TOC creation in textbox, but field stack is empty, so closing TOC!"); + } + try { uno::Reference xTBoxFrame( diff -Nru libreoffice-7.4.6/writerfilter/source/dmapper/DomainMapperTableHandler.cxx libreoffice-7.4.7/writerfilter/source/dmapper/DomainMapperTableHandler.cxx --- libreoffice-7.4.6/writerfilter/source/dmapper/DomainMapperTableHandler.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/writerfilter/source/dmapper/DomainMapperTableHandler.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -1429,7 +1429,9 @@ if (bApply) { bool bEndOfApply = (xTextRangeCompare->compareRegionEnds(rEndPara, aIt->m_rEndParagraph) == 0); - ApplyParagraphPropertiesFromTableStyle(*aIt, aAllTableParaProperties, aCellProperties[nRow][nCell]); + // tdf#153891 handle missing cell properties (exception in style handling?) + if ( nCell < sal::static_int_cast(aCellProperties[nRow].getLength()) ) + ApplyParagraphPropertiesFromTableStyle(*aIt, aAllTableParaProperties, aCellProperties[nRow][nCell]); // erase processed paragraph from list of pending paragraphs aIt = pTableParagraphs->erase(aIt); if (bEndOfApply) diff -Nru libreoffice-7.4.6/xmloff/source/draw/shapeexport.cxx libreoffice-7.4.7/xmloff/source/draw/shapeexport.cxx --- libreoffice-7.4.6/xmloff/source/draw/shapeexport.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/xmloff/source/draw/shapeexport.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -3009,6 +3009,51 @@ mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED ); mrExport.AddAttribute( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD ); } + else + { + // tdf#153179 Export the preview graphic of the object if the object is missing. + uno::Reference xGraphic; + xPropSet->getPropertyValue("Graphic") >>= xGraphic; + + if (xGraphic.is()) + { + OUString aMimeType; + const OUString aHref = mrExport.AddEmbeddedXGraphic(xGraphic, aMimeType); + + if (aMimeType.isEmpty()) + mrExport.GetGraphicMimeTypeFromStream(xGraphic, aMimeType); + + if (!aHref.isEmpty()) + { + mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_HREF, aHref); + mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_TYPE, XML_SIMPLE); + mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED); + mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD); + } + + if (!aMimeType.isEmpty() + && GetExport().getSaneDefaultVersion() > SvtSaveOptions::ODFSVER_012) + { // ODF 1.3 OFFICE-3943 + mrExport.AddAttribute(SvtSaveOptions::ODFSVER_013 + <= GetExport().getSaneDefaultVersion() + ? XML_NAMESPACE_DRAW + : XML_NAMESPACE_LO_EXT, + "mime-type", aMimeType); + } + + SvXMLElementExport aImageElem(mrExport, XML_NAMESPACE_DRAW, XML_IMAGE, true, + true); + + // optional office:binary-data + mrExport.AddEmbeddedXGraphicAsBase64(xGraphic); + + ImpExportEvents(xShape); + ImpExportGluePoints(xShape); + ImpExportDescription(xShape); + + return; + } + } } } @@ -3190,6 +3235,7 @@ SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, XML_FLOATING_FRAME, true, true); } + ImpExportDescription(xShape); } void XMLShapeExport::ImpExportAppletShape( @@ -3245,6 +3291,7 @@ } } + ImpExportDescription(xShape); } void XMLShapeExport::ImpExportPluginShape( @@ -3291,6 +3338,7 @@ } } + ImpExportDescription(xShape); } static void lcl_CopyStream( @@ -3499,6 +3547,8 @@ mrExport.AddAttribute(XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD); SvXMLElementExport aImageElem(GetExport(), XML_NAMESPACE_DRAW, XML_IMAGE, false, true); } + + ImpExportDescription(xShape); } void XMLShapeExport::ImpExport3DSceneShape( const uno::Reference< drawing::XShape >& xShape, XMLShapeExportFlags nFeatures, awt::Point* pRefPoint) diff -Nru libreoffice-7.4.6/xmloff/source/draw/ximpshap.cxx libreoffice-7.4.7/xmloff/source/draw/ximpshap.cxx --- libreoffice-7.4.6/xmloff/source/draw/ximpshap.cxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/xmloff/source/draw/ximpshap.cxx 2023-05-03 15:22:13.000000000 +0000 @@ -3127,10 +3127,36 @@ { } +uno::Reference SdXMLFloatingFrameShapeContext::CreateFloatingFrameShape() const +{ + uno::Reference xServiceFact(GetImport().GetModel(), uno::UNO_QUERY); + if (!xServiceFact.is()) + return nullptr; + uno::Reference xShape( + xServiceFact->createInstance("com.sun.star.drawing.FrameShape"), uno::UNO_QUERY); + return xShape; +} + void SdXMLFloatingFrameShapeContext::startFastElement (sal_Int32 /*nElement*/, const css::uno::Reference< css::xml::sax::XFastAttributeList >& /*xAttrList*/) { - AddShape("com.sun.star.drawing.FrameShape"); + uno::Reference xShape(SdXMLFloatingFrameShapeContext::CreateFloatingFrameShape()); + + uno::Reference< beans::XPropertySet > xProps(xShape, uno::UNO_QUERY); + // set FrameURL before AddShape, we have to do it again later because it + // gets cleared when the SdrOle2Obj is attached to the XShape. But we want + // FrameURL to exist when AddShape triggers SetPersistName which itself + // triggers SdrOle2Obj::CheckFileLink_Impl and at that point we want to + // know what URL will end up being used. So bodge this by setting FrameURL + // to the temp pre-SdrOle2Obj attached properties and we can smuggle it + // eventually into SdrOle2Obj::SetPersistName at the right point after + // PersistName is set but before SdrOle2Obj::CheckFileLink_Impl is called + // in order to inform the link manager that this is an IFrame that links to + // a URL + if (xProps && !maHref.isEmpty()) + xProps->setPropertyValue("FrameURL", Any(maHref)); + + AddShape(xShape); if( !mxShape.is() ) return; @@ -3140,7 +3166,6 @@ // set pos, size, shear and rotate SetTransformation(); - uno::Reference< beans::XPropertySet > xProps( mxShape, uno::UNO_QUERY ); if( xProps.is() ) { if( !maFrameName.isEmpty() ) diff -Nru libreoffice-7.4.6/xmloff/source/draw/ximpshap.hxx libreoffice-7.4.7/xmloff/source/draw/ximpshap.hxx --- libreoffice-7.4.6/xmloff/source/draw/ximpshap.hxx 2023-03-03 16:57:53.000000000 +0000 +++ libreoffice-7.4.7/xmloff/source/draw/ximpshap.hxx 2023-05-03 15:22:13.000000000 +0000 @@ -528,6 +528,8 @@ OUString maFrameName; OUString maHref; + css::uno::Reference CreateFloatingFrameShape() const; + public: SdXMLFloatingFrameShapeContext( SvXMLImport& rImport, Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/ar/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/ar/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/ar/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/ar/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/32/view100.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/32/view100.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/ar/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/ar/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/ar/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/ar/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/ar/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/ar/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/ar/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/ar/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/ca/lc_underlinedouble.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/ca/lc_underlinedouble.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/ca/lc_underline.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/ca/lc_underline.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/lc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/lc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/lc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/lc_insertbookmark.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/lc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/lc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/lc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/lc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/lc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/lc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/lc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/lc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/sc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/sc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/sc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/sc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/sc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/sc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/sc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/sc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/sc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/sc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/cmd/sc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/cmd/sc_trackchangesbar.png differ diff -Nru libreoffice-7.4.6/yaru/build/bark/png/links.txt libreoffice-7.4.7/yaru/build/bark/png/links.txt --- libreoffice-7.4.6/yaru/build/bark/png/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/png/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.png cmd/lc_recsearch.png res/library_16.png cmd/lc_viewdatasourcebrowser.png res/lx03126.png cmd/32/dbviewtables.png -res/lx03127.png res/ots_32_8.png +res/lx03127.png res/ots_32.png res/lx03130.png res/lx03123.png res/lx03137.png res/lx03125.png res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/odf_32_8.png +res/lx03144.png res/odf_32.png +res/lx03145.png res/odf_32.png res/lx03152.png res/lx03125.png res/lx03153.png res/lx03125.png res/lx03154.png res/lx03125.png res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png +res/lx03156.png res/odt_32.png res/lx03158.png res/lx03125.png res/lx03160.png res/lx03125.png -res/lx03162.png res/odt_32_8.png -res/lx03163.png res/odt_32_8.png +res/lx03162.png res/odt_32.png +res/lx03163.png res/odt_32.png res/lx03165.png cmd/lc_save.png res/lx03167.png cmd/lc_openremote.png res/lx03188.png cmd/32/dbviewtables.png res/lx03189.png cmd/lc_open.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png +res/lx03217.png res/odg_32.png +res/lx03218.png res/odg_32.png res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/odg_32_8.png +res/lx03220.png res/odg_32.png +res/lx03221.png res/odg_32.png +res/lx03222.png res/odg_32.png +res/lx03227.png res/odg_32.png +res/lx03228.png res/odg_32.png res/lx03256.png cmd/lc_insertplugin.png -res/mainapp.png res/newdoc.png -res/mainapp_16.png cmd/sc_showsinglepage.png -res/mainapp_16_8.png cmd/sc_showsinglepage.png -res/mainapp_32.png res/newdoc.png +res/mainapp_16_8.png res/mainapp_16.png +res/mainapp_32_8.png res/mainapp_32.png +res/mainapp_48_8.png res/mainapp_48.png res/notebookbar.png sfx2/res/symphony/open_more.png +res/odb_16_8.png res/odb_16.png +res/odb_32_8.png res/odb_32.png +res/odb_48_8.png res/odb_48.png +res/odf_16_8.png res/odf_16.png +res/odf_32_8.png res/odf_32.png +res/odf_48_8.png res/odf_48.png +res/odg_16_8.png res/odg_16.png +res/odg_32_8.png res/odg_32.png +res/odg_48_8.png res/odg_48.png +res/odm_16_8.png res/odm_16.png +res/odm_32_8.png res/odm_32.png +res/odm_48_8.png res/odm_48.png +res/odp_16_8.png res/odp_16.png +res/odp_32_8.png res/odp_32.png +res/odp_48_8.png res/odp_48.png +res/ods_16_8.png res/ods_16.png +res/ods_32_8.png res/ods_32.png +res/ods_48_8.png res/ods_48.png +res/odt_16_8.png res/odt_16.png +res/odt_32_8.png res/odt_32.png +res/odt_48_8.png res/odt_48.png +res/ots_16_8.png res/ots_16.png +res/ots_32_8.png res/ots_32.png +res/ots_48_8.png res/ots_48.png +res/ott_16_8.png res/ott_16.png +res/ott_32_8.png res/ott_32.png +res/ott_48_8.png res/ott_48.png res/plugin.png cmd/lc_insertplugin.png res/queries_32.png cmd/32/dbviewqueries.png res/reload.png cmd/sc_reload.png @@ -2044,36 +2070,38 @@ res/sc10868.png cmd/sc_grafgamma.png res/sc10869.png cmd/sc_graftransparence.png res/sc_helperdialog.png cmd/sc_helpindex.png +res/sx03123.png res/odp_16.png res/sx03126.png cmd/sc_dbviewtables.png -res/sx03127.png res/ots_16_8.png -res/sx03130.png res/sx03123.png +res/sx03127.png res/ots_16.png +res/sx03130.png res/odp_16.png res/sx03137.png res/sx03125.png res/sx03139.png cmd/sc_questionanswers.png res/sx03140.png res/sx03125.png -res/sx03145.png res/sx03144.png +res/sx03144.png res/odf_16.png +res/sx03145.png res/odf_16.png res/sx03152.png res/sx03125.png res/sx03153.png res/sx03125.png res/sx03154.png res/sx03125.png res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png +res/sx03156.png res/odt_16.png res/sx03158.png res/sx03125.png res/sx03160.png res/sx03125.png -res/sx03162.png res/odt_16_8.png -res/sx03163.png res/odt_16_8.png +res/sx03162.png res/odt_16.png +res/sx03163.png res/odt_16.png res/sx03164.png cmd/sc_open.png res/sx03165.png cmd/sc_save.png res/sx03167.png cmd/sc_openremote.png res/sx03188.png cmd/sc_dbviewtables.png res/sx03189.png cmd/sc_open.png res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png +res/sx03217.png res/odg_16.png +res/sx03218.png res/odg_16.png res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/odg_16_8.png +res/sx03220.png res/odg_16.png +res/sx03221.png res/odg_16.png +res/sx03222.png res/odg_16.png +res/sx03227.png res/odg_16.png +res/sx03228.png res/odg_16.png res/sx03256.png cmd/sc_insertplugin.png res/sx10594.png cmd/sc_pushbutton.png res/sx10595.png cmd/sc_radiobutton.png @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.png cmd/sc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png +sfx2/res/symphony/sidebar-elements-large.png cmd/lc_insertmath.png sfx2/res/symphony/sidebar-functions-large.png cmd/lc_toggleformula.png sfx2/res/symphony/sidebar-functions-small.png cmd/sc_toggleformula.png sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png @@ -2271,6 +2300,8 @@ svx/res/color.png cmd/sc_bmpmask.png svx/res/colordlg.png cmd/sc_graphicfiltersmooth.png svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/doc_modified_no.png cmd/sc_save.png +svx/res/doc_modified_yes.png res/savemodified_small.png svx/res/dsth_cen.png cmd/sc_distributehorzcenter.png svx/res/dsth_dst.png cmd/sc_distributehorzdistance.png svx/res/dsth_hig.png cmd/sc_distributehorzright.png Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/base128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/base128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/base_thumbnail_256.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/base_thumbnail_256.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/calc128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/calc128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/draw128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/draw128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/impress128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/impress128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03126.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03126.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03129.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03129.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03162.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03162.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03245_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03245_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03246_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03246_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03247_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03247_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03248_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03248_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03249_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03249_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03250_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03250_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03251_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03251_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/lx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/lx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/main128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/main128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/mainapp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/mainapp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/mainapp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/mainapp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/mainapp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/mainapp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/mainapp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/mainapp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/math128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/math128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odb_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odb_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odb_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odb_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odb_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odb_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odb_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odb_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odb_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odb_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odb_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odb_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odf_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odf_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odf_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odf_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odf_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odf_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odf_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odf_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odf_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odf_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odf_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odf_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odg_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odg_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odg_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odg_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odg_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odg_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odg_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odg_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odg_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odg_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odg_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odg_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odm_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odm_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odm_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odm_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odm_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odm_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odm_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odm_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odm_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odm_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odm_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odm_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odp_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odp_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odp_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odp_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ods_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ods_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ods_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ods_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ods_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ods_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ods_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ods_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ods_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ods_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ods_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ods_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odt_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odt_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odt_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odt_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odt_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odt_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odt_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odt_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odt_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odt_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/odt_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/odt_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ots_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ots_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ots_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ots_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ots_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ots_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ots_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ots_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ots_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ots_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ots_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ots_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ott_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ott_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ott_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ott_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ott_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ott_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ott_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ott_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ott_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ott_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/ott_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/ott_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03144.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03144.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03150.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03150.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/sx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/sx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/tipoftheday_c.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/tipoftheday_c.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/tipoftheday_d.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/tipoftheday_d.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/tipoftheday_i.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/tipoftheday_i.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/tipoftheday.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/tipoftheday.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/tipoftheday_w.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/tipoftheday_w.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/res/writer128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/res/writer128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sfx2/res/128x128_math_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/svx/res/a11y_check_issues_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/svx/res/a11y_check_issues_not_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/svx/res/adding-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/svx/res/adding-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/svx/res/block-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/svx/res/block-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/svx/res/doc_modified_feedback.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/svx/res/doc_modified_feedback.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/svx/res/extending-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/svx/res/extending-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/svx/res/standard-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/svx/res/standard-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/doublepage_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/doublepage_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/doublepage_a_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/doublepage_a_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/doublepage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/doublepage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/doublepage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/doublepage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/emptypage_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/emptypage_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/emptypage_a_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/emptypage_a_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/emptypage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/emptypage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/emptypage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/emptypage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/sc20236.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/sc20236.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/twopages_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/twopages_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/twopages_a_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/twopages_a_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/twopages_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/twopages_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/sw/res/twopages.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/sw/res/twopages.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/bark/png/vcl/res/infobox.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/bark/png/vcl/res/infobox.png differ diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/conehoristack_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/conehoristack_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/conehoristack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/conehoristack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/donut3d_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/donut3d_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/donut3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/donut3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/net_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/net_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/net_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/net_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/netfill_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/netfill_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/netfill_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/netfill_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/netlinepoint_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/netlinepoint_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/netlinepoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/netlinepoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/netlinepointstack_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/netlinepointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/netlinepointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/netlinepointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/netpoint_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/netpoint_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/netpoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/netpoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/netpointstack_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/netpointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/netpointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/netpointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/netstack_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/netstack_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/netstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/netstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/nostackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/nostackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/nostackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/nostackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/nostackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/nostackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/nostackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/nostackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/nostacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/nostacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/nostacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/nostacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/nostacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/nostacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/nostacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/nostacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stackdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stackdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stackdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stacksmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stacksmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stacksmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stacksmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stackstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stackstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stackstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stackstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stacksteppedboth_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stacksteppedboth_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stacksteppedboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stacksteppedboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stacksteppedlines_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stacksteppedlines_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/stacksteppedlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/stacksteppedlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxisdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxisdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxisdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxisdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxisdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxisdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxisdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxisdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxisdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxissmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxissmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxissmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxissmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxissmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxissmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxissmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxisstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxisstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/bark/svg/chart2/res/valueaxisstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/ar/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/ar/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/ar/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/ar/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/ar/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/ar/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/ar/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/ar/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/comparedocuments.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/comparedocuments.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/editcurindex.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/editcurindex.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/footnotedialog.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/footnotedialog.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/insertendnote.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/insertendnote.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/insertfootnote.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/insertfootnote.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/insertindexesentry.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/insertreferencefield.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/saveacopy.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/saveacopy.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/trackchangesbar.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/view100.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/view100.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/32/view100.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/32/view100.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -1 \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/ar/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/ar/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/ar/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/ar/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/ar/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/ar/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/ar/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/ar/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/ar/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/ar/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/ar/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/ar/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/ar/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/ar/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/ar/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/ar/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/ca/lc_underlinedouble.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/ca/lc_underlinedouble.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/ca/lc_underlinedouble.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/ca/lc_underlinedouble.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/ca/lc_underline.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/ca/lc_underline.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/ca/lc_underline.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/ca/lc_underline.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_comparedocuments.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_editcurindex.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_footnotedialog.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_fullscreen.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_fullscreen.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_fullscreen.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_fullscreen.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_insertbookmark.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_insertbookmark.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_insertbookmark.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_insertbookmark.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_insertendnote.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_insertfootnote.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_saveacopy.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/lc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/lc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_comparedocuments.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_editcurindex.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_footnotedialog.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_graftransparence.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_graftransparence.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_graftransparence.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_graftransparence.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_insertendnote.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_insertfootnote.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_saveacopy.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/bark/svg/cmd/sc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/cmd/sc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/links.txt libreoffice-7.4.7/yaru/build/bark/svg/links.txt --- libreoffice-7.4.6/yaru/build/bark/svg/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.svg cmd/lc_recsearch.svg res/library_16.svg cmd/lc_viewdatasourcebrowser.svg res/lx03126.svg cmd/32/dbviewtables.svg -res/lx03127.svg res/ots_32_8.svg +res/lx03127.svg res/ots_32.svg res/lx03130.svg res/lx03123.svg res/lx03137.svg res/lx03125.svg res/lx03140.svg res/lx03125.svg -res/lx03144.svg res/odf_32_8.svg -res/lx03145.svg res/odf_32_8.svg +res/lx03144.svg res/odf_32.svg +res/lx03145.svg res/odf_32.svg res/lx03152.svg res/lx03125.svg res/lx03153.svg res/lx03125.svg res/lx03154.svg res/lx03125.svg res/lx03155.svg res/lx03125.svg -res/lx03156.svg res/odt_32_8.svg +res/lx03156.svg res/odt_32.svg res/lx03158.svg res/lx03125.svg res/lx03160.svg res/lx03125.svg -res/lx03162.svg res/odt_32_8.svg -res/lx03163.svg res/odt_32_8.svg +res/lx03162.svg res/odt_32.svg +res/lx03163.svg res/odt_32.svg res/lx03165.svg cmd/lc_save.svg res/lx03167.svg cmd/lc_openremote.svg res/lx03188.svg cmd/32/dbviewtables.svg res/lx03189.svg cmd/lc_open.svg -res/lx03217.svg res/odg_32_8.svg -res/lx03218.svg res/odg_32_8.svg +res/lx03217.svg res/odg_32.svg +res/lx03218.svg res/odg_32.svg res/lx03219.svg res/lx03125.svg -res/lx03220.svg res/odg_32_8.svg -res/lx03221.svg res/odg_32_8.svg -res/lx03222.svg res/odg_32_8.svg -res/lx03227.svg res/odg_32_8.svg -res/lx03228.svg res/odg_32_8.svg +res/lx03220.svg res/odg_32.svg +res/lx03221.svg res/odg_32.svg +res/lx03222.svg res/odg_32.svg +res/lx03227.svg res/odg_32.svg +res/lx03228.svg res/odg_32.svg res/lx03256.svg cmd/lc_insertplugin.svg -res/mainapp.svg res/newdoc.svg -res/mainapp_16.svg cmd/sc_showsinglepage.svg -res/mainapp_16_8.svg cmd/sc_showsinglepage.svg -res/mainapp_32.svg res/newdoc.svg +res/mainapp_16_8.svg res/mainapp_16.svg +res/mainapp_32_8.svg res/mainapp_32.svg +res/mainapp_48_8.svg res/mainapp_48.svg res/notebookbar.svg sfx2/res/symphony/open_more.svg +res/odb_16_8.svg res/odb_16.svg +res/odb_32_8.svg res/odb_32.svg +res/odb_48_8.svg res/odb_48.svg +res/odf_16_8.svg res/odf_16.svg +res/odf_32_8.svg res/odf_32.svg +res/odf_48_8.svg res/odf_48.svg +res/odg_16_8.svg res/odg_16.svg +res/odg_32_8.svg res/odg_32.svg +res/odg_48_8.svg res/odg_48.svg +res/odm_16_8.svg res/odm_16.svg +res/odm_32_8.svg res/odm_32.svg +res/odm_48_8.svg res/odm_48.svg +res/odp_16_8.svg res/odp_16.svg +res/odp_32_8.svg res/odp_32.svg +res/odp_48_8.svg res/odp_48.svg +res/ods_16_8.svg res/ods_16.svg +res/ods_32_8.svg res/ods_32.svg +res/ods_48_8.svg res/ods_48.svg +res/odt_16_8.svg res/odt_16.svg +res/odt_32_8.svg res/odt_32.svg +res/odt_48_8.svg res/odt_48.svg +res/ots_16_8.svg res/ots_16.svg +res/ots_32_8.svg res/ots_32.svg +res/ots_48_8.svg res/ots_48.svg +res/ott_16_8.svg res/ott_16.svg +res/ott_32_8.svg res/ott_32.svg +res/ott_48_8.svg res/ott_48.svg res/plugin.svg cmd/lc_insertplugin.svg res/queries_32.svg cmd/32/dbviewqueries.svg res/reload.svg cmd/sc_reload.svg @@ -2044,36 +2070,38 @@ res/sc10868.svg cmd/sc_grafgamma.svg res/sc10869.svg cmd/sc_graftransparence.svg res/sc_helperdialog.svg cmd/sc_helpindex.svg +res/sx03123.svg res/odp_16.svg res/sx03126.svg cmd/sc_dbviewtables.svg -res/sx03127.svg res/ots_16_8.svg -res/sx03130.svg res/sx03123.svg +res/sx03127.svg res/ots_16.svg +res/sx03130.svg res/odp_16.svg res/sx03137.svg res/sx03125.svg res/sx03139.svg cmd/sc_questionanswers.svg res/sx03140.svg res/sx03125.svg -res/sx03145.svg res/sx03144.svg +res/sx03144.svg res/odf_16.svg +res/sx03145.svg res/odf_16.svg res/sx03152.svg res/sx03125.svg res/sx03153.svg res/sx03125.svg res/sx03154.svg res/sx03125.svg res/sx03155.svg res/sx03125.svg -res/sx03156.svg res/odt_16_8.svg +res/sx03156.svg res/odt_16.svg res/sx03158.svg res/sx03125.svg res/sx03160.svg res/sx03125.svg -res/sx03162.svg res/odt_16_8.svg -res/sx03163.svg res/odt_16_8.svg +res/sx03162.svg res/odt_16.svg +res/sx03163.svg res/odt_16.svg res/sx03164.svg cmd/sc_open.svg res/sx03165.svg cmd/sc_save.svg res/sx03167.svg cmd/sc_openremote.svg res/sx03188.svg cmd/sc_dbviewtables.svg res/sx03189.svg cmd/sc_open.svg res/sx03202.svg cmd/sc_dbviewqueries.svg -res/sx03217.svg res/odg_16_8.svg -res/sx03218.svg res/odg_16_8.svg +res/sx03217.svg res/odg_16.svg +res/sx03218.svg res/odg_16.svg res/sx03219.svg res/sx03125.svg -res/sx03220.svg res/odg_16_8.svg -res/sx03221.svg res/odg_16_8.svg -res/sx03222.svg res/odg_16_8.svg -res/sx03227.svg res/odg_16_8.svg -res/sx03228.svg res/odg_16_8.svg +res/sx03220.svg res/odg_16.svg +res/sx03221.svg res/odg_16.svg +res/sx03222.svg res/odg_16.svg +res/sx03227.svg res/odg_16.svg +res/sx03228.svg res/odg_16.svg res/sx03256.svg cmd/sc_insertplugin.svg res/sx10594.svg cmd/sc_pushbutton.svg res/sx10595.svg cmd/sc_radiobutton.svg @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.svg cmd/sc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-large.svg cmd/lc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-small.svg cmd/sc_bmpmask.svg +sfx2/res/symphony/sidebar-elements-large.svg cmd/lc_insertmath.svg sfx2/res/symphony/sidebar-functions-large.svg cmd/lc_toggleformula.svg sfx2/res/symphony/sidebar-functions-small.svg cmd/sc_toggleformula.svg sfx2/res/symphony/sidebar-gallery-large.svg cmd/lc_gallery.svg @@ -2271,6 +2300,8 @@ svx/res/color.svg cmd/sc_bmpmask.svg svx/res/colordlg.svg cmd/sc_graphicfiltersmooth.svg svx/res/convrt3d.svg cmd/sc_convertinto3d.svg +svx/res/doc_modified_no.svg cmd/sc_save.svg +svx/res/doc_modified_yes.svg res/savemodified_small.svg svx/res/dsth_cen.svg cmd/sc_distributehorzcenter.svg svx/res/dsth_dst.svg cmd/sc_distributehorzdistance.svg svx/res/dsth_hig.svg cmd/sc_distributehorzright.svg diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/base128.svg libreoffice-7.4.7/yaru/build/bark/svg/res/base128.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/base128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/base128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/base_thumbnail_256.svg libreoffice-7.4.7/yaru/build/bark/svg/res/base_thumbnail_256.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/base_thumbnail_256.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/base_thumbnail_256.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/calc128.svg libreoffice-7.4.7/yaru/build/bark/svg/res/calc128.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/calc128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/calc128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/draw128.svg libreoffice-7.4.7/yaru/build/bark/svg/res/draw128.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/draw128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/draw128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/impress128.svg libreoffice-7.4.7/yaru/build/bark/svg/res/impress128.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/impress128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/impress128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03123.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03123.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03123.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03126.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03126.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03126.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03126.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03129.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03129.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03129.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03129.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03162.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03162.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03162.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03162.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03245_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03245_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03245_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03245_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03245.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03245.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03246_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03246_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03246_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03246_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03246.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03246.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03247_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03247_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03247_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03247_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03247.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03247.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03248_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03248_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03248_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03248_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03248.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03248.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03249_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03249_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03249_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03249_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03249.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03249.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03250_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03250_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03250_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03250_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03250.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03250.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03251_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03251_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03251_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03251_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03251.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03251.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03253.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03253.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03254.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03254.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/lx03255.svg libreoffice-7.4.7/yaru/build/bark/svg/res/lx03255.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/lx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/lx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/main128.svg libreoffice-7.4.7/yaru/build/bark/svg/res/main128.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/main128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/main128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/mainapp_16.svg libreoffice-7.4.7/yaru/build/bark/svg/res/mainapp_16.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/mainapp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/mainapp_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/mainapp_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/mainapp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/mainapp_48_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/mainapp_48_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/mainapp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/mainapp_48.svg libreoffice-7.4.7/yaru/build/bark/svg/res/mainapp_48.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/mainapp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/mainapp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/math128.svg libreoffice-7.4.7/yaru/build/bark/svg/res/math128.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/math128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/math128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odb_16_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odb_16_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odb_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odb_16.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odb_16.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odb_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odb_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odb_32_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odb_32_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odb_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odb_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odb_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odb_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odb_48_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odb_48_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odb_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odb_48.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odb_48.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odb_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odb_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odf_16_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odf_16_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odf_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odf_16.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odf_16.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odf_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odf_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odf_32_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odf_32_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odf_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odf_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odf_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odf_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odf_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odf_48_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odf_48_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odf_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odf_48.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odf_48.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odf_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odf_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odg_16_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odg_16_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odg_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odg_16.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odg_16.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odg_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odg_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odg_32_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odg_32_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odg_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odg_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odg_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odg_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odg_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odg_48_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odg_48_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odg_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odg_48.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odg_48.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odg_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odg_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odm_16_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odm_16_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odm_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odm_16.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odm_16.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odm_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odm_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odm_32_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odm_32_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odm_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odm_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odm_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odm_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odm_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odm_48_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odm_48_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odm_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odm_48.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odm_48.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odm_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odm_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odp_16_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odp_16_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odp_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odp_16.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odp_16.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odp_32_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odp_32_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odp_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odp_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odp_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odp_48_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odp_48_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odp_48.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odp_48.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ods_16_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ods_16_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ods_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ods_16.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ods_16.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ods_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ods_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ods_32_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ods_32_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ods_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ods_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ods_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ods_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ods_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ods_48_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ods_48_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ods_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ods_48.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ods_48.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ods_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ods_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odt_16_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odt_16_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odt_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odt_16.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odt_16.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odt_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odt_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odt_32_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odt_32_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odt_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odt_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odt_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odt_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odt_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odt_48_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odt_48_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odt_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/odt_48.svg libreoffice-7.4.7/yaru/build/bark/svg/res/odt_48.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/odt_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/odt_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ots_16_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ots_16_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ots_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ots_16.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ots_16.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ots_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ots_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ots_32_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ots_32_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ots_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ots_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ots_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ots_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ots_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ots_48_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ots_48_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ots_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ots_48.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ots_48.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ots_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ots_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ott_16_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ott_16_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ott_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ott_16.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ott_16.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ott_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ott_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ott_32_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ott_32_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ott_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ott_32.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ott_32.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ott_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ott_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ott_48_8.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ott_48_8.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ott_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/ott_48.svg libreoffice-7.4.7/yaru/build/bark/svg/res/ott_48.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/ott_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/ott_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03123.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03123.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03144.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03144.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03144.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03144.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03150.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03150.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03150.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03150.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03245.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03245.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03246.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03246.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03247.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03247.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03248.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03248.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03249.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03249.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03250.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03250.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03251.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03251.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03253.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03253.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03254.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03254.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/sx03255.svg libreoffice-7.4.7/yaru/build/bark/svg/res/sx03255.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/sx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/sx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/tipoftheday_c.svg libreoffice-7.4.7/yaru/build/bark/svg/res/tipoftheday_c.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/tipoftheday_c.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/tipoftheday_c.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/tipoftheday_d.svg libreoffice-7.4.7/yaru/build/bark/svg/res/tipoftheday_d.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/tipoftheday_d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/tipoftheday_d.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/tipoftheday_i.svg libreoffice-7.4.7/yaru/build/bark/svg/res/tipoftheday_i.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/tipoftheday_i.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/tipoftheday_i.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/tipoftheday.svg libreoffice-7.4.7/yaru/build/bark/svg/res/tipoftheday.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/tipoftheday.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/tipoftheday.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/tipoftheday_w.svg libreoffice-7.4.7/yaru/build/bark/svg/res/tipoftheday_w.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/tipoftheday_w.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/tipoftheday_w.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/res/writer128.svg libreoffice-7.4.7/yaru/build/bark/svg/res/writer128.svg --- libreoffice-7.4.6/yaru/build/bark/svg/res/writer128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/res/writer128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.4.7/yaru/build/bark/svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sfx2/res/128x128_calc_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.4.7/yaru/build/bark/svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sfx2/res/128x128_draw_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.4.7/yaru/build/bark/svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sfx2/res/128x128_impress_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.4.7/yaru/build/bark/svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sfx2/res/128x128_math_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sfx2/res/128x128_math_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.4.7/yaru/build/bark/svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sfx2/res/128x128_writer_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/svx/res/a11y_check_issues_found.svg libreoffice-7.4.7/yaru/build/bark/svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.4.6/yaru/build/bark/svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/svx/res/a11y_check_issues_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.4.7/yaru/build/bark/svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.4.6/yaru/build/bark/svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/svx/res/a11y_check_issues_not_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/svx/res/adding-selection.svg libreoffice-7.4.7/yaru/build/bark/svg/svx/res/adding-selection.svg --- libreoffice-7.4.6/yaru/build/bark/svg/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/svx/res/adding-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/svx/res/block-selection.svg libreoffice-7.4.7/yaru/build/bark/svg/svx/res/block-selection.svg --- libreoffice-7.4.6/yaru/build/bark/svg/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/svx/res/block-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/svx/res/doc_modified_feedback.svg libreoffice-7.4.7/yaru/build/bark/svg/svx/res/doc_modified_feedback.svg --- libreoffice-7.4.6/yaru/build/bark/svg/svx/res/doc_modified_feedback.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/svx/res/doc_modified_feedback.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/svx/res/extending-selection.svg libreoffice-7.4.7/yaru/build/bark/svg/svx/res/extending-selection.svg --- libreoffice-7.4.6/yaru/build/bark/svg/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/svx/res/extending-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/svx/res/standard-selection.svg libreoffice-7.4.7/yaru/build/bark/svg/svx/res/standard-selection.svg --- libreoffice-7.4.6/yaru/build/bark/svg/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/svx/res/standard-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/doublepage_10x22.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/doublepage_10x22.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/doublepage_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/doublepage_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/doublepage_a_10x22.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/doublepage_a_10x22.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/doublepage_a_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/doublepage_a_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/doublepage_a.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/doublepage_a.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/doublepage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/doublepage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/doublepage.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/doublepage.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/doublepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/doublepage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/emptypage_10x14.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/emptypage_10x14.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/emptypage_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/emptypage_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/emptypage_a_10x14.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/emptypage_a_10x14.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/emptypage_a_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/emptypage_a_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/emptypage_a.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/emptypage_a.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/emptypage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/emptypage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/emptypage.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/emptypage.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/emptypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/emptypage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/sc20236.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/sc20236.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/sc20236.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/sc20236.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/twopages_10x24.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/twopages_10x24.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/twopages_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/twopages_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/twopages_a_10x24.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/twopages_a_10x24.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/twopages_a_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/twopages_a_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/twopages_a.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/twopages_a.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/twopages_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/twopages_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/sw/res/twopages.svg libreoffice-7.4.7/yaru/build/bark/svg/sw/res/twopages.svg --- libreoffice-7.4.6/yaru/build/bark/svg/sw/res/twopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/sw/res/twopages.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/bark/svg/vcl/res/infobox.svg libreoffice-7.4.7/yaru/build/bark/svg/vcl/res/infobox.svg --- libreoffice-7.4.6/yaru/build/bark/svg/vcl/res/infobox.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/bark/svg/vcl/res/infobox.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -i \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/ar/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/ar/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/ar/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/ar/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/32/view100.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/32/view100.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/ar/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/ar/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/ar/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/ar/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/ar/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/ar/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/ar/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/ar/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/ca/lc_underlinedouble.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/ca/lc_underlinedouble.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/ca/lc_underline.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/ca/lc_underline.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/lc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/lc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/lc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/lc_insertbookmark.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/lc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/lc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/lc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/lc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/lc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/lc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/lc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/lc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/sc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/sc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/sc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/sc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/sc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/sc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/sc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/sc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/sc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/sc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/cmd/sc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/cmd/sc_trackchangesbar.png differ diff -Nru libreoffice-7.4.6/yaru/build/blue/png/links.txt libreoffice-7.4.7/yaru/build/blue/png/links.txt --- libreoffice-7.4.6/yaru/build/blue/png/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/png/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.png cmd/lc_recsearch.png res/library_16.png cmd/lc_viewdatasourcebrowser.png res/lx03126.png cmd/32/dbviewtables.png -res/lx03127.png res/ots_32_8.png +res/lx03127.png res/ots_32.png res/lx03130.png res/lx03123.png res/lx03137.png res/lx03125.png res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/odf_32_8.png +res/lx03144.png res/odf_32.png +res/lx03145.png res/odf_32.png res/lx03152.png res/lx03125.png res/lx03153.png res/lx03125.png res/lx03154.png res/lx03125.png res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png +res/lx03156.png res/odt_32.png res/lx03158.png res/lx03125.png res/lx03160.png res/lx03125.png -res/lx03162.png res/odt_32_8.png -res/lx03163.png res/odt_32_8.png +res/lx03162.png res/odt_32.png +res/lx03163.png res/odt_32.png res/lx03165.png cmd/lc_save.png res/lx03167.png cmd/lc_openremote.png res/lx03188.png cmd/32/dbviewtables.png res/lx03189.png cmd/lc_open.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png +res/lx03217.png res/odg_32.png +res/lx03218.png res/odg_32.png res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/odg_32_8.png +res/lx03220.png res/odg_32.png +res/lx03221.png res/odg_32.png +res/lx03222.png res/odg_32.png +res/lx03227.png res/odg_32.png +res/lx03228.png res/odg_32.png res/lx03256.png cmd/lc_insertplugin.png -res/mainapp.png res/newdoc.png -res/mainapp_16.png cmd/sc_showsinglepage.png -res/mainapp_16_8.png cmd/sc_showsinglepage.png -res/mainapp_32.png res/newdoc.png +res/mainapp_16_8.png res/mainapp_16.png +res/mainapp_32_8.png res/mainapp_32.png +res/mainapp_48_8.png res/mainapp_48.png res/notebookbar.png sfx2/res/symphony/open_more.png +res/odb_16_8.png res/odb_16.png +res/odb_32_8.png res/odb_32.png +res/odb_48_8.png res/odb_48.png +res/odf_16_8.png res/odf_16.png +res/odf_32_8.png res/odf_32.png +res/odf_48_8.png res/odf_48.png +res/odg_16_8.png res/odg_16.png +res/odg_32_8.png res/odg_32.png +res/odg_48_8.png res/odg_48.png +res/odm_16_8.png res/odm_16.png +res/odm_32_8.png res/odm_32.png +res/odm_48_8.png res/odm_48.png +res/odp_16_8.png res/odp_16.png +res/odp_32_8.png res/odp_32.png +res/odp_48_8.png res/odp_48.png +res/ods_16_8.png res/ods_16.png +res/ods_32_8.png res/ods_32.png +res/ods_48_8.png res/ods_48.png +res/odt_16_8.png res/odt_16.png +res/odt_32_8.png res/odt_32.png +res/odt_48_8.png res/odt_48.png +res/ots_16_8.png res/ots_16.png +res/ots_32_8.png res/ots_32.png +res/ots_48_8.png res/ots_48.png +res/ott_16_8.png res/ott_16.png +res/ott_32_8.png res/ott_32.png +res/ott_48_8.png res/ott_48.png res/plugin.png cmd/lc_insertplugin.png res/queries_32.png cmd/32/dbviewqueries.png res/reload.png cmd/sc_reload.png @@ -2044,36 +2070,38 @@ res/sc10868.png cmd/sc_grafgamma.png res/sc10869.png cmd/sc_graftransparence.png res/sc_helperdialog.png cmd/sc_helpindex.png +res/sx03123.png res/odp_16.png res/sx03126.png cmd/sc_dbviewtables.png -res/sx03127.png res/ots_16_8.png -res/sx03130.png res/sx03123.png +res/sx03127.png res/ots_16.png +res/sx03130.png res/odp_16.png res/sx03137.png res/sx03125.png res/sx03139.png cmd/sc_questionanswers.png res/sx03140.png res/sx03125.png -res/sx03145.png res/sx03144.png +res/sx03144.png res/odf_16.png +res/sx03145.png res/odf_16.png res/sx03152.png res/sx03125.png res/sx03153.png res/sx03125.png res/sx03154.png res/sx03125.png res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png +res/sx03156.png res/odt_16.png res/sx03158.png res/sx03125.png res/sx03160.png res/sx03125.png -res/sx03162.png res/odt_16_8.png -res/sx03163.png res/odt_16_8.png +res/sx03162.png res/odt_16.png +res/sx03163.png res/odt_16.png res/sx03164.png cmd/sc_open.png res/sx03165.png cmd/sc_save.png res/sx03167.png cmd/sc_openremote.png res/sx03188.png cmd/sc_dbviewtables.png res/sx03189.png cmd/sc_open.png res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png +res/sx03217.png res/odg_16.png +res/sx03218.png res/odg_16.png res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/odg_16_8.png +res/sx03220.png res/odg_16.png +res/sx03221.png res/odg_16.png +res/sx03222.png res/odg_16.png +res/sx03227.png res/odg_16.png +res/sx03228.png res/odg_16.png res/sx03256.png cmd/sc_insertplugin.png res/sx10594.png cmd/sc_pushbutton.png res/sx10595.png cmd/sc_radiobutton.png @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.png cmd/sc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png +sfx2/res/symphony/sidebar-elements-large.png cmd/lc_insertmath.png sfx2/res/symphony/sidebar-functions-large.png cmd/lc_toggleformula.png sfx2/res/symphony/sidebar-functions-small.png cmd/sc_toggleformula.png sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png @@ -2271,6 +2300,8 @@ svx/res/color.png cmd/sc_bmpmask.png svx/res/colordlg.png cmd/sc_graphicfiltersmooth.png svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/doc_modified_no.png cmd/sc_save.png +svx/res/doc_modified_yes.png res/savemodified_small.png svx/res/dsth_cen.png cmd/sc_distributehorzcenter.png svx/res/dsth_dst.png cmd/sc_distributehorzdistance.png svx/res/dsth_hig.png cmd/sc_distributehorzright.png Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/base128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/base128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/base_thumbnail_256.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/base_thumbnail_256.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/calc128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/calc128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/draw128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/draw128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/impress128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/impress128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03126.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03126.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03129.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03129.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03162.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03162.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03245_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03245_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03246_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03246_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03247_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03247_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03248_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03248_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03249_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03249_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03250_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03250_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03251_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03251_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/lx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/lx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/main128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/main128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/mainapp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/mainapp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/mainapp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/mainapp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/mainapp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/mainapp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/mainapp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/mainapp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/math128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/math128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odb_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odb_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odb_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odb_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odb_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odb_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odb_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odb_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odb_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odb_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odb_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odb_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odf_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odf_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odf_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odf_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odf_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odf_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odf_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odf_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odf_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odf_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odf_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odf_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odg_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odg_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odg_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odg_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odg_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odg_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odg_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odg_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odg_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odg_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odg_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odg_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odm_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odm_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odm_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odm_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odm_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odm_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odm_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odm_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odm_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odm_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odm_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odm_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odp_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odp_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odp_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odp_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ods_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ods_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ods_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ods_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ods_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ods_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ods_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ods_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ods_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ods_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ods_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ods_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odt_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odt_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odt_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odt_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odt_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odt_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odt_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odt_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odt_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odt_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/odt_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/odt_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ots_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ots_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ots_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ots_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ots_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ots_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ots_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ots_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ots_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ots_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ots_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ots_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ott_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ott_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ott_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ott_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ott_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ott_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ott_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ott_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ott_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ott_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/ott_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/ott_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03144.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03144.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03150.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03150.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/sx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/sx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/tipoftheday_c.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/tipoftheday_c.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/tipoftheday_d.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/tipoftheday_d.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/tipoftheday_i.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/tipoftheday_i.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/tipoftheday.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/tipoftheday.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/tipoftheday_w.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/tipoftheday_w.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/res/writer128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/res/writer128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sfx2/res/128x128_math_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/svx/res/a11y_check_issues_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/svx/res/a11y_check_issues_not_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/svx/res/adding-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/svx/res/adding-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/svx/res/block-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/svx/res/block-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/svx/res/doc_modified_feedback.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/svx/res/doc_modified_feedback.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/svx/res/extending-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/svx/res/extending-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/svx/res/standard-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/svx/res/standard-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/doublepage_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/doublepage_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/doublepage_a_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/doublepage_a_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/doublepage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/doublepage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/doublepage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/doublepage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/emptypage_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/emptypage_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/emptypage_a_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/emptypage_a_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/emptypage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/emptypage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/emptypage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/emptypage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/sc20236.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/sc20236.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/twopages_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/twopages_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/twopages_a_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/twopages_a_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/twopages_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/twopages_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/sw/res/twopages.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/sw/res/twopages.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/blue/png/vcl/res/infobox.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/blue/png/vcl/res/infobox.png differ diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/conehoristack_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/conehoristack_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/conehoristack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/conehoristack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/donut3d_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/donut3d_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/donut3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/donut3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/net_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/net_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/net_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/net_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/netfill_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/netfill_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/netfill_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/netfill_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/netlinepoint_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/netlinepoint_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/netlinepoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/netlinepoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/netlinepointstack_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/netlinepointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/netlinepointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/netlinepointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/netpoint_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/netpoint_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/netpoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/netpoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/netpointstack_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/netpointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/netpointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/netpointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/netstack_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/netstack_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/netstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/netstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/nostackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/nostackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/nostackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/nostackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/nostackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/nostackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/nostackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/nostackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/nostacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/nostacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/nostacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/nostacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/nostacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/nostacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/nostacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/nostacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stackdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stackdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stackdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stacksmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stacksmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stacksmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stacksmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stackstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stackstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stackstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stackstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stacksteppedboth_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stacksteppedboth_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stacksteppedboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stacksteppedboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stacksteppedlines_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stacksteppedlines_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/stacksteppedlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/stacksteppedlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxisdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxisdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxisdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxisdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxisdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxisdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxisdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxisdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxisdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxissmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxissmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxissmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxissmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxissmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxissmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxissmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxisstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxisstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/blue/svg/chart2/res/valueaxisstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/ar/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/ar/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/ar/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/ar/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/ar/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/ar/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/ar/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/ar/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/comparedocuments.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/comparedocuments.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/editcurindex.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/editcurindex.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/footnotedialog.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/footnotedialog.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/insertendnote.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/insertendnote.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/insertfootnote.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/insertfootnote.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/insertindexesentry.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/insertreferencefield.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/saveacopy.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/saveacopy.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/trackchangesbar.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/view100.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/view100.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/32/view100.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/32/view100.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -1 \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/ar/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/ar/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/ar/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/ar/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/ar/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/ar/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/ar/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/ar/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/ar/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/ar/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/ar/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/ar/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/ar/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/ar/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/ar/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/ar/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/ca/lc_underlinedouble.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/ca/lc_underlinedouble.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/ca/lc_underlinedouble.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/ca/lc_underlinedouble.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/ca/lc_underline.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/ca/lc_underline.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/ca/lc_underline.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/ca/lc_underline.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_comparedocuments.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_editcurindex.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_footnotedialog.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_fullscreen.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_fullscreen.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_fullscreen.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_fullscreen.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_insertbookmark.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_insertbookmark.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_insertbookmark.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_insertbookmark.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_insertendnote.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_insertfootnote.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_saveacopy.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/lc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/lc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_comparedocuments.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_editcurindex.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_footnotedialog.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_graftransparence.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_graftransparence.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_graftransparence.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_graftransparence.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_insertendnote.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_insertfootnote.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_saveacopy.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/blue/svg/cmd/sc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/cmd/sc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/links.txt libreoffice-7.4.7/yaru/build/blue/svg/links.txt --- libreoffice-7.4.6/yaru/build/blue/svg/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.svg cmd/lc_recsearch.svg res/library_16.svg cmd/lc_viewdatasourcebrowser.svg res/lx03126.svg cmd/32/dbviewtables.svg -res/lx03127.svg res/ots_32_8.svg +res/lx03127.svg res/ots_32.svg res/lx03130.svg res/lx03123.svg res/lx03137.svg res/lx03125.svg res/lx03140.svg res/lx03125.svg -res/lx03144.svg res/odf_32_8.svg -res/lx03145.svg res/odf_32_8.svg +res/lx03144.svg res/odf_32.svg +res/lx03145.svg res/odf_32.svg res/lx03152.svg res/lx03125.svg res/lx03153.svg res/lx03125.svg res/lx03154.svg res/lx03125.svg res/lx03155.svg res/lx03125.svg -res/lx03156.svg res/odt_32_8.svg +res/lx03156.svg res/odt_32.svg res/lx03158.svg res/lx03125.svg res/lx03160.svg res/lx03125.svg -res/lx03162.svg res/odt_32_8.svg -res/lx03163.svg res/odt_32_8.svg +res/lx03162.svg res/odt_32.svg +res/lx03163.svg res/odt_32.svg res/lx03165.svg cmd/lc_save.svg res/lx03167.svg cmd/lc_openremote.svg res/lx03188.svg cmd/32/dbviewtables.svg res/lx03189.svg cmd/lc_open.svg -res/lx03217.svg res/odg_32_8.svg -res/lx03218.svg res/odg_32_8.svg +res/lx03217.svg res/odg_32.svg +res/lx03218.svg res/odg_32.svg res/lx03219.svg res/lx03125.svg -res/lx03220.svg res/odg_32_8.svg -res/lx03221.svg res/odg_32_8.svg -res/lx03222.svg res/odg_32_8.svg -res/lx03227.svg res/odg_32_8.svg -res/lx03228.svg res/odg_32_8.svg +res/lx03220.svg res/odg_32.svg +res/lx03221.svg res/odg_32.svg +res/lx03222.svg res/odg_32.svg +res/lx03227.svg res/odg_32.svg +res/lx03228.svg res/odg_32.svg res/lx03256.svg cmd/lc_insertplugin.svg -res/mainapp.svg res/newdoc.svg -res/mainapp_16.svg cmd/sc_showsinglepage.svg -res/mainapp_16_8.svg cmd/sc_showsinglepage.svg -res/mainapp_32.svg res/newdoc.svg +res/mainapp_16_8.svg res/mainapp_16.svg +res/mainapp_32_8.svg res/mainapp_32.svg +res/mainapp_48_8.svg res/mainapp_48.svg res/notebookbar.svg sfx2/res/symphony/open_more.svg +res/odb_16_8.svg res/odb_16.svg +res/odb_32_8.svg res/odb_32.svg +res/odb_48_8.svg res/odb_48.svg +res/odf_16_8.svg res/odf_16.svg +res/odf_32_8.svg res/odf_32.svg +res/odf_48_8.svg res/odf_48.svg +res/odg_16_8.svg res/odg_16.svg +res/odg_32_8.svg res/odg_32.svg +res/odg_48_8.svg res/odg_48.svg +res/odm_16_8.svg res/odm_16.svg +res/odm_32_8.svg res/odm_32.svg +res/odm_48_8.svg res/odm_48.svg +res/odp_16_8.svg res/odp_16.svg +res/odp_32_8.svg res/odp_32.svg +res/odp_48_8.svg res/odp_48.svg +res/ods_16_8.svg res/ods_16.svg +res/ods_32_8.svg res/ods_32.svg +res/ods_48_8.svg res/ods_48.svg +res/odt_16_8.svg res/odt_16.svg +res/odt_32_8.svg res/odt_32.svg +res/odt_48_8.svg res/odt_48.svg +res/ots_16_8.svg res/ots_16.svg +res/ots_32_8.svg res/ots_32.svg +res/ots_48_8.svg res/ots_48.svg +res/ott_16_8.svg res/ott_16.svg +res/ott_32_8.svg res/ott_32.svg +res/ott_48_8.svg res/ott_48.svg res/plugin.svg cmd/lc_insertplugin.svg res/queries_32.svg cmd/32/dbviewqueries.svg res/reload.svg cmd/sc_reload.svg @@ -2044,36 +2070,38 @@ res/sc10868.svg cmd/sc_grafgamma.svg res/sc10869.svg cmd/sc_graftransparence.svg res/sc_helperdialog.svg cmd/sc_helpindex.svg +res/sx03123.svg res/odp_16.svg res/sx03126.svg cmd/sc_dbviewtables.svg -res/sx03127.svg res/ots_16_8.svg -res/sx03130.svg res/sx03123.svg +res/sx03127.svg res/ots_16.svg +res/sx03130.svg res/odp_16.svg res/sx03137.svg res/sx03125.svg res/sx03139.svg cmd/sc_questionanswers.svg res/sx03140.svg res/sx03125.svg -res/sx03145.svg res/sx03144.svg +res/sx03144.svg res/odf_16.svg +res/sx03145.svg res/odf_16.svg res/sx03152.svg res/sx03125.svg res/sx03153.svg res/sx03125.svg res/sx03154.svg res/sx03125.svg res/sx03155.svg res/sx03125.svg -res/sx03156.svg res/odt_16_8.svg +res/sx03156.svg res/odt_16.svg res/sx03158.svg res/sx03125.svg res/sx03160.svg res/sx03125.svg -res/sx03162.svg res/odt_16_8.svg -res/sx03163.svg res/odt_16_8.svg +res/sx03162.svg res/odt_16.svg +res/sx03163.svg res/odt_16.svg res/sx03164.svg cmd/sc_open.svg res/sx03165.svg cmd/sc_save.svg res/sx03167.svg cmd/sc_openremote.svg res/sx03188.svg cmd/sc_dbviewtables.svg res/sx03189.svg cmd/sc_open.svg res/sx03202.svg cmd/sc_dbviewqueries.svg -res/sx03217.svg res/odg_16_8.svg -res/sx03218.svg res/odg_16_8.svg +res/sx03217.svg res/odg_16.svg +res/sx03218.svg res/odg_16.svg res/sx03219.svg res/sx03125.svg -res/sx03220.svg res/odg_16_8.svg -res/sx03221.svg res/odg_16_8.svg -res/sx03222.svg res/odg_16_8.svg -res/sx03227.svg res/odg_16_8.svg -res/sx03228.svg res/odg_16_8.svg +res/sx03220.svg res/odg_16.svg +res/sx03221.svg res/odg_16.svg +res/sx03222.svg res/odg_16.svg +res/sx03227.svg res/odg_16.svg +res/sx03228.svg res/odg_16.svg res/sx03256.svg cmd/sc_insertplugin.svg res/sx10594.svg cmd/sc_pushbutton.svg res/sx10595.svg cmd/sc_radiobutton.svg @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.svg cmd/sc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-large.svg cmd/lc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-small.svg cmd/sc_bmpmask.svg +sfx2/res/symphony/sidebar-elements-large.svg cmd/lc_insertmath.svg sfx2/res/symphony/sidebar-functions-large.svg cmd/lc_toggleformula.svg sfx2/res/symphony/sidebar-functions-small.svg cmd/sc_toggleformula.svg sfx2/res/symphony/sidebar-gallery-large.svg cmd/lc_gallery.svg @@ -2271,6 +2300,8 @@ svx/res/color.svg cmd/sc_bmpmask.svg svx/res/colordlg.svg cmd/sc_graphicfiltersmooth.svg svx/res/convrt3d.svg cmd/sc_convertinto3d.svg +svx/res/doc_modified_no.svg cmd/sc_save.svg +svx/res/doc_modified_yes.svg res/savemodified_small.svg svx/res/dsth_cen.svg cmd/sc_distributehorzcenter.svg svx/res/dsth_dst.svg cmd/sc_distributehorzdistance.svg svx/res/dsth_hig.svg cmd/sc_distributehorzright.svg diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/base128.svg libreoffice-7.4.7/yaru/build/blue/svg/res/base128.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/base128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/base128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/base_thumbnail_256.svg libreoffice-7.4.7/yaru/build/blue/svg/res/base_thumbnail_256.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/base_thumbnail_256.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/base_thumbnail_256.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/calc128.svg libreoffice-7.4.7/yaru/build/blue/svg/res/calc128.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/calc128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/calc128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/draw128.svg libreoffice-7.4.7/yaru/build/blue/svg/res/draw128.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/draw128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/draw128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/impress128.svg libreoffice-7.4.7/yaru/build/blue/svg/res/impress128.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/impress128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/impress128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03123.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03123.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03123.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03126.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03126.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03126.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03126.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03129.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03129.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03129.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03129.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03162.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03162.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03162.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03162.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03245_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03245_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03245_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03245_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03245.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03245.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03246_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03246_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03246_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03246_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03246.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03246.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03247_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03247_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03247_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03247_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03247.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03247.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03248_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03248_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03248_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03248_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03248.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03248.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03249_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03249_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03249_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03249_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03249.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03249.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03250_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03250_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03250_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03250_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03250.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03250.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03251_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03251_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03251_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03251_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03251.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03251.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03253.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03253.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03254.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03254.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/lx03255.svg libreoffice-7.4.7/yaru/build/blue/svg/res/lx03255.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/lx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/lx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/main128.svg libreoffice-7.4.7/yaru/build/blue/svg/res/main128.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/main128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/main128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/mainapp_16.svg libreoffice-7.4.7/yaru/build/blue/svg/res/mainapp_16.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/mainapp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/mainapp_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/mainapp_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/mainapp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/mainapp_48_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/mainapp_48_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/mainapp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/mainapp_48.svg libreoffice-7.4.7/yaru/build/blue/svg/res/mainapp_48.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/mainapp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/mainapp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/math128.svg libreoffice-7.4.7/yaru/build/blue/svg/res/math128.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/math128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/math128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odb_16_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odb_16_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odb_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odb_16.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odb_16.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odb_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odb_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odb_32_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odb_32_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odb_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odb_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odb_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odb_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odb_48_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odb_48_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odb_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odb_48.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odb_48.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odb_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odb_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odf_16_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odf_16_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odf_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odf_16.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odf_16.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odf_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odf_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odf_32_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odf_32_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odf_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odf_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odf_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odf_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odf_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odf_48_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odf_48_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odf_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odf_48.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odf_48.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odf_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odf_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odg_16_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odg_16_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odg_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odg_16.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odg_16.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odg_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odg_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odg_32_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odg_32_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odg_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odg_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odg_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odg_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odg_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odg_48_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odg_48_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odg_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odg_48.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odg_48.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odg_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odg_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odm_16_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odm_16_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odm_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odm_16.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odm_16.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odm_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odm_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odm_32_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odm_32_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odm_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odm_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odm_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odm_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odm_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odm_48_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odm_48_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odm_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odm_48.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odm_48.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odm_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odm_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odp_16_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odp_16_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odp_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odp_16.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odp_16.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odp_32_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odp_32_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odp_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odp_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odp_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odp_48_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odp_48_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odp_48.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odp_48.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ods_16_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ods_16_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ods_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ods_16.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ods_16.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ods_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ods_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ods_32_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ods_32_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ods_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ods_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ods_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ods_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ods_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ods_48_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ods_48_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ods_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ods_48.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ods_48.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ods_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ods_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odt_16_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odt_16_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odt_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odt_16.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odt_16.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odt_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odt_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odt_32_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odt_32_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odt_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odt_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odt_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odt_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odt_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odt_48_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odt_48_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odt_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/odt_48.svg libreoffice-7.4.7/yaru/build/blue/svg/res/odt_48.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/odt_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/odt_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ots_16_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ots_16_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ots_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ots_16.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ots_16.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ots_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ots_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ots_32_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ots_32_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ots_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ots_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ots_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ots_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ots_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ots_48_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ots_48_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ots_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ots_48.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ots_48.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ots_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ots_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ott_16_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ott_16_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ott_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ott_16.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ott_16.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ott_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ott_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ott_32_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ott_32_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ott_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ott_32.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ott_32.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ott_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ott_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ott_48_8.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ott_48_8.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ott_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/ott_48.svg libreoffice-7.4.7/yaru/build/blue/svg/res/ott_48.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/ott_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/ott_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03123.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03123.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03144.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03144.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03144.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03144.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03150.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03150.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03150.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03150.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03245.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03245.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03246.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03246.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03247.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03247.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03248.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03248.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03249.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03249.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03250.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03250.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03251.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03251.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03253.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03253.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03254.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03254.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/sx03255.svg libreoffice-7.4.7/yaru/build/blue/svg/res/sx03255.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/sx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/sx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/tipoftheday_c.svg libreoffice-7.4.7/yaru/build/blue/svg/res/tipoftheday_c.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/tipoftheday_c.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/tipoftheday_c.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/tipoftheday_d.svg libreoffice-7.4.7/yaru/build/blue/svg/res/tipoftheday_d.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/tipoftheday_d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/tipoftheday_d.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/tipoftheday_i.svg libreoffice-7.4.7/yaru/build/blue/svg/res/tipoftheday_i.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/tipoftheday_i.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/tipoftheday_i.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/tipoftheday.svg libreoffice-7.4.7/yaru/build/blue/svg/res/tipoftheday.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/tipoftheday.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/tipoftheday.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/tipoftheday_w.svg libreoffice-7.4.7/yaru/build/blue/svg/res/tipoftheday_w.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/tipoftheday_w.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/tipoftheday_w.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/res/writer128.svg libreoffice-7.4.7/yaru/build/blue/svg/res/writer128.svg --- libreoffice-7.4.6/yaru/build/blue/svg/res/writer128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/res/writer128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.4.7/yaru/build/blue/svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sfx2/res/128x128_calc_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.4.7/yaru/build/blue/svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sfx2/res/128x128_draw_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.4.7/yaru/build/blue/svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sfx2/res/128x128_impress_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.4.7/yaru/build/blue/svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sfx2/res/128x128_math_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sfx2/res/128x128_math_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.4.7/yaru/build/blue/svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sfx2/res/128x128_writer_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/svx/res/a11y_check_issues_found.svg libreoffice-7.4.7/yaru/build/blue/svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.4.6/yaru/build/blue/svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/svx/res/a11y_check_issues_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.4.7/yaru/build/blue/svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.4.6/yaru/build/blue/svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/svx/res/a11y_check_issues_not_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/svx/res/adding-selection.svg libreoffice-7.4.7/yaru/build/blue/svg/svx/res/adding-selection.svg --- libreoffice-7.4.6/yaru/build/blue/svg/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/svx/res/adding-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/svx/res/block-selection.svg libreoffice-7.4.7/yaru/build/blue/svg/svx/res/block-selection.svg --- libreoffice-7.4.6/yaru/build/blue/svg/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/svx/res/block-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/svx/res/doc_modified_feedback.svg libreoffice-7.4.7/yaru/build/blue/svg/svx/res/doc_modified_feedback.svg --- libreoffice-7.4.6/yaru/build/blue/svg/svx/res/doc_modified_feedback.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/svx/res/doc_modified_feedback.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/svx/res/extending-selection.svg libreoffice-7.4.7/yaru/build/blue/svg/svx/res/extending-selection.svg --- libreoffice-7.4.6/yaru/build/blue/svg/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/svx/res/extending-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/svx/res/standard-selection.svg libreoffice-7.4.7/yaru/build/blue/svg/svx/res/standard-selection.svg --- libreoffice-7.4.6/yaru/build/blue/svg/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/svx/res/standard-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/doublepage_10x22.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/doublepage_10x22.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/doublepage_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/doublepage_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/doublepage_a_10x22.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/doublepage_a_10x22.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/doublepage_a_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/doublepage_a_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/doublepage_a.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/doublepage_a.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/doublepage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/doublepage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/doublepage.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/doublepage.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/doublepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/doublepage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/emptypage_10x14.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/emptypage_10x14.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/emptypage_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/emptypage_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/emptypage_a_10x14.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/emptypage_a_10x14.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/emptypage_a_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/emptypage_a_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/emptypage_a.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/emptypage_a.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/emptypage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/emptypage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/emptypage.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/emptypage.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/emptypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/emptypage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/sc20236.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/sc20236.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/sc20236.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/sc20236.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/twopages_10x24.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/twopages_10x24.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/twopages_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/twopages_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/twopages_a_10x24.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/twopages_a_10x24.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/twopages_a_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/twopages_a_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/twopages_a.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/twopages_a.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/twopages_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/twopages_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/sw/res/twopages.svg libreoffice-7.4.7/yaru/build/blue/svg/sw/res/twopages.svg --- libreoffice-7.4.6/yaru/build/blue/svg/sw/res/twopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/sw/res/twopages.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/blue/svg/vcl/res/infobox.svg libreoffice-7.4.7/yaru/build/blue/svg/vcl/res/infobox.svg --- libreoffice-7.4.6/yaru/build/blue/svg/vcl/res/infobox.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/blue/svg/vcl/res/infobox.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -i \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/ar/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/ar/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/ar/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/ar/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/32/view100.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/32/view100.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/ar/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/ar/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/ar/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/ar/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/ar/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/ar/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/ar/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/ar/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/ca/lc_underlinedouble.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/ca/lc_underlinedouble.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/ca/lc_underline.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/ca/lc_underline.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/lc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/lc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/lc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/lc_insertbookmark.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/lc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/lc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/lc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/lc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/lc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/lc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/lc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/lc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/sc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/sc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/sc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/sc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/sc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/sc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/sc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/sc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/sc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/sc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/cmd/sc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/cmd/sc_trackchangesbar.png differ diff -Nru libreoffice-7.4.6/yaru/build/default/png/links.txt libreoffice-7.4.7/yaru/build/default/png/links.txt --- libreoffice-7.4.6/yaru/build/default/png/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/png/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.png cmd/lc_recsearch.png res/library_16.png cmd/lc_viewdatasourcebrowser.png res/lx03126.png cmd/32/dbviewtables.png -res/lx03127.png res/ots_32_8.png +res/lx03127.png res/ots_32.png res/lx03130.png res/lx03123.png res/lx03137.png res/lx03125.png res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/odf_32_8.png +res/lx03144.png res/odf_32.png +res/lx03145.png res/odf_32.png res/lx03152.png res/lx03125.png res/lx03153.png res/lx03125.png res/lx03154.png res/lx03125.png res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png +res/lx03156.png res/odt_32.png res/lx03158.png res/lx03125.png res/lx03160.png res/lx03125.png -res/lx03162.png res/odt_32_8.png -res/lx03163.png res/odt_32_8.png +res/lx03162.png res/odt_32.png +res/lx03163.png res/odt_32.png res/lx03165.png cmd/lc_save.png res/lx03167.png cmd/lc_openremote.png res/lx03188.png cmd/32/dbviewtables.png res/lx03189.png cmd/lc_open.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png +res/lx03217.png res/odg_32.png +res/lx03218.png res/odg_32.png res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/odg_32_8.png +res/lx03220.png res/odg_32.png +res/lx03221.png res/odg_32.png +res/lx03222.png res/odg_32.png +res/lx03227.png res/odg_32.png +res/lx03228.png res/odg_32.png res/lx03256.png cmd/lc_insertplugin.png -res/mainapp.png res/newdoc.png -res/mainapp_16.png cmd/sc_showsinglepage.png -res/mainapp_16_8.png cmd/sc_showsinglepage.png -res/mainapp_32.png res/newdoc.png +res/mainapp_16_8.png res/mainapp_16.png +res/mainapp_32_8.png res/mainapp_32.png +res/mainapp_48_8.png res/mainapp_48.png res/notebookbar.png sfx2/res/symphony/open_more.png +res/odb_16_8.png res/odb_16.png +res/odb_32_8.png res/odb_32.png +res/odb_48_8.png res/odb_48.png +res/odf_16_8.png res/odf_16.png +res/odf_32_8.png res/odf_32.png +res/odf_48_8.png res/odf_48.png +res/odg_16_8.png res/odg_16.png +res/odg_32_8.png res/odg_32.png +res/odg_48_8.png res/odg_48.png +res/odm_16_8.png res/odm_16.png +res/odm_32_8.png res/odm_32.png +res/odm_48_8.png res/odm_48.png +res/odp_16_8.png res/odp_16.png +res/odp_32_8.png res/odp_32.png +res/odp_48_8.png res/odp_48.png +res/ods_16_8.png res/ods_16.png +res/ods_32_8.png res/ods_32.png +res/ods_48_8.png res/ods_48.png +res/odt_16_8.png res/odt_16.png +res/odt_32_8.png res/odt_32.png +res/odt_48_8.png res/odt_48.png +res/ots_16_8.png res/ots_16.png +res/ots_32_8.png res/ots_32.png +res/ots_48_8.png res/ots_48.png +res/ott_16_8.png res/ott_16.png +res/ott_32_8.png res/ott_32.png +res/ott_48_8.png res/ott_48.png res/plugin.png cmd/lc_insertplugin.png res/queries_32.png cmd/32/dbviewqueries.png res/reload.png cmd/sc_reload.png @@ -2044,36 +2070,38 @@ res/sc10868.png cmd/sc_grafgamma.png res/sc10869.png cmd/sc_graftransparence.png res/sc_helperdialog.png cmd/sc_helpindex.png +res/sx03123.png res/odp_16.png res/sx03126.png cmd/sc_dbviewtables.png -res/sx03127.png res/ots_16_8.png -res/sx03130.png res/sx03123.png +res/sx03127.png res/ots_16.png +res/sx03130.png res/odp_16.png res/sx03137.png res/sx03125.png res/sx03139.png cmd/sc_questionanswers.png res/sx03140.png res/sx03125.png -res/sx03145.png res/sx03144.png +res/sx03144.png res/odf_16.png +res/sx03145.png res/odf_16.png res/sx03152.png res/sx03125.png res/sx03153.png res/sx03125.png res/sx03154.png res/sx03125.png res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png +res/sx03156.png res/odt_16.png res/sx03158.png res/sx03125.png res/sx03160.png res/sx03125.png -res/sx03162.png res/odt_16_8.png -res/sx03163.png res/odt_16_8.png +res/sx03162.png res/odt_16.png +res/sx03163.png res/odt_16.png res/sx03164.png cmd/sc_open.png res/sx03165.png cmd/sc_save.png res/sx03167.png cmd/sc_openremote.png res/sx03188.png cmd/sc_dbviewtables.png res/sx03189.png cmd/sc_open.png res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png +res/sx03217.png res/odg_16.png +res/sx03218.png res/odg_16.png res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/odg_16_8.png +res/sx03220.png res/odg_16.png +res/sx03221.png res/odg_16.png +res/sx03222.png res/odg_16.png +res/sx03227.png res/odg_16.png +res/sx03228.png res/odg_16.png res/sx03256.png cmd/sc_insertplugin.png res/sx10594.png cmd/sc_pushbutton.png res/sx10595.png cmd/sc_radiobutton.png @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.png cmd/sc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png +sfx2/res/symphony/sidebar-elements-large.png cmd/lc_insertmath.png sfx2/res/symphony/sidebar-functions-large.png cmd/lc_toggleformula.png sfx2/res/symphony/sidebar-functions-small.png cmd/sc_toggleformula.png sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png @@ -2271,6 +2300,8 @@ svx/res/color.png cmd/sc_bmpmask.png svx/res/colordlg.png cmd/sc_graphicfiltersmooth.png svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/doc_modified_no.png cmd/sc_save.png +svx/res/doc_modified_yes.png res/savemodified_small.png svx/res/dsth_cen.png cmd/sc_distributehorzcenter.png svx/res/dsth_dst.png cmd/sc_distributehorzdistance.png svx/res/dsth_hig.png cmd/sc_distributehorzright.png Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/base128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/base128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/base_thumbnail_256.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/base_thumbnail_256.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/calc128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/calc128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/draw128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/draw128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/impress128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/impress128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03126.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03126.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03129.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03129.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03162.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03162.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03245_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03245_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03246_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03246_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03247_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03247_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03248_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03248_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03249_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03249_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03250_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03250_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03251_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03251_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/lx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/lx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/main128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/main128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/mainapp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/mainapp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/mainapp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/mainapp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/mainapp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/mainapp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/mainapp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/mainapp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/math128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/math128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odb_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odb_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odb_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odb_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odb_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odb_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odb_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odb_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odb_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odb_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odb_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odb_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odf_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odf_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odf_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odf_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odf_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odf_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odf_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odf_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odf_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odf_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odf_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odf_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odg_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odg_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odg_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odg_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odg_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odg_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odg_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odg_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odg_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odg_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odg_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odg_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odm_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odm_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odm_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odm_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odm_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odm_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odm_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odm_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odm_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odm_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odm_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odm_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odp_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odp_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odp_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odp_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ods_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ods_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ods_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ods_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ods_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ods_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ods_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ods_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ods_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ods_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ods_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ods_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odt_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odt_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odt_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odt_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odt_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odt_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odt_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odt_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odt_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odt_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/odt_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/odt_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ots_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ots_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ots_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ots_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ots_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ots_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ots_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ots_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ots_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ots_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ots_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ots_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ott_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ott_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ott_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ott_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ott_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ott_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ott_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ott_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ott_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ott_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/ott_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/ott_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03144.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03144.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03150.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03150.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/sx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/sx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/tipoftheday_c.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/tipoftheday_c.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/tipoftheday_d.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/tipoftheday_d.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/tipoftheday_i.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/tipoftheday_i.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/tipoftheday.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/tipoftheday.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/tipoftheday_w.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/tipoftheday_w.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/res/writer128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/res/writer128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sfx2/res/128x128_math_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/svx/res/a11y_check_issues_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/svx/res/a11y_check_issues_not_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/svx/res/adding-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/svx/res/adding-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/svx/res/block-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/svx/res/block-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/svx/res/doc_modified_feedback.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/svx/res/doc_modified_feedback.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/svx/res/extending-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/svx/res/extending-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/svx/res/standard-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/svx/res/standard-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/doublepage_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/doublepage_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/doublepage_a_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/doublepage_a_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/doublepage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/doublepage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/doublepage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/doublepage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/emptypage_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/emptypage_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/emptypage_a_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/emptypage_a_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/emptypage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/emptypage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/emptypage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/emptypage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/sc20236.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/sc20236.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/twopages_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/twopages_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/twopages_a_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/twopages_a_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/twopages_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/twopages_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/sw/res/twopages.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/sw/res/twopages.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/default/png/vcl/res/infobox.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/default/png/vcl/res/infobox.png differ diff -Nru libreoffice-7.4.6/yaru/build/default/svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/default/svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/default/svg/chart2/res/stackdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/chart2/res/stackdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/default/svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/default/svg/chart2/res/stackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/chart2/res/stackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/default/svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/default/svg/chart2/res/stackdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/default/svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/default/svg/chart2/res/valueaxisdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/default/svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/default/svg/chart2/res/valueaxissmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/ar/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/ar/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/ar/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/ar/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/ar/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/ar/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/ar/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/ar/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/comparedocuments.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/comparedocuments.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/editcurindex.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/editcurindex.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/footnotedialog.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/footnotedialog.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/insertendnote.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/insertendnote.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/insertfootnote.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/insertfootnote.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/insertindexesentry.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/insertreferencefield.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/saveacopy.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/saveacopy.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/trackchangesbar.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/32/view100.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/32/view100.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/32/view100.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/32/view100.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -1 \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/ar/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/ar/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/ar/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/ar/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/ar/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/ar/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/ar/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/ar/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/ar/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/ar/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/ar/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/ar/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/ar/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/ar/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/ar/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/ar/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/ca/lc_underlinedouble.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/ca/lc_underlinedouble.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/ca/lc_underlinedouble.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/ca/lc_underlinedouble.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/ca/lc_underline.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/ca/lc_underline.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/ca/lc_underline.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/ca/lc_underline.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_comparedocuments.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_editcurindex.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_footnotedialog.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_fullscreen.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_fullscreen.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_fullscreen.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_fullscreen.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_insertbookmark.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_insertbookmark.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_insertbookmark.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_insertbookmark.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_insertendnote.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_insertfootnote.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_saveacopy.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/lc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/lc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_comparedocuments.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_editcurindex.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_footnotedialog.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_graftransparence.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_graftransparence.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_graftransparence.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_graftransparence.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_insertendnote.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_insertfootnote.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_saveacopy.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/default/svg/cmd/sc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/cmd/sc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/links.txt libreoffice-7.4.7/yaru/build/default/svg/links.txt --- libreoffice-7.4.6/yaru/build/default/svg/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.svg cmd/lc_recsearch.svg res/library_16.svg cmd/lc_viewdatasourcebrowser.svg res/lx03126.svg cmd/32/dbviewtables.svg -res/lx03127.svg res/ots_32_8.svg +res/lx03127.svg res/ots_32.svg res/lx03130.svg res/lx03123.svg res/lx03137.svg res/lx03125.svg res/lx03140.svg res/lx03125.svg -res/lx03144.svg res/odf_32_8.svg -res/lx03145.svg res/odf_32_8.svg +res/lx03144.svg res/odf_32.svg +res/lx03145.svg res/odf_32.svg res/lx03152.svg res/lx03125.svg res/lx03153.svg res/lx03125.svg res/lx03154.svg res/lx03125.svg res/lx03155.svg res/lx03125.svg -res/lx03156.svg res/odt_32_8.svg +res/lx03156.svg res/odt_32.svg res/lx03158.svg res/lx03125.svg res/lx03160.svg res/lx03125.svg -res/lx03162.svg res/odt_32_8.svg -res/lx03163.svg res/odt_32_8.svg +res/lx03162.svg res/odt_32.svg +res/lx03163.svg res/odt_32.svg res/lx03165.svg cmd/lc_save.svg res/lx03167.svg cmd/lc_openremote.svg res/lx03188.svg cmd/32/dbviewtables.svg res/lx03189.svg cmd/lc_open.svg -res/lx03217.svg res/odg_32_8.svg -res/lx03218.svg res/odg_32_8.svg +res/lx03217.svg res/odg_32.svg +res/lx03218.svg res/odg_32.svg res/lx03219.svg res/lx03125.svg -res/lx03220.svg res/odg_32_8.svg -res/lx03221.svg res/odg_32_8.svg -res/lx03222.svg res/odg_32_8.svg -res/lx03227.svg res/odg_32_8.svg -res/lx03228.svg res/odg_32_8.svg +res/lx03220.svg res/odg_32.svg +res/lx03221.svg res/odg_32.svg +res/lx03222.svg res/odg_32.svg +res/lx03227.svg res/odg_32.svg +res/lx03228.svg res/odg_32.svg res/lx03256.svg cmd/lc_insertplugin.svg -res/mainapp.svg res/newdoc.svg -res/mainapp_16.svg cmd/sc_showsinglepage.svg -res/mainapp_16_8.svg cmd/sc_showsinglepage.svg -res/mainapp_32.svg res/newdoc.svg +res/mainapp_16_8.svg res/mainapp_16.svg +res/mainapp_32_8.svg res/mainapp_32.svg +res/mainapp_48_8.svg res/mainapp_48.svg res/notebookbar.svg sfx2/res/symphony/open_more.svg +res/odb_16_8.svg res/odb_16.svg +res/odb_32_8.svg res/odb_32.svg +res/odb_48_8.svg res/odb_48.svg +res/odf_16_8.svg res/odf_16.svg +res/odf_32_8.svg res/odf_32.svg +res/odf_48_8.svg res/odf_48.svg +res/odg_16_8.svg res/odg_16.svg +res/odg_32_8.svg res/odg_32.svg +res/odg_48_8.svg res/odg_48.svg +res/odm_16_8.svg res/odm_16.svg +res/odm_32_8.svg res/odm_32.svg +res/odm_48_8.svg res/odm_48.svg +res/odp_16_8.svg res/odp_16.svg +res/odp_32_8.svg res/odp_32.svg +res/odp_48_8.svg res/odp_48.svg +res/ods_16_8.svg res/ods_16.svg +res/ods_32_8.svg res/ods_32.svg +res/ods_48_8.svg res/ods_48.svg +res/odt_16_8.svg res/odt_16.svg +res/odt_32_8.svg res/odt_32.svg +res/odt_48_8.svg res/odt_48.svg +res/ots_16_8.svg res/ots_16.svg +res/ots_32_8.svg res/ots_32.svg +res/ots_48_8.svg res/ots_48.svg +res/ott_16_8.svg res/ott_16.svg +res/ott_32_8.svg res/ott_32.svg +res/ott_48_8.svg res/ott_48.svg res/plugin.svg cmd/lc_insertplugin.svg res/queries_32.svg cmd/32/dbviewqueries.svg res/reload.svg cmd/sc_reload.svg @@ -2044,36 +2070,38 @@ res/sc10868.svg cmd/sc_grafgamma.svg res/sc10869.svg cmd/sc_graftransparence.svg res/sc_helperdialog.svg cmd/sc_helpindex.svg +res/sx03123.svg res/odp_16.svg res/sx03126.svg cmd/sc_dbviewtables.svg -res/sx03127.svg res/ots_16_8.svg -res/sx03130.svg res/sx03123.svg +res/sx03127.svg res/ots_16.svg +res/sx03130.svg res/odp_16.svg res/sx03137.svg res/sx03125.svg res/sx03139.svg cmd/sc_questionanswers.svg res/sx03140.svg res/sx03125.svg -res/sx03145.svg res/sx03144.svg +res/sx03144.svg res/odf_16.svg +res/sx03145.svg res/odf_16.svg res/sx03152.svg res/sx03125.svg res/sx03153.svg res/sx03125.svg res/sx03154.svg res/sx03125.svg res/sx03155.svg res/sx03125.svg -res/sx03156.svg res/odt_16_8.svg +res/sx03156.svg res/odt_16.svg res/sx03158.svg res/sx03125.svg res/sx03160.svg res/sx03125.svg -res/sx03162.svg res/odt_16_8.svg -res/sx03163.svg res/odt_16_8.svg +res/sx03162.svg res/odt_16.svg +res/sx03163.svg res/odt_16.svg res/sx03164.svg cmd/sc_open.svg res/sx03165.svg cmd/sc_save.svg res/sx03167.svg cmd/sc_openremote.svg res/sx03188.svg cmd/sc_dbviewtables.svg res/sx03189.svg cmd/sc_open.svg res/sx03202.svg cmd/sc_dbviewqueries.svg -res/sx03217.svg res/odg_16_8.svg -res/sx03218.svg res/odg_16_8.svg +res/sx03217.svg res/odg_16.svg +res/sx03218.svg res/odg_16.svg res/sx03219.svg res/sx03125.svg -res/sx03220.svg res/odg_16_8.svg -res/sx03221.svg res/odg_16_8.svg -res/sx03222.svg res/odg_16_8.svg -res/sx03227.svg res/odg_16_8.svg -res/sx03228.svg res/odg_16_8.svg +res/sx03220.svg res/odg_16.svg +res/sx03221.svg res/odg_16.svg +res/sx03222.svg res/odg_16.svg +res/sx03227.svg res/odg_16.svg +res/sx03228.svg res/odg_16.svg res/sx03256.svg cmd/sc_insertplugin.svg res/sx10594.svg cmd/sc_pushbutton.svg res/sx10595.svg cmd/sc_radiobutton.svg @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.svg cmd/sc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-large.svg cmd/lc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-small.svg cmd/sc_bmpmask.svg +sfx2/res/symphony/sidebar-elements-large.svg cmd/lc_insertmath.svg sfx2/res/symphony/sidebar-functions-large.svg cmd/lc_toggleformula.svg sfx2/res/symphony/sidebar-functions-small.svg cmd/sc_toggleformula.svg sfx2/res/symphony/sidebar-gallery-large.svg cmd/lc_gallery.svg @@ -2271,6 +2300,8 @@ svx/res/color.svg cmd/sc_bmpmask.svg svx/res/colordlg.svg cmd/sc_graphicfiltersmooth.svg svx/res/convrt3d.svg cmd/sc_convertinto3d.svg +svx/res/doc_modified_no.svg cmd/sc_save.svg +svx/res/doc_modified_yes.svg res/savemodified_small.svg svx/res/dsth_cen.svg cmd/sc_distributehorzcenter.svg svx/res/dsth_dst.svg cmd/sc_distributehorzdistance.svg svx/res/dsth_hig.svg cmd/sc_distributehorzright.svg diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/base128.svg libreoffice-7.4.7/yaru/build/default/svg/res/base128.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/base128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/base128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/base_thumbnail_256.svg libreoffice-7.4.7/yaru/build/default/svg/res/base_thumbnail_256.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/base_thumbnail_256.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/base_thumbnail_256.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/calc128.svg libreoffice-7.4.7/yaru/build/default/svg/res/calc128.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/calc128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/calc128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/draw128.svg libreoffice-7.4.7/yaru/build/default/svg/res/draw128.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/draw128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/draw128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/impress128.svg libreoffice-7.4.7/yaru/build/default/svg/res/impress128.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/impress128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/impress128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03123.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03123.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03123.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03126.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03126.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03126.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03126.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03129.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03129.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03129.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03129.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03162.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03162.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03162.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03162.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03245_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03245_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03245_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03245_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03245.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03245.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03246_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03246_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03246_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03246_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03246.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03246.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03247_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03247_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03247_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03247_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03247.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03247.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03248_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03248_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03248_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03248_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03248.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03248.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03249_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03249_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03249_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03249_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03249.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03249.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03250_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03250_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03250_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03250_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03250.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03250.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03251_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03251_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03251_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03251_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03251.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03251.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03253.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03253.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03254.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03254.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/lx03255.svg libreoffice-7.4.7/yaru/build/default/svg/res/lx03255.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/lx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/lx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/main128.svg libreoffice-7.4.7/yaru/build/default/svg/res/main128.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/main128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/main128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/mainapp_16.svg libreoffice-7.4.7/yaru/build/default/svg/res/mainapp_16.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/mainapp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/mainapp_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/mainapp_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/mainapp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/mainapp_48_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/mainapp_48_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/mainapp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/mainapp_48.svg libreoffice-7.4.7/yaru/build/default/svg/res/mainapp_48.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/mainapp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/mainapp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/math128.svg libreoffice-7.4.7/yaru/build/default/svg/res/math128.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/math128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/math128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odb_16_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odb_16_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odb_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odb_16.svg libreoffice-7.4.7/yaru/build/default/svg/res/odb_16.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odb_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odb_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odb_32_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odb_32_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odb_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odb_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/odb_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odb_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odb_48_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odb_48_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odb_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odb_48.svg libreoffice-7.4.7/yaru/build/default/svg/res/odb_48.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odb_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odb_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odf_16_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odf_16_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odf_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odf_16.svg libreoffice-7.4.7/yaru/build/default/svg/res/odf_16.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odf_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odf_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odf_32_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odf_32_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odf_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odf_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/odf_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odf_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odf_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odf_48_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odf_48_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odf_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odf_48.svg libreoffice-7.4.7/yaru/build/default/svg/res/odf_48.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odf_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odf_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odg_16_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odg_16_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odg_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odg_16.svg libreoffice-7.4.7/yaru/build/default/svg/res/odg_16.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odg_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odg_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odg_32_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odg_32_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odg_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odg_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/odg_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odg_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odg_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odg_48_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odg_48_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odg_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odg_48.svg libreoffice-7.4.7/yaru/build/default/svg/res/odg_48.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odg_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odg_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odm_16_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odm_16_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odm_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odm_16.svg libreoffice-7.4.7/yaru/build/default/svg/res/odm_16.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odm_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odm_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odm_32_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odm_32_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odm_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odm_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/odm_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odm_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odm_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odm_48_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odm_48_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odm_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odm_48.svg libreoffice-7.4.7/yaru/build/default/svg/res/odm_48.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odm_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odm_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odp_16_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odp_16_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odp_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odp_16.svg libreoffice-7.4.7/yaru/build/default/svg/res/odp_16.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odp_32_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odp_32_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odp_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odp_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/odp_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odp_48_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odp_48_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odp_48.svg libreoffice-7.4.7/yaru/build/default/svg/res/odp_48.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ods_16_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/ods_16_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ods_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ods_16.svg libreoffice-7.4.7/yaru/build/default/svg/res/ods_16.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ods_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ods_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ods_32_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/ods_32_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ods_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ods_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/ods_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ods_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ods_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ods_48_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/ods_48_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ods_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ods_48.svg libreoffice-7.4.7/yaru/build/default/svg/res/ods_48.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ods_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ods_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odt_16_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odt_16_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odt_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odt_16.svg libreoffice-7.4.7/yaru/build/default/svg/res/odt_16.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odt_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odt_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odt_32_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odt_32_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odt_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odt_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/odt_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odt_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odt_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odt_48_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/odt_48_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odt_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/odt_48.svg libreoffice-7.4.7/yaru/build/default/svg/res/odt_48.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/odt_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/odt_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ots_16_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/ots_16_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ots_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ots_16.svg libreoffice-7.4.7/yaru/build/default/svg/res/ots_16.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ots_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ots_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ots_32_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/ots_32_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ots_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ots_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/ots_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ots_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ots_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ots_48_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/ots_48_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ots_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ots_48.svg libreoffice-7.4.7/yaru/build/default/svg/res/ots_48.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ots_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ots_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ott_16_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/ott_16_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ott_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ott_16.svg libreoffice-7.4.7/yaru/build/default/svg/res/ott_16.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ott_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ott_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ott_32_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/ott_32_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ott_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ott_32.svg libreoffice-7.4.7/yaru/build/default/svg/res/ott_32.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ott_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ott_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ott_48_8.svg libreoffice-7.4.7/yaru/build/default/svg/res/ott_48_8.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ott_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/ott_48.svg libreoffice-7.4.7/yaru/build/default/svg/res/ott_48.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/ott_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/ott_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03123.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03123.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03144.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03144.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03144.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03144.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03150.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03150.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03150.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03150.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03245.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03245.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03246.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03246.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03247.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03247.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03248.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03248.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03249.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03249.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03250.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03250.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03251.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03251.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03253.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03253.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03254.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03254.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/sx03255.svg libreoffice-7.4.7/yaru/build/default/svg/res/sx03255.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/sx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/sx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/tipoftheday_c.svg libreoffice-7.4.7/yaru/build/default/svg/res/tipoftheday_c.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/tipoftheday_c.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/tipoftheday_c.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/tipoftheday_d.svg libreoffice-7.4.7/yaru/build/default/svg/res/tipoftheday_d.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/tipoftheday_d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/tipoftheday_d.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/tipoftheday_i.svg libreoffice-7.4.7/yaru/build/default/svg/res/tipoftheday_i.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/tipoftheday_i.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/tipoftheday_i.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/tipoftheday.svg libreoffice-7.4.7/yaru/build/default/svg/res/tipoftheday.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/tipoftheday.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/tipoftheday.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/tipoftheday_w.svg libreoffice-7.4.7/yaru/build/default/svg/res/tipoftheday_w.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/tipoftheday_w.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/tipoftheday_w.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/res/writer128.svg libreoffice-7.4.7/yaru/build/default/svg/res/writer128.svg --- libreoffice-7.4.6/yaru/build/default/svg/res/writer128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/res/writer128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.4.7/yaru/build/default/svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.4.6/yaru/build/default/svg/sfx2/res/128x128_calc_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.4.7/yaru/build/default/svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.4.6/yaru/build/default/svg/sfx2/res/128x128_draw_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.4.7/yaru/build/default/svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.4.6/yaru/build/default/svg/sfx2/res/128x128_impress_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.4.7/yaru/build/default/svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.4.6/yaru/build/default/svg/sfx2/res/128x128_math_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sfx2/res/128x128_math_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.4.7/yaru/build/default/svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.4.6/yaru/build/default/svg/sfx2/res/128x128_writer_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/svx/res/a11y_check_issues_found.svg libreoffice-7.4.7/yaru/build/default/svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.4.6/yaru/build/default/svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/svx/res/a11y_check_issues_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.4.7/yaru/build/default/svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.4.6/yaru/build/default/svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/svx/res/a11y_check_issues_not_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/svx/res/adding-selection.svg libreoffice-7.4.7/yaru/build/default/svg/svx/res/adding-selection.svg --- libreoffice-7.4.6/yaru/build/default/svg/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/svx/res/adding-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/svx/res/block-selection.svg libreoffice-7.4.7/yaru/build/default/svg/svx/res/block-selection.svg --- libreoffice-7.4.6/yaru/build/default/svg/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/svx/res/block-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/svx/res/doc_modified_feedback.svg libreoffice-7.4.7/yaru/build/default/svg/svx/res/doc_modified_feedback.svg --- libreoffice-7.4.6/yaru/build/default/svg/svx/res/doc_modified_feedback.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/svx/res/doc_modified_feedback.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/svx/res/extending-selection.svg libreoffice-7.4.7/yaru/build/default/svg/svx/res/extending-selection.svg --- libreoffice-7.4.6/yaru/build/default/svg/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/svx/res/extending-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/svx/res/standard-selection.svg libreoffice-7.4.7/yaru/build/default/svg/svx/res/standard-selection.svg --- libreoffice-7.4.6/yaru/build/default/svg/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/svx/res/standard-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/doublepage_10x22.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/doublepage_10x22.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/doublepage_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/doublepage_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/doublepage_a_10x22.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/doublepage_a_10x22.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/doublepage_a_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/doublepage_a_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/doublepage_a.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/doublepage_a.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/doublepage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/doublepage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/doublepage.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/doublepage.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/doublepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/doublepage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/emptypage_10x14.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/emptypage_10x14.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/emptypage_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/emptypage_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/emptypage_a_10x14.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/emptypage_a_10x14.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/emptypage_a_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/emptypage_a_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/emptypage_a.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/emptypage_a.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/emptypage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/emptypage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/emptypage.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/emptypage.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/emptypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/emptypage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/sc20236.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/sc20236.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/sc20236.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/sc20236.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/twopages_10x24.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/twopages_10x24.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/twopages_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/twopages_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/twopages_a_10x24.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/twopages_a_10x24.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/twopages_a_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/twopages_a_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/twopages_a.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/twopages_a.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/twopages_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/twopages_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/sw/res/twopages.svg libreoffice-7.4.7/yaru/build/default/svg/sw/res/twopages.svg --- libreoffice-7.4.6/yaru/build/default/svg/sw/res/twopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/sw/res/twopages.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/default/svg/vcl/res/infobox.svg libreoffice-7.4.7/yaru/build/default/svg/vcl/res/infobox.svg --- libreoffice-7.4.6/yaru/build/default/svg/vcl/res/infobox.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/default/svg/vcl/res/infobox.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -i \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/ar/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/ar/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/ar/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/ar/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/32/view100.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/32/view100.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/ar/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/ar/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/ar/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/ar/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/ar/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/ar/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/ar/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/ar/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/ca/lc_underlinedouble.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/ca/lc_underlinedouble.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/ca/lc_underline.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/ca/lc_underline.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/lc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/lc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/lc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/lc_insertbookmark.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/lc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/lc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/lc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/lc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/lc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/lc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/lc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/lc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/sc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/sc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/sc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/sc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/sc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/sc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/sc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/sc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/sc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/sc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/cmd/sc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/cmd/sc_trackchangesbar.png differ diff -Nru libreoffice-7.4.6/yaru/build/magenta/png/links.txt libreoffice-7.4.7/yaru/build/magenta/png/links.txt --- libreoffice-7.4.6/yaru/build/magenta/png/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/png/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.png cmd/lc_recsearch.png res/library_16.png cmd/lc_viewdatasourcebrowser.png res/lx03126.png cmd/32/dbviewtables.png -res/lx03127.png res/ots_32_8.png +res/lx03127.png res/ots_32.png res/lx03130.png res/lx03123.png res/lx03137.png res/lx03125.png res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/odf_32_8.png +res/lx03144.png res/odf_32.png +res/lx03145.png res/odf_32.png res/lx03152.png res/lx03125.png res/lx03153.png res/lx03125.png res/lx03154.png res/lx03125.png res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png +res/lx03156.png res/odt_32.png res/lx03158.png res/lx03125.png res/lx03160.png res/lx03125.png -res/lx03162.png res/odt_32_8.png -res/lx03163.png res/odt_32_8.png +res/lx03162.png res/odt_32.png +res/lx03163.png res/odt_32.png res/lx03165.png cmd/lc_save.png res/lx03167.png cmd/lc_openremote.png res/lx03188.png cmd/32/dbviewtables.png res/lx03189.png cmd/lc_open.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png +res/lx03217.png res/odg_32.png +res/lx03218.png res/odg_32.png res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/odg_32_8.png +res/lx03220.png res/odg_32.png +res/lx03221.png res/odg_32.png +res/lx03222.png res/odg_32.png +res/lx03227.png res/odg_32.png +res/lx03228.png res/odg_32.png res/lx03256.png cmd/lc_insertplugin.png -res/mainapp.png res/newdoc.png -res/mainapp_16.png cmd/sc_showsinglepage.png -res/mainapp_16_8.png cmd/sc_showsinglepage.png -res/mainapp_32.png res/newdoc.png +res/mainapp_16_8.png res/mainapp_16.png +res/mainapp_32_8.png res/mainapp_32.png +res/mainapp_48_8.png res/mainapp_48.png res/notebookbar.png sfx2/res/symphony/open_more.png +res/odb_16_8.png res/odb_16.png +res/odb_32_8.png res/odb_32.png +res/odb_48_8.png res/odb_48.png +res/odf_16_8.png res/odf_16.png +res/odf_32_8.png res/odf_32.png +res/odf_48_8.png res/odf_48.png +res/odg_16_8.png res/odg_16.png +res/odg_32_8.png res/odg_32.png +res/odg_48_8.png res/odg_48.png +res/odm_16_8.png res/odm_16.png +res/odm_32_8.png res/odm_32.png +res/odm_48_8.png res/odm_48.png +res/odp_16_8.png res/odp_16.png +res/odp_32_8.png res/odp_32.png +res/odp_48_8.png res/odp_48.png +res/ods_16_8.png res/ods_16.png +res/ods_32_8.png res/ods_32.png +res/ods_48_8.png res/ods_48.png +res/odt_16_8.png res/odt_16.png +res/odt_32_8.png res/odt_32.png +res/odt_48_8.png res/odt_48.png +res/ots_16_8.png res/ots_16.png +res/ots_32_8.png res/ots_32.png +res/ots_48_8.png res/ots_48.png +res/ott_16_8.png res/ott_16.png +res/ott_32_8.png res/ott_32.png +res/ott_48_8.png res/ott_48.png res/plugin.png cmd/lc_insertplugin.png res/queries_32.png cmd/32/dbviewqueries.png res/reload.png cmd/sc_reload.png @@ -2044,36 +2070,38 @@ res/sc10868.png cmd/sc_grafgamma.png res/sc10869.png cmd/sc_graftransparence.png res/sc_helperdialog.png cmd/sc_helpindex.png +res/sx03123.png res/odp_16.png res/sx03126.png cmd/sc_dbviewtables.png -res/sx03127.png res/ots_16_8.png -res/sx03130.png res/sx03123.png +res/sx03127.png res/ots_16.png +res/sx03130.png res/odp_16.png res/sx03137.png res/sx03125.png res/sx03139.png cmd/sc_questionanswers.png res/sx03140.png res/sx03125.png -res/sx03145.png res/sx03144.png +res/sx03144.png res/odf_16.png +res/sx03145.png res/odf_16.png res/sx03152.png res/sx03125.png res/sx03153.png res/sx03125.png res/sx03154.png res/sx03125.png res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png +res/sx03156.png res/odt_16.png res/sx03158.png res/sx03125.png res/sx03160.png res/sx03125.png -res/sx03162.png res/odt_16_8.png -res/sx03163.png res/odt_16_8.png +res/sx03162.png res/odt_16.png +res/sx03163.png res/odt_16.png res/sx03164.png cmd/sc_open.png res/sx03165.png cmd/sc_save.png res/sx03167.png cmd/sc_openremote.png res/sx03188.png cmd/sc_dbviewtables.png res/sx03189.png cmd/sc_open.png res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png +res/sx03217.png res/odg_16.png +res/sx03218.png res/odg_16.png res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/odg_16_8.png +res/sx03220.png res/odg_16.png +res/sx03221.png res/odg_16.png +res/sx03222.png res/odg_16.png +res/sx03227.png res/odg_16.png +res/sx03228.png res/odg_16.png res/sx03256.png cmd/sc_insertplugin.png res/sx10594.png cmd/sc_pushbutton.png res/sx10595.png cmd/sc_radiobutton.png @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.png cmd/sc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png +sfx2/res/symphony/sidebar-elements-large.png cmd/lc_insertmath.png sfx2/res/symphony/sidebar-functions-large.png cmd/lc_toggleformula.png sfx2/res/symphony/sidebar-functions-small.png cmd/sc_toggleformula.png sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png @@ -2271,6 +2300,8 @@ svx/res/color.png cmd/sc_bmpmask.png svx/res/colordlg.png cmd/sc_graphicfiltersmooth.png svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/doc_modified_no.png cmd/sc_save.png +svx/res/doc_modified_yes.png res/savemodified_small.png svx/res/dsth_cen.png cmd/sc_distributehorzcenter.png svx/res/dsth_dst.png cmd/sc_distributehorzdistance.png svx/res/dsth_hig.png cmd/sc_distributehorzright.png Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/base128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/base128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/base_thumbnail_256.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/base_thumbnail_256.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/calc128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/calc128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/draw128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/draw128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/impress128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/impress128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03126.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03126.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03129.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03129.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03162.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03162.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03245_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03245_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03246_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03246_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03247_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03247_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03248_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03248_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03249_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03249_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03250_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03250_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03251_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03251_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/lx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/lx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/main128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/main128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/mainapp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/mainapp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/mainapp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/mainapp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/mainapp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/mainapp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/mainapp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/mainapp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/math128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/math128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odb_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odb_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odb_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odb_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odb_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odb_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odb_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odb_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odb_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odb_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odb_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odb_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odf_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odf_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odf_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odf_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odf_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odf_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odf_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odf_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odf_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odf_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odf_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odf_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odg_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odg_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odg_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odg_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odg_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odg_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odg_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odg_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odg_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odg_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odg_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odg_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odm_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odm_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odm_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odm_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odm_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odm_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odm_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odm_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odm_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odm_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odm_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odm_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odp_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odp_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odp_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odp_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ods_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ods_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ods_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ods_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ods_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ods_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ods_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ods_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ods_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ods_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ods_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ods_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odt_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odt_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odt_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odt_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odt_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odt_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odt_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odt_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odt_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odt_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/odt_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/odt_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ots_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ots_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ots_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ots_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ots_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ots_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ots_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ots_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ots_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ots_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ots_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ots_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ott_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ott_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ott_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ott_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ott_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ott_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ott_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ott_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ott_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ott_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/ott_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/ott_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03144.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03144.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03150.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03150.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/sx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/sx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/tipoftheday_c.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/tipoftheday_c.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/tipoftheday_d.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/tipoftheday_d.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/tipoftheday_i.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/tipoftheday_i.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/tipoftheday.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/tipoftheday.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/tipoftheday_w.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/tipoftheday_w.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/res/writer128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/res/writer128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sfx2/res/128x128_math_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/svx/res/a11y_check_issues_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/svx/res/a11y_check_issues_not_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/svx/res/adding-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/svx/res/adding-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/svx/res/block-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/svx/res/block-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/svx/res/doc_modified_feedback.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/svx/res/doc_modified_feedback.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/svx/res/extending-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/svx/res/extending-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/svx/res/standard-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/svx/res/standard-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/doublepage_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/doublepage_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/doublepage_a_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/doublepage_a_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/doublepage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/doublepage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/doublepage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/doublepage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/emptypage_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/emptypage_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/emptypage_a_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/emptypage_a_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/emptypage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/emptypage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/emptypage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/emptypage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/sc20236.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/sc20236.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/twopages_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/twopages_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/twopages_a_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/twopages_a_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/twopages_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/twopages_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/sw/res/twopages.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/sw/res/twopages.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/magenta/png/vcl/res/infobox.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/magenta/png/vcl/res/infobox.png differ diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/conehoristack_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/conehoristack_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/conehoristack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/conehoristack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/donut3d_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/donut3d_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/donut3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/donut3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/net_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/net_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/net_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/net_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/netfill_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/netfill_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/netfill_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/netfill_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/netlinepoint_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/netlinepoint_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/netlinepoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/netlinepoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/netlinepointstack_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/netlinepointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/netlinepointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/netlinepointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/netpoint_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/netpoint_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/netpoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/netpoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/netpointstack_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/netpointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/netpointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/netpointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/netstack_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/netstack_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/netstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/netstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/nostackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/nostackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/nostackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/nostackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/nostackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/nostackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/nostackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/nostackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/nostacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/nostacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/nostacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/nostacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/nostacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/nostacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/nostacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/nostacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stackdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stackdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stackdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stacksmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stacksmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stacksmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stacksmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stackstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stackstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stackstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stackstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stacksteppedboth_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stacksteppedboth_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stacksteppedboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stacksteppedboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stacksteppedlines_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stacksteppedlines_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/stacksteppedlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/stacksteppedlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxisdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxisdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxisdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxisdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxisdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxisdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxisdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxisdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxisdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxissmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxissmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxissmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxissmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxissmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxissmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxissmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxisstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxisstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/chart2/res/valueaxisstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/ar/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/ar/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/ar/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/ar/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/ar/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/ar/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/ar/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/ar/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/comparedocuments.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/comparedocuments.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/editcurindex.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/editcurindex.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/footnotedialog.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/footnotedialog.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/insertendnote.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/insertendnote.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/insertfootnote.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/insertfootnote.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/insertindexesentry.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/insertreferencefield.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/saveacopy.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/saveacopy.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/trackchangesbar.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/view100.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/view100.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/32/view100.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/32/view100.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -1 \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/ar/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/ar/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/ar/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/ar/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/ar/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/ar/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/ar/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/ar/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/ar/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/ar/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/ar/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/ar/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/ar/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/ar/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/ar/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/ar/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/ca/lc_underlinedouble.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/ca/lc_underlinedouble.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/ca/lc_underlinedouble.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/ca/lc_underlinedouble.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/ca/lc_underline.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/ca/lc_underline.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/ca/lc_underline.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/ca/lc_underline.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_comparedocuments.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_editcurindex.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_footnotedialog.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_fullscreen.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_fullscreen.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_fullscreen.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_fullscreen.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_insertbookmark.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_insertbookmark.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_insertbookmark.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_insertbookmark.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_insertendnote.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_insertfootnote.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_saveacopy.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/lc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/lc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_comparedocuments.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_editcurindex.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_footnotedialog.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_graftransparence.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_graftransparence.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_graftransparence.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_graftransparence.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_insertendnote.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_insertfootnote.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_saveacopy.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/cmd/sc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/cmd/sc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/links.txt libreoffice-7.4.7/yaru/build/magenta/svg/links.txt --- libreoffice-7.4.6/yaru/build/magenta/svg/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.svg cmd/lc_recsearch.svg res/library_16.svg cmd/lc_viewdatasourcebrowser.svg res/lx03126.svg cmd/32/dbviewtables.svg -res/lx03127.svg res/ots_32_8.svg +res/lx03127.svg res/ots_32.svg res/lx03130.svg res/lx03123.svg res/lx03137.svg res/lx03125.svg res/lx03140.svg res/lx03125.svg -res/lx03144.svg res/odf_32_8.svg -res/lx03145.svg res/odf_32_8.svg +res/lx03144.svg res/odf_32.svg +res/lx03145.svg res/odf_32.svg res/lx03152.svg res/lx03125.svg res/lx03153.svg res/lx03125.svg res/lx03154.svg res/lx03125.svg res/lx03155.svg res/lx03125.svg -res/lx03156.svg res/odt_32_8.svg +res/lx03156.svg res/odt_32.svg res/lx03158.svg res/lx03125.svg res/lx03160.svg res/lx03125.svg -res/lx03162.svg res/odt_32_8.svg -res/lx03163.svg res/odt_32_8.svg +res/lx03162.svg res/odt_32.svg +res/lx03163.svg res/odt_32.svg res/lx03165.svg cmd/lc_save.svg res/lx03167.svg cmd/lc_openremote.svg res/lx03188.svg cmd/32/dbviewtables.svg res/lx03189.svg cmd/lc_open.svg -res/lx03217.svg res/odg_32_8.svg -res/lx03218.svg res/odg_32_8.svg +res/lx03217.svg res/odg_32.svg +res/lx03218.svg res/odg_32.svg res/lx03219.svg res/lx03125.svg -res/lx03220.svg res/odg_32_8.svg -res/lx03221.svg res/odg_32_8.svg -res/lx03222.svg res/odg_32_8.svg -res/lx03227.svg res/odg_32_8.svg -res/lx03228.svg res/odg_32_8.svg +res/lx03220.svg res/odg_32.svg +res/lx03221.svg res/odg_32.svg +res/lx03222.svg res/odg_32.svg +res/lx03227.svg res/odg_32.svg +res/lx03228.svg res/odg_32.svg res/lx03256.svg cmd/lc_insertplugin.svg -res/mainapp.svg res/newdoc.svg -res/mainapp_16.svg cmd/sc_showsinglepage.svg -res/mainapp_16_8.svg cmd/sc_showsinglepage.svg -res/mainapp_32.svg res/newdoc.svg +res/mainapp_16_8.svg res/mainapp_16.svg +res/mainapp_32_8.svg res/mainapp_32.svg +res/mainapp_48_8.svg res/mainapp_48.svg res/notebookbar.svg sfx2/res/symphony/open_more.svg +res/odb_16_8.svg res/odb_16.svg +res/odb_32_8.svg res/odb_32.svg +res/odb_48_8.svg res/odb_48.svg +res/odf_16_8.svg res/odf_16.svg +res/odf_32_8.svg res/odf_32.svg +res/odf_48_8.svg res/odf_48.svg +res/odg_16_8.svg res/odg_16.svg +res/odg_32_8.svg res/odg_32.svg +res/odg_48_8.svg res/odg_48.svg +res/odm_16_8.svg res/odm_16.svg +res/odm_32_8.svg res/odm_32.svg +res/odm_48_8.svg res/odm_48.svg +res/odp_16_8.svg res/odp_16.svg +res/odp_32_8.svg res/odp_32.svg +res/odp_48_8.svg res/odp_48.svg +res/ods_16_8.svg res/ods_16.svg +res/ods_32_8.svg res/ods_32.svg +res/ods_48_8.svg res/ods_48.svg +res/odt_16_8.svg res/odt_16.svg +res/odt_32_8.svg res/odt_32.svg +res/odt_48_8.svg res/odt_48.svg +res/ots_16_8.svg res/ots_16.svg +res/ots_32_8.svg res/ots_32.svg +res/ots_48_8.svg res/ots_48.svg +res/ott_16_8.svg res/ott_16.svg +res/ott_32_8.svg res/ott_32.svg +res/ott_48_8.svg res/ott_48.svg res/plugin.svg cmd/lc_insertplugin.svg res/queries_32.svg cmd/32/dbviewqueries.svg res/reload.svg cmd/sc_reload.svg @@ -2044,36 +2070,38 @@ res/sc10868.svg cmd/sc_grafgamma.svg res/sc10869.svg cmd/sc_graftransparence.svg res/sc_helperdialog.svg cmd/sc_helpindex.svg +res/sx03123.svg res/odp_16.svg res/sx03126.svg cmd/sc_dbviewtables.svg -res/sx03127.svg res/ots_16_8.svg -res/sx03130.svg res/sx03123.svg +res/sx03127.svg res/ots_16.svg +res/sx03130.svg res/odp_16.svg res/sx03137.svg res/sx03125.svg res/sx03139.svg cmd/sc_questionanswers.svg res/sx03140.svg res/sx03125.svg -res/sx03145.svg res/sx03144.svg +res/sx03144.svg res/odf_16.svg +res/sx03145.svg res/odf_16.svg res/sx03152.svg res/sx03125.svg res/sx03153.svg res/sx03125.svg res/sx03154.svg res/sx03125.svg res/sx03155.svg res/sx03125.svg -res/sx03156.svg res/odt_16_8.svg +res/sx03156.svg res/odt_16.svg res/sx03158.svg res/sx03125.svg res/sx03160.svg res/sx03125.svg -res/sx03162.svg res/odt_16_8.svg -res/sx03163.svg res/odt_16_8.svg +res/sx03162.svg res/odt_16.svg +res/sx03163.svg res/odt_16.svg res/sx03164.svg cmd/sc_open.svg res/sx03165.svg cmd/sc_save.svg res/sx03167.svg cmd/sc_openremote.svg res/sx03188.svg cmd/sc_dbviewtables.svg res/sx03189.svg cmd/sc_open.svg res/sx03202.svg cmd/sc_dbviewqueries.svg -res/sx03217.svg res/odg_16_8.svg -res/sx03218.svg res/odg_16_8.svg +res/sx03217.svg res/odg_16.svg +res/sx03218.svg res/odg_16.svg res/sx03219.svg res/sx03125.svg -res/sx03220.svg res/odg_16_8.svg -res/sx03221.svg res/odg_16_8.svg -res/sx03222.svg res/odg_16_8.svg -res/sx03227.svg res/odg_16_8.svg -res/sx03228.svg res/odg_16_8.svg +res/sx03220.svg res/odg_16.svg +res/sx03221.svg res/odg_16.svg +res/sx03222.svg res/odg_16.svg +res/sx03227.svg res/odg_16.svg +res/sx03228.svg res/odg_16.svg res/sx03256.svg cmd/sc_insertplugin.svg res/sx10594.svg cmd/sc_pushbutton.svg res/sx10595.svg cmd/sc_radiobutton.svg @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.svg cmd/sc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-large.svg cmd/lc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-small.svg cmd/sc_bmpmask.svg +sfx2/res/symphony/sidebar-elements-large.svg cmd/lc_insertmath.svg sfx2/res/symphony/sidebar-functions-large.svg cmd/lc_toggleformula.svg sfx2/res/symphony/sidebar-functions-small.svg cmd/sc_toggleformula.svg sfx2/res/symphony/sidebar-gallery-large.svg cmd/lc_gallery.svg @@ -2271,6 +2300,8 @@ svx/res/color.svg cmd/sc_bmpmask.svg svx/res/colordlg.svg cmd/sc_graphicfiltersmooth.svg svx/res/convrt3d.svg cmd/sc_convertinto3d.svg +svx/res/doc_modified_no.svg cmd/sc_save.svg +svx/res/doc_modified_yes.svg res/savemodified_small.svg svx/res/dsth_cen.svg cmd/sc_distributehorzcenter.svg svx/res/dsth_dst.svg cmd/sc_distributehorzdistance.svg svx/res/dsth_hig.svg cmd/sc_distributehorzright.svg diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/base128.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/base128.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/base128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/base128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/base_thumbnail_256.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/base_thumbnail_256.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/base_thumbnail_256.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/base_thumbnail_256.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/calc128.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/calc128.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/calc128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/calc128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/draw128.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/draw128.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/draw128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/draw128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/impress128.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/impress128.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/impress128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/impress128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03123.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03123.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03123.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03126.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03126.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03126.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03126.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03129.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03129.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03129.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03129.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03162.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03162.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03162.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03162.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03245_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03245_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03245_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03245_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03245.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03245.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03246_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03246_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03246_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03246_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03246.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03246.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03247_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03247_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03247_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03247_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03247.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03247.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03248_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03248_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03248_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03248_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03248.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03248.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03249_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03249_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03249_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03249_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03249.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03249.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03250_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03250_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03250_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03250_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03250.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03250.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03251_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03251_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03251_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03251_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03251.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03251.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03253.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03253.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03254.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03254.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03255.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03255.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/lx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/lx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/main128.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/main128.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/main128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/main128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/mainapp_16.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/mainapp_16.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/mainapp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/mainapp_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/mainapp_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/mainapp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/mainapp_48_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/mainapp_48_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/mainapp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/mainapp_48.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/mainapp_48.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/mainapp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/mainapp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/math128.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/math128.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/math128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/math128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odb_16_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odb_16_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odb_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odb_16.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odb_16.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odb_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odb_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odb_32_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odb_32_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odb_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odb_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odb_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odb_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odb_48_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odb_48_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odb_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odb_48.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odb_48.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odb_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odb_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odf_16_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odf_16_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odf_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odf_16.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odf_16.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odf_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odf_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odf_32_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odf_32_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odf_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odf_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odf_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odf_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odf_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odf_48_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odf_48_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odf_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odf_48.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odf_48.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odf_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odf_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odg_16_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odg_16_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odg_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odg_16.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odg_16.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odg_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odg_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odg_32_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odg_32_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odg_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odg_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odg_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odg_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odg_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odg_48_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odg_48_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odg_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odg_48.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odg_48.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odg_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odg_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odm_16_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odm_16_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odm_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odm_16.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odm_16.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odm_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odm_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odm_32_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odm_32_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odm_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odm_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odm_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odm_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odm_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odm_48_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odm_48_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odm_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odm_48.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odm_48.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odm_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odm_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odp_16_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odp_16_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odp_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odp_16.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odp_16.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odp_32_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odp_32_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odp_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odp_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odp_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odp_48_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odp_48_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odp_48.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odp_48.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ods_16_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ods_16_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ods_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ods_16.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ods_16.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ods_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ods_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ods_32_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ods_32_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ods_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ods_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ods_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ods_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ods_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ods_48_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ods_48_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ods_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ods_48.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ods_48.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ods_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ods_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odt_16_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odt_16_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odt_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odt_16.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odt_16.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odt_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odt_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odt_32_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odt_32_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odt_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odt_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odt_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odt_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odt_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odt_48_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odt_48_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odt_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/odt_48.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/odt_48.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/odt_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/odt_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ots_16_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ots_16_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ots_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ots_16.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ots_16.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ots_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ots_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ots_32_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ots_32_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ots_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ots_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ots_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ots_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ots_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ots_48_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ots_48_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ots_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ots_48.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ots_48.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ots_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ots_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ott_16_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ott_16_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ott_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ott_16.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ott_16.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ott_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ott_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ott_32_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ott_32_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ott_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ott_32.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ott_32.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ott_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ott_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ott_48_8.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ott_48_8.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ott_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/ott_48.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/ott_48.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/ott_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/ott_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03123.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03123.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03144.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03144.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03144.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03144.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03150.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03150.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03150.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03150.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03245.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03245.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03246.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03246.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03247.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03247.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03248.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03248.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03249.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03249.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03250.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03250.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03251.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03251.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03253.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03253.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03254.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03254.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03255.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03255.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/sx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/sx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/tipoftheday_c.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/tipoftheday_c.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/tipoftheday_c.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/tipoftheday_c.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/tipoftheday_d.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/tipoftheday_d.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/tipoftheday_d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/tipoftheday_d.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/tipoftheday_i.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/tipoftheday_i.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/tipoftheday_i.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/tipoftheday_i.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/tipoftheday.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/tipoftheday.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/tipoftheday.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/tipoftheday.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/tipoftheday_w.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/tipoftheday_w.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/tipoftheday_w.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/tipoftheday_w.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/res/writer128.svg libreoffice-7.4.7/yaru/build/magenta/svg/res/writer128.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/res/writer128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/res/writer128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.4.7/yaru/build/magenta/svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sfx2/res/128x128_calc_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.4.7/yaru/build/magenta/svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sfx2/res/128x128_draw_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.4.7/yaru/build/magenta/svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sfx2/res/128x128_impress_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.4.7/yaru/build/magenta/svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sfx2/res/128x128_math_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sfx2/res/128x128_math_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.4.7/yaru/build/magenta/svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sfx2/res/128x128_writer_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/a11y_check_issues_found.svg libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/a11y_check_issues_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/a11y_check_issues_not_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/adding-selection.svg libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/adding-selection.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/adding-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/block-selection.svg libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/block-selection.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/block-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/doc_modified_feedback.svg libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/doc_modified_feedback.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/doc_modified_feedback.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/doc_modified_feedback.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/extending-selection.svg libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/extending-selection.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/extending-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/standard-selection.svg libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/standard-selection.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/svx/res/standard-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/doublepage_10x22.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/doublepage_10x22.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/doublepage_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/doublepage_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/doublepage_a_10x22.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/doublepage_a_10x22.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/doublepage_a_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/doublepage_a_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/doublepage_a.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/doublepage_a.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/doublepage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/doublepage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/doublepage.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/doublepage.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/doublepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/doublepage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/emptypage_10x14.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/emptypage_10x14.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/emptypage_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/emptypage_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/emptypage_a_10x14.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/emptypage_a_10x14.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/emptypage_a_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/emptypage_a_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/emptypage_a.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/emptypage_a.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/emptypage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/emptypage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/emptypage.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/emptypage.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/emptypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/emptypage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/sc20236.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/sc20236.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/sc20236.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/sc20236.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/twopages_10x24.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/twopages_10x24.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/twopages_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/twopages_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/twopages_a_10x24.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/twopages_a_10x24.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/twopages_a_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/twopages_a_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/twopages_a.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/twopages_a.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/twopages_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/twopages_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/twopages.svg libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/twopages.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/sw/res/twopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/sw/res/twopages.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/magenta/svg/vcl/res/infobox.svg libreoffice-7.4.7/yaru/build/magenta/svg/vcl/res/infobox.svg --- libreoffice-7.4.6/yaru/build/magenta/svg/vcl/res/infobox.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/magenta/svg/vcl/res/infobox.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -i \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/ar/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/ar/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/ar/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/ar/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/32/view100.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/32/view100.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/ar/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/ar/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/ar/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/ar/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/ar/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/ar/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/ar/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/ar/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/ca/lc_underlinedouble.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/ca/lc_underlinedouble.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/ca/lc_underline.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/ca/lc_underline.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/lc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/lc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/lc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/lc_insertbookmark.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/lc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/lc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/lc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/lc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/lc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/lc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/lc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/lc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/sc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/sc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/sc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/sc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/sc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/sc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/sc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/sc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/sc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/sc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/cmd/sc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/cmd/sc_trackchangesbar.png differ diff -Nru libreoffice-7.4.6/yaru/build/mate/png/links.txt libreoffice-7.4.7/yaru/build/mate/png/links.txt --- libreoffice-7.4.6/yaru/build/mate/png/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/png/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.png cmd/lc_recsearch.png res/library_16.png cmd/lc_viewdatasourcebrowser.png res/lx03126.png cmd/32/dbviewtables.png -res/lx03127.png res/ots_32_8.png +res/lx03127.png res/ots_32.png res/lx03130.png res/lx03123.png res/lx03137.png res/lx03125.png res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/odf_32_8.png +res/lx03144.png res/odf_32.png +res/lx03145.png res/odf_32.png res/lx03152.png res/lx03125.png res/lx03153.png res/lx03125.png res/lx03154.png res/lx03125.png res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png +res/lx03156.png res/odt_32.png res/lx03158.png res/lx03125.png res/lx03160.png res/lx03125.png -res/lx03162.png res/odt_32_8.png -res/lx03163.png res/odt_32_8.png +res/lx03162.png res/odt_32.png +res/lx03163.png res/odt_32.png res/lx03165.png cmd/lc_save.png res/lx03167.png cmd/lc_openremote.png res/lx03188.png cmd/32/dbviewtables.png res/lx03189.png cmd/lc_open.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png +res/lx03217.png res/odg_32.png +res/lx03218.png res/odg_32.png res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/odg_32_8.png +res/lx03220.png res/odg_32.png +res/lx03221.png res/odg_32.png +res/lx03222.png res/odg_32.png +res/lx03227.png res/odg_32.png +res/lx03228.png res/odg_32.png res/lx03256.png cmd/lc_insertplugin.png -res/mainapp.png res/newdoc.png -res/mainapp_16.png cmd/sc_showsinglepage.png -res/mainapp_16_8.png cmd/sc_showsinglepage.png -res/mainapp_32.png res/newdoc.png +res/mainapp_16_8.png res/mainapp_16.png +res/mainapp_32_8.png res/mainapp_32.png +res/mainapp_48_8.png res/mainapp_48.png res/notebookbar.png sfx2/res/symphony/open_more.png +res/odb_16_8.png res/odb_16.png +res/odb_32_8.png res/odb_32.png +res/odb_48_8.png res/odb_48.png +res/odf_16_8.png res/odf_16.png +res/odf_32_8.png res/odf_32.png +res/odf_48_8.png res/odf_48.png +res/odg_16_8.png res/odg_16.png +res/odg_32_8.png res/odg_32.png +res/odg_48_8.png res/odg_48.png +res/odm_16_8.png res/odm_16.png +res/odm_32_8.png res/odm_32.png +res/odm_48_8.png res/odm_48.png +res/odp_16_8.png res/odp_16.png +res/odp_32_8.png res/odp_32.png +res/odp_48_8.png res/odp_48.png +res/ods_16_8.png res/ods_16.png +res/ods_32_8.png res/ods_32.png +res/ods_48_8.png res/ods_48.png +res/odt_16_8.png res/odt_16.png +res/odt_32_8.png res/odt_32.png +res/odt_48_8.png res/odt_48.png +res/ots_16_8.png res/ots_16.png +res/ots_32_8.png res/ots_32.png +res/ots_48_8.png res/ots_48.png +res/ott_16_8.png res/ott_16.png +res/ott_32_8.png res/ott_32.png +res/ott_48_8.png res/ott_48.png res/plugin.png cmd/lc_insertplugin.png res/queries_32.png cmd/32/dbviewqueries.png res/reload.png cmd/sc_reload.png @@ -2044,36 +2070,38 @@ res/sc10868.png cmd/sc_grafgamma.png res/sc10869.png cmd/sc_graftransparence.png res/sc_helperdialog.png cmd/sc_helpindex.png +res/sx03123.png res/odp_16.png res/sx03126.png cmd/sc_dbviewtables.png -res/sx03127.png res/ots_16_8.png -res/sx03130.png res/sx03123.png +res/sx03127.png res/ots_16.png +res/sx03130.png res/odp_16.png res/sx03137.png res/sx03125.png res/sx03139.png cmd/sc_questionanswers.png res/sx03140.png res/sx03125.png -res/sx03145.png res/sx03144.png +res/sx03144.png res/odf_16.png +res/sx03145.png res/odf_16.png res/sx03152.png res/sx03125.png res/sx03153.png res/sx03125.png res/sx03154.png res/sx03125.png res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png +res/sx03156.png res/odt_16.png res/sx03158.png res/sx03125.png res/sx03160.png res/sx03125.png -res/sx03162.png res/odt_16_8.png -res/sx03163.png res/odt_16_8.png +res/sx03162.png res/odt_16.png +res/sx03163.png res/odt_16.png res/sx03164.png cmd/sc_open.png res/sx03165.png cmd/sc_save.png res/sx03167.png cmd/sc_openremote.png res/sx03188.png cmd/sc_dbviewtables.png res/sx03189.png cmd/sc_open.png res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png +res/sx03217.png res/odg_16.png +res/sx03218.png res/odg_16.png res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/odg_16_8.png +res/sx03220.png res/odg_16.png +res/sx03221.png res/odg_16.png +res/sx03222.png res/odg_16.png +res/sx03227.png res/odg_16.png +res/sx03228.png res/odg_16.png res/sx03256.png cmd/sc_insertplugin.png res/sx10594.png cmd/sc_pushbutton.png res/sx10595.png cmd/sc_radiobutton.png @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.png cmd/sc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png +sfx2/res/symphony/sidebar-elements-large.png cmd/lc_insertmath.png sfx2/res/symphony/sidebar-functions-large.png cmd/lc_toggleformula.png sfx2/res/symphony/sidebar-functions-small.png cmd/sc_toggleformula.png sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png @@ -2271,6 +2300,8 @@ svx/res/color.png cmd/sc_bmpmask.png svx/res/colordlg.png cmd/sc_graphicfiltersmooth.png svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/doc_modified_no.png cmd/sc_save.png +svx/res/doc_modified_yes.png res/savemodified_small.png svx/res/dsth_cen.png cmd/sc_distributehorzcenter.png svx/res/dsth_dst.png cmd/sc_distributehorzdistance.png svx/res/dsth_hig.png cmd/sc_distributehorzright.png Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/base128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/base128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/base_thumbnail_256.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/base_thumbnail_256.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/calc128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/calc128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/draw128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/draw128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/impress128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/impress128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03126.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03126.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03129.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03129.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03162.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03162.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03245_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03245_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03246_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03246_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03247_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03247_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03248_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03248_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03249_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03249_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03250_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03250_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03251_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03251_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/lx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/lx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/main128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/main128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/mainapp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/mainapp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/mainapp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/mainapp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/mainapp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/mainapp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/mainapp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/mainapp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/math128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/math128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odb_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odb_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odb_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odb_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odb_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odb_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odb_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odb_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odb_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odb_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odb_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odb_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odf_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odf_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odf_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odf_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odf_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odf_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odf_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odf_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odf_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odf_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odf_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odf_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odg_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odg_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odg_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odg_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odg_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odg_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odg_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odg_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odg_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odg_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odg_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odg_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odm_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odm_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odm_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odm_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odm_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odm_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odm_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odm_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odm_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odm_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odm_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odm_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odp_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odp_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odp_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odp_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ods_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ods_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ods_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ods_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ods_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ods_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ods_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ods_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ods_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ods_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ods_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ods_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odt_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odt_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odt_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odt_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odt_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odt_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odt_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odt_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odt_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odt_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/odt_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/odt_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ots_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ots_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ots_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ots_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ots_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ots_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ots_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ots_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ots_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ots_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ots_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ots_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ott_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ott_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ott_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ott_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ott_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ott_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ott_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ott_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ott_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ott_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/ott_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/ott_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03144.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03144.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03150.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03150.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/sx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/sx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/tipoftheday_c.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/tipoftheday_c.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/tipoftheday_d.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/tipoftheday_d.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/tipoftheday_i.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/tipoftheday_i.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/tipoftheday.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/tipoftheday.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/tipoftheday_w.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/tipoftheday_w.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/res/writer128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/res/writer128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sfx2/res/128x128_math_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/svx/res/a11y_check_issues_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/svx/res/a11y_check_issues_not_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/svx/res/adding-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/svx/res/adding-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/svx/res/block-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/svx/res/block-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/svx/res/doc_modified_feedback.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/svx/res/doc_modified_feedback.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/svx/res/extending-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/svx/res/extending-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/svx/res/standard-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/svx/res/standard-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/doublepage_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/doublepage_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/doublepage_a_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/doublepage_a_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/doublepage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/doublepage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/doublepage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/doublepage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/emptypage_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/emptypage_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/emptypage_a_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/emptypage_a_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/emptypage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/emptypage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/emptypage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/emptypage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/sc20236.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/sc20236.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/twopages_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/twopages_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/twopages_a_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/twopages_a_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/twopages_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/twopages_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/sw/res/twopages.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/sw/res/twopages.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/mate/png/vcl/res/infobox.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/mate/png/vcl/res/infobox.png differ diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/conehoristack_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/conehoristack_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/conehoristack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/conehoristack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/donut3d_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/donut3d_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/donut3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/donut3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/net_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/net_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/net_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/net_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/netfill_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/netfill_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/netfill_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/netfill_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/netlinepoint_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/netlinepoint_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/netlinepoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/netlinepoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/netlinepointstack_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/netlinepointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/netlinepointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/netlinepointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/netpoint_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/netpoint_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/netpoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/netpoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/netpointstack_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/netpointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/netpointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/netpointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/netstack_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/netstack_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/netstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/netstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/nostackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/nostackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/nostackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/nostackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/nostackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/nostackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/nostackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/nostackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/nostacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/nostacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/nostacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/nostacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/nostacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/nostacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/nostacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/nostacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stackdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stackdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stackdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stacksmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stacksmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stacksmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stacksmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stackstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stackstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stackstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stackstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stacksteppedboth_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stacksteppedboth_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stacksteppedboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stacksteppedboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stacksteppedlines_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stacksteppedlines_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/stacksteppedlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/stacksteppedlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxisdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxisdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxisdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxisdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxisdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxisdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxisdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxisdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxisdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxissmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxissmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxissmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxissmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxissmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxissmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxissmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxisstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxisstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/mate/svg/chart2/res/valueaxisstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/ar/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/ar/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/ar/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/ar/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/ar/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/ar/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/ar/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/ar/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/comparedocuments.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/comparedocuments.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/editcurindex.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/editcurindex.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/footnotedialog.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/footnotedialog.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/insertendnote.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/insertendnote.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/insertfootnote.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/insertfootnote.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/insertindexesentry.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/insertreferencefield.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/saveacopy.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/saveacopy.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/trackchangesbar.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/view100.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/view100.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/32/view100.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/32/view100.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -1 \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/ar/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/ar/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/ar/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/ar/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/ar/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/ar/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/ar/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/ar/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/ar/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/ar/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/ar/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/ar/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/ar/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/ar/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/ar/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/ar/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/ca/lc_underlinedouble.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/ca/lc_underlinedouble.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/ca/lc_underlinedouble.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/ca/lc_underlinedouble.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/ca/lc_underline.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/ca/lc_underline.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/ca/lc_underline.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/ca/lc_underline.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_comparedocuments.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_editcurindex.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_footnotedialog.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_fullscreen.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_fullscreen.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_fullscreen.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_fullscreen.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_insertbookmark.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_insertbookmark.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_insertbookmark.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_insertbookmark.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_insertendnote.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_insertfootnote.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_saveacopy.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/lc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/lc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_comparedocuments.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_editcurindex.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_footnotedialog.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_graftransparence.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_graftransparence.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_graftransparence.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_graftransparence.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_insertendnote.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_insertfootnote.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_saveacopy.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/mate/svg/cmd/sc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/cmd/sc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/links.txt libreoffice-7.4.7/yaru/build/mate/svg/links.txt --- libreoffice-7.4.6/yaru/build/mate/svg/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.svg cmd/lc_recsearch.svg res/library_16.svg cmd/lc_viewdatasourcebrowser.svg res/lx03126.svg cmd/32/dbviewtables.svg -res/lx03127.svg res/ots_32_8.svg +res/lx03127.svg res/ots_32.svg res/lx03130.svg res/lx03123.svg res/lx03137.svg res/lx03125.svg res/lx03140.svg res/lx03125.svg -res/lx03144.svg res/odf_32_8.svg -res/lx03145.svg res/odf_32_8.svg +res/lx03144.svg res/odf_32.svg +res/lx03145.svg res/odf_32.svg res/lx03152.svg res/lx03125.svg res/lx03153.svg res/lx03125.svg res/lx03154.svg res/lx03125.svg res/lx03155.svg res/lx03125.svg -res/lx03156.svg res/odt_32_8.svg +res/lx03156.svg res/odt_32.svg res/lx03158.svg res/lx03125.svg res/lx03160.svg res/lx03125.svg -res/lx03162.svg res/odt_32_8.svg -res/lx03163.svg res/odt_32_8.svg +res/lx03162.svg res/odt_32.svg +res/lx03163.svg res/odt_32.svg res/lx03165.svg cmd/lc_save.svg res/lx03167.svg cmd/lc_openremote.svg res/lx03188.svg cmd/32/dbviewtables.svg res/lx03189.svg cmd/lc_open.svg -res/lx03217.svg res/odg_32_8.svg -res/lx03218.svg res/odg_32_8.svg +res/lx03217.svg res/odg_32.svg +res/lx03218.svg res/odg_32.svg res/lx03219.svg res/lx03125.svg -res/lx03220.svg res/odg_32_8.svg -res/lx03221.svg res/odg_32_8.svg -res/lx03222.svg res/odg_32_8.svg -res/lx03227.svg res/odg_32_8.svg -res/lx03228.svg res/odg_32_8.svg +res/lx03220.svg res/odg_32.svg +res/lx03221.svg res/odg_32.svg +res/lx03222.svg res/odg_32.svg +res/lx03227.svg res/odg_32.svg +res/lx03228.svg res/odg_32.svg res/lx03256.svg cmd/lc_insertplugin.svg -res/mainapp.svg res/newdoc.svg -res/mainapp_16.svg cmd/sc_showsinglepage.svg -res/mainapp_16_8.svg cmd/sc_showsinglepage.svg -res/mainapp_32.svg res/newdoc.svg +res/mainapp_16_8.svg res/mainapp_16.svg +res/mainapp_32_8.svg res/mainapp_32.svg +res/mainapp_48_8.svg res/mainapp_48.svg res/notebookbar.svg sfx2/res/symphony/open_more.svg +res/odb_16_8.svg res/odb_16.svg +res/odb_32_8.svg res/odb_32.svg +res/odb_48_8.svg res/odb_48.svg +res/odf_16_8.svg res/odf_16.svg +res/odf_32_8.svg res/odf_32.svg +res/odf_48_8.svg res/odf_48.svg +res/odg_16_8.svg res/odg_16.svg +res/odg_32_8.svg res/odg_32.svg +res/odg_48_8.svg res/odg_48.svg +res/odm_16_8.svg res/odm_16.svg +res/odm_32_8.svg res/odm_32.svg +res/odm_48_8.svg res/odm_48.svg +res/odp_16_8.svg res/odp_16.svg +res/odp_32_8.svg res/odp_32.svg +res/odp_48_8.svg res/odp_48.svg +res/ods_16_8.svg res/ods_16.svg +res/ods_32_8.svg res/ods_32.svg +res/ods_48_8.svg res/ods_48.svg +res/odt_16_8.svg res/odt_16.svg +res/odt_32_8.svg res/odt_32.svg +res/odt_48_8.svg res/odt_48.svg +res/ots_16_8.svg res/ots_16.svg +res/ots_32_8.svg res/ots_32.svg +res/ots_48_8.svg res/ots_48.svg +res/ott_16_8.svg res/ott_16.svg +res/ott_32_8.svg res/ott_32.svg +res/ott_48_8.svg res/ott_48.svg res/plugin.svg cmd/lc_insertplugin.svg res/queries_32.svg cmd/32/dbviewqueries.svg res/reload.svg cmd/sc_reload.svg @@ -2044,36 +2070,38 @@ res/sc10868.svg cmd/sc_grafgamma.svg res/sc10869.svg cmd/sc_graftransparence.svg res/sc_helperdialog.svg cmd/sc_helpindex.svg +res/sx03123.svg res/odp_16.svg res/sx03126.svg cmd/sc_dbviewtables.svg -res/sx03127.svg res/ots_16_8.svg -res/sx03130.svg res/sx03123.svg +res/sx03127.svg res/ots_16.svg +res/sx03130.svg res/odp_16.svg res/sx03137.svg res/sx03125.svg res/sx03139.svg cmd/sc_questionanswers.svg res/sx03140.svg res/sx03125.svg -res/sx03145.svg res/sx03144.svg +res/sx03144.svg res/odf_16.svg +res/sx03145.svg res/odf_16.svg res/sx03152.svg res/sx03125.svg res/sx03153.svg res/sx03125.svg res/sx03154.svg res/sx03125.svg res/sx03155.svg res/sx03125.svg -res/sx03156.svg res/odt_16_8.svg +res/sx03156.svg res/odt_16.svg res/sx03158.svg res/sx03125.svg res/sx03160.svg res/sx03125.svg -res/sx03162.svg res/odt_16_8.svg -res/sx03163.svg res/odt_16_8.svg +res/sx03162.svg res/odt_16.svg +res/sx03163.svg res/odt_16.svg res/sx03164.svg cmd/sc_open.svg res/sx03165.svg cmd/sc_save.svg res/sx03167.svg cmd/sc_openremote.svg res/sx03188.svg cmd/sc_dbviewtables.svg res/sx03189.svg cmd/sc_open.svg res/sx03202.svg cmd/sc_dbviewqueries.svg -res/sx03217.svg res/odg_16_8.svg -res/sx03218.svg res/odg_16_8.svg +res/sx03217.svg res/odg_16.svg +res/sx03218.svg res/odg_16.svg res/sx03219.svg res/sx03125.svg -res/sx03220.svg res/odg_16_8.svg -res/sx03221.svg res/odg_16_8.svg -res/sx03222.svg res/odg_16_8.svg -res/sx03227.svg res/odg_16_8.svg -res/sx03228.svg res/odg_16_8.svg +res/sx03220.svg res/odg_16.svg +res/sx03221.svg res/odg_16.svg +res/sx03222.svg res/odg_16.svg +res/sx03227.svg res/odg_16.svg +res/sx03228.svg res/odg_16.svg res/sx03256.svg cmd/sc_insertplugin.svg res/sx10594.svg cmd/sc_pushbutton.svg res/sx10595.svg cmd/sc_radiobutton.svg @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.svg cmd/sc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-large.svg cmd/lc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-small.svg cmd/sc_bmpmask.svg +sfx2/res/symphony/sidebar-elements-large.svg cmd/lc_insertmath.svg sfx2/res/symphony/sidebar-functions-large.svg cmd/lc_toggleformula.svg sfx2/res/symphony/sidebar-functions-small.svg cmd/sc_toggleformula.svg sfx2/res/symphony/sidebar-gallery-large.svg cmd/lc_gallery.svg @@ -2271,6 +2300,8 @@ svx/res/color.svg cmd/sc_bmpmask.svg svx/res/colordlg.svg cmd/sc_graphicfiltersmooth.svg svx/res/convrt3d.svg cmd/sc_convertinto3d.svg +svx/res/doc_modified_no.svg cmd/sc_save.svg +svx/res/doc_modified_yes.svg res/savemodified_small.svg svx/res/dsth_cen.svg cmd/sc_distributehorzcenter.svg svx/res/dsth_dst.svg cmd/sc_distributehorzdistance.svg svx/res/dsth_hig.svg cmd/sc_distributehorzright.svg diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/base128.svg libreoffice-7.4.7/yaru/build/mate/svg/res/base128.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/base128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/base128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/base_thumbnail_256.svg libreoffice-7.4.7/yaru/build/mate/svg/res/base_thumbnail_256.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/base_thumbnail_256.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/base_thumbnail_256.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/calc128.svg libreoffice-7.4.7/yaru/build/mate/svg/res/calc128.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/calc128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/calc128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/draw128.svg libreoffice-7.4.7/yaru/build/mate/svg/res/draw128.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/draw128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/draw128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/impress128.svg libreoffice-7.4.7/yaru/build/mate/svg/res/impress128.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/impress128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/impress128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03123.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03123.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03123.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03126.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03126.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03126.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03126.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03129.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03129.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03129.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03129.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03162.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03162.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03162.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03162.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03245_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03245_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03245_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03245_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03245.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03245.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03246_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03246_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03246_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03246_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03246.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03246.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03247_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03247_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03247_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03247_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03247.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03247.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03248_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03248_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03248_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03248_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03248.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03248.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03249_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03249_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03249_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03249_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03249.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03249.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03250_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03250_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03250_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03250_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03250.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03250.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03251_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03251_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03251_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03251_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03251.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03251.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03253.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03253.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03254.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03254.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/lx03255.svg libreoffice-7.4.7/yaru/build/mate/svg/res/lx03255.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/lx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/lx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/main128.svg libreoffice-7.4.7/yaru/build/mate/svg/res/main128.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/main128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/main128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/mainapp_16.svg libreoffice-7.4.7/yaru/build/mate/svg/res/mainapp_16.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/mainapp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/mainapp_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/mainapp_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/mainapp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/mainapp_48_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/mainapp_48_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/mainapp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/mainapp_48.svg libreoffice-7.4.7/yaru/build/mate/svg/res/mainapp_48.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/mainapp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/mainapp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/math128.svg libreoffice-7.4.7/yaru/build/mate/svg/res/math128.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/math128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/math128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odb_16_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odb_16_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odb_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odb_16.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odb_16.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odb_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odb_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odb_32_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odb_32_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odb_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odb_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odb_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odb_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odb_48_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odb_48_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odb_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odb_48.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odb_48.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odb_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odb_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odf_16_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odf_16_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odf_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odf_16.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odf_16.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odf_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odf_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odf_32_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odf_32_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odf_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odf_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odf_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odf_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odf_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odf_48_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odf_48_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odf_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odf_48.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odf_48.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odf_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odf_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odg_16_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odg_16_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odg_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odg_16.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odg_16.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odg_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odg_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odg_32_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odg_32_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odg_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odg_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odg_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odg_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odg_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odg_48_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odg_48_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odg_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odg_48.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odg_48.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odg_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odg_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odm_16_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odm_16_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odm_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odm_16.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odm_16.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odm_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odm_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odm_32_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odm_32_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odm_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odm_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odm_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odm_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odm_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odm_48_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odm_48_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odm_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odm_48.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odm_48.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odm_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odm_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odp_16_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odp_16_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odp_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odp_16.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odp_16.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odp_32_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odp_32_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odp_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odp_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odp_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odp_48_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odp_48_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odp_48.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odp_48.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ods_16_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ods_16_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ods_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ods_16.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ods_16.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ods_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ods_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ods_32_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ods_32_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ods_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ods_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ods_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ods_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ods_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ods_48_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ods_48_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ods_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ods_48.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ods_48.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ods_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ods_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odt_16_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odt_16_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odt_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odt_16.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odt_16.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odt_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odt_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odt_32_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odt_32_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odt_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odt_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odt_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odt_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odt_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odt_48_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odt_48_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odt_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/odt_48.svg libreoffice-7.4.7/yaru/build/mate/svg/res/odt_48.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/odt_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/odt_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ots_16_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ots_16_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ots_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ots_16.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ots_16.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ots_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ots_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ots_32_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ots_32_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ots_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ots_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ots_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ots_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ots_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ots_48_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ots_48_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ots_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ots_48.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ots_48.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ots_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ots_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ott_16_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ott_16_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ott_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ott_16.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ott_16.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ott_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ott_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ott_32_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ott_32_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ott_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ott_32.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ott_32.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ott_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ott_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ott_48_8.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ott_48_8.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ott_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/ott_48.svg libreoffice-7.4.7/yaru/build/mate/svg/res/ott_48.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/ott_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/ott_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03123.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03123.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03144.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03144.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03144.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03144.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03150.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03150.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03150.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03150.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03245.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03245.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03246.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03246.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03247.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03247.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03248.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03248.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03249.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03249.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03250.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03250.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03251.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03251.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03253.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03253.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03254.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03254.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/sx03255.svg libreoffice-7.4.7/yaru/build/mate/svg/res/sx03255.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/sx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/sx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/tipoftheday_c.svg libreoffice-7.4.7/yaru/build/mate/svg/res/tipoftheday_c.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/tipoftheday_c.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/tipoftheday_c.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/tipoftheday_d.svg libreoffice-7.4.7/yaru/build/mate/svg/res/tipoftheday_d.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/tipoftheday_d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/tipoftheday_d.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/tipoftheday_i.svg libreoffice-7.4.7/yaru/build/mate/svg/res/tipoftheday_i.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/tipoftheday_i.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/tipoftheday_i.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/tipoftheday.svg libreoffice-7.4.7/yaru/build/mate/svg/res/tipoftheday.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/tipoftheday.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/tipoftheday.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/tipoftheday_w.svg libreoffice-7.4.7/yaru/build/mate/svg/res/tipoftheday_w.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/tipoftheday_w.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/tipoftheday_w.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/res/writer128.svg libreoffice-7.4.7/yaru/build/mate/svg/res/writer128.svg --- libreoffice-7.4.6/yaru/build/mate/svg/res/writer128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/res/writer128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.4.7/yaru/build/mate/svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sfx2/res/128x128_calc_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.4.7/yaru/build/mate/svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sfx2/res/128x128_draw_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.4.7/yaru/build/mate/svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sfx2/res/128x128_impress_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.4.7/yaru/build/mate/svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sfx2/res/128x128_math_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sfx2/res/128x128_math_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.4.7/yaru/build/mate/svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sfx2/res/128x128_writer_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/svx/res/a11y_check_issues_found.svg libreoffice-7.4.7/yaru/build/mate/svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.4.6/yaru/build/mate/svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/svx/res/a11y_check_issues_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.4.7/yaru/build/mate/svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.4.6/yaru/build/mate/svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/svx/res/a11y_check_issues_not_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/svx/res/adding-selection.svg libreoffice-7.4.7/yaru/build/mate/svg/svx/res/adding-selection.svg --- libreoffice-7.4.6/yaru/build/mate/svg/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/svx/res/adding-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/svx/res/block-selection.svg libreoffice-7.4.7/yaru/build/mate/svg/svx/res/block-selection.svg --- libreoffice-7.4.6/yaru/build/mate/svg/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/svx/res/block-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/svx/res/doc_modified_feedback.svg libreoffice-7.4.7/yaru/build/mate/svg/svx/res/doc_modified_feedback.svg --- libreoffice-7.4.6/yaru/build/mate/svg/svx/res/doc_modified_feedback.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/svx/res/doc_modified_feedback.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/svx/res/extending-selection.svg libreoffice-7.4.7/yaru/build/mate/svg/svx/res/extending-selection.svg --- libreoffice-7.4.6/yaru/build/mate/svg/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/svx/res/extending-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/svx/res/standard-selection.svg libreoffice-7.4.7/yaru/build/mate/svg/svx/res/standard-selection.svg --- libreoffice-7.4.6/yaru/build/mate/svg/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/svx/res/standard-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/doublepage_10x22.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/doublepage_10x22.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/doublepage_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/doublepage_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/doublepage_a_10x22.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/doublepage_a_10x22.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/doublepage_a_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/doublepage_a_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/doublepage_a.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/doublepage_a.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/doublepage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/doublepage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/doublepage.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/doublepage.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/doublepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/doublepage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/emptypage_10x14.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/emptypage_10x14.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/emptypage_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/emptypage_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/emptypage_a_10x14.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/emptypage_a_10x14.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/emptypage_a_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/emptypage_a_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/emptypage_a.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/emptypage_a.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/emptypage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/emptypage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/emptypage.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/emptypage.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/emptypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/emptypage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/sc20236.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/sc20236.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/sc20236.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/sc20236.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/twopages_10x24.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/twopages_10x24.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/twopages_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/twopages_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/twopages_a_10x24.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/twopages_a_10x24.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/twopages_a_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/twopages_a_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/twopages_a.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/twopages_a.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/twopages_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/twopages_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/sw/res/twopages.svg libreoffice-7.4.7/yaru/build/mate/svg/sw/res/twopages.svg --- libreoffice-7.4.6/yaru/build/mate/svg/sw/res/twopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/sw/res/twopages.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/mate/svg/vcl/res/infobox.svg libreoffice-7.4.7/yaru/build/mate/svg/vcl/res/infobox.svg --- libreoffice-7.4.6/yaru/build/mate/svg/vcl/res/infobox.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/mate/svg/vcl/res/infobox.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -i \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/ar/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/ar/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/ar/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/ar/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/32/view100.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/32/view100.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/ar/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/ar/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/ar/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/ar/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/ar/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/ar/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/ar/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/ar/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/ca/lc_underlinedouble.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/ca/lc_underlinedouble.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/ca/lc_underline.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/ca/lc_underline.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/lc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/lc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/lc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/lc_insertbookmark.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/lc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/lc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/lc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/lc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/lc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/lc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/lc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/lc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/sc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/sc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/sc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/sc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/sc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/sc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/sc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/sc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/sc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/sc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/cmd/sc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/cmd/sc_trackchangesbar.png differ diff -Nru libreoffice-7.4.6/yaru/build/olive/png/links.txt libreoffice-7.4.7/yaru/build/olive/png/links.txt --- libreoffice-7.4.6/yaru/build/olive/png/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/png/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.png cmd/lc_recsearch.png res/library_16.png cmd/lc_viewdatasourcebrowser.png res/lx03126.png cmd/32/dbviewtables.png -res/lx03127.png res/ots_32_8.png +res/lx03127.png res/ots_32.png res/lx03130.png res/lx03123.png res/lx03137.png res/lx03125.png res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/odf_32_8.png +res/lx03144.png res/odf_32.png +res/lx03145.png res/odf_32.png res/lx03152.png res/lx03125.png res/lx03153.png res/lx03125.png res/lx03154.png res/lx03125.png res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png +res/lx03156.png res/odt_32.png res/lx03158.png res/lx03125.png res/lx03160.png res/lx03125.png -res/lx03162.png res/odt_32_8.png -res/lx03163.png res/odt_32_8.png +res/lx03162.png res/odt_32.png +res/lx03163.png res/odt_32.png res/lx03165.png cmd/lc_save.png res/lx03167.png cmd/lc_openremote.png res/lx03188.png cmd/32/dbviewtables.png res/lx03189.png cmd/lc_open.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png +res/lx03217.png res/odg_32.png +res/lx03218.png res/odg_32.png res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/odg_32_8.png +res/lx03220.png res/odg_32.png +res/lx03221.png res/odg_32.png +res/lx03222.png res/odg_32.png +res/lx03227.png res/odg_32.png +res/lx03228.png res/odg_32.png res/lx03256.png cmd/lc_insertplugin.png -res/mainapp.png res/newdoc.png -res/mainapp_16.png cmd/sc_showsinglepage.png -res/mainapp_16_8.png cmd/sc_showsinglepage.png -res/mainapp_32.png res/newdoc.png +res/mainapp_16_8.png res/mainapp_16.png +res/mainapp_32_8.png res/mainapp_32.png +res/mainapp_48_8.png res/mainapp_48.png res/notebookbar.png sfx2/res/symphony/open_more.png +res/odb_16_8.png res/odb_16.png +res/odb_32_8.png res/odb_32.png +res/odb_48_8.png res/odb_48.png +res/odf_16_8.png res/odf_16.png +res/odf_32_8.png res/odf_32.png +res/odf_48_8.png res/odf_48.png +res/odg_16_8.png res/odg_16.png +res/odg_32_8.png res/odg_32.png +res/odg_48_8.png res/odg_48.png +res/odm_16_8.png res/odm_16.png +res/odm_32_8.png res/odm_32.png +res/odm_48_8.png res/odm_48.png +res/odp_16_8.png res/odp_16.png +res/odp_32_8.png res/odp_32.png +res/odp_48_8.png res/odp_48.png +res/ods_16_8.png res/ods_16.png +res/ods_32_8.png res/ods_32.png +res/ods_48_8.png res/ods_48.png +res/odt_16_8.png res/odt_16.png +res/odt_32_8.png res/odt_32.png +res/odt_48_8.png res/odt_48.png +res/ots_16_8.png res/ots_16.png +res/ots_32_8.png res/ots_32.png +res/ots_48_8.png res/ots_48.png +res/ott_16_8.png res/ott_16.png +res/ott_32_8.png res/ott_32.png +res/ott_48_8.png res/ott_48.png res/plugin.png cmd/lc_insertplugin.png res/queries_32.png cmd/32/dbviewqueries.png res/reload.png cmd/sc_reload.png @@ -2044,36 +2070,38 @@ res/sc10868.png cmd/sc_grafgamma.png res/sc10869.png cmd/sc_graftransparence.png res/sc_helperdialog.png cmd/sc_helpindex.png +res/sx03123.png res/odp_16.png res/sx03126.png cmd/sc_dbviewtables.png -res/sx03127.png res/ots_16_8.png -res/sx03130.png res/sx03123.png +res/sx03127.png res/ots_16.png +res/sx03130.png res/odp_16.png res/sx03137.png res/sx03125.png res/sx03139.png cmd/sc_questionanswers.png res/sx03140.png res/sx03125.png -res/sx03145.png res/sx03144.png +res/sx03144.png res/odf_16.png +res/sx03145.png res/odf_16.png res/sx03152.png res/sx03125.png res/sx03153.png res/sx03125.png res/sx03154.png res/sx03125.png res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png +res/sx03156.png res/odt_16.png res/sx03158.png res/sx03125.png res/sx03160.png res/sx03125.png -res/sx03162.png res/odt_16_8.png -res/sx03163.png res/odt_16_8.png +res/sx03162.png res/odt_16.png +res/sx03163.png res/odt_16.png res/sx03164.png cmd/sc_open.png res/sx03165.png cmd/sc_save.png res/sx03167.png cmd/sc_openremote.png res/sx03188.png cmd/sc_dbviewtables.png res/sx03189.png cmd/sc_open.png res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png +res/sx03217.png res/odg_16.png +res/sx03218.png res/odg_16.png res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/odg_16_8.png +res/sx03220.png res/odg_16.png +res/sx03221.png res/odg_16.png +res/sx03222.png res/odg_16.png +res/sx03227.png res/odg_16.png +res/sx03228.png res/odg_16.png res/sx03256.png cmd/sc_insertplugin.png res/sx10594.png cmd/sc_pushbutton.png res/sx10595.png cmd/sc_radiobutton.png @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.png cmd/sc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png +sfx2/res/symphony/sidebar-elements-large.png cmd/lc_insertmath.png sfx2/res/symphony/sidebar-functions-large.png cmd/lc_toggleformula.png sfx2/res/symphony/sidebar-functions-small.png cmd/sc_toggleformula.png sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png @@ -2271,6 +2300,8 @@ svx/res/color.png cmd/sc_bmpmask.png svx/res/colordlg.png cmd/sc_graphicfiltersmooth.png svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/doc_modified_no.png cmd/sc_save.png +svx/res/doc_modified_yes.png res/savemodified_small.png svx/res/dsth_cen.png cmd/sc_distributehorzcenter.png svx/res/dsth_dst.png cmd/sc_distributehorzdistance.png svx/res/dsth_hig.png cmd/sc_distributehorzright.png Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/base128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/base128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/base_thumbnail_256.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/base_thumbnail_256.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/calc128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/calc128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/draw128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/draw128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/impress128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/impress128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03126.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03126.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03129.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03129.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03162.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03162.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03245_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03245_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03246_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03246_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03247_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03247_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03248_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03248_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03249_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03249_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03250_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03250_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03251_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03251_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/lx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/lx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/main128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/main128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/mainapp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/mainapp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/mainapp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/mainapp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/mainapp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/mainapp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/mainapp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/mainapp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/math128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/math128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odb_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odb_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odb_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odb_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odb_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odb_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odb_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odb_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odb_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odb_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odb_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odb_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odf_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odf_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odf_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odf_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odf_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odf_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odf_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odf_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odf_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odf_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odf_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odf_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odg_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odg_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odg_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odg_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odg_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odg_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odg_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odg_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odg_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odg_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odg_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odg_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odm_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odm_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odm_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odm_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odm_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odm_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odm_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odm_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odm_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odm_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odm_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odm_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odp_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odp_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odp_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odp_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ods_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ods_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ods_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ods_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ods_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ods_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ods_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ods_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ods_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ods_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ods_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ods_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odt_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odt_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odt_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odt_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odt_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odt_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odt_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odt_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odt_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odt_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/odt_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/odt_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ots_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ots_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ots_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ots_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ots_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ots_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ots_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ots_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ots_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ots_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ots_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ots_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ott_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ott_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ott_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ott_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ott_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ott_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ott_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ott_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ott_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ott_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/ott_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/ott_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03144.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03144.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03150.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03150.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/sx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/sx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/tipoftheday_c.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/tipoftheday_c.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/tipoftheday_d.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/tipoftheday_d.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/tipoftheday_i.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/tipoftheday_i.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/tipoftheday.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/tipoftheday.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/tipoftheday_w.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/tipoftheday_w.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/res/writer128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/res/writer128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sfx2/res/128x128_math_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/svx/res/a11y_check_issues_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/svx/res/a11y_check_issues_not_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/svx/res/adding-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/svx/res/adding-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/svx/res/block-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/svx/res/block-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/svx/res/doc_modified_feedback.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/svx/res/doc_modified_feedback.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/svx/res/extending-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/svx/res/extending-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/svx/res/standard-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/svx/res/standard-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/doublepage_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/doublepage_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/doublepage_a_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/doublepage_a_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/doublepage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/doublepage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/doublepage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/doublepage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/emptypage_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/emptypage_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/emptypage_a_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/emptypage_a_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/emptypage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/emptypage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/emptypage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/emptypage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/sc20236.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/sc20236.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/twopages_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/twopages_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/twopages_a_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/twopages_a_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/twopages_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/twopages_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/sw/res/twopages.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/sw/res/twopages.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/olive/png/vcl/res/infobox.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/olive/png/vcl/res/infobox.png differ diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/conehoristack_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/conehoristack_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/conehoristack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/conehoristack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/donut3d_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/donut3d_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/donut3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/donut3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/net_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/net_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/net_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/net_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/netfill_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/netfill_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/netfill_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/netfill_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/netlinepoint_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/netlinepoint_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/netlinepoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/netlinepoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/netlinepointstack_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/netlinepointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/netlinepointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/netlinepointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/netpoint_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/netpoint_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/netpoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/netpoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/netpointstack_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/netpointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/netpointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/netpointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/netstack_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/netstack_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/netstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/netstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/nostackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/nostackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/nostackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/nostackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/nostackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/nostackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/nostackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/nostackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/nostacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/nostacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/nostacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/nostacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/nostacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/nostacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/nostacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/nostacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stackdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stackdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stackdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stacksmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stacksmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stacksmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stacksmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stackstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stackstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stackstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stackstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stacksteppedboth_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stacksteppedboth_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stacksteppedboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stacksteppedboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stacksteppedlines_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stacksteppedlines_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/stacksteppedlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/stacksteppedlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxisdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxisdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxisdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxisdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxisdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxisdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxisdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxisdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxisdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxissmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxissmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxissmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxissmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxissmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxissmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxissmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxisstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxisstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/olive/svg/chart2/res/valueaxisstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/ar/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/ar/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/ar/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/ar/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/ar/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/ar/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/ar/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/ar/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/comparedocuments.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/comparedocuments.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/editcurindex.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/editcurindex.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/footnotedialog.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/footnotedialog.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/insertendnote.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/insertendnote.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/insertfootnote.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/insertfootnote.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/insertindexesentry.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/insertreferencefield.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/saveacopy.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/saveacopy.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/trackchangesbar.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/view100.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/view100.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/32/view100.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/32/view100.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -1 \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/ar/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/ar/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/ar/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/ar/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/ar/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/ar/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/ar/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/ar/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/ar/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/ar/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/ar/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/ar/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/ar/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/ar/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/ar/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/ar/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/ca/lc_underlinedouble.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/ca/lc_underlinedouble.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/ca/lc_underlinedouble.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/ca/lc_underlinedouble.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/ca/lc_underline.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/ca/lc_underline.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/ca/lc_underline.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/ca/lc_underline.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_comparedocuments.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_editcurindex.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_footnotedialog.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_fullscreen.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_fullscreen.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_fullscreen.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_fullscreen.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_insertbookmark.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_insertbookmark.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_insertbookmark.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_insertbookmark.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_insertendnote.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_insertfootnote.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_saveacopy.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/lc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/lc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_comparedocuments.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_editcurindex.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_footnotedialog.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_graftransparence.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_graftransparence.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_graftransparence.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_graftransparence.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_insertendnote.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_insertfootnote.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_saveacopy.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/olive/svg/cmd/sc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/cmd/sc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/links.txt libreoffice-7.4.7/yaru/build/olive/svg/links.txt --- libreoffice-7.4.6/yaru/build/olive/svg/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.svg cmd/lc_recsearch.svg res/library_16.svg cmd/lc_viewdatasourcebrowser.svg res/lx03126.svg cmd/32/dbviewtables.svg -res/lx03127.svg res/ots_32_8.svg +res/lx03127.svg res/ots_32.svg res/lx03130.svg res/lx03123.svg res/lx03137.svg res/lx03125.svg res/lx03140.svg res/lx03125.svg -res/lx03144.svg res/odf_32_8.svg -res/lx03145.svg res/odf_32_8.svg +res/lx03144.svg res/odf_32.svg +res/lx03145.svg res/odf_32.svg res/lx03152.svg res/lx03125.svg res/lx03153.svg res/lx03125.svg res/lx03154.svg res/lx03125.svg res/lx03155.svg res/lx03125.svg -res/lx03156.svg res/odt_32_8.svg +res/lx03156.svg res/odt_32.svg res/lx03158.svg res/lx03125.svg res/lx03160.svg res/lx03125.svg -res/lx03162.svg res/odt_32_8.svg -res/lx03163.svg res/odt_32_8.svg +res/lx03162.svg res/odt_32.svg +res/lx03163.svg res/odt_32.svg res/lx03165.svg cmd/lc_save.svg res/lx03167.svg cmd/lc_openremote.svg res/lx03188.svg cmd/32/dbviewtables.svg res/lx03189.svg cmd/lc_open.svg -res/lx03217.svg res/odg_32_8.svg -res/lx03218.svg res/odg_32_8.svg +res/lx03217.svg res/odg_32.svg +res/lx03218.svg res/odg_32.svg res/lx03219.svg res/lx03125.svg -res/lx03220.svg res/odg_32_8.svg -res/lx03221.svg res/odg_32_8.svg -res/lx03222.svg res/odg_32_8.svg -res/lx03227.svg res/odg_32_8.svg -res/lx03228.svg res/odg_32_8.svg +res/lx03220.svg res/odg_32.svg +res/lx03221.svg res/odg_32.svg +res/lx03222.svg res/odg_32.svg +res/lx03227.svg res/odg_32.svg +res/lx03228.svg res/odg_32.svg res/lx03256.svg cmd/lc_insertplugin.svg -res/mainapp.svg res/newdoc.svg -res/mainapp_16.svg cmd/sc_showsinglepage.svg -res/mainapp_16_8.svg cmd/sc_showsinglepage.svg -res/mainapp_32.svg res/newdoc.svg +res/mainapp_16_8.svg res/mainapp_16.svg +res/mainapp_32_8.svg res/mainapp_32.svg +res/mainapp_48_8.svg res/mainapp_48.svg res/notebookbar.svg sfx2/res/symphony/open_more.svg +res/odb_16_8.svg res/odb_16.svg +res/odb_32_8.svg res/odb_32.svg +res/odb_48_8.svg res/odb_48.svg +res/odf_16_8.svg res/odf_16.svg +res/odf_32_8.svg res/odf_32.svg +res/odf_48_8.svg res/odf_48.svg +res/odg_16_8.svg res/odg_16.svg +res/odg_32_8.svg res/odg_32.svg +res/odg_48_8.svg res/odg_48.svg +res/odm_16_8.svg res/odm_16.svg +res/odm_32_8.svg res/odm_32.svg +res/odm_48_8.svg res/odm_48.svg +res/odp_16_8.svg res/odp_16.svg +res/odp_32_8.svg res/odp_32.svg +res/odp_48_8.svg res/odp_48.svg +res/ods_16_8.svg res/ods_16.svg +res/ods_32_8.svg res/ods_32.svg +res/ods_48_8.svg res/ods_48.svg +res/odt_16_8.svg res/odt_16.svg +res/odt_32_8.svg res/odt_32.svg +res/odt_48_8.svg res/odt_48.svg +res/ots_16_8.svg res/ots_16.svg +res/ots_32_8.svg res/ots_32.svg +res/ots_48_8.svg res/ots_48.svg +res/ott_16_8.svg res/ott_16.svg +res/ott_32_8.svg res/ott_32.svg +res/ott_48_8.svg res/ott_48.svg res/plugin.svg cmd/lc_insertplugin.svg res/queries_32.svg cmd/32/dbviewqueries.svg res/reload.svg cmd/sc_reload.svg @@ -2044,36 +2070,38 @@ res/sc10868.svg cmd/sc_grafgamma.svg res/sc10869.svg cmd/sc_graftransparence.svg res/sc_helperdialog.svg cmd/sc_helpindex.svg +res/sx03123.svg res/odp_16.svg res/sx03126.svg cmd/sc_dbviewtables.svg -res/sx03127.svg res/ots_16_8.svg -res/sx03130.svg res/sx03123.svg +res/sx03127.svg res/ots_16.svg +res/sx03130.svg res/odp_16.svg res/sx03137.svg res/sx03125.svg res/sx03139.svg cmd/sc_questionanswers.svg res/sx03140.svg res/sx03125.svg -res/sx03145.svg res/sx03144.svg +res/sx03144.svg res/odf_16.svg +res/sx03145.svg res/odf_16.svg res/sx03152.svg res/sx03125.svg res/sx03153.svg res/sx03125.svg res/sx03154.svg res/sx03125.svg res/sx03155.svg res/sx03125.svg -res/sx03156.svg res/odt_16_8.svg +res/sx03156.svg res/odt_16.svg res/sx03158.svg res/sx03125.svg res/sx03160.svg res/sx03125.svg -res/sx03162.svg res/odt_16_8.svg -res/sx03163.svg res/odt_16_8.svg +res/sx03162.svg res/odt_16.svg +res/sx03163.svg res/odt_16.svg res/sx03164.svg cmd/sc_open.svg res/sx03165.svg cmd/sc_save.svg res/sx03167.svg cmd/sc_openremote.svg res/sx03188.svg cmd/sc_dbviewtables.svg res/sx03189.svg cmd/sc_open.svg res/sx03202.svg cmd/sc_dbviewqueries.svg -res/sx03217.svg res/odg_16_8.svg -res/sx03218.svg res/odg_16_8.svg +res/sx03217.svg res/odg_16.svg +res/sx03218.svg res/odg_16.svg res/sx03219.svg res/sx03125.svg -res/sx03220.svg res/odg_16_8.svg -res/sx03221.svg res/odg_16_8.svg -res/sx03222.svg res/odg_16_8.svg -res/sx03227.svg res/odg_16_8.svg -res/sx03228.svg res/odg_16_8.svg +res/sx03220.svg res/odg_16.svg +res/sx03221.svg res/odg_16.svg +res/sx03222.svg res/odg_16.svg +res/sx03227.svg res/odg_16.svg +res/sx03228.svg res/odg_16.svg res/sx03256.svg cmd/sc_insertplugin.svg res/sx10594.svg cmd/sc_pushbutton.svg res/sx10595.svg cmd/sc_radiobutton.svg @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.svg cmd/sc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-large.svg cmd/lc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-small.svg cmd/sc_bmpmask.svg +sfx2/res/symphony/sidebar-elements-large.svg cmd/lc_insertmath.svg sfx2/res/symphony/sidebar-functions-large.svg cmd/lc_toggleformula.svg sfx2/res/symphony/sidebar-functions-small.svg cmd/sc_toggleformula.svg sfx2/res/symphony/sidebar-gallery-large.svg cmd/lc_gallery.svg @@ -2271,6 +2300,8 @@ svx/res/color.svg cmd/sc_bmpmask.svg svx/res/colordlg.svg cmd/sc_graphicfiltersmooth.svg svx/res/convrt3d.svg cmd/sc_convertinto3d.svg +svx/res/doc_modified_no.svg cmd/sc_save.svg +svx/res/doc_modified_yes.svg res/savemodified_small.svg svx/res/dsth_cen.svg cmd/sc_distributehorzcenter.svg svx/res/dsth_dst.svg cmd/sc_distributehorzdistance.svg svx/res/dsth_hig.svg cmd/sc_distributehorzright.svg diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/base128.svg libreoffice-7.4.7/yaru/build/olive/svg/res/base128.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/base128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/base128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/base_thumbnail_256.svg libreoffice-7.4.7/yaru/build/olive/svg/res/base_thumbnail_256.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/base_thumbnail_256.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/base_thumbnail_256.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/calc128.svg libreoffice-7.4.7/yaru/build/olive/svg/res/calc128.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/calc128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/calc128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/draw128.svg libreoffice-7.4.7/yaru/build/olive/svg/res/draw128.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/draw128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/draw128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/impress128.svg libreoffice-7.4.7/yaru/build/olive/svg/res/impress128.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/impress128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/impress128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03123.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03123.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03123.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03126.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03126.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03126.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03126.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03129.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03129.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03129.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03129.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03162.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03162.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03162.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03162.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03245_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03245_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03245_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03245_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03245.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03245.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03246_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03246_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03246_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03246_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03246.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03246.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03247_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03247_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03247_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03247_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03247.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03247.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03248_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03248_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03248_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03248_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03248.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03248.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03249_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03249_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03249_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03249_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03249.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03249.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03250_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03250_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03250_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03250_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03250.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03250.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03251_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03251_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03251_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03251_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03251.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03251.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03253.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03253.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03254.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03254.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/lx03255.svg libreoffice-7.4.7/yaru/build/olive/svg/res/lx03255.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/lx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/lx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/main128.svg libreoffice-7.4.7/yaru/build/olive/svg/res/main128.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/main128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/main128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/mainapp_16.svg libreoffice-7.4.7/yaru/build/olive/svg/res/mainapp_16.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/mainapp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/mainapp_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/mainapp_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/mainapp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/mainapp_48_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/mainapp_48_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/mainapp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/mainapp_48.svg libreoffice-7.4.7/yaru/build/olive/svg/res/mainapp_48.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/mainapp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/mainapp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/math128.svg libreoffice-7.4.7/yaru/build/olive/svg/res/math128.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/math128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/math128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odb_16_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odb_16_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odb_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odb_16.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odb_16.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odb_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odb_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odb_32_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odb_32_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odb_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odb_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odb_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odb_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odb_48_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odb_48_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odb_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odb_48.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odb_48.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odb_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odb_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odf_16_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odf_16_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odf_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odf_16.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odf_16.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odf_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odf_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odf_32_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odf_32_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odf_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odf_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odf_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odf_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odf_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odf_48_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odf_48_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odf_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odf_48.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odf_48.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odf_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odf_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odg_16_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odg_16_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odg_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odg_16.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odg_16.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odg_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odg_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odg_32_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odg_32_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odg_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odg_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odg_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odg_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odg_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odg_48_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odg_48_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odg_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odg_48.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odg_48.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odg_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odg_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odm_16_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odm_16_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odm_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odm_16.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odm_16.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odm_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odm_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odm_32_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odm_32_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odm_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odm_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odm_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odm_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odm_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odm_48_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odm_48_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odm_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odm_48.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odm_48.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odm_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odm_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odp_16_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odp_16_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odp_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odp_16.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odp_16.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odp_32_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odp_32_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odp_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odp_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odp_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odp_48_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odp_48_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odp_48.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odp_48.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ods_16_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ods_16_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ods_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ods_16.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ods_16.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ods_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ods_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ods_32_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ods_32_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ods_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ods_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ods_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ods_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ods_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ods_48_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ods_48_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ods_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ods_48.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ods_48.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ods_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ods_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odt_16_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odt_16_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odt_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odt_16.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odt_16.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odt_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odt_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odt_32_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odt_32_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odt_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odt_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odt_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odt_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odt_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odt_48_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odt_48_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odt_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/odt_48.svg libreoffice-7.4.7/yaru/build/olive/svg/res/odt_48.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/odt_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/odt_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ots_16_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ots_16_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ots_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ots_16.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ots_16.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ots_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ots_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ots_32_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ots_32_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ots_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ots_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ots_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ots_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ots_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ots_48_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ots_48_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ots_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ots_48.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ots_48.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ots_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ots_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ott_16_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ott_16_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ott_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ott_16.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ott_16.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ott_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ott_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ott_32_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ott_32_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ott_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ott_32.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ott_32.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ott_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ott_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ott_48_8.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ott_48_8.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ott_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/ott_48.svg libreoffice-7.4.7/yaru/build/olive/svg/res/ott_48.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/ott_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/ott_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03123.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03123.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03144.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03144.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03144.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03144.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03150.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03150.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03150.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03150.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03245.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03245.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03246.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03246.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03247.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03247.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03248.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03248.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03249.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03249.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03250.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03250.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03251.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03251.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03253.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03253.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03254.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03254.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/sx03255.svg libreoffice-7.4.7/yaru/build/olive/svg/res/sx03255.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/sx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/sx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/tipoftheday_c.svg libreoffice-7.4.7/yaru/build/olive/svg/res/tipoftheday_c.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/tipoftheday_c.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/tipoftheday_c.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/tipoftheday_d.svg libreoffice-7.4.7/yaru/build/olive/svg/res/tipoftheday_d.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/tipoftheday_d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/tipoftheday_d.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/tipoftheday_i.svg libreoffice-7.4.7/yaru/build/olive/svg/res/tipoftheday_i.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/tipoftheday_i.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/tipoftheday_i.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/tipoftheday.svg libreoffice-7.4.7/yaru/build/olive/svg/res/tipoftheday.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/tipoftheday.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/tipoftheday.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/tipoftheday_w.svg libreoffice-7.4.7/yaru/build/olive/svg/res/tipoftheday_w.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/tipoftheday_w.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/tipoftheday_w.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/res/writer128.svg libreoffice-7.4.7/yaru/build/olive/svg/res/writer128.svg --- libreoffice-7.4.6/yaru/build/olive/svg/res/writer128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/res/writer128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.4.7/yaru/build/olive/svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sfx2/res/128x128_calc_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.4.7/yaru/build/olive/svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sfx2/res/128x128_draw_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.4.7/yaru/build/olive/svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sfx2/res/128x128_impress_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.4.7/yaru/build/olive/svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sfx2/res/128x128_math_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sfx2/res/128x128_math_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.4.7/yaru/build/olive/svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sfx2/res/128x128_writer_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/svx/res/a11y_check_issues_found.svg libreoffice-7.4.7/yaru/build/olive/svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.4.6/yaru/build/olive/svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/svx/res/a11y_check_issues_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.4.7/yaru/build/olive/svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.4.6/yaru/build/olive/svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/svx/res/a11y_check_issues_not_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/svx/res/adding-selection.svg libreoffice-7.4.7/yaru/build/olive/svg/svx/res/adding-selection.svg --- libreoffice-7.4.6/yaru/build/olive/svg/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/svx/res/adding-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/svx/res/block-selection.svg libreoffice-7.4.7/yaru/build/olive/svg/svx/res/block-selection.svg --- libreoffice-7.4.6/yaru/build/olive/svg/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/svx/res/block-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/svx/res/doc_modified_feedback.svg libreoffice-7.4.7/yaru/build/olive/svg/svx/res/doc_modified_feedback.svg --- libreoffice-7.4.6/yaru/build/olive/svg/svx/res/doc_modified_feedback.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/svx/res/doc_modified_feedback.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/svx/res/extending-selection.svg libreoffice-7.4.7/yaru/build/olive/svg/svx/res/extending-selection.svg --- libreoffice-7.4.6/yaru/build/olive/svg/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/svx/res/extending-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/svx/res/standard-selection.svg libreoffice-7.4.7/yaru/build/olive/svg/svx/res/standard-selection.svg --- libreoffice-7.4.6/yaru/build/olive/svg/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/svx/res/standard-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/doublepage_10x22.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/doublepage_10x22.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/doublepage_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/doublepage_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/doublepage_a_10x22.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/doublepage_a_10x22.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/doublepage_a_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/doublepage_a_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/doublepage_a.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/doublepage_a.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/doublepage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/doublepage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/doublepage.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/doublepage.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/doublepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/doublepage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/emptypage_10x14.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/emptypage_10x14.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/emptypage_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/emptypage_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/emptypage_a_10x14.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/emptypage_a_10x14.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/emptypage_a_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/emptypage_a_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/emptypage_a.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/emptypage_a.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/emptypage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/emptypage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/emptypage.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/emptypage.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/emptypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/emptypage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/sc20236.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/sc20236.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/sc20236.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/sc20236.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/twopages_10x24.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/twopages_10x24.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/twopages_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/twopages_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/twopages_a_10x24.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/twopages_a_10x24.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/twopages_a_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/twopages_a_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/twopages_a.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/twopages_a.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/twopages_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/twopages_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/sw/res/twopages.svg libreoffice-7.4.7/yaru/build/olive/svg/sw/res/twopages.svg --- libreoffice-7.4.6/yaru/build/olive/svg/sw/res/twopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/sw/res/twopages.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/olive/svg/vcl/res/infobox.svg libreoffice-7.4.7/yaru/build/olive/svg/vcl/res/infobox.svg --- libreoffice-7.4.6/yaru/build/olive/svg/vcl/res/infobox.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/olive/svg/vcl/res/infobox.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -i \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/ar/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/ar/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/ar/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/ar/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/32/view100.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/32/view100.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/ar/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/ar/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/ar/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/ar/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/ar/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/ar/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/ar/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/ar/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/ca/lc_underlinedouble.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/ca/lc_underlinedouble.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/ca/lc_underline.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/ca/lc_underline.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/lc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/lc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/lc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/lc_insertbookmark.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/lc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/lc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/lc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/lc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/lc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/lc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/lc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/lc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/sc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/sc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/sc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/sc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/sc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/sc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/sc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/sc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/sc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/sc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/cmd/sc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/cmd/sc_trackchangesbar.png differ diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/png/links.txt libreoffice-7.4.7/yaru/build/prussiangreen/png/links.txt --- libreoffice-7.4.6/yaru/build/prussiangreen/png/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/png/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.png cmd/lc_recsearch.png res/library_16.png cmd/lc_viewdatasourcebrowser.png res/lx03126.png cmd/32/dbviewtables.png -res/lx03127.png res/ots_32_8.png +res/lx03127.png res/ots_32.png res/lx03130.png res/lx03123.png res/lx03137.png res/lx03125.png res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/odf_32_8.png +res/lx03144.png res/odf_32.png +res/lx03145.png res/odf_32.png res/lx03152.png res/lx03125.png res/lx03153.png res/lx03125.png res/lx03154.png res/lx03125.png res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png +res/lx03156.png res/odt_32.png res/lx03158.png res/lx03125.png res/lx03160.png res/lx03125.png -res/lx03162.png res/odt_32_8.png -res/lx03163.png res/odt_32_8.png +res/lx03162.png res/odt_32.png +res/lx03163.png res/odt_32.png res/lx03165.png cmd/lc_save.png res/lx03167.png cmd/lc_openremote.png res/lx03188.png cmd/32/dbviewtables.png res/lx03189.png cmd/lc_open.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png +res/lx03217.png res/odg_32.png +res/lx03218.png res/odg_32.png res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/odg_32_8.png +res/lx03220.png res/odg_32.png +res/lx03221.png res/odg_32.png +res/lx03222.png res/odg_32.png +res/lx03227.png res/odg_32.png +res/lx03228.png res/odg_32.png res/lx03256.png cmd/lc_insertplugin.png -res/mainapp.png res/newdoc.png -res/mainapp_16.png cmd/sc_showsinglepage.png -res/mainapp_16_8.png cmd/sc_showsinglepage.png -res/mainapp_32.png res/newdoc.png +res/mainapp_16_8.png res/mainapp_16.png +res/mainapp_32_8.png res/mainapp_32.png +res/mainapp_48_8.png res/mainapp_48.png res/notebookbar.png sfx2/res/symphony/open_more.png +res/odb_16_8.png res/odb_16.png +res/odb_32_8.png res/odb_32.png +res/odb_48_8.png res/odb_48.png +res/odf_16_8.png res/odf_16.png +res/odf_32_8.png res/odf_32.png +res/odf_48_8.png res/odf_48.png +res/odg_16_8.png res/odg_16.png +res/odg_32_8.png res/odg_32.png +res/odg_48_8.png res/odg_48.png +res/odm_16_8.png res/odm_16.png +res/odm_32_8.png res/odm_32.png +res/odm_48_8.png res/odm_48.png +res/odp_16_8.png res/odp_16.png +res/odp_32_8.png res/odp_32.png +res/odp_48_8.png res/odp_48.png +res/ods_16_8.png res/ods_16.png +res/ods_32_8.png res/ods_32.png +res/ods_48_8.png res/ods_48.png +res/odt_16_8.png res/odt_16.png +res/odt_32_8.png res/odt_32.png +res/odt_48_8.png res/odt_48.png +res/ots_16_8.png res/ots_16.png +res/ots_32_8.png res/ots_32.png +res/ots_48_8.png res/ots_48.png +res/ott_16_8.png res/ott_16.png +res/ott_32_8.png res/ott_32.png +res/ott_48_8.png res/ott_48.png res/plugin.png cmd/lc_insertplugin.png res/queries_32.png cmd/32/dbviewqueries.png res/reload.png cmd/sc_reload.png @@ -2044,36 +2070,38 @@ res/sc10868.png cmd/sc_grafgamma.png res/sc10869.png cmd/sc_graftransparence.png res/sc_helperdialog.png cmd/sc_helpindex.png +res/sx03123.png res/odp_16.png res/sx03126.png cmd/sc_dbviewtables.png -res/sx03127.png res/ots_16_8.png -res/sx03130.png res/sx03123.png +res/sx03127.png res/ots_16.png +res/sx03130.png res/odp_16.png res/sx03137.png res/sx03125.png res/sx03139.png cmd/sc_questionanswers.png res/sx03140.png res/sx03125.png -res/sx03145.png res/sx03144.png +res/sx03144.png res/odf_16.png +res/sx03145.png res/odf_16.png res/sx03152.png res/sx03125.png res/sx03153.png res/sx03125.png res/sx03154.png res/sx03125.png res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png +res/sx03156.png res/odt_16.png res/sx03158.png res/sx03125.png res/sx03160.png res/sx03125.png -res/sx03162.png res/odt_16_8.png -res/sx03163.png res/odt_16_8.png +res/sx03162.png res/odt_16.png +res/sx03163.png res/odt_16.png res/sx03164.png cmd/sc_open.png res/sx03165.png cmd/sc_save.png res/sx03167.png cmd/sc_openremote.png res/sx03188.png cmd/sc_dbviewtables.png res/sx03189.png cmd/sc_open.png res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png +res/sx03217.png res/odg_16.png +res/sx03218.png res/odg_16.png res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/odg_16_8.png +res/sx03220.png res/odg_16.png +res/sx03221.png res/odg_16.png +res/sx03222.png res/odg_16.png +res/sx03227.png res/odg_16.png +res/sx03228.png res/odg_16.png res/sx03256.png cmd/sc_insertplugin.png res/sx10594.png cmd/sc_pushbutton.png res/sx10595.png cmd/sc_radiobutton.png @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.png cmd/sc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png +sfx2/res/symphony/sidebar-elements-large.png cmd/lc_insertmath.png sfx2/res/symphony/sidebar-functions-large.png cmd/lc_toggleformula.png sfx2/res/symphony/sidebar-functions-small.png cmd/sc_toggleformula.png sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png @@ -2271,6 +2300,8 @@ svx/res/color.png cmd/sc_bmpmask.png svx/res/colordlg.png cmd/sc_graphicfiltersmooth.png svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/doc_modified_no.png cmd/sc_save.png +svx/res/doc_modified_yes.png res/savemodified_small.png svx/res/dsth_cen.png cmd/sc_distributehorzcenter.png svx/res/dsth_dst.png cmd/sc_distributehorzdistance.png svx/res/dsth_hig.png cmd/sc_distributehorzright.png Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/base128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/base128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/base_thumbnail_256.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/base_thumbnail_256.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/calc128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/calc128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/draw128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/draw128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/impress128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/impress128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03126.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03126.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03129.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03129.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03162.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03162.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03245_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03245_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03246_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03246_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03247_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03247_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03248_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03248_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03249_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03249_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03250_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03250_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03251_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03251_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/lx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/lx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/main128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/main128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/mainapp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/mainapp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/mainapp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/mainapp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/mainapp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/mainapp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/mainapp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/mainapp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/math128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/math128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odb_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odb_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odb_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odb_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odb_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odb_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odb_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odb_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odb_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odb_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odb_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odb_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odf_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odf_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odf_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odf_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odf_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odf_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odf_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odf_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odf_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odf_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odf_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odf_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odg_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odg_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odg_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odg_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odg_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odg_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odg_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odg_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odg_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odg_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odg_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odg_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odm_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odm_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odm_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odm_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odm_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odm_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odm_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odm_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odm_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odm_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odm_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odm_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odp_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odp_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odp_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odp_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ods_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ods_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ods_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ods_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ods_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ods_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ods_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ods_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ods_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ods_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ods_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ods_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odt_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odt_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odt_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odt_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odt_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odt_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odt_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odt_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odt_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odt_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/odt_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/odt_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ots_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ots_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ots_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ots_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ots_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ots_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ots_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ots_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ots_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ots_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ots_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ots_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ott_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ott_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ott_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ott_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ott_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ott_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ott_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ott_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ott_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ott_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/ott_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/ott_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03144.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03144.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03150.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03150.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/sx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/sx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/tipoftheday_c.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/tipoftheday_c.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/tipoftheday_d.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/tipoftheday_d.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/tipoftheday_i.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/tipoftheday_i.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/tipoftheday.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/tipoftheday.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/tipoftheday_w.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/tipoftheday_w.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/res/writer128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/res/writer128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sfx2/res/128x128_math_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/svx/res/a11y_check_issues_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/svx/res/a11y_check_issues_not_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/svx/res/adding-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/svx/res/adding-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/svx/res/block-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/svx/res/block-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/svx/res/doc_modified_feedback.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/svx/res/doc_modified_feedback.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/svx/res/extending-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/svx/res/extending-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/svx/res/standard-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/svx/res/standard-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/doublepage_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/doublepage_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/doublepage_a_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/doublepage_a_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/doublepage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/doublepage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/doublepage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/doublepage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/emptypage_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/emptypage_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/emptypage_a_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/emptypage_a_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/emptypage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/emptypage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/emptypage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/emptypage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/sc20236.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/sc20236.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/twopages_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/twopages_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/twopages_a_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/twopages_a_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/twopages_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/twopages_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/sw/res/twopages.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/sw/res/twopages.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/prussiangreen/png/vcl/res/infobox.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/prussiangreen/png/vcl/res/infobox.png differ diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/conehoristack_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/conehoristack_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/conehoristack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/conehoristack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/donut3d_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/donut3d_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/donut3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/donut3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/net_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/net_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/net_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/net_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/netfill_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/netfill_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/netfill_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/netfill_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/netlinepoint_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/netlinepoint_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/netlinepoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/netlinepoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/netlinepointstack_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/netlinepointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/netlinepointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/netlinepointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/netpoint_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/netpoint_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/netpoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/netpoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/netpointstack_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/netpointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/netpointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/netpointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/netstack_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/netstack_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/netstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/netstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/nostackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/nostackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/nostackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/nostackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/nostackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/nostackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/nostackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/nostackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/nostacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/nostacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/nostacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/nostacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/nostacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/nostacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/nostacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/nostacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stackdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stackdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stackdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stacksmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stacksmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stacksmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stacksmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stackstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stackstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stackstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stackstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stacksteppedboth_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stacksteppedboth_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stacksteppedboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stacksteppedboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stacksteppedlines_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stacksteppedlines_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/stacksteppedlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/stacksteppedlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxissmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxissmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxissmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxissmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxissmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxissmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxissmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxisstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxisstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/chart2/res/valueaxisstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/ar/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/ar/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/ar/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/ar/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/ar/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/ar/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/ar/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/ar/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/comparedocuments.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/comparedocuments.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/editcurindex.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/editcurindex.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/footnotedialog.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/footnotedialog.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/insertendnote.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/insertendnote.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/insertfootnote.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/insertfootnote.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/insertindexesentry.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/insertreferencefield.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/saveacopy.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/saveacopy.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/trackchangesbar.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/view100.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/view100.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/32/view100.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/32/view100.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -1 \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/ar/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/ar/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/ar/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/ar/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/ar/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/ar/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/ar/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/ar/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/ar/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/ar/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/ar/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/ar/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/ar/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/ar/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/ar/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/ar/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/ca/lc_underlinedouble.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/ca/lc_underlinedouble.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/ca/lc_underlinedouble.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/ca/lc_underlinedouble.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/ca/lc_underline.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/ca/lc_underline.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/ca/lc_underline.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/ca/lc_underline.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_comparedocuments.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_editcurindex.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_footnotedialog.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_fullscreen.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_fullscreen.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_fullscreen.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_fullscreen.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_insertbookmark.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_insertbookmark.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_insertbookmark.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_insertbookmark.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_insertendnote.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_insertfootnote.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_saveacopy.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/lc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/lc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_comparedocuments.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_editcurindex.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_footnotedialog.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_graftransparence.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_graftransparence.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_graftransparence.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_graftransparence.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_insertendnote.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_insertfootnote.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_saveacopy.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/cmd/sc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/cmd/sc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/links.txt libreoffice-7.4.7/yaru/build/prussiangreen/svg/links.txt --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.svg cmd/lc_recsearch.svg res/library_16.svg cmd/lc_viewdatasourcebrowser.svg res/lx03126.svg cmd/32/dbviewtables.svg -res/lx03127.svg res/ots_32_8.svg +res/lx03127.svg res/ots_32.svg res/lx03130.svg res/lx03123.svg res/lx03137.svg res/lx03125.svg res/lx03140.svg res/lx03125.svg -res/lx03144.svg res/odf_32_8.svg -res/lx03145.svg res/odf_32_8.svg +res/lx03144.svg res/odf_32.svg +res/lx03145.svg res/odf_32.svg res/lx03152.svg res/lx03125.svg res/lx03153.svg res/lx03125.svg res/lx03154.svg res/lx03125.svg res/lx03155.svg res/lx03125.svg -res/lx03156.svg res/odt_32_8.svg +res/lx03156.svg res/odt_32.svg res/lx03158.svg res/lx03125.svg res/lx03160.svg res/lx03125.svg -res/lx03162.svg res/odt_32_8.svg -res/lx03163.svg res/odt_32_8.svg +res/lx03162.svg res/odt_32.svg +res/lx03163.svg res/odt_32.svg res/lx03165.svg cmd/lc_save.svg res/lx03167.svg cmd/lc_openremote.svg res/lx03188.svg cmd/32/dbviewtables.svg res/lx03189.svg cmd/lc_open.svg -res/lx03217.svg res/odg_32_8.svg -res/lx03218.svg res/odg_32_8.svg +res/lx03217.svg res/odg_32.svg +res/lx03218.svg res/odg_32.svg res/lx03219.svg res/lx03125.svg -res/lx03220.svg res/odg_32_8.svg -res/lx03221.svg res/odg_32_8.svg -res/lx03222.svg res/odg_32_8.svg -res/lx03227.svg res/odg_32_8.svg -res/lx03228.svg res/odg_32_8.svg +res/lx03220.svg res/odg_32.svg +res/lx03221.svg res/odg_32.svg +res/lx03222.svg res/odg_32.svg +res/lx03227.svg res/odg_32.svg +res/lx03228.svg res/odg_32.svg res/lx03256.svg cmd/lc_insertplugin.svg -res/mainapp.svg res/newdoc.svg -res/mainapp_16.svg cmd/sc_showsinglepage.svg -res/mainapp_16_8.svg cmd/sc_showsinglepage.svg -res/mainapp_32.svg res/newdoc.svg +res/mainapp_16_8.svg res/mainapp_16.svg +res/mainapp_32_8.svg res/mainapp_32.svg +res/mainapp_48_8.svg res/mainapp_48.svg res/notebookbar.svg sfx2/res/symphony/open_more.svg +res/odb_16_8.svg res/odb_16.svg +res/odb_32_8.svg res/odb_32.svg +res/odb_48_8.svg res/odb_48.svg +res/odf_16_8.svg res/odf_16.svg +res/odf_32_8.svg res/odf_32.svg +res/odf_48_8.svg res/odf_48.svg +res/odg_16_8.svg res/odg_16.svg +res/odg_32_8.svg res/odg_32.svg +res/odg_48_8.svg res/odg_48.svg +res/odm_16_8.svg res/odm_16.svg +res/odm_32_8.svg res/odm_32.svg +res/odm_48_8.svg res/odm_48.svg +res/odp_16_8.svg res/odp_16.svg +res/odp_32_8.svg res/odp_32.svg +res/odp_48_8.svg res/odp_48.svg +res/ods_16_8.svg res/ods_16.svg +res/ods_32_8.svg res/ods_32.svg +res/ods_48_8.svg res/ods_48.svg +res/odt_16_8.svg res/odt_16.svg +res/odt_32_8.svg res/odt_32.svg +res/odt_48_8.svg res/odt_48.svg +res/ots_16_8.svg res/ots_16.svg +res/ots_32_8.svg res/ots_32.svg +res/ots_48_8.svg res/ots_48.svg +res/ott_16_8.svg res/ott_16.svg +res/ott_32_8.svg res/ott_32.svg +res/ott_48_8.svg res/ott_48.svg res/plugin.svg cmd/lc_insertplugin.svg res/queries_32.svg cmd/32/dbviewqueries.svg res/reload.svg cmd/sc_reload.svg @@ -2044,36 +2070,38 @@ res/sc10868.svg cmd/sc_grafgamma.svg res/sc10869.svg cmd/sc_graftransparence.svg res/sc_helperdialog.svg cmd/sc_helpindex.svg +res/sx03123.svg res/odp_16.svg res/sx03126.svg cmd/sc_dbviewtables.svg -res/sx03127.svg res/ots_16_8.svg -res/sx03130.svg res/sx03123.svg +res/sx03127.svg res/ots_16.svg +res/sx03130.svg res/odp_16.svg res/sx03137.svg res/sx03125.svg res/sx03139.svg cmd/sc_questionanswers.svg res/sx03140.svg res/sx03125.svg -res/sx03145.svg res/sx03144.svg +res/sx03144.svg res/odf_16.svg +res/sx03145.svg res/odf_16.svg res/sx03152.svg res/sx03125.svg res/sx03153.svg res/sx03125.svg res/sx03154.svg res/sx03125.svg res/sx03155.svg res/sx03125.svg -res/sx03156.svg res/odt_16_8.svg +res/sx03156.svg res/odt_16.svg res/sx03158.svg res/sx03125.svg res/sx03160.svg res/sx03125.svg -res/sx03162.svg res/odt_16_8.svg -res/sx03163.svg res/odt_16_8.svg +res/sx03162.svg res/odt_16.svg +res/sx03163.svg res/odt_16.svg res/sx03164.svg cmd/sc_open.svg res/sx03165.svg cmd/sc_save.svg res/sx03167.svg cmd/sc_openremote.svg res/sx03188.svg cmd/sc_dbviewtables.svg res/sx03189.svg cmd/sc_open.svg res/sx03202.svg cmd/sc_dbviewqueries.svg -res/sx03217.svg res/odg_16_8.svg -res/sx03218.svg res/odg_16_8.svg +res/sx03217.svg res/odg_16.svg +res/sx03218.svg res/odg_16.svg res/sx03219.svg res/sx03125.svg -res/sx03220.svg res/odg_16_8.svg -res/sx03221.svg res/odg_16_8.svg -res/sx03222.svg res/odg_16_8.svg -res/sx03227.svg res/odg_16_8.svg -res/sx03228.svg res/odg_16_8.svg +res/sx03220.svg res/odg_16.svg +res/sx03221.svg res/odg_16.svg +res/sx03222.svg res/odg_16.svg +res/sx03227.svg res/odg_16.svg +res/sx03228.svg res/odg_16.svg res/sx03256.svg cmd/sc_insertplugin.svg res/sx10594.svg cmd/sc_pushbutton.svg res/sx10595.svg cmd/sc_radiobutton.svg @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.svg cmd/sc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-large.svg cmd/lc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-small.svg cmd/sc_bmpmask.svg +sfx2/res/symphony/sidebar-elements-large.svg cmd/lc_insertmath.svg sfx2/res/symphony/sidebar-functions-large.svg cmd/lc_toggleformula.svg sfx2/res/symphony/sidebar-functions-small.svg cmd/sc_toggleformula.svg sfx2/res/symphony/sidebar-gallery-large.svg cmd/lc_gallery.svg @@ -2271,6 +2300,8 @@ svx/res/color.svg cmd/sc_bmpmask.svg svx/res/colordlg.svg cmd/sc_graphicfiltersmooth.svg svx/res/convrt3d.svg cmd/sc_convertinto3d.svg +svx/res/doc_modified_no.svg cmd/sc_save.svg +svx/res/doc_modified_yes.svg res/savemodified_small.svg svx/res/dsth_cen.svg cmd/sc_distributehorzcenter.svg svx/res/dsth_dst.svg cmd/sc_distributehorzdistance.svg svx/res/dsth_hig.svg cmd/sc_distributehorzright.svg diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/base128.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/base128.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/base128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/base128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/base_thumbnail_256.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/base_thumbnail_256.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/base_thumbnail_256.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/base_thumbnail_256.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/calc128.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/calc128.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/calc128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/calc128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/draw128.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/draw128.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/draw128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/draw128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/impress128.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/impress128.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/impress128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/impress128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03123.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03123.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03123.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03126.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03126.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03126.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03126.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03129.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03129.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03129.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03129.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03162.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03162.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03162.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03162.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03245_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03245_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03245_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03245_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03245.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03245.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03246_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03246_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03246_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03246_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03246.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03246.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03247_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03247_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03247_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03247_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03247.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03247.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03248_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03248_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03248_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03248_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03248.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03248.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03249_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03249_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03249_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03249_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03249.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03249.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03250_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03250_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03250_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03250_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03250.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03250.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03251_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03251_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03251_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03251_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03251.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03251.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03253.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03253.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03254.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03254.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03255.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03255.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/lx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/lx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/main128.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/main128.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/main128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/main128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/mainapp_16.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/mainapp_16.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/mainapp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/mainapp_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/mainapp_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/mainapp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/mainapp_48_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/mainapp_48_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/mainapp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/mainapp_48.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/mainapp_48.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/mainapp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/mainapp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/math128.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/math128.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/math128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/math128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odb_16_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odb_16_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odb_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odb_16.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odb_16.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odb_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odb_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odb_32_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odb_32_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odb_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odb_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odb_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odb_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odb_48_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odb_48_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odb_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odb_48.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odb_48.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odb_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odb_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odf_16_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odf_16_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odf_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odf_16.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odf_16.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odf_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odf_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odf_32_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odf_32_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odf_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odf_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odf_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odf_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odf_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odf_48_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odf_48_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odf_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odf_48.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odf_48.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odf_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odf_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odg_16_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odg_16_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odg_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odg_16.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odg_16.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odg_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odg_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odg_32_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odg_32_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odg_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odg_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odg_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odg_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odg_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odg_48_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odg_48_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odg_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odg_48.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odg_48.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odg_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odg_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odm_16_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odm_16_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odm_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odm_16.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odm_16.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odm_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odm_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odm_32_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odm_32_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odm_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odm_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odm_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odm_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odm_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odm_48_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odm_48_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odm_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odm_48.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odm_48.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odm_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odm_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odp_16_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odp_16_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odp_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odp_16.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odp_16.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odp_32_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odp_32_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odp_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odp_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odp_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odp_48_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odp_48_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odp_48.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odp_48.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ods_16_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ods_16_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ods_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ods_16.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ods_16.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ods_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ods_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ods_32_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ods_32_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ods_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ods_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ods_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ods_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ods_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ods_48_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ods_48_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ods_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ods_48.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ods_48.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ods_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ods_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odt_16_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odt_16_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odt_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odt_16.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odt_16.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odt_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odt_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odt_32_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odt_32_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odt_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odt_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odt_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odt_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odt_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odt_48_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odt_48_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odt_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odt_48.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odt_48.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/odt_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/odt_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ots_16_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ots_16_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ots_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ots_16.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ots_16.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ots_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ots_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ots_32_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ots_32_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ots_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ots_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ots_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ots_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ots_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ots_48_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ots_48_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ots_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ots_48.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ots_48.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ots_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ots_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ott_16_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ott_16_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ott_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ott_16.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ott_16.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ott_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ott_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ott_32_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ott_32_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ott_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ott_32.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ott_32.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ott_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ott_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ott_48_8.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ott_48_8.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ott_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ott_48.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ott_48.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/ott_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/ott_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03123.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03123.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03144.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03144.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03144.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03144.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03150.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03150.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03150.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03150.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03245.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03245.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03246.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03246.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03247.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03247.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03248.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03248.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03249.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03249.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03250.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03250.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03251.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03251.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03253.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03253.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03254.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03254.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03255.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03255.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/sx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/sx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/tipoftheday_c.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/tipoftheday_c.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/tipoftheday_c.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/tipoftheday_c.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/tipoftheday_d.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/tipoftheday_d.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/tipoftheday_d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/tipoftheday_d.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/tipoftheday_i.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/tipoftheday_i.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/tipoftheday_i.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/tipoftheday_i.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/tipoftheday.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/tipoftheday.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/tipoftheday.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/tipoftheday.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/tipoftheday_w.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/tipoftheday_w.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/tipoftheday_w.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/tipoftheday_w.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/writer128.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/writer128.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/res/writer128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/res/writer128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sfx2/res/128x128_calc_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sfx2/res/128x128_draw_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sfx2/res/128x128_impress_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sfx2/res/128x128_math_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sfx2/res/128x128_math_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sfx2/res/128x128_writer_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/a11y_check_issues_found.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/a11y_check_issues_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/a11y_check_issues_not_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/adding-selection.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/adding-selection.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/adding-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/block-selection.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/block-selection.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/block-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/doc_modified_feedback.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/doc_modified_feedback.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/doc_modified_feedback.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/doc_modified_feedback.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/extending-selection.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/extending-selection.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/extending-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/standard-selection.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/standard-selection.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/svx/res/standard-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/doublepage_10x22.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/doublepage_10x22.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/doublepage_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/doublepage_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/doublepage_a_10x22.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/doublepage_a_10x22.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/doublepage_a_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/doublepage_a_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/doublepage_a.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/doublepage_a.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/doublepage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/doublepage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/doublepage.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/doublepage.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/doublepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/doublepage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/emptypage_10x14.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/emptypage_10x14.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/emptypage_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/emptypage_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/emptypage_a_10x14.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/emptypage_a_10x14.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/emptypage_a_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/emptypage_a_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/emptypage_a.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/emptypage_a.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/emptypage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/emptypage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/emptypage.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/emptypage.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/emptypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/emptypage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/sc20236.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/sc20236.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/sc20236.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/sc20236.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/twopages_10x24.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/twopages_10x24.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/twopages_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/twopages_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/twopages_a_10x24.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/twopages_a_10x24.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/twopages_a_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/twopages_a_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/twopages_a.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/twopages_a.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/twopages_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/twopages_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/twopages.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/twopages.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/sw/res/twopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/sw/res/twopages.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/prussiangreen/svg/vcl/res/infobox.svg libreoffice-7.4.7/yaru/build/prussiangreen/svg/vcl/res/infobox.svg --- libreoffice-7.4.6/yaru/build/prussiangreen/svg/vcl/res/infobox.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/prussiangreen/svg/vcl/res/infobox.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -i \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/ar/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/ar/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/ar/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/ar/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/32/view100.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/32/view100.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/ar/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/ar/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/ar/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/ar/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/ar/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/ar/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/ar/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/ar/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/ca/lc_underlinedouble.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/ca/lc_underlinedouble.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/ca/lc_underline.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/ca/lc_underline.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/lc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/lc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/lc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/lc_insertbookmark.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/lc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/lc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/lc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/lc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/lc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/lc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/lc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/lc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/sc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/sc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/sc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/sc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/sc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/sc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/sc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/sc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/sc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/sc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/cmd/sc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/cmd/sc_trackchangesbar.png differ diff -Nru libreoffice-7.4.6/yaru/build/purple/png/links.txt libreoffice-7.4.7/yaru/build/purple/png/links.txt --- libreoffice-7.4.6/yaru/build/purple/png/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/png/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.png cmd/lc_recsearch.png res/library_16.png cmd/lc_viewdatasourcebrowser.png res/lx03126.png cmd/32/dbviewtables.png -res/lx03127.png res/ots_32_8.png +res/lx03127.png res/ots_32.png res/lx03130.png res/lx03123.png res/lx03137.png res/lx03125.png res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/odf_32_8.png +res/lx03144.png res/odf_32.png +res/lx03145.png res/odf_32.png res/lx03152.png res/lx03125.png res/lx03153.png res/lx03125.png res/lx03154.png res/lx03125.png res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png +res/lx03156.png res/odt_32.png res/lx03158.png res/lx03125.png res/lx03160.png res/lx03125.png -res/lx03162.png res/odt_32_8.png -res/lx03163.png res/odt_32_8.png +res/lx03162.png res/odt_32.png +res/lx03163.png res/odt_32.png res/lx03165.png cmd/lc_save.png res/lx03167.png cmd/lc_openremote.png res/lx03188.png cmd/32/dbviewtables.png res/lx03189.png cmd/lc_open.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png +res/lx03217.png res/odg_32.png +res/lx03218.png res/odg_32.png res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/odg_32_8.png +res/lx03220.png res/odg_32.png +res/lx03221.png res/odg_32.png +res/lx03222.png res/odg_32.png +res/lx03227.png res/odg_32.png +res/lx03228.png res/odg_32.png res/lx03256.png cmd/lc_insertplugin.png -res/mainapp.png res/newdoc.png -res/mainapp_16.png cmd/sc_showsinglepage.png -res/mainapp_16_8.png cmd/sc_showsinglepage.png -res/mainapp_32.png res/newdoc.png +res/mainapp_16_8.png res/mainapp_16.png +res/mainapp_32_8.png res/mainapp_32.png +res/mainapp_48_8.png res/mainapp_48.png res/notebookbar.png sfx2/res/symphony/open_more.png +res/odb_16_8.png res/odb_16.png +res/odb_32_8.png res/odb_32.png +res/odb_48_8.png res/odb_48.png +res/odf_16_8.png res/odf_16.png +res/odf_32_8.png res/odf_32.png +res/odf_48_8.png res/odf_48.png +res/odg_16_8.png res/odg_16.png +res/odg_32_8.png res/odg_32.png +res/odg_48_8.png res/odg_48.png +res/odm_16_8.png res/odm_16.png +res/odm_32_8.png res/odm_32.png +res/odm_48_8.png res/odm_48.png +res/odp_16_8.png res/odp_16.png +res/odp_32_8.png res/odp_32.png +res/odp_48_8.png res/odp_48.png +res/ods_16_8.png res/ods_16.png +res/ods_32_8.png res/ods_32.png +res/ods_48_8.png res/ods_48.png +res/odt_16_8.png res/odt_16.png +res/odt_32_8.png res/odt_32.png +res/odt_48_8.png res/odt_48.png +res/ots_16_8.png res/ots_16.png +res/ots_32_8.png res/ots_32.png +res/ots_48_8.png res/ots_48.png +res/ott_16_8.png res/ott_16.png +res/ott_32_8.png res/ott_32.png +res/ott_48_8.png res/ott_48.png res/plugin.png cmd/lc_insertplugin.png res/queries_32.png cmd/32/dbviewqueries.png res/reload.png cmd/sc_reload.png @@ -2044,36 +2070,38 @@ res/sc10868.png cmd/sc_grafgamma.png res/sc10869.png cmd/sc_graftransparence.png res/sc_helperdialog.png cmd/sc_helpindex.png +res/sx03123.png res/odp_16.png res/sx03126.png cmd/sc_dbviewtables.png -res/sx03127.png res/ots_16_8.png -res/sx03130.png res/sx03123.png +res/sx03127.png res/ots_16.png +res/sx03130.png res/odp_16.png res/sx03137.png res/sx03125.png res/sx03139.png cmd/sc_questionanswers.png res/sx03140.png res/sx03125.png -res/sx03145.png res/sx03144.png +res/sx03144.png res/odf_16.png +res/sx03145.png res/odf_16.png res/sx03152.png res/sx03125.png res/sx03153.png res/sx03125.png res/sx03154.png res/sx03125.png res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png +res/sx03156.png res/odt_16.png res/sx03158.png res/sx03125.png res/sx03160.png res/sx03125.png -res/sx03162.png res/odt_16_8.png -res/sx03163.png res/odt_16_8.png +res/sx03162.png res/odt_16.png +res/sx03163.png res/odt_16.png res/sx03164.png cmd/sc_open.png res/sx03165.png cmd/sc_save.png res/sx03167.png cmd/sc_openremote.png res/sx03188.png cmd/sc_dbviewtables.png res/sx03189.png cmd/sc_open.png res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png +res/sx03217.png res/odg_16.png +res/sx03218.png res/odg_16.png res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/odg_16_8.png +res/sx03220.png res/odg_16.png +res/sx03221.png res/odg_16.png +res/sx03222.png res/odg_16.png +res/sx03227.png res/odg_16.png +res/sx03228.png res/odg_16.png res/sx03256.png cmd/sc_insertplugin.png res/sx10594.png cmd/sc_pushbutton.png res/sx10595.png cmd/sc_radiobutton.png @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.png cmd/sc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png +sfx2/res/symphony/sidebar-elements-large.png cmd/lc_insertmath.png sfx2/res/symphony/sidebar-functions-large.png cmd/lc_toggleformula.png sfx2/res/symphony/sidebar-functions-small.png cmd/sc_toggleformula.png sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png @@ -2271,6 +2300,8 @@ svx/res/color.png cmd/sc_bmpmask.png svx/res/colordlg.png cmd/sc_graphicfiltersmooth.png svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/doc_modified_no.png cmd/sc_save.png +svx/res/doc_modified_yes.png res/savemodified_small.png svx/res/dsth_cen.png cmd/sc_distributehorzcenter.png svx/res/dsth_dst.png cmd/sc_distributehorzdistance.png svx/res/dsth_hig.png cmd/sc_distributehorzright.png Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/base128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/base128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/base_thumbnail_256.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/base_thumbnail_256.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/calc128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/calc128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/draw128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/draw128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/impress128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/impress128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03126.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03126.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03129.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03129.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03162.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03162.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03245_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03245_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03246_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03246_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03247_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03247_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03248_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03248_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03249_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03249_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03250_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03250_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03251_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03251_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/lx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/lx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/main128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/main128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/mainapp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/mainapp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/mainapp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/mainapp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/mainapp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/mainapp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/mainapp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/mainapp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/math128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/math128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odb_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odb_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odb_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odb_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odb_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odb_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odb_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odb_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odb_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odb_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odb_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odb_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odf_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odf_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odf_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odf_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odf_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odf_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odf_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odf_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odf_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odf_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odf_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odf_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odg_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odg_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odg_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odg_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odg_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odg_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odg_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odg_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odg_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odg_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odg_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odg_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odm_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odm_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odm_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odm_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odm_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odm_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odm_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odm_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odm_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odm_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odm_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odm_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odp_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odp_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odp_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odp_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ods_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ods_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ods_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ods_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ods_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ods_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ods_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ods_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ods_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ods_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ods_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ods_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odt_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odt_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odt_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odt_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odt_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odt_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odt_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odt_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odt_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odt_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/odt_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/odt_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ots_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ots_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ots_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ots_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ots_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ots_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ots_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ots_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ots_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ots_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ots_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ots_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ott_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ott_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ott_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ott_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ott_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ott_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ott_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ott_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ott_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ott_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/ott_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/ott_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03144.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03144.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03150.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03150.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/sx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/sx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/tipoftheday_c.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/tipoftheday_c.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/tipoftheday_d.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/tipoftheday_d.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/tipoftheday_i.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/tipoftheday_i.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/tipoftheday.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/tipoftheday.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/tipoftheday_w.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/tipoftheday_w.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/res/writer128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/res/writer128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sfx2/res/128x128_math_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/svx/res/a11y_check_issues_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/svx/res/a11y_check_issues_not_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/svx/res/adding-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/svx/res/adding-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/svx/res/block-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/svx/res/block-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/svx/res/doc_modified_feedback.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/svx/res/doc_modified_feedback.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/svx/res/extending-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/svx/res/extending-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/svx/res/standard-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/svx/res/standard-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/doublepage_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/doublepage_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/doublepage_a_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/doublepage_a_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/doublepage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/doublepage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/doublepage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/doublepage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/emptypage_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/emptypage_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/emptypage_a_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/emptypage_a_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/emptypage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/emptypage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/emptypage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/emptypage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/sc20236.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/sc20236.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/twopages_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/twopages_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/twopages_a_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/twopages_a_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/twopages_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/twopages_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/sw/res/twopages.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/sw/res/twopages.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/purple/png/vcl/res/infobox.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/purple/png/vcl/res/infobox.png differ diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/conehoristack_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/conehoristack_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/conehoristack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/conehoristack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/donut3d_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/donut3d_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/donut3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/donut3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/net_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/net_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/net_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/net_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/netfill_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/netfill_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/netfill_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/netfill_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/netlinepoint_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/netlinepoint_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/netlinepoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/netlinepoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/netlinepointstack_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/netlinepointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/netlinepointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/netlinepointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/netpoint_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/netpoint_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/netpoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/netpoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/netpointstack_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/netpointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/netpointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/netpointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/netstack_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/netstack_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/netstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/netstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/nostackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/nostackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/nostackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/nostackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/nostackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/nostackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/nostackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/nostackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/nostacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/nostacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/nostacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/nostacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/nostacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/nostacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/nostacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/nostacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stackdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stackdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stackdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stacksmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stacksmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stacksmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stacksmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stackstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stackstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stackstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stackstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stacksteppedboth_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stacksteppedboth_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stacksteppedboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stacksteppedboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stacksteppedlines_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stacksteppedlines_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/stacksteppedlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/stacksteppedlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxisdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxisdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxisdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxisdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxisdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxisdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxisdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxisdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxisdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxissmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxissmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxissmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxissmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxissmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxissmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxissmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxisstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxisstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/purple/svg/chart2/res/valueaxisstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/ar/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/ar/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/ar/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/ar/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/ar/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/ar/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/ar/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/ar/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/comparedocuments.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/comparedocuments.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/editcurindex.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/editcurindex.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/footnotedialog.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/footnotedialog.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/insertendnote.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/insertendnote.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/insertfootnote.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/insertfootnote.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/insertindexesentry.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/insertreferencefield.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/saveacopy.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/saveacopy.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/trackchangesbar.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/view100.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/view100.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/32/view100.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/32/view100.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -1 \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/ar/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/ar/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/ar/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/ar/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/ar/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/ar/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/ar/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/ar/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/ar/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/ar/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/ar/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/ar/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/ar/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/ar/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/ar/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/ar/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/ca/lc_underlinedouble.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/ca/lc_underlinedouble.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/ca/lc_underlinedouble.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/ca/lc_underlinedouble.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/ca/lc_underline.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/ca/lc_underline.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/ca/lc_underline.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/ca/lc_underline.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_comparedocuments.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_editcurindex.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_footnotedialog.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_fullscreen.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_fullscreen.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_fullscreen.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_fullscreen.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_insertbookmark.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_insertbookmark.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_insertbookmark.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_insertbookmark.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_insertendnote.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_insertfootnote.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_saveacopy.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/lc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/lc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_comparedocuments.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_editcurindex.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_footnotedialog.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_graftransparence.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_graftransparence.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_graftransparence.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_graftransparence.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_insertendnote.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_insertfootnote.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_saveacopy.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/purple/svg/cmd/sc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/cmd/sc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/links.txt libreoffice-7.4.7/yaru/build/purple/svg/links.txt --- libreoffice-7.4.6/yaru/build/purple/svg/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.svg cmd/lc_recsearch.svg res/library_16.svg cmd/lc_viewdatasourcebrowser.svg res/lx03126.svg cmd/32/dbviewtables.svg -res/lx03127.svg res/ots_32_8.svg +res/lx03127.svg res/ots_32.svg res/lx03130.svg res/lx03123.svg res/lx03137.svg res/lx03125.svg res/lx03140.svg res/lx03125.svg -res/lx03144.svg res/odf_32_8.svg -res/lx03145.svg res/odf_32_8.svg +res/lx03144.svg res/odf_32.svg +res/lx03145.svg res/odf_32.svg res/lx03152.svg res/lx03125.svg res/lx03153.svg res/lx03125.svg res/lx03154.svg res/lx03125.svg res/lx03155.svg res/lx03125.svg -res/lx03156.svg res/odt_32_8.svg +res/lx03156.svg res/odt_32.svg res/lx03158.svg res/lx03125.svg res/lx03160.svg res/lx03125.svg -res/lx03162.svg res/odt_32_8.svg -res/lx03163.svg res/odt_32_8.svg +res/lx03162.svg res/odt_32.svg +res/lx03163.svg res/odt_32.svg res/lx03165.svg cmd/lc_save.svg res/lx03167.svg cmd/lc_openremote.svg res/lx03188.svg cmd/32/dbviewtables.svg res/lx03189.svg cmd/lc_open.svg -res/lx03217.svg res/odg_32_8.svg -res/lx03218.svg res/odg_32_8.svg +res/lx03217.svg res/odg_32.svg +res/lx03218.svg res/odg_32.svg res/lx03219.svg res/lx03125.svg -res/lx03220.svg res/odg_32_8.svg -res/lx03221.svg res/odg_32_8.svg -res/lx03222.svg res/odg_32_8.svg -res/lx03227.svg res/odg_32_8.svg -res/lx03228.svg res/odg_32_8.svg +res/lx03220.svg res/odg_32.svg +res/lx03221.svg res/odg_32.svg +res/lx03222.svg res/odg_32.svg +res/lx03227.svg res/odg_32.svg +res/lx03228.svg res/odg_32.svg res/lx03256.svg cmd/lc_insertplugin.svg -res/mainapp.svg res/newdoc.svg -res/mainapp_16.svg cmd/sc_showsinglepage.svg -res/mainapp_16_8.svg cmd/sc_showsinglepage.svg -res/mainapp_32.svg res/newdoc.svg +res/mainapp_16_8.svg res/mainapp_16.svg +res/mainapp_32_8.svg res/mainapp_32.svg +res/mainapp_48_8.svg res/mainapp_48.svg res/notebookbar.svg sfx2/res/symphony/open_more.svg +res/odb_16_8.svg res/odb_16.svg +res/odb_32_8.svg res/odb_32.svg +res/odb_48_8.svg res/odb_48.svg +res/odf_16_8.svg res/odf_16.svg +res/odf_32_8.svg res/odf_32.svg +res/odf_48_8.svg res/odf_48.svg +res/odg_16_8.svg res/odg_16.svg +res/odg_32_8.svg res/odg_32.svg +res/odg_48_8.svg res/odg_48.svg +res/odm_16_8.svg res/odm_16.svg +res/odm_32_8.svg res/odm_32.svg +res/odm_48_8.svg res/odm_48.svg +res/odp_16_8.svg res/odp_16.svg +res/odp_32_8.svg res/odp_32.svg +res/odp_48_8.svg res/odp_48.svg +res/ods_16_8.svg res/ods_16.svg +res/ods_32_8.svg res/ods_32.svg +res/ods_48_8.svg res/ods_48.svg +res/odt_16_8.svg res/odt_16.svg +res/odt_32_8.svg res/odt_32.svg +res/odt_48_8.svg res/odt_48.svg +res/ots_16_8.svg res/ots_16.svg +res/ots_32_8.svg res/ots_32.svg +res/ots_48_8.svg res/ots_48.svg +res/ott_16_8.svg res/ott_16.svg +res/ott_32_8.svg res/ott_32.svg +res/ott_48_8.svg res/ott_48.svg res/plugin.svg cmd/lc_insertplugin.svg res/queries_32.svg cmd/32/dbviewqueries.svg res/reload.svg cmd/sc_reload.svg @@ -2044,36 +2070,38 @@ res/sc10868.svg cmd/sc_grafgamma.svg res/sc10869.svg cmd/sc_graftransparence.svg res/sc_helperdialog.svg cmd/sc_helpindex.svg +res/sx03123.svg res/odp_16.svg res/sx03126.svg cmd/sc_dbviewtables.svg -res/sx03127.svg res/ots_16_8.svg -res/sx03130.svg res/sx03123.svg +res/sx03127.svg res/ots_16.svg +res/sx03130.svg res/odp_16.svg res/sx03137.svg res/sx03125.svg res/sx03139.svg cmd/sc_questionanswers.svg res/sx03140.svg res/sx03125.svg -res/sx03145.svg res/sx03144.svg +res/sx03144.svg res/odf_16.svg +res/sx03145.svg res/odf_16.svg res/sx03152.svg res/sx03125.svg res/sx03153.svg res/sx03125.svg res/sx03154.svg res/sx03125.svg res/sx03155.svg res/sx03125.svg -res/sx03156.svg res/odt_16_8.svg +res/sx03156.svg res/odt_16.svg res/sx03158.svg res/sx03125.svg res/sx03160.svg res/sx03125.svg -res/sx03162.svg res/odt_16_8.svg -res/sx03163.svg res/odt_16_8.svg +res/sx03162.svg res/odt_16.svg +res/sx03163.svg res/odt_16.svg res/sx03164.svg cmd/sc_open.svg res/sx03165.svg cmd/sc_save.svg res/sx03167.svg cmd/sc_openremote.svg res/sx03188.svg cmd/sc_dbviewtables.svg res/sx03189.svg cmd/sc_open.svg res/sx03202.svg cmd/sc_dbviewqueries.svg -res/sx03217.svg res/odg_16_8.svg -res/sx03218.svg res/odg_16_8.svg +res/sx03217.svg res/odg_16.svg +res/sx03218.svg res/odg_16.svg res/sx03219.svg res/sx03125.svg -res/sx03220.svg res/odg_16_8.svg -res/sx03221.svg res/odg_16_8.svg -res/sx03222.svg res/odg_16_8.svg -res/sx03227.svg res/odg_16_8.svg -res/sx03228.svg res/odg_16_8.svg +res/sx03220.svg res/odg_16.svg +res/sx03221.svg res/odg_16.svg +res/sx03222.svg res/odg_16.svg +res/sx03227.svg res/odg_16.svg +res/sx03228.svg res/odg_16.svg res/sx03256.svg cmd/sc_insertplugin.svg res/sx10594.svg cmd/sc_pushbutton.svg res/sx10595.svg cmd/sc_radiobutton.svg @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.svg cmd/sc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-large.svg cmd/lc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-small.svg cmd/sc_bmpmask.svg +sfx2/res/symphony/sidebar-elements-large.svg cmd/lc_insertmath.svg sfx2/res/symphony/sidebar-functions-large.svg cmd/lc_toggleformula.svg sfx2/res/symphony/sidebar-functions-small.svg cmd/sc_toggleformula.svg sfx2/res/symphony/sidebar-gallery-large.svg cmd/lc_gallery.svg @@ -2271,6 +2300,8 @@ svx/res/color.svg cmd/sc_bmpmask.svg svx/res/colordlg.svg cmd/sc_graphicfiltersmooth.svg svx/res/convrt3d.svg cmd/sc_convertinto3d.svg +svx/res/doc_modified_no.svg cmd/sc_save.svg +svx/res/doc_modified_yes.svg res/savemodified_small.svg svx/res/dsth_cen.svg cmd/sc_distributehorzcenter.svg svx/res/dsth_dst.svg cmd/sc_distributehorzdistance.svg svx/res/dsth_hig.svg cmd/sc_distributehorzright.svg diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/base128.svg libreoffice-7.4.7/yaru/build/purple/svg/res/base128.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/base128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/base128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/base_thumbnail_256.svg libreoffice-7.4.7/yaru/build/purple/svg/res/base_thumbnail_256.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/base_thumbnail_256.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/base_thumbnail_256.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/calc128.svg libreoffice-7.4.7/yaru/build/purple/svg/res/calc128.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/calc128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/calc128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/draw128.svg libreoffice-7.4.7/yaru/build/purple/svg/res/draw128.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/draw128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/draw128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/impress128.svg libreoffice-7.4.7/yaru/build/purple/svg/res/impress128.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/impress128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/impress128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03123.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03123.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03123.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03126.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03126.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03126.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03126.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03129.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03129.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03129.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03129.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03162.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03162.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03162.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03162.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03245_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03245_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03245_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03245_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03245.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03245.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03246_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03246_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03246_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03246_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03246.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03246.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03247_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03247_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03247_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03247_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03247.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03247.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03248_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03248_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03248_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03248_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03248.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03248.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03249_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03249_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03249_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03249_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03249.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03249.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03250_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03250_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03250_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03250_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03250.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03250.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03251_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03251_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03251_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03251_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03251.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03251.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03253.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03253.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03254.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03254.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/lx03255.svg libreoffice-7.4.7/yaru/build/purple/svg/res/lx03255.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/lx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/lx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/main128.svg libreoffice-7.4.7/yaru/build/purple/svg/res/main128.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/main128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/main128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/mainapp_16.svg libreoffice-7.4.7/yaru/build/purple/svg/res/mainapp_16.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/mainapp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/mainapp_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/mainapp_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/mainapp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/mainapp_48_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/mainapp_48_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/mainapp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/mainapp_48.svg libreoffice-7.4.7/yaru/build/purple/svg/res/mainapp_48.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/mainapp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/mainapp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/math128.svg libreoffice-7.4.7/yaru/build/purple/svg/res/math128.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/math128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/math128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odb_16_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odb_16_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odb_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odb_16.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odb_16.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odb_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odb_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odb_32_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odb_32_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odb_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odb_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odb_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odb_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odb_48_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odb_48_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odb_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odb_48.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odb_48.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odb_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odb_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odf_16_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odf_16_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odf_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odf_16.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odf_16.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odf_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odf_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odf_32_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odf_32_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odf_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odf_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odf_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odf_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odf_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odf_48_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odf_48_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odf_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odf_48.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odf_48.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odf_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odf_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odg_16_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odg_16_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odg_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odg_16.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odg_16.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odg_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odg_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odg_32_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odg_32_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odg_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odg_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odg_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odg_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odg_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odg_48_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odg_48_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odg_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odg_48.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odg_48.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odg_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odg_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odm_16_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odm_16_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odm_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odm_16.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odm_16.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odm_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odm_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odm_32_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odm_32_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odm_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odm_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odm_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odm_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odm_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odm_48_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odm_48_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odm_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odm_48.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odm_48.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odm_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odm_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odp_16_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odp_16_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odp_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odp_16.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odp_16.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odp_32_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odp_32_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odp_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odp_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odp_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odp_48_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odp_48_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odp_48.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odp_48.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ods_16_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ods_16_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ods_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ods_16.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ods_16.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ods_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ods_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ods_32_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ods_32_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ods_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ods_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ods_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ods_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ods_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ods_48_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ods_48_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ods_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ods_48.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ods_48.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ods_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ods_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odt_16_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odt_16_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odt_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odt_16.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odt_16.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odt_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odt_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odt_32_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odt_32_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odt_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odt_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odt_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odt_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odt_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odt_48_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odt_48_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odt_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/odt_48.svg libreoffice-7.4.7/yaru/build/purple/svg/res/odt_48.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/odt_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/odt_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ots_16_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ots_16_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ots_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ots_16.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ots_16.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ots_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ots_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ots_32_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ots_32_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ots_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ots_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ots_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ots_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ots_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ots_48_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ots_48_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ots_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ots_48.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ots_48.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ots_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ots_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ott_16_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ott_16_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ott_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ott_16.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ott_16.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ott_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ott_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ott_32_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ott_32_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ott_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ott_32.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ott_32.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ott_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ott_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ott_48_8.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ott_48_8.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ott_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/ott_48.svg libreoffice-7.4.7/yaru/build/purple/svg/res/ott_48.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/ott_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/ott_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03123.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03123.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03144.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03144.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03144.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03144.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03150.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03150.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03150.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03150.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03245.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03245.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03246.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03246.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03247.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03247.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03248.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03248.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03249.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03249.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03250.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03250.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03251.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03251.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03253.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03253.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03254.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03254.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/sx03255.svg libreoffice-7.4.7/yaru/build/purple/svg/res/sx03255.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/sx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/sx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/tipoftheday_c.svg libreoffice-7.4.7/yaru/build/purple/svg/res/tipoftheday_c.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/tipoftheday_c.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/tipoftheday_c.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/tipoftheday_d.svg libreoffice-7.4.7/yaru/build/purple/svg/res/tipoftheday_d.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/tipoftheday_d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/tipoftheday_d.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/tipoftheday_i.svg libreoffice-7.4.7/yaru/build/purple/svg/res/tipoftheday_i.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/tipoftheday_i.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/tipoftheday_i.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/tipoftheday.svg libreoffice-7.4.7/yaru/build/purple/svg/res/tipoftheday.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/tipoftheday.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/tipoftheday.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/tipoftheday_w.svg libreoffice-7.4.7/yaru/build/purple/svg/res/tipoftheday_w.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/tipoftheday_w.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/tipoftheday_w.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/res/writer128.svg libreoffice-7.4.7/yaru/build/purple/svg/res/writer128.svg --- libreoffice-7.4.6/yaru/build/purple/svg/res/writer128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/res/writer128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.4.7/yaru/build/purple/svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sfx2/res/128x128_calc_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.4.7/yaru/build/purple/svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sfx2/res/128x128_draw_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.4.7/yaru/build/purple/svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sfx2/res/128x128_impress_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.4.7/yaru/build/purple/svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sfx2/res/128x128_math_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sfx2/res/128x128_math_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.4.7/yaru/build/purple/svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sfx2/res/128x128_writer_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/svx/res/a11y_check_issues_found.svg libreoffice-7.4.7/yaru/build/purple/svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.4.6/yaru/build/purple/svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/svx/res/a11y_check_issues_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.4.7/yaru/build/purple/svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.4.6/yaru/build/purple/svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/svx/res/a11y_check_issues_not_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/svx/res/adding-selection.svg libreoffice-7.4.7/yaru/build/purple/svg/svx/res/adding-selection.svg --- libreoffice-7.4.6/yaru/build/purple/svg/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/svx/res/adding-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/svx/res/block-selection.svg libreoffice-7.4.7/yaru/build/purple/svg/svx/res/block-selection.svg --- libreoffice-7.4.6/yaru/build/purple/svg/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/svx/res/block-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/svx/res/doc_modified_feedback.svg libreoffice-7.4.7/yaru/build/purple/svg/svx/res/doc_modified_feedback.svg --- libreoffice-7.4.6/yaru/build/purple/svg/svx/res/doc_modified_feedback.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/svx/res/doc_modified_feedback.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/svx/res/extending-selection.svg libreoffice-7.4.7/yaru/build/purple/svg/svx/res/extending-selection.svg --- libreoffice-7.4.6/yaru/build/purple/svg/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/svx/res/extending-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/svx/res/standard-selection.svg libreoffice-7.4.7/yaru/build/purple/svg/svx/res/standard-selection.svg --- libreoffice-7.4.6/yaru/build/purple/svg/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/svx/res/standard-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/doublepage_10x22.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/doublepage_10x22.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/doublepage_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/doublepage_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/doublepage_a_10x22.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/doublepage_a_10x22.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/doublepage_a_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/doublepage_a_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/doublepage_a.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/doublepage_a.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/doublepage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/doublepage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/doublepage.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/doublepage.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/doublepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/doublepage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/emptypage_10x14.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/emptypage_10x14.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/emptypage_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/emptypage_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/emptypage_a_10x14.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/emptypage_a_10x14.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/emptypage_a_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/emptypage_a_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/emptypage_a.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/emptypage_a.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/emptypage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/emptypage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/emptypage.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/emptypage.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/emptypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/emptypage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/sc20236.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/sc20236.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/sc20236.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/sc20236.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/twopages_10x24.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/twopages_10x24.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/twopages_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/twopages_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/twopages_a_10x24.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/twopages_a_10x24.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/twopages_a_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/twopages_a_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/twopages_a.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/twopages_a.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/twopages_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/twopages_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/sw/res/twopages.svg libreoffice-7.4.7/yaru/build/purple/svg/sw/res/twopages.svg --- libreoffice-7.4.6/yaru/build/purple/svg/sw/res/twopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/sw/res/twopages.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/purple/svg/vcl/res/infobox.svg libreoffice-7.4.7/yaru/build/purple/svg/vcl/res/infobox.svg --- libreoffice-7.4.6/yaru/build/purple/svg/vcl/res/infobox.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/purple/svg/vcl/res/infobox.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -i \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/ar/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/ar/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/ar/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/ar/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/32/view100.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/32/view100.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/ar/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/ar/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/ar/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/ar/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/ar/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/ar/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/ar/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/ar/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/ca/lc_underlinedouble.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/ca/lc_underlinedouble.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/ca/lc_underline.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/ca/lc_underline.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/lc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/lc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/lc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/lc_insertbookmark.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/lc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/lc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/lc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/lc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/lc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/lc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/lc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/lc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/sc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/sc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/sc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/sc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/sc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/sc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/sc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/sc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/sc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/sc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/cmd/sc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/cmd/sc_trackchangesbar.png differ diff -Nru libreoffice-7.4.6/yaru/build/red/png/links.txt libreoffice-7.4.7/yaru/build/red/png/links.txt --- libreoffice-7.4.6/yaru/build/red/png/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/png/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.png cmd/lc_recsearch.png res/library_16.png cmd/lc_viewdatasourcebrowser.png res/lx03126.png cmd/32/dbviewtables.png -res/lx03127.png res/ots_32_8.png +res/lx03127.png res/ots_32.png res/lx03130.png res/lx03123.png res/lx03137.png res/lx03125.png res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/odf_32_8.png +res/lx03144.png res/odf_32.png +res/lx03145.png res/odf_32.png res/lx03152.png res/lx03125.png res/lx03153.png res/lx03125.png res/lx03154.png res/lx03125.png res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png +res/lx03156.png res/odt_32.png res/lx03158.png res/lx03125.png res/lx03160.png res/lx03125.png -res/lx03162.png res/odt_32_8.png -res/lx03163.png res/odt_32_8.png +res/lx03162.png res/odt_32.png +res/lx03163.png res/odt_32.png res/lx03165.png cmd/lc_save.png res/lx03167.png cmd/lc_openremote.png res/lx03188.png cmd/32/dbviewtables.png res/lx03189.png cmd/lc_open.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png +res/lx03217.png res/odg_32.png +res/lx03218.png res/odg_32.png res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/odg_32_8.png +res/lx03220.png res/odg_32.png +res/lx03221.png res/odg_32.png +res/lx03222.png res/odg_32.png +res/lx03227.png res/odg_32.png +res/lx03228.png res/odg_32.png res/lx03256.png cmd/lc_insertplugin.png -res/mainapp.png res/newdoc.png -res/mainapp_16.png cmd/sc_showsinglepage.png -res/mainapp_16_8.png cmd/sc_showsinglepage.png -res/mainapp_32.png res/newdoc.png +res/mainapp_16_8.png res/mainapp_16.png +res/mainapp_32_8.png res/mainapp_32.png +res/mainapp_48_8.png res/mainapp_48.png res/notebookbar.png sfx2/res/symphony/open_more.png +res/odb_16_8.png res/odb_16.png +res/odb_32_8.png res/odb_32.png +res/odb_48_8.png res/odb_48.png +res/odf_16_8.png res/odf_16.png +res/odf_32_8.png res/odf_32.png +res/odf_48_8.png res/odf_48.png +res/odg_16_8.png res/odg_16.png +res/odg_32_8.png res/odg_32.png +res/odg_48_8.png res/odg_48.png +res/odm_16_8.png res/odm_16.png +res/odm_32_8.png res/odm_32.png +res/odm_48_8.png res/odm_48.png +res/odp_16_8.png res/odp_16.png +res/odp_32_8.png res/odp_32.png +res/odp_48_8.png res/odp_48.png +res/ods_16_8.png res/ods_16.png +res/ods_32_8.png res/ods_32.png +res/ods_48_8.png res/ods_48.png +res/odt_16_8.png res/odt_16.png +res/odt_32_8.png res/odt_32.png +res/odt_48_8.png res/odt_48.png +res/ots_16_8.png res/ots_16.png +res/ots_32_8.png res/ots_32.png +res/ots_48_8.png res/ots_48.png +res/ott_16_8.png res/ott_16.png +res/ott_32_8.png res/ott_32.png +res/ott_48_8.png res/ott_48.png res/plugin.png cmd/lc_insertplugin.png res/queries_32.png cmd/32/dbviewqueries.png res/reload.png cmd/sc_reload.png @@ -2044,36 +2070,38 @@ res/sc10868.png cmd/sc_grafgamma.png res/sc10869.png cmd/sc_graftransparence.png res/sc_helperdialog.png cmd/sc_helpindex.png +res/sx03123.png res/odp_16.png res/sx03126.png cmd/sc_dbviewtables.png -res/sx03127.png res/ots_16_8.png -res/sx03130.png res/sx03123.png +res/sx03127.png res/ots_16.png +res/sx03130.png res/odp_16.png res/sx03137.png res/sx03125.png res/sx03139.png cmd/sc_questionanswers.png res/sx03140.png res/sx03125.png -res/sx03145.png res/sx03144.png +res/sx03144.png res/odf_16.png +res/sx03145.png res/odf_16.png res/sx03152.png res/sx03125.png res/sx03153.png res/sx03125.png res/sx03154.png res/sx03125.png res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png +res/sx03156.png res/odt_16.png res/sx03158.png res/sx03125.png res/sx03160.png res/sx03125.png -res/sx03162.png res/odt_16_8.png -res/sx03163.png res/odt_16_8.png +res/sx03162.png res/odt_16.png +res/sx03163.png res/odt_16.png res/sx03164.png cmd/sc_open.png res/sx03165.png cmd/sc_save.png res/sx03167.png cmd/sc_openremote.png res/sx03188.png cmd/sc_dbviewtables.png res/sx03189.png cmd/sc_open.png res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png +res/sx03217.png res/odg_16.png +res/sx03218.png res/odg_16.png res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/odg_16_8.png +res/sx03220.png res/odg_16.png +res/sx03221.png res/odg_16.png +res/sx03222.png res/odg_16.png +res/sx03227.png res/odg_16.png +res/sx03228.png res/odg_16.png res/sx03256.png cmd/sc_insertplugin.png res/sx10594.png cmd/sc_pushbutton.png res/sx10595.png cmd/sc_radiobutton.png @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.png cmd/sc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png +sfx2/res/symphony/sidebar-elements-large.png cmd/lc_insertmath.png sfx2/res/symphony/sidebar-functions-large.png cmd/lc_toggleformula.png sfx2/res/symphony/sidebar-functions-small.png cmd/sc_toggleformula.png sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png @@ -2271,6 +2300,8 @@ svx/res/color.png cmd/sc_bmpmask.png svx/res/colordlg.png cmd/sc_graphicfiltersmooth.png svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/doc_modified_no.png cmd/sc_save.png +svx/res/doc_modified_yes.png res/savemodified_small.png svx/res/dsth_cen.png cmd/sc_distributehorzcenter.png svx/res/dsth_dst.png cmd/sc_distributehorzdistance.png svx/res/dsth_hig.png cmd/sc_distributehorzright.png Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/base128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/base128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/base_thumbnail_256.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/base_thumbnail_256.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/calc128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/calc128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/draw128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/draw128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/impress128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/impress128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03126.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03126.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03129.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03129.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03162.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03162.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03245_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03245_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03246_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03246_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03247_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03247_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03248_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03248_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03249_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03249_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03250_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03250_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03251_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03251_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/lx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/lx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/main128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/main128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/mainapp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/mainapp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/mainapp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/mainapp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/mainapp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/mainapp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/mainapp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/mainapp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/math128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/math128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odb_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odb_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odb_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odb_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odb_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odb_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odb_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odb_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odb_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odb_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odb_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odb_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odf_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odf_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odf_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odf_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odf_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odf_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odf_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odf_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odf_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odf_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odf_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odf_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odg_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odg_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odg_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odg_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odg_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odg_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odg_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odg_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odg_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odg_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odg_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odg_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odm_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odm_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odm_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odm_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odm_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odm_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odm_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odm_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odm_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odm_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odm_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odm_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odp_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odp_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odp_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odp_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ods_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ods_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ods_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ods_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ods_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ods_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ods_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ods_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ods_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ods_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ods_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ods_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odt_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odt_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odt_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odt_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odt_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odt_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odt_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odt_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odt_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odt_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/odt_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/odt_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ots_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ots_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ots_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ots_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ots_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ots_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ots_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ots_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ots_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ots_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ots_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ots_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ott_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ott_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ott_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ott_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ott_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ott_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ott_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ott_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ott_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ott_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/ott_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/ott_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03144.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03144.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03150.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03150.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/sx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/sx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/tipoftheday_c.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/tipoftheday_c.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/tipoftheday_d.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/tipoftheday_d.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/tipoftheday_i.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/tipoftheday_i.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/tipoftheday.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/tipoftheday.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/tipoftheday_w.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/tipoftheday_w.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/res/writer128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/res/writer128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sfx2/res/128x128_math_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/svx/res/a11y_check_issues_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/svx/res/a11y_check_issues_not_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/svx/res/adding-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/svx/res/adding-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/svx/res/block-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/svx/res/block-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/svx/res/doc_modified_feedback.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/svx/res/doc_modified_feedback.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/svx/res/extending-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/svx/res/extending-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/svx/res/standard-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/svx/res/standard-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/doublepage_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/doublepage_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/doublepage_a_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/doublepage_a_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/doublepage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/doublepage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/doublepage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/doublepage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/emptypage_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/emptypage_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/emptypage_a_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/emptypage_a_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/emptypage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/emptypage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/emptypage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/emptypage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/sc20236.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/sc20236.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/twopages_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/twopages_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/twopages_a_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/twopages_a_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/twopages_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/twopages_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/sw/res/twopages.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/sw/res/twopages.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/red/png/vcl/res/infobox.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/red/png/vcl/res/infobox.png differ diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/conehoristack_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/conehoristack_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/conehoristack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/conehoristack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/donut3d_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/donut3d_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/donut3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/donut3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/net_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/net_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/net_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/net_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/netfill_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/netfill_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/netfill_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/netfill_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/netlinepoint_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/netlinepoint_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/netlinepoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/netlinepoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/netlinepointstack_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/netlinepointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/netlinepointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/netlinepointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/netpoint_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/netpoint_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/netpoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/netpoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/netpointstack_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/netpointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/netpointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/netpointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/netstack_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/netstack_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/netstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/netstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/nostackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/nostackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/nostackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/nostackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/nostackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/nostackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/nostackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/nostackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/nostacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/nostacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/nostacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/nostacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/nostacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/nostacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/nostacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/nostacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stackdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stackdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stackdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stacksmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stacksmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stacksmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stacksmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stackstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stackstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stackstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stackstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stacksteppedboth_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stacksteppedboth_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stacksteppedboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stacksteppedboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stacksteppedlines_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stacksteppedlines_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/stacksteppedlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/stacksteppedlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxisdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxisdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxisdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxisdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxisdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxisdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxisdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxisdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxisdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxissmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxissmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxissmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxissmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxissmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxissmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxissmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxisstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxisstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/red/svg/chart2/res/valueaxisstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/ar/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/ar/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/ar/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/ar/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/ar/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/ar/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/ar/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/ar/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/comparedocuments.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/comparedocuments.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/editcurindex.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/editcurindex.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/footnotedialog.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/footnotedialog.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/insertendnote.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/insertendnote.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/insertfootnote.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/insertfootnote.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/insertindexesentry.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/insertreferencefield.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/saveacopy.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/saveacopy.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/trackchangesbar.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/32/view100.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/32/view100.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/32/view100.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/32/view100.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -1 \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/ar/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/ar/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/ar/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/ar/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/ar/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/ar/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/ar/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/ar/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/ar/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/ar/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/ar/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/ar/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/ar/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/ar/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/ar/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/ar/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/ca/lc_underlinedouble.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/ca/lc_underlinedouble.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/ca/lc_underlinedouble.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/ca/lc_underlinedouble.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/ca/lc_underline.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/ca/lc_underline.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/ca/lc_underline.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/ca/lc_underline.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_comparedocuments.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_editcurindex.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_footnotedialog.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_fullscreen.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_fullscreen.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_fullscreen.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_fullscreen.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_insertbookmark.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_insertbookmark.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_insertbookmark.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_insertbookmark.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_insertendnote.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_insertfootnote.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_saveacopy.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/lc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/lc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_comparedocuments.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_editcurindex.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_footnotedialog.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_graftransparence.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_graftransparence.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_graftransparence.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_graftransparence.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_insertendnote.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_insertfootnote.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_saveacopy.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/red/svg/cmd/sc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/cmd/sc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/links.txt libreoffice-7.4.7/yaru/build/red/svg/links.txt --- libreoffice-7.4.6/yaru/build/red/svg/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.svg cmd/lc_recsearch.svg res/library_16.svg cmd/lc_viewdatasourcebrowser.svg res/lx03126.svg cmd/32/dbviewtables.svg -res/lx03127.svg res/ots_32_8.svg +res/lx03127.svg res/ots_32.svg res/lx03130.svg res/lx03123.svg res/lx03137.svg res/lx03125.svg res/lx03140.svg res/lx03125.svg -res/lx03144.svg res/odf_32_8.svg -res/lx03145.svg res/odf_32_8.svg +res/lx03144.svg res/odf_32.svg +res/lx03145.svg res/odf_32.svg res/lx03152.svg res/lx03125.svg res/lx03153.svg res/lx03125.svg res/lx03154.svg res/lx03125.svg res/lx03155.svg res/lx03125.svg -res/lx03156.svg res/odt_32_8.svg +res/lx03156.svg res/odt_32.svg res/lx03158.svg res/lx03125.svg res/lx03160.svg res/lx03125.svg -res/lx03162.svg res/odt_32_8.svg -res/lx03163.svg res/odt_32_8.svg +res/lx03162.svg res/odt_32.svg +res/lx03163.svg res/odt_32.svg res/lx03165.svg cmd/lc_save.svg res/lx03167.svg cmd/lc_openremote.svg res/lx03188.svg cmd/32/dbviewtables.svg res/lx03189.svg cmd/lc_open.svg -res/lx03217.svg res/odg_32_8.svg -res/lx03218.svg res/odg_32_8.svg +res/lx03217.svg res/odg_32.svg +res/lx03218.svg res/odg_32.svg res/lx03219.svg res/lx03125.svg -res/lx03220.svg res/odg_32_8.svg -res/lx03221.svg res/odg_32_8.svg -res/lx03222.svg res/odg_32_8.svg -res/lx03227.svg res/odg_32_8.svg -res/lx03228.svg res/odg_32_8.svg +res/lx03220.svg res/odg_32.svg +res/lx03221.svg res/odg_32.svg +res/lx03222.svg res/odg_32.svg +res/lx03227.svg res/odg_32.svg +res/lx03228.svg res/odg_32.svg res/lx03256.svg cmd/lc_insertplugin.svg -res/mainapp.svg res/newdoc.svg -res/mainapp_16.svg cmd/sc_showsinglepage.svg -res/mainapp_16_8.svg cmd/sc_showsinglepage.svg -res/mainapp_32.svg res/newdoc.svg +res/mainapp_16_8.svg res/mainapp_16.svg +res/mainapp_32_8.svg res/mainapp_32.svg +res/mainapp_48_8.svg res/mainapp_48.svg res/notebookbar.svg sfx2/res/symphony/open_more.svg +res/odb_16_8.svg res/odb_16.svg +res/odb_32_8.svg res/odb_32.svg +res/odb_48_8.svg res/odb_48.svg +res/odf_16_8.svg res/odf_16.svg +res/odf_32_8.svg res/odf_32.svg +res/odf_48_8.svg res/odf_48.svg +res/odg_16_8.svg res/odg_16.svg +res/odg_32_8.svg res/odg_32.svg +res/odg_48_8.svg res/odg_48.svg +res/odm_16_8.svg res/odm_16.svg +res/odm_32_8.svg res/odm_32.svg +res/odm_48_8.svg res/odm_48.svg +res/odp_16_8.svg res/odp_16.svg +res/odp_32_8.svg res/odp_32.svg +res/odp_48_8.svg res/odp_48.svg +res/ods_16_8.svg res/ods_16.svg +res/ods_32_8.svg res/ods_32.svg +res/ods_48_8.svg res/ods_48.svg +res/odt_16_8.svg res/odt_16.svg +res/odt_32_8.svg res/odt_32.svg +res/odt_48_8.svg res/odt_48.svg +res/ots_16_8.svg res/ots_16.svg +res/ots_32_8.svg res/ots_32.svg +res/ots_48_8.svg res/ots_48.svg +res/ott_16_8.svg res/ott_16.svg +res/ott_32_8.svg res/ott_32.svg +res/ott_48_8.svg res/ott_48.svg res/plugin.svg cmd/lc_insertplugin.svg res/queries_32.svg cmd/32/dbviewqueries.svg res/reload.svg cmd/sc_reload.svg @@ -2044,36 +2070,38 @@ res/sc10868.svg cmd/sc_grafgamma.svg res/sc10869.svg cmd/sc_graftransparence.svg res/sc_helperdialog.svg cmd/sc_helpindex.svg +res/sx03123.svg res/odp_16.svg res/sx03126.svg cmd/sc_dbviewtables.svg -res/sx03127.svg res/ots_16_8.svg -res/sx03130.svg res/sx03123.svg +res/sx03127.svg res/ots_16.svg +res/sx03130.svg res/odp_16.svg res/sx03137.svg res/sx03125.svg res/sx03139.svg cmd/sc_questionanswers.svg res/sx03140.svg res/sx03125.svg -res/sx03145.svg res/sx03144.svg +res/sx03144.svg res/odf_16.svg +res/sx03145.svg res/odf_16.svg res/sx03152.svg res/sx03125.svg res/sx03153.svg res/sx03125.svg res/sx03154.svg res/sx03125.svg res/sx03155.svg res/sx03125.svg -res/sx03156.svg res/odt_16_8.svg +res/sx03156.svg res/odt_16.svg res/sx03158.svg res/sx03125.svg res/sx03160.svg res/sx03125.svg -res/sx03162.svg res/odt_16_8.svg -res/sx03163.svg res/odt_16_8.svg +res/sx03162.svg res/odt_16.svg +res/sx03163.svg res/odt_16.svg res/sx03164.svg cmd/sc_open.svg res/sx03165.svg cmd/sc_save.svg res/sx03167.svg cmd/sc_openremote.svg res/sx03188.svg cmd/sc_dbviewtables.svg res/sx03189.svg cmd/sc_open.svg res/sx03202.svg cmd/sc_dbviewqueries.svg -res/sx03217.svg res/odg_16_8.svg -res/sx03218.svg res/odg_16_8.svg +res/sx03217.svg res/odg_16.svg +res/sx03218.svg res/odg_16.svg res/sx03219.svg res/sx03125.svg -res/sx03220.svg res/odg_16_8.svg -res/sx03221.svg res/odg_16_8.svg -res/sx03222.svg res/odg_16_8.svg -res/sx03227.svg res/odg_16_8.svg -res/sx03228.svg res/odg_16_8.svg +res/sx03220.svg res/odg_16.svg +res/sx03221.svg res/odg_16.svg +res/sx03222.svg res/odg_16.svg +res/sx03227.svg res/odg_16.svg +res/sx03228.svg res/odg_16.svg res/sx03256.svg cmd/sc_insertplugin.svg res/sx10594.svg cmd/sc_pushbutton.svg res/sx10595.svg cmd/sc_radiobutton.svg @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.svg cmd/sc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-large.svg cmd/lc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-small.svg cmd/sc_bmpmask.svg +sfx2/res/symphony/sidebar-elements-large.svg cmd/lc_insertmath.svg sfx2/res/symphony/sidebar-functions-large.svg cmd/lc_toggleformula.svg sfx2/res/symphony/sidebar-functions-small.svg cmd/sc_toggleformula.svg sfx2/res/symphony/sidebar-gallery-large.svg cmd/lc_gallery.svg @@ -2271,6 +2300,8 @@ svx/res/color.svg cmd/sc_bmpmask.svg svx/res/colordlg.svg cmd/sc_graphicfiltersmooth.svg svx/res/convrt3d.svg cmd/sc_convertinto3d.svg +svx/res/doc_modified_no.svg cmd/sc_save.svg +svx/res/doc_modified_yes.svg res/savemodified_small.svg svx/res/dsth_cen.svg cmd/sc_distributehorzcenter.svg svx/res/dsth_dst.svg cmd/sc_distributehorzdistance.svg svx/res/dsth_hig.svg cmd/sc_distributehorzright.svg diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/base128.svg libreoffice-7.4.7/yaru/build/red/svg/res/base128.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/base128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/base128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/base_thumbnail_256.svg libreoffice-7.4.7/yaru/build/red/svg/res/base_thumbnail_256.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/base_thumbnail_256.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/base_thumbnail_256.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/calc128.svg libreoffice-7.4.7/yaru/build/red/svg/res/calc128.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/calc128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/calc128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/draw128.svg libreoffice-7.4.7/yaru/build/red/svg/res/draw128.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/draw128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/draw128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/impress128.svg libreoffice-7.4.7/yaru/build/red/svg/res/impress128.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/impress128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/impress128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03123.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03123.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03123.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03126.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03126.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03126.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03126.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03129.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03129.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03129.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03129.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03162.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03162.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03162.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03162.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03245_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03245_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03245_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03245_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03245.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03245.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03246_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03246_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03246_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03246_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03246.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03246.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03247_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03247_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03247_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03247_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03247.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03247.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03248_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03248_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03248_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03248_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03248.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03248.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03249_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03249_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03249_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03249_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03249.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03249.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03250_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03250_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03250_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03250_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03250.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03250.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03251_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03251_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03251_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03251_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03251.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03251.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03253.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03253.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03254.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03254.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/lx03255.svg libreoffice-7.4.7/yaru/build/red/svg/res/lx03255.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/lx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/lx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/main128.svg libreoffice-7.4.7/yaru/build/red/svg/res/main128.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/main128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/main128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/mainapp_16.svg libreoffice-7.4.7/yaru/build/red/svg/res/mainapp_16.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/mainapp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/mainapp_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/mainapp_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/mainapp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/mainapp_48_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/mainapp_48_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/mainapp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/mainapp_48.svg libreoffice-7.4.7/yaru/build/red/svg/res/mainapp_48.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/mainapp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/mainapp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/math128.svg libreoffice-7.4.7/yaru/build/red/svg/res/math128.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/math128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/math128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odb_16_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odb_16_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odb_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odb_16.svg libreoffice-7.4.7/yaru/build/red/svg/res/odb_16.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odb_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odb_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odb_32_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odb_32_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odb_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odb_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/odb_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odb_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odb_48_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odb_48_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odb_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odb_48.svg libreoffice-7.4.7/yaru/build/red/svg/res/odb_48.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odb_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odb_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odf_16_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odf_16_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odf_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odf_16.svg libreoffice-7.4.7/yaru/build/red/svg/res/odf_16.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odf_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odf_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odf_32_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odf_32_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odf_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odf_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/odf_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odf_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odf_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odf_48_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odf_48_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odf_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odf_48.svg libreoffice-7.4.7/yaru/build/red/svg/res/odf_48.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odf_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odf_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odg_16_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odg_16_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odg_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odg_16.svg libreoffice-7.4.7/yaru/build/red/svg/res/odg_16.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odg_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odg_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odg_32_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odg_32_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odg_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odg_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/odg_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odg_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odg_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odg_48_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odg_48_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odg_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odg_48.svg libreoffice-7.4.7/yaru/build/red/svg/res/odg_48.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odg_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odg_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odm_16_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odm_16_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odm_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odm_16.svg libreoffice-7.4.7/yaru/build/red/svg/res/odm_16.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odm_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odm_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odm_32_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odm_32_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odm_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odm_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/odm_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odm_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odm_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odm_48_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odm_48_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odm_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odm_48.svg libreoffice-7.4.7/yaru/build/red/svg/res/odm_48.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odm_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odm_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odp_16_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odp_16_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odp_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odp_16.svg libreoffice-7.4.7/yaru/build/red/svg/res/odp_16.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odp_32_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odp_32_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odp_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odp_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/odp_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odp_48_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odp_48_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odp_48.svg libreoffice-7.4.7/yaru/build/red/svg/res/odp_48.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ods_16_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/ods_16_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ods_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ods_16.svg libreoffice-7.4.7/yaru/build/red/svg/res/ods_16.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ods_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ods_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ods_32_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/ods_32_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ods_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ods_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/ods_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ods_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ods_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ods_48_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/ods_48_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ods_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ods_48.svg libreoffice-7.4.7/yaru/build/red/svg/res/ods_48.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ods_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ods_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odt_16_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odt_16_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odt_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odt_16.svg libreoffice-7.4.7/yaru/build/red/svg/res/odt_16.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odt_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odt_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odt_32_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odt_32_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odt_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odt_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/odt_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odt_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odt_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odt_48_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/odt_48_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odt_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/odt_48.svg libreoffice-7.4.7/yaru/build/red/svg/res/odt_48.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/odt_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/odt_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ots_16_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/ots_16_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ots_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ots_16.svg libreoffice-7.4.7/yaru/build/red/svg/res/ots_16.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ots_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ots_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ots_32_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/ots_32_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ots_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ots_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/ots_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ots_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ots_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ots_48_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/ots_48_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ots_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ots_48.svg libreoffice-7.4.7/yaru/build/red/svg/res/ots_48.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ots_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ots_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ott_16_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/ott_16_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ott_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ott_16.svg libreoffice-7.4.7/yaru/build/red/svg/res/ott_16.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ott_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ott_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ott_32_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/ott_32_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ott_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ott_32.svg libreoffice-7.4.7/yaru/build/red/svg/res/ott_32.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ott_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ott_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ott_48_8.svg libreoffice-7.4.7/yaru/build/red/svg/res/ott_48_8.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ott_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/ott_48.svg libreoffice-7.4.7/yaru/build/red/svg/res/ott_48.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/ott_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/ott_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03123.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03123.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03144.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03144.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03144.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03144.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03150.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03150.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03150.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03150.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03245.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03245.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03246.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03246.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03247.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03247.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03248.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03248.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03249.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03249.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03250.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03250.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03251.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03251.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03253.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03253.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03254.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03254.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/sx03255.svg libreoffice-7.4.7/yaru/build/red/svg/res/sx03255.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/sx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/sx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/tipoftheday_c.svg libreoffice-7.4.7/yaru/build/red/svg/res/tipoftheday_c.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/tipoftheday_c.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/tipoftheday_c.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/tipoftheday_d.svg libreoffice-7.4.7/yaru/build/red/svg/res/tipoftheday_d.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/tipoftheday_d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/tipoftheday_d.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/tipoftheday_i.svg libreoffice-7.4.7/yaru/build/red/svg/res/tipoftheday_i.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/tipoftheday_i.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/tipoftheday_i.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/tipoftheday.svg libreoffice-7.4.7/yaru/build/red/svg/res/tipoftheday.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/tipoftheday.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/tipoftheday.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/tipoftheday_w.svg libreoffice-7.4.7/yaru/build/red/svg/res/tipoftheday_w.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/tipoftheday_w.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/tipoftheday_w.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/res/writer128.svg libreoffice-7.4.7/yaru/build/red/svg/res/writer128.svg --- libreoffice-7.4.6/yaru/build/red/svg/res/writer128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/res/writer128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.4.7/yaru/build/red/svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.4.6/yaru/build/red/svg/sfx2/res/128x128_calc_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.4.7/yaru/build/red/svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.4.6/yaru/build/red/svg/sfx2/res/128x128_draw_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.4.7/yaru/build/red/svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.4.6/yaru/build/red/svg/sfx2/res/128x128_impress_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.4.7/yaru/build/red/svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.4.6/yaru/build/red/svg/sfx2/res/128x128_math_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sfx2/res/128x128_math_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.4.7/yaru/build/red/svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.4.6/yaru/build/red/svg/sfx2/res/128x128_writer_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/svx/res/a11y_check_issues_found.svg libreoffice-7.4.7/yaru/build/red/svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.4.6/yaru/build/red/svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/svx/res/a11y_check_issues_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.4.7/yaru/build/red/svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.4.6/yaru/build/red/svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/svx/res/a11y_check_issues_not_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/svx/res/adding-selection.svg libreoffice-7.4.7/yaru/build/red/svg/svx/res/adding-selection.svg --- libreoffice-7.4.6/yaru/build/red/svg/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/svx/res/adding-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/svx/res/block-selection.svg libreoffice-7.4.7/yaru/build/red/svg/svx/res/block-selection.svg --- libreoffice-7.4.6/yaru/build/red/svg/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/svx/res/block-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/svx/res/doc_modified_feedback.svg libreoffice-7.4.7/yaru/build/red/svg/svx/res/doc_modified_feedback.svg --- libreoffice-7.4.6/yaru/build/red/svg/svx/res/doc_modified_feedback.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/svx/res/doc_modified_feedback.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/svx/res/extending-selection.svg libreoffice-7.4.7/yaru/build/red/svg/svx/res/extending-selection.svg --- libreoffice-7.4.6/yaru/build/red/svg/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/svx/res/extending-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/svx/res/standard-selection.svg libreoffice-7.4.7/yaru/build/red/svg/svx/res/standard-selection.svg --- libreoffice-7.4.6/yaru/build/red/svg/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/svx/res/standard-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/doublepage_10x22.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/doublepage_10x22.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/doublepage_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/doublepage_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/doublepage_a_10x22.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/doublepage_a_10x22.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/doublepage_a_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/doublepage_a_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/doublepage_a.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/doublepage_a.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/doublepage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/doublepage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/doublepage.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/doublepage.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/doublepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/doublepage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/emptypage_10x14.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/emptypage_10x14.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/emptypage_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/emptypage_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/emptypage_a_10x14.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/emptypage_a_10x14.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/emptypage_a_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/emptypage_a_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/emptypage_a.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/emptypage_a.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/emptypage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/emptypage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/emptypage.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/emptypage.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/emptypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/emptypage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/sc20236.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/sc20236.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/sc20236.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/sc20236.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/twopages_10x24.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/twopages_10x24.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/twopages_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/twopages_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/twopages_a_10x24.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/twopages_a_10x24.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/twopages_a_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/twopages_a_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/twopages_a.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/twopages_a.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/twopages_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/twopages_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/sw/res/twopages.svg libreoffice-7.4.7/yaru/build/red/svg/sw/res/twopages.svg --- libreoffice-7.4.6/yaru/build/red/svg/sw/res/twopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/sw/res/twopages.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/red/svg/vcl/res/infobox.svg libreoffice-7.4.7/yaru/build/red/svg/vcl/res/infobox.svg --- libreoffice-7.4.6/yaru/build/red/svg/vcl/res/infobox.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/red/svg/vcl/res/infobox.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -i \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/ar/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/ar/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/ar/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/ar/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/32/view100.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/32/view100.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/ar/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/ar/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/ar/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/ar/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/ar/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/ar/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/ar/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/ar/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/ca/lc_underlinedouble.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/ca/lc_underlinedouble.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/ca/lc_underline.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/ca/lc_underline.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/lc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/lc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/lc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/lc_insertbookmark.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/lc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/lc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/lc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/lc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/lc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/lc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/lc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/lc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/sc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/sc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/sc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/sc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/sc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/sc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/sc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/sc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/sc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/sc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/cmd/sc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/cmd/sc_trackchangesbar.png differ diff -Nru libreoffice-7.4.6/yaru/build/sage/png/links.txt libreoffice-7.4.7/yaru/build/sage/png/links.txt --- libreoffice-7.4.6/yaru/build/sage/png/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/png/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.png cmd/lc_recsearch.png res/library_16.png cmd/lc_viewdatasourcebrowser.png res/lx03126.png cmd/32/dbviewtables.png -res/lx03127.png res/ots_32_8.png +res/lx03127.png res/ots_32.png res/lx03130.png res/lx03123.png res/lx03137.png res/lx03125.png res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/odf_32_8.png +res/lx03144.png res/odf_32.png +res/lx03145.png res/odf_32.png res/lx03152.png res/lx03125.png res/lx03153.png res/lx03125.png res/lx03154.png res/lx03125.png res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png +res/lx03156.png res/odt_32.png res/lx03158.png res/lx03125.png res/lx03160.png res/lx03125.png -res/lx03162.png res/odt_32_8.png -res/lx03163.png res/odt_32_8.png +res/lx03162.png res/odt_32.png +res/lx03163.png res/odt_32.png res/lx03165.png cmd/lc_save.png res/lx03167.png cmd/lc_openremote.png res/lx03188.png cmd/32/dbviewtables.png res/lx03189.png cmd/lc_open.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png +res/lx03217.png res/odg_32.png +res/lx03218.png res/odg_32.png res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/odg_32_8.png +res/lx03220.png res/odg_32.png +res/lx03221.png res/odg_32.png +res/lx03222.png res/odg_32.png +res/lx03227.png res/odg_32.png +res/lx03228.png res/odg_32.png res/lx03256.png cmd/lc_insertplugin.png -res/mainapp.png res/newdoc.png -res/mainapp_16.png cmd/sc_showsinglepage.png -res/mainapp_16_8.png cmd/sc_showsinglepage.png -res/mainapp_32.png res/newdoc.png +res/mainapp_16_8.png res/mainapp_16.png +res/mainapp_32_8.png res/mainapp_32.png +res/mainapp_48_8.png res/mainapp_48.png res/notebookbar.png sfx2/res/symphony/open_more.png +res/odb_16_8.png res/odb_16.png +res/odb_32_8.png res/odb_32.png +res/odb_48_8.png res/odb_48.png +res/odf_16_8.png res/odf_16.png +res/odf_32_8.png res/odf_32.png +res/odf_48_8.png res/odf_48.png +res/odg_16_8.png res/odg_16.png +res/odg_32_8.png res/odg_32.png +res/odg_48_8.png res/odg_48.png +res/odm_16_8.png res/odm_16.png +res/odm_32_8.png res/odm_32.png +res/odm_48_8.png res/odm_48.png +res/odp_16_8.png res/odp_16.png +res/odp_32_8.png res/odp_32.png +res/odp_48_8.png res/odp_48.png +res/ods_16_8.png res/ods_16.png +res/ods_32_8.png res/ods_32.png +res/ods_48_8.png res/ods_48.png +res/odt_16_8.png res/odt_16.png +res/odt_32_8.png res/odt_32.png +res/odt_48_8.png res/odt_48.png +res/ots_16_8.png res/ots_16.png +res/ots_32_8.png res/ots_32.png +res/ots_48_8.png res/ots_48.png +res/ott_16_8.png res/ott_16.png +res/ott_32_8.png res/ott_32.png +res/ott_48_8.png res/ott_48.png res/plugin.png cmd/lc_insertplugin.png res/queries_32.png cmd/32/dbviewqueries.png res/reload.png cmd/sc_reload.png @@ -2044,36 +2070,38 @@ res/sc10868.png cmd/sc_grafgamma.png res/sc10869.png cmd/sc_graftransparence.png res/sc_helperdialog.png cmd/sc_helpindex.png +res/sx03123.png res/odp_16.png res/sx03126.png cmd/sc_dbviewtables.png -res/sx03127.png res/ots_16_8.png -res/sx03130.png res/sx03123.png +res/sx03127.png res/ots_16.png +res/sx03130.png res/odp_16.png res/sx03137.png res/sx03125.png res/sx03139.png cmd/sc_questionanswers.png res/sx03140.png res/sx03125.png -res/sx03145.png res/sx03144.png +res/sx03144.png res/odf_16.png +res/sx03145.png res/odf_16.png res/sx03152.png res/sx03125.png res/sx03153.png res/sx03125.png res/sx03154.png res/sx03125.png res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png +res/sx03156.png res/odt_16.png res/sx03158.png res/sx03125.png res/sx03160.png res/sx03125.png -res/sx03162.png res/odt_16_8.png -res/sx03163.png res/odt_16_8.png +res/sx03162.png res/odt_16.png +res/sx03163.png res/odt_16.png res/sx03164.png cmd/sc_open.png res/sx03165.png cmd/sc_save.png res/sx03167.png cmd/sc_openremote.png res/sx03188.png cmd/sc_dbviewtables.png res/sx03189.png cmd/sc_open.png res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png +res/sx03217.png res/odg_16.png +res/sx03218.png res/odg_16.png res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/odg_16_8.png +res/sx03220.png res/odg_16.png +res/sx03221.png res/odg_16.png +res/sx03222.png res/odg_16.png +res/sx03227.png res/odg_16.png +res/sx03228.png res/odg_16.png res/sx03256.png cmd/sc_insertplugin.png res/sx10594.png cmd/sc_pushbutton.png res/sx10595.png cmd/sc_radiobutton.png @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.png cmd/sc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png +sfx2/res/symphony/sidebar-elements-large.png cmd/lc_insertmath.png sfx2/res/symphony/sidebar-functions-large.png cmd/lc_toggleformula.png sfx2/res/symphony/sidebar-functions-small.png cmd/sc_toggleformula.png sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png @@ -2271,6 +2300,8 @@ svx/res/color.png cmd/sc_bmpmask.png svx/res/colordlg.png cmd/sc_graphicfiltersmooth.png svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/doc_modified_no.png cmd/sc_save.png +svx/res/doc_modified_yes.png res/savemodified_small.png svx/res/dsth_cen.png cmd/sc_distributehorzcenter.png svx/res/dsth_dst.png cmd/sc_distributehorzdistance.png svx/res/dsth_hig.png cmd/sc_distributehorzright.png Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/base128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/base128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/base_thumbnail_256.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/base_thumbnail_256.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/calc128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/calc128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/draw128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/draw128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/impress128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/impress128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03126.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03126.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03129.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03129.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03162.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03162.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03245_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03245_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03246_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03246_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03247_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03247_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03248_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03248_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03249_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03249_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03250_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03250_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03251_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03251_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/lx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/lx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/main128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/main128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/mainapp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/mainapp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/mainapp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/mainapp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/mainapp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/mainapp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/mainapp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/mainapp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/math128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/math128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odb_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odb_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odb_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odb_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odb_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odb_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odb_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odb_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odb_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odb_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odb_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odb_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odf_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odf_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odf_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odf_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odf_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odf_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odf_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odf_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odf_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odf_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odf_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odf_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odg_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odg_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odg_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odg_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odg_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odg_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odg_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odg_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odg_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odg_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odg_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odg_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odm_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odm_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odm_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odm_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odm_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odm_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odm_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odm_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odm_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odm_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odm_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odm_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odp_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odp_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odp_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odp_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ods_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ods_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ods_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ods_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ods_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ods_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ods_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ods_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ods_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ods_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ods_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ods_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odt_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odt_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odt_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odt_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odt_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odt_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odt_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odt_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odt_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odt_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/odt_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/odt_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ots_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ots_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ots_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ots_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ots_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ots_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ots_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ots_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ots_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ots_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ots_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ots_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ott_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ott_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ott_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ott_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ott_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ott_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ott_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ott_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ott_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ott_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/ott_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/ott_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03144.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03144.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03150.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03150.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/sx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/sx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/tipoftheday_c.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/tipoftheday_c.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/tipoftheday_d.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/tipoftheday_d.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/tipoftheday_i.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/tipoftheday_i.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/tipoftheday.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/tipoftheday.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/tipoftheday_w.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/tipoftheday_w.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/res/writer128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/res/writer128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sfx2/res/128x128_math_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/svx/res/a11y_check_issues_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/svx/res/a11y_check_issues_not_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/svx/res/adding-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/svx/res/adding-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/svx/res/block-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/svx/res/block-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/svx/res/doc_modified_feedback.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/svx/res/doc_modified_feedback.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/svx/res/extending-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/svx/res/extending-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/svx/res/standard-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/svx/res/standard-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/doublepage_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/doublepage_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/doublepage_a_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/doublepage_a_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/doublepage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/doublepage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/doublepage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/doublepage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/emptypage_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/emptypage_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/emptypage_a_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/emptypage_a_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/emptypage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/emptypage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/emptypage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/emptypage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/sc20236.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/sc20236.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/twopages_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/twopages_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/twopages_a_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/twopages_a_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/twopages_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/twopages_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/sw/res/twopages.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/sw/res/twopages.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/sage/png/vcl/res/infobox.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/sage/png/vcl/res/infobox.png differ diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/conehoristack_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/conehoristack_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/conehoristack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/conehoristack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/donut3d_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/donut3d_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/donut3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/donut3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/net_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/net_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/net_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/net_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/netfill_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/netfill_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/netfill_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/netfill_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/netlinepoint_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/netlinepoint_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/netlinepoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/netlinepoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/netlinepointstack_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/netlinepointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/netlinepointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/netlinepointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/netpoint_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/netpoint_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/netpoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/netpoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/netpointstack_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/netpointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/netpointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/netpointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/netstack_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/netstack_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/netstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/netstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/nostackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/nostackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/nostackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/nostackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/nostackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/nostackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/nostackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/nostackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/nostacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/nostacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/nostacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/nostacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/nostacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/nostacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/nostacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/nostacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stackdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stackdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stackdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stacksmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stacksmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stacksmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stacksmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stackstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stackstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stackstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stackstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stacksteppedboth_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stacksteppedboth_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stacksteppedboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stacksteppedboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stacksteppedlines_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stacksteppedlines_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/stacksteppedlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/stacksteppedlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxisdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxisdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxisdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxisdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxisdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxisdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxisdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxisdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxisdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxissmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxissmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxissmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxissmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxissmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxissmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxissmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxisstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxisstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/sage/svg/chart2/res/valueaxisstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/ar/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/ar/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/ar/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/ar/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/ar/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/ar/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/ar/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/ar/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/comparedocuments.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/comparedocuments.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/editcurindex.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/editcurindex.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/footnotedialog.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/footnotedialog.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/insertendnote.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/insertendnote.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/insertfootnote.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/insertfootnote.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/insertindexesentry.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/insertreferencefield.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/saveacopy.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/saveacopy.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/trackchangesbar.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/view100.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/view100.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/32/view100.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/32/view100.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -1 \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/ar/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/ar/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/ar/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/ar/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/ar/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/ar/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/ar/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/ar/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/ar/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/ar/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/ar/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/ar/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/ar/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/ar/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/ar/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/ar/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/ca/lc_underlinedouble.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/ca/lc_underlinedouble.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/ca/lc_underlinedouble.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/ca/lc_underlinedouble.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/ca/lc_underline.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/ca/lc_underline.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/ca/lc_underline.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/ca/lc_underline.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_comparedocuments.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_editcurindex.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_footnotedialog.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_fullscreen.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_fullscreen.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_fullscreen.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_fullscreen.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_insertbookmark.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_insertbookmark.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_insertbookmark.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_insertbookmark.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_insertendnote.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_insertfootnote.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_saveacopy.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/lc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/lc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_comparedocuments.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_editcurindex.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_footnotedialog.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_graftransparence.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_graftransparence.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_graftransparence.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_graftransparence.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_insertendnote.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_insertfootnote.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_saveacopy.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/sage/svg/cmd/sc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/cmd/sc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/links.txt libreoffice-7.4.7/yaru/build/sage/svg/links.txt --- libreoffice-7.4.6/yaru/build/sage/svg/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.svg cmd/lc_recsearch.svg res/library_16.svg cmd/lc_viewdatasourcebrowser.svg res/lx03126.svg cmd/32/dbviewtables.svg -res/lx03127.svg res/ots_32_8.svg +res/lx03127.svg res/ots_32.svg res/lx03130.svg res/lx03123.svg res/lx03137.svg res/lx03125.svg res/lx03140.svg res/lx03125.svg -res/lx03144.svg res/odf_32_8.svg -res/lx03145.svg res/odf_32_8.svg +res/lx03144.svg res/odf_32.svg +res/lx03145.svg res/odf_32.svg res/lx03152.svg res/lx03125.svg res/lx03153.svg res/lx03125.svg res/lx03154.svg res/lx03125.svg res/lx03155.svg res/lx03125.svg -res/lx03156.svg res/odt_32_8.svg +res/lx03156.svg res/odt_32.svg res/lx03158.svg res/lx03125.svg res/lx03160.svg res/lx03125.svg -res/lx03162.svg res/odt_32_8.svg -res/lx03163.svg res/odt_32_8.svg +res/lx03162.svg res/odt_32.svg +res/lx03163.svg res/odt_32.svg res/lx03165.svg cmd/lc_save.svg res/lx03167.svg cmd/lc_openremote.svg res/lx03188.svg cmd/32/dbviewtables.svg res/lx03189.svg cmd/lc_open.svg -res/lx03217.svg res/odg_32_8.svg -res/lx03218.svg res/odg_32_8.svg +res/lx03217.svg res/odg_32.svg +res/lx03218.svg res/odg_32.svg res/lx03219.svg res/lx03125.svg -res/lx03220.svg res/odg_32_8.svg -res/lx03221.svg res/odg_32_8.svg -res/lx03222.svg res/odg_32_8.svg -res/lx03227.svg res/odg_32_8.svg -res/lx03228.svg res/odg_32_8.svg +res/lx03220.svg res/odg_32.svg +res/lx03221.svg res/odg_32.svg +res/lx03222.svg res/odg_32.svg +res/lx03227.svg res/odg_32.svg +res/lx03228.svg res/odg_32.svg res/lx03256.svg cmd/lc_insertplugin.svg -res/mainapp.svg res/newdoc.svg -res/mainapp_16.svg cmd/sc_showsinglepage.svg -res/mainapp_16_8.svg cmd/sc_showsinglepage.svg -res/mainapp_32.svg res/newdoc.svg +res/mainapp_16_8.svg res/mainapp_16.svg +res/mainapp_32_8.svg res/mainapp_32.svg +res/mainapp_48_8.svg res/mainapp_48.svg res/notebookbar.svg sfx2/res/symphony/open_more.svg +res/odb_16_8.svg res/odb_16.svg +res/odb_32_8.svg res/odb_32.svg +res/odb_48_8.svg res/odb_48.svg +res/odf_16_8.svg res/odf_16.svg +res/odf_32_8.svg res/odf_32.svg +res/odf_48_8.svg res/odf_48.svg +res/odg_16_8.svg res/odg_16.svg +res/odg_32_8.svg res/odg_32.svg +res/odg_48_8.svg res/odg_48.svg +res/odm_16_8.svg res/odm_16.svg +res/odm_32_8.svg res/odm_32.svg +res/odm_48_8.svg res/odm_48.svg +res/odp_16_8.svg res/odp_16.svg +res/odp_32_8.svg res/odp_32.svg +res/odp_48_8.svg res/odp_48.svg +res/ods_16_8.svg res/ods_16.svg +res/ods_32_8.svg res/ods_32.svg +res/ods_48_8.svg res/ods_48.svg +res/odt_16_8.svg res/odt_16.svg +res/odt_32_8.svg res/odt_32.svg +res/odt_48_8.svg res/odt_48.svg +res/ots_16_8.svg res/ots_16.svg +res/ots_32_8.svg res/ots_32.svg +res/ots_48_8.svg res/ots_48.svg +res/ott_16_8.svg res/ott_16.svg +res/ott_32_8.svg res/ott_32.svg +res/ott_48_8.svg res/ott_48.svg res/plugin.svg cmd/lc_insertplugin.svg res/queries_32.svg cmd/32/dbviewqueries.svg res/reload.svg cmd/sc_reload.svg @@ -2044,36 +2070,38 @@ res/sc10868.svg cmd/sc_grafgamma.svg res/sc10869.svg cmd/sc_graftransparence.svg res/sc_helperdialog.svg cmd/sc_helpindex.svg +res/sx03123.svg res/odp_16.svg res/sx03126.svg cmd/sc_dbviewtables.svg -res/sx03127.svg res/ots_16_8.svg -res/sx03130.svg res/sx03123.svg +res/sx03127.svg res/ots_16.svg +res/sx03130.svg res/odp_16.svg res/sx03137.svg res/sx03125.svg res/sx03139.svg cmd/sc_questionanswers.svg res/sx03140.svg res/sx03125.svg -res/sx03145.svg res/sx03144.svg +res/sx03144.svg res/odf_16.svg +res/sx03145.svg res/odf_16.svg res/sx03152.svg res/sx03125.svg res/sx03153.svg res/sx03125.svg res/sx03154.svg res/sx03125.svg res/sx03155.svg res/sx03125.svg -res/sx03156.svg res/odt_16_8.svg +res/sx03156.svg res/odt_16.svg res/sx03158.svg res/sx03125.svg res/sx03160.svg res/sx03125.svg -res/sx03162.svg res/odt_16_8.svg -res/sx03163.svg res/odt_16_8.svg +res/sx03162.svg res/odt_16.svg +res/sx03163.svg res/odt_16.svg res/sx03164.svg cmd/sc_open.svg res/sx03165.svg cmd/sc_save.svg res/sx03167.svg cmd/sc_openremote.svg res/sx03188.svg cmd/sc_dbviewtables.svg res/sx03189.svg cmd/sc_open.svg res/sx03202.svg cmd/sc_dbviewqueries.svg -res/sx03217.svg res/odg_16_8.svg -res/sx03218.svg res/odg_16_8.svg +res/sx03217.svg res/odg_16.svg +res/sx03218.svg res/odg_16.svg res/sx03219.svg res/sx03125.svg -res/sx03220.svg res/odg_16_8.svg -res/sx03221.svg res/odg_16_8.svg -res/sx03222.svg res/odg_16_8.svg -res/sx03227.svg res/odg_16_8.svg -res/sx03228.svg res/odg_16_8.svg +res/sx03220.svg res/odg_16.svg +res/sx03221.svg res/odg_16.svg +res/sx03222.svg res/odg_16.svg +res/sx03227.svg res/odg_16.svg +res/sx03228.svg res/odg_16.svg res/sx03256.svg cmd/sc_insertplugin.svg res/sx10594.svg cmd/sc_pushbutton.svg res/sx10595.svg cmd/sc_radiobutton.svg @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.svg cmd/sc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-large.svg cmd/lc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-small.svg cmd/sc_bmpmask.svg +sfx2/res/symphony/sidebar-elements-large.svg cmd/lc_insertmath.svg sfx2/res/symphony/sidebar-functions-large.svg cmd/lc_toggleformula.svg sfx2/res/symphony/sidebar-functions-small.svg cmd/sc_toggleformula.svg sfx2/res/symphony/sidebar-gallery-large.svg cmd/lc_gallery.svg @@ -2271,6 +2300,8 @@ svx/res/color.svg cmd/sc_bmpmask.svg svx/res/colordlg.svg cmd/sc_graphicfiltersmooth.svg svx/res/convrt3d.svg cmd/sc_convertinto3d.svg +svx/res/doc_modified_no.svg cmd/sc_save.svg +svx/res/doc_modified_yes.svg res/savemodified_small.svg svx/res/dsth_cen.svg cmd/sc_distributehorzcenter.svg svx/res/dsth_dst.svg cmd/sc_distributehorzdistance.svg svx/res/dsth_hig.svg cmd/sc_distributehorzright.svg diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/base128.svg libreoffice-7.4.7/yaru/build/sage/svg/res/base128.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/base128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/base128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/base_thumbnail_256.svg libreoffice-7.4.7/yaru/build/sage/svg/res/base_thumbnail_256.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/base_thumbnail_256.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/base_thumbnail_256.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/calc128.svg libreoffice-7.4.7/yaru/build/sage/svg/res/calc128.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/calc128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/calc128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/draw128.svg libreoffice-7.4.7/yaru/build/sage/svg/res/draw128.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/draw128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/draw128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/impress128.svg libreoffice-7.4.7/yaru/build/sage/svg/res/impress128.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/impress128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/impress128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03123.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03123.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03123.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03126.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03126.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03126.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03126.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03129.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03129.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03129.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03129.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03162.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03162.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03162.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03162.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03245_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03245_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03245_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03245_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03245.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03245.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03246_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03246_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03246_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03246_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03246.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03246.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03247_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03247_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03247_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03247_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03247.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03247.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03248_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03248_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03248_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03248_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03248.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03248.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03249_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03249_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03249_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03249_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03249.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03249.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03250_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03250_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03250_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03250_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03250.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03250.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03251_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03251_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03251_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03251_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03251.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03251.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03253.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03253.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03254.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03254.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/lx03255.svg libreoffice-7.4.7/yaru/build/sage/svg/res/lx03255.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/lx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/lx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/main128.svg libreoffice-7.4.7/yaru/build/sage/svg/res/main128.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/main128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/main128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/mainapp_16.svg libreoffice-7.4.7/yaru/build/sage/svg/res/mainapp_16.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/mainapp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/mainapp_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/mainapp_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/mainapp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/mainapp_48_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/mainapp_48_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/mainapp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/mainapp_48.svg libreoffice-7.4.7/yaru/build/sage/svg/res/mainapp_48.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/mainapp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/mainapp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/math128.svg libreoffice-7.4.7/yaru/build/sage/svg/res/math128.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/math128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/math128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odb_16_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odb_16_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odb_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odb_16.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odb_16.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odb_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odb_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odb_32_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odb_32_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odb_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odb_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odb_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odb_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odb_48_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odb_48_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odb_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odb_48.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odb_48.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odb_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odb_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odf_16_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odf_16_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odf_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odf_16.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odf_16.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odf_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odf_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odf_32_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odf_32_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odf_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odf_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odf_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odf_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odf_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odf_48_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odf_48_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odf_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odf_48.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odf_48.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odf_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odf_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odg_16_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odg_16_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odg_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odg_16.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odg_16.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odg_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odg_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odg_32_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odg_32_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odg_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odg_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odg_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odg_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odg_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odg_48_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odg_48_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odg_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odg_48.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odg_48.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odg_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odg_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odm_16_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odm_16_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odm_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odm_16.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odm_16.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odm_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odm_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odm_32_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odm_32_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odm_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odm_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odm_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odm_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odm_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odm_48_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odm_48_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odm_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odm_48.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odm_48.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odm_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odm_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odp_16_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odp_16_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odp_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odp_16.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odp_16.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odp_32_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odp_32_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odp_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odp_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odp_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odp_48_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odp_48_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odp_48.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odp_48.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ods_16_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ods_16_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ods_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ods_16.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ods_16.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ods_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ods_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ods_32_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ods_32_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ods_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ods_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ods_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ods_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ods_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ods_48_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ods_48_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ods_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ods_48.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ods_48.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ods_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ods_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odt_16_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odt_16_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odt_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odt_16.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odt_16.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odt_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odt_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odt_32_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odt_32_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odt_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odt_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odt_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odt_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odt_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odt_48_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odt_48_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odt_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/odt_48.svg libreoffice-7.4.7/yaru/build/sage/svg/res/odt_48.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/odt_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/odt_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ots_16_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ots_16_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ots_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ots_16.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ots_16.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ots_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ots_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ots_32_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ots_32_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ots_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ots_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ots_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ots_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ots_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ots_48_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ots_48_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ots_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ots_48.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ots_48.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ots_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ots_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ott_16_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ott_16_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ott_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ott_16.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ott_16.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ott_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ott_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ott_32_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ott_32_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ott_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ott_32.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ott_32.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ott_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ott_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ott_48_8.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ott_48_8.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ott_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/ott_48.svg libreoffice-7.4.7/yaru/build/sage/svg/res/ott_48.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/ott_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/ott_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03123.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03123.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03144.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03144.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03144.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03144.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03150.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03150.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03150.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03150.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03245.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03245.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03246.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03246.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03247.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03247.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03248.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03248.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03249.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03249.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03250.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03250.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03251.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03251.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03253.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03253.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03254.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03254.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/sx03255.svg libreoffice-7.4.7/yaru/build/sage/svg/res/sx03255.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/sx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/sx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/tipoftheday_c.svg libreoffice-7.4.7/yaru/build/sage/svg/res/tipoftheday_c.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/tipoftheday_c.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/tipoftheday_c.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/tipoftheday_d.svg libreoffice-7.4.7/yaru/build/sage/svg/res/tipoftheday_d.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/tipoftheday_d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/tipoftheday_d.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/tipoftheday_i.svg libreoffice-7.4.7/yaru/build/sage/svg/res/tipoftheday_i.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/tipoftheday_i.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/tipoftheday_i.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/tipoftheday.svg libreoffice-7.4.7/yaru/build/sage/svg/res/tipoftheday.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/tipoftheday.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/tipoftheday.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/tipoftheday_w.svg libreoffice-7.4.7/yaru/build/sage/svg/res/tipoftheday_w.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/tipoftheday_w.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/tipoftheday_w.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/res/writer128.svg libreoffice-7.4.7/yaru/build/sage/svg/res/writer128.svg --- libreoffice-7.4.6/yaru/build/sage/svg/res/writer128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/res/writer128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.4.7/yaru/build/sage/svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sfx2/res/128x128_calc_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.4.7/yaru/build/sage/svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sfx2/res/128x128_draw_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.4.7/yaru/build/sage/svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sfx2/res/128x128_impress_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.4.7/yaru/build/sage/svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sfx2/res/128x128_math_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sfx2/res/128x128_math_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.4.7/yaru/build/sage/svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sfx2/res/128x128_writer_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/svx/res/a11y_check_issues_found.svg libreoffice-7.4.7/yaru/build/sage/svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.4.6/yaru/build/sage/svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/svx/res/a11y_check_issues_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.4.7/yaru/build/sage/svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.4.6/yaru/build/sage/svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/svx/res/a11y_check_issues_not_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/svx/res/adding-selection.svg libreoffice-7.4.7/yaru/build/sage/svg/svx/res/adding-selection.svg --- libreoffice-7.4.6/yaru/build/sage/svg/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/svx/res/adding-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/svx/res/block-selection.svg libreoffice-7.4.7/yaru/build/sage/svg/svx/res/block-selection.svg --- libreoffice-7.4.6/yaru/build/sage/svg/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/svx/res/block-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/svx/res/doc_modified_feedback.svg libreoffice-7.4.7/yaru/build/sage/svg/svx/res/doc_modified_feedback.svg --- libreoffice-7.4.6/yaru/build/sage/svg/svx/res/doc_modified_feedback.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/svx/res/doc_modified_feedback.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/svx/res/extending-selection.svg libreoffice-7.4.7/yaru/build/sage/svg/svx/res/extending-selection.svg --- libreoffice-7.4.6/yaru/build/sage/svg/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/svx/res/extending-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/svx/res/standard-selection.svg libreoffice-7.4.7/yaru/build/sage/svg/svx/res/standard-selection.svg --- libreoffice-7.4.6/yaru/build/sage/svg/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/svx/res/standard-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/doublepage_10x22.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/doublepage_10x22.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/doublepage_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/doublepage_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/doublepage_a_10x22.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/doublepage_a_10x22.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/doublepage_a_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/doublepage_a_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/doublepage_a.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/doublepage_a.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/doublepage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/doublepage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/doublepage.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/doublepage.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/doublepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/doublepage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/emptypage_10x14.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/emptypage_10x14.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/emptypage_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/emptypage_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/emptypage_a_10x14.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/emptypage_a_10x14.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/emptypage_a_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/emptypage_a_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/emptypage_a.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/emptypage_a.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/emptypage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/emptypage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/emptypage.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/emptypage.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/emptypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/emptypage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/sc20236.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/sc20236.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/sc20236.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/sc20236.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/twopages_10x24.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/twopages_10x24.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/twopages_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/twopages_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/twopages_a_10x24.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/twopages_a_10x24.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/twopages_a_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/twopages_a_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/twopages_a.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/twopages_a.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/twopages_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/twopages_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/sw/res/twopages.svg libreoffice-7.4.7/yaru/build/sage/svg/sw/res/twopages.svg --- libreoffice-7.4.6/yaru/build/sage/svg/sw/res/twopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/sw/res/twopages.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/sage/svg/vcl/res/infobox.svg libreoffice-7.4.7/yaru/build/sage/svg/vcl/res/infobox.svg --- libreoffice-7.4.6/yaru/build/sage/svg/vcl/res/infobox.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/sage/svg/vcl/res/infobox.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -i \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/ar/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/ar/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/ar/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/ar/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/32/view100.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/32/view100.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/ar/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/ar/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/ar/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/ar/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/ar/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/ar/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/ar/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/ar/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/ca/lc_underlinedouble.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/ca/lc_underlinedouble.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/ca/lc_underline.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/ca/lc_underline.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/lc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/lc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/lc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/lc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/lc_insertbookmark.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/lc_insertbookmark.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/lc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/lc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/lc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/lc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/lc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/lc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/lc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/lc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/lc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/lc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/lc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/lc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/lc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/lc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/lc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/lc_trackchangesbar.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/sc_editcurindex.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/sc_editcurindex.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/sc_footnotedialog.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/sc_footnotedialog.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/sc_insertendnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/sc_insertendnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/sc_insertfootnote.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/sc_insertfootnote.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/sc_insertindexesentry.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/sc_insertindexesentry.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/sc_insertreferencefield.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/sc_insertreferencefield.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/sc_jumpdownthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/sc_jumpdownthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/sc_jumpupthislevel.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/sc_jumpupthislevel.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/sc_saveacopy.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/sc_saveacopy.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/cmd/sc_trackchangesbar.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/cmd/sc_trackchangesbar.png differ diff -Nru libreoffice-7.4.6/yaru/build/viridian/png/links.txt libreoffice-7.4.7/yaru/build/viridian/png/links.txt --- libreoffice-7.4.6/yaru/build/viridian/png/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/png/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.png cmd/lc_recsearch.png res/library_16.png cmd/lc_viewdatasourcebrowser.png res/lx03126.png cmd/32/dbviewtables.png -res/lx03127.png res/ots_32_8.png +res/lx03127.png res/ots_32.png res/lx03130.png res/lx03123.png res/lx03137.png res/lx03125.png res/lx03140.png res/lx03125.png -res/lx03144.png res/odf_32_8.png -res/lx03145.png res/odf_32_8.png +res/lx03144.png res/odf_32.png +res/lx03145.png res/odf_32.png res/lx03152.png res/lx03125.png res/lx03153.png res/lx03125.png res/lx03154.png res/lx03125.png res/lx03155.png res/lx03125.png -res/lx03156.png res/odt_32_8.png +res/lx03156.png res/odt_32.png res/lx03158.png res/lx03125.png res/lx03160.png res/lx03125.png -res/lx03162.png res/odt_32_8.png -res/lx03163.png res/odt_32_8.png +res/lx03162.png res/odt_32.png +res/lx03163.png res/odt_32.png res/lx03165.png cmd/lc_save.png res/lx03167.png cmd/lc_openremote.png res/lx03188.png cmd/32/dbviewtables.png res/lx03189.png cmd/lc_open.png -res/lx03217.png res/odg_32_8.png -res/lx03218.png res/odg_32_8.png +res/lx03217.png res/odg_32.png +res/lx03218.png res/odg_32.png res/lx03219.png res/lx03125.png -res/lx03220.png res/odg_32_8.png -res/lx03221.png res/odg_32_8.png -res/lx03222.png res/odg_32_8.png -res/lx03227.png res/odg_32_8.png -res/lx03228.png res/odg_32_8.png +res/lx03220.png res/odg_32.png +res/lx03221.png res/odg_32.png +res/lx03222.png res/odg_32.png +res/lx03227.png res/odg_32.png +res/lx03228.png res/odg_32.png res/lx03256.png cmd/lc_insertplugin.png -res/mainapp.png res/newdoc.png -res/mainapp_16.png cmd/sc_showsinglepage.png -res/mainapp_16_8.png cmd/sc_showsinglepage.png -res/mainapp_32.png res/newdoc.png +res/mainapp_16_8.png res/mainapp_16.png +res/mainapp_32_8.png res/mainapp_32.png +res/mainapp_48_8.png res/mainapp_48.png res/notebookbar.png sfx2/res/symphony/open_more.png +res/odb_16_8.png res/odb_16.png +res/odb_32_8.png res/odb_32.png +res/odb_48_8.png res/odb_48.png +res/odf_16_8.png res/odf_16.png +res/odf_32_8.png res/odf_32.png +res/odf_48_8.png res/odf_48.png +res/odg_16_8.png res/odg_16.png +res/odg_32_8.png res/odg_32.png +res/odg_48_8.png res/odg_48.png +res/odm_16_8.png res/odm_16.png +res/odm_32_8.png res/odm_32.png +res/odm_48_8.png res/odm_48.png +res/odp_16_8.png res/odp_16.png +res/odp_32_8.png res/odp_32.png +res/odp_48_8.png res/odp_48.png +res/ods_16_8.png res/ods_16.png +res/ods_32_8.png res/ods_32.png +res/ods_48_8.png res/ods_48.png +res/odt_16_8.png res/odt_16.png +res/odt_32_8.png res/odt_32.png +res/odt_48_8.png res/odt_48.png +res/ots_16_8.png res/ots_16.png +res/ots_32_8.png res/ots_32.png +res/ots_48_8.png res/ots_48.png +res/ott_16_8.png res/ott_16.png +res/ott_32_8.png res/ott_32.png +res/ott_48_8.png res/ott_48.png res/plugin.png cmd/lc_insertplugin.png res/queries_32.png cmd/32/dbviewqueries.png res/reload.png cmd/sc_reload.png @@ -2044,36 +2070,38 @@ res/sc10868.png cmd/sc_grafgamma.png res/sc10869.png cmd/sc_graftransparence.png res/sc_helperdialog.png cmd/sc_helpindex.png +res/sx03123.png res/odp_16.png res/sx03126.png cmd/sc_dbviewtables.png -res/sx03127.png res/ots_16_8.png -res/sx03130.png res/sx03123.png +res/sx03127.png res/ots_16.png +res/sx03130.png res/odp_16.png res/sx03137.png res/sx03125.png res/sx03139.png cmd/sc_questionanswers.png res/sx03140.png res/sx03125.png -res/sx03145.png res/sx03144.png +res/sx03144.png res/odf_16.png +res/sx03145.png res/odf_16.png res/sx03152.png res/sx03125.png res/sx03153.png res/sx03125.png res/sx03154.png res/sx03125.png res/sx03155.png res/sx03125.png -res/sx03156.png res/odt_16_8.png +res/sx03156.png res/odt_16.png res/sx03158.png res/sx03125.png res/sx03160.png res/sx03125.png -res/sx03162.png res/odt_16_8.png -res/sx03163.png res/odt_16_8.png +res/sx03162.png res/odt_16.png +res/sx03163.png res/odt_16.png res/sx03164.png cmd/sc_open.png res/sx03165.png cmd/sc_save.png res/sx03167.png cmd/sc_openremote.png res/sx03188.png cmd/sc_dbviewtables.png res/sx03189.png cmd/sc_open.png res/sx03202.png cmd/sc_dbviewqueries.png -res/sx03217.png res/odg_16_8.png -res/sx03218.png res/odg_16_8.png +res/sx03217.png res/odg_16.png +res/sx03218.png res/odg_16.png res/sx03219.png res/sx03125.png -res/sx03220.png res/odg_16_8.png -res/sx03221.png res/odg_16_8.png -res/sx03222.png res/odg_16_8.png -res/sx03227.png res/odg_16_8.png -res/sx03228.png res/odg_16_8.png +res/sx03220.png res/odg_16.png +res/sx03221.png res/odg_16.png +res/sx03222.png res/odg_16.png +res/sx03227.png res/odg_16.png +res/sx03228.png res/odg_16.png res/sx03256.png cmd/sc_insertplugin.png res/sx10594.png cmd/sc_pushbutton.png res/sx10595.png cmd/sc_radiobutton.png @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.png cmd/sc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-large.png cmd/lc_bmpmask.png sfx2/res/symphony/sidebar-eyedropper-small.png cmd/sc_bmpmask.png +sfx2/res/symphony/sidebar-elements-large.png cmd/lc_insertmath.png sfx2/res/symphony/sidebar-functions-large.png cmd/lc_toggleformula.png sfx2/res/symphony/sidebar-functions-small.png cmd/sc_toggleformula.png sfx2/res/symphony/sidebar-gallery-large.png cmd/lc_gallery.png @@ -2271,6 +2300,8 @@ svx/res/color.png cmd/sc_bmpmask.png svx/res/colordlg.png cmd/sc_graphicfiltersmooth.png svx/res/convrt3d.png cmd/sc_convertinto3d.png +svx/res/doc_modified_no.png cmd/sc_save.png +svx/res/doc_modified_yes.png res/savemodified_small.png svx/res/dsth_cen.png cmd/sc_distributehorzcenter.png svx/res/dsth_dst.png cmd/sc_distributehorzdistance.png svx/res/dsth_hig.png cmd/sc_distributehorzright.png Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/base128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/base128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/base_thumbnail_256.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/base_thumbnail_256.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/calc128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/calc128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/draw128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/draw128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/impress128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/impress128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03126.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03126.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03129.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03129.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03162.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03162.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03245_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03245_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03246_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03246_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03247_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03247_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03248_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03248_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03249_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03249_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03250_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03250_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03251_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03251_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/lx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/lx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/main128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/main128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/mainapp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/mainapp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/mainapp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/mainapp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/mainapp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/mainapp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/mainapp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/mainapp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/math128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/math128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odb_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odb_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odb_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odb_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odb_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odb_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odb_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odb_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odb_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odb_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odb_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odb_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odf_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odf_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odf_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odf_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odf_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odf_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odf_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odf_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odf_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odf_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odf_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odf_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odg_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odg_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odg_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odg_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odg_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odg_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odg_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odg_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odg_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odg_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odg_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odg_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odm_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odm_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odm_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odm_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odm_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odm_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odm_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odm_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odm_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odm_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odm_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odm_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odp_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odp_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odp_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odp_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odp_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odp_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odp_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odp_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odp_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odp_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odp_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odp_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ods_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ods_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ods_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ods_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ods_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ods_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ods_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ods_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ods_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ods_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ods_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ods_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odt_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odt_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odt_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odt_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odt_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odt_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odt_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odt_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odt_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odt_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/odt_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/odt_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ots_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ots_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ots_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ots_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ots_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ots_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ots_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ots_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ots_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ots_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ots_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ots_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ott_16_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ott_16_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ott_16.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ott_16.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ott_32_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ott_32_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ott_32.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ott_32.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ott_48_8.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ott_48_8.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/ott_48.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/ott_48.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03123.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03123.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03144.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03144.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03150.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03150.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03245.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03245.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03246.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03246.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03247.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03247.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03248.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03248.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03249.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03249.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03250.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03250.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03251.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03251.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03253.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03253.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03254.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03254.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/sx03255.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/sx03255.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/tipoftheday_c.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/tipoftheday_c.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/tipoftheday_d.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/tipoftheday_d.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/tipoftheday_i.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/tipoftheday_i.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/tipoftheday.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/tipoftheday.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/tipoftheday_w.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/tipoftheday_w.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/res/writer128.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/res/writer128.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sfx2/res/128x128_calc_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sfx2/res/128x128_calc_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sfx2/res/128x128_draw_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sfx2/res/128x128_draw_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sfx2/res/128x128_impress_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sfx2/res/128x128_impress_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sfx2/res/128x128_math_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sfx2/res/128x128_math_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sfx2/res/128x128_writer_doc-p.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sfx2/res/128x128_writer_doc-p.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/svx/res/a11y_check_issues_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/svx/res/a11y_check_issues_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/svx/res/a11y_check_issues_not_found.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/svx/res/a11y_check_issues_not_found.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/svx/res/adding-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/svx/res/adding-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/svx/res/block-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/svx/res/block-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/svx/res/doc_modified_feedback.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/svx/res/doc_modified_feedback.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/svx/res/extending-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/svx/res/extending-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/svx/res/standard-selection.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/svx/res/standard-selection.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/doublepage_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/doublepage_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/doublepage_a_10x22.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/doublepage_a_10x22.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/doublepage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/doublepage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/doublepage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/doublepage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/emptypage_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/emptypage_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/emptypage_a_10x14.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/emptypage_a_10x14.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/emptypage_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/emptypage_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/emptypage.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/emptypage.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/sc20236.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/sc20236.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/twopages_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/twopages_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/twopages_a_10x24.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/twopages_a_10x24.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/twopages_a.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/twopages_a.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/sw/res/twopages.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/sw/res/twopages.png differ Binary files /tmp/tmpb6z8rjnj/KtNZKRr1qe/libreoffice-7.4.6/yaru/build/viridian/png/vcl/res/infobox.png and /tmp/tmpb6z8rjnj/O6nXnYlLrs/libreoffice-7.4.7/yaru/build/viridian/png/vcl/res/infobox.png differ diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/conehoristack_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/conehoristack_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/conehoristack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/conehoristack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/donut3d_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/donut3d_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/donut3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/donut3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/net_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/net_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/net_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/net_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/netfill_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/netfill_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/netfill_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/netfill_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/netlinepoint_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/netlinepoint_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/netlinepoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/netlinepoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/netlinepointstack_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/netlinepointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/netlinepointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/netlinepointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/netpoint_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/netpoint_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/netpoint_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/netpoint_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/netpointstack_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/netpointstack_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/netpointstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/netpointstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/netstack_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/netstack_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/netstack_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/netstack_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/nostackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/nostackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/nostackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/nostackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/nostackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/nostackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/nostackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/nostackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/nostacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/nostacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/nostacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/nostacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/nostacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/nostacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/nostacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/nostacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stackdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stackdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stackdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stackdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stackdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stackdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stackdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stackdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stackdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stackdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stackdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stackdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stackdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stackdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stackdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stackdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stacksmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stacksmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stacksmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stacksmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stacksmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stacksmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stacksmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stacksmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stacksmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stacksmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stacksmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stacksmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stackstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stackstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stackstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stackstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stacksteppedboth_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stacksteppedboth_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stacksteppedboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stacksteppedboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stacksteppedlines_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stacksteppedlines_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/stacksteppedlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/stacksteppedlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxisdirect3d_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxisdirect3d_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxisdirect3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxisdirect3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxisdirectboth_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxisdirectboth_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxisdirectboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxisdirectboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxisdirectlines_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxisdirectlines_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxisdirectlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxisdirectlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxisdirectpoints_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxisdirectpoints_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxisdirectpoints_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxissmooth3d_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxissmooth3d_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxissmooth3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxissmooth3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxissmoothboth_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxissmoothboth_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxissmoothboth_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxissmoothboth_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxissmoothlines_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxissmoothlines_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxissmoothlines_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxissmoothlines_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxisstepped3d_52x60.svg libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxisstepped3d_52x60.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/chart2/res/valueaxisstepped3d_52x60.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/chart2/res/valueaxisstepped3d_52x60.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/ar/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/ar/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/ar/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/ar/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/ar/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/ar/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/ar/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/ar/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/comparedocuments.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/comparedocuments.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/editcurindex.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/editcurindex.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/footnotedialog.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/footnotedialog.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/insertendnote.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/insertendnote.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/insertfootnote.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/insertfootnote.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/insertindexesentry.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/insertreferencefield.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/jumpupthislevel.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/saveacopy.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/saveacopy.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/trackchangesbar.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/view100.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/view100.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/32/view100.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/32/view100.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -1 \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/ar/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/ar/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/ar/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/ar/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/ar/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/ar/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/ar/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/ar/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/ar/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/ar/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/ar/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/ar/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/ar/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/ar/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/ar/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/ar/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/ca/lc_underlinedouble.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/ca/lc_underlinedouble.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/ca/lc_underlinedouble.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/ca/lc_underlinedouble.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/ca/lc_underline.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/ca/lc_underline.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/ca/lc_underline.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/ca/lc_underline.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -S \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_comparedocuments.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_editcurindex.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_footnotedialog.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_fullscreen.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_fullscreen.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_fullscreen.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_fullscreen.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_insertbookmark.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_insertbookmark.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_insertbookmark.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_insertbookmark.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_insertendnote.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_insertfootnote.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_saveacopy.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/lc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/lc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_comparedocuments.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_comparedocuments.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_comparedocuments.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_comparedocuments.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -/> \ No newline at end of file +/> \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_editcurindex.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_editcurindex.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_footnotedialog.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_footnotedialog.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_graftransparence.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_graftransparence.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_graftransparence.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_graftransparence.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_insertendnote.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_insertendnote.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_insertfootnote.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_insertfootnote.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_insertindexesentry.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_insertreferencefield.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_saveacopy.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_saveacopy.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ +/&amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_trackchangesbar.svg libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/cmd/sc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/cmd/sc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/links.txt libreoffice-7.4.7/yaru/build/viridian/svg/links.txt --- libreoffice-7.4.6/yaru/build/viridian/svg/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.svg cmd/lc_recsearch.svg res/library_16.svg cmd/lc_viewdatasourcebrowser.svg res/lx03126.svg cmd/32/dbviewtables.svg -res/lx03127.svg res/ots_32_8.svg +res/lx03127.svg res/ots_32.svg res/lx03130.svg res/lx03123.svg res/lx03137.svg res/lx03125.svg res/lx03140.svg res/lx03125.svg -res/lx03144.svg res/odf_32_8.svg -res/lx03145.svg res/odf_32_8.svg +res/lx03144.svg res/odf_32.svg +res/lx03145.svg res/odf_32.svg res/lx03152.svg res/lx03125.svg res/lx03153.svg res/lx03125.svg res/lx03154.svg res/lx03125.svg res/lx03155.svg res/lx03125.svg -res/lx03156.svg res/odt_32_8.svg +res/lx03156.svg res/odt_32.svg res/lx03158.svg res/lx03125.svg res/lx03160.svg res/lx03125.svg -res/lx03162.svg res/odt_32_8.svg -res/lx03163.svg res/odt_32_8.svg +res/lx03162.svg res/odt_32.svg +res/lx03163.svg res/odt_32.svg res/lx03165.svg cmd/lc_save.svg res/lx03167.svg cmd/lc_openremote.svg res/lx03188.svg cmd/32/dbviewtables.svg res/lx03189.svg cmd/lc_open.svg -res/lx03217.svg res/odg_32_8.svg -res/lx03218.svg res/odg_32_8.svg +res/lx03217.svg res/odg_32.svg +res/lx03218.svg res/odg_32.svg res/lx03219.svg res/lx03125.svg -res/lx03220.svg res/odg_32_8.svg -res/lx03221.svg res/odg_32_8.svg -res/lx03222.svg res/odg_32_8.svg -res/lx03227.svg res/odg_32_8.svg -res/lx03228.svg res/odg_32_8.svg +res/lx03220.svg res/odg_32.svg +res/lx03221.svg res/odg_32.svg +res/lx03222.svg res/odg_32.svg +res/lx03227.svg res/odg_32.svg +res/lx03228.svg res/odg_32.svg res/lx03256.svg cmd/lc_insertplugin.svg -res/mainapp.svg res/newdoc.svg -res/mainapp_16.svg cmd/sc_showsinglepage.svg -res/mainapp_16_8.svg cmd/sc_showsinglepage.svg -res/mainapp_32.svg res/newdoc.svg +res/mainapp_16_8.svg res/mainapp_16.svg +res/mainapp_32_8.svg res/mainapp_32.svg +res/mainapp_48_8.svg res/mainapp_48.svg res/notebookbar.svg sfx2/res/symphony/open_more.svg +res/odb_16_8.svg res/odb_16.svg +res/odb_32_8.svg res/odb_32.svg +res/odb_48_8.svg res/odb_48.svg +res/odf_16_8.svg res/odf_16.svg +res/odf_32_8.svg res/odf_32.svg +res/odf_48_8.svg res/odf_48.svg +res/odg_16_8.svg res/odg_16.svg +res/odg_32_8.svg res/odg_32.svg +res/odg_48_8.svg res/odg_48.svg +res/odm_16_8.svg res/odm_16.svg +res/odm_32_8.svg res/odm_32.svg +res/odm_48_8.svg res/odm_48.svg +res/odp_16_8.svg res/odp_16.svg +res/odp_32_8.svg res/odp_32.svg +res/odp_48_8.svg res/odp_48.svg +res/ods_16_8.svg res/ods_16.svg +res/ods_32_8.svg res/ods_32.svg +res/ods_48_8.svg res/ods_48.svg +res/odt_16_8.svg res/odt_16.svg +res/odt_32_8.svg res/odt_32.svg +res/odt_48_8.svg res/odt_48.svg +res/ots_16_8.svg res/ots_16.svg +res/ots_32_8.svg res/ots_32.svg +res/ots_48_8.svg res/ots_48.svg +res/ott_16_8.svg res/ott_16.svg +res/ott_32_8.svg res/ott_32.svg +res/ott_48_8.svg res/ott_48.svg res/plugin.svg cmd/lc_insertplugin.svg res/queries_32.svg cmd/32/dbviewqueries.svg res/reload.svg cmd/sc_reload.svg @@ -2044,36 +2070,38 @@ res/sc10868.svg cmd/sc_grafgamma.svg res/sc10869.svg cmd/sc_graftransparence.svg res/sc_helperdialog.svg cmd/sc_helpindex.svg +res/sx03123.svg res/odp_16.svg res/sx03126.svg cmd/sc_dbviewtables.svg -res/sx03127.svg res/ots_16_8.svg -res/sx03130.svg res/sx03123.svg +res/sx03127.svg res/ots_16.svg +res/sx03130.svg res/odp_16.svg res/sx03137.svg res/sx03125.svg res/sx03139.svg cmd/sc_questionanswers.svg res/sx03140.svg res/sx03125.svg -res/sx03145.svg res/sx03144.svg +res/sx03144.svg res/odf_16.svg +res/sx03145.svg res/odf_16.svg res/sx03152.svg res/sx03125.svg res/sx03153.svg res/sx03125.svg res/sx03154.svg res/sx03125.svg res/sx03155.svg res/sx03125.svg -res/sx03156.svg res/odt_16_8.svg +res/sx03156.svg res/odt_16.svg res/sx03158.svg res/sx03125.svg res/sx03160.svg res/sx03125.svg -res/sx03162.svg res/odt_16_8.svg -res/sx03163.svg res/odt_16_8.svg +res/sx03162.svg res/odt_16.svg +res/sx03163.svg res/odt_16.svg res/sx03164.svg cmd/sc_open.svg res/sx03165.svg cmd/sc_save.svg res/sx03167.svg cmd/sc_openremote.svg res/sx03188.svg cmd/sc_dbviewtables.svg res/sx03189.svg cmd/sc_open.svg res/sx03202.svg cmd/sc_dbviewqueries.svg -res/sx03217.svg res/odg_16_8.svg -res/sx03218.svg res/odg_16_8.svg +res/sx03217.svg res/odg_16.svg +res/sx03218.svg res/odg_16.svg res/sx03219.svg res/sx03125.svg -res/sx03220.svg res/odg_16_8.svg -res/sx03221.svg res/odg_16_8.svg -res/sx03222.svg res/odg_16_8.svg -res/sx03227.svg res/odg_16_8.svg -res/sx03228.svg res/odg_16_8.svg +res/sx03220.svg res/odg_16.svg +res/sx03221.svg res/odg_16.svg +res/sx03222.svg res/odg_16.svg +res/sx03227.svg res/odg_16.svg +res/sx03228.svg res/odg_16.svg res/sx03256.svg cmd/sc_insertplugin.svg res/sx10594.svg cmd/sc_pushbutton.svg res/sx10595.svg cmd/sc_radiobutton.svg @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.svg cmd/sc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-large.svg cmd/lc_bmpmask.svg sfx2/res/symphony/sidebar-eyedropper-small.svg cmd/sc_bmpmask.svg +sfx2/res/symphony/sidebar-elements-large.svg cmd/lc_insertmath.svg sfx2/res/symphony/sidebar-functions-large.svg cmd/lc_toggleformula.svg sfx2/res/symphony/sidebar-functions-small.svg cmd/sc_toggleformula.svg sfx2/res/symphony/sidebar-gallery-large.svg cmd/lc_gallery.svg @@ -2271,6 +2300,8 @@ svx/res/color.svg cmd/sc_bmpmask.svg svx/res/colordlg.svg cmd/sc_graphicfiltersmooth.svg svx/res/convrt3d.svg cmd/sc_convertinto3d.svg +svx/res/doc_modified_no.svg cmd/sc_save.svg +svx/res/doc_modified_yes.svg res/savemodified_small.svg svx/res/dsth_cen.svg cmd/sc_distributehorzcenter.svg svx/res/dsth_dst.svg cmd/sc_distributehorzdistance.svg svx/res/dsth_hig.svg cmd/sc_distributehorzright.svg diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/base128.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/base128.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/base128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/base128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/base_thumbnail_256.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/base_thumbnail_256.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/base_thumbnail_256.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/base_thumbnail_256.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/calc128.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/calc128.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/calc128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/calc128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/draw128.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/draw128.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/draw128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/draw128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/impress128.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/impress128.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/impress128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/impress128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03123.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03123.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03123.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03126.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03126.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03126.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03126.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03129.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03129.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03129.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03129.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03162.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03162.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03162.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03162.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03245_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03245_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03245_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03245_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03245.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03245.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03246_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03246_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03246_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03246_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03246.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03246.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03247_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03247_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03247_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03247_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03247.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03247.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03248_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03248_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03248_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03248_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03248.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03248.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03249_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03249_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03249_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03249_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03249.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03249.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03250_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03250_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03250_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03250_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03250.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03250.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03251_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03251_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03251_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03251_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03251.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03251.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03253.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03253.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03254.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03254.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03255.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03255.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/lx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/lx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/main128.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/main128.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/main128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/main128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/mainapp_16.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/mainapp_16.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/mainapp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/mainapp_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/mainapp_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/mainapp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/mainapp_48_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/mainapp_48_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/mainapp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/mainapp_48.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/mainapp_48.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/mainapp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/mainapp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/math128.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/math128.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/math128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/math128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odb_16_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odb_16_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odb_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odb_16.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odb_16.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odb_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odb_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odb_32_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odb_32_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odb_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odb_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odb_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odb_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odb_48_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odb_48_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odb_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odb_48.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odb_48.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odb_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odb_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odf_16_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odf_16_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odf_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odf_16.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odf_16.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odf_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odf_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odf_32_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odf_32_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odf_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odf_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odf_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odf_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odf_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odf_48_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odf_48_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odf_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odf_48.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odf_48.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odf_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odf_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odg_16_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odg_16_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odg_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odg_16.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odg_16.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odg_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odg_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odg_32_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odg_32_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odg_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odg_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odg_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odg_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odg_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odg_48_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odg_48_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odg_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odg_48.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odg_48.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odg_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odg_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odm_16_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odm_16_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odm_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odm_16.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odm_16.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odm_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odm_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odm_32_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odm_32_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odm_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odm_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odm_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odm_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odm_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odm_48_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odm_48_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odm_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odm_48.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odm_48.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odm_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odm_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odp_16_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odp_16_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odp_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odp_16.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odp_16.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odp_32_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odp_32_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odp_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odp_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odp_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odp_48_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odp_48_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odp_48.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odp_48.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ods_16_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ods_16_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ods_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ods_16.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ods_16.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ods_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ods_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ods_32_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ods_32_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ods_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ods_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ods_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ods_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ods_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ods_48_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ods_48_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ods_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ods_48.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ods_48.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ods_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ods_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odt_16_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odt_16_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odt_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odt_16.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odt_16.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odt_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odt_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odt_32_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odt_32_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odt_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odt_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odt_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odt_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odt_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odt_48_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odt_48_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odt_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/odt_48.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/odt_48.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/odt_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/odt_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ots_16_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ots_16_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ots_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ots_16.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ots_16.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ots_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ots_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ots_32_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ots_32_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ots_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ots_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ots_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ots_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ots_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ots_48_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ots_48_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ots_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ots_48.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ots_48.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ots_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ots_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ott_16_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ott_16_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ott_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ott_16.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ott_16.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ott_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ott_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ott_32_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ott_32_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ott_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ott_32.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ott_32.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ott_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ott_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ott_48_8.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ott_48_8.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ott_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/ott_48.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/ott_48.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/ott_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/ott_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03123.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03123.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03144.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03144.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03144.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03144.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03150.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03150.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03150.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03150.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03245.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03245.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03246.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03246.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03246.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03246.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03247.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03247.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03248.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03248.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03249.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03249.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03250.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03250.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03250.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03250.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03251.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03251.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03251.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03251.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03253.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03253.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03253.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03253.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03254.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03254.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03254.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03254.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03255.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03255.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/sx03255.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/sx03255.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/tipoftheday_c.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/tipoftheday_c.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/tipoftheday_c.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/tipoftheday_c.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/tipoftheday_d.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/tipoftheday_d.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/tipoftheday_d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/tipoftheday_d.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/tipoftheday_i.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/tipoftheday_i.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/tipoftheday_i.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/tipoftheday_i.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/tipoftheday.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/tipoftheday.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/tipoftheday.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/tipoftheday.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/tipoftheday_w.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/tipoftheday_w.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/tipoftheday_w.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/tipoftheday_w.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/res/writer128.svg libreoffice-7.4.7/yaru/build/viridian/svg/res/writer128.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/res/writer128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/res/writer128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.4.7/yaru/build/viridian/svg/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sfx2/res/128x128_calc_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sfx2/res/128x128_calc_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sfx2/res/128x128_draw_doc-p.svg libreoffice-7.4.7/yaru/build/viridian/svg/sfx2/res/128x128_draw_doc-p.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sfx2/res/128x128_draw_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sfx2/res/128x128_draw_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sfx2/res/128x128_impress_doc-p.svg libreoffice-7.4.7/yaru/build/viridian/svg/sfx2/res/128x128_impress_doc-p.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sfx2/res/128x128_impress_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sfx2/res/128x128_impress_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sfx2/res/128x128_math_doc-p.svg libreoffice-7.4.7/yaru/build/viridian/svg/sfx2/res/128x128_math_doc-p.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sfx2/res/128x128_math_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sfx2/res/128x128_math_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sfx2/res/128x128_writer_doc-p.svg libreoffice-7.4.7/yaru/build/viridian/svg/sfx2/res/128x128_writer_doc-p.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sfx2/res/128x128_writer_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sfx2/res/128x128_writer_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/a11y_check_issues_found.svg libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/a11y_check_issues_found.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/a11y_check_issues_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/a11y_check_issues_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/a11y_check_issues_not_found.svg libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/a11y_check_issues_not_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/adding-selection.svg libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/adding-selection.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/adding-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/block-selection.svg libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/block-selection.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/block-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/doc_modified_feedback.svg libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/doc_modified_feedback.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/doc_modified_feedback.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/doc_modified_feedback.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/extending-selection.svg libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/extending-selection.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/extending-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/standard-selection.svg libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/standard-selection.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/svx/res/standard-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/doublepage_10x22.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/doublepage_10x22.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/doublepage_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/doublepage_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/doublepage_a_10x22.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/doublepage_a_10x22.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/doublepage_a_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/doublepage_a_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/doublepage_a.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/doublepage_a.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/doublepage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/doublepage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/doublepage.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/doublepage.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/doublepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/doublepage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/emptypage_10x14.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/emptypage_10x14.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/emptypage_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/emptypage_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/emptypage_a_10x14.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/emptypage_a_10x14.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/emptypage_a_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/emptypage_a_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/emptypage_a.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/emptypage_a.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/emptypage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/emptypage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/emptypage.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/emptypage.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/emptypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/emptypage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/sc20236.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/sc20236.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/sc20236.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/sc20236.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/twopages_10x24.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/twopages_10x24.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/twopages_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/twopages_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/twopages_a_10x24.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/twopages_a_10x24.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/twopages_a_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/twopages_a_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/twopages_a.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/twopages_a.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/twopages_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/twopages_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/twopages.svg libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/twopages.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/sw/res/twopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/sw/res/twopages.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/build/viridian/svg/vcl/res/infobox.svg libreoffice-7.4.7/yaru/build/viridian/svg/vcl/res/infobox.svg --- libreoffice-7.4.6/yaru/build/viridian/svg/vcl/res/infobox.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/build/viridian/svg/vcl/res/infobox.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1 +1 @@ -i \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.4.6/yaru/install.sh libreoffice-7.4.7/yaru/install.sh --- libreoffice-7.4.6/yaru/install.sh 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/install.sh 2023-03-31 10:14:09.000000000 +0000 @@ -111,6 +111,8 @@ sudo cp -v "dist/images_${theme_name}.zip" "/usr/share/libreoffice/share/config/images_${theme_name}.zip" sudo cp -v "dist/images_${theme_name}_svg.zip" "/usr/share/libreoffice/share/config/images_${theme_name}_svg.zip" + sudo chmod 644 "/usr/share/libreoffice/share/config/images_${theme_name}.zip" + sudo chmod 644 "/usr/share/libreoffice/share/config/images_${theme_name}_svg.zip" for dir in \ /usr/lib64/libreoffice/share/config \ @@ -136,7 +138,7 @@ echo -e "\n=> 🎉 Finish\n" else - ./build.sh --oxt + ./build.sh --zip if [[ $? -ne 0 ]]; then exit 1 diff -Nru libreoffice-7.4.6/yaru/oxt/description.xml libreoffice-7.4.7/yaru/oxt/description.xml --- libreoffice-7.4.6/yaru/oxt/description.xml 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/oxt/description.xml 2023-03-31 10:14:09.000000000 +0000 @@ -1,11 +1,10 @@ - + - + %title% @@ -13,13 +12,13 @@ - Github repository + Github repository - + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/ar/jumpdownthislevel.svg libreoffice-7.4.7/yaru/src/default/cmd/32/ar/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/ar/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/ar/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,172 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/ar/jumpupthislevel.svg libreoffice-7.4.7/yaru/src/default/cmd/32/ar/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/ar/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/ar/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,176 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/editcurindex.svg libreoffice-7.4.7/yaru/src/default/cmd/32/editcurindex.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,183 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/footnotedialog.svg libreoffice-7.4.7/yaru/src/default/cmd/32/footnotedialog.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,17 +38,20 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview10" showgrid="true" - inkscape:zoom="20.85965" - inkscape:cx="11.671378" - inkscape:cy="7.7883133" - inkscape:window-x="1920" - inkscape:window-y="32" + inkscape:zoom="10.429825" + inkscape:cx="9.4440702" + inkscape:cy="4.9857021" + inkscape:window-x="0" + inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg8" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -56,29 +59,12 @@ - - - + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/insertendnote.svg libreoffice-7.4.7/yaru/src/default/cmd/32/insertendnote.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/insertendnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/insertendnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,62 +38,110 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" - inkscape:zoom="10.429825" - inkscape:cx="17.55506" - inkscape:cy="15.295532" + inkscape:zoom="14.75" + inkscape:cx="22.813559" + inkscape:cy="7.9322034" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> - + sodipodi:nodetypes="cccscsccccccccscscccccc" /> - + d="m 16.983369,11.016723 c -1.556581,0.0108 -3.10999,-0.01175 -4.659941,0.03877 -0.461229,0.04267 -1.016188,0.20642 -1.15534,0.709967 -0.218994,0.635346 -0.108414,1.333787 -0.145796,1.981924 -0.0078,2.297085 -0.02297,10.595845 0.02152,12.885197 0.0391,0.461929 0.202551,1.012666 0.698756,1.163666 0.632456,0.225082 1.284144,0.12274 1.935974,0.154298 1.424235,0.0068 6.850563,0.01102 8.27642,0.01131 1.704531,3.5e-4 3.408388,-0.005 5.10719,-0.01851 0.511911,-0.01201 1.183699,0.01993 1.584745,-0.405191 0.421097,-0.539783 0.287073,-1.268021 0.322745,-1.903787 0.01187,-2.444323 0.02769,-10.910511 -0.0219,-13.356211 -0.04928,-0.40204 -0.169992,-0.862952 -0.575139,-1.044475 -0.668169,-0.294098 -1.426205,-0.168019 -2.125921,-0.205573 -1.754407,-0.0118 -7.508874,-0.01248 -9.263313,-0.01139 z" + id="path844" + inkscape:connector-curvature="0" /> + + + + + + + + + + + + x="8" + y="8" /> diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/insertfootnote.svg libreoffice-7.4.7/yaru/src/default/cmd/32/insertfootnote.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,12 +1,5 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,17 +38,20 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" - inkscape:zoom="14.75" - inkscape:cx="15.76944" - inkscape:cy="16.485607" + inkscape:zoom="7.375" + inkscape:cx="-11.322034" + inkscape:cy="9.220339" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -65,23 +68,67 @@ d="M 12,5 C 10.443419,5.0108 6.89001,4.98825 5.340059,5.03877 4.87883,5.08144 4.323871,5.24519 4.184719,5.748737 3.965725,6.384083 4.076305,7.082524 4.038923,7.730661 c -0.0078,2.297085 -0.02297,16.596428 0.02152,18.88578 0.0391,0.461929 0.202551,1.012666 0.698756,1.163666 0.632456,0.225082 1.284144,0.12274 1.935974,0.154298 1.424235,0.0068 12.850563,0.01102 14.27642,0.01131 1.704531,3.5e-4 3.408388,-0.005 5.10719,-0.01851 0.511911,-0.01201 1.183699,0.01993 1.584745,-0.405191 0.421097,-0.539783 0.287073,-1.268021 0.322745,-1.903787 0.01187,-2.444323 0.02769,-16.911094 -0.0219,-19.356794 C 27.915093,5.859393 27.794381,5.398481 27.389234,5.216958 26.721065,4.92286 25.963029,5.048939 25.263313,5.011385 23.508906,4.999585 13.754439,4.998905 12,4.999995 Z" style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" sodipodi:nodetypes="cccccccsccccccc" /> - + + - + x="9" + y="22" /> + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/insertindexesentry.svg libreoffice-7.4.7/yaru/src/default/cmd/32/insertindexesentry.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,17 +38,20 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" inkscape:zoom="14.75" - inkscape:cx="12.776161" - inkscape:cy="14.041187" + inkscape:cx="8.5762712" + inkscape:cy="14.305085" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -69,51 +72,51 @@ inkscape:connector-curvature="0" id="path844" d="m 11,14 v 0.999999 l 15,-1e-6 v -1 z" - style="fill:#fa9381;fill-opacity:1;stroke-width:0.86602539" /> + style="fill:#232629;fill-opacity:1;stroke-width:0.86602539" /> + d="m 11,15.999999 v 1 l 12,1e-6 v -1 z" + style="fill:#232629;fill-opacity:1;stroke-width:0.866025" + sodipodi:nodetypes="ccccc" /> - - - - - - - - + style="opacity:1;fill:#232629;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/insertreferencefield.svg libreoffice-7.4.7/yaru/src/default/cmd/32/insertreferencefield.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,41 +38,79 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" - inkscape:zoom="14.75" - inkscape:cx="2.2677916" - inkscape:cy="11.632392" + inkscape:zoom="29.5" + inkscape:cx="11.40678" + inkscape:cy="17.220339" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + id="path579" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;opacity:0.7;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999802" + d="m 5.9941406,2 c -1.2581987,0.0145 -2.1788914,-0.0306 -2.9316406,0.3847656 -0.3763696,0.2076598 -0.6732308,0.5593873 -0.8378906,0.9980469 -0.1646699,0.4386696 -0.2246094,0.9595882 -0.2246094,1.6171875 v 1.4882812 11.5117188 c 0,0.657609 0.0599,1.178577 0.2246094,1.617188 0.1646798,0.43861 0.461531,0.788524 0.8378906,0.996093 0.3647767,0.201177 0.7694345,0.293264 1.2324219,0.337891 -0.1904527,-0.601784 -0.3775112,-1.245838 -0.3949219,-1.896484 -1.246e-4,-0.0091 -1.246e-4,-0.01823 0,-0.02734 v -0.01367 -8.013672 c 5.52e-5,-0.552262 0.5477381,-0.999945 1.1,-1 h 2 c 0.5522619,5.5e-5 0.9999448,0.447738 1,1 0.9808065,4.880107 1.6214033,4.320983 3.015625,6.096374 1.158242,0.561793 2.842444,2.216015 4.984375,3.90362 l 2.001953,6e-6 h 0.0039 c 1.258189,-0.0145 2.178892,0.0306 2.931641,-0.384766 0.37637,-0.207659 0.673221,-0.559387 0.837891,-0.998046 0.164538,-0.438671 0.224609,-0.959579 0.224609,-1.617188 v -11.5332031 -1.4667969 c 0,-0.6575993 -0.0599,-1.1785779 -0.224609,-1.6171875 -0.16468,-0.4385996 -0.461531,-0.788534 -0.837891,-0.9960937 -0.752769,-0.4151294 -1.673552,-0.371639 -2.931641,-0.3867188 h -0.002 -12.0058591 z" + sodipodi:nodetypes="cccscscsccccccccccccccscscccccc" /> + + id="path842" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;opacity:0.7;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999802" + d="m 13.994141,9.9902344 c -1.258199,0.0145 -2.178892,-0.0306 -2.931641,0.3847656 -0.37637,0.20766 -0.673231,0.559387 -0.837891,0.998047 -0.164669,0.438669 -0.224609,0.959588 -0.224609,1.617187 v 1.488282 3.208984 c 0.149936,-0.0037 0.298792,0.02631 0.435547,0.08789 1.564453,0.22461 4.278807,1.614843 6.564453,3.443359 0.500962,0.400371 0.500962,1.162129 0,1.5625 -2.285646,1.828516 -5.029654,3.302094 -6.564453,3.443359 -0.134364,0.06045 -0.280423,0.09046 -0.427735,0.08789 0.01821,0.506424 0.08052,0.932011 0.216797,1.294922 0.16468,0.43861 0.461531,0.788525 0.837891,0.996094 0.752719,0.415129 1.673542,0.371648 2.931641,0.386718 h 0.002 12.005859 0.0039 c 1.258189,-0.0145 2.178892,0.0306 2.931641,-0.384765 0.37637,-0.20766 0.673221,-0.559388 0.837891,-0.998047 0.164538,-0.438671 0.224609,-0.959578 0.224609,-1.617188 v -11.533203 -1.466797 c 0,-0.657599 -0.0599,-1.178578 -0.224609,-1.617187 -0.16468,-0.4386 -0.461531,-0.788534 -0.837891,-0.996094 -0.752769,-0.4151293 -1.673552,-0.371639 -2.931641,-0.3867186 h -0.002 -12.005859 z" + sodipodi:nodetypes="cccscccccccccccccccscscccccc" /> + id="path844" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 16.982422 11.017578 C 15.425842 11.028378 13.874168 11.004168 12.324219 11.054688 C 11.86299 11.097357 11.307121 11.262079 11.167969 11.765625 C 10.948975 12.40097 11.058866 13.099911 11.021484 13.748047 C 11.018867 14.518962 11.017369 16.405366 11.015625 18.074219 C 12.169351 18.69223 13.681618 19.664045 15.625 21.21875 A 1.0001 1.0001 0 0 1 15.625 22.78125 C 13.693348 24.326571 12.188222 25.295475 11.037109 25.914062 C 11.039594 26.120212 11.039959 26.477945 11.042969 26.632812 C 11.082069 27.094741 11.245983 27.645875 11.742188 27.796875 C 12.374643 28.021957 13.025905 27.919614 13.677734 27.951172 C 15.101968 27.957972 20.529223 27.960648 21.955078 27.960938 C 23.659607 27.961287 25.3637 27.956869 27.0625 27.943359 C 27.57441 27.931349 28.245439 27.964183 28.646484 27.539062 C 29.067581 26.99928 28.933078 26.270531 28.96875 25.634766 C 28.98062 23.190445 28.996856 14.723041 28.947266 12.277344 C 28.897986 11.875304 28.778193 11.415898 28.373047 11.234375 C 27.704879 10.940277 26.945809 11.064898 26.246094 11.027344 C 24.491689 11.015544 18.736859 11.016488 16.982422 11.017578 z " /> + + + + + + id="rect11148-3-5" + style="display:inline;fill:#00ffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.880597;enable-background:new" + d="M 5 12 L 5 19.013672 L 5 19.027344 C 5.033068 20.263111 5.3295243 21.317766 6.078125 22.041016 C 6.8267257 22.764264 7.8653581 23 9 23 L 10 23 L 10 25.324219 C 11.125696 24.778211 12.759866 23.792107 15 22 C 12.759866 20.207893 11.125696 19.221789 10 18.675781 L 10 21 L 9 21 C 8.1346459 21 7.7035292 20.83223 7.4667969 20.603516 C 7.2300644 20.3748 7.0255917 19.92902 7 18.972656 L 7 12 L 5 12 z " /> diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/jumpdownthislevel.svg libreoffice-7.4.7/yaru/src/default/cmd/32/jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,172 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/jumpupthislevel.svg libreoffice-7.4.7/yaru/src/default/cmd/32/jumpupthislevel.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,176 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/saveacopy.svg libreoffice-7.4.7/yaru/src/default/cmd/32/saveacopy.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/trackchangesbar.svg libreoffice-7.4.7/yaru/src/default/cmd/32/trackchangesbar.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,21 @@ + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -27,7 +28,44 @@ + id="defs10"> + + + + + + + + + + + inkscape:current-layer="svg6" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -65,61 +106,36 @@ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" sodipodi:nodetypes="cccccccsccccccc" /> - - + style="fill:#000000;stroke-width:1.37437;opacity:0.25" + d="m 6,7 v 1 h 12 v -1 z m 7,3 v 1 h 13 v -1 z m -7,3 v 1 h 8 v -1 z m 11,4 v 1 h 9 v -1 z m -11,3 v 1 h 12 v -1 z m 5,3 v 1 h 15 v -1 z" + sodipodi:nodetypes="cccccccccccccccccccccccccccccc" /> - - - - - - - - + d="m 19,7 v 1 h 7 v -1 z m -13,3 v 1 h 6 v -1 z m 9,3 v 1 h 11 v -1 z m -9,4 v 1 h 10 v -1 z m 13,3 v 1 h 7 v -1 z m -13,3 v 1 h 4 v -1 z" + sodipodi:nodetypes="cccccccccccccccccccccccccccccc" /> + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/32/view100.svg libreoffice-7.4.7/yaru/src/default/cmd/32/view100.svg --- libreoffice-7.4.6/yaru/src/default/cmd/32/view100.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/32/view100.svg 2023-03-31 10:14:09.000000000 +0000 @@ -41,9 +41,9 @@ inkscape:window-height="1016" id="namedview6" showgrid="false" - inkscape:zoom="1" - inkscape:cx="262" - inkscape:cy="-92.5" + inkscape:zoom="8" + inkscape:cx="51.4375" + inkscape:cy="10.1875" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" @@ -75,14 +75,12 @@ d="m 27,27 -3.515,-3.515" id="path409-5" sodipodi:nodetypes="cc" /> - 1 + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/ar/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/src/default/cmd/ar/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/src/default/cmd/ar/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/ar/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,172 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/ar/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/src/default/cmd/ar/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/src/default/cmd/ar/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/ar/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,176 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/ar/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/src/default/cmd/ar/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/src/default/cmd/ar/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/ar/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,140 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/ar/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/src/default/cmd/ar/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/src/default/cmd/ar/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/ar/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,144 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/ca/lc_underlinedouble.svg libreoffice-7.4.7/yaru/src/default/cmd/ca/lc_underlinedouble.svg --- libreoffice-7.4.6/yaru/src/default/cmd/ca/lc_underlinedouble.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/ca/lc_underlinedouble.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,21 +1,21 @@ + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -24,7 +24,7 @@ image/svg+xml - + @@ -67,29 +67,29 @@ id="namedview6" showgrid="true" inkscape:zoom="19.666667" - inkscape:cx="7.4707621" - inkscape:cy="11.837121" - inkscape:window-x="1920" + inkscape:cx="7.4999999" + inkscape:cy="11.847457" + inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg4" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#808080"> - S + style="font-weight:bold;font-size:25.2px;line-height:1.25;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono, Bold';letter-spacing:0px;word-spacing:0px;opacity:1;stroke:#ffffff;stroke-width:2;stroke-linejoin:round"> + + + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -62,17 +62,20 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1016" + inkscape:window-height="1043" id="namedview6" showgrid="true" inkscape:zoom="27.812867" - inkscape:cx="8.4718356" - inkscape:cy="10.471204" + inkscape:cx="8.5392132" + inkscape:cy="10.462783" inkscape:window-x="0" - inkscape:window-y="27" + inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg4" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#808080"> @@ -83,18 +86,15 @@ id="path825" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" /> - S + style="font-weight:bold;font-size:25.2px;line-height:1.25;font-family:'Ubuntu Mono';-inkscape-font-specification:'Ubuntu Mono, Bold';letter-spacing:0px;word-spacing:0px;opacity:1;stroke:#ffffff;stroke-width:2;stroke-linejoin:round"> + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/lc_footnotedialog.svg libreoffice-7.4.7/yaru/src/default/cmd/lc_footnotedialog.svg --- libreoffice-7.4.6/yaru/src/default/cmd/lc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/lc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,22 +1,22 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -41,17 +41,20 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview10" showgrid="true" - inkscape:zoom="64" - inkscape:cx="17.041319" - inkscape:cy="6.708674" - inkscape:window-x="1920" - inkscape:window-y="32" + inkscape:zoom="22.627417" + inkscape:cx="8.7725435" + inkscape:cy="8.4410872" + inkscape:window-x="0" + inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg8" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -63,34 +66,26 @@ sodipodi:nodetypes="cccscsccccccccscccccc" /> - - - - + id="rect470" + style="fill:#000000;fill-rule:evenodd;stroke-width:2;stroke-linecap:square;stroke-linejoin:round" + d="M 6 6 L 6 7 L 14.513672 7 L 14.126953 6.0683594 C 14.117416 6.0453355 14.109692 6.0229149 14.101562 6 L 6 6 z " /> + + @@ -120,4 +115,21 @@ style="fill:#d3d3d3;fill-opacity:1;stroke:#4d4d4d;stroke-opacity:1" /> + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/lc_insertbookmark.svg libreoffice-7.4.7/yaru/src/default/cmd/lc_insertbookmark.svg --- libreoffice-7.4.6/yaru/src/default/cmd/lc_insertbookmark.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/lc_insertbookmark.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,12 +1,5 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,17 +38,20 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" inkscape:zoom="32.000001" - inkscape:cx="18.886301" - inkscape:cy="14.075227" + inkscape:cx="18.937499" + inkscape:cy="14.0625" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -91,28 +94,28 @@ inkscape:connector-curvature="0" /> + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,73 +38,78 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" - inkscape:zoom="19.666667" - inkscape:cx="23.272649" - inkscape:cy="7.2409638" + inkscape:zoom="13.906434" + inkscape:cx="1.8336837" + inkscape:cy="5.8246422" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> - - - + d="m 4.994141,1.011385 c -1.2582,0.0145 -2.1788911,-0.030604 -2.9316411,0.3847656 -0.37637,0.20766 -0.6732309,0.5593869 -0.8378909,0.9980471 -0.16467,0.43867 -0.224609,0.9595873 -0.224609,1.6171873 v 0.413977 7.586023 c 0,0.65761 0.0599,1.178577 0.224609,1.617188 0.16468,0.438611 0.4615309,0.788524 0.8378909,0.996093 0.75272,0.41513 1.6735411,0.371649 2.9316411,0.386719 h 0.002 7.053753 0.0039 c 1.25819,-0.0145 2.178891,0.0306 2.931641,-0.384766 0.37637,-0.20766 0.673221,-0.559386 0.837891,-0.998046 0.164539,-0.438671 0.224618,-0.959578 0.224618,-1.617188 v -7.607507 -0.392493 c 0,-0.6576 -0.0599,-1.1785773 -0.224609,-1.6171873 -0.16468,-0.4386002 -0.461531,-0.788534 -0.837891,-0.9960939 -0.75277,-0.41513 -1.673601,-0.3716388 -2.931691,-0.3867188 h -0.002 -7.053754 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;opacity:0.7;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999802" /> + d="m 9.033361,2 c -1.55658,0.0108 -4.15754,-0.011752 -5.707491,0.03877 -0.461229,0.04267 -1.016188,0.206419 -1.15534,0.709967 -0.218994,0.635346 -0.108414,1.333787 -0.145796,1.981925 -0.0078,2.297084 -0.02297,5.662097 0.02152,7.951449 0.0391,0.461929 0.202551,1.012666 0.698756,1.163666 0.632456,0.225082 1.284143,0.12274 1.935974,0.154298 1.424234,0.0068 3.898114,0.01102 5.323971,0.01131 1.70453,3.5e-4 1.408732,-0.005 3.107534,-0.01851 0.511911,-0.01201 1.183699,0.01993 1.584745,-0.405191 0.421097,-0.539783 0.287073,-1.268021 0.322745,-1.903787 0.01187,-2.444323 0.02769,-5.976764 -0.0219,-8.422464 -0.04928,-0.402041 -0.169992,-0.862952 -0.575139,-1.044475 -0.668169,-0.2940979 -1.426205,-0.168019 -2.125921,-0.205573 -1.754407,-0.011803 -1.509218,-0.012484 -3.263658,-0.01139 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:nodetypes="cccccccscccccccc" /> + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/lc_insertfootnote.svg libreoffice-7.4.7/yaru/src/default/cmd/lc_insertfootnote.svg --- libreoffice-7.4.6/yaru/src/default/cmd/lc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/lc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,17 +38,20 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" - inkscape:zoom="27.812867" - inkscape:cx="5.5460902" - inkscape:cy="9.2974267" + inkscape:zoom="19.666668" + inkscape:cx="9.991525" + inkscape:cy="11.440677" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -65,29 +68,47 @@ d="M 11.989228,4.0271848 C 10.432647,4.0379808 6.879238,4.0154328 5.329287,4.0659598 4.868058,4.1086278 4.313099,4.2723792 4.173947,4.7759266 3.954953,5.411273 4.065533,6.1097138 4.028151,6.7578512 c -0.0078,2.297084 -0.02297,9.5964278 0.02152,11.8857798 0.0391,0.461929 0.202551,1.012666 0.698756,1.163666 0.632456,0.225082 1.284144,0.12274 1.935974,0.154298 1.424235,0.0068 4.850563,0.01102 6.27642,0.01131 1.704531,3.5e-4 3.408388,-0.005 5.10719,-0.01851 0.511911,-0.01201 1.183699,0.01993 1.584745,-0.405191 0.421097,-0.539783 0.287073,-1.268021 0.322745,-1.903787 0.01187,-2.444323 0.02769,-9.9110948 -0.0219,-12.3567945 C 19.904325,4.8865822 19.783609,4.4256704 19.378462,4.2441473 18.710293,3.9500499 17.952257,4.0761284 17.252541,4.0385746 15.498134,4.026772 13.743667,4.0260902 11.989228,4.0271848 Z" style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" sodipodi:nodetypes="cccccccsccccccc" /> + + - - - + sodipodi:nodetypes="ccccc" /> + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/lc_insertindexesentry.svg libreoffice-7.4.7/yaru/src/default/cmd/lc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/src/default/cmd/lc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/lc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,17 +38,20 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1016" id="namedview8" showgrid="true" - inkscape:zoom="19.666667" - inkscape:cx="17.892128" - inkscape:cy="11.227923" + inkscape:zoom="27.812867" + inkscape:cx="10.265033" + inkscape:cy="12.494217" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -67,35 +70,38 @@ sodipodi:nodetypes="cccccccsccccccc" /> + style="fill:#00ffff;fill-opacity:1;stroke-width:1.18322" + d="m 11,17 v -1 h 6 v 1 z" + id="path857" + sodipodi:nodetypes="ccccc" /> + d="m 7.5,17 c -0.831,0 -1.5,-0.669 -1.5,-1.5 0,-0.831 0.669,-1.5 1.5,-1.5 0.831,0 1.5,0.669 1.5,1.5 0,0.831 -0.669,1.5 -1.5,1.5 z" + style="fill:#00ffff;fill-opacity:1;stroke-width:1" /> + id="g841" + transform="matrix(1,0,0,-1,0,24)"> + d="m 11,14 v 1 h 5 v -1 z" + style="fill:#232629;stroke-width:1.18322" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/lc_insertreferencefield.svg libreoffice-7.4.7/yaru/src/default/cmd/lc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/src/default/cmd/lc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/lc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,47 +38,65 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" - inkscape:zoom="27.812867" - inkscape:cx="10.80428" - inkscape:cy="9.3034725" + inkscape:zoom="16" + inkscape:cx="5.03125" + inkscape:cy="11.125" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + + + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;opacity:0.7;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999802" + d="m 9.9998906,5.9998594 c -1.2581961,0.0145 -2.178893,-0.030603 -2.9316406,0.3847656 -0.3763688,0.2076594 -0.6732312,0.5593881 -0.8378906,0.9980469 -0.1646697,0.4386688 -0.2246094,0.9595896 -0.2246094,1.6171875 v 1.4882816 1.511859 h 0.96875 1.0255 l 5,4.494141 -6.0001069,5.076171 c 0.02303,0.01417 0.044687,0.02991 0.068359,0.04297 0.7527176,0.41513 1.6735445,0.371649 2.9316406,0.386719 h 0.00195 8.005968 0.0039 c 1.258184,-0.0145 2.178893,0.0306 2.93164,-0.384766 0.37637,-0.207657 0.673221,-0.559389 0.837891,-0.998046 0.164539,-0.438671 0.224609,-0.959581 0.224609,-1.617188 v -8.533344 -1.4667966 c 0,-0.6575979 -0.0599,-1.1785787 -0.224609,-1.6171875 -0.16468,-0.4385988 -0.461531,-0.7885347 -0.837891,-0.9960937 -0.752767,-0.4151288 -1.673556,-0.3716388 -2.93164,-0.3867188 h -0.002 -8.005969 z" + sodipodi:nodetypes="cccscccccccccccccscscccccc" /> + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 12.988281,7.0272032 c -1.556579,0.010796 -3.1083628,-0.011464 -4.6583123,0.039062 -0.4612285,0.042668 -1.0170981,0.2054375 -1.15625,0.7089844 -0.2189938,0.6353458 -0.1091024,1.3342854 -0.1464843,1.9824219 -0.00274,0.8074505 -0.00421,0.5710795 -0.00586,2.1798285 l 5.5468746,4.556641 -5.0410152,4.201171 c 0.065952,0.04612 0.1366808,0.08576 0.2207031,0.111329 0.6324553,0.225081 1.2837175,0.122739 1.9355469,0.154297 1.4242332,0.0068 2.8515972,0.01143 4.2774532,0.01172 1.704529,3.5e-4 3.408621,-0.0041 5.107421,-0.01758 0.511911,-0.01201 1.182939,0.01887 1.583985,-0.40625 0.421096,-0.539782 0.286593,-1.268531 0.322265,-1.904297 0.01187,-2.44432 0.02811,-7.909912 -0.02148,-10.3556095 -0.04928,-0.4020399 -0.169072,-0.863399 -0.574219,-1.0449219 -0.668168,-0.2940971 -1.427238,-0.1675243 -2.126953,-0.2050781 -1.754405,-0.011803 -3.509235,-0.012813 -5.263672,-0.011719 z" + sodipodi:nodetypes="cccccccccscccccccc" /> + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + + + id="path833-1" + style="fill:#00ffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 4 11 L 4 11.5 L 4 14.5 C 4 15.305554 4.1300639 15.962095 4.5839844 16.416016 C 5.0379048 16.869936 5.6944461 17 6.5 17 L 7.5 17 L 7.9921875 17 L 8 19 L 11 16.5 L 7.9824219 14.021484 L 7.9902344 16 L 7.5 16 L 6.5 16 C 5.805557 16 5.462094 15.880063 5.2910156 15.708984 C 5.1199374 15.537907 5 15.194443 5 14.5 L 5 11.5 L 5 11 L 4 11 z " /> + sodipodi:nodetypes="ccccc" /> diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/lc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/src/default/cmd/lc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/src/default/cmd/lc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/lc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,172 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/lc_jumpupthislevel.svg libreoffice-7.4.7/yaru/src/default/cmd/lc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/src/default/cmd/lc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/lc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,176 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/lc_saveacopy.svg libreoffice-7.4.7/yaru/src/default/cmd/lc_saveacopy.svg --- libreoffice-7.4.6/yaru/src/default/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/lc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/lc_trackchangesbar.svg libreoffice-7.4.7/yaru/src/default/cmd/lc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/src/default/cmd/lc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/lc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,16 +38,19 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" inkscape:zoom="19.666667" - inkscape:cx="10.973663" - inkscape:cy="16.176055" - inkscape:window-x="1920" - inkscape:window-y="32" + inkscape:cx="13.169491" + inkscape:cy="18.20339" + inkscape:window-x="0" + inkscape:window-y="0" inkscape:window-maximized="1" - inkscape:current-layer="svg6"> + inkscape:current-layer="svg6" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -65,50 +68,36 @@ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" sodipodi:nodetypes="cccccccsccccccc" /> - + id="path838" + style="opacity:0.25;fill:#000000" + d="m 12,7 v 1 h 6 v -1 z m -6,3 v 1 h 4 v -1 z m 9,0 v 1 h 3 v -1 z m -5,3 v 1 h 3 v -1 z m 2,3 v 1 h 6 v -1 z" + sodipodi:nodetypes="ccccccccccccccccccccccccc" /> - - - - - - - + d="m 6,7 v 1 h 5 v -1 z m 5,3 v 1 h 3 v -1 z m -5,3 v 1 h 3 v -1 z m 8,0 v 1 h 4 v -1 z m -8,3 v 1 h 5 v -1 z" + sodipodi:nodetypes="ccccccccccccccccccccccccc" /> + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/sc_editcurindex.svg libreoffice-7.4.7/yaru/src/default/cmd/sc_editcurindex.svg --- libreoffice-7.4.6/yaru/src/default/cmd/sc_editcurindex.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/sc_editcurindex.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,143 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/sc_footnotedialog.svg libreoffice-7.4.7/yaru/src/default/cmd/sc_footnotedialog.svg --- libreoffice-7.4.6/yaru/src/default/cmd/sc_footnotedialog.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/sc_footnotedialog.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,17 +38,20 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview10" showgrid="true" - inkscape:zoom="29.5" - inkscape:cx="6.1696481" - inkscape:cy="9.1430479" + inkscape:zoom="41.7193" + inkscape:cx="8.1616901" + inkscape:cy="7.3347347" inkscape:window-x="0" - inkscape:window-y="32" + inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg8" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -61,24 +64,6 @@ id="path1993" style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M 5 3.0273438 C 3.4434194 3.0381398 4.8897946 3.0158793 3.3398438 3.0664062 C 2.8786148 3.1090742 2.3246989 3.2718433 2.1855469 3.7753906 C 1.9665529 4.4107371 2.0764445 5.1096753 2.0390625 5.7578125 C 2.0312625 8.0548971 2.0160569 10.355179 2.0605469 12.644531 C 2.0996469 13.10646 2.2635606 13.655641 2.7597656 13.806641 C 3.3922216 14.031723 4.0434825 13.929379 4.6953125 13.960938 C 6.1195475 13.967738 4.5448461 13.972366 5.9707031 13.972656 C 7.6752341 13.973006 10.379324 13.968588 12.078125 13.955078 C 12.590036 13.943068 13.263018 13.973949 13.664062 13.548828 C 14.085159 13.009045 13.950656 12.280297 13.986328 11.644531 C 13.989786 10.932524 13.989774 10.216711 13.992188 9.5019531 L 13.074219 9.8828125 C 12.48687 10.1261 11.930823 9.9030902 11.503906 9.5039062 C 11.075092 9.9073852 10.513259 10.133971 9.9257812 9.890625 A 1.0001 1.0001 0 0 0 9.9238281 9.890625 L 8.8105469 9.4277344 C 8.2255439 9.1847954 7.98813 8.6279466 7.96875 8.0410156 C 7.384502 8.0221686 6.8342168 7.7872276 6.5898438 7.1972656 L 6.1269531 6.0800781 C 5.8825251 5.4899754 6.1059064 4.9337775 6.5058594 4.5078125 C 6.1264606 4.1031167 5.9191422 3.5798448 6.0996094 3.0292969 C 5.740778 3.029329 5.3079978 3.0271516 5 3.0273438 z M 11.441406 4.359375 C 11.378466 4.385445 11.327966 4.5086325 11.353516 4.5703125 C 11.379588 4.6332525 11.502763 4.6837531 11.564453 4.6582031 C 11.627393 4.6321311 11.677894 4.5089456 11.652344 4.4472656 C 11.626272 4.3843256 11.503086 4.333825 11.441406 4.359375 z " /> - - - @@ -117,4 +102,19 @@ id="path856" style="fill:#d3d3d3;fill-opacity:1;stroke:#4d4d4d;stroke-opacity:1" /> + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/sc_graftransparence.svg libreoffice-7.4.7/yaru/src/default/cmd/sc_graftransparence.svg --- libreoffice-7.4.6/yaru/src/default/cmd/sc_graftransparence.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/sc_graftransparence.svg 2023-03-31 10:14:09.000000000 +0000 @@ -96,39 +96,6 @@ style="fill:#000000;opacity:0.7" id="g31" transform="translate(-421.71429,-531.79074)"> - - - - - - - - - + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,72 +38,62 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" inkscape:snap-global="true" inkscape:zoom="29.5" - inkscape:cx="18.055004" - inkscape:cy="6.5886159" + inkscape:cx="10.79661" + inkscape:cy="7.4237288" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + id="path1232" + d="m 3.9941406,1 c -1.2582,0.0145 -2.178891,-0.030604 -2.931641,0.3847658 -0.3763696,0.2076599 -0.6732306,0.5593869 -0.8378906,0.9980467 -0.16467,0.43867 -0.224609,0.9595875 -0.224609,1.6171875 v 1.4882811 3.5511769 c 0,0.65761 0.0599,1.178577 0.224609,1.617188 0.16468,0.438611 0.461531,0.788524 0.8378906,0.996093 0.75272,0.41513 1.673541,0.371649 2.931641,0.386719 h 0.002 5.005809 0.0039 c 1.2581904,-0.0145 2.1788914,0.0306 2.9316414,-0.384766 0.37637,-0.20766 0.673221,-0.559386 0.837891,-0.998046 0.164539,-0.438671 0.224618,-0.959578 0.224618,-1.617188 v -3.572661 -1.466797 c 0,-0.6576 -0.0599,-1.1785776 -0.224609,-1.6171875 -0.16468,-0.4385999 -0.461531,-0.7885337 -0.837891,-0.9960936 -0.75277,-0.4151301 -1.673601,-0.3716387 -2.9316914,-0.3867189 h -0.002 -5.005809 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;opacity:0.7;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999802" /> + inkscape:connector-curvature="0" + id="path1234" + d="m 3.9829998,2.0271848 c -1.556581,0.010796 -0.1096212,-0.011752 -1.6595722,0.038775 -0.461229,0.042668 -1.016188,0.2064193 -1.15534,0.7099666 -0.218994,0.6353465 -0.108414,1.3337872 -0.145796,1.9819244 -0.0078,2.2970848 -0.02297,2.6353028 0.02152,4.9246552 0.0391,0.461929 0.202551,1.012666 0.698756,1.163666 0.632456,0.225082 1.284144,0.12274 1.935974,0.154298 1.424235,0.0068 -0.1498058,0.01102 1.2760512,0.01131 1.704531,3.5e-4 3.4087068,-0.005 5.1075092,-0.01851 0.511911,-0.01201 1.183699,0.01993 1.584745,-0.405191 0.421097,-0.539783 0.287073,-1.268021 0.322745,-1.9037874 0.01187,-2.444324 0.02769,-2.9499696 -0.0219,-5.3956691 -0.04928,-0.4020403 -0.169992,-0.862952 -0.575139,-1.0444751 -0.668169,-0.2940974 -1.4262054,-0.1680189 -2.1259214,-0.2055728 -1.754407,-0.011802 -3.5091928,-0.012484 -5.2636318,-0.01139 z" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:nodetypes="cccccccsccccccc" /> + d="m 6.971849,3.9614254 c -1.2582,0.0145 -2.178891,-0.030604 -2.931641,0.3847658 -0.3763696,0.2076599 -0.6732306,0.5593869 -0.8378906,0.9980467 -0.16467,0.43867 -0.224609,0.9595875 -0.224609,1.6171875 v 1.4882811 3.5511765 c 0,0.65761 0.0599,1.178577 0.224609,1.617188 0.16468,0.438611 0.461531,0.788524 0.8378906,0.996093 0.75272,0.41513 1.673541,0.371649 2.931641,0.386719 h 0.002 l 5.045079,-4e-6 h 0.0039 c 1.25819,-0.0145 2.178891,0.0306 2.931641,-0.384766 0.37637,-0.20766 0.673221,-0.559386 0.837891,-0.998046 0.164539,-0.438671 0.224618,-0.959578 0.224618,-1.617188 v -3.5726606 -1.466797 c 0,-0.6576 -0.0599,-1.1785776 -0.224609,-1.6171875 -0.16468,-0.4385999 -0.461531,-0.7885337 -0.837891,-0.9960936 -0.75277,-0.4151301 -1.673601,-0.3716387 -2.931691,-0.3867189 h -0.002 l -5.045079,0 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;opacity:0.7;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999802" /> + d="m 6.9607082,4.9886102 c -1.556581,0.010796 -0.1096212,-0.011752 -1.6595722,0.038775 -0.461229,0.042668 -1.016188,0.2064193 -1.15534,0.7099666 -0.218994,0.6353465 -0.108414,1.3337872 -0.145796,1.9819244 -0.0078,2.2970848 -0.02297,2.6353028 0.02152,4.9246548 0.0391,0.461929 0.202551,1.012666 0.698756,1.163666 0.632456,0.225082 1.284144,0.12274 1.935974,0.154298 1.424235,0.0068 -0.1498058,0.01102 1.2760512,0.01131 1.7045308,3.5e-4 3.4479768,-0.005 5.1467788,-0.01854 0.511911,-0.01201 1.183699,0.01993 1.584745,-0.405191 0.421097,-0.539783 0.287073,-1.268021 0.322745,-1.903787 0.01187,-2.444324 0.02769,-2.9499696 -0.0219,-5.3956691 -0.04928,-0.4020403 -0.169992,-0.862952 -0.575139,-1.0444751 -0.668169,-0.2940974 -1.426205,-0.1680189 -2.125921,-0.2055728 -1.754407,-0.011802 -3.5484628,-0.012484 -5.3029018,-0.01139 z" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:nodetypes="cccccccscccccccc" /> + + - - - diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/sc_insertfootnote.svg libreoffice-7.4.7/yaru/src/default/cmd/sc_insertfootnote.svg --- libreoffice-7.4.6/yaru/src/default/cmd/sc_insertfootnote.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/sc_insertfootnote.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,17 +38,20 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" - inkscape:zoom="20.85965" - inkscape:cx="13.918041" - inkscape:cy="8.3063126" + inkscape:zoom="29.5" + inkscape:cx="4.1864407" + inkscape:cy="8.8813559" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -57,32 +60,27 @@ sodipodi:nodetypes="cccscsccccccccscscccccc" inkscape:connector-curvature="0" id="path4237-1" - d="m 5.0111408,0.9728152 c -1.2582,0.0145 -2.178891,-0.030604 -2.931641,0.3847658 -0.3763696,0.2076599 -0.6732306,0.5593869 -0.8378906,0.9980467 -0.16467,0.43867 -0.224609,0.9595875 -0.224609,1.6171875 v 1.4882811 5.5124427 c 0,0.65761 0.0599,1.178577 0.224609,1.617188 0.16468,0.438611 0.461531,0.788524 0.8378906,0.996093 0.75272,0.41513 1.673541,0.371649 2.931641,0.386719 h 0.002 6.0057872 0.0039 c 1.25819,-0.0145 2.178891,0.0306 2.931641,-0.384766 0.37637,-0.20766 0.673221,-0.559386 0.837891,-0.998046 0.164539,-0.438671 0.224618,-0.959578 0.224618,-1.617188 V 5.4396122 3.9728152 c 0,-0.6576 -0.0599,-1.1785776 -0.224609,-1.6171875 C 14.627689,1.9170278 14.330838,1.567094 13.954478,1.3595341 13.201708,0.944404 12.280877,0.9878954 11.022787,0.9728152 h -0.002 -6.0057872 z" + d="m 5.0111408,0.9728152 c -1.2582,0.0145 -2.178891,-0.030604 -2.931641,0.3847658 -0.3763696,0.2076599 -0.6732306,0.5593869 -0.8378906,0.9980467 -0.16467,0.43867 -0.224609,0.9595875 -0.224609,1.6171875 v 1.4882811 6.5665817 c 0,0.65761 0.0599,1.178577 0.224609,1.617188 0.16468,0.438611 0.461531,0.788524 0.8378906,0.996093 0.75272,0.41513 1.673541,0.371649 2.931641,0.386719 h 0.002 6.0057872 0.0039 c 1.25819,-0.0145 2.178891,0.0306 2.931641,-0.384766 0.37637,-0.20766 0.673221,-0.559386 0.837891,-0.998046 0.164539,-0.438671 0.224618,-0.959578 0.224618,-1.617188 v -6.5880658 -1.466797 c 0,-0.6576 -0.0599,-1.1785776 -0.224609,-1.6171875 -0.16468,-0.4385999 -0.461531,-0.7885337 -0.837891,-0.9960936 -0.75277,-0.4151301 -1.673601,-0.3716387 -2.931691,-0.3867189 h -0.002 -6.0057872 z" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;opacity:0.7;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999802" /> - + id="rect1025" + style="fill:#00ffff;fill-rule:evenodd;stroke-width:2;stroke-linecap:square;stroke-linejoin:round" + d="m 4,9 h 1 v 3 h -1 z" + sodipodi:nodetypes="ccccc" /> + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/sc_insertindexesentry.svg libreoffice-7.4.7/yaru/src/default/cmd/sc_insertindexesentry.svg --- libreoffice-7.4.6/yaru/src/default/cmd/sc_insertindexesentry.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/sc_insertindexesentry.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,58 +38,56 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" showguides="false" - inkscape:zoom="29.5" - inkscape:cx="6.0968868" - inkscape:cy="8.371896" + inkscape:zoom="41.7193" + inkscape:cx="7.3946591" + inkscape:cy="11.457527" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> - + d="m 5.0108446,0.999859 c -1.2582,0.0145001 -2.178891,-0.030604 -2.931641,0.3847657 -0.3763696,0.2076599 -0.6732306,0.559387 -0.8378906,0.9980468 -0.16467,0.43867 -0.224609,0.9595875 -0.224609,1.6171875 v 1.4882811 6.5665819 c 0,0.65761 0.0599,1.178577 0.224609,1.617188 0.16468,0.438611 0.461531,0.788524 0.8378906,0.996093 0.75272,0.41513 1.673541,0.371649 2.931641,0.386719 h 0.002 6.0057864 0.0039 c 1.25819,-0.0145 2.178891,0.0306 2.931641,-0.384766 0.37637,-0.20766 0.673221,-0.559386 0.837891,-0.998046 0.164539,-0.438671 0.224618,-0.959578 0.224618,-1.617188 v -6.588066 -1.466797 c 0,-0.6576 -0.0599,-1.1785776 -0.224609,-1.6171875 -0.16468,-0.4385999 -0.461531,-0.7885338 -0.837891,-0.9960936 -0.75277,-0.4151301 -1.673601,-0.3716388 -2.931691,-0.3867189 h -0.002 -6.0057864 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;opacity:0.7;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999802" /> + style="opacity:1;fill:#00ffff;fill-opacity:1;stroke:none;stroke-width:1.87083;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + y="9" /> diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/sc_insertreferencefield.svg libreoffice-7.4.7/yaru/src/default/cmd/sc_insertreferencefield.svg --- libreoffice-7.4.6/yaru/src/default/cmd/sc_insertreferencefield.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/sc_insertreferencefield.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,47 +38,49 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" inkscape:zoom="29.5" - inkscape:cx="0.42037811" - inkscape:cy="5.6490424" + inkscape:cx="8.3559322" + inkscape:cy="3.7288136" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg6" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + + + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;opacity:0.7;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999802" + d="m 6.9726562,4.9609375 c -1.2581974,0.0145 -2.178892,-0.030603 -2.9316406,0.3847656 -0.3763688,0.2076595 -0.673231,0.5593878 -0.8378906,0.9980469 -0.088692,0.2362691 -0.1453193,0.4994079 -0.1796875,0.7929688 0.1671706,-0.038248 0.3413681,-0.032868 0.5058594,0.015625 1.7776609,0.7678565 3.0991549,0.8645902 4.4707031,1.8476562 0.62582,0.391838 0.62582,2.608161 0,3 l -4.4707031,1.847656 c -0.057818,0.03198 -0.1186618,0.05814 -0.1816407,0.07813 0.1707578,0.294909 0.4098968,0.531165 0.6933594,0.6875 0.7527186,0.41513 1.6735432,0.371649 2.9316406,0.386719 h 0.00195 5.0449216 0.0039 c 1.258186,-0.0145 2.178892,0.0306 2.93164,-0.384766 0.37637,-0.207658 0.673221,-0.559388 0.837891,-0.998046 0.164539,-0.438671 0.224609,-0.95958 0.224609,-1.617188 v -2.5722656 -1.4667969 c 0,-0.6575986 -0.0599,-1.1785784 -0.224609,-1.6171875 -0.16468,-0.4385991 -0.461531,-0.7885343 -0.837891,-0.9960938 -0.752768,-0.4151291 -1.673554,-0.3716385 -2.93164,-0.3867187 h -0.002 -5.0449215 z" + sodipodi:nodetypes="ccccccccccccccccscscccccc" /> - - - + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.9609375 5.9882812 C 5.4043597 5.9990772 6.8507292 5.9768168 5.3007812 6.0273438 C 4.8395532 6.0700117 4.285636 6.2347351 4.1464844 6.7382812 C 4.0661341 6.9713939 4.0310626 7.21267 4.015625 7.4570312 L 7.5292969 9.6523438 A 1.0001 1.0001 0 0 1 7.5292969 11.347656 L 4.234375 13.40625 C 4.3418567 13.590735 4.4981375 13.738911 4.7207031 13.806641 C 5.3531579 14.03172 6.0044214 13.92938 6.65625 13.960938 C 8.0804822 13.967737 6.5057866 13.972366 7.9316406 13.972656 C 9.6361682 13.973005 11.379327 13.968558 13.078125 13.955078 C 13.590034 13.943068 14.263018 13.973948 14.664062 13.548828 C 15.085159 13.009047 14.950656 12.28225 14.986328 11.646484 C 14.998198 9.2021651 15.014434 9.6956943 14.964844 7.25 C 14.915564 6.8479605 14.793817 6.3866008 14.388672 6.2050781 C 13.720505 5.9109813 12.963386 6.0375538 12.263672 6 C 10.509269 5.988198 8.7153729 5.9871873 6.9609375 5.9882812 z " /> + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/sc_jumpdownthislevel.svg libreoffice-7.4.7/yaru/src/default/cmd/sc_jumpdownthislevel.svg --- libreoffice-7.4.6/yaru/src/default/cmd/sc_jumpdownthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/sc_jumpdownthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,140 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/sc_jumpupthislevel.svg libreoffice-7.4.7/yaru/src/default/cmd/sc_jumpupthislevel.svg --- libreoffice-7.4.6/yaru/src/default/cmd/sc_jumpupthislevel.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/sc_jumpupthislevel.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,144 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/sc_saveacopy.svg libreoffice-7.4.7/yaru/src/default/cmd/sc_saveacopy.svg --- libreoffice-7.4.6/yaru/src/default/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/sc_saveacopy.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,67 @@ + + + +/&amp;amp;amp;amp;gt; + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/cmd/sc_trackchangesbar.svg libreoffice-7.4.7/yaru/src/default/cmd/sc_trackchangesbar.svg --- libreoffice-7.4.6/yaru/src/default/cmd/sc_trackchangesbar.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/cmd/sc_trackchangesbar.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,16 +38,19 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview8" showgrid="true" inkscape:zoom="14.75" - inkscape:cx="-12.843241" - inkscape:cy="9.4241128" - inkscape:window-x="1920" - inkscape:window-y="32" + inkscape:cx="12.440678" + inkscape:cy="0.81355932" + inkscape:window-x="0" + inkscape:window-y="0" inkscape:window-maximized="1" - inkscape:current-layer="svg6"> + inkscape:current-layer="svg6" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -70,37 +73,37 @@ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" sodipodi:nodetypes="cccccccsccccccc" /> + y="7.9994183" /> + style="opacity:1;fill:#c7162b;fill-opacity:1;stroke:none;stroke-width:1.22474;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/base128.svg libreoffice-7.4.7/yaru/src/default/res/base128.svg --- libreoffice-7.4.6/yaru/src/default/res/base128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/base128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,22 +1,22 @@ + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -25,7 +25,7 @@ image/svg+xml - + @@ -63,55 +63,32 @@ style="stop-color:#9911aa;stop-opacity:1" id="stop19925" /> - - - - - + + + + style="color-interpolation-filters:sRGB" + id="filter6646" + x="-0.013636129" + width="1.0272723" + y="-0.010762476" + height="1.021525"> + + + gradientTransform="matrix(0,-0.2265625,-0.22655602,0,126.98149,120.00007)" /> @@ -134,32 +111,16 @@ offset="1" id="stop4342" /> - - - - - - + xlink:href="#linearGradient19927" + id="linearGradient18820-3" + x1="201.07812" + y1="269.99988" + x2="102.92188" + y2="45.999878" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,0.5,-11.999935,-13.999926)" /> + inkscape:current-layer="svg29" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -235,111 +199,143 @@ stop-color="#9b59b6" id="stop14" /> + + + + + + + - - - - - - + id="g376" + transform="matrix(2.2569178,0,0,2.2475556,-712.37675,-121.5625)" + style="display:inline;opacity:0.25;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.07236;stroke-opacity:1;enable-background:new"> - + sodipodi:nodetypes="cccscccc" + id="path364" + d="m 332.74163,90.1053 v 3.50254 c 0,0 0,0.33824 0,0.50036 0,1.93441 5.0402,3.50255 11.2577,3.50255 6.2174,0 11.2576,-1.56814 11.2576,-3.50255 v -0.50036 -3.50254 z" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.07236;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" /> + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.07236;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="translate(-927.00067,953.99307)" + id="g374"> + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.08344;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.97892669,0,0,1.0007266,878.4504,0.37753505)" + id="g372"> - - - - + sodipodi:nodetypes="cccscccc" + id="path368" + d="m 389.5,-872.95665 v 3.5 c 0,0 0,0.338 0,0.5 0,1.933 5.14873,3.5 11.5,3.5 6.35127,0 11.5,-1.567 11.5,-3.5 v -0.5 -3.5 z" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.08344;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" + inkscape:connector-curvature="0" /> + - - - + + + sodipodi:nodetypes="cccscccc" + id="path14085-0" + d="m 332.74163,90.1053 v 3.50254 c 0,0 0,0.33824 0,0.50036 0,1.93441 5.0402,3.50255 11.2577,3.50255 6.2174,0 11.2576,-1.56814 11.2576,-3.50255 v -0.50036 -3.50254 z" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#dc85e9;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.07236;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" /> + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/base_thumbnail_256.svg libreoffice-7.4.7/yaru/src/default/res/base_thumbnail_256.svg --- libreoffice-7.4.6/yaru/src/default/res/base_thumbnail_256.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/base_thumbnail_256.svg 2023-03-31 10:14:09.000000000 +0000 @@ -6,7 +6,7 @@ version="1.1" id="svg157" sodipodi:docname="base_thumbnail_256.svg" - inkscape:version="1.1.2 (76b9e6a115, 2022-02-25)" + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:xlink="http://www.w3.org/1999/xlink" @@ -26,16 +26,6 @@ offset="1" /> - - + + + inkscape:current-layer="svg157" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> @@ -390,66 +392,16 @@ id="path2" sodipodi:nodetypes="sssssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccsscccscccccccccccccccccccccccccccccccccccccccccccccscccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /> - - - - - - - - - - - - + d="m 5.4854533,3.7041667 c -0.5881264,0 -1.0516461,0.014101 -1.4324707,0.078031 -0.3812936,0.064 -0.692857,0.1838654 -0.9213908,0.4118612 -0.2285738,0.2280377 -0.348976,0.5389276 -0.4123779,0.9203572 -0.06332,0.3809146 -0.075754,0.8449644 -0.072864,1.4345378 v 3.2406291 3.2416626 c -0.0029,0.588963 0.0096,1.052854 0.072864,1.433504 0.0634,0.381431 0.1838021,0.692318 0.4123779,0.920358 0.2285358,0.227993 0.5400942,0.347856 0.9213908,0.411861 0.3808246,0.06393 0.8443443,0.07803 1.4324707,0.07803 h 4.3759603 c 0.5881214,0 1.0508854,-0.01408 1.4309204,-0.07803 0.38046,-0.06402 0.691513,-0.183662 0.919324,-0.411861 0.227735,-0.228119 0.347421,-0.539284 0.411344,-0.920358 0.06386,-0.380708 0.07752,-0.844269 0.07752,-1.433504 v -3.2416626 -3.2416626 l -2.9109336,-2.8437541 z" + sodipodi:nodetypes="scccccccccsssssscccs" /> + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccscssccsscccc" /> + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/calc128.svg libreoffice-7.4.7/yaru/src/default/res/calc128.svg --- libreoffice-7.4.6/yaru/src/default/res/calc128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/calc128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -5,7 +5,7 @@ version="1.1" id="svg29" sodipodi:docname="calc128.svg" - inkscape:version="1.1 (ce6663b3b7, 2021-05-25)" + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" inkscape:export-filename="/home/jupiter007/Libreoffice yaru theme/build/res/calc128.png" inkscape:export-xdpi="96" inkscape:export-ydpi="96" @@ -54,16 +54,6 @@ id="stop15610-7" /> - + + + + + + + + + + + gradientTransform="matrix(0,-0.2265625,-0.22655602,0,126.9815,120.00008)" /> @@ -96,48 +129,32 @@ offset="1" id="stop4342" /> - - - - - - + xlink:href="#_Linear10" + id="linearGradient18820-3" + x1="201.07812" + y1="269.99988" + x2="102.92188" + y2="45.999878" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,0.5,-11.999935,-13.999926)" /> + gradientTransform="matrix(0,16.223,-16.223,0,338,228.912)"> + id="stop376" /> + id="stop378" /> + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> @@ -216,175 +235,141 @@ id="stop14" /> + d="m 73.498281,-22.135444 c -35.296731,0 -38.921881,3.625611 -38.921881,38.994141 v 71.00586 2 71.005863 c 0,35.36853 3.62514,38.99414 38.921881,38.99414 h 98.156239 c 35.29673,0 39.09487,-3.62602 38.92188,-38.99414 v -100.765633 c -0.044,-9.7329 -8.17907,-17.95562 -14.76172,-24.16211 l -0.0488,-0.0508 -40.52343,-42.4082 c -10.67689,-10.56116 -18.05782,-15.619141 -32.66602,-15.619141 z m 96.982419,0.08984 c -2.16918,2.775877 -2.38539,7.403545 0.20898,9.912109 l 28.4961,30.386719 c 3.72332,3.695483 11.11677,0.569048 11.38085,-4.777344 -0.11515,-29.584532 -4.14219,-34.875862 -31.35937,-35.521484 z" + id="path5316-1" + transform="matrix(0.5,0,0,0.5,2.7118644,20.067796)" /> + d="m 73.498281,-23.135444 c -35.296731,0 -38.921881,3.625611 -38.921881,38.994141 v 72.00586 1 72.005863 c 0,35.36853 3.62514,38.99414 38.921881,38.99414 h 98.156239 c 35.29673,0 39.09487,-3.62602 38.92188,-38.99414 v -101.765633 c -0.044,-9.7329 -8.17907,-17.95561 -14.76172,-24.16211 l -0.0488,-0.0508 -40.52343,-42.4082 c -10.67689,-10.56116 -18.05782,-15.619141 -32.66602,-15.619141 z m 97.968739,0.08984 c -3.03973,2.502305 -3.72055,8.066242 -0.77734,10.912109 l 28.4961,30.386719 c 3.72846,3.700585 11.14006,0.561079 11.38476,-4.798828 -0.032,-30.448516 -3.84872,-35.847323 -31.36328,-36.5 z" + id="path5316-84" + transform="matrix(0.5,0,0,0.5,2.7118644,20.067796)" /> + d="m 39.461005,8.0000744 c -1.08787,0 -2.113175,0.0073 -3.083985,0.02442 -14.740935,0.263923 -16.333985,2.8936576 -16.333985,19.4726566 v 36.502929 36.50293 c 0,16.579 1.59305,19.20874 16.333985,19.47266 0.97081,0.0171 1.996115,0.0244 3.083985,0.0244 0.01515,0 0.0278,0 0.04295,0 h 49.035155 c 1.103025,0 2.14459,-0.007 3.12793,-0.0244 14.75013,-0.26395 16.4141,-2.89385 16.33301,-19.47266 v -51.382815 c -0.022,-4.86645 -4.08954,-8.97781 -7.38086,-12.081055 l -0.0244,-0.0254 -20.261715,-21.204099 c -5.338475,-5.280566 -9.02891,-7.8095706 -16.33301,-7.8095706 z m 49.86621,0.04492 c -2.237305,0.7462 -2.99531,4.2882996 -1.27051,5.9560546 l 14.248045,15.193359 c 1.87049,1.856502 5.59676,0.270619 5.69532,-2.425781 v -3.595703 c -0.31901,-12.477521 -2.88303,-14.8252816 -15.641605,-15.1279296 h -1.976565 z" + id="path5316-3" /> - + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient18820-3);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 39.461005,8.0000744 c -17.64837,0 -19.46094,1.812806 -19.46094,19.4970706 v 36.50293 36.502935 c 0,17.68426 1.81257,19.49707 19.46094,19.49707 h 49.07812 c 7.72116,0 12.427755,-0.34749 15.272465,-2.21875 0.20319,-0.13366 0.39741,-0.27419 0.58203,-0.42383 1.10769,-0.89787 1.88794,-2.0915 2.43262,-3.67285 0.99858,-2.89914 1.20356,-7.10275 1.17383,-13.18164 v -51.38282 c -0.022,-4.86645 -4.08954,-8.97781 -7.38087,-12.081055 l -0.0244,-0.0254 -20.26171,-21.2041 c -5.338475,-5.280566 -9.02891,-7.8095706 -16.33301,-7.8095706 z m 49.86621,0.04492 c -2.237305,0.7462 -2.99531,4.2882996 -1.27051,5.9560546 l 14.248045,15.193359 c 1.86678,1.852816 5.58065,0.276482 5.69336,-2.410156 0.0241,-15.664507 -1.77664,-18.4093916 -15.682615,-18.7392576 h -1.933595 z" + id="rect4158-92-3" + sodipodi:nodetypes="sscsssssscccccssccccccc" /> + id="rect4396" + style="display:inline;opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:1;stroke-linejoin:round;stroke-dasharray:1.5, 1.5;enable-background:new" + d="m 64.000065,8.0000744 v 112.0000056 h 24.53906 c 7.72116,0 12.427755,-0.34749 15.272465,-2.21875 0.20319,-0.13366 0.39741,-0.27419 0.58203,-0.42383 1.10769,-0.89787 1.88794,-2.0915 2.43262,-3.67285 0.99858,-2.89914 1.20356,-7.10275 1.17383,-13.18164 v -51.38282 c -0.022,-4.86645 -4.08954,-8.977805 -7.38087,-12.081055 l -0.0244,-0.0254 -20.26171,-21.2041 c -5.338475,-5.280566 -9.02891,-7.8095706 -16.33301,-7.8095706 z m 25.32715,0.04492 c -2.237305,0.7462 -2.99531,4.2882996 -1.27051,5.9560546 l 14.248045,15.193359 c 1.86678,1.852816 5.58065,0.276482 5.69336,-2.410156 0.0241,-15.664507 -1.77664,-18.4093916 -15.682615,-18.7392576 h -1.933595 z" /> + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 20.00026,64.000075 v 36.503415 c -0.08649,17.68406 1.81258,19.49659 19.460945,19.49659 h 49.07812 c 17.648365,0 19.001805,-1.81828 19.460945,-19.49659 v -36.503415 z" + id="path4255" + sodipodi:nodetypes="ccssscc" /> + id="path497" + style="clip-rule:evenodd;display:inline;opacity:0.25;fill:#000000;fill-rule:nonzero;stroke-width:0.5;enable-background:new" + d="m 45,48.996 c -4.694495,0 -8.5,3.805505 -8.5,8.5 v 35.500001 c 0,4.694495 3.805505,8.499999 8.5,8.499999 h 24.6709 c 0.864095,1.49608 2.477165,2.50488 4.3291,2.50488 h 17.5 c 2.761495,0 5,-2.2385 5,-4.999999 v -17.5 c 0,-2.761495 -2.238505,-5 -5,-5 v -19.004881 c 0,-4.694495 -3.805505,-8.5 -8.5,-8.5 z m 0,2.5 h 9 v 7.5 h -15 v -1.5 c 0,-3.314 2.686505,-6 6,-6 z m 11.5,0 h 15 v 7.5 h -15 z m 17.5,0 h 9 c 3.313495,0 6,2.686 6,6 v 1.5 h -15 z m -35,10 h 15 v 7.5 h -15 z m 17.5,0 h 15 v 7.5 h -15 z m 17.5,0 h 15 v 7.5 h -15 z m -35,10.000001 h 15 v 7.5 h -15 z m 17.5,0 h 15 v 5.67871 c -0.7558,0.437685 -1.38472,1.066035 -1.82324,1.82129 h -13.17676 z m 17.5,0 h 15 v 5.00488 h -15 z m -35,10 h 15 v 7.5 h -15 z m 17.5,0 h 12.5 c 0,0.0015 0,0.003 0,0.005 v 7.49512 h -12.5 z m -17.5,10 h 15 v 7.5 h -9 c -3.313495,0 -6,-2.686505 -6,-6 z m 17.5,0 h 12.5 v 7.5 h -12.5 z" /> + d="m 81,47.996 h -34 c -5.799,0 -10.5,4.7015 -10.5,10.5 v 31.500001 c 0,5.799 4.701,10.499999 10.5,10.499999 h 34 c 5.799,0 10.5,-4.700999 10.5,-10.499999 v -31.500001 c 0,-5.7985 -4.701,-10.5 -10.5,-10.5 z" + style="clip-rule:evenodd;display:inline;fill:#4aa73f;fill-opacity:1;fill-rule:nonzero;stroke-width:0.5;enable-background:new" + id="path266" /> + d="m 79,48.001 h -30 c -6.9035,0 -12.5,5.597 -12.5,12.5005 h 55 c 0,-6.9035 -5.5965,-12.5005 -12.5,-12.5005 z" + style="clip-rule:evenodd;display:inline;fill:#81db70;fill-opacity:1;fill-rule:nonzero;stroke-width:0.5;enable-background:new" + id="path270" /> - - - + d="m 45,47.996 c -4.6945,0 -8.5,3.8055 -8.5,8.5 v 35.500001 c 0,4.6945 3.8055,8.499999 8.5,8.499999 h 38 c 4.6945,0 8.5,-3.805499 8.5,-8.499999 v -35.500001 c 0,-4.6945 -3.8055,-8.5 -8.5,-8.5 z m -6,8.5 c 0,-3.314 2.6865,-6 6,-6 h 9 v 7.5 h -15 z m 17.5,-6 h 15 v 7.5 h -15 z m 17.5,0 h 9 c 3.3135,0 6,2.686 6,6 v 1.5 h -15 z m -35,10 h 15 v 7.5 h -15 z m 17.5,0 h 15 v 7.5 h -15 z m 17.5,0 h 15 v 7.5 h -15 z m -35,10.000001 h 15 v 7.5 h -15 z m 17.5,0 h 15 v 7.5 h -15 z m 17.5,0 h 15 v 7.5 h -15 z m -35,10 h 15 v 7.5 h -15 z m 17.5,0 h 15 v 7.5 h -15 z m 17.5,0 h 15 v 7.5 h -15 z m -35,10 h 15 v 7.5 h -9 c -3.3135,0 -6,-2.6865 -6,-6 z m 17.5,0 h 15 v 7.5 h -15 z m 17.5,0 h 15 v 1.5 c 0,3.3135 -2.6865,6 -6,6 h -9 z" + style="clip-rule:evenodd;display:inline;fill:#ffffff;fill-rule:nonzero;stroke-width:0.5;enable-background:new" + id="path274" /> - - - - - - + style="clip-rule:evenodd;display:inline;fill:#ffffff;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + + + + - - - - - - - - - - - - + style="clip-rule:evenodd;display:inline;fill:#ffffff;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill:#ffffff;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill:#ffffff;fill-rule:evenodd;enable-background:new"> + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/draw128.svg libreoffice-7.4.7/yaru/src/default/res/draw128.svg --- libreoffice-7.4.6/yaru/src/default/res/draw128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/draw128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -5,7 +5,7 @@ version="1.1" id="svg29" sodipodi:docname="draw128.svg" - inkscape:version="1.1 (ce6663b3b7, 2021-05-25)" + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" inkscape:export-filename="/home/jupiter007/Libreoffice yaru theme/build/res/draw128.png" inkscape:export-xdpi="96" inkscape:export-ydpi="96" @@ -65,16 +65,6 @@ style="stop-color: rgb(253, 233, 169); stop-opacity: 1;" /> - - - - - - - - - - - - + + + + + + + + + + + + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> @@ -261,134 +274,131 @@ id="stop14" /> + + + + + sodipodi:nodetypes="cccsc" /> + + d="m 124.31718,-16.89594 c -35.296732,0 -38.921882,3.625611 -38.921882,38.994141 v 72.00586 1 72.005859 c 0,35.36853 3.62514,38.99414 38.921882,38.99414 h 98.15624 c 35.29673,0 39.09487,-3.62602 38.92188,-38.99414 v -101.765629 c -0.044,-9.7329 -8.17907,-17.95561 -14.76172,-24.16211 l -0.0488,-0.0508 -40.52343,-42.4082 c -10.67689,-10.56116 -18.05782,-15.619141 -32.66602,-15.619141 z m 97.96874,0.0898 c -3.03973,2.502305 -3.72055,8.066242 -0.77734,10.912109 l 28.4961,30.386719 c 3.72846,3.700585 11.14006,0.561079 11.38476,-4.798828 -0.032,-30.448516 -3.84872,-35.84732 -31.36328,-36.5 z" + id="path5316-84" + transform="matrix(0.5,0,0,0.5,-22.697584,16.948044)" /> + d="m 39.461006,8.0000736 c -1.08787,0 -2.113175,0.0074 -3.083985,0.0244 -14.740936,0.26392 -16.333986,2.8936584 -16.333986,19.4726564 v 36.50293 36.50293 c 0,16.579 1.59305,19.20873 16.333986,19.47265 0.97081,0.017 1.996115,0.0244 3.083985,0.0244 0.01515,1e-5 0.0278,0 0.04295,0 h 49.035156 c 1.10302,0 2.14459,-0.007 3.12793,-0.0244 14.750128,-0.26394 16.414098,-2.89385 16.333008,-19.47265 v -51.382815 c -0.022,-4.86645 -4.08954,-8.977811 -7.38086,-12.081056 l -0.0244,-0.0254 -20.261718,-21.204098 c -5.33847,-5.280566 -9.02891,-7.8095724 -16.33301,-7.8095724 z m 49.866206,0.0449 c -2.2373,0.7462 -2.99531,4.2883004 -1.27051,5.9560554 l 14.248048,15.193359 c 1.87049,1.856501 5.59675,0.270618 5.69531,-2.425782 v -3.595702 c -0.319,-12.477521 -2.88302,-14.8252804 -15.641598,-15.1279304 h -1.97656 z" + id="path5316-3" /> + inkscape:connector-curvature="0" /> + d="m 39.461006,8.0000736 c -17.648371,0 -19.460941,1.812806 -19.460941,19.4970704 v 36.502931 36.502925 c 0,17.68427 1.81257,19.49707 19.460941,19.49707 h 49.078116 c 7.72116,0 12.427758,-0.34748 15.272468,-2.21875 0.20319,-0.13366 0.39741,-0.27418 0.58203,-0.42383 1.10768,-0.89786 1.88793,-2.0915 2.43261,-3.67285 0.99858,-2.89914 1.20357,-7.10274 1.17383,-13.18164 v -51.38281 c -0.022,-4.86645 -4.08953,-8.977811 -7.38086,-12.081056 l -0.0244,-0.0254 -20.261708,-21.204099 c -5.33848,-5.280566 -9.02891,-7.8095714 -16.33301,-7.8095714 z m 49.866206,0.0449 c -2.2373,0.7462 -2.99531,4.2883004 -1.27051,5.9560554 l 14.248048,15.193359 c 1.86678,1.852815 5.58064,0.276482 5.69336,-2.410157 0.0241,-15.664506 -1.77664,-18.4093924 -15.682618,-18.7392574 h -1.93359 z" + id="rect4158-92-3" + sodipodi:nodetypes="sscsssssscccccssccccccc" /> + id="rect4396" + style="display:inline;opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:1;stroke-linejoin:round;stroke-dasharray:1.5, 1.5;enable-background:new" + d="m 64.000062,8.0000736 v 111.9999964 h 24.53906 c 7.72116,0 12.427758,-0.34748 15.272468,-2.21875 0.20319,-0.13366 0.39741,-0.27418 0.58203,-0.42383 1.10768,-0.89786 1.88793,-2.0915 2.43261,-3.67285 0.99858,-2.89914 1.20357,-7.10274 1.17383,-13.18164 v -51.38281 c -0.022,-4.86645 -4.08953,-8.977806 -7.38086,-12.081056 l -0.0244,-0.0254 -20.261708,-21.204099 c -5.33848,-5.280566 -9.02891,-7.8095714 -16.33301,-7.8095714 z m 25.32715,0.0449 c -2.2373,0.7462 -2.99531,4.2883004 -1.27051,5.9560554 l 14.248048,15.193359 c 1.86678,1.852815 5.58064,0.276482 5.69336,-2.410157 0.0241,-15.664506 -1.77664,-18.4093924 -15.682618,-18.7392574 h -1.93359 z" /> + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 20.00026,64.000075 v 36.503415 c -0.08649,17.68406 1.812575,19.49658 19.460946,19.49658 h 49.078116 c 17.648358,0 19.001808,-1.81827 19.460938,-19.49658 v -36.503415 z" + id="path4255-6" + sodipodi:nodetypes="ccssscc" /> + + + + + + + + + - + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 20.000198,64 v 36.50341 c -0.08649,17.68406 1.812575,19.49659 19.460943,19.49659 h 49.078121 c 17.648358,0 19.001798,-1.81828 19.460938,-19.49659 v -36.50341 z" + id="path4255" + sodipodi:nodetypes="ccssscc" /> + sodipodi:nodetypes="cccsc" /> + + + + + + + transform="matrix(0.5,0,0,0.5,-219.0035,-11.0015)" + id="g232" + style="clip-rule:evenodd;display:inline;fill:#e67319;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;enable-background:new"> - - - - - - - - - - - - - - - - - - - - - + d="m 585.067,206.783 c 3.69,5.997 -0.624,13.717 -7.665,13.717 h -47.787 c -7.041,0 -11.356,-7.72 -7.665,-13.717 l 23.894,-38.828 c 3.514,-5.71 11.815,-5.71 15.329,10e-4 z" + style="fill:#e2a112;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:5px;stroke-linecap:round;stroke-linejoin:round" + id="path230" /> diff -Nru libreoffice-7.4.6/yaru/src/default/res/impress128.svg libreoffice-7.4.7/yaru/src/default/res/impress128.svg --- libreoffice-7.4.6/yaru/src/default/res/impress128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/impress128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -5,7 +5,7 @@ version="1.1" id="svg29" sodipodi:docname="impress128.svg" - inkscape:version="1.1 (ce6663b3b7, 2021-05-25)" + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" inkscape:export-filename="/home/jupiter007/Libreoffice yaru theme/build/res/impress128.png" inkscape:export-xdpi="96" inkscape:export-ydpi="96" @@ -86,16 +86,6 @@ offset="1" /> - - - - - - - - - - - - + + + + + + + + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1" /> + d="m 19.954809,49.542618 c -35.296731,0 -38.921881,3.625611 -38.921881,38.994141 v 71.005861 2 71.00586 c 0,35.36853 3.62514,38.99414 38.921881,38.99414 h 98.156241 c 35.29673,0 39.09487,-3.62602 38.92188,-38.99414 v -100.76563 c -0.044,-9.7329 -8.17907,-17.95562 -14.76172,-24.16211 l -0.0488,-0.0508 -40.52343,-42.408201 c -10.676891,-10.56116 -18.057821,-15.619141 -32.666021,-15.619141 z m 96.982421,0.08984 c -2.16918,2.775877 -2.38539,7.403545 0.20898,9.912109 l 28.4961,30.386722 c 3.72332,3.69548 11.11677,0.56904 11.38085,-4.77735 -0.11515,-29.584529 -4.14219,-34.875859 -31.35937,-35.521481 z" + id="path5316-1" + transform="matrix(0.5,0,0,0.5,29.4836,-15.771234)" /> + d="m 19.954809,48.542618 c -35.296731,0 -38.921881,3.625611 -38.921881,38.994141 v 72.005861 1 72.00586 c 0,35.36853 3.62514,38.99414 38.921881,38.99414 h 98.156241 c 35.29673,0 39.09487,-3.62602 38.92188,-38.99414 v -101.76563 c -0.044,-9.7329 -8.17907,-17.95561 -14.76172,-24.16211 l -0.0488,-0.0508 -40.52343,-42.408201 c -10.676891,-10.56116 -18.057821,-15.619141 -32.666021,-15.619141 z m 97.968741,0.08984 c -3.03973,2.502305 -3.72055,8.066242 -0.77734,10.912109 l 28.4961,30.386722 c 3.72846,3.70058 11.14006,0.56108 11.38476,-4.79883 -0.032,-30.448517 -3.84872,-35.847324 -31.36328,-36.500001 z" + id="path5316-84" + transform="matrix(0.5,0,0,0.5,29.4836,-15.771234)" /> + d="m 39.461005,8.000075 c -1.08787,0 -2.113176,0.0073 -3.083986,0.02441 -14.740935,0.263922 -16.333985,2.893658 -16.333985,19.472655 v 36.502931 36.502919 c 0,16.57901 1.59305,19.20875 16.333985,19.47266 0.97081,0.017 1.996116,0.0244 3.083986,0.0244 0.01515,0 0.0278,0 0.04295,0 h 49.035155 c 1.103025,0 2.14459,-0.007 3.12793,-0.0244 14.75013,-0.26395 16.4141,-2.89385 16.33301,-19.47266 v -51.382804 c -0.022,-4.86645 -4.08953,-8.97781 -7.38086,-12.081055 l -0.0244,-0.0254 -20.261715,-21.2041 c -5.338475,-5.280565 -9.02891,-7.80957 -16.33301,-7.80957 z m 49.86621,0.04492 c -2.237305,0.7462 -2.99531,4.288299 -1.27051,5.956054 l 14.248055,15.193361 c 1.87049,1.8565 5.59675,0.270615 5.69531,-2.425785 v -3.5957 c -0.31901,-12.477522 -2.88303,-14.825282 -15.641605,-15.12793 h -1.976565 z" + id="path5316-3" /> - + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient18820-3);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 39.461005,8.000075 c -17.648371,0 -19.460941,1.812805 -19.460941,19.49707 v 36.502931 36.502924 c 0,17.68427 1.81257,19.49707 19.460941,19.49707 h 49.07812 c 7.72116,0 12.427755,-0.34748 15.272465,-2.21875 0.20319,-0.13366 0.39742,-0.27418 0.58203,-0.42383 1.10769,-0.89786 1.88794,-2.0915 2.43262,-3.67285 0.99858,-2.89914 1.20356,-7.10274 1.17383,-13.18164 v -51.382809 c -0.022,-4.86645 -4.08954,-8.97781 -7.38086,-12.081055 l -0.0244,-0.0254 -20.26172,-21.204101 c -5.338475,-5.280565 -9.02891,-7.80957 -16.33301,-7.80957 z m 49.86621,0.04492 c -2.237305,0.7462 -2.99531,4.288299 -1.27051,5.956054 l 14.248055,15.193361 c 1.86677,1.852815 5.58064,0.27648 5.69335,-2.41016 0.0241,-15.664505 -1.77664,-18.409389 -15.682615,-18.739255 h -1.933595 z" + id="rect4158-92-3" + sodipodi:nodetypes="sscsssssscccccssccccccc" /> + id="rect4396" + style="display:inline;opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:1;stroke-linejoin:round;stroke-dasharray:1.5, 1.5;enable-background:new" + d="m 64.000065,8.000075 v 111.999995 h 24.53906 c 7.72116,0 12.427755,-0.34748 15.272465,-2.21875 0.20319,-0.13366 0.39742,-0.27418 0.58203,-0.42383 1.10769,-0.89786 1.88794,-2.0915 2.43262,-3.67285 0.99858,-2.89914 1.20356,-7.10274 1.17383,-13.18164 v -51.382809 c -0.022,-4.86645 -4.08954,-8.977805 -7.38086,-12.081055 l -0.0244,-0.0254 -20.26172,-21.204101 c -5.338475,-5.280565 -9.02891,-7.80957 -16.33301,-7.80957 z m 25.32715,0.04492 c -2.237305,0.7462 -2.99531,4.288299 -1.27051,5.956054 l 14.248055,15.193361 c 1.86677,1.852815 5.58064,0.27648 5.69335,-2.41016 0.0241,-15.664505 -1.77664,-18.409389 -15.682615,-18.739255 h -1.933595 z" /> - - + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 20.000259,64.000076 v 36.503414 c -0.08649,17.68406 1.812575,19.49658 19.460946,19.49658 h 49.07812 c 17.648365,0 19.001805,-1.81827 19.460945,-19.49658 v -36.503414 z" + id="path4255" + sodipodi:nodetypes="ccssscc" /> + id="path2426" + style="clip-rule:evenodd;display:inline;opacity:0.25;fill:#000000;fill-rule:nonzero;stroke-width:0.5;enable-background:new" + d="m 42.5,49.000001 c -4.691491,0 -8.5,3.80851 -8.5,8.5 v 28 c 0,4.69149 3.808509,8.5 8.5,8.5 h 16.5 v 0.91211 l -9.521485,7.293939 c -0.7585,0.581 -0.3471,1.79395 0.6084,1.79395 h 2.09668 c 1.46349,0 2.87664,-0.53589 3.97363,-1.50489 l 6.78418,-5.996089 h 2.11719 l 6.7832,5.996089 c 1.097,0.969 2.51062,1.50489 3.97461,1.50489 h 2.095705 c 0.9555,0 1.36739,-1.21295 0.6084,-1.79395 l -9.521485,-7.293939 v -0.91211 h 16.500975 c 4.69149,0 8.5,-3.80851 8.5,-8.5 v -28 c 0,-4.69149 -3.80851,-8.5 -8.5,-8.5 z" /> - - - - - - - - - + id="path2419" + style="clip-rule:evenodd;display:inline;fill:#ffffff;fill-rule:nonzero;stroke-width:0.5;enable-background:new" + d="m 42.5,48.000001 c -4.691491,0 -8.5,3.80851 -8.5,8.5 v 28 c 0,4.69149 3.808509,8.5 8.5,8.5 h 16.5 v 0.91211 l -9.521485,7.293939 c -0.7585,0.581 -0.3471,1.79395 0.6084,1.79395 h 2.09668 c 1.46349,0 2.87664,-0.53589 3.97363,-1.50489 l 6.78418,-5.996089 h 2.11719 l 6.7832,5.996089 c 1.097,0.969 2.51062,1.50489 3.97461,1.50489 h 2.095705 c 0.9555,0 1.36739,-1.21295 0.6084,-1.79395 l -9.521485,-7.293939 v -0.91211 h 16.500975 c 4.69149,0 8.5,-3.80851 8.5,-8.5 v -28 c 0,-4.69149 -3.80851,-8.5 -8.5,-8.5 z" /> - - - + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill:#e88d59;fill-opacity:1;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> - - - + style="clip-rule:evenodd;display:inline;fill:#ffffff;fill-rule:evenodd;enable-background:new"> - - - + style="clip-rule:evenodd;display:inline;fill:#ffffff;fill-rule:evenodd;enable-background:new"> - - - + style="clip-rule:evenodd;display:inline;fill:#ffffff;fill-rule:evenodd;enable-background:new"> - - - - - - - - - - - - + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/lx03123.svg libreoffice-7.4.7/yaru/src/default/res/lx03123.svg --- libreoffice-7.4.6/yaru/src/default/res/lx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/lx03123.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,18 +1,18 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -26,27 +26,37 @@ + + + + gradientTransform="matrix(0,-0.07466265,0.07508952,0,-8.0927518,34.45455)" + x1="434.68253" + y1="243.53065" + x2="52.965439" + y2="401.42953" /> + id="linearGradient4338-3-3"> + id="stop4340-0-5" /> + id="stop4342-7-6" /> + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-319.99951,-132)" /> @@ -77,16 +88,6 @@ offset="1" id="stop925" /> - - - + inkscape:current-layer="svg14" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" /> + + + + + + + + - - + sodipodi:nodetypes="ccsscccc" /> + + inkscape:connector-curvature="0" + sodipodi:nodetypes="scccssscccsscccscccsscssccccccscs" /> + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/lx03126.svg libreoffice-7.4.7/yaru/src/default/res/lx03126.svg --- libreoffice-7.4.6/yaru/src/default/res/lx03126.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/lx03126.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,18 +1,18 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -26,16 +26,26 @@ + + + + gradientTransform="matrix(0,-0.07466265,0.07508952,0,-8.0927518,34.45455)" + x1="434.68253" + y1="243.53065" + x2="52.965439" + y2="401.42953" /> @@ -50,43 +60,34 @@ + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-319.99951,-132)" /> + inkscape:collect="always" + id="linearGradient927"> + id="stop923" /> + style="stop-color:#ffffff;stop-opacity:0.09803922" /> + style="stop-color:#ffffff;stop-opacity:0.09803922" /> + id="stop925" /> - - - + inkscape:current-layer="svg18" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" /> + + + + + + + + + - - - - - + + + inkscape:connector-curvature="0" + sodipodi:nodetypes="scccssscccsscccscccsscssccccccscs" /> + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/lx03129.svg libreoffice-7.4.7/yaru/src/default/res/lx03129.svg --- libreoffice-7.4.6/yaru/src/default/res/lx03129.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/lx03129.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,18 +1,18 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -26,16 +26,26 @@ + + + + gradientTransform="matrix(0,-0.07466265,0.07508952,0,-8.0927518,34.45455)" + x1="434.68253" + y1="243.53065" + x2="52.965439" + y2="401.42953" /> @@ -56,7 +66,8 @@ y1="134" x2="336" y2="162" - gradientUnits="userSpaceOnUse" /> + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-319.99951,-132)" /> @@ -77,16 +88,6 @@ offset="1" id="stop925" /> - - - + inkscape:current-layer="svg12" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" /> + + d="m 9.9514482,1.50001 c -5.84935,0 -6.47872,0.59738 -6.45005,6.42507 v 8.07493 8.07493 c -0.0288,5.82769 0.6007,6.42507 6.45005,6.42507 h 12.0989498 c 5.84937,0 6.45008,-0.5973 6.45008,-6.42507 v -8.07493 l 2e-5,-8.28571 -6.25,-6.21428 z" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient924);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" /> + + + + + + + - + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 16.000488,2 v 28 h 5.80859 c 5.6154,0 6.19141,-0.57631 6.19141,-6.20312 v -7.79688 -8 l -6,-6 z" + id="path1018" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsscccc" /> + + inkscape:connector-curvature="0" + sodipodi:nodetypes="scccssscccsscccscccsscssccccccscs" /> + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/lx03162.svg libreoffice-7.4.7/yaru/src/default/res/lx03162.svg --- libreoffice-7.4.6/yaru/src/default/res/lx03162.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/lx03162.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,18 +1,18 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -26,16 +26,26 @@ + + + + gradientTransform="matrix(0,-0.07466265,0.07508952,0,-8.0927518,34.45455)" + x1="434.68253" + y1="243.53065" + x2="52.965439" + y2="401.42953" /> @@ -56,7 +66,8 @@ y1="134" x2="336" y2="162" - gradientUnits="userSpaceOnUse" /> + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-319.99951,-132)" /> @@ -77,16 +88,6 @@ offset="1" id="stop925" /> - - - + inkscape:current-layer="svg12" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" /> + + + + + + + - - - - - + + + inkscape:connector-curvature="0" + sodipodi:nodetypes="scccssscccsscccscccsscssccccccscs" /> + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/lx03245_32.svg libreoffice-7.4.7/yaru/src/default/res/lx03245_32.svg --- libreoffice-7.4.6/yaru/src/default/res/lx03245_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/lx03245_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + height="32" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -112,30 +112,31 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1016" id="namedview14" showgrid="true" inkscape:zoom="8.4166668" - inkscape:cx="-21.59262" - inkscape:cy="26.530413" + inkscape:cx="8.2574256" + inkscape:cy="14.910891" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg12" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + d="M 11.691406 3 C 10.278998 3 9.1729366 3.034177 8.2734375 3.1855469 C 7.3739384 3.3369167 6.6574682 3.6170424 6.1367188 4.1386719 C 5.6159693 4.6603114 5.3366767 5.3764147 5.1855469 6.2773438 C 5.034397 7.1782828 5 8.2878864 5 9.703125 L 5 16 L 5 22.296875 C 5 23.712104 5.034417 24.821717 5.1855469 25.722656 C 5.3366767 26.623585 5.6159693 27.339699 6.1367188 27.861328 C 6.6574682 28.382958 7.3739384 28.663083 8.2734375 28.814453 C 9.1729366 28.965803 10.278998 29 11.691406 29 L 20.306641 29 C 21.719049 29 22.82901 28.965773 23.730469 28.814453 C 24.631928 28.663133 25.350327 28.382808 25.873047 27.861328 C 26.395756 27.339849 26.676302 26.622352 26.826172 25.720703 C 26.976002 24.819574 27.007 23.711394 27 22.296875 L 27 16 L 27 9.7050781 C 27.003111 9.0686511 26.996106 8.4979328 26.976562 7.9765625 L 22.029297 3.0292969 C 21.509102 3.0080631 20.939999 3 20.306641 3 L 11.691406 3 z " /> diff -Nru libreoffice-7.4.6/yaru/src/default/res/lx03245.svg libreoffice-7.4.7/yaru/src/default/res/lx03245.svg --- libreoffice-7.4.6/yaru/src/default/res/lx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/lx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,18 +1,18 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -89,6 +89,39 @@ x2="516.15179" y2="720.86298" gradientTransform="matrix(0.24507959,0,0,0.2569291,-115.36415,-177.67809)" /> + + + + + + + + + + + + + inkscape:current-layer="svg12" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + id="path19177" + style="color:#000000;fill:#9911aa;stroke-width:2;-inkscape-stroke:none" + d="M 8.8652344 2 C 7.7575794 2 6.9191804 2.0246712 6.2402344 2.1386719 C 5.5805993 2.2493582 5.0966204 2.4529644 4.7675781 2.78125 C 4.4383973 3.1096473 4.2396942 3.5933873 4.1308594 4.2480469 C 4.0184247 4.9241982 3.9949978 5.7608868 4 6.8691406 L 4 6.8730469 L 4 11 L 4 17.128906 L 4 17.130859 C 3.995 18.238771 4.0185902 19.076653 4.1308594 19.751953 C 4.2396939 20.406634 4.4384323 20.890387 4.7675781 21.21875 L 4.7675781 21.220703 C 5.0965294 21.54876 5.5806169 21.750645 6.2402344 21.861328 C 6.9191737 21.975332 7.7575794 22 8.8652344 22 L 12 22 L 15.134766 22 C 16.242421 22 17.080819 21.97533 17.759766 21.861328 C 18.4194 21.750642 18.903378 21.547037 19.232422 21.21875 C 19.561605 20.890351 19.760306 20.406611 19.869141 19.751953 C 19.981575 19.075803 20.005002 18.239114 20 17.130859 L 20 17.126953 L 20 13 L 20 6.8730469 L 20 6.8710938 C 20.001411 6.5580062 20.000583 6.2684343 19.996094 5.9960938 L 16.007812 2.0078125 C 15.73573 2.0024344 15.447239 2 15.134766 2 L 12 2 L 8.8652344 2 z " /> - - - - - + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0a200;fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 11.69095,3.0000001 c -1.412408,0 -2.5184693,0.034177 -3.4179684,0.1855469 -0.8994991,0.1513698 -1.6159693,0.4314955 -2.1367187,0.953125 -0.5207495,0.5216395 -0.8000421,1.2377428 -0.9511719,2.1386719 -0.1511499,0.900939 -0.1855469,2.0105426 -0.1855469,3.4257812 v 6.2968749 6.296875 c 0,1.415229 0.034417,2.524842 0.1855469,3.425781 0.1511298,0.900929 0.4304224,1.617043 0.9511719,2.138672 0.5207494,0.52163 1.2372196,0.801755 2.1367187,0.953125 0.8994991,0.15135 2.0055604,0.185547 3.4179684,0.185547 h 8.615235 c 1.412408,0 2.522369,-0.03423 3.423828,-0.185547 0.901459,-0.15132 1.619858,-0.431645 2.142578,-0.953125 0.522709,-0.521479 0.803255,-1.238976 0.953125,-2.140625 0.14983,-0.901129 0.180828,-2.009309 0.173828,-3.423828 v -6.296875 -6.2949218 c 0.0031,-0.636427 -0.0039,-1.2071453 -0.02344,-1.7285156 l -4.947265,-4.9472656 c -0.520195,-0.021234 -1.089298,-0.029297 -1.722656,-0.029297 z" /> - - - - - + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + id="path19177" + style="color:#000000;fill:#e0a200;stroke-width:2;fill-opacity:1" + d="m 8.865234,1.999951 c -1.107655,0 -1.9460536,0.024671 -2.6249996,0.1386719 -0.6596351,0.1106863 -1.143614,0.3142925 -1.4726563,0.6425781 -0.3291808,0.3283973 -0.5278839,0.8121373 -0.6367187,1.4667969 -0.1124347,0.6761513 -0.1358616,1.5128399 -0.1308594,2.6210937 v 0.00391 4.1269534 6.128906 0.002 c -0.005,1.107912 0.01859,1.945794 0.1308594,2.621094 0.1088345,0.654681 0.3075729,1.138434 0.6367187,1.466797 v 0.002 c 0.3289513,0.328057 0.8130388,0.529942 1.4726563,0.640625 0.6789393,0.114004 1.5173446,0.138672 2.6249996,0.138672 h 3.134766 3.134766 c 1.107655,0 1.946053,-0.02467 2.625,-0.138672 0.659634,-0.110686 1.143612,-0.314291 1.472656,-0.642578 0.329183,-0.328399 0.527884,-0.812139 0.636719,-1.466797 0.112434,-0.67615 0.135861,-1.512839 0.130859,-2.621094 v -0.0039 -4.126953 -6.1269534 -0.00195 c 0.0014,-0.3130876 5.83e-4,-0.6026595 -0.0039,-0.875 l -3.988282,-3.9882813 c -0.272082,-0.00538 -0.560573,-0.00781 -0.873046,-0.00781 h -3.134766 z" /> + height="32" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -23,25 +23,13 @@ image/svg+xml - + - - - - - - - + gradientTransform="translate(-3605,783.63782)" /> + xlink:href="#linearGradient4338" + id="linearGradient1313" + x1="340" + y1="132" + x2="328" + y2="164" + gradientUnits="userSpaceOnUse" /> + id="linearGradient4338"> + + + + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -155,56 +120,29 @@ dotted="true" /> + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#b61629;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 11.69095,3.0000001 c -1.412408,0 -2.5184693,0.034177 -3.4179684,0.1855469 -0.8994991,0.1513698 -1.6159693,0.4314955 -2.1367187,0.953125 -0.5207495,0.5216395 -0.8000421,1.2377428 -0.9511719,2.1386719 -0.1511499,0.900939 -0.1855469,2.0105426 -0.1855469,3.4257812 v 6.2968749 6.296875 c 0,1.415229 0.034417,2.524842 0.1855469,3.425781 0.1511298,0.900929 0.4304224,1.617043 0.9511719,2.138672 0.5207494,0.52163 1.2372196,0.801755 2.1367187,0.953125 0.8994991,0.15135 2.0055604,0.185547 3.4179684,0.185547 h 8.615235 c 1.412408,0 2.522369,-0.03423 3.423828,-0.185547 0.901459,-0.15132 1.619858,-0.431645 2.142578,-0.953125 0.522709,-0.521479 0.803255,-1.238976 0.953125,-2.140625 0.14983,-0.901129 0.180828,-2.009309 0.173828,-3.423828 v -6.296875 -6.2949218 c 0.0031,-0.636427 -0.0039,-1.2071453 -0.02344,-1.7285156 l -4.947265,-4.9472656 c -0.520195,-0.021234 -1.089298,-0.029297 -1.722656,-0.029297 z" /> - - - - - - - - - + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/lx03247.svg libreoffice-7.4.7/yaru/src/default/res/lx03247.svg --- libreoffice-7.4.6/yaru/src/default/res/lx03247.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/lx03247.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,18 +1,18 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -27,26 +27,15 @@ - + id="linearGradient30640"> + id="stop30636" + style="stop-color:#b61629;stop-opacity:1;" + offset="0" /> + id="stop30638" + style="stop-color:#333333;stop-opacity:1" + offset="1" /> @@ -60,16 +49,6 @@ id="stop15610-7" /> - + xlink:href="#linearGradient4338" + id="linearGradient1311" + x1="327.99951" + y1="188" + x2="335.99951" + y2="212" + gradientUnits="userSpaceOnUse" /> + id="linearGradient4338"> + + + + inkscape:current-layer="svg14" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + id="path19177" + style="color:#000000;fill:#b61629;stroke-width:2;fill-opacity:1" + d="m 8.8652344,1.999951 c -1.107655,0 -1.946054,0.024671 -2.625,0.1386719 -0.6596351,0.1106863 -1.143614,0.3142925 -1.4726563,0.6425781 -0.3291808,0.3283973 -0.5278839,0.8121373 -0.6367187,1.4667969 -0.1124347,0.6761513 -0.1358616,1.5128399 -0.1308594,2.6210937 v 0.00391 4.1269534 6.128906 0.002 c -0.005,1.107912 0.01859,1.945794 0.1308594,2.621094 0.1088345,0.654681 0.3075729,1.138434 0.6367187,1.466797 v 0.002 c 0.3289513,0.328057 0.8130388,0.529942 1.4726563,0.640625 0.6789393,0.114004 1.517345,0.138672 2.625,0.138672 h 3.1347656 3.134766 c 1.107655,0 1.946053,-0.02467 2.625,-0.138672 0.659634,-0.110686 1.143612,-0.314291 1.472656,-0.642578 0.329183,-0.328399 0.527884,-0.812139 0.636719,-1.466797 0.112434,-0.67615 0.135861,-1.512839 0.130859,-2.621094 v -0.0039 -4.126953 -6.1269534 -0.00195 c 0.0014,-0.3130876 5.83e-4,-0.6026595 -0.0039,-0.875 l -3.988282,-3.9882813 c -0.272082,-0.00538 -0.560573,-0.00781 -0.873046,-0.00781 h -3.134766 z" /> - - + style="color:#000000;fill:#b61629;stroke-linecap:square;stroke-linejoin:round;-inkscape-stroke:none;fill-opacity:1" + d="M 10.5 10 A 0.50005 0.50005 0 0 0 10.005859 10.429688 L 9.3183594 15.244141 L 8.7265625 13.351562 A 0.50005 0.50005 0 0 0 8.25 13 L 7.5 13 L 7 13 L 7 14 L 7.5 14 L 7.8828125 14 L 9.0234375 17.648438 A 0.50005 0.50005 0 0 0 9.9941406 17.570312 L 10.933594 11 L 16 11 L 16 11.5 L 17 11.5 L 17 11 L 17 10.5 A 0.50005 0.50005 0 0 0 16.5 10 L 10.5 10 z M 12.5 12.792969 L 11.792969 13.5 L 12.146484 13.853516 L 13.292969 15 L 12.146484 16.146484 L 11.792969 16.5 L 12.5 17.207031 L 12.853516 16.853516 L 14 15.707031 L 15.146484 16.853516 L 15.5 17.207031 L 16.207031 16.5 L 15.853516 16.146484 L 14.707031 15 L 15.853516 13.853516 L 16.207031 13.5 L 15.5 12.792969 L 15.146484 13.146484 L 14 14.292969 L 12.853516 13.146484 L 12.5 12.792969 z " /> diff -Nru libreoffice-7.4.6/yaru/src/default/res/lx03248_32.svg libreoffice-7.4.7/yaru/src/default/res/lx03248_32.svg --- libreoffice-7.4.6/yaru/src/default/res/lx03248_32.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/lx03248_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + height="32" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -23,7 +23,7 @@ image/svg+xml - + @@ -31,28 +31,6 @@ id="defs42"> - - - - - + + + + + + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#545454;fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 11.69095,3.0000001 c -1.412408,0 -2.5184693,0.034177 -3.4179684,0.1855469 -0.8994991,0.1513698 -1.6159693,0.4314955 -2.1367187,0.953125 -0.5207495,0.5216395 -0.8000421,1.2377428 -0.9511719,2.1386719 -0.1511499,0.900939 -0.1855469,2.0105426 -0.1855469,3.4257812 v 6.2968749 6.296875 c 0,1.415229 0.034417,2.524842 0.1855469,3.425781 0.1511298,0.900929 0.4304224,1.617043 0.9511719,2.138672 0.5207494,0.52163 1.2372196,0.801755 2.1367187,0.953125 0.8994991,0.15135 2.0055604,0.185547 3.4179684,0.185547 h 8.615235 c 1.412408,0 2.522369,-0.03423 3.423828,-0.185547 0.901459,-0.15132 1.619858,-0.431645 2.142578,-0.953125 0.522709,-0.521479 0.803255,-1.238976 0.953125,-2.140625 0.14983,-0.901129 0.180828,-2.009309 0.173828,-3.423828 v -6.296875 -6.2949218 c 0.0031,-0.636427 -0.0039,-1.2071453 -0.02344,-1.7285156 l -4.947265,-4.9472656 c -0.520195,-0.021234 -1.089298,-0.029297 -1.722656,-0.029297 z" /> + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -27,7 +27,7 @@ + inkscape:current-layer="svg38" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + id="path19177" + style="color:#000000;fill:#545454;stroke-width:2;-inkscape-stroke:none;fill-opacity:1.0" + d="m 8.8652338,1.999956 c -1.107655,0 -1.946054,0.024671 -2.625,0.1386719 -0.659635,0.1106863 -1.143614,0.3142925 -1.4726559,0.6425781 -0.329181,0.3283973 -0.527884,0.8121373 -0.636719,1.4667969 -0.112434,0.6761513 -0.135861,1.5128399 -0.130859,2.6210941 v 0.0039 4.126953 6.128906 0.002 c -0.005,1.107912 0.01859,1.945794 0.130859,2.621094 0.108835,0.654681 0.307573,1.138434 0.636719,1.466797 v 0.002 c 0.3289509,0.328057 0.8130389,0.529942 1.4726559,0.640625 0.67894,0.114004 1.517345,0.138672 2.625,0.138672 h 3.1347662 3.134766 c 1.107655,0 1.946053,-0.02467 2.625,-0.138672 0.659634,-0.110686 1.143612,-0.314291 1.472656,-0.642578 0.329183,-0.328399 0.527884,-0.812139 0.636719,-1.466797 0.112434,-0.67615 0.135861,-1.512839 0.130859,-2.621094 v -0.0039 -4.126953 -6.126953 -0.002 c 0.0014,-0.313088 5.83e-4,-0.60266 -0.0039,-0.8750004 l -3.988282,-3.9882813 c -0.272082,-0.00538 -0.560573,-0.00781 -0.873046,-0.00781 h -3.134766 z" /> - - - - - + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#a33e03;fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 11.69095,3.0000001 c -1.412408,0 -2.5184689,0.034177 -3.4179679,0.1855469 -0.8995,0.1513698 -1.61597,0.4314955 -2.136719,0.953125 -0.52075,0.5216395 -0.800042,1.2377428 -0.951172,2.1386719 -0.15115,0.900939 -0.185547,2.0105426 -0.185547,3.4257812 v 6.2968749 6.296875 c 0,1.415229 0.03442,2.524842 0.185547,3.425781 0.15113,0.900929 0.430422,1.617043 0.951172,2.138672 0.520749,0.52163 1.237219,0.801755 2.136719,0.953125 0.899499,0.15135 2.0055599,0.185547 3.4179679,0.185547 h 8.615235 c 1.412408,0 2.522369,-0.03423 3.423828,-0.185547 0.901459,-0.15132 1.619858,-0.431645 2.142578,-0.953125 0.522709,-0.521479 0.803255,-1.238976 0.953125,-2.140625 0.14983,-0.901129 0.180828,-2.009309 0.173828,-3.423828 v -6.296875 -6.2949218 c 0.0031,-0.636427 -0.0039,-1.2071453 -0.02344,-1.7285156 l -4.947265,-4.9472656 c -0.520195,-0.021234 -1.089298,-0.029297 -1.722656,-0.029297 z" /> - + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + id="path19177" + style="color:#000000;fill:#a33e03;stroke-width:2;fill-opacity:1.0" + d="m 8.8652344,1.999951 c -1.107655,0 -1.946054,0.024671 -2.625,0.1386719 -0.6596351,0.1106863 -1.143614,0.3142925 -1.4726563,0.6425781 -0.3291808,0.3283973 -0.5278839,0.8121373 -0.6367187,1.4667969 -0.1124347,0.6761513 -0.1358616,1.5128399 -0.1308594,2.6210937 v 0.00391 4.1269534 6.128906 0.002 c -0.005,1.107912 0.01859,1.945794 0.1308594,2.621094 0.1088345,0.654681 0.3075729,1.138434 0.6367187,1.466797 v 0.002 c 0.3289513,0.328057 0.8130388,0.529942 1.4726563,0.640625 0.6789393,0.114004 1.517345,0.138672 2.625,0.138672 h 3.1347656 3.134766 c 1.107655,0 1.946053,-0.02467 2.625,-0.138672 0.659634,-0.110686 1.143612,-0.314291 1.472656,-0.642578 0.329183,-0.328399 0.527884,-0.812139 0.636719,-1.466797 0.112434,-0.67615 0.135861,-1.512839 0.130859,-2.621094 v -0.0039 -4.126953 -6.1269534 -0.00195 c 0.0014,-0.3130876 5.83e-4,-0.6026595 -0.0039,-0.875 l -3.988282,-3.9882813 c -0.272082,-0.00538 -0.560573,-0.00781 -0.873046,-0.00781 h -3.134766 z" /> - - - - - @@ -116,6 +94,28 @@ inkscape:connector-curvature="0" sodipodi:nodetypes="scccssscsss" /> + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e851b;fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 11.69095,3.0000001 c -1.412408,0 -2.5184693,0.034177 -3.4179684,0.1855469 -0.8994991,0.1513698 -1.6159693,0.4314955 -2.1367187,0.953125 -0.5207495,0.5216395 -0.8000421,1.2377428 -0.9511719,2.1386719 -0.1511499,0.900939 -0.1855469,2.0105426 -0.1855469,3.4257812 v 6.2968749 6.296875 c 0,1.415229 0.034417,2.524842 0.1855469,3.425781 0.1511298,0.900929 0.4304224,1.617043 0.9511719,2.138672 0.5207494,0.52163 1.2372196,0.801755 2.1367187,0.953125 0.8994991,0.15135 2.0055604,0.185547 3.4179684,0.185547 h 8.615235 c 1.412408,0 2.522369,-0.03423 3.423828,-0.185547 0.901459,-0.15132 1.619858,-0.431645 2.142578,-0.953125 0.522709,-0.521479 0.803255,-1.238976 0.953125,-2.140625 0.14983,-0.901129 0.180828,-2.009309 0.173828,-3.423828 v -6.296875 -6.2949218 c 0.0031,-0.636427 -0.0039,-1.2071453 -0.02344,-1.7285156 l -4.947265,-4.9472656 c -0.520195,-0.021234 -1.089298,-0.029297 -1.722656,-0.029297 z" /> - - - - - + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + id="path19177" + style="color:#000000;fill:#2e851b;stroke-width:2;-inkscape-stroke:none;fill-opacity:1.0" + d="m 8.865234,1.999951 c -1.107655,0 -1.9460536,0.024671 -2.6249996,0.1386719 -0.6596351,0.1106863 -1.143614,0.3142925 -1.4726563,0.6425781 -0.3291808,0.3283973 -0.5278839,0.8121373 -0.6367187,1.4667969 -0.1124347,0.6761513 -0.1358616,1.5128399 -0.1308594,2.6210937 v 0.00391 4.1269534 6.128906 0.002 c -0.005,1.107912 0.01859,1.945794 0.1308594,2.621094 0.1088345,0.654681 0.3075729,1.138434 0.6367187,1.466797 v 0.002 c 0.3289513,0.328057 0.8130388,0.529942 1.4726563,0.640625 0.6789393,0.114004 1.5173446,0.138672 2.6249996,0.138672 h 3.134766 3.134766 c 1.107655,0 1.946053,-0.02467 2.625,-0.138672 0.659634,-0.110686 1.143612,-0.314291 1.472656,-0.642578 0.329183,-0.328399 0.527884,-0.812139 0.636719,-1.466797 0.112434,-0.67615 0.135861,-1.512839 0.130859,-2.621094 v -0.0039 -4.126953 -6.1269534 -0.00195 c 0.0014,-0.3130876 5.83e-4,-0.6026595 -0.0039,-0.875 l -3.988282,-3.9882813 c -0.272082,-0.00538 -0.560573,-0.00781 -0.873046,-0.00781 h -3.134766 z" /> - - - - - + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#0369a3;fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 11.69095,3.0000001 c -1.412408,0 -2.5184689,0.034177 -3.4179689,0.1855469 -0.899499,0.1513698 -1.615969,0.4314955 -2.136718,0.953125 -0.52075,0.5216394 -0.800042,1.2377428 -0.951172,2.1386718 -0.15115,0.9009391 -0.185547,2.0105427 -0.185547,3.4257813 v 6.2968749 6.296875 c 0,1.415229 0.03442,2.524842 0.185547,3.425781 0.15113,0.900929 0.430422,1.617043 0.951172,2.138672 0.520749,0.52163 1.237219,0.801755 2.136718,0.953125 0.8995,0.15135 2.0055609,0.185547 3.4179689,0.185547 h 8.615235 c 1.412408,0 2.522369,-0.03423 3.423828,-0.185547 0.901459,-0.15132 1.619858,-0.431645 2.142578,-0.953125 0.522709,-0.521479 0.803255,-1.238976 0.953125,-2.140625 0.14983,-0.901129 0.180828,-2.009309 0.173828,-3.423828 v -6.296875 -6.2949218 c 0.0031,-0.636427 -0.0039,-1.2071453 -0.02344,-1.7285156 l -4.947265,-4.9472656 c -0.520195,-0.021234 -1.089298,-0.029297 -1.722656,-0.029297 z" /> - - - - - + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + id="path19177" + style="color:#000000;fill:#0369a3;stroke-width:2;-inkscape-stroke:none;fill-opacity:1.0" + d="m 8.865234,1.999951 c -1.107655,0 -1.946054,0.024671 -2.625,0.1386719 -0.659635,0.1106863 -1.143614,0.3142925 -1.472656,0.6425781 -0.329181,0.3283973 -0.527884,0.8121373 -0.636719,1.4667969 -0.112434,0.6761513 -0.135861,1.5128399 -0.130859,2.6210937 v 0.00391 4.1269534 6.128906 0.002 c -0.005,1.107912 0.01859,1.945794 0.130859,2.621094 0.108835,0.654681 0.307573,1.138434 0.636719,1.466797 v 0.002 c 0.328951,0.328057 0.813039,0.529942 1.472656,0.640625 0.67894,0.114004 1.517345,0.138672 2.625,0.138672 h 3.134766 3.134766 c 1.107655,0 1.946053,-0.02467 2.625,-0.138672 0.659634,-0.110686 1.143612,-0.314291 1.472656,-0.642578 0.329183,-0.328399 0.527884,-0.812139 0.636719,-1.466797 0.112434,-0.67615 0.135861,-1.512839 0.130859,-2.621094 v -0.0039 -4.126953 -6.1269534 -0.00195 c 0.0014,-0.3130876 5.83e-4,-0.6026595 -0.0039,-0.875 l -3.988282,-3.9882813 c -0.272082,-0.00538 -0.560573,-0.00781 -0.873046,-0.00781 h -3.134766 z" /> + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> @@ -236,15 +238,13 @@ x="3" y="24" /> + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#a33e03;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 11.69095,3.0000001 c -1.412408,0 -2.5184688,0.034177 -3.4179678,0.1855469 -0.8995,0.1513698 -1.61597,0.4314955 -2.136719,0.953125 -0.52075,0.5216395 -0.800042,1.2377428 -0.951172,2.1386719 -0.15115,0.900939 -0.185547,2.0105426 -0.185547,3.4257812 v 6.2968749 6.296875 c 0,1.415229 0.03442,2.524842 0.185547,3.425781 0.15113,0.900929 0.430422,1.617043 0.951172,2.138672 0.520749,0.52163 1.237219,0.801755 2.136719,0.953125 0.899499,0.15135 2.0055598,0.185547 3.4179678,0.185547 h 8.615235 c 1.412408,0 2.522369,-0.03423 3.423828,-0.185547 0.901459,-0.15132 1.619858,-0.431645 2.142578,-0.953125 0.522709,-0.521479 0.803255,-1.238976 0.953125,-2.140625 0.14983,-0.901129 0.180828,-2.009309 0.173828,-3.423828 v -6.296875 -6.2949218 c 0.0031,-0.636427 -0.0039,-1.2071453 -0.02344,-1.7285156 l -4.947265,-4.9472656 c -0.520195,-0.021234 -1.089298,-0.029297 -1.722656,-0.029297 z" /> + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient1313);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 11.193359 5 C 9.8213109 5 8.8152131 5.0445007 8.1835938 5.1503906 C 8.1090564 5.1629025 8.0613749 5.176526 8 5.1894531 L 8 26.810547 C 8.0613755 26.823472 8.1090552 26.837097 8.1835938 26.849609 C 8.8153431 26.955699 9.8213409 27 11.193359 27 L 20.808594 27 C 22.180652 27 23.182921 26.955499 23.8125 26.849609 C 24.428499 26.745949 24.56685 26.622603 24.59375 26.595703 C 24.62205 26.567403 24.745859 26.427093 24.849609 25.808594 C 24.955599 25.176594 25 24.171554 25 22.796875 L 25 15 L 25 10 C 20.000005 10 19.829841 10.241844 20 5 L 11.193359 5 z " /> + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> @@ -184,15 +186,13 @@ x="3" y="24" /> + d="m 11.69095,3.0000001 c -1.412408,0 -2.5184692,0.034177 -3.4179683,0.1855469 -0.8994991,0.1513698 -1.6159693,0.4314955 -2.1367187,0.953125 -0.5207495,0.5216395 -0.8000421,1.2377428 -0.9511719,2.1386719 -0.1511499,0.900939 -0.1855469,2.0105426 -0.1855469,3.4257812 v 6.2968749 6.296875 c 0,1.415229 0.034417,2.524842 0.1855469,3.425781 0.1511298,0.900929 0.4304224,1.617043 0.9511719,2.138672 0.5207494,0.52163 1.2372196,0.801755 2.1367187,0.953125 0.8994991,0.15135 2.0055603,0.185547 3.4179683,0.185547 h 8.615235 c 1.412408,0 2.522369,-0.03423 3.423828,-0.185547 0.901459,-0.15132 1.619858,-0.431645 2.142578,-0.953125 0.522709,-0.521479 0.803255,-1.238976 0.953125,-2.140625 0.14983,-0.901129 0.180828,-2.009309 0.173828,-3.423828 v -6.296875 -6.2949218 c 0.0031,-0.636427 -0.0039,-1.2071453 -0.02344,-1.7285156 l -4.947265,-4.9472656 c -0.520195,-0.021234 -1.089298,-0.029297 -1.722656,-0.029297 z" /> + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient1313);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 11.193359 5 C 9.8213111 5 8.8152131 5.0445007 8.1835938 5.1503906 C 8.1090564 5.1629025 8.0613749 5.176526 8 5.1894531 L 8 26.810547 C 8.0613755 26.823472 8.1090552 26.837097 8.1835938 26.849609 C 8.8153431 26.955699 9.8213411 27 11.193359 27 L 20.808594 27 C 22.180652 27 23.182921 26.955499 23.8125 26.849609 C 24.428499 26.745949 24.56685 26.622603 24.59375 26.595703 C 24.62205 26.567403 24.745859 26.427093 24.849609 25.808594 C 24.955599 25.176594 25 24.171554 25 22.796875 L 25 15 L 25 10 C 20.000005 10 19.829841 10.241844 20 5 L 11.193359 5 z " /> + + + + - - - - + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> @@ -252,15 +254,13 @@ x="3" y="24" /> + d="m 11.69095,3.0000001 c -1.412408,0 -2.5184688,0.034177 -3.4179688,0.1855469 -0.899499,0.1513698 -1.615969,0.4314955 -2.136718,0.953125 -0.52075,0.5216394 -0.800042,1.2377428 -0.951172,2.1386718 -0.15115,0.9009391 -0.185547,2.0105427 -0.185547,3.4257813 v 6.2968749 6.296875 c 0,1.415229 0.03442,2.524842 0.185547,3.425781 0.15113,0.900929 0.430422,1.617043 0.951172,2.138672 0.520749,0.52163 1.237219,0.801755 2.136718,0.953125 0.8995,0.15135 2.0055608,0.185547 3.4179688,0.185547 h 8.615235 c 1.412408,0 2.522369,-0.03423 3.423828,-0.185547 0.901459,-0.15132 1.619858,-0.431645 2.142578,-0.953125 0.522709,-0.521479 0.803255,-1.238976 0.953125,-2.140625 0.14983,-0.901129 0.180828,-2.009309 0.173828,-3.423828 v -6.296875 -6.2949218 c 0.0031,-0.636427 -0.0039,-1.2071453 -0.02344,-1.7285156 l -4.947265,-4.9472656 c -0.520195,-0.021234 -1.089298,-0.029297 -1.722656,-0.029297 z" /> + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient1313);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 11.193359 5 C 9.8213109 5 8.8152131 5.0445007 8.1835938 5.1503906 C 8.1090564 5.1629025 8.0613749 5.176526 8 5.1894531 L 8 26.810547 C 8.0613755 26.823472 8.1090552 26.837097 8.1835938 26.849609 C 8.8153431 26.955699 9.8213409 27 11.193359 27 L 20.808594 27 C 22.180652 27 23.182921 26.955499 23.8125 26.849609 C 24.428499 26.745949 24.56685 26.622603 24.59375 26.595703 C 24.62205 26.567403 24.745859 26.427093 24.849609 25.808594 C 24.955599 25.176594 25 24.171554 25 22.796875 L 25 15 L 25 10 C 20.000005 10 19.829841 10.241844 20 5 L 11.193359 5 z " /> + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -25,80 +25,91 @@ image/svg+xml + + + + - + id="linearGradient14494"> + id="stop14496" + style="stop-color:#dc85e9;stop-opacity:1" + offset="0" /> + id="stop14498" + style="stop-color:#f2cbf8;stop-opacity:1" + offset="1" /> - + id="linearGradient19927"> + style="stop-color:#c04fba;stop-opacity:1" + id="stop19923" /> + style="stop-color:#9911aa;stop-opacity:1" + id="stop19925" /> + id="filter6668" + x="-0.054545035" + width="1.1090901" + y="-0.043243822" + height="1.0864876"> + stdDeviation="4.000054" + id="feGaussianBlur6670" /> + id="filter6646" + x="-0.013636259" + width="1.0272725" + y="-0.010762476" + height="1.021525"> + stdDeviation="1.0000135" + id="feGaussianBlur6648" /> + + + + + + inkscape:current-layer="svg29" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + + + x1="24" + x2="24" + y1="32" + y2="16"> + x1="400.57144" + x2="416.57141" + y1="515.79797" + y2="531.79797"> + transform="matrix(0.5,0,0,0.5,-7,53.5)" /> + transform="matrix(0.5,0,0,0.5,-7,53.5)" /> - + d="m 39.46094,8 c -6.066628,0 -10.262462,0.214404 -13.156253,1.213867 -1.051791,0.363296 -1.931754,0.830542 -2.666992,1.428711 -3.49e-4,2.84e-4 -6.5e-4,7e-4 -9.99e-4,10e-4 -0.551123,0.448732 -1.021811,0.97128 -1.421875,1.579101 -0.127681,0.193985 -0.246509,0.39861 -0.360353,0.610353 -0.02871,0.05339 -0.05515,0.110488 -0.08301,0.165038 -0.08026,0.157174 -0.158045,0.317386 -0.231446,0.484375 -0.03656,0.08318 -0.07055,0.170191 -0.105468,0.255859 -0.0605,0.14845 -0.120087,0.299009 -0.175782,0.455079 -0.03536,0.0991 -0.06905,0.200504 -0.102538,0.302734 -0.04985,0.152152 -0.09774,0.307574 -0.143555,0.466797 -0.03006,0.104463 -0.05951,0.20982 -0.08789,0.317383 -0.0466,0.17661 -0.09058,0.358822 -0.132813,0.543945 -0.02383,0.104475 -0.04782,0.207219 -0.07031,0.314453 -0.04065,0.193766 -0.07783,0.395693 -0.114257,0.598633 -0.019,0.105855 -0.04071,0.208013 -0.05859,0.316406 -0.05164,0.312762 -0.0987,0.634374 -0.141602,0.96875 -4.2e-5,3.3e-4 4.3e-5,6.5e-4 0,0.001 -0.04212,0.32836 -0.07988,0.669654 -0.114257,1.019532 -0.01392,0.141706 -0.02537,0.291211 -0.03809,0.436523 -0.01906,0.217647 -0.0372,0.436247 -0.05371,0.66211 -0.04083,0.558486 -0.07183,1.151409 -0.09863,1.761719 -0.0252,0.57327 -0.04288,1.183751 -0.05762,1.804687 -0.0069,0.29037 -0.01756,0.562186 -0.02246,0.863281 -0.01514,0.926871 -0.02246,1.893557 -0.02246,2.925782 v 36.502927 36.502925 c 0,1.03223 0.0073,1.99892 0.02246,2.92578 0.0049,0.3011 0.01557,0.57292 0.02246,0.86329 0.01475,0.62094 0.03242,1.23142 0.05762,1.80468 0.0268,0.61032 0.0578,1.20323 0.09863,1.76173 0.01651,0.22586 0.03465,0.44445 0.05371,0.66211 0.01272,0.1453 0.02417,0.29481 0.03809,0.43652 0.03437,0.34988 0.07214,0.69117 0.114257,1.01953 4e-5,3.1e-4 -4e-5,4.9e-4 0,9.9e-4 0.0429,0.33438 0.08997,0.656 0.141602,0.96875 0.01789,0.1084 0.0396,0.21055 0.05859,0.31641 0.03642,0.20294 0.07361,0.40487 0.114257,0.59864 0.02249,0.10723 0.04648,0.20997 0.07031,0.31444 0.04223,0.18513 0.08621,0.36734 0.132813,0.54395 0.02838,0.10756 0.05783,0.21292 0.08789,0.31739 0.04582,0.15922 0.09371,0.31464 0.143555,0.46679 0.03348,0.10223 0.06718,0.20364 0.102538,0.30273 0.0557,0.15607 0.11528,0.30664 0.175782,0.45509 0.03491,0.0857 0.0689,0.17268 0.105468,0.25586 0.0734,0.16698 0.151183,0.32719 0.231446,0.48437 0.02786,0.0545 0.0543,0.11164 0.08301,0.16504 0.113844,0.21174 0.232673,0.41637 0.360353,0.61035 0.266882,0.40548 0.565061,0.7725 0.89746,1.10547 0.166199,0.16648 0.340552,0.32398 0.524415,0.47363 3.57e-4,2.9e-4 5.99e-4,5e-4 9.99e-4,0.001 0.735238,0.59817 1.615201,1.06541 2.666992,1.42872 2.893791,0.99946 7.089625,1.21386 13.156253,1.21386 h 49.07812 c 1.02864,0 1.99264,-0.007 2.917,-0.0225 0.006,-10e-5 0.0109,1e-4 0.0166,0 0.32272,-0.005 0.61954,-0.0177 0.93066,-0.0254 0.22853,-0.006 0.44267,-0.014 0.66797,-0.0205 0.33688,-0.0106 0.68965,-0.0182 1.01172,-0.0322 0.004,-1.5e-4 0.006,-0.001 0.01,-0.001 0.62635,-0.0273 1.23735,-0.0585 1.80957,-0.10059 0.005,-3.7e-4 0.01,-5e-4 0.0146,-0.001 0.23695,-0.0175 0.46739,-0.0373 0.69531,-0.0576 0.005,-4.9e-4 0.0111,-5e-4 0.0166,-10e-4 0.10518,-0.009 0.2136,-0.0183 0.31641,-0.0283 0.36379,-0.0354 0.71786,-0.0734 1.05859,-0.11719 0.33418,-0.0429 0.65509,-0.0909 0.96778,-0.14257 0.001,-1.7e-4 0.002,-0.001 0.003,-0.001 0.10984,-0.0182 0.21395,-0.0393 0.32129,-0.0586 0.19824,-0.0357 0.39544,-0.0716 0.58496,-0.11133 0.11926,-0.025 0.23395,-0.0524 0.34961,-0.0791 0.005,-10e-4 0.01,-0.002 0.0147,-0.003 0.15975,-0.0368 0.31828,-0.0751 0.47168,-0.11524 0.12613,-0.033 0.24923,-0.0672 0.37109,-0.10254 0.003,-0.001 0.006,-0.002 0.01,-0.003 0.14175,-0.0412 0.28086,-0.0846 0.417,-0.1289 0.11354,-0.037 0.22622,-0.075 0.33593,-0.11426 0.0748,-0.0268 0.14597,-0.0561 0.21875,-0.084 0.0662,-0.0252 0.1335,-0.049 0.19825,-0.0752 0.006,-0.002 0.011,-0.004 0.0166,-0.007 0.0926,-0.0374 0.18593,-0.0748 0.27539,-0.11426 0.0837,-0.0369 0.16276,-0.0771 0.24317,-0.11621 0.0521,-0.0248 0.10513,-0.0487 0.15625,-0.0742 0.004,-0.002 0.007,-0.004 0.0108,-0.006 0.0835,-0.0414 0.16942,-0.0815 0.25,-0.125 2.4e-4,-1.3e-4 5e-4,1.4e-4 0.001,0 0.20483,-0.1108 0.40261,-0.22679 0.59082,-0.35059 0.39013,-0.25662 0.74334,-0.54334 1.0664,-0.86035 5e-4,-5e-4 0.001,-0.001 0.002,-0.002 0.0356,-0.035 0.0697,-0.0716 0.10449,-0.10743 0.001,-10e-4 0.002,-0.002 0.003,-0.003 0.11481,-0.11799 0.22548,-0.24056 0.33203,-0.36718 0.0385,-0.0458 0.0778,-0.0908 0.11524,-0.1377 0.27055,-0.33886 0.51382,-0.70838 0.73242,-1.11035 0.0276,-0.0508 0.0542,-0.10345 0.081,-0.15528 0.0793,-0.15321 0.1549,-0.31104 0.22754,-0.47363 0.0304,-0.068 0.0615,-0.13544 0.0908,-0.20507 2.8e-4,-5e-4 5e-4,-0.002 10e-4,-0.002 0.091,-0.2168 0.1784,-0.43946 0.25879,-0.67286 0.0802,-0.23292 0.15336,-0.47747 0.22363,-0.72753 2.8e-4,-0.001 5e-4,-0.002 0.001,-0.003 0.0201,-0.0716 0.0393,-0.14471 0.0586,-0.21777 0.018,-0.068 0.0339,-0.13951 0.0508,-0.20997 0.0137,-0.0549 0.0277,-0.11036 0.041,-0.16601 3e-4,-0.002 5e-4,-0.003 0.001,-0.004 0.0716,-0.29969 0.13717,-0.61135 0.19726,-0.93457 0.0129,-0.0695 0.0262,-0.13821 0.0391,-0.20801 0.003,-0.0167 0.007,-0.0321 0.01,-0.0488 6e-5,-3.1e-4 -5e-5,-5e-4 0,-0.001 0.0703,-0.40527 0.13378,-0.82687 0.18848,-1.26954 0.003,-0.0239 0.005,-0.0495 0.008,-0.0742 0.008,-0.0654 0.0148,-0.13489 0.0225,-0.20118 0.001,-0.01 0.002,-0.0211 0.003,-0.0312 0.0395,-0.34654 0.0751,-0.70358 0.10645,-1.07324 2.7e-4,-0.003 5e-4,-0.007 10e-4,-0.01 0.0127,-0.15093 0.0246,-0.30413 0.0361,-0.45899 0.0285,-0.3842 0.053,-0.78149 0.0742,-1.19043 0.004,-0.078 0.009,-0.15531 0.0137,-0.23242 0.002,-0.0499 0.005,-0.0962 0.008,-0.14649 2e-4,-0.005 -1.9e-4,-0.009 0,-0.0136 0.003,-0.0643 0.005,-0.13315 0.007,-0.19824 2.5e-4,-0.006 5e-4,-0.0127 0.001,-0.0185 0.0311,-0.73154 0.0512,-1.50992 0.0644,-2.32032 9e-5,-0.005 -9e-5,-0.0111 0,-0.0166 0.004,-0.20407 0.006,-0.41195 0.009,-0.62109 0.01,-0.88682 0.0145,-1.8028 0.01,-2.78516 v -51.38281 c -0.004,-0.912455 -0.15043,-1.79855 -0.40722,-2.65625 -0.1712,-0.571795 -0.39142,-1.13053 -0.65137,-1.676755 -1.42972,-3.004245 -4.05948,-5.614565 -6.32227,-7.74805 l -0.0244,-0.0254 -20.261715,-21.204097 c -5.338475,-5.280565 -9.02891,-7.809571 -16.33301,-7.809571 z m 49.86621,0.04492 c -2.23731,0.7462 -2.99531,4.288299 -1.27051,5.956054 l 14.24805,15.19336 c 1.86677,1.852815 5.58064,0.276482 5.69335,-2.410157 10e-4,-0.957428 -0.005,-1.863264 -0.0196,-2.726562 -0.001,-0.0834 -0.004,-0.159639 -0.006,-0.242188 -0.0148,-0.778561 -0.0362,-1.523912 -0.0684,-2.228515 -0.0236,-0.516048 -0.0524,-1.012242 -0.0869,-1.490235 -0.57649,-7.972831 -2.77413,-10.76844 -9.83105,-11.680664 -0.64838,-0.08381 -1.3374,-0.151366 -2.07031,-0.206054 -0.35478,-0.02647 -0.72123,-0.04977 -1.09668,-0.07031 -0.004,-2.34e-4 -0.009,-7.49e-4 -0.0136,-0.001 -0.78398,-0.0425 -1.6124,-0.07293 -2.49024,-0.09375 z" + id="rect4158-92-3" + sodipodi:nodetypes="scscsssssscssssscscssscscscsssssssscsssssssssssssssccssscscscscssssscssscsscsscssscscscsscscscsssscsssscscscscscscscsscssscsscccsscccssccccssccsssccc" /> + - diff -Nru libreoffice-7.4.6/yaru/src/default/res/mainapp_16.svg libreoffice-7.4.7/yaru/src/default/res/mainapp_16.svg --- libreoffice-7.4.6/yaru/src/default/res/mainapp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/mainapp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,181 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/mainapp_32.svg libreoffice-7.4.7/yaru/src/default/res/mainapp_32.svg --- libreoffice-7.4.6/yaru/src/default/res/mainapp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/mainapp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,223 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/mainapp_48_8.svg libreoffice-7.4.7/yaru/src/default/res/mainapp_48_8.svg --- libreoffice-7.4.6/yaru/src/default/res/mainapp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/mainapp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,185 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/mainapp_48.svg libreoffice-7.4.7/yaru/src/default/res/mainapp_48.svg --- libreoffice-7.4.6/yaru/src/default/res/mainapp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/mainapp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,183 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/math128.svg libreoffice-7.4.7/yaru/src/default/res/math128.svg --- libreoffice-7.4.6/yaru/src/default/res/math128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/math128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,22 +1,22 @@ + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -31,16 +31,6 @@ - - - - - + + + + + + + gradientTransform="matrix(0,-0.2265625,-0.22655602,0,126.9815,120.00008)" /> @@ -134,41 +111,33 @@ offset="1" id="stop4342" /> - - - - - - + gradientTransform="matrix(0.5,0,0,0.5,-11.999935,-13.999926)" /> + + + + + inkscape:current-layer="svg29" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" /> + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;font-family:Vegur;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;enable-background:new" + id="g8473-0" + transform="matrix(3.760275,0,0,3.760275,-13919.994,-2539.8305)"> + d="m 3725.0541,691.79021 v 1.99453 h -0.9972 v -0.93078 h -6.1831 l -1.3962,8.24407 h -1.5956 l -1.3297,-4.18852 h -0.7979 v -1.13024 l 1.6622,2e-5 1.1634,3.32421 1.1635,-7.3133" + style="font-family:Symbol;fill:#ffffff;fill-opacity:1" + id="path8475-6" + sodipodi:nodetypes="ccccccccccccc" /> + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odb_16_8.svg libreoffice-7.4.7/yaru/src/default/res/odb_16_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odb_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odb_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,191 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odb_16.svg libreoffice-7.4.7/yaru/src/default/res/odb_16.svg --- libreoffice-7.4.6/yaru/src/default/res/odb_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odb_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,222 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odb_32_8.svg libreoffice-7.4.7/yaru/src/default/res/odb_32_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odb_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odb_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,315 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odb_32.svg libreoffice-7.4.7/yaru/src/default/res/odb_32.svg --- libreoffice-7.4.6/yaru/src/default/res/odb_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odb_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,336 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odb_48_8.svg libreoffice-7.4.7/yaru/src/default/res/odb_48_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odb_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odb_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,246 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odb_48.svg libreoffice-7.4.7/yaru/src/default/res/odb_48.svg --- libreoffice-7.4.6/yaru/src/default/res/odb_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odb_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,273 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odf_16_8.svg libreoffice-7.4.7/yaru/src/default/res/odf_16_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odf_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odf_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,237 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odf_16.svg libreoffice-7.4.7/yaru/src/default/res/odf_16.svg --- libreoffice-7.4.6/yaru/src/default/res/odf_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odf_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,260 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odf_32_8.svg libreoffice-7.4.7/yaru/src/default/res/odf_32_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odf_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odf_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,340 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odf_32.svg libreoffice-7.4.7/yaru/src/default/res/odf_32.svg --- libreoffice-7.4.6/yaru/src/default/res/odf_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odf_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,323 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odf_48_8.svg libreoffice-7.4.7/yaru/src/default/res/odf_48_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odf_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odf_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,270 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odf_48.svg libreoffice-7.4.7/yaru/src/default/res/odf_48.svg --- libreoffice-7.4.6/yaru/src/default/res/odf_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odf_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,259 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odg_16_8.svg libreoffice-7.4.7/yaru/src/default/res/odg_16_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odg_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odg_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,242 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odg_16.svg libreoffice-7.4.7/yaru/src/default/res/odg_16.svg --- libreoffice-7.4.6/yaru/src/default/res/odg_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odg_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,286 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odg_32_8.svg libreoffice-7.4.7/yaru/src/default/res/odg_32_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odg_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odg_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,330 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odg_32.svg libreoffice-7.4.7/yaru/src/default/res/odg_32.svg --- libreoffice-7.4.6/yaru/src/default/res/odg_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odg_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,366 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odg_48_8.svg libreoffice-7.4.7/yaru/src/default/res/odg_48_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odg_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odg_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,305 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odg_48.svg libreoffice-7.4.7/yaru/src/default/res/odg_48.svg --- libreoffice-7.4.6/yaru/src/default/res/odg_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odg_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,373 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odm_16_8.svg libreoffice-7.4.7/yaru/src/default/res/odm_16_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odm_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odm_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,175 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odm_16.svg libreoffice-7.4.7/yaru/src/default/res/odm_16.svg --- libreoffice-7.4.6/yaru/src/default/res/odm_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odm_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,210 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odm_32_8.svg libreoffice-7.4.7/yaru/src/default/res/odm_32_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odm_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odm_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,616 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odm_32.svg libreoffice-7.4.7/yaru/src/default/res/odm_32.svg --- libreoffice-7.4.6/yaru/src/default/res/odm_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odm_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,507 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odm_48_8.svg libreoffice-7.4.7/yaru/src/default/res/odm_48_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odm_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odm_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,1568 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odm_48.svg libreoffice-7.4.7/yaru/src/default/res/odm_48.svg --- libreoffice-7.4.6/yaru/src/default/res/odm_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odm_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,1609 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odp_16_8.svg libreoffice-7.4.7/yaru/src/default/res/odp_16_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odp_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odp_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,351 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odp_16.svg libreoffice-7.4.7/yaru/src/default/res/odp_16.svg --- libreoffice-7.4.6/yaru/src/default/res/odp_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odp_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,374 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odp_32_8.svg libreoffice-7.4.7/yaru/src/default/res/odp_32_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odp_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odp_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,354 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odp_32.svg libreoffice-7.4.7/yaru/src/default/res/odp_32.svg --- libreoffice-7.4.6/yaru/src/default/res/odp_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odp_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,422 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odp_48_8.svg libreoffice-7.4.7/yaru/src/default/res/odp_48_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odp_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odp_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,450 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odp_48.svg libreoffice-7.4.7/yaru/src/default/res/odp_48.svg --- libreoffice-7.4.6/yaru/src/default/res/odp_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odp_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,504 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/ods_16_8.svg libreoffice-7.4.7/yaru/src/default/res/ods_16_8.svg --- libreoffice-7.4.6/yaru/src/default/res/ods_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ods_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,205 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/ods_16.svg libreoffice-7.4.7/yaru/src/default/res/ods_16.svg --- libreoffice-7.4.6/yaru/src/default/res/ods_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ods_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,239 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/ods_32_8.svg libreoffice-7.4.7/yaru/src/default/res/ods_32_8.svg --- libreoffice-7.4.6/yaru/src/default/res/ods_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ods_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,326 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/ods_32.svg libreoffice-7.4.7/yaru/src/default/res/ods_32.svg --- libreoffice-7.4.6/yaru/src/default/res/ods_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ods_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,360 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/ods_48_8.svg libreoffice-7.4.7/yaru/src/default/res/ods_48_8.svg --- libreoffice-7.4.6/yaru/src/default/res/ods_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ods_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,298 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/ods_48.svg libreoffice-7.4.7/yaru/src/default/res/ods_48.svg --- libreoffice-7.4.6/yaru/src/default/res/ods_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ods_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,338 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odt_16_8.svg libreoffice-7.4.7/yaru/src/default/res/odt_16_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odt_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odt_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,198 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odt_16.svg libreoffice-7.4.7/yaru/src/default/res/odt_16.svg --- libreoffice-7.4.6/yaru/src/default/res/odt_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odt_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,227 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odt_32_8.svg libreoffice-7.4.7/yaru/src/default/res/odt_32_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odt_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odt_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,334 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odt_32.svg libreoffice-7.4.7/yaru/src/default/res/odt_32.svg --- libreoffice-7.4.6/yaru/src/default/res/odt_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odt_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,369 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/odt_48_8.svg libreoffice-7.4.7/yaru/src/default/res/odt_48_8.svg --- libreoffice-7.4.6/yaru/src/default/res/odt_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odt_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,254 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/odt_48.svg libreoffice-7.4.7/yaru/src/default/res/odt_48.svg --- libreoffice-7.4.6/yaru/src/default/res/odt_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/odt_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,312 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/ots_16_8.svg libreoffice-7.4.7/yaru/src/default/res/ots_16_8.svg --- libreoffice-7.4.6/yaru/src/default/res/ots_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ots_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,290 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/ots_16.svg libreoffice-7.4.7/yaru/src/default/res/ots_16.svg --- libreoffice-7.4.6/yaru/src/default/res/ots_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ots_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,328 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/ots_32_8.svg libreoffice-7.4.7/yaru/src/default/res/ots_32_8.svg --- libreoffice-7.4.6/yaru/src/default/res/ots_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ots_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,403 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/ots_32.svg libreoffice-7.4.7/yaru/src/default/res/ots_32.svg --- libreoffice-7.4.6/yaru/src/default/res/ots_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ots_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,445 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/ots_48_8.svg libreoffice-7.4.7/yaru/src/default/res/ots_48_8.svg --- libreoffice-7.4.6/yaru/src/default/res/ots_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ots_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,526 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/ots_48.svg libreoffice-7.4.7/yaru/src/default/res/ots_48.svg --- libreoffice-7.4.6/yaru/src/default/res/ots_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ots_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,505 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/ott_16_8.svg libreoffice-7.4.7/yaru/src/default/res/ott_16_8.svg --- libreoffice-7.4.6/yaru/src/default/res/ott_16_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ott_16_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,275 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/ott_16.svg libreoffice-7.4.7/yaru/src/default/res/ott_16.svg --- libreoffice-7.4.6/yaru/src/default/res/ott_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ott_16.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,308 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/ott_32_8.svg libreoffice-7.4.7/yaru/src/default/res/ott_32_8.svg --- libreoffice-7.4.6/yaru/src/default/res/ott_32_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ott_32_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,407 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/ott_32.svg libreoffice-7.4.7/yaru/src/default/res/ott_32.svg --- libreoffice-7.4.6/yaru/src/default/res/ott_32.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ott_32.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,450 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/ott_48_8.svg libreoffice-7.4.7/yaru/src/default/res/ott_48_8.svg --- libreoffice-7.4.6/yaru/src/default/res/ott_48_8.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ott_48_8.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,478 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/ott_48.svg libreoffice-7.4.7/yaru/src/default/res/ott_48.svg --- libreoffice-7.4.6/yaru/src/default/res/ott_48.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/ott_48.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,475 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/sx03123.svg libreoffice-7.4.7/yaru/src/default/res/sx03123.svg --- libreoffice-7.4.6/yaru/src/default/res/sx03123.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/sx03123.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,351 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/sx03144.svg libreoffice-7.4.7/yaru/src/default/res/sx03144.svg --- libreoffice-7.4.6/yaru/src/default/res/sx03144.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/sx03144.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,237 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-7.4.6/yaru/src/default/res/sx03150.svg libreoffice-7.4.7/yaru/src/default/res/sx03150.svg --- libreoffice-7.4.6/yaru/src/default/res/sx03150.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/sx03150.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,21 +1,21 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -30,16 +30,6 @@ - - - - - - + + + + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-319.99972,-236)" /> @@ -112,16 +91,38 @@ offset="1" id="stop925" /> - - - + + + + + + + inkscape:current-layer="svg4" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" /> + sodipodi:nodetypes="scscccccccsscscscccs" /> + inkscape:connector-curvature="0" + sodipodi:nodetypes="scccssscccs" /> + sodipodi:nodetypes="scccssscccs" /> + + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 5.095979,-2.5e-7 c -0.71904,0 -1.30185,0.0139 -1.83593,0.10352 -0.53409,0.0897 -1.0683,0.27628 -1.47657,0.68359 -0.40826,0.40729995 -0.59657,0.94323995 -0.68554,1.47850995 -0.089,0.5353 -0.10115002,1.12048 -0.0977,1.8418 v 3.8925805 3.8984388 c -0.003,0.71816 0.009,1.302351 0.0977,1.83594 0.089,0.53528 0.27727,1.07121 0.68554,1.47851 0.40827,0.407311 0.94248,0.593941 1.47657,0.683591 0.53408,0.0897 1.11689,0.10352 1.83593,0.10352 h 5.8086 c 0.71904,0 1.30058,-0.0137 1.83398,-0.10352 0.53341,-0.0898 1.06768,-0.27792 1.47461,-0.68554 0.40693,-0.40762 0.59404,-0.94271 0.68359,-1.47656 0.0896,-0.53386 0.10352,-1.11551 0.10352,-1.83594 v -3.8984398 -4.4140605 l -3.58594,-3.58593995 z m 0,1 h 5.9043 l 3,2.99999995 v 4.0000005 3.8984388 c 0,2.813411 -0.288,3.10156 -3.0957,3.10156 h -5.8086 c -2.80769,0 -3.1095,-0.28819 -3.0957,-3.10156 v -3.8984388 -3.8984405 c -0.0138,-2.81337 0.28801,-3.10155995 3.0957,-3.10155995 z" + id="path928" + inkscape:connector-curvature="0" + sodipodi:nodetypes="scscccccccsscscscccsscccssscccs" /> + sodipodi:nodetypes="scccssscccsscccscccssccccccccsccs" /> + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/sx03245.svg libreoffice-7.4.7/yaru/src/default/res/sx03245.svg --- libreoffice-7.4.6/yaru/src/default/res/sx03245.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/sx03245.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,21 +1,21 @@ + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -83,34 +83,36 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1016" id="namedview6" showgrid="true" - inkscape:zoom="29.5" - inkscape:cx="11.097283" - inkscape:cy="4.5781527" + inkscape:zoom="10.429825" + inkscape:cx="-26.222875" + inkscape:cy="0.23969721" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg4" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + d="M 5.5957031 1 C 4.8852238 1 4.3233426 1.0153032 3.8457031 1.0957031 C 3.3680736 1.176083 2.9498647 1.3328284 2.640625 1.6425781 C 2.3314055 1.9523278 2.175903 2.3693867 2.0957031 2.8476562 C 2.0155032 3.3259158 2 3.8896732 2 4.6015625 L 2 8 L 2 11.398438 C 2.1036399 12.102742 2.0155032 12.674084 2.0957031 13.152344 C 2.175933 13.630613 2.3314155 14.047672 2.640625 14.357422 C 2.9498647 14.667172 3.3680736 14.823897 3.8457031 14.904297 C 4.3233426 14.984697 4.8852238 15 5.5957031 15 L 10.404297 15 C 11.114776 15 11.67773 14.984597 12.15625 14.904297 C 12.63477 14.823967 13.052952 14.667022 13.363281 14.357422 C 13.673611 14.047832 13.830556 13.631323 13.910156 13.152344 C 13.989656 12.673904 14.003 12.109647 14 11.398438 L 14 8 L 14 4.6035156 C 14.001066 4.3866234 13.999592 4.1873396 13.996094 3.9960938 L 11.005859 1.0058594 C 10.816282 1.0016761 10.6191 1 10.404297 1 L 5.5957031 1 z " /> + inkscape:connector-curvature="0" + sodipodi:nodetypes="scsccccccsscsscccscccs" /> + + + + - - - - + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0a200;fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 5.5955145,1.0000019 c -0.7104793,0 -1.2723605,0.015303 -1.75,0.095703 -0.4776295,0.08038 -0.8958384,0.2371253 -1.2050781,0.546875 -0.3092195,0.3097497 -0.464722,0.7268086 -0.5449219,1.2050781 -0.0802,0.4782596 -0.095703,1.042017 -0.095703,1.7539062 v 3.3984375 3.3984383 c 0.1036399,0.704304 0.015503,1.275646 0.095703,1.753906 0.08023,0.478269 0.2357124,0.895328 0.5449219,1.205078 0.3092397,0.30975 0.7274486,0.466475 1.2050781,0.546875 0.4776395,0.0804 1.0395207,0.0957 1.75,0.0957 h 4.8085945 c 0.710479,0 1.273433,-0.0154 1.751953,-0.0957 0.47852,-0.08033 0.896702,-0.237275 1.207031,-0.546875 0.31033,-0.30959 0.467275,-0.726099 0.546875,-1.205078 0.0795,-0.47844 0.09284,-1.042697 0.08984,-1.753906 v -3.3984383 -3.3964843 c 0.0011,-0.2168922 -4.08e-4,-0.416176 -0.0039,-0.6074218 l -2.990235,-2.9902344 c -0.189577,-0.00418 -0.386759,-0.00586 -0.601562,-0.00586 z" /> + d="m 5.0960402,2.0000019 c -0.6888,0 -1.1839,0.0205 -1.5039,0.0742 -0.30449,0.0511 -0.38369,0.11806 -0.39649,0.13086 -0.0131,0.0131 -0.0746,0.0855 -0.125,0.38867 -0.0529,0.31839 -0.0733,0.81274 -0.0703,1.50195 v 0.004 3.90039 3.9023401 0.002 c -0.003,0.68916 0.0176,1.18495 0.0703,1.50195 0.0504,0.30317 0.1119,0.37557 0.125,0.38867 0.0128,0.0128 0.0918,0.0798 0.39649,0.13086 0.32002,0.0537 0.8151,0.0742 1.5039,0.0742 h 5.8086008 c 0.68894,0 1.18348,-0.0206 1.50195,-0.0742 0.30433,-0.0512 0.38043,-0.1186 0.39063,-0.1289 0.0112,-0.0112 0.0774,-0.0858 0.1289,-0.39258 0.0536,-0.31974 0.0742,-0.81575 0.0742,-1.50586 v -3.8985501 -3 c -3.0118843,-0.029347 -3.0005096,0 -3,-3 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient1309);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:connector-curvature="0" + sodipodi:nodetypes="scsccccccsscsscccscccs" /> + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -40,16 +40,6 @@ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#46a926;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" /> - - + id="linearGradient4847"> + + + - - - - + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" /> + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#b61629;fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 5.5955146,1.0000021 c -0.7104793,0 -1.2723605,0.015303 -1.75,0.095703 -0.4776295,0.08038 -0.8958384,0.2371253 -1.2050781,0.546875 -0.3092195,0.3097497 -0.464722,0.7268086 -0.5449219,1.2050781 -0.0802,0.4782596 -0.095703,1.042017 -0.095703,1.7539063 v 3.3984375 3.398438 c 0.1036399,0.704304 0.015503,1.275646 0.095703,1.753906 0.08023,0.478269 0.2357124,0.895328 0.5449219,1.205078 0.3092397,0.30975 0.7274486,0.466475 1.2050781,0.546875 0.4776395,0.0804 1.0395207,0.0957 1.75,0.0957 h 4.8085934 c 0.710479,0 1.273433,-0.0154 1.751953,-0.0957 0.47852,-0.08033 0.896702,-0.237275 1.207031,-0.546875 0.31033,-0.30959 0.467275,-0.726098 0.546875,-1.205078 0.0795,-0.478439 0.09284,-1.042697 0.08984,-1.753906 v -3.398438 -3.3964844 c 0.0011,-0.2168922 -4.08e-4,-0.416176 -0.0039,-0.6074218 l -2.990235,-2.9902344 c -0.189577,-0.00418 -0.386759,-0.00586 -0.601562,-0.00586 z" /> - + - - - - + style="color:#000000;fill:#b61629;stroke-linecap:square;stroke-linejoin:round;-inkscape-stroke:none;fill-opacity:1.0" + d="M 6.5 6 A 0.50005 0.50005 0 0 0 6.0058594 6.4179688 L 5.53125 9.2597656 A 0.50005 0.50005 0 0 0 5.25 9 L 4.5 9 L 4 9 L 4 10 L 4.5 10 L 4.7890625 10 L 5.0019531 12.541016 A 0.50005 0.50005 0 0 0 5.9941406 12.582031 L 6.9238281 7 L 11 7 L 11 7.5 L 12 7.5 L 12 7 L 12 6.5 A 0.50005 0.50005 0 0 0 11.5 6 L 6.5 6 z M 8 8.2929688 L 7.2929688 9 L 7.6464844 9.3535156 L 8.7929688 10.5 L 7.6464844 11.646484 L 7.2929688 12 L 8 12.707031 L 8.3535156 12.353516 L 9.5 11.207031 L 10.646484 12.353516 L 11 12.707031 L 11.707031 12 L 11.353516 11.646484 L 10.207031 10.5 L 11.353516 9.3535156 L 11.707031 9 L 11 8.2929688 L 10.646484 8.6464844 L 9.5 9.7929688 L 8.3535156 8.6464844 L 8 8.2929688 z " /> diff -Nru libreoffice-7.4.6/yaru/src/default/res/sx03248.svg libreoffice-7.4.7/yaru/src/default/res/sx03248.svg --- libreoffice-7.4.6/yaru/src/default/res/sx03248.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/sx03248.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,13 +1,5 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -40,7 +40,7 @@ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#46a926;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" /> @@ -72,42 +72,44 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1016" id="namedview6" showgrid="true" - inkscape:zoom="29.5" - inkscape:cx="10.976908" - inkscape:cy="6.8220214" + inkscape:zoom="7.375" + inkscape:cx="-41.423729" + inkscape:cy="-4" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg4" - inkscape:document-rotation="0"> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + id="path918-8" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#545454;fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 5.5955145,1.0000019 c -0.7104793,0 -1.2723605,0.015303 -1.75,0.095703 -0.4776295,0.08038 -0.8958384,0.2371253 -1.2050781,0.546875 -0.3092195,0.3097497 -0.464722,0.7268086 -0.5449219,1.2050781 -0.0802,0.4782596 -0.095703,1.042017 -0.095703,1.7539063 v 3.3984375 3.3984382 c 0.1036399,0.704304 0.015503,1.275646 0.095703,1.753906 0.08023,0.478269 0.2357124,0.895328 0.5449219,1.205078 0.3092397,0.30975 0.7274486,0.466475 1.2050781,0.546875 0.4776395,0.0804 1.0395207,0.0957 1.75,0.0957 h 4.8085945 c 0.710479,0 1.273433,-0.0154 1.751953,-0.0957 0.47852,-0.08033 0.896702,-0.237275 1.207031,-0.546875 0.31033,-0.30959 0.467275,-0.726099 0.546875,-1.205078 0.0795,-0.47844 0.09284,-1.042697 0.08984,-1.753906 v -3.3984383 -3.3964843 c 0.0011,-0.2168922 -4.08e-4,-0.416176 -0.0039,-0.6074218 l -2.990235,-2.9902344 c -0.189577,-0.00418 -0.386759,-0.00586 -0.601562,-0.00586 z" /> + inkscape:connector-curvature="0" + sodipodi:nodetypes="scsccccccsscsscccscccs" /> + x="3.9999719" + y="5.9871716" /> diff -Nru libreoffice-7.4.6/yaru/src/default/res/sx03249.svg libreoffice-7.4.7/yaru/src/default/res/sx03249.svg --- libreoffice-7.4.6/yaru/src/default/res/sx03249.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/sx03249.svg 2023-03-31 10:14:09.000000000 +0000 @@ -4,7 +4,7 @@ version="1.1" id="svg4" sodipodi:docname="sx03249.svg" - inkscape:version="1.1 (ce6663b3b7, 2021-05-25)" + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" inkscape:export-filename="/home/jupiter007/Libreoffice yaru theme/build/res/odp_16_8.png" inkscape:export-xdpi="95" inkscape:export-ydpi="95" @@ -40,28 +40,6 @@ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#46a926;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" /> - - - - - + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#a33e03;fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 5.5955145,1.0000019 c -0.7104793,0 -1.2723605,0.015303 -1.75,0.095703 -0.4776295,0.08038 -0.8958384,0.2371253 -1.2050781,0.546875 -0.3092195,0.3097497 -0.464722,0.7268086 -0.5449219,1.2050781 -0.0802,0.4782596 -0.095703,1.042017 -0.095703,1.7539062 v 3.3984375 3.3984383 c 0.1036399,0.704304 0.015503,1.275646 0.095703,1.753906 0.08023,0.478269 0.2357124,0.895328 0.5449219,1.205078 0.3092397,0.30975 0.7274486,0.466475 1.2050781,0.546875 0.4776395,0.0804 1.0395207,0.0957 1.75,0.0957 h 4.8085945 c 0.710479,0 1.273433,-0.0154 1.751953,-0.0957 0.47852,-0.08033 0.896702,-0.237275 1.207031,-0.546875 0.31033,-0.30959 0.467275,-0.726099 0.546875,-1.205078 0.0795,-0.47844 0.09284,-1.042697 0.08984,-1.753906 v -3.3984383 -3.3964843 c 0.0011,-0.2168922 -4.08e-4,-0.416176 -0.0039,-0.6074218 l -2.990235,-2.9902344 c -0.189577,-0.00418 -0.386759,-0.00586 -0.601562,-0.00586 z" /> + inkscape:connector-curvature="0" + sodipodi:nodetypes="scsccccccsscsscccscccs" /> + + + + - - - - + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + id="path918-6" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#106802;fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 5.5955145,1.0000019 c -0.7104793,0 -1.2723605,0.015303 -1.75,0.095703 -0.4776295,0.08038 -0.8958384,0.2371253 -1.2050781,0.546875 -0.3092195,0.3097497 -0.464722,0.7268086 -0.5449219,1.2050781 -0.0802,0.4782596 -0.095703,1.042017 -0.095703,1.7539063 v 3.3984375 3.3984382 c 0.1036399,0.704304 0.015503,1.275646 0.095703,1.753906 0.08023,0.478269 0.2357124,0.895328 0.5449219,1.205078 0.3092397,0.30975 0.7274486,0.466475 1.2050781,0.546875 0.4776395,0.0804 1.0395207,0.0957 1.75,0.0957 h 4.8085935 c 0.710479,0 1.273433,-0.0154 1.751953,-0.0957 0.47852,-0.08033 0.896703,-0.237275 1.207032,-0.546875 0.31033,-0.30959 0.467275,-0.726099 0.546875,-1.205078 0.0795,-0.47844 0.09284,-1.042697 0.08984,-1.753906 v -3.3984383 -3.3964843 c 0.0011,-0.2168922 -4.08e-4,-0.416176 -0.0039,-0.6074218 l -2.990236,-2.9902344 c -0.189577,-0.00418 -0.386759,-0.00586 -0.601562,-0.00586 z" /> + inkscape:connector-curvature="0" + sodipodi:nodetypes="scsccccccsscsscccscccs" /> - + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + id="path918-3" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#0369a3;fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 5.5955145,1.0000019 c -0.7104793,0 -1.2723605,0.015303 -1.75,0.095703 -0.4776295,0.08038 -0.8958384,0.2371253 -1.2050781,0.546875 -0.3092195,0.3097497 -0.464722,0.7268086 -0.5449219,1.2050781 -0.0802,0.4782596 -0.095703,1.042017 -0.095703,1.7539062 v 3.3984375 3.3984383 c 0.1036399,0.704304 0.015503,1.275646 0.095703,1.753906 0.08023,0.478269 0.2357124,0.895328 0.5449219,1.205078 0.3092397,0.30975 0.7274486,0.466475 1.2050781,0.546875 0.4776395,0.0804 1.0395207,0.0957 1.75,0.0957 h 4.8085945 c 0.710479,0 1.273433,-0.0154 1.751953,-0.0957 0.47852,-0.08033 0.896702,-0.237275 1.207031,-0.546875 0.31033,-0.30959 0.467275,-0.726099 0.546875,-1.205078 0.0795,-0.47844 0.09284,-1.042697 0.08984,-1.753906 v -3.3984383 -3.3964843 c 0.0011,-0.2168922 -4.08e-4,-0.416176 -0.0039,-0.6074218 l -2.990235,-2.9902344 c -0.189577,-0.00418 -0.386759,-0.00586 -0.601562,-0.00586 z" /> + id="path1291-1" + d="m 5.0960402,2.0000019 c -0.6888,0 -1.1839,0.0205 -1.5039,0.0742 -0.30449,0.0511 -0.38369,0.11806 -0.39649,0.13086 -0.0131,0.0131 -0.0746,0.0855 -0.125,0.38867 -0.0529,0.31839 -0.0733,0.81274 -0.0703,1.5019499 v 0.004 3.90039 3.9023401 0.002 c -0.003,0.68916 0.0176,1.18495 0.0703,1.50195 0.0504,0.30317 0.1119,0.37557 0.125,0.38867 0.0128,0.0128 0.0918,0.0798 0.39649,0.13086 0.32002,0.0537 0.8151,0.0742 1.5039,0.0742 h 5.8086008 c 0.68894,0 1.18348,-0.0206 1.50195,-0.0742 0.30433,-0.0512 0.38043,-0.1186 0.39063,-0.1289 0.0112,-0.0112 0.0774,-0.0858 0.1289,-0.39258 0.0536,-0.31974 0.0742,-0.81575 0.0742,-1.50586 v -3.8985502 -3 c -3.0118845,-0.029347 -3.0005095,0 -3,-3 z" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient1309-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:connector-curvature="0" + sodipodi:nodetypes="scsccccccsscsscccscccs" /> - - - - - + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> @@ -226,15 +228,13 @@ x="1" y="11" /> + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#a33e03;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + d="m 5.5955143,1.0000018 c -0.7104793,0 -1.2723605,0.015303 -1.75,0.095703 -0.4776295,0.08038 -0.8958384,0.2371253 -1.2050781,0.546875 -0.3092195,0.3097497 -0.464722,0.7268086 -0.5449219,1.2050781 -0.0802,0.4782596 -0.095703,1.042017 -0.095703,1.7539062 v 3.3984375 3.3984384 c 0.1036399,0.704304 0.015503,1.275646 0.095703,1.753906 0.08023,0.478269 0.2357124,0.895328 0.5449219,1.205078 0.3092397,0.30975 0.7274486,0.466475 1.2050781,0.546875 0.4776395,0.0804 1.0395207,0.0957 1.75,0.0957 h 4.8085947 c 0.710479,0 1.273433,-0.0154 1.751953,-0.0957 0.47852,-0.08033 0.896702,-0.237275 1.207031,-0.546875 0.31033,-0.30959 0.467275,-0.726099 0.546875,-1.205078 0.0795,-0.47844 0.09284,-1.042697 0.08984,-1.753906 v -3.3984384 -3.3964843 c 0.0011,-0.2168922 -4.08e-4,-0.416176 -0.0039,-0.6074218 l -2.990235,-2.9902344 c -0.189577,-0.00418 -0.386759,-0.00586 -0.601562,-0.00586 z" /> + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient1309);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 5 2 L 5 14 C 5.0333394 14.000103 5.0614054 14 5.0957031 14 L 10.904297 14 C 11.593236 14 12.08778 13.979381 12.40625 13.925781 C 12.71058 13.874581 12.786675 13.807175 12.796875 13.796875 C 12.808075 13.785675 12.874281 13.711077 12.925781 13.404297 C 12.979381 13.084557 13 12.588547 13 11.898438 L 13 8 L 13 5 C 9.9881185 4.970653 9.9994902 4.999997 10 2 L 5.0957031 2 C 5.0614054 2 5.0333395 1.9998968 5 2 z " /> + + + + - - - - + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> @@ -152,13 +154,15 @@ x="1" y="11" /> + d="m 5.5955143,1.0000018 c -0.7104793,0 -1.2723605,0.015303 -1.75,0.095703 -0.4776295,0.08038 -0.8958384,0.2371253 -1.2050781,0.546875 -0.3092195,0.3097497 -0.464722,0.7268086 -0.5449219,1.2050781 -0.0802,0.4782596 -0.095703,1.042017 -0.095703,1.7539063 v 3.3984375 3.3984383 c 0.1036399,0.704304 0.015503,1.275646 0.095703,1.753906 0.08023,0.478269 0.2357124,0.895328 0.5449219,1.205078 0.3092397,0.30975 0.7274486,0.466475 1.2050781,0.546875 0.4776395,0.0804 1.0395207,0.0957 1.75,0.0957 h 4.8085937 c 0.710479,0 1.273433,-0.0154 1.751953,-0.0957 0.47852,-0.08033 0.896703,-0.237275 1.207032,-0.546875 0.31033,-0.30959 0.467275,-0.726099 0.546875,-1.205078 0.0795,-0.47844 0.09284,-1.042697 0.08984,-1.753906 v -3.3984384 -3.3964843 c 0.0011,-0.2168922 -4.08e-4,-0.416176 -0.0039,-0.6074218 l -2.990236,-2.9902344 c -0.189577,-0.00418 -0.386759,-0.00586 -0.601562,-0.00586 z" /> + - + + + + - - - - + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> @@ -153,17 +155,15 @@ x="1" y="11" /> + d="m 5.5955143,1.0000018 c -0.7104793,0 -1.2723605,0.015303 -1.75,0.095703 -0.4776295,0.08038 -0.8958384,0.2371253 -1.2050781,0.546875 -0.3092195,0.3097497 -0.464722,0.7268086 -0.5449219,1.2050781 -0.0802,0.4782596 -0.095703,1.042017 -0.095703,1.7539062 v 3.3984375 3.3984384 c 0.1036399,0.704304 0.015503,1.275646 0.095703,1.753906 0.08023,0.478269 0.2357124,0.895328 0.5449219,1.205078 0.3092397,0.30975 0.7274486,0.466475 1.2050781,0.546875 0.4776395,0.0804 1.0395207,0.0957 1.75,0.0957 h 4.8085947 c 0.710479,0 1.273433,-0.0154 1.751953,-0.0957 0.47852,-0.08033 0.896702,-0.237275 1.207031,-0.546875 0.31033,-0.30959 0.467275,-0.726099 0.546875,-1.205078 0.0795,-0.47844 0.09284,-1.042697 0.08984,-1.753906 v -3.3984384 -3.3964843 c 0.0011,-0.2168922 -4.08e-4,-0.416176 -0.0039,-0.6074218 l -2.990235,-2.9902344 c -0.189577,-0.00418 -0.386759,-0.00586 -0.601562,-0.00586 z" /> + id="path1291-1" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient1309-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="M 5 2 L 5 14 C 5.0333394 14.000103 5.0614054 14 5.0957031 14 L 10.904297 14 C 11.593236 14 12.08778 13.979381 12.40625 13.925781 C 12.71058 13.874581 12.786675 13.807175 12.796875 13.796875 C 12.808075 13.785675 12.874281 13.711077 12.925781 13.404297 C 12.979381 13.084557 13 12.588547 13 11.898438 L 13 8 L 13 5 C 9.9881183 4.970653 9.9994903 4.999997 10 2 L 5.0957031 2 C 5.0614054 2 5.0333395 1.9998968 5 2 z " /> + diff -Nru libreoffice-7.4.6/yaru/src/default/res/tipoftheday_d.svg libreoffice-7.4.7/yaru/src/default/res/tipoftheday_d.svg --- libreoffice-7.4.6/yaru/src/default/res/tipoftheday_d.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/tipoftheday_d.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,492 @@ + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/tipoftheday_i.svg libreoffice-7.4.7/yaru/src/default/res/tipoftheday_i.svg --- libreoffice-7.4.6/yaru/src/default/res/tipoftheday_i.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/tipoftheday_i.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,507 @@ + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/tipoftheday.svg libreoffice-7.4.7/yaru/src/default/res/tipoftheday.svg --- libreoffice-7.4.6/yaru/src/default/res/tipoftheday.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/tipoftheday.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,368 @@ + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/tipoftheday_w.svg libreoffice-7.4.7/yaru/src/default/res/tipoftheday_w.svg --- libreoffice-7.4.6/yaru/src/default/res/tipoftheday_w.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/tipoftheday_w.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,461 @@ + + diff -Nru libreoffice-7.4.6/yaru/src/default/res/writer128.svg libreoffice-7.4.7/yaru/src/default/res/writer128.svg --- libreoffice-7.4.6/yaru/src/default/res/writer128.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/res/writer128.svg 2023-03-31 10:14:09.000000000 +0000 @@ -8,7 +8,7 @@ inkscape:export-filename="/home/jupiter007/Libreoffice yaru theme/build/res/writer128.png" inkscape:export-xdpi="96" inkscape:export-ydpi="96" - inkscape:version="1.1 (ce6663b3b7, 2021-05-25)" + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:xlink="http://www.w3.org/1999/xlink" @@ -64,16 +64,6 @@ offset="1" /> - - - - - - - - - + + + + + + + + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> @@ -230,69 +245,72 @@ id="stop14" /> + + d="m 172.92188,-45 c -35.29673,0 -38.92188,3.625611 -38.92188,38.994141 v 72.005859 1 72.00586 c 0,35.36853 3.62514,38.99414 38.92188,38.99414 h 98.15624 c 35.29673,0 39.09487,-3.62602 38.92188,-38.99414 v -101.76563 c -0.044,-9.7329 -8.17907,-17.95561 -14.76172,-24.16211 l -0.0488,-0.0508 -40.52343,-42.408199 c -10.67689,-10.56116 -18.05782,-15.619141 -32.66602,-15.619141 z m 97.96874,0.08984 c -3.03973,2.502305 -3.72055,8.066242 -0.77734,10.912109 l 28.4961,30.386719 c 3.72846,3.700585 11.14006,0.561079 11.38476,-4.798828 -0.032,-30.448516 -3.84872,-35.847323 -31.36328,-36.5 z" + id="path5316-84" + transform="matrix(0.5,0,0,0.5,-47,31)" /> + d="m 39.46094,8 c -1.08787,0 -2.11318,0.0073 -3.08399,0.02441 -14.74093,0.263922 -16.33398,2.893658 -16.33398,19.472657 v 36.502928 36.502935 c 0,16.57899 1.59305,19.20873 16.33398,19.47265 0.97081,0.0171 1.99612,0.0244 3.08399,0.0244 0.0152,0 0.0278,0 0.043,0 h 49.03515 c 1.10303,0 2.14459,-0.007 3.12793,-0.0244 14.75013,-0.26394 16.4141,-2.89385 16.33301,-19.47266 v -51.38281 c -0.022,-4.86645 -4.08953,-8.97781 -7.38086,-12.081055 l -0.0244,-0.0254 -20.26171,-21.204099 c -5.33848,-5.280565 -9.02891,-7.80957 -16.33301,-7.80957 z m 49.86621,0.04492 c -2.23731,0.7462 -2.99531,4.288299 -1.27051,5.956054 l 14.24805,15.19336 c 1.87049,1.856501 5.59675,0.270619 5.69531,-2.425782 v -3.595703 c -0.31901,-12.47752 -2.88303,-14.825281 -15.6416,-15.127929 h -1.97657 z" + id="path5316-3" /> + inkscape:connector-curvature="0" /> + d="m 39.46094,8 c -17.64837,0 -19.46094,1.812805 -19.46094,19.497071 v 36.502929 36.50293 c 0,17.68427 1.81257,19.49707 19.46094,19.49707 h 49.07812 c 7.72116,0 12.42775,-0.34749 15.27247,-2.21875 0.20319,-0.13366 0.39741,-0.27419 0.58203,-0.42383 1.10768,-0.89787 1.88793,-2.0915 2.43261,-3.67285 0.99858,-2.89914 1.20357,-7.10274 1.17383,-13.18164 v -51.382815 c -0.022,-4.86645 -4.08953,-8.97781 -7.38086,-12.081055 l -0.0244,-0.0254 -20.26171,-21.204099 c -5.33848,-5.280566 -9.02891,-7.809571 -16.33301,-7.809571 z m 49.86621,0.04492 c -2.23731,0.7462 -2.99531,4.288299 -1.27051,5.956054 l 14.24805,15.19336 c 1.86677,1.852816 5.58064,0.276482 5.69335,-2.410157 0.0241,-15.664507 -1.77664,-18.409391 -15.68261,-18.739257 h -1.9336 z" + id="rect4158-92-3" + sodipodi:nodetypes="sscsssssscccccssccccccc" /> + id="rect4396" + style="display:inline;opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:1;stroke-linejoin:round;stroke-dasharray:1.5, 1.5;enable-background:new" + d="m 64,8 v 112 h 24.53906 c 7.72116,0 12.42775,-0.34749 15.27247,-2.21875 0.20319,-0.13366 0.39741,-0.27419 0.58203,-0.42383 1.10768,-0.89787 1.88793,-2.0915 2.43261,-3.67285 0.99858,-2.89914 1.20357,-7.10274 1.17383,-13.18164 v -51.382815 c -0.022,-4.86645 -4.08953,-8.977805 -7.38086,-12.081055 l -0.0244,-0.0254 -20.26171,-21.204099 c -5.33848,-5.280566 -9.02891,-7.809571 -16.33301,-7.809571 z m 25.32715,0.04492 c -2.23731,0.7462 -2.99531,4.288299 -1.27051,5.956054 l 14.24805,15.19336 c 1.86677,1.852816 5.58064,0.276482 5.69335,-2.410157 0.0241,-15.664507 -1.77664,-18.409391 -15.68261,-18.739257 h -1.9336 z" /> + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 20.0002,64 v 36.50341 c -0.0865,17.68406 1.81257,19.49659 19.46094,19.49659 h 49.07812 c 17.64836,0 19.0018,-1.81827 19.46094,-19.49658 v -36.50342 z" + id="path4255" + sodipodi:nodetypes="ccssscc" /> + id="path419" + style="clip-rule:evenodd;display:inline;opacity:0.25;fill:#000000;fill-rule:nonzero;stroke-width:0.5;enable-background:new" + d="m 36.5,49 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 15 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 28,0 c -3.0375,0 -5.5,2.462505 -5.5,5.5 v 14 c 0,3.037495 2.4625,5.5 5.5,5.5 h 24 c 3.03749,0 5.5,-2.462505 5.5,-5.5 v -14 c 0,-3.037495 -2.46251,-5.5 -5.5,-5.5 z m -28,10 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 15 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 0,10 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 15 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 0,10 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 55 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 0,10 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 55 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 0,10 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 40 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z" /> + d="m 36.5,48 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 15 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 28,0 c -3.0375,0 -5.5,2.4625 -5.5,5.5 v 14 c 0,3.0375 2.4625,5.5 5.5,5.5 h 24 c 3.0375,0 5.5,-2.4625 5.5,-5.5 v -14 c 0,-3.0375 -2.4625,-5.5 -5.5,-5.5 z m -28,10 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 15 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 0,10 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 15 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 0,10 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 55 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 0,10 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 55 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 0,10 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 40 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z" + style="clip-rule:evenodd;display:inline;fill:#ffffff;fill-rule:nonzero;stroke-width:0.5;enable-background:new" + id="path162" /> + + d="m 39.46094,8 c -1.25408,0 -2.40586,0.01275 -3.50586,0.03614 -0.78457,0.01666 -1.54288,0.03833 -2.25293,0.07129 -0.44637,0.02067 -0.88057,0.04402 -1.29883,0.07227 -0.0368,0.0025 -0.0777,0.0043 -0.11426,0.0068 -0.0199,0.0014 -0.0368,0.0034 -0.0566,0.0049 -0.55802,0.03965 -1.08486,0.0897 -1.59375,0.145509 -0.1407,0.01538 -0.28287,0.03016 -0.41992,0.04687 -0.13785,0.01686 -0.274,0.03446 -0.40821,0.05273 -0.19322,0.0262 -0.38158,0.0538 -0.56738,0.08301 -0.12254,0.01935 -0.24685,0.03787 -0.36621,0.05859 -0.19336,0.03341 -0.37832,0.07128 -0.56348,0.108399 -0.25393,0.05114 -0.50036,0.10551 -0.73925,0.164063 -0.0955,0.02329 -0.19302,0.04579 -0.28614,0.07031 -0.1626,0.04301 -0.31905,0.08885 -0.47461,0.135742 -0.087,0.02612 -0.1739,0.05271 -0.25879,0.08008 -0.16578,0.05369 -0.32867,0.109354 -0.48632,0.167969 -0.0404,0.01494 -0.0793,0.03062 -0.11914,0.0459 -0.78001,0.30027 -1.46174,0.662351 -2.05371,1.102539 -5e-4,5.5e-4 -0.001,0.0014 -0.002,0.002 -2.69675,2.006875 -3.56861,5.611047 -3.80762,11.959961 -0.0114,0.302816 -0.0207,0.616102 -0.0293,0.931641 -0.0151,0.552357 -0.0293,1.104951 -0.0371,1.697266 0.23923,-14.456815 3.02314,-16.043963 19.4414,-16.043963 h 31.26465 c -0.42995,-0.147732 -0.87291,-0.276568 -1.32715,-0.391601 -0.0785,-0.01979 -0.15602,-0.04077 -0.23535,-0.05957 -0.19386,-0.0462 -0.39078,-0.08855 -0.58985,-0.128906 -0.14181,-0.02855 -0.28602,-0.0545 -0.43066,-0.08008 -0.16608,-0.02962 -0.33096,-0.06121 -0.50098,-0.08691 -0.30773,-0.04608 -0.62172,-0.08583 -0.94336,-0.119141 -0.12765,-0.01339 -0.25964,-0.02282 -0.38964,-0.03418 -0.24672,-0.02129 -0.49738,-0.03963 -0.75293,-0.05371 -0.13044,-0.0073 -0.26069,-0.01511 -0.39356,-0.02051 -0.37869,-0.01516 -0.76267,-0.02539 -1.16211,-0.02539 z" + id="path7814" /> + d="m 89.32715,8.044922 c -0.53561,0.17864 -0.98366,0.520038 -1.33594,0.955078 h 0.54785 c 17.07657,2e-6 19.32036,1.742594 19.44824,17.873047 10e-4,-0.01918 0.006,-0.03735 0.007,-0.05664 -0.0269,-8.89596 -0.58368,-13.655944 -3.59765,-16.142578 -0.0306,-0.02497 -0.0617,-0.0497 -0.0928,-0.07422 -0.13474,-0.107377 -0.27545,-0.209648 -0.41992,-0.308594 -0.0756,-0.0513 -0.15211,-0.101296 -0.23047,-0.150391 -0.10173,-0.06436 -0.20704,-0.125849 -0.31347,-0.186523 -0.119,-0.06722 -0.23933,-0.134455 -0.36426,-0.197266 -0.071,-0.03599 -0.14481,-0.06991 -0.21778,-0.104492 -0.16571,-0.07792 -0.33278,-0.153633 -0.50878,-0.224609 -0.0237,-0.0096 -0.0484,-0.01882 -0.0723,-0.02832 -2.29879,-0.907823 -5.47568,-1.250312 -9.85352,-1.354493 h -0.01 -1.93164 z" + id="path7812" /> + d="m 20.00586,26.770508 c -10e-4,0.245272 -0.006,0.470228 -0.006,0.726563 v 1 c -0.003,-0.60913 0.003,-1.157292 0.006,-1.726563 z" + id="rect4158-92-3-3" /> + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 20.0002,99.50293 v 1 c -0.0865,17.68406 1.81257,19.49707 19.46094,19.49707 h 49.07812 c 17.64836,0 19.0018,-1.81876 19.46094,-19.49707 v -1 c -0.45914,17.67831 -1.81258,19.49707 -19.46094,19.49707 h -49.07812 c -17.64836,0 -19.54743,-1.81301 -19.46094,-19.49707 z" + id="path945" + inkscape:connector-curvature="0" /> + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.08;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + d="m 78.0002,120 30,-30 v 11.24194 c -0.0262,16.99791 -1.90134,18.75806 -19.08705,18.75806 z" + id="path4254" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccsc" /> diff -Nru libreoffice-7.4.6/yaru/src/default/sfx2/res/128x128_calc_doc-p.svg libreoffice-7.4.7/yaru/src/default/sfx2/res/128x128_calc_doc-p.svg --- libreoffice-7.4.6/yaru/src/default/sfx2/res/128x128_calc_doc-p.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sfx2/res/128x128_calc_doc-p.svg 2023-03-31 10:14:09.000000000 +0000 @@ -8,7 +8,7 @@ inkscape:export-filename="/home/jupiter007/Libreoffice yaru theme fullcolor/build/sfx2/res/128x128_calc_doc-p.png" inkscape:export-xdpi="95" inkscape:export-ydpi="95" - inkscape:version="1.1 (ce6663b3b7, 2021-05-25)" + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:xlink="http://www.w3.org/1999/xlink" @@ -63,42 +63,80 @@ offset="1" id="stop15610-7" /> + + + + + id="filter4346" + x="-0.014454287" + width="1.0289086" + y="-0.011357288" + height="1.0227146"> + stdDeviation="2.120027" + id="feGaussianBlur4348" /> + id="filter4380" + x="-0.057817147" + width="1.1156343" + y="-0.045429151" + height="1.0908583"> + stdDeviation="8.4801079" + id="feGaussianBlur4382" /> + + + + + + gradientTransform="matrix(0,-0.20228795,0.19565602,0,9.60728,114)" /> @@ -107,36 +145,101 @@ offset="0" id="stop4340" /> - + + + + + + + + + + + gradientTransform="matrix(0.5,0,0,0.5,-12,-14)" /> + + id="stop12713" /> + id="stop12715" /> + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> @@ -216,177 +321,199 @@ id="stop14" /> - - - - - + sodipodi:nodetypes="scccssscccs" + transform="matrix(0.25,0,0,0.25,-8,-10)" /> - + + sodipodi:nodetypes="scccssscccs" /> - - + d="m 39.46094,8 c -17.648364,0 -19.547435,1.813015 -19.46094,19.497071 v 1 c -0.08649,-17.684057 1.812576,-19.497071 19.46094,-19.497071 h 36.53906 v -1 z" + id="path931" + inkscape:connector-curvature="0" + sodipodi:nodetypes="sccsccs" /> + sodipodi:nodetypes="scccssscccs" /> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + + + + + + + + + + + + + + + + gradientTransform="matrix(0,-0.2265625,0.22655602,0,1.0187996,120)" /> + + + + + gradientTransform="matrix(0,-0.20228795,0.19565602,0,9.6072793,114)" /> @@ -153,36 +190,108 @@ offset="0" id="stop4340" /> + + + + + + + + + + id="filter2553" + x="-0.074250001" + width="1.1485" + y="-0.072000001" + height="1.144"> + stdDeviation="1.98" + id="feGaussianBlur2555" /> + id="filter8603" + x="-0.037125" + width="1.07425" + y="-0.036" + height="1.072"> + stdDeviation="0.99" + id="feGaussianBlur8605" /> + + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1" /> + sodipodi:nodetypes="scccssscccs" + transform="matrix(0.25,0,0,0.25,-8.0000004,-9.9999999)" /> + + sodipodi:nodetypes="scccssscccs" /> + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 39.46094,8 c -17.648364,0 -19.547435,1.8130145 -19.46094,19.49707 v 1 c -0.08649,-17.684055 1.812576,-19.49707 19.46094,-19.49707 h 36.539062 v -1 z" + id="path931" + inkscape:connector-curvature="0" + sodipodi:nodetypes="sccsccs" /> + sodipodi:nodetypes="scccssscccs" /> + + + + + + + d="m 88.250502,86.7485 h -18.5 c -2.485,0 -4.5,-2.0145 -4.5,-4.5 v -18.5 c 0,-2.4855 2.015,-4.5 4.5,-4.5 h 18.5 c 2.4855,0 4.5,2.0145 4.5,4.5 v 18.5 c 0,2.4855 -2.0145,4.5 -4.5,4.5 z" + style="clip-rule:evenodd;display:inline;fill:url(#_Linear23-7);fill-rule:nonzero;stroke:#876900;stroke-width:2.5px;stroke-linecap:round;stroke-linejoin:round;enable-background:new" + id="path222" /> + + + + + + + + d="m 68.756002,84.6195 c 0.8205,1.324 2.267,2.129 3.8245,2.129 h 15.67 c 2.4855,0 4.5,-2.0145 4.5,-4.5 v -18.5 c 0,-2.4855 -2.0145,-4.5 -4.5,-4.5 h -18.46 c -2.501,0 -4.522,2.039 -4.5,4.5395 l 0.124,14.2 c 0.0075,0.8245 0.241,1.631 0.6755,2.332 z" + style="clip-rule:evenodd;display:inline;fill:none;fill-rule:nonzero;stroke:#b28a00;stroke-width:2.5px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;enable-background:new" + id="path238" /> + sodipodi:nodetypes="ccsscccc" /> + + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccsc" /> + inkscape:connector-curvature="0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:url(#radialGradient1752);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;filter:url(#filter2553);enable-background:accumulate" + d="m 201.04121,79.697219 -64,-66 0.003,24.99857 v 1 0.53711 c 0,35.29429 1.62603,39.63197 36.99414,39.45899 z" + id="rect4158-0-3-6" + sodipodi:nodetypes="ccccscc" + transform="matrix(0.5,0,0,0.5,7.4793968,1.1513905)" /> + inkscape:connector-curvature="0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;filter:url(#filter8603);enable-background:accumulate" + d="m 201.04121,79.697219 v -2 l -64,-64 v 0 24.999094 1 0.53711 c 0,34.463796 4,39.463796 36.99414,39.458996 z" + id="rect4158-0-3-2" + sodipodi:nodetypes="ccccccscc" + transform="matrix(0.5,0,0,0.5,7.4793968,1.1513905)" /> - - - - - - - - - - - - - - - - - - - - - - - - + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient12719);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 107.99854,39.997335 -31.997073,-31.997073 v 11.499025 0.5 0.268555 c 0,17.647143 1.813015,19.815983 19.49707,19.729493 z" + id="rect4158-0-3" /> + + + - + style="color-interpolation-filters:sRGB" + id="filter4346" + x="-0.014454287" + width="1.0289086" + y="-0.011357288" + height="1.0227146"> + + + + + + + + + + + gradientTransform="matrix(0,-0.20228795,0.19565602,0,9.60728,114)" /> @@ -192,36 +229,102 @@ offset="0" id="stop4340" /> + + + + + + id="filter2553" + x="-0.074250001" + width="1.1485" + y="-0.072000001" + height="1.144"> + stdDeviation="1.98" + id="feGaussianBlur2555" /> + id="filter8603" + x="-0.037125" + width="1.07425" + y="-0.036" + height="1.072"> + stdDeviation="0.99" + id="feGaussianBlur8605" /> + + + + + + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> @@ -300,226 +405,245 @@ id="stop14" /> + sodipodi:nodetypes="scccssscccs" + transform="matrix(0.25,0,0,0.25,-8,-10)" /> - - + - - - - + sodipodi:nodetypes="scccssscccs" /> - - + d="m 39.46094,8 c -17.648364,0 -19.547435,1.813015 -19.46094,19.49707 v 1 c -0.08649,-17.684056 1.812576,-19.49707 19.46094,-19.49707 h 36.53906 v -1 z" + id="path931" + inkscape:connector-curvature="0" + sodipodi:nodetypes="sccsccs" /> + sodipodi:nodetypes="scccssscccs" /> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + - - - + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> - - - + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> - - - + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + style="clip-rule:evenodd;display:inline;fill-rule:evenodd;enable-background:new"> + + + + + + + + + + + + + + + + + + + + + + + + id="filter4346" + x="-0.014454287" + width="1.0289086" + y="-0.011357288" + height="1.0227146"> + stdDeviation="2.120027" + id="feGaussianBlur4348" /> + id="filter4380" + x="-0.057817147" + width="1.1156343" + y="-0.045429151" + height="1.0908583"> + stdDeviation="8.4801079" + id="feGaussianBlur4382" /> + gradientTransform="matrix(0,-0.2265625,0.22655602,0,1.018799,120)" /> + id="linearGradient2129"> + style="stop-color:#dc195b;stop-opacity:1;" + id="stop2125" /> + style="stop-color:#a91326;stop-opacity:1;" + id="stop2127" /> + gradientTransform="matrix(0,-0.20228795,0.19565602,0,9.607279,114)" /> + inkscape:collect="always" + id="linearGradient4338"> + id="stop4340" /> + id="stop4342" /> + inkscape:collect="always" + xlink:href="#linearGradient4416" + id="linearGradient41483" + gradientUnits="userSpaceOnUse" + x1="3716.7437" + y1="691.79028" + x2="3716.4775" + y2="701.09814" + gradientTransform="matrix(3.760275,0,0,3.760275,-13920.746,-2542.8306)" /> + + style="stop-color:#d21b58;stop-opacity:1;" + id="stop4412" /> + style="stop-color:#a91326;stop-opacity:1;" + id="stop4414" /> - + xlink:href="#linearGradient1750" + id="radialGradient1752" + cx="179.99261" + cy="103.2822" + fx="179.99261" + fy="103.2822" + r="35.068905" + gradientTransform="matrix(1.3687341,-2.0954866e-7,2.0316901e-7,1.3528551,-139.16609,-129.02101)" + gradientUnits="userSpaceOnUse" /> + inkscape:collect="always" + id="linearGradient1750"> + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop1746" /> + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop1748" /> + + + + + + + gradientTransform="matrix(0.5,0,0,0.5,-12.000001,-13.999998)" /> + id="linearGradient12717"> + + + + gradientTransform="matrix(0.5,0,0,0.5,-12.000001,-13.999998)" /> + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1" /> - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + id="filter4346" + x="-0.014454287" + width="1.0289086" + y="-0.011357288" + height="1.0227146"> + stdDeviation="2.120027" + id="feGaussianBlur4348" /> + + + + + gradientTransform="matrix(0,-0.20228795,0.19565602,0,9.6072798,114)" /> @@ -105,53 +162,136 @@ offset="0" id="stop4340" /> - + gradientTransform="matrix(0,100,-100,0,64,17.999999)"> + id="stop333-5" /> + id="stop335-3" /> + gradientTransform="matrix(0,10.0005,-10.0005,0,91.497502,50.495499)"> + id="stop338-6" /> + id="stop340-2" /> + + + + + + + + + + + + + + + + + + + + + + inkscape:pagecheckerboard="0" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1" /> + sodipodi:nodetypes="scccssscccs" + transform="matrix(0.25,0,0,0.25,-8.0000002,-10.000001)" /> + sodipodi:nodetypes="scccssscccs" + inkscape:connector-curvature="0" + id="path4350" + d="m 189.84323,74 c -70.59344,0 -78.18921,7.250835 -77.84323,77.98706 v 146.01294 146.01294 c -0.34598,70.73623 7.24979,77.98706 77.84323,77.98706 h 196.31354 c 70.59344,0 77.84323,-7.24999 77.84323,-77.98706 v -146.01294 -96 l -128,-128 z" + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;filter:url(#filter4380);enable-background:accumulate" + transform="matrix(0.25,0,0,0.25,-8.0000002,-10.000001)" /> + + sodipodi:nodetypes="sccsccs" /> + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4226-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 42.80618,13.999998 c -16.80618,0 -16.80618,1e-6 -16.806548,17.407827 v 32.592174 32.592177 c 3.68e-4,17.407824 3.68e-4,17.407824 16.806548,17.407824 h 42.384577 c 16.809243,0 16.806543,0 16.806543,-17.407824 v -32.592177 -25.42857 l -23.635513,-24.571431 z" + id="rect4158-1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="scccssscccs" /> + d="m 36.5,47.999999 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 15 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 28,0 c -3.0375,0 -5.5,2.4625 -5.5,5.5 v 14 c 0,3.037502 2.4625,5.500002 5.5,5.500002 h 24.000002 c 3.0375,0 5.5,-2.4625 5.5,-5.500002 v -14 c 0,-3.0375 -2.4625,-5.5 -5.5,-5.5 z m -28,10 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 15 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 0,10 c -1.3805,0 -2.5,1.1195 -2.5,2.500002 0,1.3805 1.1195,2.5 2.5,2.5 h 15 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.380502 -1.1195,-2.500002 -2.5,-2.500002 z m 0,10.000002 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 55.000002 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 0,10 c -1.3805,0 -2.5,1.1195 -2.5,2.5 0,1.3805 1.1195,2.5 2.5,2.5 h 55.000002 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.3805 -1.1195,-2.5 -2.5,-2.5 z m 0,10 c -1.3805,0 -2.5,1.1195 -2.5,2.499999 0,1.3805 1.1195,2.5 2.5,2.5 h 40.000002 c 1.3805,0 2.5,-1.1195 2.5,-2.5 0,-1.380499 -1.1195,-2.499999 -2.5,-2.499999 z" + style="clip-rule:evenodd;display:inline;fill:url(#_Linear19-7);fill-rule:nonzero;stroke-width:0.5;enable-background:new" + id="path162" /> + + sodipodi:nodetypes="ccsscccc" /> + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 20,63.999999 v 36.503421 c -0.08649,17.68406 1.812578,19.49658 19.46094,19.49658 h 49.078122 c 17.648358,0 19.001808,-1.81827 19.460938,-19.49658 v -36.503421 z" + id="path4255" + sodipodi:nodetypes="ccssscc" /> + sodipodi:nodetypes="cccsc" /> + inkscape:connector-curvature="0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:url(#radialGradient1752);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;filter:url(#filter2553);enable-background:accumulate" + d="m 177.83852,42.112696 -64,-66 0.003,24.99857 v 1 0.53711 c 0,35.29429 1.62603,39.63197 36.99414,39.45899 z" + id="rect4158-0-3-6" + sodipodi:nodetypes="ccccscc" + transform="matrix(0.5,0,0,0.5,19.080742,19.943651)" /> + inkscape:connector-curvature="0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;filter:url(#filter8603);enable-background:accumulate" + d="m 177.83852,42.112696 v -2 l -64,-64 v 0 24.999094 1 0.53711 c 0,34.463796 4,39.463796 36.99414,39.458996 z" + id="rect4158-0-3-2" + sodipodi:nodetypes="ccccccscc" + transform="matrix(0.5,0,0,0.5,19.080742,19.943651)" /> + inkscape:connector-curvature="0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient12719);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 107.99854,39.997334 -31.997073,-31.9970726 v 11.4990246 0.5 0.268555 c 0,17.647143 1.813015,19.815983 19.49707,19.729493 z" + id="rect4158-0-3" /> + inkscape:connector-curvature="0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 107.99854,39.997334 -31.997073,-31.9970746 v 11.4990246 0.5 0.268555 c 0,17.647145 1.813015,19.815985 19.49707,19.729495 z" + id="rect4158-0-3-8" /> + inkscape:connector-curvature="0" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient12719-7);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;enable-background:accumulate" + d="m 107.99854,39.997334 -31.997073,-31.9970746 v 11.4990246 0.5 0.268555 c 0,17.647145 1.813015,19.815985 19.49707,19.729495 z" + id="rect4158-0-3-27" /> + + + + + + image/svg+xml + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/svx/res/a11y_check_issues_not_found.svg libreoffice-7.4.7/yaru/src/default/svx/res/a11y_check_issues_not_found.svg --- libreoffice-7.4.6/yaru/src/default/svx/res/a11y_check_issues_not_found.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/svx/res/a11y_check_issues_not_found.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,81 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/svx/res/adding-selection.svg libreoffice-7.4.7/yaru/src/default/svx/res/adding-selection.svg --- libreoffice-7.4.6/yaru/src/default/svx/res/adding-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/svx/res/adding-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,109 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/svx/res/block-selection.svg libreoffice-7.4.7/yaru/src/default/svx/res/block-selection.svg --- libreoffice-7.4.6/yaru/src/default/svx/res/block-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/svx/res/block-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,104 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/svx/res/doc_modified_feedback.svg libreoffice-7.4.7/yaru/src/default/svx/res/doc_modified_feedback.svg --- libreoffice-7.4.6/yaru/src/default/svx/res/doc_modified_feedback.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/svx/res/doc_modified_feedback.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,22 +1,22 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + id="metadata12"> @@ -27,7 +27,7 @@ + id="defs10" /> + inkscape:current-layer="svg6" + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> + + - + diff -Nru libreoffice-7.4.6/yaru/src/default/svx/res/extending-selection.svg libreoffice-7.4.7/yaru/src/default/svx/res/extending-selection.svg --- libreoffice-7.4.6/yaru/src/default/svx/res/extending-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/svx/res/extending-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,121 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/svx/res/standard-selection.svg libreoffice-7.4.7/yaru/src/default/svx/res/standard-selection.svg --- libreoffice-7.4.6/yaru/src/default/svx/res/standard-selection.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/svx/res/standard-selection.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,103 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/doublepage_10x22.svg libreoffice-7.4.7/yaru/src/default/sw/res/doublepage_10x22.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/doublepage_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/doublepage_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,40 +38,29 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview6" showgrid="true" inkscape:zoom="28.927096" - inkscape:cx="3.6271809" - inkscape:cy="6.0416301" - inkscape:window-x="1920" - inkscape:window-y="32" + inkscape:cx="3.6470996" + inkscape:cy="6.0496913" + inkscape:window-x="0" + inkscape:window-y="0" inkscape:window-maximized="1" - inkscape:current-layer="svg4"> + inkscape:current-layer="svg4" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> - - + style="fill:#6d6d6d;fill-opacity:1" + d="m 7,0 -3,3 v 1 3 c 0,2.999997 1.000003,3 4,3 1.403382,0 2.369576,4.63e-4 3,-0.306641 0.630424,0.307104 1.596618,0.306641 3,0.306641 2.999997,0 4,-3e-6 4,-3 v -3 -1 l -3,-3 h -1 c -1.403382,0 -2.369576,-4.6349999e-4 -3,0.3066406 -0.630424,-0.30710409999 -1.596618,-0.3066406 -3,-0.3066406 z m 1,1 c 0.9776319,0 1.715094,7.782e-4 2.214844,0.234375 -0.148359,0.4253305 -0.214844,0.9963749 -0.214844,1.765625 v 4 c 0,0.76925 0.06649,1.340295 0.214844,1.765625 -0.49975,0.233597 -1.2372121,0.234375 -2.214844,0.234375 -1.999998,0 -3,-2e-6 -3,-2 v -3 h 2 1 v -1 z m 6,0 v 2 1 h 1 2 v 3 c 0,1.999998 -1.000002,2 -3,2 -0.977632,0 -1.715094,-7.78e-4 -2.214844,-0.234375 0.148359,-0.42533 0.214844,-0.996375 0.214844,-1.765625 v -4 c 0,-0.7692501 -0.06649,-1.3402945 -0.214844,-1.765625 0.49975,-0.2335968 1.237212,-0.234375 2.214844,-0.234375 z" /> + id="path828" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 8,1 v 2 1 h -1 -2 v 3 c 0,1.999996 1.000004,2 3,2 1.999996,0 3,-4e-6 3,-2 0,1.999996 1.000004,2 3,2 1.999996,0 3,-4e-6 3,-2 v -3 h -2 -1 v -1 -2 c -1.999996,0 -3,4e-6 -3,2 0,-1.999996 -1.000004,-2 -3,-2 z" /> diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/doublepage_a_10x22.svg libreoffice-7.4.7/yaru/src/default/sw/res/doublepage_a_10x22.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/doublepage_a_10x22.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/doublepage_a_10x22.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,40 +38,29 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview6" showgrid="true" - inkscape:zoom="28.927096" - inkscape:cx="10.797917" - inkscape:cy="4.4450154" - inkscape:window-x="1920" - inkscape:window-y="32" + inkscape:zoom="40.909091" + inkscape:cx="11.281111" + inkscape:cy="3.7888888" + inkscape:window-x="0" + inkscape:window-y="0" inkscape:window-maximized="1" - inkscape:current-layer="svg4"> + inkscape:current-layer="svg4" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> - - + style="fill:#00ffff;fill-opacity:1" + d="M 7 0 L 4 3 L 4 4 L 4 7 C 4 9.9999966 5.000003 10 8 10 C 9.4033816 10 10.369576 10.000463 11 9.6933594 C 11.630424 10.000463 12.596618 10 14 10 C 16.999997 10 18 9.9999966 18 7 L 18 4 L 18 3 L 15 0 L 14 0 C 12.596618 0 11.630424 -0.00046351136 11 0.30664062 C 10.369576 -0.00046351136 9.4033816 0 8 0 L 7 0 z M 8 1 C 8.9776319 1 9.7150944 1.0007782 10.214844 1.234375 C 10.066485 1.6597055 10 2.2307499 10 3 L 10 7 C 10 7.76925 10.066485 8.3402946 10.214844 8.765625 C 9.7150944 8.9992218 8.9776319 9 8 9 C 6.000002 9 5 8.999998 5 7 L 5 4 L 7 4 L 8 4 L 8 3 L 8 1 z M 14 1 L 14 3 L 14 4 L 15 4 L 17 4 L 17 7 C 17 8.999998 15.999998 9 14 9 C 13.022368 9 12.284906 8.9992218 11.785156 8.765625 C 11.933515 8.3402946 12 7.76925 12 7 L 12 3 C 12 2.2307499 11.933515 1.6597055 11.785156 1.234375 C 12.284906 1.0007782 13.022368 1 14 1 z " /> + id="path828" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 8 1 L 8 3 L 8 4 L 7 4 L 5 4 L 5 7 C 5 8.999996 6.000004 9 8 9 C 9.999996 9 11 8.999996 11 7 C 11 8.999996 12.000004 9 14 9 C 15.999996 9 17 8.999996 17 7 L 17 4 L 15 4 L 14 4 L 14 3 L 14 1 C 12.000004 1 11 1.000004 11 3 C 11 1.000004 9.999996 1 8 1 z " /> diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/doublepage_a.svg libreoffice-7.4.7/yaru/src/default/sw/res/doublepage_a.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/doublepage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/doublepage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,90 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/doublepage.svg libreoffice-7.4.7/yaru/src/default/sw/res/doublepage.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/doublepage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/doublepage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,80 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/emptypage_10x14.svg libreoffice-7.4.7/yaru/src/default/sw/res/emptypage_10x14.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/emptypage_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/emptypage_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,12 +1,5 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -23,7 +23,7 @@ image/svg+xml - + @@ -39,17 +39,20 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview6" showgrid="true" inkscape:zoom="16" - inkscape:cx="20.233773" - inkscape:cy="16.260122" - inkscape:window-x="1920" - inkscape:window-y="32" + inkscape:cx="20.28125" + inkscape:cy="16.25" + inkscape:window-x="0" + inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg4" - showborder="true"> + showborder="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -57,12 +60,12 @@ diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/emptypage_a_10x14.svg libreoffice-7.4.7/yaru/src/default/sw/res/emptypage_a_10x14.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/emptypage_a_10x14.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/emptypage_a_10x14.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,12 +1,5 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,16 +38,19 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview6" showgrid="false" inkscape:zoom="23.6" - inkscape:cx="2.3601695" - inkscape:cy="6.8008475" - inkscape:window-x="1920" - inkscape:window-y="32" + inkscape:cx="2.3516949" + inkscape:cy="6.8220339" + inkscape:window-x="0" + inkscape:window-y="0" inkscape:window-maximized="1" - inkscape:current-layer="svg4" /> + inkscape:current-layer="svg4" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" /> diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/emptypage_a.svg libreoffice-7.4.7/yaru/src/default/sw/res/emptypage_a.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/emptypage_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/emptypage_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,79 @@ + + + + + + image/svg+xml + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/emptypage.svg libreoffice-7.4.7/yaru/src/default/sw/res/emptypage.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/emptypage.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/emptypage.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,79 @@ + + + + + + image/svg+xml + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/sc20236.svg libreoffice-7.4.7/yaru/src/default/sw/res/sc20236.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/sc20236.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/sc20236.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,21 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -24,22 +23,12 @@ image/svg+xml - + - - + id="defs17" /> + inkscape:document-rotation="0" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#808080"> @@ -83,16 +75,46 @@ id="stop8" style="stop-color:#4d4d4d;stop-opacity:1" /> - - + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/twopages_10x24.svg libreoffice-7.4.7/yaru/src/default/sw/res/twopages_10x24.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/twopages_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/twopages_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,55 +38,43 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview6" showgrid="true" inkscape:zoom="18.75" - inkscape:cx="-6.16" - inkscape:cy="4.7066667" - inkscape:window-x="1920" - inkscape:window-y="32" + inkscape:cx="-6.2133333" + inkscape:cy="4.6933333" + inkscape:window-x="0" + inkscape:window-y="0" inkscape:window-maximized="1" - inkscape:current-layer="svg4"> + inkscape:current-layer="svg4" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> - - - + d="m 3,3 v 4 c 0,3 1,3 4,3 3,0 4,0 4,-3 v -3 -1 l -3,-3 h -1 c -3,0 -4,0 -4,3 z m 1,0 c 0,-2 1,-2 3,-2 v 2 1 h 1 2 v 3 c 0,2 -1,2 -3,2 -2,0 -3,0 -3,-2 z" /> diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/twopages_a_10x24.svg libreoffice-7.4.7/yaru/src/default/sw/res/twopages_a_10x24.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/twopages_a_10x24.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/twopages_a_10x24.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,20 +1,20 @@ + inkscape:export-ydpi="95" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -38,16 +38,19 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview6" showgrid="true" inkscape:zoom="18.75" - inkscape:cx="10.248779" - inkscape:cy="13.820847" - inkscape:window-x="1920" - inkscape:window-y="32" + inkscape:cx="7.44" + inkscape:cy="9.3866667" + inkscape:window-x="0" + inkscape:window-y="0" inkscape:window-maximized="1" - inkscape:current-layer="svg4"> + inkscape:current-layer="svg4" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -66,11 +69,11 @@ d="m 13,3 v 4 c 0,2.9999996 1,2.9999996 4,2.9999996 3,0 4,0 4,-2.9999996 V 4 3 L 18,0 h -1 c -3,0 -4,0 -4,3 z m 1,0 c 0,-2 1,-2 3,-2 v 2 1 h 1 2 v 3 c 0,2 -1,2 -3,2 -2,0 -3,0 -3,-2 z" id="path2-7" inkscape:connector-curvature="0" - style="fill:#6d6d6d;fill-opacity:1" + style="fill:#00ffff;fill-opacity:1" sodipodi:nodetypes="ccccccccccccccccccc" /> diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/twopages_a.svg libreoffice-7.4.7/yaru/src/default/sw/res/twopages_a.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/twopages_a.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/twopages_a.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,96 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/sw/res/twopages.svg libreoffice-7.4.7/yaru/src/default/sw/res/twopages.svg --- libreoffice-7.4.6/yaru/src/default/sw/res/twopages.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/sw/res/twopages.svg 2023-03-31 10:14:09.000000000 +0000 @@ -0,0 +1,96 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -Nru libreoffice-7.4.6/yaru/src/default/vcl/res/infobox.svg libreoffice-7.4.7/yaru/src/default/vcl/res/infobox.svg --- libreoffice-7.4.6/yaru/src/default/vcl/res/infobox.svg 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/default/vcl/res/infobox.svg 2023-03-31 10:14:09.000000000 +0000 @@ -1,13 +1,5 @@ + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> @@ -93,16 +93,19 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" - inkscape:window-height="1011" + inkscape:window-height="1043" id="namedview29" showgrid="true" - inkscape:zoom="14.75" - inkscape:cx="16.880441" - inkscape:cy="18.699347" - inkscape:window-x="1920" - inkscape:window-y="32" + inkscape:zoom="20.85965" + inkscape:cx="14.070226" + inkscape:cy="13.375105" + inkscape:window-x="0" + inkscape:window-y="0" inkscape:window-maximized="1" - inkscape:current-layer="svg27"> + inkscape:current-layer="svg27" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1"> @@ -169,22 +172,23 @@ cx="16" cy="16.000004" r="14.5" /> - - i + + + + + diff -Nru libreoffice-7.4.6/yaru/src/links.txt libreoffice-7.4.7/yaru/src/links.txt --- libreoffice-7.4.6/yaru/src/links.txt 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/src/links.txt 2023-03-31 10:14:09.000000000 +0000 @@ -1977,39 +1977,65 @@ res/lc10853.xxx cmd/lc_recsearch.xxx res/library_16.xxx cmd/lc_viewdatasourcebrowser.xxx res/lx03126.xxx cmd/32/dbviewtables.xxx -res/lx03127.xxx res/ots_32_8.xxx +res/lx03127.xxx res/ots_32.xxx res/lx03130.xxx res/lx03123.xxx res/lx03137.xxx res/lx03125.xxx res/lx03140.xxx res/lx03125.xxx -res/lx03144.xxx res/odf_32_8.xxx -res/lx03145.xxx res/odf_32_8.xxx +res/lx03144.xxx res/odf_32.xxx +res/lx03145.xxx res/odf_32.xxx res/lx03152.xxx res/lx03125.xxx res/lx03153.xxx res/lx03125.xxx res/lx03154.xxx res/lx03125.xxx res/lx03155.xxx res/lx03125.xxx -res/lx03156.xxx res/odt_32_8.xxx +res/lx03156.xxx res/odt_32.xxx res/lx03158.xxx res/lx03125.xxx res/lx03160.xxx res/lx03125.xxx -res/lx03162.xxx res/odt_32_8.xxx -res/lx03163.xxx res/odt_32_8.xxx +res/lx03162.xxx res/odt_32.xxx +res/lx03163.xxx res/odt_32.xxx res/lx03165.xxx cmd/lc_save.xxx res/lx03167.xxx cmd/lc_openremote.xxx res/lx03188.xxx cmd/32/dbviewtables.xxx res/lx03189.xxx cmd/lc_open.xxx -res/lx03217.xxx res/odg_32_8.xxx -res/lx03218.xxx res/odg_32_8.xxx +res/lx03217.xxx res/odg_32.xxx +res/lx03218.xxx res/odg_32.xxx res/lx03219.xxx res/lx03125.xxx -res/lx03220.xxx res/odg_32_8.xxx -res/lx03221.xxx res/odg_32_8.xxx -res/lx03222.xxx res/odg_32_8.xxx -res/lx03227.xxx res/odg_32_8.xxx -res/lx03228.xxx res/odg_32_8.xxx +res/lx03220.xxx res/odg_32.xxx +res/lx03221.xxx res/odg_32.xxx +res/lx03222.xxx res/odg_32.xxx +res/lx03227.xxx res/odg_32.xxx +res/lx03228.xxx res/odg_32.xxx res/lx03256.xxx cmd/lc_insertplugin.xxx -res/mainapp.xxx res/newdoc.xxx -res/mainapp_16.xxx cmd/sc_showsinglepage.xxx -res/mainapp_16_8.xxx cmd/sc_showsinglepage.xxx -res/mainapp_32.xxx res/newdoc.xxx +res/mainapp_16_8.xxx res/mainapp_16.xxx +res/mainapp_32_8.xxx res/mainapp_32.xxx +res/mainapp_48_8.xxx res/mainapp_48.xxx res/notebookbar.xxx sfx2/res/symphony/open_more.xxx +res/odb_16_8.xxx res/odb_16.xxx +res/odb_32_8.xxx res/odb_32.xxx +res/odb_48_8.xxx res/odb_48.xxx +res/odf_16_8.xxx res/odf_16.xxx +res/odf_32_8.xxx res/odf_32.xxx +res/odf_48_8.xxx res/odf_48.xxx +res/odg_16_8.xxx res/odg_16.xxx +res/odg_32_8.xxx res/odg_32.xxx +res/odg_48_8.xxx res/odg_48.xxx +res/odm_16_8.xxx res/odm_16.xxx +res/odm_32_8.xxx res/odm_32.xxx +res/odm_48_8.xxx res/odm_48.xxx +res/odp_16_8.xxx res/odp_16.xxx +res/odp_32_8.xxx res/odp_32.xxx +res/odp_48_8.xxx res/odp_48.xxx +res/ods_16_8.xxx res/ods_16.xxx +res/ods_32_8.xxx res/ods_32.xxx +res/ods_48_8.xxx res/ods_48.xxx +res/odt_16_8.xxx res/odt_16.xxx +res/odt_32_8.xxx res/odt_32.xxx +res/odt_48_8.xxx res/odt_48.xxx +res/ots_16_8.xxx res/ots_16.xxx +res/ots_32_8.xxx res/ots_32.xxx +res/ots_48_8.xxx res/ots_48.xxx +res/ott_16_8.xxx res/ott_16.xxx +res/ott_32_8.xxx res/ott_32.xxx +res/ott_48_8.xxx res/ott_48.xxx res/plugin.xxx cmd/lc_insertplugin.xxx res/queries_32.xxx cmd/32/dbviewqueries.xxx res/reload.xxx cmd/sc_reload.xxx @@ -2044,36 +2070,38 @@ res/sc10868.xxx cmd/sc_grafgamma.xxx res/sc10869.xxx cmd/sc_graftransparence.xxx res/sc_helperdialog.xxx cmd/sc_helpindex.xxx +res/sx03123.xxx res/odp_16.xxx res/sx03126.xxx cmd/sc_dbviewtables.xxx -res/sx03127.xxx res/ots_16_8.xxx -res/sx03130.xxx res/sx03123.xxx +res/sx03127.xxx res/ots_16.xxx +res/sx03130.xxx res/odp_16.xxx res/sx03137.xxx res/sx03125.xxx res/sx03139.xxx cmd/sc_questionanswers.xxx res/sx03140.xxx res/sx03125.xxx -res/sx03145.xxx res/sx03144.xxx +res/sx03144.xxx res/odf_16.xxx +res/sx03145.xxx res/odf_16.xxx res/sx03152.xxx res/sx03125.xxx res/sx03153.xxx res/sx03125.xxx res/sx03154.xxx res/sx03125.xxx res/sx03155.xxx res/sx03125.xxx -res/sx03156.xxx res/odt_16_8.xxx +res/sx03156.xxx res/odt_16.xxx res/sx03158.xxx res/sx03125.xxx res/sx03160.xxx res/sx03125.xxx -res/sx03162.xxx res/odt_16_8.xxx -res/sx03163.xxx res/odt_16_8.xxx +res/sx03162.xxx res/odt_16.xxx +res/sx03163.xxx res/odt_16.xxx res/sx03164.xxx cmd/sc_open.xxx res/sx03165.xxx cmd/sc_save.xxx res/sx03167.xxx cmd/sc_openremote.xxx res/sx03188.xxx cmd/sc_dbviewtables.xxx res/sx03189.xxx cmd/sc_open.xxx res/sx03202.xxx cmd/sc_dbviewqueries.xxx -res/sx03217.xxx res/odg_16_8.xxx -res/sx03218.xxx res/odg_16_8.xxx +res/sx03217.xxx res/odg_16.xxx +res/sx03218.xxx res/odg_16.xxx res/sx03219.xxx res/sx03125.xxx -res/sx03220.xxx res/odg_16_8.xxx -res/sx03221.xxx res/odg_16_8.xxx -res/sx03222.xxx res/odg_16_8.xxx -res/sx03227.xxx res/odg_16_8.xxx -res/sx03228.xxx res/odg_16_8.xxx +res/sx03220.xxx res/odg_16.xxx +res/sx03221.xxx res/odg_16.xxx +res/sx03222.xxx res/odg_16.xxx +res/sx03227.xxx res/odg_16.xxx +res/sx03228.xxx res/odg_16.xxx res/sx03256.xxx cmd/sc_insertplugin.xxx res/sx10594.xxx cmd/sc_pushbutton.xxx res/sx10595.xxx cmd/sc_radiobutton.xxx @@ -2205,6 +2233,7 @@ sfx2/res/symphony/sidebar-colors-small.xxx cmd/sc_bmpmask.xxx sfx2/res/symphony/sidebar-eyedropper-large.xxx cmd/lc_bmpmask.xxx sfx2/res/symphony/sidebar-eyedropper-small.xxx cmd/sc_bmpmask.xxx +sfx2/res/symphony/sidebar-elements-large.xxx cmd/lc_insertmath.xxx sfx2/res/symphony/sidebar-functions-large.xxx cmd/lc_toggleformula.xxx sfx2/res/symphony/sidebar-functions-small.xxx cmd/sc_toggleformula.xxx sfx2/res/symphony/sidebar-gallery-large.xxx cmd/lc_gallery.xxx @@ -2271,6 +2300,8 @@ svx/res/color.xxx cmd/sc_bmpmask.xxx svx/res/colordlg.xxx cmd/sc_graphicfiltersmooth.xxx svx/res/convrt3d.xxx cmd/sc_convertinto3d.xxx +svx/res/doc_modified_no.xxx cmd/sc_save.xxx +svx/res/doc_modified_yes.xxx res/savemodified_small.xxx svx/res/dsth_cen.xxx cmd/sc_distributehorzcenter.xxx svx/res/dsth_dst.xxx cmd/sc_distributehorzdistance.xxx svx/res/dsth_hig.xxx cmd/sc_distributehorzright.xxx diff -Nru libreoffice-7.4.6/yaru/updates/yaru-bark-theme.update.xml libreoffice-7.4.7/yaru/updates/yaru-bark-theme.update.xml --- libreoffice-7.4.6/yaru/updates/yaru-bark-theme.update.xml 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/updates/yaru-bark-theme.update.xml 2023-03-31 10:14:09.000000000 +0000 @@ -1,8 +1,8 @@ - + - + diff -Nru libreoffice-7.4.6/yaru/updates/yaru-blue-theme.update.xml libreoffice-7.4.7/yaru/updates/yaru-blue-theme.update.xml --- libreoffice-7.4.6/yaru/updates/yaru-blue-theme.update.xml 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/updates/yaru-blue-theme.update.xml 2023-03-31 10:14:09.000000000 +0000 @@ -1,8 +1,8 @@ - + - + diff -Nru libreoffice-7.4.6/yaru/updates/yaru-magenta-theme.update.xml libreoffice-7.4.7/yaru/updates/yaru-magenta-theme.update.xml --- libreoffice-7.4.6/yaru/updates/yaru-magenta-theme.update.xml 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/updates/yaru-magenta-theme.update.xml 2023-03-31 10:14:09.000000000 +0000 @@ -1,8 +1,8 @@ - + - + diff -Nru libreoffice-7.4.6/yaru/updates/yaru-mate-theme.update.xml libreoffice-7.4.7/yaru/updates/yaru-mate-theme.update.xml --- libreoffice-7.4.6/yaru/updates/yaru-mate-theme.update.xml 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/updates/yaru-mate-theme.update.xml 2023-03-31 10:14:09.000000000 +0000 @@ -1,8 +1,8 @@ - + - + diff -Nru libreoffice-7.4.6/yaru/updates/yaru-olive-theme.update.xml libreoffice-7.4.7/yaru/updates/yaru-olive-theme.update.xml --- libreoffice-7.4.6/yaru/updates/yaru-olive-theme.update.xml 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/updates/yaru-olive-theme.update.xml 2023-03-31 10:14:09.000000000 +0000 @@ -1,8 +1,8 @@ - + - + diff -Nru libreoffice-7.4.6/yaru/updates/yaru-prussiangreen-theme.update.xml libreoffice-7.4.7/yaru/updates/yaru-prussiangreen-theme.update.xml --- libreoffice-7.4.6/yaru/updates/yaru-prussiangreen-theme.update.xml 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/updates/yaru-prussiangreen-theme.update.xml 2023-03-31 10:14:09.000000000 +0000 @@ -1,8 +1,8 @@ - + - + diff -Nru libreoffice-7.4.6/yaru/updates/yaru-purple-theme.update.xml libreoffice-7.4.7/yaru/updates/yaru-purple-theme.update.xml --- libreoffice-7.4.6/yaru/updates/yaru-purple-theme.update.xml 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/updates/yaru-purple-theme.update.xml 2023-03-31 10:14:09.000000000 +0000 @@ -1,8 +1,8 @@ - + - + diff -Nru libreoffice-7.4.6/yaru/updates/yaru-red-theme.update.xml libreoffice-7.4.7/yaru/updates/yaru-red-theme.update.xml --- libreoffice-7.4.6/yaru/updates/yaru-red-theme.update.xml 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/updates/yaru-red-theme.update.xml 2023-03-31 10:14:09.000000000 +0000 @@ -1,8 +1,8 @@ - + - + diff -Nru libreoffice-7.4.6/yaru/updates/yaru-sage-theme.update.xml libreoffice-7.4.7/yaru/updates/yaru-sage-theme.update.xml --- libreoffice-7.4.6/yaru/updates/yaru-sage-theme.update.xml 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/updates/yaru-sage-theme.update.xml 2023-03-31 10:14:09.000000000 +0000 @@ -1,8 +1,8 @@ - + - + diff -Nru libreoffice-7.4.6/yaru/updates/yaru-theme.update.xml libreoffice-7.4.7/yaru/updates/yaru-theme.update.xml --- libreoffice-7.4.6/yaru/updates/yaru-theme.update.xml 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/updates/yaru-theme.update.xml 2023-03-31 10:14:09.000000000 +0000 @@ -1,8 +1,8 @@ - + - + diff -Nru libreoffice-7.4.6/yaru/updates/yaru-viridian-theme.update.xml libreoffice-7.4.7/yaru/updates/yaru-viridian-theme.update.xml --- libreoffice-7.4.6/yaru/updates/yaru-viridian-theme.update.xml 2022-09-04 09:45:41.000000000 +0000 +++ libreoffice-7.4.7/yaru/updates/yaru-viridian-theme.update.xml 2023-03-31 10:14:09.000000000 +0000 @@ -1,8 +1,8 @@ - + - +